diff --git a/classwork14.04.08/index.html b/classwork14.04.08/index.html new file mode 100644 index 0000000..25d941d --- /dev/null +++ b/classwork14.04.08/index.html @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/excel/index.html b/excel/index.html new file mode 100644 index 0000000..d5d3a5d --- /dev/null +++ b/excel/index.html @@ -0,0 +1,12 @@ + + + + + This is Excel + + + + + + + \ No newline at end of file diff --git a/excel/my.js b/excel/my.js new file mode 100644 index 0000000..f8ecbcc --- /dev/null +++ b/excel/my.js @@ -0,0 +1,45 @@ +var cellsAndRows = new Array(); +var cellStart = new String(''); +function newTable(){ + id1.innerHTML += '

Таблица' + (cellsAndRows.length+1) + '

' + id1.innerHTML += '
' + id1.innerHTML += ''; + id1.innerHTML += ''; + cellsAndRows[cellsAndRows.length] = new Array(1,0); +} +function newRow(a){ + var i,table,string; + table = document.getElementById("t" + a); + string = new String(""); + for(i = 0; i < cellsAndRows[a][0]; i++){ + string += cellStart + cellsAndRows[a][1] + cellEnd; + cellsAndRows[a][1]++; + } + string += ""; + table.innerHTML += string; +} +function newColumn(a){ + var i,tds,rows; + rows = document.getElementById("t" + a).getElementsByTagName('TR'); + for(i = 0; i < rows.length;i++){ + rows[i].innerHTML += cellStart + cellsAndRows[a][1] + cellEnd; + cellsAndRows[a][1]++; + } + cellsAndRows[a][0]++; + tds = document.getElementById("t" + a).getElementsByTagName('TD'); + for(i = 0; i < tds.length; i++){ + tds[i].setAttribute("width", 100/cellsAndRows[a][0]); + } +} +function writeMe(a){ + a.setAttribute('contenteditable', 'true'); + a.setAttribute('autofocus'); + a.setAttribute('onblur','oRead(this)'); +} +function oRead(a){ + a.setAttribute('contenteditable', 'false'); + a.removeAttribute('onblur'); + a.removeAttribute('autofocus'); +} + diff --git a/extjs-django/.gitignore b/extjs-django/.gitignore new file mode 100644 index 0000000..8edf2f4 --- /dev/null +++ b/extjs-django/.gitignore @@ -0,0 +1,55 @@ +django-env/ + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +bin/ +build/ +develop-eggs/ +dist/ +eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo + +# Mr Developer +.mr.developer.cfg +.project +.pydevproject + +# Rope +.ropeproject + +# Django stuff: +*.log +*.pot + +# Sphinx documentation +docs/_build/ \ No newline at end of file diff --git a/extjs-django/README.md b/extjs-django/README.md new file mode 100644 index 0000000..129aa36 --- /dev/null +++ b/extjs-django/README.md @@ -0,0 +1,42 @@ +ExtJs 4 + Django +================ + +Инструкции: + +[![IMAGE ALT TEXT HERE](http://img.youtube.com/vi/gYHZNbBasC4/0.jpg)](http://www.youtube.com/watch?v=gYHZNbBasC4) + + +Зависимости: +* python >= 2.7 +* pip + +Для запуска: + +* Перейдите в папку проекта +```bash +cd extjs-django/marvel +``` + +* Установите зависимости запустив команду +```bash +pip install -U -r dependencies.txt +``` + +* Синхронизируйте базу данных: +```bash +python manage.py syncdb +``` + +* Запустите сервер: +```bash +python manage.py runserver +``` + +Приложение "Библиотека" будет доступна по адресу http://localhost:8000/library + +API можно посмотреть по адресам: +* http://localhost:8000/library/genres/ - Жанры +* http://localhost:8000/library/authors/ - Авторы +* http://localhost:8000/library/books/ - Книги + + diff --git a/extjs-django/marvel/bane/__init__.py b/extjs-django/marvel/bane/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/extjs-django/marvel/bane/admin.py b/extjs-django/marvel/bane/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/extjs-django/marvel/bane/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/extjs-django/marvel/bane/models.py b/extjs-django/marvel/bane/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/extjs-django/marvel/bane/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/extjs-django/marvel/bane/static/bane/app.js b/extjs-django/marvel/bane/static/bane/app.js new file mode 100644 index 0000000..ede7022 --- /dev/null +++ b/extjs-django/marvel/bane/static/bane/app.js @@ -0,0 +1,14 @@ +Ext.application({ + name: 'MyApp', + appFolder: '/static/bane/app', + + launch: function() { + Ext.create('Ext.container.Viewport', { + layout: 'fit', + items: [{ + title: 'Hello Ext', + html: 'Hello! Welcome to Ext JS.' + }] + }); + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/bane/static/bane/app/Person.js b/extjs-django/marvel/bane/static/bane/app/Person.js new file mode 100644 index 0000000..4205b3a --- /dev/null +++ b/extjs-django/marvel/bane/static/bane/app/Person.js @@ -0,0 +1,9 @@ +Ext.define('MyApp.Person', { + name: 'Unknown', + constructor: function(cfg) { + this.name = cfg.name; + }, + introduce: function() { + console.log('My name is ' + this.name); + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/bane/templates/bane/index.html b/extjs-django/marvel/bane/templates/bane/index.html new file mode 100644 index 0000000..8b0f9ae --- /dev/null +++ b/extjs-django/marvel/bane/templates/bane/index.html @@ -0,0 +1,14 @@ +{% load staticfiles %} + + + + + Bane - ExtJs 4 Application + + + + + + + + \ No newline at end of file diff --git a/extjs-django/marvel/bane/tests.py b/extjs-django/marvel/bane/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/extjs-django/marvel/bane/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/extjs-django/marvel/bane/urls.py b/extjs-django/marvel/bane/urls.py new file mode 100644 index 0000000..ecf6587 --- /dev/null +++ b/extjs-django/marvel/bane/urls.py @@ -0,0 +1,7 @@ +from django.conf.urls import patterns, url + +from bane import views + +urlpatterns = patterns('', + url(r'^$', views.index, name='index') + ) diff --git a/extjs-django/marvel/bane/views.py b/extjs-django/marvel/bane/views.py new file mode 100644 index 0000000..3f43119 --- /dev/null +++ b/extjs-django/marvel/bane/views.py @@ -0,0 +1,8 @@ +from django.http import HttpResponse +from django.template import RequestContext, loader + + +def index(request): + template = loader.get_template('bane/index.html') + context = RequestContext(request, {}) + return HttpResponse(template.render(context)) diff --git a/extjs-django/marvel/db.sqlite3 b/extjs-django/marvel/db.sqlite3 new file mode 100644 index 0000000..6e7b55e Binary files /dev/null and b/extjs-django/marvel/db.sqlite3 differ diff --git a/extjs-django/marvel/dependencies.txt b/extjs-django/marvel/dependencies.txt new file mode 100644 index 0000000..6a32b4a --- /dev/null +++ b/extjs-django/marvel/dependencies.txt @@ -0,0 +1,3 @@ +Django==1.6.2 +djangorestframework==2.3.13 +wsgiref==0.1.2 diff --git a/extjs-django/marvel/library/__init__.py b/extjs-django/marvel/library/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/extjs-django/marvel/library/admin.py b/extjs-django/marvel/library/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/extjs-django/marvel/library/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/extjs-django/marvel/library/models.py b/extjs-django/marvel/library/models.py new file mode 100644 index 0000000..5155405 --- /dev/null +++ b/extjs-django/marvel/library/models.py @@ -0,0 +1,20 @@ +from django.db import models + +# Create your models here. + + +class Genre(models.Model): + title = models.CharField(max_length=30) + + +class Author(models.Model): + first_name = models.CharField(max_length=30) + middle_name = models.CharField(max_length=30) + last_name = models.CharField(max_length=30) + + +class Book(models.Model): + genre = models.ForeignKey(Genre) + authors = models.ManyToManyField(Author) + title = models.CharField(max_length=250) + description = models.TextField() diff --git a/extjs-django/marvel/library/serializers.py b/extjs-django/marvel/library/serializers.py new file mode 100644 index 0000000..4127046 --- /dev/null +++ b/extjs-django/marvel/library/serializers.py @@ -0,0 +1,38 @@ +from django.contrib.auth.models import User, Group +from rest_framework import serializers +from models import Genre, Author, Book + + +class UserSerializer(serializers.HyperlinkedModelSerializer): + + class Meta: + model = User + fields = ('url', 'username', 'email', 'groups') + + +class GroupSerializer(serializers.HyperlinkedModelSerializer): + + class Meta: + model = Group + fields = ('url', 'name') + + +class GenreSerializer(serializers.HyperlinkedModelSerializer): + + class Meta: + model = Genre + fields = ('title', 'id') + + +class AuthorSerializer(serializers.HyperlinkedModelSerializer): + + class Meta: + model = Author + fields = ('first_name', 'middle_name', 'last_name', 'id') + + +class BookSerializer(serializers.HyperlinkedModelSerializer): + + class Meta: + model = Book + fields = ('title', 'authors', 'genre', 'description', 'id') diff --git a/extjs-django/marvel/library/static/library/app.js b/extjs-django/marvel/library/static/library/app.js new file mode 100644 index 0000000..d511fd5 --- /dev/null +++ b/extjs-django/marvel/library/static/library/app.js @@ -0,0 +1,16 @@ +Ext.application({ + name: 'Lib', + appFolder: '/static/library/app', + controllers: ['Main', 'Genre', 'Author'], + views: ['Main'], + models: ['Genre','Author'], + + launch: function() { + Ext.create('Ext.container.Viewport', { + layout: 'fit', + items: { + xtype: 'mainview' + } + }); + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/library/static/library/app/controller/Author.js b/extjs-django/marvel/library/static/library/app/controller/Author.js new file mode 100644 index 0000000..6553997 --- /dev/null +++ b/extjs-django/marvel/library/static/library/app/controller/Author.js @@ -0,0 +1,48 @@ +Ext.define('Lib.controller.Author', { + extend: 'Ext.app.Controller', + models: ['Author'], + stores: ['Author'], + views: ['author.EditWindow', 'Main'], + refs: [{ + selector: 'mainview #authors', + ref: 'authorsGrid' + }], + + init: function() { + var me = this; + + me.control({ + '#authors button[action=add]': { + click: me.onAddAuthorBtnClick + }, + 'authoreditwin button[action=save]': { + click: me.onSaveAuthorBtnClick + } + }); + + me.callParent(arguments); + }, + + onAddAuthorBtnClick: function(btn) { + Ext.create('Lib.view.author.EditWindow').show(); + }, + + onSaveAuthorBtnClick: function(btn) { + var me = this, + form = btn.up('form'), + record; + if (form.isValid()) { + record = Ext.create('Lib.model.Author', form.getValues()); + record.save({ + callback: function(records, operation, success) { + if (success) { + me.getAuthorsGrid().getStore().load(); + btn.up('window').close(); + } else { + Ext.MessageBox.alert('Ошибка!', 'Произошла ошибка при сохранении.'); + } + } + }); + } + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/library/static/library/app/controller/Book.js b/extjs-django/marvel/library/static/library/app/controller/Book.js new file mode 100644 index 0000000..d22fd5e --- /dev/null +++ b/extjs-django/marvel/library/static/library/app/controller/Book.js @@ -0,0 +1,48 @@ +Ext.define('Lib.controller.Book', { + extend: 'Ext.app.Controller', + models: ['Book'], + stores: ['Book'], + views: ['book.EditWindow', 'Main'], + refs: [{ + selector: 'mainview #books', + ref: 'booksGrid' + }], + + init: function() { + var me = this; + + me.control({ + '#books button[action=add]': { + click: me.onAddBookBtnClick + }, + 'bookeditwin button[action=save]': { + click: me.onSaveBookBtnClick + } + }); + + me.callParent(arguments); + }, + + onAddBookBtnClick: function(btn) { + Ext.create('Lib.view.book.EditWindow').show(); + }, + + onSaveBookBtnClick: function(btn) { + var me = this, + form = btn.up('form'), + record; + if (form.isValid()) { + record = Ext.create('Lib.model.Book', form.getValues()); + record.save({ + callback: function(records, operation, success) { + if (success) { + me.getBooksGrid().getStore().load(); + btn.up('window').close(); + } else { + Ext.MessageBox.alert('Ошибка!', 'Произошла ошибка при сохранении.'); + } + } + }); + } + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/library/static/library/app/controller/Genre.js b/extjs-django/marvel/library/static/library/app/controller/Genre.js new file mode 100644 index 0000000..61b7e91 --- /dev/null +++ b/extjs-django/marvel/library/static/library/app/controller/Genre.js @@ -0,0 +1,48 @@ +Ext.define('Lib.controller.Genre', { + extend: 'Ext.app.Controller', + models: ['Genre'], + stores: ['Genre'], + views: ['genre.EditWindow', 'Main'], + refs: [{ + selector: 'mainview #genres', + ref: 'genresGrid' + }], + + init: function() { + var me = this; + + me.control({ + '#genres button[action=add]': { + click: me.onAddGenreBtnClick + }, + 'genreeditwin button[action=save]': { + click: me.onSaveGenreBtnClick + } + }); + + me.callParent(arguments); + }, + + onAddGenreBtnClick: function(btn) { + Ext.create('Lib.view.genre.EditWindow').show(); + }, + + onSaveGenreBtnClick: function(btn) { + var me = this, + form = btn.up('form'), + record; + if (form.isValid()) { + record = Ext.create('Lib.model.Genre', form.getValues()); + record.save({ + callback: function(records, operation, success) { + if (success) { + me.getGenresGrid().getStore().load(); + btn.up('window').close(); + } else { + Ext.MessageBox.alert('Ошибка!', 'Произошла ошибка при сохранении.'); + } + } + }); + } + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/library/static/library/app/controller/Main.js b/extjs-django/marvel/library/static/library/app/controller/Main.js new file mode 100644 index 0000000..5351568 --- /dev/null +++ b/extjs-django/marvel/library/static/library/app/controller/Main.js @@ -0,0 +1,38 @@ +Ext.define('Lib.controller.Main', { + extend: 'Ext.app.Controller', + views: ['NavigationTree', 'Main'], + + refs: [{ + selector: 'mainview', + ref: 'mainView' + }, { + selector: 'mainview tabpanel', + ref: 'mainTabPanel' + }], + + init: function() { + var me = this; + + me.control({ + 'navtree': { + 'itemclick': me.onNavigationTreeItemClick + } + }); + + me.callParent(arguments); + }, + + onNavigationTreeItemClick: function(tree, record) { + var me = this, + tabId = record.get('tabId'), + tabpanel = me.getMainTabPanel(), + tabToActivate; + + if (tabId) { + tabToActivate = tabpanel.down('#' + tabId); + if (tabToActivate) { + tabpanel.setActiveTab(tabToActivate); + }; + } + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/library/static/library/app/model/Author.js b/extjs-django/marvel/library/static/library/app/model/Author.js new file mode 100644 index 0000000..949ab19 --- /dev/null +++ b/extjs-django/marvel/library/static/library/app/model/Author.js @@ -0,0 +1,24 @@ +Ext.define('Lib.model.Author', { + extend: 'Ext.data.Model', + idProperty: 'id', + fields: [{ + name: 'first_name', + type: 'string' + }, { + name: 'id' + }, { + name: "middle_name", + type: 'string' + }, { + name: "last_name", + type: 'string' + }], + proxy: { + type: 'rest', + url: '/library/authors/', + reader: { + type: 'json', + root: 'results' + } + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/library/static/library/app/model/Book.js b/extjs-django/marvel/library/static/library/app/model/Book.js new file mode 100644 index 0000000..090f214 --- /dev/null +++ b/extjs-django/marvel/library/static/library/app/model/Book.js @@ -0,0 +1,25 @@ +Ext.define('Lib.model.Book', { + extend: 'Ext.data.Model', + idProperty: 'id', + fields: [{ + name: 'genre', + type: 'models.Genre' + }, { + name: 'authors', + type: 'models.Author' + }, { + name: "description", + type: 'string' + }, { + name: "title", + type: 'string' + }], + proxy: { + type: 'rest', + url: '/library/books/', + reader: { + type: 'json', + root: 'results' + } + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/library/static/library/app/model/Genre.js b/extjs-django/marvel/library/static/library/app/model/Genre.js new file mode 100644 index 0000000..392d61b --- /dev/null +++ b/extjs-django/marvel/library/static/library/app/model/Genre.js @@ -0,0 +1,18 @@ +Ext.define('Lib.model.Genre', { + extend: 'Ext.data.Model', + idProperty: 'id', + fields: [{ + name: 'title', + type: 'string' + }, { + name: 'id' + }], + proxy: { + type: 'rest', + url: '/library/genres/', + reader: { + type: 'json', + root: 'results' + } + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/library/static/library/app/store/Author.js b/extjs-django/marvel/library/static/library/app/store/Author.js new file mode 100644 index 0000000..1b507d3 --- /dev/null +++ b/extjs-django/marvel/library/static/library/app/store/Author.js @@ -0,0 +1,6 @@ +Ext.define('Lib.store.Author', { + extend: 'Ext.data.Store', + requires: ['Lib.model.Author'], + model: 'Lib.model.Author', + autoLoad: true +}); diff --git a/extjs-django/marvel/library/static/library/app/store/Book.js b/extjs-django/marvel/library/static/library/app/store/Book.js new file mode 100644 index 0000000..0bd3b5f --- /dev/null +++ b/extjs-django/marvel/library/static/library/app/store/Book.js @@ -0,0 +1,6 @@ +Ext.define('Lib.store.Book', { + extend: 'Ext.data.Store', + requires: ['Lib.model.Book'], + model: 'Lib.model.Book', + autoLoad: true +}); diff --git a/extjs-django/marvel/library/static/library/app/store/Genre.js b/extjs-django/marvel/library/static/library/app/store/Genre.js new file mode 100644 index 0000000..7afd060 --- /dev/null +++ b/extjs-django/marvel/library/static/library/app/store/Genre.js @@ -0,0 +1,6 @@ +Ext.define('Lib.store.Genre', { + extend: 'Ext.data.Store', + requires: ['Lib.model.Genre'], + model: 'Lib.model.Genre', + autoLoad: true +}); \ No newline at end of file diff --git a/extjs-django/marvel/library/static/library/app/view/Main.js b/extjs-django/marvel/library/static/library/app/view/Main.js new file mode 100644 index 0000000..915664a --- /dev/null +++ b/extjs-django/marvel/library/static/library/app/view/Main.js @@ -0,0 +1,69 @@ +Ext.define('Lib.view.Main', { + extend: 'Ext.container.Container', + requires: [ + 'Ext.grid.Panel', + 'Ext.tab.Panel', + 'Ext.button.Button', + 'Lib.view.NavigationTree' + ], + alias: 'widget.mainview', + layout: { + type: 'border', + align: 'stretch' + }, + items: [{ + xtype: 'navtree', + region: 'west', + width: 300 + }, { + xtype: 'tabpanel', + region: 'center', + items: [{ + title: 'Жанры', + xtype: 'grid', + itemId: 'genres', + store: 'Genre', + columns: [{ + text: 'Название', + dataIndex: 'title', + flex: 1 + }], + dockedItems: [{ + xtype: 'toolbar', + dock: 'top', + items: [{ + xtype: 'button', + action: 'add', + text: 'Добавить' + }] + }] + }, { + title: 'Авторы', + xtype: 'grid', + itemId: 'authors', + store: 'Author', + columns: [{ + text: 'Имя', + dataIndex: 'first_name', + flex: 1 + }, { + text: 'Фамилия', + dataIndex: 'last_name', + flex: 2 + }, { + text: 'Отчество', + dataIndex: 'middle_name', + flex: 3 + }], + dockedItems: [{ + xtype: 'toolbar', + dock: 'top', + items: [{ + xtype: 'button', + action: 'add', + text: 'Добавить' + }] + }] + }] + }] +}); \ No newline at end of file diff --git a/extjs-django/marvel/library/static/library/app/view/NavigationTree.js b/extjs-django/marvel/library/static/library/app/view/NavigationTree.js new file mode 100644 index 0000000..7edc4d3 --- /dev/null +++ b/extjs-django/marvel/library/static/library/app/view/NavigationTree.js @@ -0,0 +1,39 @@ +Ext.define('Lib.view.NavigationTree', { + extend: 'Ext.tree.Panel', + alias: 'widget.navtree', + initComponent: function() { + var me = this, + store = Ext.create('Ext.data.TreeStore', { + fields: [{ + name: 'text' + }, { + name: 'leaf' + }, { + name: 'tabId' + }], + root: { + text: 'Библиотека', + expanded: true, + children: [{ + text: "Жанры", + leaf: true, + tabId: 'genres' + }, { + text: "Авторы", + leaf: true, + tabId: 'authors' + }, { + text: "Книги", + leaf: true, + tabId: 'books' + }] + } + }); + + Ext.apply(me, { + store: store + }); + + me.callParent(arguments); + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/library/static/library/app/view/author/EditWindow.js b/extjs-django/marvel/library/static/library/app/view/author/EditWindow.js new file mode 100644 index 0000000..3c39560 --- /dev/null +++ b/extjs-django/marvel/library/static/library/app/view/author/EditWindow.js @@ -0,0 +1,46 @@ +Ext.define('Lib.view.author.EditWindow', { + extend: 'Ext.window.Window', + requires: [ + 'Ext.button.Button', + 'Ext.form.field.Text' + ], + alias: 'widget.authoreditwin', + width: 300, + modal: true, + title: 'Добавление жанра', + closeAction: 'destroy', + items: [{ + xtype: 'form', + layout: 'form', + bodyPadding: '5 5 5', + items: [{ + xtype: 'textfield', + fieldLabel: 'Имя', + afterLabelTextTpl: '*', + name: 'first_name', + msgTarget: 'side', + labelWidth: 75, + allowBlank: false + }, { + xtype: 'textfield', + fieldLabel: 'Фамилия', + afterLabelTextTpl: '*', + name: 'last_name', + msgTarget: 'side', + labelWidth: 75, + allowBlank: false + }, { + xtype: 'textfield', + fieldLabel: 'Отчество', + afterLabelTextTpl: '*', + name: 'middle_name', + msgTarget: 'side', + labelWidth: 75, + allowBlank: false + }], + buttons: [{ + text: 'Сохранить', + action: 'save' + }] + }] +}); \ No newline at end of file diff --git a/extjs-django/marvel/library/static/library/app/view/book/EditWindow.js b/extjs-django/marvel/library/static/library/app/view/book/EditWindow.js new file mode 100644 index 0000000..e830b0b --- /dev/null +++ b/extjs-django/marvel/library/static/library/app/view/book/EditWindow.js @@ -0,0 +1,46 @@ +Ext.define('Lib.view.book.EditWindow', { + extend: 'Ext.window.Window', + requires: [ + 'Ext.button.Button', + 'Ext.form.field.Text' + ], + alias: 'widget.bookeditwin', + width: 300, + modal: true, + title: 'Добавление жанра', + closeAction: 'destroy', + items: [{ + xtype: 'form', + layout: 'form', + bodyPadding: '5 5 5', + items: [{ + xtype: 'textfield', + fieldLabel: 'Имя', + afterLabelTextTpl: '*', + name: 'first_name', + msgTarget: 'side', + labelWidth: 75, + allowBlank: false + }, { + xtype: 'textfield', + fieldLabel: 'Фамилия', + afterLabelTextTpl: '*', + name: 'last_name', + msgTarget: 'side', + labelWidth: 75, + allowBlank: false + }, { + xtype: 'textfield', + fieldLabel: 'Отчество', + afterLabelTextTpl: '*', + name: 'middle_name', + msgTarget: 'side', + labelWidth: 75, + allowBlank: false + }], + buttons: [{ + text: 'Сохранить', + action: 'save' + }] + }] +}); \ No newline at end of file diff --git a/extjs-django/marvel/library/static/library/app/view/genre/EditWindow.js b/extjs-django/marvel/library/static/library/app/view/genre/EditWindow.js new file mode 100644 index 0000000..f4ebc16 --- /dev/null +++ b/extjs-django/marvel/library/static/library/app/view/genre/EditWindow.js @@ -0,0 +1,30 @@ +Ext.define('Lib.view.genre.EditWindow', { + extend: 'Ext.window.Window', + requires: [ + 'Ext.button.Button', + 'Ext.form.field.Text' + ], + alias: 'widget.genreeditwin', + width: 300, + modal: true, + title: 'Добавление жанра', + closeAction: 'destroy', + items: [{ + xtype: 'form', + layout: 'form', + bodyPadding: '5 5 5', + items: [{ + xtype: 'textfield', + fieldLabel: 'Название', + afterLabelTextTpl: '*', + name: 'title', + msgTarget: 'side', + labelWidth: 75, + allowBlank: false + }], + buttons: [{ + text: 'Сохранить', + action: 'save' + }] + }] +}); \ No newline at end of file diff --git a/extjs-django/marvel/library/templates/library/index.html b/extjs-django/marvel/library/templates/library/index.html new file mode 100644 index 0000000..f30376a --- /dev/null +++ b/extjs-django/marvel/library/templates/library/index.html @@ -0,0 +1,14 @@ +{% load staticfiles %} + + + + + Library - ExtJs 4 Application + + + + + + + + \ No newline at end of file diff --git a/extjs-django/marvel/library/tests.py b/extjs-django/marvel/library/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/extjs-django/marvel/library/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/extjs-django/marvel/library/urls.py b/extjs-django/marvel/library/urls.py new file mode 100644 index 0000000..a40e1ae --- /dev/null +++ b/extjs-django/marvel/library/urls.py @@ -0,0 +1,15 @@ +from django.conf.urls import patterns, url, include +from rest_framework import routers +from library import views + +router = routers.DefaultRouter() +router.register(r'genres', views.GenreViewSet) +router.register(r'authors', views.AuthorViewSet) +router.register(r'books', views.BookViewSet) + +# Wire up our API using automatic URL routing. +# Additionally, we include login URLs for the browseable API. +urlpatterns = patterns('', + url(r'^$', views.index, name='index'), + url(r'^', include(router.urls)) + ) diff --git a/extjs-django/marvel/library/views.py b/extjs-django/marvel/library/views.py new file mode 100644 index 0000000..f76896c --- /dev/null +++ b/extjs-django/marvel/library/views.py @@ -0,0 +1,58 @@ +from django.contrib.auth.models import User, Group +from rest_framework import viewsets +from models import Book, Author, Genre +from serializers import UserSerializer, GroupSerializer, BookSerializer, AuthorSerializer, GenreSerializer + +from django.http import HttpResponse +from django.template import RequestContext, loader + + +def index(request): + template = loader.get_template('library/index.html') + context = RequestContext(request, {}) + return HttpResponse(template.render(context)) + + +class UserViewSet(viewsets.ModelViewSet): + + """ + API endpoint that allows users to be viewed or edited. + """ + queryset = User.objects.all() + serializer_class = UserSerializer + + +class GroupViewSet(viewsets.ModelViewSet): + + """ + API endpoint that allows groups to be viewed or edited. + """ + queryset = Group.objects.all() + serializer_class = GroupSerializer + + +class BookViewSet(viewsets.ModelViewSet): + + """ + API endpoint that allows books to be viewed or edited. + """ + queryset = Book.objects.all() + serializer_class = BookSerializer + + +class GenreViewSet(viewsets.ModelViewSet): + + """ + API endpoint that allows genres to be viewed or edited. + """ + queryset = Genre.objects.all() + serializer_class = GenreSerializer + + +class AuthorViewSet(viewsets.ModelViewSet): + + """ + API endpoint that allows authors to be viewed or edited. + """ + queryset = Author.objects.all() + serializer_class = AuthorSerializer diff --git a/extjs-django/marvel/manage.py b/extjs-django/marvel/manage.py new file mode 100644 index 0000000..87374f4 --- /dev/null +++ b/extjs-django/marvel/manage.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python +import os +import sys + +if __name__ == "__main__": + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "marvel.settings") + + from django.core.management import execute_from_command_line + + execute_from_command_line(sys.argv) diff --git a/extjs-django/marvel/marvel/__init__.py b/extjs-django/marvel/marvel/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/extjs-django/marvel/marvel/settings.py b/extjs-django/marvel/marvel/settings.py new file mode 100644 index 0000000..dd0e44e --- /dev/null +++ b/extjs-django/marvel/marvel/settings.py @@ -0,0 +1,97 @@ +""" +Django settings for marvel project. + +For more information on this file, see +https://docs.djangoproject.com/en/1.6/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/1.6/ref/settings/ +""" + +# Build paths inside the project like this: os.path.join(BASE_DIR, ...) +import os +BASE_DIR = os.path.dirname(os.path.dirname(__file__)) + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/1.6/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'ptfcw-u2k8+h^muefr@n9&2ml_a2x!7kd9cy#+p+c+t#b69p^m' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +TEMPLATE_DEBUG = True +TEMPLATE_DIRS = [os.path.join(BASE_DIR, 'templates')] + +ALLOWED_HOSTS = [] + +# Application definition + +INSTALLED_APPS = ( + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'bane', + 'library', + 'rest_framework', +) + +MIDDLEWARE_CLASSES = ( + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', +) + +ROOT_URLCONF = 'marvel.urls' + +WSGI_APPLICATION = 'marvel.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/1.6/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), + 'USER': 'admin', + 'PASSWORD': 'admin', + 'HOST': '', + 'PORT': '' + } +} + +# Internationalization +# https://docs.djangoproject.com/en/1.6/topics/i18n/ + +LANGUAGE_CODE = 'en-us' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_L10N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/1.6/howto/static-files/ + +STATIC_URL = '/static/' + +STATICFILES_DIRS = ( + os.path.join(BASE_DIR, "static"), +) + +REST_FRAMEWORK = { + 'PAGINATE_BY': 25 +} diff --git a/extjs-django/marvel/marvel/urls.py b/extjs-django/marvel/marvel/urls.py new file mode 100644 index 0000000..8615b28 --- /dev/null +++ b/extjs-django/marvel/marvel/urls.py @@ -0,0 +1,19 @@ +from django.conf.urls import patterns, url, include +from rest_framework import routers +from library import views + +from django.contrib import admin +admin.autodiscover() + +router = routers.DefaultRouter() +router.register(r'users', views.UserViewSet) +router.register(r'groups', views.GroupViewSet) + +urlpatterns = patterns('', + url(r'^bane/', include('bane.urls')), + url(r'^library/', include('library.urls')), + url(r'^admin/', include(admin.site.urls)), + url(r'^', include(router.urls)), + url(r'^api-auth/', include( + 'rest_framework.urls', namespace='rest_framework')) + ) diff --git a/extjs-django/marvel/marvel/wsgi.py b/extjs-django/marvel/marvel/wsgi.py new file mode 100644 index 0000000..d2da58d --- /dev/null +++ b/extjs-django/marvel/marvel/wsgi.py @@ -0,0 +1,14 @@ +""" +WSGI config for marvel project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/ +""" + +import os +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "marvel.settings") + +from django.core.wsgi import get_wsgi_application +application = get_wsgi_application() diff --git a/extjs-django/marvel/static/extjs/ext-all-debug.js b/extjs-django/marvel/static/extjs/ext-all-debug.js new file mode 100644 index 0000000..c4f9f6c --- /dev/null +++ b/extjs-django/marvel/static/extjs/ext-all-debug.js @@ -0,0 +1,130568 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ + + + + + +var Ext = Ext || {}; +Ext._startTime = new Date().getTime(); +(function() { + var global = this, + objectPrototype = Object.prototype, + toString = objectPrototype.toString, + enumerables = true, + enumerablesTest = {toString: 1}, + emptyFn = function () {}, + + + callOverrideParent = function () { + var method = callOverrideParent.caller.caller; + return method.$owner.prototype[method.$name].apply(this, arguments); + }, + i, + nonWhitespaceRe = /\S/, + ExtApp, + iterableRe = /\[object\s*(?:Array|Arguments|\w*Collection|\w*List|HTML\s+document\.all\s+class)\]/; + + Function.prototype.$extIsFunction = true; + + Ext.global = global; + + for (i in enumerablesTest) { + enumerables = null; + } + + if (enumerables) { + enumerables = ['hasOwnProperty', 'valueOf', 'isPrototypeOf', 'propertyIsEnumerable', + 'toLocaleString', 'toString', 'constructor']; + } + + + Ext.enumerables = enumerables; + + + Ext.apply = function(object, config, defaults) { + if (defaults) { + Ext.apply(object, defaults); + } + + if (object && config && typeof config === 'object') { + var i, j, k; + + for (i in config) { + object[i] = config[i]; + } + + if (enumerables) { + for (j = enumerables.length; j--;) { + k = enumerables[j]; + if (config.hasOwnProperty(k)) { + object[k] = config[k]; + } + } + } + } + + return object; + }; + + Ext.buildSettings = Ext.apply({ + baseCSSPrefix: 'x-' + }, Ext.buildSettings || {}); + + Ext.apply(Ext, { + + + name: Ext.sandboxName || 'Ext', + + + emptyFn: emptyFn, + + + identityFn: function(o) { + return o; + }, + + + emptyString: new String(), + + baseCSSPrefix: Ext.buildSettings.baseCSSPrefix, + + + applyIf: function(object, config) { + var property; + + if (object) { + for (property in config) { + if (object[property] === undefined) { + object[property] = config[property]; + } + } + } + + return object; + }, + + + iterate: function(object, fn, scope) { + if (Ext.isEmpty(object)) { + return; + } + + if (scope === undefined) { + scope = object; + } + + if (Ext.isIterable(object)) { + Ext.Array.each.call(Ext.Array, object, fn, scope); + } + else { + Ext.Object.each.call(Ext.Object, object, fn, scope); + } + } + }); + + Ext.apply(Ext, { + + + extend: (function() { + + var objectConstructor = objectPrototype.constructor, + inlineOverrides = function(o) { + for (var m in o) { + if (!o.hasOwnProperty(m)) { + continue; + } + this[m] = o[m]; + } + }; + + return function(subclass, superclass, overrides) { + + if (Ext.isObject(superclass)) { + overrides = superclass; + superclass = subclass; + subclass = overrides.constructor !== objectConstructor ? overrides.constructor : function() { + superclass.apply(this, arguments); + }; + } + + + + var F = function() {}, + subclassProto, superclassProto = superclass.prototype; + + F.prototype = superclassProto; + subclassProto = subclass.prototype = new F(); + subclassProto.constructor = subclass; + subclass.superclass = superclassProto; + + if (superclassProto.constructor === objectConstructor) { + superclassProto.constructor = superclass; + } + + subclass.override = function(overrides) { + Ext.override(subclass, overrides); + }; + + subclassProto.override = inlineOverrides; + subclassProto.proto = subclassProto; + + subclass.override(overrides); + subclass.extend = function(o) { + return Ext.extend(subclass, o); + }; + + return subclass; + }; + }()), + + + override: function (target, overrides) { + if (target.$isClass) { + target.override(overrides); + } else if (typeof target == 'function') { + Ext.apply(target.prototype, overrides); + } else { + var owner = target.self, + name, value; + + if (owner && owner.$isClass) { + for (name in overrides) { + if (overrides.hasOwnProperty(name)) { + value = overrides[name]; + + if (typeof value == 'function') { + + value.$name = name; + value.$owner = owner; + value.$previous = target.hasOwnProperty(name) + ? target[name] + : callOverrideParent; + } + + target[name] = value; + } + } + } else { + Ext.apply(target, overrides); + } + } + + return target; + } + }); + + + Ext.apply(Ext, { + + + valueFrom: function(value, defaultValue, allowBlank){ + return Ext.isEmpty(value, allowBlank) ? defaultValue : value; + }, + + + typeOf: function(value) { + var type, + typeToString; + + if (value === null) { + return 'null'; + } + + type = typeof value; + + if (type === 'undefined' || type === 'string' || type === 'number' || type === 'boolean') { + return type; + } + + typeToString = toString.call(value); + + switch(typeToString) { + case '[object Array]': + return 'array'; + case '[object Date]': + return 'date'; + case '[object Boolean]': + return 'boolean'; + case '[object Number]': + return 'number'; + case '[object RegExp]': + return 'regexp'; + } + + if (type === 'function') { + return 'function'; + } + + if (type === 'object') { + if (value.nodeType !== undefined) { + if (value.nodeType === 3) { + return (nonWhitespaceRe).test(value.nodeValue) ? 'textnode' : 'whitespace'; + } + else { + return 'element'; + } + } + + return 'object'; + } + + }, + + + coerce: function(from, to) { + var fromType = Ext.typeOf(from), + toType = Ext.typeOf(to), + isString = typeof from === 'string'; + + if (fromType !== toType) { + switch (toType) { + case 'string': + return String(from); + case 'number': + return Number(from); + case 'boolean': + return isString && (!from || from === 'false') ? false : Boolean(from); + case 'null': + return isString && (!from || from === 'null') ? null : from; + case 'undefined': + return isString && (!from || from === 'undefined') ? undefined : from; + case 'date': + return isString && isNaN(from) ? Ext.Date.parse(from, Ext.Date.defaultFormat) : Date(Number(from)); + } + } + return from; + }, + + + isEmpty: function(value, allowEmptyString) { + return (value === null) || (value === undefined) || (!allowEmptyString ? value === '' : false) || (Ext.isArray(value) && value.length === 0); + }, + + + isArray: ('isArray' in Array) ? Array.isArray : function(value) { + return toString.call(value) === '[object Array]'; + }, + + + isDate: function(value) { + return toString.call(value) === '[object Date]'; + }, + + + isObject: (toString.call(null) === '[object Object]') ? + function(value) { + + return value !== null && value !== undefined && toString.call(value) === '[object Object]' && value.ownerDocument === undefined; + } : + function(value) { + return toString.call(value) === '[object Object]'; + }, + + + isSimpleObject: function(value) { + return value instanceof Object && value.constructor === Object; + }, + + isPrimitive: function(value) { + var type = typeof value; + + return type === 'string' || type === 'number' || type === 'boolean'; + }, + + + isFunction: function(value) { + return !!(value && value.$extIsFunction); + }, + + + isNumber: function(value) { + return typeof value === 'number' && isFinite(value); + }, + + + isNumeric: function(value) { + return !isNaN(parseFloat(value)) && isFinite(value); + }, + + + isString: function(value) { + return typeof value === 'string'; + }, + + + isBoolean: function(value) { + return typeof value === 'boolean'; + }, + + + isElement: function(value) { + return value ? value.nodeType === 1 : false; + }, + + + isTextNode: function(value) { + return value ? value.nodeName === "#text" : false; + }, + + + isDefined: function(value) { + return typeof value !== 'undefined'; + }, + + + isIterable: function(value) { + + if (!value || typeof value.length !== 'number' || typeof value === 'string' || value.$extIsFunction) { + return false; + } + + + + + if (!value.propertyIsEnumerable) { + return !!value.item; + } + + + + if (value.hasOwnProperty('length') && !value.propertyIsEnumerable('length')) { + return true; + } + + + return iterableRe.test(toString.call(value)); + } + }); + + Ext.apply(Ext, { + + + clone: function(item) { + var type, + i, + j, + k, + clone, + key; + + if (item === null || item === undefined) { + return item; + } + + + + + if (item.nodeType && item.cloneNode) { + return item.cloneNode(true); + } + + type = toString.call(item); + + + if (type === '[object Date]') { + return new Date(item.getTime()); + } + + + + if (type === '[object Array]') { + i = item.length; + + clone = []; + + while (i--) { + clone[i] = Ext.clone(item[i]); + } + } + + else if (type === '[object Object]' && item.constructor === Object) { + clone = {}; + + for (key in item) { + clone[key] = Ext.clone(item[key]); + } + + if (enumerables) { + for (j = enumerables.length; j--;) { + k = enumerables[j]; + if (item.hasOwnProperty(k)) { + clone[k] = item[k]; + } + } + } + } + + return clone || item; + }, + + + getUniqueGlobalNamespace: function() { + var uniqueGlobalNamespace = this.uniqueGlobalNamespace, + i; + + if (uniqueGlobalNamespace === undefined) { + i = 0; + + do { + uniqueGlobalNamespace = 'ExtBox' + (++i); + } while (Ext.global[uniqueGlobalNamespace] !== undefined); + + Ext.global[uniqueGlobalNamespace] = Ext; + this.uniqueGlobalNamespace = uniqueGlobalNamespace; + } + + return uniqueGlobalNamespace; + }, + + + functionFactoryCache: {}, + + cacheableFunctionFactory: function() { + var me = this, + args = Array.prototype.slice.call(arguments), + cache = me.functionFactoryCache, + idx, fn, ln; + + if (Ext.isSandboxed) { + ln = args.length; + if (ln > 0) { + ln--; + args[ln] = 'var Ext=window.' + Ext.name + ';' + args[ln]; + } + } + idx = args.join(''); + fn = cache[idx]; + if (!fn) { + fn = Function.prototype.constructor.apply(Function.prototype, args); + + cache[idx] = fn; + } + return fn; + }, + + functionFactory: function() { + var me = this, + args = Array.prototype.slice.call(arguments), + ln; + + if (Ext.isSandboxed) { + ln = args.length; + if (ln > 0) { + ln--; + args[ln] = 'var Ext=window.' + Ext.name + ';' + args[ln]; + } + } + + return Function.prototype.constructor.apply(Function.prototype, args); + }, + + + Logger: { + verbose: emptyFn, + log: emptyFn, + info: emptyFn, + warn: emptyFn, + error: function(message) { + throw new Error(message); + }, + deprecate: emptyFn + } + }); + + + Ext.type = Ext.typeOf; + + + + + ExtApp = Ext.app; + if (!ExtApp) { + ExtApp = Ext.app = {}; + } + Ext.apply(ExtApp, { + namespaces: {}, + + + collectNamespaces: function(paths) { + var namespaces = Ext.app.namespaces, + path; + + for (path in paths) { + if (paths.hasOwnProperty(path)) { + namespaces[path] = true; + } + } + }, + + + addNamespaces: function(ns) { + var namespaces = Ext.app.namespaces, + i, l; + + if (!Ext.isArray(ns)) { + ns = [ns]; + } + + for (i = 0, l = ns.length; i < l; i++) { + namespaces[ns[i]] = true; + } + }, + + + clearNamespaces: function() { + Ext.app.namespaces = {}; + }, + + + getNamespace: function(className) { + var namespaces = Ext.app.namespaces, + deepestPrefix = '', + prefix; + + for (prefix in namespaces) { + if (namespaces.hasOwnProperty(prefix) && + prefix.length > deepestPrefix.length && + (prefix + '.' === className.substring(0, prefix.length + 1))) { + deepestPrefix = prefix; + } + } + + return deepestPrefix === '' ? undefined : deepestPrefix; + } + }); +}()); + + +Ext.globalEval = Ext.global.execScript + ? function(code) { + execScript(code); + } + : function($$code) { + + + (function(){ + + + + var Ext = this.Ext; + eval($$code); + }()); + }; + + + + + + +(function() { + + + +var version = '4.2.1.883', Version; + Ext.Version = Version = Ext.extend(Object, { + + + constructor: function(version) { + var parts, releaseStartIndex; + + if (version instanceof Version) { + return version; + } + + this.version = this.shortVersion = String(version).toLowerCase().replace(/_/g, '.').replace(/[\-+]/g, ''); + + releaseStartIndex = this.version.search(/([^\d\.])/); + + if (releaseStartIndex !== -1) { + this.release = this.version.substr(releaseStartIndex, version.length); + this.shortVersion = this.version.substr(0, releaseStartIndex); + } + + this.shortVersion = this.shortVersion.replace(/[^\d]/g, ''); + + parts = this.version.split('.'); + + this.major = parseInt(parts.shift() || 0, 10); + this.minor = parseInt(parts.shift() || 0, 10); + this.patch = parseInt(parts.shift() || 0, 10); + this.build = parseInt(parts.shift() || 0, 10); + + return this; + }, + + + toString: function() { + return this.version; + }, + + + valueOf: function() { + return this.version; + }, + + + getMajor: function() { + return this.major || 0; + }, + + + getMinor: function() { + return this.minor || 0; + }, + + + getPatch: function() { + return this.patch || 0; + }, + + + getBuild: function() { + return this.build || 0; + }, + + + getRelease: function() { + return this.release || ''; + }, + + + isGreaterThan: function(target) { + return Version.compare(this.version, target) === 1; + }, + + + isGreaterThanOrEqual: function(target) { + return Version.compare(this.version, target) >= 0; + }, + + + isLessThan: function(target) { + return Version.compare(this.version, target) === -1; + }, + + + isLessThanOrEqual: function(target) { + return Version.compare(this.version, target) <= 0; + }, + + + equals: function(target) { + return Version.compare(this.version, target) === 0; + }, + + + match: function(target) { + target = String(target); + return this.version.substr(0, target.length) === target; + }, + + + toArray: function() { + return [this.getMajor(), this.getMinor(), this.getPatch(), this.getBuild(), this.getRelease()]; + }, + + + getShortVersion: function() { + return this.shortVersion; + }, + + + gt: function() { + return this.isGreaterThan.apply(this, arguments); + }, + + + lt: function() { + return this.isLessThan.apply(this, arguments); + }, + + + gtEq: function() { + return this.isGreaterThanOrEqual.apply(this, arguments); + }, + + + ltEq: function() { + return this.isLessThanOrEqual.apply(this, arguments); + } + }); + + Ext.apply(Version, { + + releaseValueMap: { + 'dev': -6, + 'alpha': -5, + 'a': -5, + 'beta': -4, + 'b': -4, + 'rc': -3, + '#': -2, + 'p': -1, + 'pl': -1 + }, + + + getComponentValue: function(value) { + return !value ? 0 : (isNaN(value) ? this.releaseValueMap[value] || value : parseInt(value, 10)); + }, + + + compare: function(current, target) { + var currentValue, targetValue, i; + + current = new Version(current).toArray(); + target = new Version(target).toArray(); + + for (i = 0; i < Math.max(current.length, target.length); i++) { + currentValue = this.getComponentValue(current[i]); + targetValue = this.getComponentValue(target[i]); + + if (currentValue < targetValue) { + return -1; + } else if (currentValue > targetValue) { + return 1; + } + } + + return 0; + } + }); + + + Ext.apply(Ext, { + + versions: {}, + + + lastRegisteredVersion: null, + + + setVersion: function(packageName, version) { + Ext.versions[packageName] = new Version(version); + Ext.lastRegisteredVersion = Ext.versions[packageName]; + + return this; + }, + + + getVersion: function(packageName) { + if (packageName === undefined) { + return Ext.lastRegisteredVersion; + } + + return Ext.versions[packageName]; + }, + + + deprecate: function(packageName, since, closure, scope) { + if (Version.compare(Ext.getVersion(packageName), since) < 1) { + closure.call(scope); + } + } + }); + + Ext.setVersion('core', version); + +}()); + + + + + + + +Ext.String = (function() { + var trimRegex = /^[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u2028\u2029\u202f\u205f\u3000]+|[\x09\x0a\x0b\x0c\x0d\x20\xa0\u1680\u180e\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200a\u2028\u2029\u202f\u205f\u3000]+$/g, + escapeRe = /('|\\)/g, + formatRe = /\{(\d+)\}/g, + escapeRegexRe = /([-.*+?\^${}()|\[\]\/\\])/g, + basicTrimRe = /^\s+|\s+$/g, + whitespaceRe = /\s+/, + varReplace = /(^[^a-z]*|[^\w])/gi, + charToEntity, + entityToChar, + charToEntityRegex, + entityToCharRegex, + htmlEncodeReplaceFn = function(match, capture) { + return charToEntity[capture]; + }, + htmlDecodeReplaceFn = function(match, capture) { + return (capture in entityToChar) ? entityToChar[capture] : String.fromCharCode(parseInt(capture.substr(2), 10)); + }, + boundsCheck = function(s, other){ + if (s === null || s === undefined || other === null || other === undefined) { + return false; + } + + return other.length <= s.length; + }; + + return { + + + insert: function(s, value, index) { + if (!s) { + return value; + } + + if (!value) { + return s; + } + + var len = s.length; + + if (!index && index !== 0) { + index = len; + } + + if (index < 0) { + index *= -1; + if (index >= len) { + + index = 0; + } else { + index = len - index; + } + } + + if (index === 0) { + s = value + s; + } else if (index >= s.length) { + s += value; + } else { + s = s.substr(0, index) + value + s.substr(index); + } + return s; + }, + + + startsWith: function(s, start, ignoreCase){ + var result = boundsCheck(s, start); + + if (result) { + if (ignoreCase) { + s = s.toLowerCase(); + start = start.toLowerCase(); + } + result = s.lastIndexOf(start, 0) === 0; + } + return result; + }, + + + endsWith: function(s, end, ignoreCase){ + var result = boundsCheck(s, end); + + if (result) { + if (ignoreCase) { + s = s.toLowerCase(); + end = end.toLowerCase(); + } + result = s.indexOf(end, s.length - end.length) !== -1; + } + return result; + }, + + + createVarName: function(s) { + return s.replace(varReplace, ''); + }, + + + htmlEncode: function(value) { + return (!value) ? value : String(value).replace(charToEntityRegex, htmlEncodeReplaceFn); + }, + + + htmlDecode: function(value) { + return (!value) ? value : String(value).replace(entityToCharRegex, htmlDecodeReplaceFn); + }, + + + addCharacterEntities: function(newEntities) { + var charKeys = [], + entityKeys = [], + key, echar; + for (key in newEntities) { + echar = newEntities[key]; + entityToChar[key] = echar; + charToEntity[echar] = key; + charKeys.push(echar); + entityKeys.push(key); + } + charToEntityRegex = new RegExp('(' + charKeys.join('|') + ')', 'g'); + entityToCharRegex = new RegExp('(' + entityKeys.join('|') + '|&#[0-9]{1,5};' + ')', 'g'); + }, + + + resetCharacterEntities: function() { + charToEntity = {}; + entityToChar = {}; + + this.addCharacterEntities({ + '&' : '&', + '>' : '>', + '<' : '<', + '"' : '"', + ''' : "'" + }); + }, + + + urlAppend : function(url, string) { + if (!Ext.isEmpty(string)) { + return url + (url.indexOf('?') === -1 ? '?' : '&') + string; + } + + return url; + }, + + + trim: function(string) { + return string.replace(trimRegex, ""); + }, + + + capitalize: function(string) { + return string.charAt(0).toUpperCase() + string.substr(1); + }, + + + uncapitalize: function(string) { + return string.charAt(0).toLowerCase() + string.substr(1); + }, + + + ellipsis: function(value, len, word) { + if (value && value.length > len) { + if (word) { + var vs = value.substr(0, len - 2), + index = Math.max(vs.lastIndexOf(' '), vs.lastIndexOf('.'), vs.lastIndexOf('!'), vs.lastIndexOf('?')); + if (index !== -1 && index >= (len - 15)) { + return vs.substr(0, index) + "..."; + } + } + return value.substr(0, len - 3) + "..."; + } + return value; + }, + + + escapeRegex: function(string) { + return string.replace(escapeRegexRe, "\\$1"); + }, + + + escape: function(string) { + return string.replace(escapeRe, "\\$1"); + }, + + + toggle: function(string, value, other) { + return string === value ? other : value; + }, + + + leftPad: function(string, size, character) { + var result = String(string); + character = character || " "; + while (result.length < size) { + result = character + result; + } + return result; + }, + + + format: function(format) { + var args = Ext.Array.toArray(arguments, 1); + return format.replace(formatRe, function(m, i) { + return args[i]; + }); + }, + + + repeat: function(pattern, count, sep) { + if (count < 1) { + count = 0; + } + for (var buf = [], i = count; i--; ) { + buf.push(pattern); + } + return buf.join(sep || ''); + }, + + + splitWords: function (words) { + if (words && typeof words == 'string') { + return words.replace(basicTrimRe, '').split(whitespaceRe); + } + return words || []; + } + }; +}()); + + +Ext.String.resetCharacterEntities(); + + +Ext.htmlEncode = Ext.String.htmlEncode; + + + +Ext.htmlDecode = Ext.String.htmlDecode; + + +Ext.urlAppend = Ext.String.urlAppend; + + + + + + + +Ext.Number = new function() { + + var me = this, + isToFixedBroken = (0.9).toFixed() !== '1', + math = Math; + + Ext.apply(this, { + + constrain: function(number, min, max) { + var x = parseFloat(number); + + + + + + + + + + return (x < min) ? min : ((x > max) ? max : x); + }, + + + snap : function(value, increment, minValue, maxValue) { + var m; + + + + if (value === undefined || value < minValue) { + return minValue || 0; + } + + if (increment) { + m = value % increment; + if (m !== 0) { + value -= m; + if (m * 2 >= increment) { + value += increment; + } else if (m * 2 < -increment) { + value -= increment; + } + } + } + return me.constrain(value, minValue, maxValue); + }, + + + snapInRange : function(value, increment, minValue, maxValue) { + var tween; + + + minValue = (minValue || 0); + + + if (value === undefined || value < minValue) { + return minValue; + } + + + if (increment && (tween = ((value - minValue) % increment))) { + value -= tween; + tween *= 2; + if (tween >= increment) { + value += increment; + } + } + + + if (maxValue !== undefined) { + if (value > (maxValue = me.snapInRange(maxValue, increment, minValue))) { + value = maxValue; + } + } + + return value; + }, + + + toFixed: isToFixedBroken ? function(value, precision) { + precision = precision || 0; + var pow = math.pow(10, precision); + return (math.round(value * pow) / pow).toFixed(precision); + } : function(value, precision) { + return value.toFixed(precision); + }, + + + from: function(value, defaultValue) { + if (isFinite(value)) { + value = parseFloat(value); + } + + return !isNaN(value) ? value : defaultValue; + }, + + + randomInt: function (from, to) { + return math.floor(math.random() * (to - from + 1) + from); + }, + + + correctFloat: function(n) { + + + + return parseFloat(n.toPrecision(14)); + } + }); + + + Ext.num = function() { + return me.from.apply(this, arguments); + }; +}; + + + + + + +(function() { + + var arrayPrototype = Array.prototype, + slice = arrayPrototype.slice, + supportsSplice = (function () { + var array = [], + lengthBefore, + j = 20; + + if (!array.splice) { + return false; + } + + + + + while (j--) { + array.push("A"); + } + + array.splice(15, 0, "F", "F", "F", "F", "F","F","F","F","F","F","F","F","F","F","F","F","F","F","F","F","F"); + + lengthBefore = array.length; + array.splice(13, 0, "XXX"); + + if (lengthBefore+1 != array.length) { + return false; + } + + + return true; + }()), + supportsForEach = 'forEach' in arrayPrototype, + supportsMap = 'map' in arrayPrototype, + supportsIndexOf = 'indexOf' in arrayPrototype, + supportsEvery = 'every' in arrayPrototype, + supportsSome = 'some' in arrayPrototype, + supportsFilter = 'filter' in arrayPrototype, + supportsSort = (function() { + var a = [1,2,3,4,5].sort(function(){ return 0; }); + return a[0] === 1 && a[1] === 2 && a[2] === 3 && a[3] === 4 && a[4] === 5; + }()), + supportsSliceOnNodeList = true, + ExtArray, + erase, + replace, + splice; + + try { + + if (typeof document !== 'undefined') { + slice.call(document.getElementsByTagName('body')); + } + } catch (e) { + supportsSliceOnNodeList = false; + } + + function fixArrayIndex (array, index) { + return (index < 0) ? Math.max(0, array.length + index) + : Math.min(array.length, index); + } + + + function replaceSim (array, index, removeCount, insert) { + var add = insert ? insert.length : 0, + length = array.length, + pos = fixArrayIndex(array, index), + remove, + tailOldPos, + tailNewPos, + tailCount, + lengthAfterRemove, + i; + + + if (pos === length) { + if (add) { + array.push.apply(array, insert); + } + } else { + remove = Math.min(removeCount, length - pos); + tailOldPos = pos + remove; + tailNewPos = tailOldPos + add - remove; + tailCount = length - tailOldPos; + lengthAfterRemove = length - remove; + + if (tailNewPos < tailOldPos) { + for (i = 0; i < tailCount; ++i) { + array[tailNewPos+i] = array[tailOldPos+i]; + } + } else if (tailNewPos > tailOldPos) { + for (i = tailCount; i--; ) { + array[tailNewPos+i] = array[tailOldPos+i]; + } + } + + if (add && pos === lengthAfterRemove) { + array.length = lengthAfterRemove; + array.push.apply(array, insert); + } else { + array.length = lengthAfterRemove + add; + for (i = 0; i < add; ++i) { + array[pos+i] = insert[i]; + } + } + } + + return array; + } + + function replaceNative (array, index, removeCount, insert) { + if (insert && insert.length) { + + if (index === 0 && !removeCount) { + array.unshift.apply(array, insert); + } + + else if (index < array.length) { + array.splice.apply(array, [index, removeCount].concat(insert)); + } + + else { + array.push.apply(array, insert); + } + } else { + array.splice(index, removeCount); + } + return array; + } + + function eraseSim (array, index, removeCount) { + return replaceSim(array, index, removeCount); + } + + function eraseNative (array, index, removeCount) { + array.splice(index, removeCount); + return array; + } + + function spliceSim (array, index, removeCount) { + var pos = fixArrayIndex(array, index), + removed = array.slice(index, fixArrayIndex(array, pos+removeCount)); + + if (arguments.length < 4) { + replaceSim(array, pos, removeCount); + } else { + replaceSim(array, pos, removeCount, slice.call(arguments, 3)); + } + + return removed; + } + + function spliceNative (array) { + return array.splice.apply(array, slice.call(arguments, 1)); + } + + erase = supportsSplice ? eraseNative : eraseSim; + replace = supportsSplice ? replaceNative : replaceSim; + splice = supportsSplice ? spliceNative : spliceSim; + + + + ExtArray = Ext.Array = { + + each: function(array, fn, scope, reverse) { + array = ExtArray.from(array); + + var i, + ln = array.length; + + if (reverse !== true) { + for (i = 0; i < ln; i++) { + if (fn.call(scope || array[i], array[i], i, array) === false) { + return i; + } + } + } + else { + for (i = ln - 1; i > -1; i--) { + if (fn.call(scope || array[i], array[i], i, array) === false) { + return i; + } + } + } + + return true; + }, + + + forEach: supportsForEach ? function(array, fn, scope) { + array.forEach(fn, scope); + } : function(array, fn, scope) { + var i = 0, + ln = array.length; + + for (; i < ln; i++) { + fn.call(scope, array[i], i, array); + } + }, + + + indexOf: supportsIndexOf ? function(array, item, from) { + return arrayPrototype.indexOf.call(array, item, from); + } : function(array, item, from) { + var i, length = array.length; + + for (i = (from < 0) ? Math.max(0, length + from) : from || 0; i < length; i++) { + if (array[i] === item) { + return i; + } + } + + return -1; + }, + + + contains: supportsIndexOf ? function(array, item) { + return arrayPrototype.indexOf.call(array, item) !== -1; + } : function(array, item) { + var i, ln; + + for (i = 0, ln = array.length; i < ln; i++) { + if (array[i] === item) { + return true; + } + } + + return false; + }, + + + toArray: function(iterable, start, end){ + if (!iterable || !iterable.length) { + return []; + } + + if (typeof iterable === 'string') { + iterable = iterable.split(''); + } + + if (supportsSliceOnNodeList) { + return slice.call(iterable, start || 0, end || iterable.length); + } + + var array = [], + i; + + start = start || 0; + end = end ? ((end < 0) ? iterable.length + end : end) : iterable.length; + + for (i = start; i < end; i++) { + array.push(iterable[i]); + } + + return array; + }, + + + pluck: function(array, propertyName) { + var ret = [], + i, ln, item; + + for (i = 0, ln = array.length; i < ln; i++) { + item = array[i]; + + ret.push(item[propertyName]); + } + + return ret; + }, + + + map: supportsMap ? function(array, fn, scope) { + return array.map(fn, scope); + } : function(array, fn, scope) { + var results = [], + i = 0, + len = array.length; + + for (; i < len; i++) { + results[i] = fn.call(scope, array[i], i, array); + } + + return results; + }, + + + every: supportsEvery ? function(array, fn, scope) { + return array.every(fn, scope); + } : function(array, fn, scope) { + var i = 0, + ln = array.length; + + for (; i < ln; ++i) { + if (!fn.call(scope, array[i], i, array)) { + return false; + } + } + + return true; + }, + + + some: supportsSome ? function(array, fn, scope) { + return array.some(fn, scope); + } : function(array, fn, scope) { + var i = 0, + ln = array.length; + + for (; i < ln; ++i) { + if (fn.call(scope, array[i], i, array)) { + return true; + } + } + + return false; + }, + + + equals: function(array1, array2) { + var len1 = array1.length, + len2 = array2.length, + i; + + + if (array1 === array2) { + return true; + } + + if (len1 !== len2) { + return false; + } + + for (i = 0; i < len1; ++i) { + if (array1[i] !== array2[i]) { + return false; + } + } + + return true; + }, + + + clean: function(array) { + var results = [], + i = 0, + ln = array.length, + item; + + for (; i < ln; i++) { + item = array[i]; + + if (!Ext.isEmpty(item)) { + results.push(item); + } + } + + return results; + }, + + + unique: function(array) { + var clone = [], + i = 0, + ln = array.length, + item; + + for (; i < ln; i++) { + item = array[i]; + + if (ExtArray.indexOf(clone, item) === -1) { + clone.push(item); + } + } + + return clone; + }, + + + filter: supportsFilter ? function(array, fn, scope) { + return array.filter(fn, scope); + } : function(array, fn, scope) { + var results = [], + i = 0, + ln = array.length; + + for (; i < ln; i++) { + if (fn.call(scope, array[i], i, array)) { + results.push(array[i]); + } + } + + return results; + }, + + + findBy : function(array, fn, scope) { + var i = 0, + len = array.length; + + for (; i < len; i++) { + if (fn.call(scope || array, array[i], i)) { + return array[i]; + } + } + return null; + }, + + + from: function(value, newReference) { + if (value === undefined || value === null) { + return []; + } + + if (Ext.isArray(value)) { + return (newReference) ? slice.call(value) : value; + } + + var type = typeof value; + + + if (value && value.length !== undefined && type !== 'string' && (type !== 'function' || !value.apply)) { + return ExtArray.toArray(value); + } + + return [value]; + }, + + + remove: function(array, item) { + var index = ExtArray.indexOf(array, item); + + if (index !== -1) { + erase(array, index, 1); + } + + return array; + }, + + + include: function(array, item) { + if (!ExtArray.contains(array, item)) { + array.push(item); + } + }, + + + clone: function(array) { + return slice.call(array); + }, + + + merge: function() { + var args = slice.call(arguments), + array = [], + i, ln; + + for (i = 0, ln = args.length; i < ln; i++) { + array = array.concat(args[i]); + } + + return ExtArray.unique(array); + }, + + + intersect: function() { + var intersection = [], + arrays = slice.call(arguments), + arraysLength, + array, + arrayLength, + minArray, + minArrayIndex, + minArrayCandidate, + minArrayLength, + element, + elementCandidate, + elementCount, + i, j, k; + + if (!arrays.length) { + return intersection; + } + + + arraysLength = arrays.length; + for (i = minArrayIndex = 0; i < arraysLength; i++) { + minArrayCandidate = arrays[i]; + if (!minArray || minArrayCandidate.length < minArray.length) { + minArray = minArrayCandidate; + minArrayIndex = i; + } + } + + minArray = ExtArray.unique(minArray); + erase(arrays, minArrayIndex, 1); + + + + + minArrayLength = minArray.length; + arraysLength = arrays.length; + for (i = 0; i < minArrayLength; i++) { + element = minArray[i]; + elementCount = 0; + + for (j = 0; j < arraysLength; j++) { + array = arrays[j]; + arrayLength = array.length; + for (k = 0; k < arrayLength; k++) { + elementCandidate = array[k]; + if (element === elementCandidate) { + elementCount++; + break; + } + } + } + + if (elementCount === arraysLength) { + intersection.push(element); + } + } + + return intersection; + }, + + + difference: function(arrayA, arrayB) { + var clone = slice.call(arrayA), + ln = clone.length, + i, j, lnB; + + for (i = 0,lnB = arrayB.length; i < lnB; i++) { + for (j = 0; j < ln; j++) { + if (clone[j] === arrayB[i]) { + erase(clone, j, 1); + j--; + ln--; + } + } + } + + return clone; + }, + + + + slice: ([1,2].slice(1, undefined).length ? + function (array, begin, end) { + return slice.call(array, begin, end); + } : + + function (array, begin, end) { + + + if (typeof begin === 'undefined') { + return slice.call(array); + } + if (typeof end === 'undefined') { + return slice.call(array, begin); + } + return slice.call(array, begin, end); + } + ), + + + sort: supportsSort ? function(array, sortFn) { + if (sortFn) { + return array.sort(sortFn); + } else { + return array.sort(); + } + } : function(array, sortFn) { + var length = array.length, + i = 0, + comparison, + j, min, tmp; + + for (; i < length; i++) { + min = i; + for (j = i + 1; j < length; j++) { + if (sortFn) { + comparison = sortFn(array[j], array[min]); + if (comparison < 0) { + min = j; + } + } else if (array[j] < array[min]) { + min = j; + } + } + if (min !== i) { + tmp = array[i]; + array[i] = array[min]; + array[min] = tmp; + } + } + + return array; + }, + + + flatten: function(array) { + var worker = []; + + function rFlatten(a) { + var i, ln, v; + + for (i = 0, ln = a.length; i < ln; i++) { + v = a[i]; + + if (Ext.isArray(v)) { + rFlatten(v); + } else { + worker.push(v); + } + } + + return worker; + } + + return rFlatten(array); + }, + + + min: function(array, comparisonFn) { + var min = array[0], + i, ln, item; + + for (i = 0, ln = array.length; i < ln; i++) { + item = array[i]; + + if (comparisonFn) { + if (comparisonFn(min, item) === 1) { + min = item; + } + } + else { + if (item < min) { + min = item; + } + } + } + + return min; + }, + + + max: function(array, comparisonFn) { + var max = array[0], + i, ln, item; + + for (i = 0, ln = array.length; i < ln; i++) { + item = array[i]; + + if (comparisonFn) { + if (comparisonFn(max, item) === -1) { + max = item; + } + } + else { + if (item > max) { + max = item; + } + } + } + + return max; + }, + + + mean: function(array) { + return array.length > 0 ? ExtArray.sum(array) / array.length : undefined; + }, + + + sum: function(array) { + var sum = 0, + i, ln, item; + + for (i = 0,ln = array.length; i < ln; i++) { + item = array[i]; + + sum += item; + } + + return sum; + }, + + + toMap: function(array, getKey, scope) { + var map = {}, + i = array.length; + + if (!getKey) { + while (i--) { + map[array[i]] = i+1; + } + } else if (typeof getKey == 'string') { + while (i--) { + map[array[i][getKey]] = i+1; + } + } else { + while (i--) { + map[getKey.call(scope, array[i])] = i+1; + } + } + + return map; + }, + + + toValueMap: function(array, getKey, scope) { + var map = {}, + i = array.length; + + if (!getKey) { + while (i--) { + map[array[i]] = array[i]; + } + } else if (typeof getKey == 'string') { + while (i--) { + map[array[i][getKey]] = array[i]; + } + } else { + while (i--) { + map[getKey.call(scope, array[i])] = array[i]; + } + } + + return map; + }, + + + + erase: erase, + + + insert: function (array, index, items) { + return replace(array, index, 0, items); + }, + + + replace: replace, + + + splice: splice, + + + push: function(array) { + var len = arguments.length, + i = 1, + newItem; + + if (array === undefined) { + array = []; + } else if (!Ext.isArray(array)) { + array = [array]; + } + for (; i < len; i++) { + newItem = arguments[i]; + Array.prototype.push[Ext.isIterable(newItem) ? 'apply' : 'call'](array, newItem); + } + return array; + } + }; + + + Ext.each = ExtArray.each; + + + ExtArray.union = ExtArray.merge; + + + Ext.min = ExtArray.min; + + + Ext.max = ExtArray.max; + + + Ext.sum = ExtArray.sum; + + + Ext.mean = ExtArray.mean; + + + Ext.flatten = ExtArray.flatten; + + + Ext.clean = ExtArray.clean; + + + Ext.unique = ExtArray.unique; + + + Ext.pluck = ExtArray.pluck; + + + Ext.toArray = function() { + return ExtArray.toArray.apply(ExtArray, arguments); + }; +}()); + + + + + + +Ext.Function = { + + + flexSetter: function(fn) { + return function(a, b) { + var k, i; + + if (a === null) { + return this; + } + + if (typeof a !== 'string') { + for (k in a) { + if (a.hasOwnProperty(k)) { + fn.call(this, k, a[k]); + } + } + + if (Ext.enumerables) { + for (i = Ext.enumerables.length; i--;) { + k = Ext.enumerables[i]; + if (a.hasOwnProperty(k)) { + fn.call(this, k, a[k]); + } + } + } + } else { + fn.call(this, a, b); + } + + return this; + }; + }, + + + bind: function(fn, scope, args, appendArgs) { + if (arguments.length === 2) { + return function() { + return fn.apply(scope, arguments); + }; + } + + var method = fn, + slice = Array.prototype.slice; + + return function() { + var callArgs = args || arguments; + + if (appendArgs === true) { + callArgs = slice.call(arguments, 0); + callArgs = callArgs.concat(args); + } + else if (typeof appendArgs == 'number') { + callArgs = slice.call(arguments, 0); + Ext.Array.insert(callArgs, appendArgs, args); + } + + return method.apply(scope || Ext.global, callArgs); + }; + }, + + + pass: function(fn, args, scope) { + if (!Ext.isArray(args)) { + if (Ext.isIterable(args)) { + args = Ext.Array.clone(args); + } else { + args = args !== undefined ? [args] : []; + } + } + + return function() { + var fnArgs = [].concat(args); + fnArgs.push.apply(fnArgs, arguments); + return fn.apply(scope || this, fnArgs); + }; + }, + + + alias: function(object, methodName) { + return function() { + return object[methodName].apply(object, arguments); + }; + }, + + + clone: function(method) { + return function() { + return method.apply(this, arguments); + }; + }, + + + createInterceptor: function(origFn, newFn, scope, returnValue) { + var method = origFn; + if (!Ext.isFunction(newFn)) { + return origFn; + } else { + returnValue = Ext.isDefined(returnValue) ? returnValue : null; + return function() { + var me = this, + args = arguments; + + newFn.target = me; + newFn.method = origFn; + return (newFn.apply(scope || me || Ext.global, args) !== false) ? origFn.apply(me || Ext.global, args) : returnValue; + }; + } + }, + + + createDelayed: function(fn, delay, scope, args, appendArgs) { + if (scope || args) { + fn = Ext.Function.bind(fn, scope, args, appendArgs); + } + + return function() { + var me = this, + args = Array.prototype.slice.call(arguments); + + setTimeout(function() { + fn.apply(me, args); + }, delay); + }; + }, + + + defer: function(fn, millis, scope, args, appendArgs) { + fn = Ext.Function.bind(fn, scope, args, appendArgs); + if (millis > 0) { + return setTimeout(Ext.supports.TimeoutActualLateness ? function () { + fn(); + } : fn, millis); + } + fn(); + return 0; + }, + + + createSequence: function(originalFn, newFn, scope) { + if (!newFn) { + return originalFn; + } + else { + return function() { + var result = originalFn.apply(this, arguments); + newFn.apply(scope || this, arguments); + return result; + }; + } + }, + + + createBuffered: function(fn, buffer, scope, args) { + var timerId; + + return function() { + var callArgs = args || Array.prototype.slice.call(arguments, 0), + me = scope || this; + + if (timerId) { + clearTimeout(timerId); + } + + timerId = setTimeout(function(){ + fn.apply(me, callArgs); + }, buffer); + }; + }, + + + createThrottled: function(fn, interval, scope) { + var lastCallTime, elapsed, lastArgs, timer, execute = function() { + fn.apply(scope || this, lastArgs); + lastCallTime = Ext.Date.now(); + }; + + return function() { + elapsed = Ext.Date.now() - lastCallTime; + lastArgs = arguments; + + clearTimeout(timer); + if (!lastCallTime || (elapsed >= interval)) { + execute(); + } else { + timer = setTimeout(execute, interval - elapsed); + } + }; + }, + + + + interceptBefore: function(object, methodName, fn, scope) { + var method = object[methodName] || Ext.emptyFn; + + return (object[methodName] = function() { + var ret = fn.apply(scope || this, arguments); + method.apply(this, arguments); + + return ret; + }); + }, + + + interceptAfter: function(object, methodName, fn, scope) { + var method = object[methodName] || Ext.emptyFn; + + return (object[methodName] = function() { + method.apply(this, arguments); + return fn.apply(scope || this, arguments); + }); + } +}; + + +Ext.defer = Ext.Function.alias(Ext.Function, 'defer'); + + +Ext.pass = Ext.Function.alias(Ext.Function, 'pass'); + + +Ext.bind = Ext.Function.alias(Ext.Function, 'bind'); + + + + + + + +(function() { + + +var TemplateClass = function(){}, + ExtObject = Ext.Object = { + + + chain: Object.create || function (object) { + TemplateClass.prototype = object; + var result = new TemplateClass(); + TemplateClass.prototype = null; + return result; + }, + + + toQueryObjects: function(name, value, recursive) { + var self = ExtObject.toQueryObjects, + objects = [], + i, ln; + + if (Ext.isArray(value)) { + for (i = 0, ln = value.length; i < ln; i++) { + if (recursive) { + objects = objects.concat(self(name + '[' + i + ']', value[i], true)); + } + else { + objects.push({ + name: name, + value: value[i] + }); + } + } + } + else if (Ext.isObject(value)) { + for (i in value) { + if (value.hasOwnProperty(i)) { + if (recursive) { + objects = objects.concat(self(name + '[' + i + ']', value[i], true)); + } + else { + objects.push({ + name: name, + value: value[i] + }); + } + } + } + } + else { + objects.push({ + name: name, + value: value + }); + } + + return objects; + }, + + + toQueryString: function(object, recursive) { + var paramObjects = [], + params = [], + i, j, ln, paramObject, value; + + for (i in object) { + if (object.hasOwnProperty(i)) { + paramObjects = paramObjects.concat(ExtObject.toQueryObjects(i, object[i], recursive)); + } + } + + for (j = 0, ln = paramObjects.length; j < ln; j++) { + paramObject = paramObjects[j]; + value = paramObject.value; + + if (Ext.isEmpty(value)) { + value = ''; + } else if (Ext.isDate(value)) { + value = Ext.Date.toString(value); + } + + params.push(encodeURIComponent(paramObject.name) + '=' + encodeURIComponent(String(value))); + } + + return params.join('&'); + }, + + + fromQueryString: function(queryString, recursive) { + var parts = queryString.replace(/^\?/, '').split('&'), + object = {}, + temp, components, name, value, i, ln, + part, j, subLn, matchedKeys, matchedName, + keys, key, nextKey; + + for (i = 0, ln = parts.length; i < ln; i++) { + part = parts[i]; + + if (part.length > 0) { + components = part.split('='); + name = decodeURIComponent(components[0]); + value = (components[1] !== undefined) ? decodeURIComponent(components[1]) : ''; + + if (!recursive) { + if (object.hasOwnProperty(name)) { + if (!Ext.isArray(object[name])) { + object[name] = [object[name]]; + } + + object[name].push(value); + } + else { + object[name] = value; + } + } + else { + matchedKeys = name.match(/(\[):?([^\]]*)\]/g); + matchedName = name.match(/^([^\[]+)/); + + + name = matchedName[0]; + keys = []; + + if (matchedKeys === null) { + object[name] = value; + continue; + } + + for (j = 0, subLn = matchedKeys.length; j < subLn; j++) { + key = matchedKeys[j]; + key = (key.length === 2) ? '' : key.substring(1, key.length - 1); + keys.push(key); + } + + keys.unshift(name); + + temp = object; + + for (j = 0, subLn = keys.length; j < subLn; j++) { + key = keys[j]; + + if (j === subLn - 1) { + if (Ext.isArray(temp) && key === '') { + temp.push(value); + } + else { + temp[key] = value; + } + } + else { + if (temp[key] === undefined || typeof temp[key] === 'string') { + nextKey = keys[j+1]; + + temp[key] = (Ext.isNumeric(nextKey) || nextKey === '') ? [] : {}; + } + + temp = temp[key]; + } + } + } + } + } + + return object; + }, + + + each: function(object, fn, scope) { + for (var property in object) { + if (object.hasOwnProperty(property)) { + if (fn.call(scope || object, property, object[property], object) === false) { + return; + } + } + } + }, + + + merge: function(destination) { + var i = 1, + ln = arguments.length, + mergeFn = ExtObject.merge, + cloneFn = Ext.clone, + object, key, value, sourceKey; + + for (; i < ln; i++) { + object = arguments[i]; + + for (key in object) { + value = object[key]; + if (value && value.constructor === Object) { + sourceKey = destination[key]; + if (sourceKey && sourceKey.constructor === Object) { + mergeFn(sourceKey, value); + } + else { + destination[key] = cloneFn(value); + } + } + else { + destination[key] = value; + } + } + } + + return destination; + }, + + + mergeIf: function(destination) { + var i = 1, + ln = arguments.length, + cloneFn = Ext.clone, + object, key, value; + + for (; i < ln; i++) { + object = arguments[i]; + + for (key in object) { + if (!(key in destination)) { + value = object[key]; + + if (value && value.constructor === Object) { + destination[key] = cloneFn(value); + } + else { + destination[key] = value; + } + } + } + } + + return destination; + }, + + + getKey: function(object, value) { + for (var property in object) { + if (object.hasOwnProperty(property) && object[property] === value) { + return property; + } + } + + return null; + }, + + + getValues: function(object) { + var values = [], + property; + + for (property in object) { + if (object.hasOwnProperty(property)) { + values.push(object[property]); + } + } + + return values; + }, + + + getKeys: (typeof Object.keys == 'function') + ? function(object){ + if (!object) { + return []; + } + return Object.keys(object); + } + : function(object) { + var keys = [], + property; + + for (property in object) { + if (object.hasOwnProperty(property)) { + keys.push(property); + } + } + + return keys; + }, + + + getSize: function(object) { + var size = 0, + property; + + for (property in object) { + if (object.hasOwnProperty(property)) { + size++; + } + } + + return size; + }, + + + isEmpty: function(object){ + for (var key in object) { + if (object.hasOwnProperty(key)) { + return false; + } + } + return true; + }, + + + equals: (function() { + var check = function(o1, o2) { + var key; + + for (key in o1) { + if (o1.hasOwnProperty(key)) { + if (o1[key] !== o2[key]) { + return false; + } + } + } + return true; + }; + + return function(object1, object2) { + + + if (object1 === object2) { + return true; + } if (object1 && object2) { + + + return check(object1, object2) && check(object2, object1); + } else if (!object1 && !object2) { + return object1 === object2; + } else { + return false; + } + }; + })(), + + + classify: function(object) { + var prototype = object, + objectProperties = [], + propertyClassesMap = {}, + objectClass = function() { + var i = 0, + ln = objectProperties.length, + property; + + for (; i < ln; i++) { + property = objectProperties[i]; + this[property] = new propertyClassesMap[property](); + } + }, + key, value; + + for (key in object) { + if (object.hasOwnProperty(key)) { + value = object[key]; + + if (value && value.constructor === Object) { + objectProperties.push(key); + propertyClassesMap[key] = ExtObject.classify(value); + } + } + } + + objectClass.prototype = prototype; + + return objectClass; + } +}; + + +Ext.merge = Ext.Object.merge; + + +Ext.mergeIf = Ext.Object.mergeIf; + + +Ext.urlEncode = function() { + var args = Ext.Array.from(arguments), + prefix = ''; + + + if ((typeof args[1] === 'string')) { + prefix = args[1] + '&'; + args[1] = false; + } + + return prefix + ExtObject.toQueryString.apply(ExtObject, args); +}; + + +Ext.urlDecode = function() { + return ExtObject.fromQueryString.apply(ExtObject, arguments); +}; + +}()); + + + + + + + + + +Ext.Date = new function() { + var utilDate = this, + stripEscapeRe = /(\\.)/g, + hourInfoRe = /([gGhHisucUOPZ]|MS)/, + dateInfoRe = /([djzmnYycU]|MS)/, + slashRe = /\\/gi, + numberTokenRe = /\{(\d+)\}/g, + MSFormatRe = new RegExp('\\/Date\\(([-+])?(\\d+)(?:[+-]\\d{4})?\\)\\/'), + code = [ + + "var me = this, dt, y, m, d, h, i, s, ms, o, O, z, zz, u, v, W, year, jan4, week1monday, daysInMonth, dayMatched,", + "def = me.defaults,", + "from = Ext.Number.from,", + "results = String(input).match(me.parseRegexes[{0}]);", + + "if(results){", + "{1}", + + "if(u != null){", + "v = new Date(u * 1000);", + "}else{", + + + + "dt = me.clearTime(new Date);", + + "y = from(y, from(def.y, dt.getFullYear()));", + "m = from(m, from(def.m - 1, dt.getMonth()));", + "dayMatched = d !== undefined;", + "d = from(d, from(def.d, dt.getDate()));", + + + + + + + + + "if (!dayMatched) {", + "dt.setDate(1);", + "dt.setMonth(m);", + "dt.setFullYear(y);", + + "daysInMonth = me.getDaysInMonth(dt);", + "if (d > daysInMonth) {", + "d = daysInMonth;", + "}", + "}", + + "h = from(h, from(def.h, dt.getHours()));", + "i = from(i, from(def.i, dt.getMinutes()));", + "s = from(s, from(def.s, dt.getSeconds()));", + "ms = from(ms, from(def.ms, dt.getMilliseconds()));", + + "if(z >= 0 && y >= 0){", + + + + + + "v = me.add(new Date(y < 100 ? 100 : y, 0, 1, h, i, s, ms), me.YEAR, y < 100 ? y - 100 : 0);", + + + "v = !strict? v : (strict === true && (z <= 364 || (me.isLeapYear(v) && z <= 365))? me.add(v, me.DAY, z) : null);", + "}else if(strict === true && !me.isValid(y, m + 1, d, h, i, s, ms)){", + "v = null;", + "}else{", + "if (W) {", + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "year = y || (new Date()).getFullYear(),", + "jan4 = new Date(year, 0, 4, 0, 0, 0),", + "week1monday = new Date(jan4.getTime() - ((jan4.getDay() - 1) * 86400000));", + "v = Ext.Date.clearTime(new Date(week1monday.getTime() + ((W - 1) * 604800000)));", + "} else {", + + + "v = me.add(new Date(y < 100 ? 100 : y, m, d, h, i, s, ms), me.YEAR, y < 100 ? y - 100 : 0);", + "}", + "}", + "}", + "}", + + "if(v){", + + "if(zz != null){", + + "v = me.add(v, me.SECOND, -v.getTimezoneOffset() * 60 - zz);", + "}else if(o){", + + "v = me.add(v, me.MINUTE, -v.getTimezoneOffset() + (sn == '+'? -1 : 1) * (hr * 60 + mn));", + "}", + "}", + + "return v;" + ].join('\n'); + + + + + function xf(format) { + var args = Array.prototype.slice.call(arguments, 1); + return format.replace(numberTokenRe, function(m, i) { + return args[i]; + }); + } + + Ext.apply(utilDate, { + + now: Date.now || function() { + return +new Date(); + }, + + + toString: function(date) { + var pad = Ext.String.leftPad; + + return date.getFullYear() + "-" + + pad(date.getMonth() + 1, 2, '0') + "-" + + pad(date.getDate(), 2, '0') + "T" + + pad(date.getHours(), 2, '0') + ":" + + pad(date.getMinutes(), 2, '0') + ":" + + pad(date.getSeconds(), 2, '0'); + }, + + + getElapsed: function(dateA, dateB) { + return Math.abs(dateA - (dateB || utilDate.now())); + }, + + + useStrict: false, + + + formatCodeToRegex: function(character, currentGroup) { + + var p = utilDate.parseCodes[character]; + + if (p) { + p = typeof p == 'function'? p() : p; + utilDate.parseCodes[character] = p; + } + + return p ? Ext.applyIf({ + c: p.c ? xf(p.c, currentGroup || "{0}") : p.c + }, p) : { + g: 0, + c: null, + s: Ext.String.escapeRegex(character) + }; + }, + + + parseFunctions: { + "MS": function(input, strict) { + + + var r = (input || '').match(MSFormatRe); + return r ? new Date(((r[1] || '') + r[2]) * 1) : null; + }, + "time": function(input, strict) { + var num = parseInt(input, 10); + if (num || num === 0) { + return new Date(num); + } + return null; + }, + "timestamp": function(input, strict) { + var num = parseInt(input, 10); + if (num || num === 0) { + return new Date(num * 1000); + } + return null; + } + }, + parseRegexes: [], + + + formatFunctions: { + "MS": function() { + + return '\\/Date(' + this.getTime() + ')\\/'; + }, + "time": function(){ + return this.getTime().toString(); + }, + "timestamp": function(){ + return utilDate.format(this, 'U'); + } + }, + + y2kYear : 50, + + + MILLI : "ms", + + + SECOND : "s", + + + MINUTE : "mi", + + + HOUR : "h", + + + DAY : "d", + + + MONTH : "mo", + + + YEAR : "y", + + + defaults: {}, + + + + dayNames : [ + "Sunday", + "Monday", + "Tuesday", + "Wednesday", + "Thursday", + "Friday", + "Saturday" + ], + + + + + monthNames : [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], + + + + + monthNumbers : { + January: 0, + Jan: 0, + February: 1, + Feb: 1, + March: 2, + Mar: 2, + April: 3, + Apr: 3, + May: 4, + June: 5, + Jun: 5, + July: 6, + Jul: 6, + August: 7, + Aug: 7, + September: 8, + Sep: 8, + October: 9, + Oct: 9, + November: 10, + Nov: 10, + December: 11, + Dec: 11 + }, + + + + + defaultFormat : "m/d/Y", + + + + getShortMonthName : function(month) { + return Ext.Date.monthNames[month].substring(0, 3); + }, + + + + + getShortDayName : function(day) { + return Ext.Date.dayNames[day].substring(0, 3); + }, + + + + + getMonthNumber : function(name) { + + return Ext.Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()]; + }, + + + + formatContainsHourInfo : function(format){ + return hourInfoRe.test(format.replace(stripEscapeRe, '')); + }, + + + formatContainsDateInfo : function(format){ + return dateInfoRe.test(format.replace(stripEscapeRe, '')); + }, + + + unescapeFormat: function(format) { + + + + return format.replace(slashRe, ''); + }, + + + formatCodes : { + d: "Ext.String.leftPad(this.getDate(), 2, '0')", + D: "Ext.Date.getShortDayName(this.getDay())", + j: "this.getDate()", + l: "Ext.Date.dayNames[this.getDay()]", + N: "(this.getDay() ? this.getDay() : 7)", + S: "Ext.Date.getSuffix(this)", + w: "this.getDay()", + z: "Ext.Date.getDayOfYear(this)", + W: "Ext.String.leftPad(Ext.Date.getWeekOfYear(this), 2, '0')", + F: "Ext.Date.monthNames[this.getMonth()]", + m: "Ext.String.leftPad(this.getMonth() + 1, 2, '0')", + M: "Ext.Date.getShortMonthName(this.getMonth())", + n: "(this.getMonth() + 1)", + t: "Ext.Date.getDaysInMonth(this)", + L: "(Ext.Date.isLeapYear(this) ? 1 : 0)", + o: "(this.getFullYear() + (Ext.Date.getWeekOfYear(this) == 1 && this.getMonth() > 0 ? +1 : (Ext.Date.getWeekOfYear(this) >= 52 && this.getMonth() < 11 ? -1 : 0)))", + Y: "Ext.String.leftPad(this.getFullYear(), 4, '0')", + y: "('' + this.getFullYear()).substring(2, 4)", + a: "(this.getHours() < 12 ? 'am' : 'pm')", + A: "(this.getHours() < 12 ? 'AM' : 'PM')", + g: "((this.getHours() % 12) ? this.getHours() % 12 : 12)", + G: "this.getHours()", + h: "Ext.String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0')", + H: "Ext.String.leftPad(this.getHours(), 2, '0')", + i: "Ext.String.leftPad(this.getMinutes(), 2, '0')", + s: "Ext.String.leftPad(this.getSeconds(), 2, '0')", + u: "Ext.String.leftPad(this.getMilliseconds(), 3, '0')", + O: "Ext.Date.getGMTOffset(this)", + P: "Ext.Date.getGMTOffset(this, true)", + T: "Ext.Date.getTimezone(this)", + Z: "(this.getTimezoneOffset() * -60)", + + c: function() { + var c, code, i, l, e; + for (c = "Y-m-dTH:i:sP", code = [], i = 0, l = c.length; i < l; ++i) { + e = c.charAt(i); + code.push(e == "T" ? "'T'" : utilDate.getFormatCode(e)); + } + return code.join(" + "); + }, + + + U: "Math.round(this.getTime() / 1000)" + }, + + + isValid : function(y, m, d, h, i, s, ms) { + + h = h || 0; + i = i || 0; + s = s || 0; + ms = ms || 0; + + + var dt = utilDate.add(new Date(y < 100 ? 100 : y, m - 1, d, h, i, s, ms), utilDate.YEAR, y < 100 ? y - 100 : 0); + + return y == dt.getFullYear() && + m == dt.getMonth() + 1 && + d == dt.getDate() && + h == dt.getHours() && + i == dt.getMinutes() && + s == dt.getSeconds() && + ms == dt.getMilliseconds(); + }, + + + parse : function(input, format, strict) { + var p = utilDate.parseFunctions; + if (p[format] == null) { + utilDate.createParser(format); + } + return p[format].call(utilDate, input, Ext.isDefined(strict) ? strict : utilDate.useStrict); + }, + + + parseDate: function(input, format, strict){ + return utilDate.parse(input, format, strict); + }, + + + + getFormatCode : function(character) { + var f = utilDate.formatCodes[character]; + + if (f) { + f = typeof f == 'function'? f() : f; + utilDate.formatCodes[character] = f; + } + + + return f || ("'" + Ext.String.escape(character) + "'"); + }, + + + createFormat : function(format) { + var code = [], + special = false, + ch = '', + i; + + for (i = 0; i < format.length; ++i) { + ch = format.charAt(i); + if (!special && ch == "\\") { + special = true; + } else if (special) { + special = false; + code.push("'" + Ext.String.escape(ch) + "'"); + } else { + code.push(utilDate.getFormatCode(ch)); + } + } + utilDate.formatFunctions[format] = Ext.functionFactory("return " + code.join('+')); + }, + + + createParser : function(format) { + var regexNum = utilDate.parseRegexes.length, + currentGroup = 1, + calc = [], + regex = [], + special = false, + ch = "", + i = 0, + len = format.length, + atEnd = [], + obj; + + for (; i < len; ++i) { + ch = format.charAt(i); + if (!special && ch == "\\") { + special = true; + } else if (special) { + special = false; + regex.push(Ext.String.escape(ch)); + } else { + obj = utilDate.formatCodeToRegex(ch, currentGroup); + currentGroup += obj.g; + regex.push(obj.s); + if (obj.g && obj.c) { + if (obj.calcAtEnd) { + atEnd.push(obj.c); + } else { + calc.push(obj.c); + } + } + } + } + + calc = calc.concat(atEnd); + + utilDate.parseRegexes[regexNum] = new RegExp("^" + regex.join('') + "$", 'i'); + utilDate.parseFunctions[format] = Ext.functionFactory("input", "strict", xf(code, regexNum, calc.join(''))); + }, + + + parseCodes : { + + d: { + g:1, + c:"d = parseInt(results[{0}], 10);\n", + s:"(3[0-1]|[1-2][0-9]|0[1-9])" + }, + j: { + g:1, + c:"d = parseInt(results[{0}], 10);\n", + s:"(3[0-1]|[1-2][0-9]|[1-9])" + }, + D: function() { + for (var a = [], i = 0; i < 7; a.push(utilDate.getShortDayName(i)), ++i); + return { + g:0, + c:null, + s:"(?:" + a.join("|") +")" + }; + }, + l: function() { + return { + g:0, + c:null, + s:"(?:" + utilDate.dayNames.join("|") + ")" + }; + }, + N: { + g:0, + c:null, + s:"[1-7]" + }, + + S: { + g:0, + c:null, + s:"(?:st|nd|rd|th)" + }, + + w: { + g:0, + c:null, + s:"[0-6]" + }, + z: { + g:1, + c:"z = parseInt(results[{0}], 10);\n", + s:"(\\d{1,3})" + }, + W: { + g:1, + c:"W = parseInt(results[{0}], 10);\n", + s:"(\\d{2})" + }, + F: function() { + return { + g:1, + c:"m = parseInt(me.getMonthNumber(results[{0}]), 10);\n", + s:"(" + utilDate.monthNames.join("|") + ")" + }; + }, + M: function() { + for (var a = [], i = 0; i < 12; a.push(utilDate.getShortMonthName(i)), ++i); + return Ext.applyIf({ + s:"(" + a.join("|") + ")" + }, utilDate.formatCodeToRegex("F")); + }, + m: { + g:1, + c:"m = parseInt(results[{0}], 10) - 1;\n", + s:"(1[0-2]|0[1-9])" + }, + n: { + g:1, + c:"m = parseInt(results[{0}], 10) - 1;\n", + s:"(1[0-2]|[1-9])" + }, + t: { + g:0, + c:null, + s:"(?:\\d{2})" + }, + L: { + g:0, + c:null, + s:"(?:1|0)" + }, + o: { + g: 1, + c: "y = parseInt(results[{0}], 10);\n", + s: "(\\d{4})" + + }, + Y: { + g:1, + c:"y = parseInt(results[{0}], 10);\n", + s:"(\\d{4})" + }, + y: { + g:1, + c:"var ty = parseInt(results[{0}], 10);\n" + + "y = ty > me.y2kYear ? 1900 + ty : 2000 + ty;\n", + s:"(\\d{1,2})" + }, + + + a: { + g:1, + c:"if (/(am)/i.test(results[{0}])) {\n" + + "if (!h || h == 12) { h = 0; }\n" + + "} else { if (!h || h < 12) { h = (h || 0) + 12; }}", + s:"(am|pm|AM|PM)", + calcAtEnd: true + }, + + + A: { + g:1, + c:"if (/(am)/i.test(results[{0}])) {\n" + + "if (!h || h == 12) { h = 0; }\n" + + "} else { if (!h || h < 12) { h = (h || 0) + 12; }}", + s:"(AM|PM|am|pm)", + calcAtEnd: true + }, + + g: { + g:1, + c:"h = parseInt(results[{0}], 10);\n", + s:"(1[0-2]|[0-9])" + }, + G: { + g:1, + c:"h = parseInt(results[{0}], 10);\n", + s:"(2[0-3]|1[0-9]|[0-9])" + }, + h: { + g:1, + c:"h = parseInt(results[{0}], 10);\n", + s:"(1[0-2]|0[1-9])" + }, + H: { + g:1, + c:"h = parseInt(results[{0}], 10);\n", + s:"(2[0-3]|[0-1][0-9])" + }, + i: { + g:1, + c:"i = parseInt(results[{0}], 10);\n", + s:"([0-5][0-9])" + }, + s: { + g:1, + c:"s = parseInt(results[{0}], 10);\n", + s:"([0-5][0-9])" + }, + u: { + g:1, + c:"ms = results[{0}]; ms = parseInt(ms, 10)/Math.pow(10, ms.length - 3);\n", + s:"(\\d+)" + }, + O: { + g:1, + c:[ + "o = results[{0}];", + "var sn = o.substring(0,1),", + "hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60),", + "mn = o.substring(3,5) % 60;", + "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))? (sn + Ext.String.leftPad(hr, 2, '0') + Ext.String.leftPad(mn, 2, '0')) : null;\n" + ].join("\n"), + s: "([+-]\\d{4})" + }, + P: { + g:1, + c:[ + "o = results[{0}];", + "var sn = o.substring(0,1),", + "hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60),", + "mn = o.substring(4,6) % 60;", + "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))? (sn + Ext.String.leftPad(hr, 2, '0') + Ext.String.leftPad(mn, 2, '0')) : null;\n" + ].join("\n"), + s: "([+-]\\d{2}:\\d{2})" + }, + T: { + g:0, + c:null, + s:"[A-Z]{1,5}" + }, + Z: { + g:1, + c:"zz = results[{0}] * 1;\n" + + "zz = (-43200 <= zz && zz <= 50400)? zz : null;\n", + s:"([+-]?\\d{1,5})" + }, + c: function() { + var calc = [], + arr = [ + utilDate.formatCodeToRegex("Y", 1), + utilDate.formatCodeToRegex("m", 2), + utilDate.formatCodeToRegex("d", 3), + utilDate.formatCodeToRegex("H", 4), + utilDate.formatCodeToRegex("i", 5), + utilDate.formatCodeToRegex("s", 6), + {c:"ms = results[7] || '0'; ms = parseInt(ms, 10)/Math.pow(10, ms.length - 3);\n"}, + {c:[ + "if(results[8]) {", + "if(results[8] == 'Z'){", + "zz = 0;", + "}else if (results[8].indexOf(':') > -1){", + utilDate.formatCodeToRegex("P", 8).c, + "}else{", + utilDate.formatCodeToRegex("O", 8).c, + "}", + "}" + ].join('\n')} + ], + i, + l; + + for (i = 0, l = arr.length; i < l; ++i) { + calc.push(arr[i].c); + } + + return { + g:1, + c:calc.join(""), + s:[ + arr[0].s, + "(?:", "-", arr[1].s, + "(?:", "-", arr[2].s, + "(?:", + "(?:T| )?", + arr[3].s, ":", arr[4].s, + "(?::", arr[5].s, ")?", + "(?:(?:\\.|,)(\\d+))?", + "(Z|(?:[-+]\\d{2}(?::)?\\d{2}))?", + ")?", + ")?", + ")?" + ].join("") + }; + }, + U: { + g:1, + c:"u = parseInt(results[{0}], 10);\n", + s:"(-?\\d+)" + } + }, + + + + dateFormat: function(date, format) { + return utilDate.format(date, format); + }, + + + isEqual: function(date1, date2) { + + if (date1 && date2) { + return (date1.getTime() === date2.getTime()); + } + + return !(date1 || date2); + }, + + + format: function(date, format) { + var formatFunctions = utilDate.formatFunctions; + + if (!Ext.isDate(date)) { + return ''; + } + + if (formatFunctions[format] == null) { + utilDate.createFormat(format); + } + + return formatFunctions[format].call(date) + ''; + }, + + + getTimezone : function(date) { + + + + + + + + + + + + + return date.toString().replace(/^.* (?:\((.*)\)|([A-Z]{1,5})(?:[\-+][0-9]{4})?(?: -?\d+)?)$/, "$1$2").replace(/[^A-Z]/g, ""); + }, + + + getGMTOffset : function(date, colon) { + var offset = date.getTimezoneOffset(); + return (offset > 0 ? "-" : "+") + + Ext.String.leftPad(Math.floor(Math.abs(offset) / 60), 2, "0") + + (colon ? ":" : "") + + Ext.String.leftPad(Math.abs(offset % 60), 2, "0"); + }, + + + getDayOfYear: function(date) { + var num = 0, + d = Ext.Date.clone(date), + m = date.getMonth(), + i; + + for (i = 0, d.setDate(1), d.setMonth(0); i < m; d.setMonth(++i)) { + num += utilDate.getDaysInMonth(d); + } + return num + date.getDate() - 1; + }, + + + getWeekOfYear : (function() { + + var ms1d = 864e5, + ms7d = 7 * ms1d; + + return function(date) { + var DC3 = Date.UTC(date.getFullYear(), date.getMonth(), date.getDate() + 3) / ms1d, + AWN = Math.floor(DC3 / 7), + Wyr = new Date(AWN * ms7d).getUTCFullYear(); + + return AWN - Math.floor(Date.UTC(Wyr, 0, 7) / ms7d) + 1; + }; + }()), + + + isLeapYear : function(date) { + var year = date.getFullYear(); + return !!((year & 3) == 0 && (year % 100 || (year % 400 == 0 && year))); + }, + + + getFirstDayOfMonth : function(date) { + var day = (date.getDay() - (date.getDate() - 1)) % 7; + return (day < 0) ? (day + 7) : day; + }, + + + getLastDayOfMonth : function(date) { + return utilDate.getLastDateOfMonth(date).getDay(); + }, + + + + getFirstDateOfMonth : function(date) { + return new Date(date.getFullYear(), date.getMonth(), 1); + }, + + + getLastDateOfMonth : function(date) { + return new Date(date.getFullYear(), date.getMonth(), utilDate.getDaysInMonth(date)); + }, + + + getDaysInMonth: (function() { + var daysInMonth = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; + + return function(date) { + var m = date.getMonth(); + + return m == 1 && utilDate.isLeapYear(date) ? 29 : daysInMonth[m]; + }; + }()), + + + + getSuffix : function(date) { + switch (date.getDate()) { + case 1: + case 21: + case 31: + return "st"; + case 2: + case 22: + return "nd"; + case 3: + case 23: + return "rd"; + default: + return "th"; + } + }, + + + + clone : function(date) { + return new Date(date.getTime()); + }, + + + isDST : function(date) { + + + return new Date(date.getFullYear(), 0, 1).getTimezoneOffset() != date.getTimezoneOffset(); + }, + + + clearTime : function(date, clone) { + if (clone) { + return Ext.Date.clearTime(Ext.Date.clone(date)); + } + + + var d = date.getDate(), + hr, + c; + + + date.setHours(0); + date.setMinutes(0); + date.setSeconds(0); + date.setMilliseconds(0); + + if (date.getDate() != d) { + + + + + for (hr = 1, c = utilDate.add(date, Ext.Date.HOUR, hr); c.getDate() != d; hr++, c = utilDate.add(date, Ext.Date.HOUR, hr)); + + date.setDate(d); + date.setHours(c.getHours()); + } + + return date; + }, + + + add : function(date, interval, value) { + var d = Ext.Date.clone(date), + Date = Ext.Date, + day, decimalValue, base = 0; + if (!interval || value === 0) { + return d; + } + + decimalValue = value - parseInt(value, 10); + value = parseInt(value, 10); + + if (value) { + switch(interval.toLowerCase()) { + + + + + + + + + + + + + + + + + + + case Ext.Date.MILLI: + d.setTime(d.getTime() + value); + break; + case Ext.Date.SECOND: + d.setTime(d.getTime() + value * 1000); + break; + case Ext.Date.MINUTE: + d.setTime(d.getTime() + value * 60 * 1000); + break; + case Ext.Date.HOUR: + d.setTime(d.getTime() + value * 60 * 60 * 1000); + break; + case Ext.Date.DAY: + d.setDate(d.getDate() + value); + break; + case Ext.Date.MONTH: + day = date.getDate(); + if (day > 28) { + day = Math.min(day, Ext.Date.getLastDateOfMonth(Ext.Date.add(Ext.Date.getFirstDateOfMonth(date), Ext.Date.MONTH, value)).getDate()); + } + d.setDate(day); + d.setMonth(date.getMonth() + value); + break; + case Ext.Date.YEAR: + day = date.getDate(); + if (day > 28) { + day = Math.min(day, Ext.Date.getLastDateOfMonth(Ext.Date.add(Ext.Date.getFirstDateOfMonth(date), Ext.Date.YEAR, value)).getDate()); + } + d.setDate(day); + d.setFullYear(date.getFullYear() + value); + break; + } + } + + if (decimalValue) { + switch (interval.toLowerCase()) { + case Ext.Date.MILLI: base = 1; break; + case Ext.Date.SECOND: base = 1000; break; + case Ext.Date.MINUTE: base = 1000*60; break; + case Ext.Date.HOUR: base = 1000*60*60; break; + case Ext.Date.DAY: base = 1000*60*60*24; break; + + case Ext.Date.MONTH: + day = utilDate.getDaysInMonth(d); + base = 1000*60*60*24*day; + break; + + case Ext.Date.YEAR: + day = (utilDate.isLeapYear(d) ? 366 : 365); + base = 1000*60*60*24*day; + break; + } + if (base) { + d.setTime(d.getTime() + base * decimalValue); + } + } + + return d; + }, + + + subtract: function(date, interval, value){ + return utilDate.add(date, interval, -value); + }, + + + between : function(date, start, end) { + var t = date.getTime(); + return start.getTime() <= t && t <= end.getTime(); + }, + + + compat: function() { + var nativeDate = window.Date, + p, + statics = ['useStrict', 'formatCodeToRegex', 'parseFunctions', 'parseRegexes', 'formatFunctions', 'y2kYear', 'MILLI', 'SECOND', 'MINUTE', 'HOUR', 'DAY', 'MONTH', 'YEAR', 'defaults', 'dayNames', 'monthNames', 'monthNumbers', 'getShortMonthName', 'getShortDayName', 'getMonthNumber', 'formatCodes', 'isValid', 'parseDate', 'getFormatCode', 'createFormat', 'createParser', 'parseCodes'], + proto = ['dateFormat', 'format', 'getTimezone', 'getGMTOffset', 'getDayOfYear', 'getWeekOfYear', 'isLeapYear', 'getFirstDayOfMonth', 'getLastDayOfMonth', 'getDaysInMonth', 'getSuffix', 'clone', 'isDST', 'clearTime', 'add', 'between'], + sLen = statics.length, + pLen = proto.length, + stat, prot, s; + + + for (s = 0; s < sLen; s++) { + stat = statics[s]; + nativeDate[stat] = utilDate[stat]; + } + + + for (p = 0; p < pLen; p++) { + prot = proto[p]; + nativeDate.prototype[prot] = function() { + var args = Array.prototype.slice.call(arguments); + args.unshift(this); + return utilDate[prot].apply(utilDate, args); + }; + } + } + }); +}; + + + + + + +(function(flexSetter) { + +var noArgs = [], + Base = function(){}, + hookFunctionFactory = function(hookFunction, underriddenFunction, methodName, owningClass) { + var result = function() { + var result = this.callParent(arguments); + hookFunction.apply(this, arguments); + return result; + }; + result.$name = methodName; + result.$owner = owningClass; + if (underriddenFunction) { + result.$previous = underriddenFunction.$previous; + underriddenFunction.$previous = result; + } + return result; + }; + + + Ext.apply(Base, { + $className: 'Ext.Base', + + $isClass: true, + + + create: function() { + return Ext.create.apply(Ext, [this].concat(Array.prototype.slice.call(arguments, 0))); + }, + + + extend: function(parent) { + var parentPrototype = parent.prototype, + basePrototype, prototype, i, ln, name, statics; + + prototype = this.prototype = Ext.Object.chain(parentPrototype); + prototype.self = this; + + this.superclass = prototype.superclass = parentPrototype; + + if (!parent.$isClass) { + basePrototype = Ext.Base.prototype; + + for (i in basePrototype) { + if (i in prototype) { + prototype[i] = basePrototype[i]; + } + } + } + + + statics = parentPrototype.$inheritableStatics; + + if (statics) { + for (i = 0,ln = statics.length; i < ln; i++) { + name = statics[i]; + + if (!this.hasOwnProperty(name)) { + this[name] = parent[name]; + } + } + } + + if (parent.$onExtended) { + this.$onExtended = parent.$onExtended.slice(); + } + + prototype.config = new prototype.configClass(); + prototype.initConfigList = prototype.initConfigList.slice(); + prototype.initConfigMap = Ext.clone(prototype.initConfigMap); + prototype.configMap = Ext.Object.chain(prototype.configMap); + }, + + + $onExtended: [], + + + triggerExtended: function() { + + var callbacks = this.$onExtended, + ln = callbacks.length, + i, callback; + + if (ln > 0) { + for (i = 0; i < ln; i++) { + callback = callbacks[i]; + callback.fn.apply(callback.scope || this, arguments); + } + } + }, + + + onExtended: function(fn, scope) { + this.$onExtended.push({ + fn: fn, + scope: scope + }); + + return this; + }, + + + addConfig: function(config, fullMerge) { + var prototype = this.prototype, + configNameCache = Ext.Class.configNameCache, + hasConfig = prototype.configMap, + initConfigList = prototype.initConfigList, + initConfigMap = prototype.initConfigMap, + defaultConfig = prototype.config, + initializedName, name, value; + + for (name in config) { + if (config.hasOwnProperty(name)) { + if (!hasConfig[name]) { + hasConfig[name] = true; + } + + value = config[name]; + + initializedName = configNameCache[name].initialized; + + if (!initConfigMap[name] && value !== null && !prototype[initializedName]) { + initConfigMap[name] = true; + initConfigList.push(name); + } + } + } + + if (fullMerge) { + Ext.merge(defaultConfig, config); + } + else { + Ext.mergeIf(defaultConfig, config); + } + + prototype.configClass = Ext.Object.classify(defaultConfig); + }, + + + addStatics: function(members) { + var member, name; + + for (name in members) { + if (members.hasOwnProperty(name)) { + member = members[name]; + if (typeof member == 'function' && !member.$isClass && member !== Ext.emptyFn && member !== Ext.identityFn) { + member.$owner = this; + member.$name = name; + } + this[name] = member; + } + } + + return this; + }, + + + addInheritableStatics: function(members) { + var inheritableStatics, + hasInheritableStatics, + prototype = this.prototype, + name, member; + + inheritableStatics = prototype.$inheritableStatics; + hasInheritableStatics = prototype.$hasInheritableStatics; + + if (!inheritableStatics) { + inheritableStatics = prototype.$inheritableStatics = []; + hasInheritableStatics = prototype.$hasInheritableStatics = {}; + } + + for (name in members) { + if (members.hasOwnProperty(name)) { + member = members[name]; + this[name] = member; + + if (!hasInheritableStatics[name]) { + hasInheritableStatics[name] = true; + inheritableStatics.push(name); + } + } + } + + return this; + }, + + + addMembers: function(members) { + var prototype = this.prototype, + enumerables = Ext.enumerables, + names = [], + i, ln, name, member; + + for (name in members) { + names.push(name); + } + + if (enumerables) { + names.push.apply(names, enumerables); + } + + for (i = 0,ln = names.length; i < ln; i++) { + name = names[i]; + + if (members.hasOwnProperty(name)) { + member = members[name]; + + if (typeof member == 'function' && !member.$isClass && member !== Ext.emptyFn && member !== Ext.identityFn) { + member.$owner = this; + member.$name = name; + } + + prototype[name] = member; + } + } + + return this; + }, + + + addMember: function(name, member) { + if (typeof member == 'function' && !member.$isClass && member !== Ext.emptyFn && member !== Ext.identityFn) { + member.$owner = this; + member.$name = name; + } + + this.prototype[name] = member; + return this; + }, + + + implement: function() { + this.addMembers.apply(this, arguments); + }, + + + borrow: function(fromClass, members) { + + var prototype = this.prototype, + fromPrototype = fromClass.prototype, + i, ln, name, fn, toBorrow; + + members = Ext.Array.from(members); + + for (i = 0,ln = members.length; i < ln; i++) { + name = members[i]; + + toBorrow = fromPrototype[name]; + + if (typeof toBorrow == 'function') { + fn = Ext.Function.clone(toBorrow); + + + fn.$owner = this; + fn.$name = name; + + prototype[name] = fn; + } + else { + prototype[name] = toBorrow; + } + } + + return this; + }, + + + override: function(members) { + var me = this, + enumerables = Ext.enumerables, + target = me.prototype, + cloneFunction = Ext.Function.clone, + name, index, member, statics, names, previous; + + if (arguments.length === 2) { + name = members; + members = {}; + members[name] = arguments[1]; + enumerables = null; + } + + do { + names = []; + statics = null; + + for (name in members) { + if (name == 'statics') { + statics = members[name]; + } else if (name == 'inheritableStatics'){ + me.addInheritableStatics(members[name]); + } else if (name == 'config') { + me.addConfig(members[name], true); + } else { + names.push(name); + } + } + + if (enumerables) { + names.push.apply(names, enumerables); + } + + for (index = names.length; index--; ) { + name = names[index]; + + if (members.hasOwnProperty(name)) { + member = members[name]; + + if (typeof member == 'function' && !member.$className && member !== Ext.emptyFn && member !== Ext.identityFn) { + if (typeof member.$owner != 'undefined') { + member = cloneFunction(member); + } + + + member.$owner = me; + member.$name = name; + + previous = target[name]; + if (previous) { + member.$previous = previous; + } + } + + target[name] = member; + } + } + + target = me; + members = statics; + } while (members); + + return this; + }, + + + callParent: function(args) { + var method; + + + return (method = this.callParent.caller) && (method.$previous || + ((method = method.$owner ? method : method.caller) && + method.$owner.superclass.self[method.$name])).apply(this, args || noArgs); + }, + + + callSuper: function(args) { + var method; + + + return (method = this.callSuper.caller) && + ((method = method.$owner ? method : method.caller) && + method.$owner.superclass.self[method.$name]).apply(this, args || noArgs); + }, + + + mixin: function(name, mixinClass) { + var me = this, + mixin = mixinClass.prototype, + prototype = me.prototype, + key, statics, i, ln, staticName, + mixinValue, hookKey, hookFunction; + + if (typeof mixin.onClassMixedIn != 'undefined') { + mixin.onClassMixedIn.call(mixinClass, me); + } + + if (!prototype.hasOwnProperty('mixins')) { + if ('mixins' in prototype) { + prototype.mixins = Ext.Object.chain(prototype.mixins); + } + else { + prototype.mixins = {}; + } + } + + for (key in mixin) { + mixinValue = mixin[key]; + if (key === 'mixins') { + Ext.merge(prototype.mixins, mixinValue); + } + else if (key === 'xhooks') { + for (hookKey in mixinValue) { + hookFunction = mixinValue[hookKey]; + + + hookFunction.$previous = Ext.emptyFn; + + if (prototype.hasOwnProperty(hookKey)) { + + + + + hookFunctionFactory(hookFunction, prototype[hookKey], hookKey, me); + } else { + + + prototype[hookKey] = hookFunctionFactory(hookFunction, null, hookKey, me); + } + } + } + else if (!(key === 'mixinId' || key === 'config') && (prototype[key] === undefined)) { + prototype[key] = mixinValue; + } + } + + + statics = mixin.$inheritableStatics; + + if (statics) { + for (i = 0, ln = statics.length; i < ln; i++) { + staticName = statics[i]; + + if (!me.hasOwnProperty(staticName)) { + me[staticName] = mixinClass[staticName]; + } + } + } + + if ('config' in mixin) { + me.addConfig(mixin.config, false); + } + + prototype.mixins[name] = mixin; + return me; + }, + + + getName: function() { + return Ext.getClassName(this); + }, + + + createAlias: flexSetter(function(alias, origin) { + this.override(alias, function() { + return this[origin].apply(this, arguments); + }); + }), + + + addXtype: function(xtype) { + var prototype = this.prototype, + xtypesMap = prototype.xtypesMap, + xtypes = prototype.xtypes, + xtypesChain = prototype.xtypesChain; + + if (!prototype.hasOwnProperty('xtypesMap')) { + xtypesMap = prototype.xtypesMap = Ext.merge({}, prototype.xtypesMap || {}); + xtypes = prototype.xtypes = prototype.xtypes ? [].concat(prototype.xtypes) : []; + xtypesChain = prototype.xtypesChain = prototype.xtypesChain ? [].concat(prototype.xtypesChain) : []; + prototype.xtype = xtype; + } + + if (!xtypesMap[xtype]) { + xtypesMap[xtype] = true; + xtypes.push(xtype); + xtypesChain.push(xtype); + Ext.ClassManager.setAlias(this, 'widget.' + xtype); + } + + return this; + } + }); + + Base.implement({ + + isInstance: true, + + + $className: 'Ext.Base', + + + configClass: Ext.emptyFn, + + + initConfigList: [], + + + configMap: {}, + + + initConfigMap: {}, + + + statics: function() { + var method = this.statics.caller, + self = this.self; + + if (!method) { + return self; + } + + return method.$owner; + }, + + + callParent: function(args) { + + + + + var method, + superMethod = (method = this.callParent.caller) && (method.$previous || + ((method = method.$owner ? method : method.caller) && + method.$owner.superclass[method.$name])); + + + return superMethod.apply(this, args || noArgs); + }, + + + callSuper: function(args) { + + + + + var method, + superMethod = (method = this.callSuper.caller) && + ((method = method.$owner ? method : method.caller) && + method.$owner.superclass[method.$name]); + + + return superMethod.apply(this, args || noArgs); + }, + + + self: Base, + + + constructor: function() { + return this; + }, + + + initConfig: function(config) { + var instanceConfig = config, + configNameCache = Ext.Class.configNameCache, + defaultConfig = new this.configClass(), + defaultConfigList = this.initConfigList, + hasConfig = this.configMap, + nameMap, i, ln, name, initializedName; + + this.initConfig = Ext.emptyFn; + + this.initialConfig = instanceConfig || {}; + + this.config = config = (instanceConfig) ? Ext.merge(defaultConfig, config) : defaultConfig; + + if (instanceConfig) { + defaultConfigList = defaultConfigList.slice(); + + for (name in instanceConfig) { + if (hasConfig[name]) { + if (instanceConfig[name] !== null) { + defaultConfigList.push(name); + this[configNameCache[name].initialized] = false; + } + } + } + } + + for (i = 0,ln = defaultConfigList.length; i < ln; i++) { + name = defaultConfigList[i]; + nameMap = configNameCache[name]; + initializedName = nameMap.initialized; + + if (!this[initializedName]) { + this[initializedName] = true; + this[nameMap.set].call(this, config[name]); + } + } + + return this; + }, + + + hasConfig: function(name) { + return Boolean(this.configMap[name]); + }, + + + setConfig: function(config, applyIfNotSet) { + if (!config) { + return this; + } + + var configNameCache = Ext.Class.configNameCache, + currentConfig = this.config, + hasConfig = this.configMap, + initialConfig = this.initialConfig, + name, value; + + applyIfNotSet = Boolean(applyIfNotSet); + + for (name in config) { + if (applyIfNotSet && initialConfig.hasOwnProperty(name)) { + continue; + } + + value = config[name]; + currentConfig[name] = value; + + if (hasConfig[name]) { + this[configNameCache[name].set](value); + } + } + + return this; + }, + + + getConfig: function(name) { + var configNameCache = Ext.Class.configNameCache; + + return this[configNameCache[name].get](); + }, + + + getInitialConfig: function(name) { + var config = this.config; + + if (!name) { + return config; + } + else { + return config[name]; + } + }, + + + onConfigUpdate: function(names, callback, scope) { + var self = this.self, + i, ln, name, + updaterName, updater, newUpdater; + + names = Ext.Array.from(names); + + scope = scope || this; + + for (i = 0,ln = names.length; i < ln; i++) { + name = names[i]; + updaterName = 'update' + Ext.String.capitalize(name); + updater = this[updaterName] || Ext.emptyFn; + newUpdater = function() { + updater.apply(this, arguments); + scope[callback].apply(scope, arguments); + }; + newUpdater.$name = updaterName; + newUpdater.$owner = self; + + this[updaterName] = newUpdater; + } + }, + + + destroy: function() { + this.destroy = Ext.emptyFn; + } + }); + + + Base.prototype.callOverridden = Base.prototype.callParent; + + Ext.Base = Base; + +}(Ext.Function.flexSetter)); + + + + + + +(function() { + var ExtClass, + Base = Ext.Base, + baseStaticMembers = [], + baseStaticMember, baseStaticMemberLength; + + for (baseStaticMember in Base) { + if (Base.hasOwnProperty(baseStaticMember)) { + baseStaticMembers.push(baseStaticMember); + } + } + + baseStaticMemberLength = baseStaticMembers.length; + + + function makeCtor (className) { + function constructor () { + + + return this.constructor.apply(this, arguments) || null; + } + return constructor; + } + + + Ext.Class = ExtClass = function(Class, data, onCreated) { + if (typeof Class != 'function') { + onCreated = data; + data = Class; + Class = null; + } + + if (!data) { + data = {}; + } + + Class = ExtClass.create(Class, data); + + ExtClass.process(Class, data, onCreated); + + return Class; + }; + + Ext.apply(ExtClass, { + + onBeforeCreated: function(Class, data, hooks) { + + Class.addMembers(data); + + hooks.onCreated.call(Class, Class); + + }, + + + create: function(Class, data) { + var name, i; + + if (!Class) { + Class = makeCtor( + ); + } + + for (i = 0; i < baseStaticMemberLength; i++) { + name = baseStaticMembers[i]; + Class[name] = Base[name]; + } + + return Class; + }, + + + process: function(Class, data, onCreated) { + var preprocessorStack = data.preprocessors || ExtClass.defaultPreprocessors, + registeredPreprocessors = this.preprocessors, + hooks = { + onBeforeCreated: this.onBeforeCreated + }, + preprocessors = [], + preprocessor, preprocessorsProperties, + i, ln, j, subLn, preprocessorProperty; + + delete data.preprocessors; + + for (i = 0,ln = preprocessorStack.length; i < ln; i++) { + preprocessor = preprocessorStack[i]; + + if (typeof preprocessor == 'string') { + preprocessor = registeredPreprocessors[preprocessor]; + preprocessorsProperties = preprocessor.properties; + + if (preprocessorsProperties === true) { + preprocessors.push(preprocessor.fn); + } + else if (preprocessorsProperties) { + for (j = 0,subLn = preprocessorsProperties.length; j < subLn; j++) { + preprocessorProperty = preprocessorsProperties[j]; + + if (data.hasOwnProperty(preprocessorProperty)) { + preprocessors.push(preprocessor.fn); + break; + } + } + } + } + else { + preprocessors.push(preprocessor); + } + } + + hooks.onCreated = onCreated ? onCreated : Ext.emptyFn; + hooks.preprocessors = preprocessors; + + this.doProcess(Class, data, hooks); + }, + + doProcess: function(Class, data, hooks) { + var me = this, + preprocessors = hooks.preprocessors, + preprocessor = preprocessors.shift(), + doProcess = me.doProcess; + + for ( ; preprocessor ; preprocessor = preprocessors.shift()) { + + if (preprocessor.call(me, Class, data, hooks, doProcess) === false) { + return; + } + } + hooks.onBeforeCreated.apply(me, arguments); + }, + + + preprocessors: {}, + + + registerPreprocessor: function(name, fn, properties, position, relativeTo) { + if (!position) { + position = 'last'; + } + + if (!properties) { + properties = [name]; + } + + this.preprocessors[name] = { + name: name, + properties: properties || false, + fn: fn + }; + + this.setDefaultPreprocessorPosition(name, position, relativeTo); + + return this; + }, + + + getPreprocessor: function(name) { + return this.preprocessors[name]; + }, + + + getPreprocessors: function() { + return this.preprocessors; + }, + + + defaultPreprocessors: [], + + + getDefaultPreprocessors: function() { + return this.defaultPreprocessors; + }, + + + setDefaultPreprocessors: function(preprocessors) { + this.defaultPreprocessors = Ext.Array.from(preprocessors); + + return this; + }, + + + setDefaultPreprocessorPosition: function(name, offset, relativeName) { + var defaultPreprocessors = this.defaultPreprocessors, + index; + + if (typeof offset == 'string') { + if (offset === 'first') { + defaultPreprocessors.unshift(name); + + return this; + } + else if (offset === 'last') { + defaultPreprocessors.push(name); + + return this; + } + + offset = (offset === 'after') ? 1 : -1; + } + + index = Ext.Array.indexOf(defaultPreprocessors, relativeName); + + if (index !== -1) { + Ext.Array.splice(defaultPreprocessors, Math.max(0, index + offset), 0, name); + } + + return this; + }, + + configNameCache: {}, + + getConfigNameMap: function(name) { + var cache = this.configNameCache, + map = cache[name], + capitalizedName; + + if (!map) { + capitalizedName = name.charAt(0).toUpperCase() + name.substr(1); + + map = cache[name] = { + internal: name, + initialized: '_is' + capitalizedName + 'Initialized', + apply: 'apply' + capitalizedName, + update: 'update' + capitalizedName, + 'set': 'set' + capitalizedName, + 'get': 'get' + capitalizedName, + doSet : 'doSet' + capitalizedName, + changeEvent: name.toLowerCase() + 'change' + }; + } + + return map; + } + }); + + + ExtClass.registerPreprocessor('extend', function(Class, data, hooks) { + + var Base = Ext.Base, + basePrototype = Base.prototype, + extend = data.extend, + Parent, parentPrototype, i; + + delete data.extend; + + if (extend && extend !== Object) { + Parent = extend; + } + else { + Parent = Base; + } + + parentPrototype = Parent.prototype; + + if (!Parent.$isClass) { + for (i in basePrototype) { + if (!parentPrototype[i]) { + parentPrototype[i] = basePrototype[i]; + } + } + } + + Class.extend(Parent); + + Class.triggerExtended.apply(Class, arguments); + + if (data.onClassExtended) { + Class.onExtended(data.onClassExtended, Class); + delete data.onClassExtended; + } + + }, true); + + + ExtClass.registerPreprocessor('statics', function(Class, data) { + + Class.addStatics(data.statics); + + delete data.statics; + }); + + + ExtClass.registerPreprocessor('inheritableStatics', function(Class, data) { + + Class.addInheritableStatics(data.inheritableStatics); + + delete data.inheritableStatics; + }); + + + ExtClass.registerPreprocessor('config', function(Class, data) { + + var config = data.config, + prototype = Class.prototype; + + delete data.config; + + Ext.Object.each(config, function(name, value) { + var nameMap = ExtClass.getConfigNameMap(name), + internalName = nameMap.internal, + initializedName = nameMap.initialized, + applyName = nameMap.apply, + updateName = nameMap.update, + setName = nameMap.set, + getName = nameMap.get, + hasOwnSetter = (setName in prototype) || data.hasOwnProperty(setName), + hasOwnApplier = (applyName in prototype) || data.hasOwnProperty(applyName), + hasOwnUpdater = (updateName in prototype) || data.hasOwnProperty(updateName), + optimizedGetter, customGetter; + + if (value === null || (!hasOwnSetter && !hasOwnApplier && !hasOwnUpdater)) { + prototype[internalName] = value; + prototype[initializedName] = true; + } + else { + prototype[initializedName] = false; + } + + if (!hasOwnSetter) { + data[setName] = function(value) { + var oldValue = this[internalName], + applier = this[applyName], + updater = this[updateName]; + + if (!this[initializedName]) { + this[initializedName] = true; + } + + if (applier) { + value = applier.call(this, value, oldValue); + } + + if (typeof value != 'undefined') { + this[internalName] = value; + + if (updater && value !== oldValue) { + updater.call(this, value, oldValue); + } + } + + return this; + }; + } + + if (!(getName in prototype) || data.hasOwnProperty(getName)) { + customGetter = data[getName] || false; + + if (customGetter) { + optimizedGetter = function() { + return customGetter.apply(this, arguments); + }; + } + else { + optimizedGetter = function() { + return this[internalName]; + }; + } + + data[getName] = function() { + var currentGetter; + + if (!this[initializedName]) { + this[initializedName] = true; + this[setName](this.config[name]); + } + + currentGetter = this[getName]; + + if ('$previous' in currentGetter) { + currentGetter.$previous = optimizedGetter; + } + else { + this[getName] = optimizedGetter; + } + + return optimizedGetter.apply(this, arguments); + }; + } + }); + + Class.addConfig(config, true); + }); + + + ExtClass.registerPreprocessor('mixins', function(Class, data, hooks) { + + var mixins = data.mixins, + name, mixin, i, ln; + + delete data.mixins; + + Ext.Function.interceptBefore(hooks, 'onCreated', function() { + + if (mixins instanceof Array) { + for (i = 0,ln = mixins.length; i < ln; i++) { + mixin = mixins[i]; + name = mixin.prototype.mixinId || mixin.$className; + + Class.mixin(name, mixin); + } + } + else { + for (var mixinName in mixins) { + if (mixins.hasOwnProperty(mixinName)) { + Class.mixin(mixinName, mixins[mixinName]); + } + } + } + }); + }); + + + Ext.extend = function(Class, Parent, members) { + + if (arguments.length === 2 && Ext.isObject(Parent)) { + members = Parent; + Parent = Class; + Class = null; + } + + var cls; + + if (!Parent) { + throw new Error("[Ext.extend] Attempting to extend from a class which has not been loaded on the page."); + } + + members.extend = Parent; + members.preprocessors = [ + 'extend' + ,'statics' + ,'inheritableStatics' + ,'mixins' + ,'config' + ]; + + if (Class) { + cls = new ExtClass(Class, members); + + cls.prototype.constructor = Class; + } else { + cls = new ExtClass(members); + } + + cls.prototype.override = function(o) { + for (var m in o) { + if (o.hasOwnProperty(m)) { + this[m] = o[m]; + } + } + }; + + return cls; + }; +}()); + + + + + + +(function(Class, alias, arraySlice, arrayFrom, global) { + + + function makeCtor () { + function constructor () { + + + return this.constructor.apply(this, arguments) || null; + } + return constructor; + } + + var Manager = Ext.ClassManager = { + + + classes: {}, + + + existCache: {}, + + + namespaceRewrites: [{ + from: 'Ext.', + to: Ext + }], + + + maps: { + alternateToName: {}, + aliasToName: {}, + nameToAliases: {}, + nameToAlternates: {} + }, + + + enableNamespaceParseCache: true, + + + namespaceParseCache: {}, + + + instantiators: [], + + + isCreated: function(className) { + var existCache = this.existCache, + i, ln, part, root, parts; + + + if (this.classes[className] || existCache[className]) { + return true; + } + + root = global; + parts = this.parseNamespace(className); + + for (i = 0, ln = parts.length; i < ln; i++) { + part = parts[i]; + + if (typeof part != 'string') { + root = part; + } else { + if (!root || !root[part]) { + return false; + } + + root = root[part]; + } + } + + existCache[className] = true; + + this.triggerCreated(className); + + return true; + }, + + + createdListeners: [], + + + nameCreatedListeners: {}, + + + triggerCreated: function(className) { + var listeners = this.createdListeners, + nameListeners = this.nameCreatedListeners, + alternateNames = this.maps.nameToAlternates[className], + names = [className], + i, ln, j, subLn, listener, name; + + for (i = 0,ln = listeners.length; i < ln; i++) { + listener = listeners[i]; + listener.fn.call(listener.scope, className); + } + + if (alternateNames) { + names.push.apply(names, alternateNames); + } + + for (i = 0,ln = names.length; i < ln; i++) { + name = names[i]; + listeners = nameListeners[name]; + + if (listeners) { + for (j = 0,subLn = listeners.length; j < subLn; j++) { + listener = listeners[j]; + listener.fn.call(listener.scope, name); + } + delete nameListeners[name]; + } + } + }, + + + onCreated: function(fn, scope, className) { + + var listeners = this.createdListeners, + nameListeners = this.nameCreatedListeners, + listener = { + fn: fn, + scope: scope + }; + + if (className) { + if (this.isCreated(className)) { + fn.call(scope, className); + return; + } + + if (!nameListeners[className]) { + nameListeners[className] = []; + } + + nameListeners[className].push(listener); + } + else { + listeners.push(listener); + } + }, + + + parseNamespace: function(namespace) { + + var cache = this.namespaceParseCache, + parts, + rewrites, + root, + name, + rewrite, from, to, i, ln; + + if (this.enableNamespaceParseCache) { + if (cache.hasOwnProperty(namespace)) { + return cache[namespace]; + } + } + + parts = []; + rewrites = this.namespaceRewrites; + root = global; + name = namespace; + + for (i = 0, ln = rewrites.length; i < ln; i++) { + rewrite = rewrites[i]; + from = rewrite.from; + to = rewrite.to; + + if (name === from || name.substring(0, from.length) === from) { + name = name.substring(from.length); + + if (typeof to != 'string') { + root = to; + } else { + parts = parts.concat(to.split('.')); + } + + break; + } + } + + parts.push(root); + + parts = parts.concat(name.split('.')); + + if (this.enableNamespaceParseCache) { + cache[namespace] = parts; + } + + return parts; + }, + + + setNamespace: function(name, value) { + var root = global, + parts = this.parseNamespace(name), + ln = parts.length - 1, + leaf = parts[ln], + i, part; + + for (i = 0; i < ln; i++) { + part = parts[i]; + + if (typeof part != 'string') { + root = part; + } else { + if (!root[part]) { + root[part] = {}; + } + + root = root[part]; + } + } + + root[leaf] = value; + + return root[leaf]; + }, + + + createNamespaces: function() { + var root = global, + parts, part, i, j, ln, subLn; + + for (i = 0, ln = arguments.length; i < ln; i++) { + parts = this.parseNamespace(arguments[i]); + + for (j = 0, subLn = parts.length; j < subLn; j++) { + part = parts[j]; + + if (typeof part != 'string') { + root = part; + } else { + if (!root[part]) { + root[part] = {}; + } + + root = root[part]; + } + } + } + + return root; + }, + + + set: function(name, value) { + var me = this, + maps = me.maps, + nameToAlternates = maps.nameToAlternates, + targetName = me.getName(value), + alternates; + + me.classes[name] = me.setNamespace(name, value); + + if (targetName && targetName !== name) { + maps.alternateToName[name] = targetName; + alternates = nameToAlternates[targetName] || (nameToAlternates[targetName] = []); + alternates.push(name); + } + + return this; + }, + + + get: function(name) { + var classes = this.classes, + root, + parts, + part, i, ln; + + if (classes[name]) { + return classes[name]; + } + + root = global; + parts = this.parseNamespace(name); + + for (i = 0, ln = parts.length; i < ln; i++) { + part = parts[i]; + + if (typeof part != 'string') { + root = part; + } else { + if (!root || !root[part]) { + return null; + } + + root = root[part]; + } + } + + return root; + }, + + + setAlias: function(cls, alias) { + var aliasToNameMap = this.maps.aliasToName, + nameToAliasesMap = this.maps.nameToAliases, + className; + + if (typeof cls == 'string') { + className = cls; + } else { + className = this.getName(cls); + } + + if (alias && aliasToNameMap[alias] !== className) { + + aliasToNameMap[alias] = className; + } + + if (!nameToAliasesMap[className]) { + nameToAliasesMap[className] = []; + } + + if (alias) { + Ext.Array.include(nameToAliasesMap[className], alias); + } + + return this; + }, + + + addNameAliasMappings: function(aliases){ + var aliasToNameMap = this.maps.aliasToName, + nameToAliasesMap = this.maps.nameToAliases, + className, aliasList, alias, i; + + for (className in aliases) { + aliasList = nameToAliasesMap[className] || + (nameToAliasesMap[className] = []); + + for (i = 0; i < aliases[className].length; i++) { + alias = aliases[className][i]; + if (!aliasToNameMap[alias]) { + aliasToNameMap[alias] = className; + aliasList.push(alias); + } + } + + } + return this; + }, + + + addNameAlternateMappings: function(alternates) { + var alternateToName = this.maps.alternateToName, + nameToAlternates = this.maps.nameToAlternates, + className, aliasList, alternate, i; + + for (className in alternates) { + aliasList = nameToAlternates[className] || + (nameToAlternates[className] = []); + + for (i = 0; i < alternates[className].length; i++) { + alternate = alternates[className][i]; + if (!alternateToName[alternate]) { + alternateToName[alternate] = className; + aliasList.push(alternate); + } + } + + } + return this; + }, + + + getByAlias: function(alias) { + return this.get(this.getNameByAlias(alias)); + }, + + + getNameByAlias: function(alias) { + return this.maps.aliasToName[alias] || ''; + }, + + + getNameByAlternate: function(alternate) { + return this.maps.alternateToName[alternate] || ''; + }, + + + getAliasesByName: function(name) { + return this.maps.nameToAliases[name] || []; + }, + + + getName: function(object) { + return object && object.$className || ''; + }, + + + getClass: function(object) { + return object && object.self || null; + }, + + + create: function(className, data, createdFn) { + + var ctor = makeCtor(); + if (typeof data == 'function') { + data = data(ctor); + } + + + data.$className = className; + + return new Class(ctor, data, function() { + var postprocessorStack = data.postprocessors || Manager.defaultPostprocessors, + registeredPostprocessors = Manager.postprocessors, + postprocessors = [], + postprocessor, i, ln, j, subLn, postprocessorProperties, postprocessorProperty; + + delete data.postprocessors; + + for (i = 0,ln = postprocessorStack.length; i < ln; i++) { + postprocessor = postprocessorStack[i]; + + if (typeof postprocessor == 'string') { + postprocessor = registeredPostprocessors[postprocessor]; + postprocessorProperties = postprocessor.properties; + + if (postprocessorProperties === true) { + postprocessors.push(postprocessor.fn); + } + else if (postprocessorProperties) { + for (j = 0,subLn = postprocessorProperties.length; j < subLn; j++) { + postprocessorProperty = postprocessorProperties[j]; + + if (data.hasOwnProperty(postprocessorProperty)) { + postprocessors.push(postprocessor.fn); + break; + } + } + } + } + else { + postprocessors.push(postprocessor); + } + } + + data.postprocessors = postprocessors; + data.createdFn = createdFn; + Manager.processCreate(className, this, data); + }); + }, + + processCreate: function(className, cls, clsData){ + var me = this, + postprocessor = clsData.postprocessors.shift(), + createdFn = clsData.createdFn; + + if (!postprocessor) { + + if (className) { + me.set(className, cls); + } + + if (createdFn) { + createdFn.call(cls, cls); + } + + if (className) { + me.triggerCreated(className); + } + return; + } + + if (postprocessor.call(me, className, cls, clsData, me.processCreate) !== false) { + me.processCreate(className, cls, clsData); + } + }, + + createOverride: function (className, data, createdFn) { + var me = this, + overriddenClassName = data.override, + requires = data.requires, + uses = data.uses, + classReady = function () { + var cls, temp; + + if (requires) { + temp = requires; + requires = null; + + + + + Ext.Loader.require(temp, classReady); + } else { + + + cls = me.get(overriddenClassName); + + + delete data.override; + delete data.requires; + delete data.uses; + + Ext.override(cls, data); + + + + + me.triggerCreated(className); + + if (uses) { + Ext.Loader.addUsedClasses(uses); + } + + if (createdFn) { + createdFn.call(cls); + } + } + }; + + me.existCache[className] = true; + + + me.onCreated(classReady, me, overriddenClassName); + + return me; + }, + + + instantiateByAlias: function() { + var alias = arguments[0], + args = arraySlice.call(arguments), + className = this.getNameByAlias(alias); + + if (!className) { + className = this.maps.aliasToName[alias]; + + + + Ext.syncRequire(className); + } + + args[0] = className; + + return this.instantiate.apply(this, args); + }, + + + instantiate: function() { + var name = arguments[0], + nameType = typeof name, + args = arraySlice.call(arguments, 1), + alias = name, + possibleName, cls; + + if (nameType != 'function') { + if (nameType != 'string' && args.length === 0) { + args = [name]; + name = name.xclass; + } + + + cls = this.get(name); + } + else { + cls = name; + } + + + if (!cls) { + possibleName = this.getNameByAlias(name); + + if (possibleName) { + name = possibleName; + + cls = this.get(name); + } + } + + + if (!cls) { + possibleName = this.getNameByAlternate(name); + + if (possibleName) { + name = possibleName; + + cls = this.get(name); + } + } + + + if (!cls) { + + Ext.syncRequire(name); + + cls = this.get(name); + } + + + return this.getInstantiator(args.length)(cls, args); + }, + + + dynInstantiate: function(name, args) { + args = arrayFrom(args, true); + args.unshift(name); + + return this.instantiate.apply(this, args); + }, + + + getInstantiator: function(length) { + var instantiators = this.instantiators, + instantiator, + i, + args; + + instantiator = instantiators[length]; + + if (!instantiator) { + i = length; + args = []; + + for (i = 0; i < length; i++) { + args.push('a[' + i + ']'); + } + + instantiator = instantiators[length] = new Function('c', 'a', 'return new c(' + args.join(',') + ')'); + } + + return instantiator; + }, + + + postprocessors: {}, + + + defaultPostprocessors: [], + + + registerPostprocessor: function(name, fn, properties, position, relativeTo) { + if (!position) { + position = 'last'; + } + + if (!properties) { + properties = [name]; + } + + this.postprocessors[name] = { + name: name, + properties: properties || false, + fn: fn + }; + + this.setDefaultPostprocessorPosition(name, position, relativeTo); + + return this; + }, + + + setDefaultPostprocessors: function(postprocessors) { + this.defaultPostprocessors = arrayFrom(postprocessors); + + return this; + }, + + + setDefaultPostprocessorPosition: function(name, offset, relativeName) { + var defaultPostprocessors = this.defaultPostprocessors, + index; + + if (typeof offset == 'string') { + if (offset === 'first') { + defaultPostprocessors.unshift(name); + + return this; + } + else if (offset === 'last') { + defaultPostprocessors.push(name); + + return this; + } + + offset = (offset === 'after') ? 1 : -1; + } + + index = Ext.Array.indexOf(defaultPostprocessors, relativeName); + + if (index !== -1) { + Ext.Array.splice(defaultPostprocessors, Math.max(0, index + offset), 0, name); + } + + return this; + }, + + + getNamesByExpression: function(expression) { + var nameToAliasesMap = this.maps.nameToAliases, + names = [], + name, alias, aliases, possibleName, regex, i, ln; + + + if (expression.indexOf('*') !== -1) { + expression = expression.replace(/\*/g, '(.*?)'); + regex = new RegExp('^' + expression + '$'); + + for (name in nameToAliasesMap) { + if (nameToAliasesMap.hasOwnProperty(name)) { + aliases = nameToAliasesMap[name]; + + if (name.search(regex) !== -1) { + names.push(name); + } + else { + for (i = 0, ln = aliases.length; i < ln; i++) { + alias = aliases[i]; + + if (alias.search(regex) !== -1) { + names.push(name); + break; + } + } + } + } + } + + } else { + possibleName = this.getNameByAlias(expression); + + if (possibleName) { + names.push(possibleName); + } else { + possibleName = this.getNameByAlternate(expression); + + if (possibleName) { + names.push(possibleName); + } else { + names.push(expression); + } + } + } + + return names; + } + }; + + + Manager.registerPostprocessor('alias', function(name, cls, data) { + + var aliases = data.alias, + i, ln; + + for (i = 0,ln = aliases.length; i < ln; i++) { + alias = aliases[i]; + + this.setAlias(cls, alias); + } + + }, ['xtype', 'alias']); + + + Manager.registerPostprocessor('singleton', function(name, cls, data, fn) { + + if (data.singleton) { + fn.call(this, name, new cls(), data); + } + else { + return true; + } + return false; + }); + + + Manager.registerPostprocessor('alternateClassName', function(name, cls, data) { + + var alternates = data.alternateClassName, + i, ln, alternate; + + if (!(alternates instanceof Array)) { + alternates = [alternates]; + } + + for (i = 0, ln = alternates.length; i < ln; i++) { + alternate = alternates[i]; + + + this.set(alternate, cls); + } + }); + + Ext.apply(Ext, { + + create: alias(Manager, 'instantiate'), + + + widget: function(name, config) { + + + + + + + + var xtype = name, + alias, className, T, load; + + if (typeof xtype != 'string') { + + config = name; + xtype = config.xtype; + } else { + config = config || {}; + } + + if (config.isComponent) { + return config; + } + + alias = 'widget.' + xtype; + className = Manager.getNameByAlias(alias); + + + if (!className) { + load = true; + } + + T = Manager.get(className); + if (load || !T) { + return Manager.instantiateByAlias(alias, config); + } + return new T(config); + }, + + + createByAlias: alias(Manager, 'instantiateByAlias'), + + + define: function (className, data, createdFn) { + + if (data.override) { + return Manager.createOverride.apply(Manager, arguments); + } + + return Manager.create.apply(Manager, arguments); + }, + + + undefine: function(className) { + + var classes = Manager.classes, + maps = Manager.maps, + aliasToName = maps.aliasToName, + nameToAliases = maps.nameToAliases, + alternateToName = maps.alternateToName, + nameToAlternates = maps.nameToAlternates, + aliases = nameToAliases[className], + alternates = nameToAlternates[className], + parts, partCount, namespace, i; + + delete Manager.namespaceParseCache[className]; + delete nameToAliases[className]; + delete nameToAlternates[className]; + delete classes[className]; + + if (aliases) { + for (i = aliases.length; i--;) { + delete aliasToName[aliases[i]]; + } + } + + if (alternates) { + for (i = alternates.length; i--; ) { + delete alternateToName[alternates[i]]; + } + } + + parts = Manager.parseNamespace(className); + partCount = parts.length - 1; + namespace = parts[0]; + + for (i = 1; i < partCount; i++) { + namespace = namespace[parts[i]]; + if (!namespace) { + return; + } + } + + + try { + delete namespace[parts[partCount]]; + } + catch (e) { + namespace[parts[partCount]] = undefined; + } + }, + + + getClassName: alias(Manager, 'getName'), + + + getDisplayName: function(object) { + if (object) { + if (object.displayName) { + return object.displayName; + } + + if (object.$name && object.$class) { + return Ext.getClassName(object.$class) + '#' + object.$name; + } + + if (object.$className) { + return object.$className; + } + } + + return 'Anonymous'; + }, + + + getClass: alias(Manager, 'getClass'), + + + namespace: alias(Manager, 'createNamespaces') + }); + + + Ext.createWidget = Ext.widget; + + + Ext.ns = Ext.namespace; + + Class.registerPreprocessor('className', function(cls, data) { + if (data.$className) { + cls.$className = data.$className; + } + + }, true, 'first'); + + Class.registerPreprocessor('alias', function(cls, data) { + + var prototype = cls.prototype, + xtypes = arrayFrom(data.xtype), + aliases = arrayFrom(data.alias), + widgetPrefix = 'widget.', + widgetPrefixLength = widgetPrefix.length, + xtypesChain = Array.prototype.slice.call(prototype.xtypesChain || []), + xtypesMap = Ext.merge({}, prototype.xtypesMap || {}), + i, ln, alias, xtype; + + for (i = 0,ln = aliases.length; i < ln; i++) { + alias = aliases[i]; + + + if (alias.substring(0, widgetPrefixLength) === widgetPrefix) { + xtype = alias.substring(widgetPrefixLength); + Ext.Array.include(xtypes, xtype); + } + } + + cls.xtype = data.xtype = xtypes[0]; + data.xtypes = xtypes; + + for (i = 0,ln = xtypes.length; i < ln; i++) { + xtype = xtypes[i]; + + if (!xtypesMap[xtype]) { + xtypesMap[xtype] = true; + xtypesChain.push(xtype); + } + } + + data.xtypesChain = xtypesChain; + data.xtypesMap = xtypesMap; + + Ext.Function.interceptAfter(data, 'onClassCreated', function() { + + var mixins = prototype.mixins, + key, mixin; + + for (key in mixins) { + if (mixins.hasOwnProperty(key)) { + mixin = mixins[key]; + + xtypes = mixin.xtypes; + + if (xtypes) { + for (i = 0,ln = xtypes.length; i < ln; i++) { + xtype = xtypes[i]; + + if (!xtypesMap[xtype]) { + xtypesMap[xtype] = true; + xtypesChain.push(xtype); + } + } + } + } + } + }); + + for (i = 0,ln = xtypes.length; i < ln; i++) { + xtype = xtypes[i]; + + + Ext.Array.include(aliases, widgetPrefix + xtype); + } + + data.alias = aliases; + + }, ['xtype', 'alias']); + +}(Ext.Class, Ext.Function.alias, Array.prototype.slice, Ext.Array.from, Ext.global)); + + + +if (Ext._alternatesMetadata) { + Ext.ClassManager.addNameAlternateMappings(Ext._alternatesMetadata); + Ext._alternatesMetadata = null; +} + +if (Ext._aliasMetadata) { + Ext.ClassManager.addNameAliasMappings(Ext._aliasMetadata); + Ext._aliasMetadata = null; +} + + + + + + + +Ext.Loader = new function() { + var Loader = this, + Manager = Ext.ClassManager, + Class = Ext.Class, + flexSetter = Ext.Function.flexSetter, + alias = Ext.Function.alias, + pass = Ext.Function.pass, + defer = Ext.Function.defer, + arrayErase = Ext.Array.erase, + dependencyProperties = ['extend', 'mixins', 'requires'], + isInHistory = {}, + history = [], + slashDotSlashRe = /\/\.\//g, + dotRe = /\./g, + setPathCount = 0; + + Ext.apply(Loader, { + + + isInHistory: isInHistory, + + + history: history, + + + config: { + + enabled: false, + + + scriptChainDelay : false, + + + disableCaching: true, + + + disableCachingParam: '_dc', + + + garbageCollect : false, + + + paths: { + 'Ext': '.' + }, + + + preserveScripts : true, + + + scriptCharset : undefined + }, + + + setConfig: function(name, value) { + if (Ext.isObject(name) && arguments.length === 1) { + Ext.merge(Loader.config, name); + + if ('paths' in name) { + Ext.app.collectNamespaces(name.paths); + } + } + else { + Loader.config[name] = (Ext.isObject(value)) ? Ext.merge(Loader.config[name], value) : value; + + if (name === 'paths') { + Ext.app.collectNamespaces(value); + } + } + + return Loader; + }, + + + getConfig: function(name) { + if (name) { + return Loader.config[name]; + } + + return Loader.config; + }, + + + setPath: flexSetter(function(name, path) { + Loader.config.paths[name] = path; + Ext.app.namespaces[name] = true; + setPathCount++; + + return Loader; + }), + + + addClassPathMappings: function(paths) { + var name; + + if(setPathCount == 0){ + Loader.config.paths = paths; + } else { + for(name in paths){ + Loader.config.paths[name] = paths[name]; + } + } + setPathCount++; + return Loader; + }, + + + getPath: function(className) { + var path = '', + paths = Loader.config.paths, + prefix = Loader.getPrefix(className); + + if (prefix.length > 0) { + if (prefix === className) { + return paths[prefix]; + } + + path = paths[prefix]; + className = className.substring(prefix.length + 1); + } + + if (path.length > 0) { + path += '/'; + } + + return path.replace(slashDotSlashRe, '/') + className.replace(dotRe, "/") + '.js'; + }, + + + getPrefix: function(className) { + var paths = Loader.config.paths, + prefix, deepestPrefix = ''; + + if (paths.hasOwnProperty(className)) { + return className; + } + + for (prefix in paths) { + if (paths.hasOwnProperty(prefix) && prefix + '.' === className.substring(0, prefix.length + 1)) { + if (prefix.length > deepestPrefix.length) { + deepestPrefix = prefix; + } + } + } + + return deepestPrefix; + }, + + + isAClassNameWithAKnownPrefix: function(className) { + var prefix = Loader.getPrefix(className); + + + return prefix !== '' && prefix !== className; + }, + + + require: function(expressions, fn, scope, excludes) { + if (fn) { + fn.call(scope); + } + }, + + + syncRequire: function() {}, + + + exclude: function(excludes) { + return { + require: function(expressions, fn, scope) { + return Loader.require(expressions, fn, scope, excludes); + }, + + syncRequire: function(expressions, fn, scope) { + return Loader.syncRequire(expressions, fn, scope, excludes); + } + }; + }, + + + onReady: function(fn, scope, withDomReady, options) { + var oldFn; + + if (withDomReady !== false && Ext.onDocumentReady) { + oldFn = fn; + + fn = function() { + Ext.onDocumentReady(oldFn, scope, options); + }; + } + + fn.call(scope); + } + }); + + var queue = [], + isClassFileLoaded = {}, + isFileLoaded = {}, + classNameToFilePathMap = {}, + scriptElements = {}, + readyListeners = [], + usedClasses = [], + requiresMap = {}, + comparePriority = function(listenerA, listenerB) { + return listenerB.priority - listenerA.priority; + }; + + Ext.apply(Loader, { + + documentHead: typeof document != 'undefined' && (document.head || document.getElementsByTagName('head')[0]), + + + isLoading: false, + + + queue: queue, + + + isClassFileLoaded: isClassFileLoaded, + + + isFileLoaded: isFileLoaded, + + + readyListeners: readyListeners, + + + optionalRequires: usedClasses, + + + requiresMap: requiresMap, + + + numPendingFiles: 0, + + + numLoadedFiles: 0, + + + hasFileLoadError: false, + + + classNameToFilePathMap: classNameToFilePathMap, + + + scriptsLoading: 0, + + + syncModeEnabled: false, + + scriptElements: scriptElements, + + + refreshQueue: function() { + var ln = queue.length, + i, item, j, requires; + + + + if (!ln && !Loader.scriptsLoading) { + return Loader.triggerReady(); + } + + for (i = 0; i < ln; i++) { + item = queue[i]; + + if (item) { + requires = item.requires; + + + + if (requires.length > Loader.numLoadedFiles) { + continue; + } + + + for (j = 0; j < requires.length; ) { + if (Manager.isCreated(requires[j])) { + + arrayErase(requires, j, 1); + } + else { + j++; + } + } + + + if (item.requires.length === 0) { + arrayErase(queue, i, 1); + item.callback.call(item.scope); + Loader.refreshQueue(); + break; + } + } + } + + return Loader; + }, + + + injectScriptElement: function(url, onLoad, onError, scope, charset) { + var script = document.createElement('script'), + dispatched = false, + config = Loader.config, + onLoadFn = function() { + + if(!dispatched) { + dispatched = true; + script.onload = script.onreadystatechange = script.onerror = null; + if (typeof config.scriptChainDelay == 'number') { + + defer(onLoad, config.scriptChainDelay, scope); + } else { + onLoad.call(scope); + } + Loader.cleanupScriptElement(script, config.preserveScripts === false, config.garbageCollect); + } + + }, + onErrorFn = function(arg) { + defer(onError, 1, scope); + Loader.cleanupScriptElement(script, config.preserveScripts === false, config.garbageCollect); + }; + + script.type = 'text/javascript'; + script.onerror = onErrorFn; + charset = charset || config.scriptCharset; + if (charset) { + script.charset = charset; + } + + + if ('addEventListener' in script ) { + script.onload = onLoadFn; + } else if ('readyState' in script) { + script.onreadystatechange = function() { + if ( this.readyState == 'loaded' || this.readyState == 'complete' ) { + onLoadFn(); + } + }; + } else { + script.onload = onLoadFn; + } + + script.src = url; + (Loader.documentHead || document.getElementsByTagName('head')[0]).appendChild(script); + + return script; + }, + + + removeScriptElement: function(url) { + if (scriptElements[url]) { + Loader.cleanupScriptElement(scriptElements[url], true, !!Loader.getConfig('garbageCollect')); + delete scriptElements[url]; + } + + return Loader; + }, + + + cleanupScriptElement: function(script, remove, collect) { + var prop; + script.onload = script.onreadystatechange = script.onerror = null; + if (remove) { + Ext.removeNode(script); + if (collect) { + for (prop in script) { + try { + if (prop != 'src') { + + + script[prop] = null; + } + delete script[prop]; + } catch (cleanEx) { + + } + } + } + } + + return Loader; + }, + + + loadScript: function (options) { + var config = Loader.getConfig(), + isString = typeof options == 'string', + url = isString ? options : options.url, + onError = !isString && options.onError, + onLoad = !isString && options.onLoad, + scope = !isString && options.scope, + onScriptError = function() { + Loader.numPendingFiles--; + Loader.scriptsLoading--; + + if (onError) { + onError.call(scope, "Failed loading '" + url + "', please verify that the file exists"); + } + + if (Loader.numPendingFiles + Loader.scriptsLoading === 0) { + Loader.refreshQueue(); + } + }, + onScriptLoad = function () { + Loader.numPendingFiles--; + Loader.scriptsLoading--; + + if (onLoad) { + onLoad.call(scope); + } + + if (Loader.numPendingFiles + Loader.scriptsLoading === 0) { + Loader.refreshQueue(); + } + }, + src; + + Loader.isLoading = true; + Loader.numPendingFiles++; + Loader.scriptsLoading++; + + src = config.disableCaching ? + (url + '?' + config.disableCachingParam + '=' + Ext.Date.now()) : url; + + scriptElements[url] = Loader.injectScriptElement(src, onScriptLoad, onScriptError); + }, + + + loadScriptFile: function(url, onLoad, onError, scope, synchronous) { + if (isFileLoaded[url]) { + return Loader; + } + + var config = Loader.getConfig(), + noCacheUrl = url + (config.disableCaching ? ('?' + config.disableCachingParam + '=' + Ext.Date.now()) : ''), + isCrossOriginRestricted = false, + xhr, status, onScriptError, + debugSourceURL = ""; + + scope = scope || Loader; + + Loader.isLoading = true; + + if (!synchronous) { + onScriptError = function() { + }; + + scriptElements[url] = Loader.injectScriptElement(noCacheUrl, onLoad, onScriptError, scope); + } else { + if (typeof XMLHttpRequest != 'undefined') { + xhr = new XMLHttpRequest(); + } else { + xhr = new ActiveXObject('Microsoft.XMLHTTP'); + } + + try { + xhr.open('GET', noCacheUrl, false); + xhr.send(null); + } catch (e) { + isCrossOriginRestricted = true; + } + + status = (xhr.status === 1223) ? 204 : + (xhr.status === 0 && ((self.location || {}).protocol == 'file:' || (self.location || {}).protocol == 'ionp:')) ? 200 : xhr.status; + + isCrossOriginRestricted = isCrossOriginRestricted || (status === 0); + + if (isCrossOriginRestricted + ) { + } + else if ((status >= 200 && status < 300) || (status === 304) + ) { + + + if (!Ext.isIE) { + debugSourceURL = "\n//@ sourceURL=" + url; + } + + Ext.globalEval(xhr.responseText + debugSourceURL); + + onLoad.call(scope); + } + else { + } + + + xhr = null; + } + }, + + + syncRequire: function() { + var syncModeEnabled = Loader.syncModeEnabled; + + if (!syncModeEnabled) { + Loader.syncModeEnabled = true; + } + + Loader.require.apply(Loader, arguments); + + if (!syncModeEnabled) { + Loader.syncModeEnabled = false; + } + + Loader.refreshQueue(); + }, + + + require: function(expressions, fn, scope, excludes) { + var excluded = {}, + included = {}, + excludedClassNames = [], + possibleClassNames = [], + classNames = [], + references = [], + callback, + syncModeEnabled, + filePath, expression, exclude, className, + possibleClassName, i, j, ln, subLn; + + if (excludes) { + + excludes = (typeof excludes === 'string') ? [ excludes ] : excludes; + + for (i = 0,ln = excludes.length; i < ln; i++) { + exclude = excludes[i]; + + if (typeof exclude == 'string' && exclude.length > 0) { + excludedClassNames = Manager.getNamesByExpression(exclude); + + for (j = 0,subLn = excludedClassNames.length; j < subLn; j++) { + excluded[excludedClassNames[j]] = true; + } + } + } + } + + + expressions = (typeof expressions === 'string') ? [ expressions ] : (expressions ? expressions : []); + + if (fn) { + if (fn.length > 0) { + callback = function() { + var classes = [], + i, ln; + + for (i = 0,ln = references.length; i < ln; i++) { + classes.push(Manager.get(references[i])); + } + + return fn.apply(this, classes); + }; + } + else { + callback = fn; + } + } + else { + callback = Ext.emptyFn; + } + + scope = scope || Ext.global; + + for (i = 0,ln = expressions.length; i < ln; i++) { + expression = expressions[i]; + + if (typeof expression == 'string' && expression.length > 0) { + possibleClassNames = Manager.getNamesByExpression(expression); + subLn = possibleClassNames.length; + + for (j = 0; j < subLn; j++) { + possibleClassName = possibleClassNames[j]; + + if (excluded[possibleClassName] !== true) { + references.push(possibleClassName); + + if (!Manager.isCreated(possibleClassName) && !included[possibleClassName]) { + included[possibleClassName] = true; + classNames.push(possibleClassName); + } + } + } + } + } + + + + if (classNames.length > 0) { + if (!Loader.config.enabled) { + throw new Error("Ext.Loader is not enabled, so dependencies cannot be resolved dynamically. " + + "Missing required class" + ((classNames.length > 1) ? "es" : "") + ": " + classNames.join(', ')); + } + } + else { + callback.call(scope); + return Loader; + } + + syncModeEnabled = Loader.syncModeEnabled; + + if (!syncModeEnabled) { + queue.push({ + requires: classNames.slice(), + + callback: callback, + scope: scope + }); + } + + ln = classNames.length; + + for (i = 0; i < ln; i++) { + className = classNames[i]; + + filePath = Loader.getPath(className); + + + + + if (syncModeEnabled && isClassFileLoaded.hasOwnProperty(className)) { + if (!isClassFileLoaded[className]) { + Loader.numPendingFiles--; + Loader.removeScriptElement(filePath); + delete isClassFileLoaded[className]; + } + } + + if (!isClassFileLoaded.hasOwnProperty(className)) { + isClassFileLoaded[className] = false; + classNameToFilePathMap[className] = filePath; + + Loader.numPendingFiles++; + Loader.loadScriptFile( + filePath, + pass(Loader.onFileLoaded, [className, filePath], Loader), + pass(Loader.onFileLoadError, [className, filePath], Loader), + Loader, + syncModeEnabled + ); + } + } + + if (syncModeEnabled) { + callback.call(scope); + + if (ln === 1) { + return Manager.get(className); + } + } + + return Loader; + }, + + + onFileLoaded: function(className, filePath) { + var loaded = isClassFileLoaded[className]; + Loader.numLoadedFiles++; + + isClassFileLoaded[className] = true; + isFileLoaded[filePath] = true; + + + + if (!loaded) { + Loader.numPendingFiles--; + } + + if (Loader.numPendingFiles === 0) { + Loader.refreshQueue(); + } + + }, + + + onFileLoadError: function(className, filePath, errorMessage, isSynchronous) { + Loader.numPendingFiles--; + Loader.hasFileLoadError = true; + + }, + + + addUsedClasses: function (classes) { + var cls, i, ln; + + if (classes) { + classes = (typeof classes == 'string') ? [classes] : classes; + for (i = 0, ln = classes.length; i < ln; i++) { + cls = classes[i]; + if (typeof cls == 'string' && !Ext.Array.contains(usedClasses, cls)) { + usedClasses.push(cls); + } + } + } + + return Loader; + }, + + + triggerReady: function() { + var listener, + refClasses = usedClasses; + + if (Loader.isLoading) { + Loader.isLoading = false; + + if (refClasses.length !== 0) { + + refClasses = refClasses.slice(); + usedClasses.length = 0; + + + Loader.require(refClasses, Loader.triggerReady, Loader); + return Loader; + } + } + + Ext.Array.sort(readyListeners, comparePriority); + + + + + while (readyListeners.length && !Loader.isLoading) { + + + listener = readyListeners.shift(); + listener.fn.call(listener.scope); + } + + return Loader; + }, + + + onReady: function(fn, scope, withDomReady, options) { + var oldFn; + + if (withDomReady !== false && Ext.onDocumentReady) { + oldFn = fn; + + fn = function() { + Ext.onDocumentReady(oldFn, scope, options); + }; + } + + if (!Loader.isLoading) { + fn.call(scope); + } + else { + readyListeners.push({ + fn: fn, + scope: scope, + priority: (options && options.priority) || 0 + }); + } + }, + + + historyPush: function(className) { + if (className && isClassFileLoaded.hasOwnProperty(className) && !isInHistory[className]) { + isInHistory[className] = true; + history.push(className); + } + return Loader; + } + }); + + + Ext.disableCacheBuster = function (disable, path) { + var date = new Date(); + date.setTime(date.getTime() + (disable ? 10*365 : -1) * 24*60*60*1000); + date = date.toGMTString(); + document.cookie = 'ext-cache=1; expires=' + date + '; path='+(path || '/'); + }; + + + + Ext.require = alias(Loader, 'require'); + + + Ext.syncRequire = alias(Loader, 'syncRequire'); + + + Ext.exclude = alias(Loader, 'exclude'); + + + Ext.onReady = function(fn, scope, options) { + Loader.onReady(fn, scope, true, options); + }; + + + Class.registerPreprocessor('loader', function(cls, data, hooks, continueFn) { + + var me = this, + dependencies = [], + dependency, + className = Manager.getName(cls), + i, j, ln, subLn, value, propertyName, propertyValue, + requiredMap, requiredDep; + + + + for (i = 0,ln = dependencyProperties.length; i < ln; i++) { + propertyName = dependencyProperties[i]; + + if (data.hasOwnProperty(propertyName)) { + propertyValue = data[propertyName]; + + if (typeof propertyValue == 'string') { + dependencies.push(propertyValue); + } + else if (propertyValue instanceof Array) { + for (j = 0, subLn = propertyValue.length; j < subLn; j++) { + value = propertyValue[j]; + + if (typeof value == 'string') { + dependencies.push(value); + } + } + } + else if (typeof propertyValue != 'function') { + for (j in propertyValue) { + if (propertyValue.hasOwnProperty(j)) { + value = propertyValue[j]; + + if (typeof value == 'string') { + dependencies.push(value); + } + } + } + } + } + } + + if (dependencies.length === 0) { + return; + } + + + Loader.require(dependencies, function() { + for (i = 0,ln = dependencyProperties.length; i < ln; i++) { + propertyName = dependencyProperties[i]; + + if (data.hasOwnProperty(propertyName)) { + propertyValue = data[propertyName]; + + if (typeof propertyValue == 'string') { + data[propertyName] = Manager.get(propertyValue); + } + else if (propertyValue instanceof Array) { + for (j = 0, subLn = propertyValue.length; j < subLn; j++) { + value = propertyValue[j]; + + if (typeof value == 'string') { + data[propertyName][j] = Manager.get(value); + } + } + } + else if (typeof propertyValue != 'function') { + for (var k in propertyValue) { + if (propertyValue.hasOwnProperty(k)) { + value = propertyValue[k]; + + if (typeof value == 'string') { + data[propertyName][k] = Manager.get(value); + } + } + } + } + } + } + + continueFn.call(me, cls, data, hooks); + }); + + return false; + }, true, 'after', 'className'); + + + Manager.registerPostprocessor('uses', function(name, cls, data) { + + var uses = data.uses; + if (uses) { + Loader.addUsedClasses(uses); + } + }); + + Manager.onCreated(Loader.historyPush); +}; + + + +if (Ext._classPathMetadata) { + Ext.Loader.addClassPathMappings(Ext._classPathMetadata); + Ext._classPathMetadata = null; +} + + +(function() { + var scripts = document.getElementsByTagName('script'), + currentScript = scripts[scripts.length - 1], + src = currentScript.src, + path = src.substring(0, src.lastIndexOf('/') + 1), + Loader = Ext.Loader; + + + Loader.setConfig({ + enabled: true, + disableCaching: + true, + paths: { + 'Ext': path + 'src' + } + }); +})(); + + + +Ext._endTime = new Date().getTime(); +if (Ext._beforereadyhandler){ + Ext._beforereadyhandler(); +} + + + + + + +Ext.Error = Ext.extend(Error, { + statics: { + + ignore: false, + + + + + + raise: function(err){ + err = err || {}; + if (Ext.isString(err)) { + err = { msg: err }; + } + + var method = this.raise.caller, + msg; + + if (method) { + if (method.$name) { + err.sourceMethod = method.$name; + } + if (method.$owner) { + err.sourceClass = method.$owner.$className; + } + } + + if (Ext.Error.handle(err) !== true) { + msg = Ext.Error.prototype.toString.call(err); + + Ext.log({ + msg: msg, + level: 'error', + dump: err, + stack: true + }); + + throw new Ext.Error(err); + } + }, + + + handle: function(){ + return Ext.Error.ignore; + } + }, + + + name: 'Ext.Error', + + + constructor: function(config){ + if (Ext.isString(config)) { + config = { msg: config }; + } + + var me = this; + + Ext.apply(me, config); + + me.message = me.message || me.msg; + + }, + + + toString: function(){ + var me = this, + className = me.sourceClass ? me.sourceClass : '', + methodName = me.sourceMethod ? '.' + me.sourceMethod + '(): ' : '', + msg = me.msg || '(No description provided)'; + + return className + methodName + msg; + } +}); + + +Ext.deprecated = function (suggestion) { + return Ext.emptyFn; +}; + + + + + + + + +Ext.JSON = (new(function() { + var me = this, + encodingFunction, + decodingFunction, + useNative = null, + useHasOwn = !! {}.hasOwnProperty, + isNative = function() { + if (useNative === null) { + useNative = Ext.USE_NATIVE_JSON && window.JSON && JSON.toString() == '[object JSON]'; + } + return useNative; + }, + pad = function(n) { + return n < 10 ? "0" + n : n; + }, + doDecode = function(json) { + return eval("(" + json + ')'); + }, + doEncode = function(o, newline) { + + if (o === null || o === undefined) { + return "null"; + } else if (Ext.isDate(o)) { + return Ext.JSON.encodeDate(o); + } else if (Ext.isString(o)) { + return Ext.JSON.encodeString(o); + } else if (typeof o == "number") { + + return isFinite(o) ? String(o) : "null"; + } else if (Ext.isBoolean(o)) { + return String(o); + } + + + else if (o.toJSON) { + return o.toJSON(); + } else if (Ext.isArray(o)) { + return encodeArray(o, newline); + } else if (Ext.isObject(o)) { + return encodeObject(o, newline); + } else if (typeof o === "function") { + return "null"; + } + return 'undefined'; + }, + m = { + "\b": '\\b', + "\t": '\\t', + "\n": '\\n', + "\f": '\\f', + "\r": '\\r', + '"': '\\"', + "\\": '\\\\', + '\x0b': '\\u000b' + }, + charToReplace = /[\\\"\x00-\x1f\x7f-\uffff]/g, + encodeString = function(s) { + return '"' + s.replace(charToReplace, function(a) { + var c = m[a]; + return typeof c === 'string' ? c : '\\u' + ('0000' + a.charCodeAt(0).toString(16)).slice(-4); + }) + '"'; + }, + + + encodeArray = function(o, newline) { + + var a = ["[", ""], + len = o.length, + i; + for (i = 0; i < len; i += 1) { + a.push(Ext.JSON.encodeValue(o[i]), ','); + } + + a[a.length - 1] = ']'; + return a.join(""); + }, + + encodeObject = function(o, newline) { + + var a = ["{", ""], + i, val; + for (i in o) { + val = o[i]; + if (!useHasOwn || o.hasOwnProperty(i)) { + + if (typeof val === 'function' || val === undefined) { + continue; + } + a.push(Ext.JSON.encodeValue(i), ":", Ext.JSON.encodeValue(val), ','); + + } + } + + a[a.length - 1] = '}'; + return a.join(""); + }; + + + me.encodeString = encodeString; + + + me.encodeValue = doEncode; + + + me.encodeDate = function(o) { + return '"' + o.getFullYear() + "-" + + pad(o.getMonth() + 1) + "-" + + pad(o.getDate()) + "T" + + pad(o.getHours()) + ":" + + pad(o.getMinutes()) + ":" + + pad(o.getSeconds()) + '"'; + }; + + + me.encode = function(o) { + if (!encodingFunction) { + + encodingFunction = isNative() ? JSON.stringify : me.encodeValue; + } + return encodingFunction(o); + }; + + + me.decode = function(json, safe) { + if (!decodingFunction) { + + decodingFunction = isNative() ? JSON.parse : doDecode; + } + try { + return decodingFunction(json); + } catch (e) { + if (safe === true) { + return null; + } + Ext.Error.raise({ + sourceClass: "Ext.JSON", + sourceMethod: "decode", + msg: "You're trying to decode an invalid JSON String: " + json + }); + } + }; +})()); + +Ext.encode = Ext.JSON.encode; + +Ext.decode = Ext.JSON.decode; + + + + + + +Ext.apply(Ext, { + userAgent: navigator.userAgent.toLowerCase(), + cache: {}, + idSeed: 1000, + windowId: 'ext-window', + documentId: 'ext-document', + + + isReady: false, + + + enableGarbageCollector: true, + + + enableListenerCollection: true, + + + rootHierarchyState: {}, + + addCacheEntry: function(id, el, dom) { + dom = dom || el.dom; + + + var cache = Ext.cache, + key = id || (el && el.id) || dom.id, + entry = cache[key] || (cache[key] = { + data: {}, + events: {}, + + dom: dom, + + + skipGarbageCollection: !!(dom.getElementById || dom.navigator) + }); + + if (el) { + el.$cache = entry; + + + entry.el = el; + } + + return entry; + }, + + updateCacheEntry: function(cacheItem, dom){ + cacheItem.dom = dom; + if (cacheItem.el) { + cacheItem.el.dom = dom; + } + return cacheItem; + }, + + + id: function(el, prefix) { + var me = this, + sandboxPrefix = ''; + el = Ext.getDom(el, true) || {}; + if (el === document) { + el.id = me.documentId; + } + else if (el === window) { + el.id = me.windowId; + } + if (!el.id) { + if (me.isSandboxed) { + sandboxPrefix = Ext.sandboxName.toLowerCase() + '-'; + } + el.id = sandboxPrefix + (prefix || "ext-gen") + (++Ext.idSeed); + } + return el.id; + }, + + escapeId: (function(){ + var validIdRe = /^[a-zA-Z_][a-zA-Z0-9_\-]*$/i, + escapeRx = /([\W]{1})/g, + leadingNumRx = /^(\d)/g, + escapeFn = function(match, capture){ + return "\\" + capture; + }, + numEscapeFn = function(match, capture){ + return '\\00' + capture.charCodeAt(0).toString(16) + ' '; + }; + + return function(id) { + return validIdRe.test(id) + ? id + + + : id.replace(escapeRx, escapeFn) + .replace(leadingNumRx, numEscapeFn); + }; + }()), + + + getBody: (function() { + var body; + return function() { + return body || (body = Ext.get(document.body)); + }; + }()), + + + getHead: (function() { + var head; + return function() { + return head || (head = Ext.get(document.getElementsByTagName("head")[0])); + }; + }()), + + + getDoc: (function() { + var doc; + return function() { + return doc || (doc = Ext.get(document)); + }; + }()), + + + getOrientation: function() { + return window.innerHeight > window.innerWidth ? 'portrait' : 'landscape'; + }, + + + destroy: function() { + var ln = arguments.length, + i, arg; + + for (i = 0; i < ln; i++) { + arg = arguments[i]; + if (arg) { + if (Ext.isArray(arg)) { + this.destroy.apply(this, arg); + } else if (arg.isStore) { + arg.destroyStore(); + } else if (Ext.isFunction(arg.destroy)) { + arg.destroy(); + } else if (arg.dom) { + arg.remove(); + } + } + } + }, + + + callback: function (callback, scope, args, delay) { + var fn, ret; + + if (Ext.isFunction(callback)){ + fn = callback; + } else if (scope && Ext.isString(callback)) { + fn = scope[callback]; + } + + if (fn) { + args = args || []; + scope = scope || window; + if (delay) { + Ext.defer(fn, delay, scope, args); + } else { + ret = fn.apply(scope, args); + } + } + + return ret; + }, + + + resolveMethod: function(fn, scope) { + if (Ext.isFunction(fn)) { + return fn; + } + + + return scope[fn]; + }, + + + htmlEncode : function(value) { + return Ext.String.htmlEncode(value); + }, + + + htmlDecode : function(value) { + return Ext.String.htmlDecode(value); + }, + + + urlAppend : function(url, s) { + return Ext.String.urlAppend(url, s); + } +}); + + +Ext.ns = Ext.namespace; + + +window.undefined = window.undefined; + + +(function(){ + + var check = function(regex){ + return regex.test(Ext.userAgent); + }, + isStrict = document.compatMode == "CSS1Compat", + version = function (is, regex) { + var m; + return (is && (m = regex.exec(Ext.userAgent))) ? parseFloat(m[1]) : 0; + }, + docMode = document.documentMode, + isOpera = check(/opera/), + isOpera10_5 = isOpera && check(/version\/10\.5/), + isChrome = check(/\bchrome\b/), + isWebKit = check(/webkit/), + isSafari = !isChrome && check(/safari/), + isSafari2 = isSafari && check(/applewebkit\/4/), + isSafari3 = isSafari && check(/version\/3/), + isSafari4 = isSafari && check(/version\/4/), + isSafari5_0 = isSafari && check(/version\/5\.0/), + isSafari5 = isSafari && check(/version\/5/), + isIE = !isOpera && check(/msie/), + isIE7 = isIE && ((check(/msie 7/) && docMode != 8 && docMode != 9 && docMode != 10) || docMode == 7), + isIE8 = isIE && ((check(/msie 8/) && docMode != 7 && docMode != 9 && docMode != 10) || docMode == 8), + isIE9 = isIE && ((check(/msie 9/) && docMode != 7 && docMode != 8 && docMode != 10) || docMode == 9), + isIE10 = isIE && ((check(/msie 10/) && docMode != 7 && docMode != 8 && docMode != 9) || docMode == 10), + isIE6 = isIE && check(/msie 6/), + isGecko = !isWebKit && check(/gecko/), + isGecko3 = isGecko && check(/rv:1\.9/), + isGecko4 = isGecko && check(/rv:2\.0/), + isGecko5 = isGecko && check(/rv:5\./), + isGecko10 = isGecko && check(/rv:10\./), + isFF3_0 = isGecko3 && check(/rv:1\.9\.0/), + isFF3_5 = isGecko3 && check(/rv:1\.9\.1/), + isFF3_6 = isGecko3 && check(/rv:1\.9\.2/), + isWindows = check(/windows|win32/), + isMac = check(/macintosh|mac os x/), + isLinux = check(/linux/), + scrollbarSize = null, + chromeVersion = version(true, /\bchrome\/(\d+\.\d+)/), + firefoxVersion = version(true, /\bfirefox\/(\d+\.\d+)/), + ieVersion = version(isIE, /msie (\d+\.\d+)/), + operaVersion = version(isOpera, /version\/(\d+\.\d+)/), + safariVersion = version(isSafari, /version\/(\d+\.\d+)/), + webKitVersion = version(isWebKit, /webkit\/(\d+\.\d+)/), + isSecure = /^https/i.test(window.location.protocol), + nullLog; + + + try { + document.execCommand("BackgroundImageCache", false, true); + } catch(e) {} + + + + nullLog = function () {}; + nullLog.info = nullLog.warn = nullLog.error = Ext.emptyFn; + + + Ext.setVersion('extjs', '4.2.1.883'); + Ext.apply(Ext, { + + SSL_SECURE_URL : isSecure && isIE ? 'javascript:\'\'' : 'about:blank', + + + + plainTableCls: Ext.buildSettings.baseCSSPrefix + 'table-plain', + + plainListCls: Ext.buildSettings.baseCSSPrefix + 'list-plain', + + + enableNestedListenerRemoval : false, + + + USE_NATIVE_JSON : false, + + + getDom : function(el, strict) { + if (!el || !document) { + return null; + } + if (el.dom) { + return el.dom; + } else { + if (typeof el == 'string') { + var e = Ext.getElementById(el); + + + if (e && isIE && strict) { + if (el == e.getAttribute('id')) { + return e; + } else { + return null; + } + } + return e; + } else { + return el; + } + } + }, + + + removeNode : isIE6 || isIE7 || isIE8 + ? (function() { + var d; + return function(n){ + if(n && n.tagName.toUpperCase() != 'BODY'){ + (Ext.enableNestedListenerRemoval) ? Ext.EventManager.purgeElement(n) : Ext.EventManager.removeAll(n); + + var cache = Ext.cache, + id = n.id; + + if (cache[id]) { + delete cache[id].dom; + delete cache[id]; + } + + if (isIE8 && n.parentNode) { + n.parentNode.removeChild(n); + } + d = d || document.createElement('div'); + d.appendChild(n); + d.innerHTML = ''; + } + }; + }()) + : function(n) { + if (n && n.parentNode && n.tagName.toUpperCase() != 'BODY') { + (Ext.enableNestedListenerRemoval) ? Ext.EventManager.purgeElement(n) : Ext.EventManager.removeAll(n); + + var cache = Ext.cache, + id = n.id; + + if (cache[id]) { + delete cache[id].dom; + delete cache[id]; + } + + n.parentNode.removeChild(n); + } + }, + + isStrict: isStrict, + + + isIEQuirks: isIE && (!isStrict && (isIE6 || isIE7 || isIE8 || isIE9)), + + + isOpera : isOpera, + + + isOpera10_5 : isOpera10_5, + + + isWebKit : isWebKit, + + + isChrome : isChrome, + + + isSafari : isSafari, + + + isSafari3 : isSafari3, + + + isSafari4 : isSafari4, + + + isSafari5 : isSafari5, + + + isSafari5_0 : isSafari5_0, + + + + isSafari2 : isSafari2, + + + isIE : isIE, + + + isIE6 : isIE6, + + + isIE7 : isIE7, + + + isIE7m : isIE6 || isIE7, + + + isIE7p : isIE && !isIE6, + + + isIE8 : isIE8, + + + isIE8m : isIE6 || isIE7 || isIE8, + + + isIE8p : isIE && !(isIE6 || isIE7), + + + isIE9 : isIE9, + + + isIE9m : isIE6 || isIE7 || isIE8 || isIE9, + + + isIE9p : isIE && !(isIE6 || isIE7 || isIE8), + + + isIE10 : isIE10, + + + isIE10m : isIE6 || isIE7 || isIE8 || isIE9 || isIE10, + + + isIE10p : isIE && !(isIE6 || isIE7 || isIE8 || isIE9), + + + isGecko : isGecko, + + + isGecko3 : isGecko3, + + + isGecko4 : isGecko4, + + + isGecko5 : isGecko5, + + + isGecko10 : isGecko10, + + + isFF3_0 : isFF3_0, + + + isFF3_5 : isFF3_5, + + + isFF3_6 : isFF3_6, + + + isFF4 : 4 <= firefoxVersion && firefoxVersion < 5, + + + isFF5 : 5 <= firefoxVersion && firefoxVersion < 6, + + + isFF10 : 10 <= firefoxVersion && firefoxVersion < 11, + + + isLinux : isLinux, + + + isWindows : isWindows, + + + isMac : isMac, + + + chromeVersion: chromeVersion, + + + firefoxVersion: firefoxVersion, + + + ieVersion: ieVersion, + + + operaVersion: operaVersion, + + + safariVersion: safariVersion, + + + webKitVersion: webKitVersion, + + + isSecure: isSecure, + + + BLANK_IMAGE_URL : (isIE6 || isIE7) ? '/' + '/www.sencha.com/s.gif' : 'data:image/gif;base64,R0lGODlhAQABAID/AMDAwAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==', + + + value : function(v, defaultValue, allowBlank){ + return Ext.isEmpty(v, allowBlank) ? defaultValue : v; + }, + + + escapeRe : function(s) { + return s.replace(/([-.*+?\^${}()|\[\]\/\\])/g, "\\$1"); + }, + + + addBehaviors : function(o){ + if(!Ext.isReady){ + Ext.onReady(function(){ + Ext.addBehaviors(o); + }); + } else { + var cache = {}, + parts, + b, + s; + for (b in o) { + if ((parts = b.split('@'))[1]) { + s = parts[0]; + if(!cache[s]){ + cache[s] = Ext.select(s); + } + cache[s].on(parts[1], o[b]); + } + } + cache = null; + } + }, + + + getScrollbarSize: function (force) { + if (!Ext.isReady) { + return {}; + } + + if (force || !scrollbarSize) { + var db = document.body, + div = document.createElement('div'); + + div.style.width = div.style.height = '100px'; + div.style.overflow = 'scroll'; + div.style.position = 'absolute'; + + db.appendChild(div); + + + scrollbarSize = { + width: div.offsetWidth - div.clientWidth, + height: div.offsetHeight - div.clientHeight + }; + + db.removeChild(div); + } + + return scrollbarSize; + }, + + + getScrollBarWidth: function(force){ + var size = Ext.getScrollbarSize(force); + return size.width + 2; + }, + + + copyTo : function(dest, source, names, usePrototypeKeys){ + if(typeof names == 'string'){ + names = names.split(/[,;\s]/); + } + + var n, + nLen = names? names.length : 0, + name; + + for(n = 0; n < nLen; n++) { + name = names[n]; + + if(usePrototypeKeys || source.hasOwnProperty(name)){ + dest[name] = source[name]; + } + } + + return dest; + }, + + + destroyMembers : function(o){ + for (var i = 1, a = arguments, len = a.length; i < len; i++) { + Ext.destroy(o[a[i]]); + delete o[a[i]]; + } + }, + + + log : + nullLog, + + + partition : function(arr, truth){ + var ret = [[],[]], + a, v, + aLen = arr.length; + + for (a = 0; a < aLen; a++) { + v = arr[a]; + ret[ (truth && truth(v, a, arr)) || (!truth && v) ? 0 : 1].push(v); + } + + return ret; + }, + + + invoke : function(arr, methodName){ + var ret = [], + args = Array.prototype.slice.call(arguments, 2), + a, v, + aLen = arr.length; + + for (a = 0; a < aLen; a++) { + v = arr[a]; + + if (v && typeof v[methodName] == 'function') { + ret.push(v[methodName].apply(v, args)); + } else { + ret.push(undefined); + } + } + + return ret; + }, + + + zip : function(){ + var parts = Ext.partition(arguments, function( val ){ return typeof val != 'function'; }), + arrs = parts[0], + fn = parts[1][0], + len = Ext.max(Ext.pluck(arrs, "length")), + ret = [], + i, + j, + aLen; + + for (i = 0; i < len; i++) { + ret[i] = []; + if(fn){ + ret[i] = fn.apply(fn, Ext.pluck(arrs, i)); + }else{ + for (j = 0, aLen = arrs.length; j < aLen; j++){ + ret[i].push( arrs[j][i] ); + } + } + } + return ret; + }, + + + toSentence: function(items, connector) { + var length = items.length, + head, + tail; + + if (length <= 1) { + return items[0]; + } else { + head = items.slice(0, length - 1); + tail = items[length - 1]; + + return Ext.util.Format.format("{0} {1} {2}", head.join(", "), connector || 'and', tail); + } + }, + + + setGlyphFontFamily: function(fontFamily) { + Ext._glyphFontFamily = fontFamily; + }, + + + useShims: isIE6 + }); +}()); + + +Ext.application = function(config) { + var App, paths, ns; + + if (typeof config === "string") { + Ext.require(config, function(){ + App = Ext.ClassManager.get(config); + }); + } + else { + + + Ext.Loader.setPath(config.name, config.appFolder || 'app'); + + if (paths = config.paths) { + for (ns in paths) { + if (paths.hasOwnProperty(ns)) { + Ext.Loader.setPath(ns, paths[ns]); + } + } + } + + config['paths processed'] = true; + + + + Ext.define(config.name + ".$application", Ext.apply({ + extend: 'Ext.app.Application' + }, config), + + function () { + App = this; + }); + } + + Ext.onReady(function() { + + + Ext.app.Application.instance = new App(); + }); +}; + + + + + + +(function() { + Ext.ns('Ext.util'); + + var UtilFormat = Ext.util.Format = {}, + stripTagsRE = /<\/?[^>]+>/gi, + stripScriptsRe = /(?:)((\n|\r|.)*?)(?:<\/script>)/ig, + nl2brRe = /\r?\n/g, + allHashes = /^#+$/, + + + formatPattern = /[\d,\.#]+/, + + + formatCleanRe = /[^\d\.#]/g, + + + + I18NFormatCleanRe, + + + formatFns = {}; + + Ext.apply(UtilFormat, { + + + thousandSeparator: ',', + + + + + decimalSeparator: '.', + + + + + currencyPrecision: 2, + + + + + currencySign: '$', + + + + + currencyAtEnd: false, + + + + undef : function(value) { + return value !== undefined ? value : ""; + }, + + + defaultValue : function(value, defaultValue) { + return value !== undefined && value !== '' ? value : defaultValue; + }, + + + substr : 'ab'.substr(-1) != 'b' + ? function (value, start, length) { + var str = String(value); + return (start < 0) + ? str.substr(Math.max(str.length + start, 0), length) + : str.substr(start, length); + } + : function(value, start, length) { + return String(value).substr(start, length); + }, + + + lowercase : function(value) { + return String(value).toLowerCase(); + }, + + + uppercase : function(value) { + return String(value).toUpperCase(); + }, + + + usMoney : function(v) { + return UtilFormat.currency(v, '$', 2); + }, + + + currency: function(v, currencySign, decimals, end) { + var negativeSign = '', + format = ",0", + i = 0; + v = v - 0; + if (v < 0) { + v = -v; + negativeSign = '-'; + } + decimals = Ext.isDefined(decimals) ? decimals : UtilFormat.currencyPrecision; + format += (decimals > 0 ? '.' : ''); + for (; i < decimals; i++) { + format += '0'; + } + v = UtilFormat.number(v, format); + if ((end || UtilFormat.currencyAtEnd) === true) { + return Ext.String.format("{0}{1}{2}", negativeSign, v, currencySign || UtilFormat.currencySign); + } else { + return Ext.String.format("{0}{1}{2}", negativeSign, currencySign || UtilFormat.currencySign, v); + } + }, + + + date: function(v, format) { + if (!v) { + return ""; + } + if (!Ext.isDate(v)) { + v = new Date(Date.parse(v)); + } + return Ext.Date.dateFormat(v, format || Ext.Date.defaultFormat); + }, + + + dateRenderer : function(format) { + return function(v) { + return UtilFormat.date(v, format); + }; + }, + + + stripTags : function(v) { + return !v ? v : String(v).replace(stripTagsRE, ""); + }, + + + stripScripts : function(v) { + return !v ? v : String(v).replace(stripScriptsRe, ""); + }, + + + fileSize : (function(){ + var byteLimit = 1024, + kbLimit = 1048576, + mbLimit = 1073741824; + + return function(size) { + var out; + if (size < byteLimit) { + if (size === 1) { + out = '1 byte'; + } else { + out = size + ' bytes'; + } + } else if (size < kbLimit) { + out = (Math.round(((size*10) / byteLimit))/10) + ' KB'; + } else if (size < mbLimit) { + out = (Math.round(((size*10) / kbLimit))/10) + ' MB'; + } else { + out = (Math.round(((size*10) / mbLimit))/10) + ' GB'; + } + return out; + }; + })(), + + + math : (function(){ + var fns = {}; + + return function(v, a){ + if (!fns[a]) { + fns[a] = Ext.functionFactory('v', 'return v ' + a + ';'); + } + return fns[a](v); + }; + }()), + + + round : function(value, precision) { + var result = Number(value); + if (typeof precision == 'number') { + precision = Math.pow(10, precision); + result = Math.round(value * precision) / precision; + } + return result; + }, + + + number : function(v, formatString) { + if (!formatString) { + return v; + } + var formatFn = formatFns[formatString]; + + + + if (!formatFn) { + + var originalFormatString = formatString, + comma = UtilFormat.thousandSeparator, + decimalSeparator = UtilFormat.decimalSeparator, + hasComma, + splitFormat, + extraChars, + precision = 0, + multiplier, + trimTrailingZeroes, + code; + + + + + + if (formatString.substr(formatString.length - 2) == '/i') { + if (!I18NFormatCleanRe) { + I18NFormatCleanRe = new RegExp('[^\\d\\' + UtilFormat.decimalSeparator + ']','g'); + } + formatString = formatString.substr(0, formatString.length - 2); + hasComma = formatString.indexOf(comma) != -1; + splitFormat = formatString.replace(I18NFormatCleanRe, '').split(decimalSeparator); + } else { + hasComma = formatString.indexOf(',') != -1; + splitFormat = formatString.replace(formatCleanRe, '').split('.'); + } + extraChars = formatString.replace(formatPattern, ''); + + if (splitFormat.length > 2) { + } else if (splitFormat.length === 2) { + precision = splitFormat[1].length; + + + trimTrailingZeroes = allHashes.test(splitFormat[1]); + } + + + code = [ + 'var utilFormat=Ext.util.Format,extNumber=Ext.Number,neg,fnum,parts' + + (hasComma ? ',thousandSeparator,thousands=[],j,n,i' : '') + + (extraChars ? ',formatString="' + formatString + '",formatPattern=/[\\d,\\.#]+/' : '') + + (trimTrailingZeroes ? ',trailingZeroes=/\\.?0+$/;' : ';') + + 'return function(v){' + + 'if(typeof v!=="number"&&isNaN(v=extNumber.from(v,NaN)))return"";' + + 'neg=v<0;', + 'fnum=Ext.Number.toFixed(Math.abs(v), ' + precision + ');' + ]; + + if (hasComma) { + + + + if (precision) { + code[code.length] = 'parts=fnum.split(".");'; + code[code.length] = 'fnum=parts[0];'; + } + code[code.length] = + 'if(v>=1000) {'; + code[code.length] = 'thousandSeparator=utilFormat.thousandSeparator;' + + 'thousands.length=0;' + + 'j=fnum.length;' + + 'n=fnum.length%3||3;' + + 'for(i=0;i'); + }, + + + capitalize: Ext.String.capitalize, + + + ellipsis: Ext.String.ellipsis, + + + format: Ext.String.format, + + + htmlDecode: Ext.String.htmlDecode, + + + htmlEncode: Ext.String.htmlEncode, + + + leftPad: Ext.String.leftPad, + + + trim : Ext.String.trim, + + + parseBox : function(box) { + box = box || 0; + + if (typeof box === 'number') { + return { + top : box, + right : box, + bottom: box, + left : box + }; + } + + var parts = box.split(' '), + ln = parts.length; + + if (ln == 1) { + parts[1] = parts[2] = parts[3] = parts[0]; + } + else if (ln == 2) { + parts[2] = parts[0]; + parts[3] = parts[1]; + } + else if (ln == 3) { + parts[3] = parts[1]; + } + + return { + top :parseInt(parts[0], 10) || 0, + right :parseInt(parts[1], 10) || 0, + bottom:parseInt(parts[2], 10) || 0, + left :parseInt(parts[3], 10) || 0 + }; + }, + + + escapeRegex : function(s) { + return s.replace(/([\-.*+?\^${}()|\[\]\/\\])/g, "\\$1"); + } + }); +}()); + + + + + +Ext.define('Ext.util.TaskRunner', { + + + + interval: 10, + + + timerId: null, + + constructor: function (interval) { + var me = this; + + if (typeof interval == 'number') { + me.interval = interval; + } else if (interval) { + Ext.apply(me, interval); + } + + me.tasks = []; + me.timerFn = Ext.Function.bind(me.onTick, me); + }, + + + newTask: function (config) { + var task = new Ext.util.TaskRunner.Task(config); + task.manager = this; + return task; + }, + + + start: function(task) { + var me = this, + now = Ext.Date.now(); + + if (!task.pending) { + me.tasks.push(task); + task.pending = true; + } + + task.stopped = false; + task.taskStartTime = now; + task.taskRunTime = task.fireOnStart !== false ? 0 : task.taskStartTime; + task.taskRunCount = 0; + + if (!me.firing) { + if (task.fireOnStart !== false) { + me.startTimer(0, now); + } else { + me.startTimer(task.interval, now); + } + } + + return task; + }, + + + stop: function(task) { + + + + if (!task.stopped) { + task.stopped = true; + + if (task.onStop) { + task.onStop.call(task.scope || task, task); + } + } + + return task; + }, + + + stopAll: function() { + + Ext.each(this.tasks, this.stop, this); + }, + + + + firing: false, + + nextExpires: 1e99, + + + onTick: function () { + var me = this, + tasks = me.tasks, + now = Ext.Date.now(), + nextExpires = 1e99, + len = tasks.length, + expires, newTasks, i, task, rt, remove; + + me.timerId = null; + me.firing = true; + + + + + + for (i = 0; i < len || i < (len = tasks.length); ++i) { + task = tasks[i]; + + if (!(remove = task.stopped)) { + expires = task.taskRunTime + task.interval; + + if (expires <= now) { + rt = 1; + try { + rt = task.run.apply(task.scope || task, task.args || [++task.taskRunCount]); + } catch (taskError) { + try { + if (task.onError) { + rt = task.onError.call(task.scope || task, task, taskError); + } + } catch (ignore) { } + } + task.taskRunTime = now; + if (rt === false || task.taskRunCount === task.repeat) { + me.stop(task); + remove = true; + } else { + remove = task.stopped; + expires = now + task.interval; + } + } + + if (!remove && task.duration && task.duration <= (now - task.taskStartTime)) { + me.stop(task); + remove = true; + } + } + + if (remove) { + task.pending = false; + + + + + + + if (!newTasks) { + newTasks = tasks.slice(0, i); + + + + } + } else { + if (newTasks) { + newTasks.push(task); + } + + if (nextExpires > expires) { + nextExpires = expires; + } + } + } + + if (newTasks) { + + + me.tasks = newTasks; + } + + me.firing = false; + + if (me.tasks.length) { + + + + me.startTimer(nextExpires - now, Ext.Date.now()); + } + + + if (me.fireIdleEvent !== false) { + Ext.EventManager.idleEvent.fire(); + } + }, + + + startTimer: function (timeout, now) { + var me = this, + expires = now + timeout, + timerId = me.timerId; + + + + if (timerId && me.nextExpires - expires > me.interval) { + clearTimeout(timerId); + timerId = null; + } + + if (!timerId) { + if (timeout < me.interval) { + timeout = me.interval; + } + + me.timerId = setTimeout(me.timerFn, timeout); + me.nextExpires = expires; + } + } +}, +function () { + var me = this, + proto = me.prototype; + + + proto.destroy = proto.stopAll; + + + Ext.util.TaskManager = Ext.TaskManager = new me(); + + + me.Task = new Ext.Class({ + isTask: true, + + + stopped: true, + + + fireOnStart: false, + + constructor: function (config) { + Ext.apply(this, config); + }, + + + restart: function (interval) { + if (interval !== undefined) { + this.interval = interval; + } + + this.manager.start(this); + }, + + + start: function (interval) { + if (this.stopped) { + this.restart(interval); + } + }, + + + stop: function () { + this.manager.stop(this); + } + }); + + proto = me.Task.prototype; + + + proto.destroy = proto.stop; +}); + + + + + + + + + + + + +Ext.define('Ext.util.TaskManager', { + extend: Ext.util.TaskRunner , + + alternateClassName: [ + 'Ext.TaskManager' + ], + + singleton: true +}); + + + + + +Ext.define('Ext.perf.Accumulator', (function () { + var currentFrame = null, + khrome = Ext.global['chrome'], + formatTpl, + + + getTimestamp = function () { + + getTimestamp = function () { + return new Date().getTime(); + }; + + var interval, toolbox; + + + if (Ext.isChrome && khrome && khrome.Interval) { + interval = new khrome.Interval(); + interval.start(); + getTimestamp = function () { + return interval.microseconds() / 1000; + }; + } else if (window.ActiveXObject) { + try { + + toolbox = new ActiveXObject('SenchaToolbox.Toolbox'); + Ext.senchaToolbox = toolbox; + getTimestamp = function () { + return toolbox.milliseconds; + }; + } catch (e) { + + } + } else if (Date.now) { + getTimestamp = Date.now; + } + + Ext.perf.getTimestamp = Ext.perf.Accumulator.getTimestamp = getTimestamp; + return getTimestamp(); + }; + + function adjustSet (set, time) { + set.sum += time; + set.min = Math.min(set.min, time); + set.max = Math.max(set.max, time); + } + + function leaveFrame (time) { + var totalTime = time ? time : (getTimestamp() - this.time), + me = this, + accum = me.accum; + + ++accum.count; + if (! --accum.depth) { + adjustSet(accum.total, totalTime); + } + adjustSet(accum.pure, totalTime - me.childTime); + + currentFrame = me.parent; + if (currentFrame) { + ++currentFrame.accum.childCount; + currentFrame.childTime += totalTime; + } + } + + function makeSet () { + return { + min: Number.MAX_VALUE, + max: 0, + sum: 0 + }; + } + + function makeTap (me, fn) { + return function () { + var frame = me.enter(), + ret = fn.apply(this, arguments); + + frame.leave(); + return ret; + }; + } + + function round (x) { + return Math.round(x * 100) / 100; + } + + function setToJSON (count, childCount, calibration, set) { + var data = { + avg: 0, + min: set.min, + max: set.max, + sum: 0 + }; + + if (count) { + calibration = calibration || 0; + data.sum = set.sum - childCount * calibration; + data.avg = data.sum / count; + + + } + + return data; + } + + return { + constructor: function (name) { + var me = this; + + me.count = me.childCount = me.depth = me.maxDepth = 0; + me.pure = makeSet(); + me.total = makeSet(); + me.name = name; + }, + + statics: { + getTimestamp: getTimestamp + }, + + format: function (calibration) { + if (!formatTpl) { + formatTpl = new Ext.XTemplate([ + '{name} - {count} call(s)', + '', + '', + ' ({childCount} children)', + '', + '', + ' ({depth} deep)', + '', + '', + ', {type}: {[this.time(values.sum)]} msec (', + + 'avg={[this.time(values.sum / parent.count)]}', + + ')', + '', + '' + ].join(''), { + time: function (t) { + return Math.round(t * 100) / 100; + } + }); + } + + var data = this.getData(calibration); + data.name = this.name; + data.pure.type = 'Pure'; + data.total.type = 'Total'; + data.times = [data.pure, data.total]; + return formatTpl.apply(data); + }, + + getData: function (calibration) { + var me = this; + + return { + count: me.count, + childCount: me.childCount, + depth: me.maxDepth, + pure: setToJSON(me.count, me.childCount, calibration, me.pure), + total: setToJSON(me.count, me.childCount, calibration, me.total) + }; + }, + + enter: function () { + var me = this, + frame = { + accum: me, + leave: leaveFrame, + childTime: 0, + parent: currentFrame + }; + + ++me.depth; + if (me.maxDepth < me.depth) { + me.maxDepth = me.depth; + } + + currentFrame = frame; + frame.time = getTimestamp(); + return frame; + }, + + monitor: function (fn, scope, args) { + var frame = this.enter(); + if (args) { + fn.apply(scope, args); + } else { + fn.call(scope); + } + frame.leave(); + }, + + report: function () { + Ext.log(this.format()); + }, + + tap: function (className, methodName) { + var me = this, + methods = typeof methodName == 'string' ? [methodName] : methodName, + klass, statik, i, parts, length, name, src, + tapFunc; + + tapFunc = function(){ + if (typeof className == 'string') { + klass = Ext.global; + parts = className.split('.'); + for (i = 0, length = parts.length; i < length; ++i) { + klass = klass[parts[i]]; + } + } else { + klass = className; + } + + for (i = 0, length = methods.length; i < length; ++i) { + name = methods[i]; + statik = name.charAt(0) == '!'; + + if (statik) { + name = name.substring(1); + } else { + statik = !(name in klass.prototype); + } + + src = statik ? klass : klass.prototype; + src[name] = makeTap(me, src[name]); + } + }; + + Ext.ClassManager.onCreated(tapFunc, me, className); + + return me; + } + }; +}()), + +function () { + Ext.perf.getTimestamp = this.getTimestamp; +}); + + + + + +Ext.define('Ext.perf.Monitor', { + singleton: true, + alternateClassName: 'Ext.Perf', + + + + + + constructor: function () { + this.accumulators = []; + this.accumulatorsByName = {}; + }, + + calibrate: function () { + var accum = new Ext.perf.Accumulator('$'), + total = accum.total, + getTimestamp = Ext.perf.Accumulator.getTimestamp, + count = 0, + frame, + endTime, + startTime; + + startTime = getTimestamp(); + + do { + frame = accum.enter(); + frame.leave(); + ++count; + } while (total.sum < 100); + + endTime = getTimestamp(); + + return (endTime - startTime) / count; + }, + + get: function (name) { + var me = this, + accum = me.accumulatorsByName[name]; + + if (!accum) { + me.accumulatorsByName[name] = accum = new Ext.perf.Accumulator(name); + me.accumulators.push(accum); + } + + return accum; + }, + + enter: function (name) { + return this.get(name).enter(); + }, + + monitor: function (name, fn, scope) { + this.get(name).monitor(fn, scope); + }, + + report: function () { + var me = this, + accumulators = me.accumulators, + calibration = me.calibrate(); + + accumulators.sort(function (a, b) { + return (a.name < b.name) ? -1 : ((b.name < a.name) ? 1 : 0); + }); + + me.updateGC(); + + Ext.log('Calibration: ' + Math.round(calibration * 100) / 100 + ' msec/sample'); + Ext.each(accumulators, function (accum) { + Ext.log(accum.format(calibration)); + }); + }, + + getData: function (all) { + var ret = {}, + accumulators = this.accumulators; + + Ext.each(accumulators, function (accum) { + if (all || accum.count) { + ret[accum.name] = accum.getData(); + } + }); + + return ret; + }, + + reset: function(){ + Ext.each(this.accumulators, function(accum){ + var me = accum; + me.count = me.childCount = me.depth = me.maxDepth = 0; + me.pure = { + min: Number.MAX_VALUE, + max: 0, + sum: 0 + }; + me.total = { + min: Number.MAX_VALUE, + max: 0, + sum: 0 + }; + }); + }, + + updateGC: function () { + var accumGC = this.accumulatorsByName.GC, + toolbox = Ext.senchaToolbox, + bucket; + + if (accumGC) { + accumGC.count = toolbox.garbageCollectionCounter || 0; + + if (accumGC.count) { + bucket = accumGC.pure; + accumGC.total.sum = bucket.sum = toolbox.garbageCollectionMilliseconds; + bucket.min = bucket.max = bucket.sum / accumGC.count; + bucket = accumGC.total; + bucket.min = bucket.max = bucket.sum / accumGC.count; + } + } + }, + + watchGC: function () { + Ext.perf.getTimestamp(); + + var toolbox = Ext.senchaToolbox; + + if (toolbox) { + this.get("GC"); + toolbox.watchGarbageCollector(false); + } + }, + + setup: function (config) { + if (!config) { + config = { + + + + + + + + + render: { + 'Ext.AbstractComponent': 'render' + }, + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + layout: { + 'Ext.layout.Context': 'run' + } + }; + } + + this.currentConfig = config; + + var key, prop, + accum, className, methods; + for (key in config) { + if (config.hasOwnProperty(key)) { + prop = config[key]; + accum = Ext.Perf.get(key); + + for (className in prop) { + if (prop.hasOwnProperty(className)) { + methods = prop[className]; + accum.tap(className, methods); + } + } + } + } + + this.watchGC(); + } +}); + + + + + + +Ext.is = { + init : function(navigator) { + var platforms = this.platforms, + ln = platforms.length, + i, platform; + + navigator = navigator || window.navigator; + + for (i = 0; i < ln; i++) { + platform = platforms[i]; + this[platform.identity] = platform.regex.test(navigator[platform.property]); + } + + + this.Desktop = this.Mac || this.Windows || (this.Linux && !this.Android); + + this.Tablet = this.iPad; + + this.Phone = !this.Desktop && !this.Tablet; + + this.iOS = this.iPhone || this.iPad || this.iPod; + + + this.Standalone = !!window.navigator.standalone; + }, + + + platforms: [{ + property: 'platform', + regex: /iPhone/i, + identity: 'iPhone' + }, + + + { + property: 'platform', + regex: /iPod/i, + identity: 'iPod' + }, + + + { + property: 'userAgent', + regex: /iPad/i, + identity: 'iPad' + }, + + + { + property: 'userAgent', + regex: /Blackberry/i, + identity: 'Blackberry' + }, + + + { + property: 'userAgent', + regex: /Android/i, + identity: 'Android' + }, + + + { + property: 'platform', + regex: /Mac/i, + identity: 'Mac' + }, + + + { + property: 'platform', + regex: /Win/i, + identity: 'Windows' + }, + + + { + property: 'platform', + regex: /Linux/i, + identity: 'Linux' + }] +}; + +Ext.is.init(); + + +(function(){ + + + + + var getStyle = function(element, styleName){ + var view = element.ownerDocument.defaultView, + style = (view ? view.getComputedStyle(element, null) : element.currentStyle) || element.style; + return style[styleName]; + }, + supportsVectors = { + 'IE6-quirks': [0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0], + 'IE6-strict': [0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,1,1,0,0,1,0,1,0,0,0], + 'IE7-quirks': [0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0], + 'IE7-strict': [0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,1,0,0,1,0,1,0,0,0], + 'IE8-quirks': [0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0], + 'IE8-strict': [0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,1,0,0,1,0,1,0,0,1], + 'IE9-quirks': [0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0], + 'IE9-strict': [0,1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,0,1], + 'IE10-quirks': [1,1,0,0,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1], + 'IE10-strict': [1,1,0,0,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1] + }; + +function getBrowserKey() { + var browser = Ext.isIE6 ? 'IE6' : Ext.isIE7 ? 'IE7' : Ext.isIE8 ? 'IE8' : + Ext.isIE9 ? 'IE9': Ext.isIE10 ? 'IE10' : ''; + + return browser ? browser + (Ext.isStrict ? '-strict' : '-quirks') : ''; +} + +Ext.supports = { + + init : function() { + var me = this, + doc = document, + toRun = me.toRun || me.tests, + n = toRun.length, + div = n && Ext.isReady && doc.createElement('div'), + notRun = [], + browserKey = getBrowserKey(), + test, vector, value; + + if (div) { + div.innerHTML = [ + '
', + '
', + '
', + '
', + '
', + '
', + '
', + '
' + ].join(''); + + doc.body.appendChild(div); + } + + vector = supportsVectors[browserKey]; + while (n--) { + test = toRun[n]; + value = vector && vector[n]; + if (value !== undefined) { + me[test.identity] = value; + } else if (div || test.early) { + me[test.identity] = test.fn.call(me, doc, div); + } else { + notRun.push(test); + } + } + + if (div) { + doc.body.removeChild(div); + } + + me.toRun = notRun; + }, + + + + PointerEvents: 'pointerEvents' in document.documentElement.style, + + + + + LocalStorage: (function() { + try { + return 'localStorage' in window && window['localStorage'] !== null; + } catch (e) { + return false; + } + })(), + + + CSS3BoxShadow: 'boxShadow' in document.documentElement.style || 'WebkitBoxShadow' in document.documentElement.style || 'MozBoxShadow' in document.documentElement.style, + + + ClassList: !!document.documentElement.classList, + + + OrientationChange: ((typeof window.orientation != 'undefined') && ('onorientationchange' in window)), + + + DeviceMotion: ('ondevicemotion' in window), + + + + + Touch: ('ontouchstart' in window) && (!Ext.is.Desktop), + + + TimeoutActualLateness: (function(){ + setTimeout(function(){ + Ext.supports.TimeoutActualLateness = arguments.length !== 0; + }, 0); + }()), + + tests: [ + + { + identity: 'Transitions', + fn: function(doc, div) { + var prefix = [ + 'webkit', + 'Moz', + 'o', + 'ms', + 'khtml' + ], + TE = 'TransitionEnd', + transitionEndName = [ + prefix[0] + TE, + 'transitionend', + prefix[2] + TE, + prefix[3] + TE, + prefix[4] + TE + ], + ln = prefix.length, + i = 0, + out = false; + + for (; i < ln; i++) { + if (getStyle(div, prefix[i] + "TransitionProperty")) { + Ext.supports.CSS3Prefix = prefix[i]; + Ext.supports.CSS3TransitionEnd = transitionEndName[i]; + out = true; + break; + } + } + return out; + } + }, + + + { + identity: 'RightMargin', + fn: function(doc, div) { + var view = doc.defaultView; + return !(view && view.getComputedStyle(div.firstChild.firstChild, null).marginRight != '0px'); + } + }, + + + { + identity: 'DisplayChangeInputSelectionBug', + early: true, + fn: function() { + var webKitVersion = Ext.webKitVersion; + + return 0 < webKitVersion && webKitVersion < 533; + } + }, + + + { + identity: 'DisplayChangeTextAreaSelectionBug', + early: true, + fn: function() { + var webKitVersion = Ext.webKitVersion; + + + return 0 < webKitVersion && webKitVersion < 534.24; + } + }, + + + { + identity: 'TransparentColor', + fn: function(doc, div, view) { + view = doc.defaultView; + return !(view && view.getComputedStyle(div.lastChild, null).backgroundColor != 'transparent'); + } + }, + + + { + identity: 'ComputedStyle', + fn: function(doc, div, view) { + view = doc.defaultView; + return view && view.getComputedStyle; + } + }, + + + { + identity: 'Svg', + fn: function(doc) { + return !!doc.createElementNS && !!doc.createElementNS( "http:/" + "/www.w3.org/2000/svg", "svg").createSVGRect; + } + }, + + + { + identity: 'Canvas', + fn: function(doc) { + return !!doc.createElement('canvas').getContext; + } + }, + + + { + identity: 'Vml', + fn: function(doc) { + var d = doc.createElement("div"); + d.innerHTML = ""; + return (d.childNodes.length == 2); + } + }, + + + { + identity: 'Float', + fn: function(doc, div) { + return !!div.lastChild.style.cssFloat; + } + }, + + + { + identity: 'AudioTag', + fn: function(doc) { + return !!doc.createElement('audio').canPlayType; + } + }, + + + { + identity: 'History', + fn: function() { + var history = window.history; + return !!(history && history.pushState); + } + }, + + + { + identity: 'CSS3DTransform', + fn: function() { + return (typeof WebKitCSSMatrix != 'undefined' && new WebKitCSSMatrix().hasOwnProperty('m41')); + } + }, + + + { + identity: 'CSS3LinearGradient', + fn: function(doc, div) { + var property = 'background-image:', + webkit = '-webkit-gradient(linear, left top, right bottom, from(black), to(white))', + w3c = 'linear-gradient(left top, black, white)', + moz = '-moz-' + w3c, + ms = '-ms-' + w3c, + opera = '-o-' + w3c, + options = [property + webkit, property + w3c, property + moz, property + ms, property + opera]; + + div.style.cssText = options.join(';'); + + return (("" + div.style.backgroundImage).indexOf('gradient') !== -1) && !Ext.isIE9; + } + }, + + + { + identity: 'CSS3BorderRadius', + fn: function(doc, div) { + var domPrefixes = ['borderRadius', 'BorderRadius', 'MozBorderRadius', 'WebkitBorderRadius', 'OBorderRadius', 'KhtmlBorderRadius'], + pass = false, + i; + for (i = 0; i < domPrefixes.length; i++) { + if (document.body.style[domPrefixes[i]] !== undefined) { + return true; + } + } + return pass; + } + }, + + + { + identity: 'GeoLocation', + fn: function() { + + return (typeof navigator != 'undefined' && 'geolocation' in navigator) || (typeof google != 'undefined' && typeof google.gears != 'undefined'); + } + }, + + { + identity: 'MouseEnterLeave', + fn: function(doc, div){ + return ('onmouseenter' in div && 'onmouseleave' in div); + } + }, + + { + identity: 'MouseWheel', + fn: function(doc, div) { + return ('onmousewheel' in div); + } + }, + + { + identity: 'Opacity', + fn: function(doc, div){ + + if (Ext.isIE6 || Ext.isIE7 || Ext.isIE8) { + return false; + } + div.firstChild.style.cssText = 'opacity:0.73'; + return div.firstChild.style.opacity == '0.73'; + } + }, + + { + identity: 'Placeholder', + fn: function(doc) { + return 'placeholder' in doc.createElement('input'); + } + }, + + + { + identity: 'Direct2DBug', + fn: function() { + return Ext.isString(document.body.style.msTransformOrigin) && Ext.isIE10m; + } + }, + + { + identity: 'BoundingClientRect', + fn: function(doc, div) { + return Ext.isFunction(div.getBoundingClientRect); + } + }, + + { + identity: 'RotatedBoundingClientRect', + fn: function() { + var body = document.body, + supports = false, + el = document.createElement('div'), + style = el.style; + + if (el.getBoundingClientRect) { + style.WebkitTransform = style.MozTransform = + style.OTransform = style.transform = 'rotate(90deg)'; + style.width = '100px'; + style.height = '30px'; + body.appendChild(el) + + supports = el.getBoundingClientRect().height !== 100; + body.removeChild(el); + } + + return supports; + } + }, + { + identity: 'IncludePaddingInWidthCalculation', + fn: function(doc, div){ + return div.childNodes[1].firstChild.offsetWidth == 210; + } + }, + { + identity: 'IncludePaddingInHeightCalculation', + fn: function(doc, div){ + return div.childNodes[1].firstChild.offsetHeight == 210; + } + }, + + + { + identity: 'ArraySort', + fn: function() { + var a = [1,2,3,4,5].sort(function(){ return 0; }); + return a[0] === 1 && a[1] === 2 && a[2] === 3 && a[3] === 4 && a[4] === 5; + } + }, + + { + identity: 'Range', + fn: function() { + return !!document.createRange; + } + }, + + { + identity: 'CreateContextualFragment', + fn: function() { + var range = Ext.supports.Range ? document.createRange() : false; + + return range && !!range.createContextualFragment; + } + }, + + + { + identity: 'WindowOnError', + fn: function () { + + return Ext.isIE || Ext.isGecko || Ext.webKitVersion >= 534.16; + } + }, + + + { + identity: 'TextAreaMaxLength', + fn: function(){ + var el = document.createElement('textarea'); + return ('maxlength' in el); + } + }, + + + { + identity: 'GetPositionPercentage', + fn: function(doc, div){ + return getStyle(div.childNodes[2], 'left') == '10%'; + } + }, + + { + identity: 'PercentageHeightOverflowBug', + fn: function(doc) { + var hasBug = false, + style, el; + + if (Ext.getScrollbarSize().height) { + + el = doc.createElement('div'); + style = el.style; + style.height = '50px'; + style.width = '50px'; + style.overflow = 'auto'; + style.position = 'absolute'; + + el.innerHTML = [ + '
', + + + + '
', + '
' + ].join(''); + doc.body.appendChild(el); + if (el.firstChild.offsetHeight === 50) { + hasBug = true; + } + doc.body.removeChild(el); + } + + return hasBug; + } + }, + + { + identity: 'xOriginBug', + fn: function(doc, div) { + div.innerHTML = '
' + + '
' + + '
' + + '
'; + + var outerBox = document.getElementById('b1').getBoundingClientRect(), + b2 = document.getElementById('b2').getBoundingClientRect(), + b3 = document.getElementById('b3').getBoundingClientRect(); + + return (b2.left !== outerBox.left && b3.right !== outerBox.right); + } + }, + + + { + identity: 'ScrollWidthInlinePaddingBug', + fn: function(doc) { + var hasBug = false, + style, el; + + el = doc.createElement('div'); + style = el.style; + style.height = '50px'; + style.width = '50px'; + style.padding = '10px'; + style.overflow = 'hidden'; + style.position = 'absolute'; + + el.innerHTML = + ''; + doc.body.appendChild(el); + if (el.scrollWidth === 70) { + hasBug = true; + } + doc.body.removeChild(el); + + return hasBug; + } + } + ] +}; +}()); + +Ext.supports.init(); + + + + + + +Ext.util.DelayedTask = function(fn, scope, args, cancelOnDelay) { + var me = this, + delay, + call = function() { + clearInterval(me.id); + me.id = null; + fn.apply(scope, args || []); + Ext.EventManager.idleEvent.fire(); + }; + + cancelOnDelay = typeof cancelOnDelay === 'boolean' ? cancelOnDelay : true; + + + me.id = null; + + + me.delay = function(newDelay, newFn, newScope, newArgs) { + if (cancelOnDelay) { + me.cancel(); + } + delay = newDelay || delay, + fn = newFn || fn; + scope = newScope || scope; + args = newArgs || args; + if (!me.id) { + me.id = setInterval(call, delay); + } + }; + + + me.cancel = function() { + if (me.id) { + clearInterval(me.id); + me.id = null; + } + }; +}; + + + +Ext.define('Ext.util.Event', function() { + var arraySlice = Array.prototype.slice, + arrayInsert = Ext.Array.insert, + toArray = Ext.Array.toArray, + DelayedTask = Ext.util.DelayedTask; + + return { + + + + isEvent: true, + + + suspended: 0, + + noOptions: {}, + + constructor: function(observable, name) { + this.name = name; + this.observable = observable; + this.listeners = []; + }, + + addListener: function(fn, scope, options) { + var me = this, + listeners, listener, priority, isNegativePriority, highestNegativePriorityIndex, + hasNegativePriorityIndex, length, index, i, listenerPriority; + + scope = scope || me.observable; + + + if (!me.isListening(fn, scope)) { + listener = me.createListener(fn, scope, options); + if (me.firing) { + + me.listeners = me.listeners.slice(0); + } + listeners = me.listeners; + index = length = listeners.length; + priority = options && options.priority; + highestNegativePriorityIndex = me._highestNegativePriorityIndex; + hasNegativePriorityIndex = (highestNegativePriorityIndex !== undefined); + if (priority) { + + + isNegativePriority = (priority < 0); + if (!isNegativePriority || hasNegativePriorityIndex) { + + + + + + + for(i = (isNegativePriority ? highestNegativePriorityIndex : 0); i < length; i++) { + + listenerPriority = listeners[i].o ? listeners[i].o.priority||0 : 0; + if (listenerPriority < priority) { + index = i; + break; + } + } + } else { + + + + me._highestNegativePriorityIndex = index; + } + } else if (hasNegativePriorityIndex) { + + + + + index = highestNegativePriorityIndex; + } + + if (!isNegativePriority && index <= highestNegativePriorityIndex) { + me._highestNegativePriorityIndex ++; + } + if (index === length) { + me.listeners[length] = listener; + } else { + arrayInsert(me.listeners, index, [listener]); + } + } + }, + + createListener: function(fn, scope, o) { + scope = scope || this.observable; + + var me = this, + listener = { + fn: fn, + scope: scope, + ev: me + }, + handler = fn; + + + + if (o) { + listener.o = o; + if (o.single) { + handler = me.createSingle(handler, listener, o, scope); + } + if (o.target) { + handler = me.createTargeted(handler, listener, o, scope); + } + if (o.delay) { + handler = me.createDelayed(handler, listener, o, scope); + } + if (o.buffer) { + handler = me.createBuffered(handler, listener, o, scope); + } + } + + listener.fireFn = handler; + return listener; + }, + + findListener: function(fn, scope) { + var listeners = this.listeners, + i = listeners.length, + listener, + s; + + while (i--) { + listener = listeners[i]; + if (listener) { + s = listener.scope; + + + + + if (listener.fn == fn && (s == (scope || this.observable))) { + return i; + } + } + } + + return - 1; + }, + + isListening: function(fn, scope) { + return this.findListener(fn, scope) !== -1; + }, + + removeListener: function(fn, scope) { + var me = this, + index, + listener, + highestNegativePriorityIndex, + k; + index = me.findListener(fn, scope); + if (index != -1) { + listener = me.listeners[index]; + highestNegativePriorityIndex = me._highestNegativePriorityIndex; + + if (me.firing) { + me.listeners = me.listeners.slice(0); + } + + + if (listener.task) { + listener.task.cancel(); + delete listener.task; + } + + + k = listener.tasks && listener.tasks.length; + if (k) { + while (k--) { + listener.tasks[k].cancel(); + } + delete listener.tasks; + } + + + + + me.listeners.splice(index, 1); + + + + if (highestNegativePriorityIndex) { + if (index < highestNegativePriorityIndex) { + me._highestNegativePriorityIndex --; + } else if (index === highestNegativePriorityIndex && index === me.listeners.length) { + delete me._highestNegativePriorityIndex; + } + } + return true; + } + + return false; + }, + + + clearListeners: function() { + var listeners = this.listeners, + i = listeners.length; + + while (i--) { + this.removeListener(listeners[i].fn, listeners[i].scope); + } + }, + + suspend: function() { + this.suspended += 1; + }, + + resume: function() { + if (this.suspended) { + this.suspended--; + } + }, + + fire: function() { + var me = this, + listeners = me.listeners, + count = listeners.length, + i, + args, + listener, + len; + + if (!me.suspended && count > 0) { + me.firing = true; + args = arguments.length ? arraySlice.call(arguments, 0) : [] + len = args.length; + for (i = 0; i < count; i++) { + listener = listeners[i]; + if (listener.o) { + args[len] = listener.o; + } + if (listener && listener.fireFn.apply(listener.scope || me.observable, args) === false) { + return (me.firing = false); + } + } + } + me.firing = false; + return true; + }, + + createTargeted: function (handler, listener, o, scope) { + return function(){ + if (o.target === arguments[0]){ + handler.apply(scope, arguments); + } + }; + }, + + createBuffered: function (handler, listener, o, scope) { + listener.task = new DelayedTask(); + return function() { + listener.task.delay(o.buffer, handler, scope, toArray(arguments)); + }; + }, + + createDelayed: function (handler, listener, o, scope) { + return function() { + var task = new DelayedTask(); + if (!listener.tasks) { + listener.tasks = []; + } + listener.tasks.push(task); + task.delay(o.delay || 10, handler, scope, toArray(arguments)); + }; + }, + + createSingle: function (handler, listener, o, scope) { + return function() { + var event = listener.ev; + + if (event.removeListener(listener.fn, scope) && event.observable) { + + + event.observable.hasListeners[event.name]--; + } + + return handler.apply(scope, arguments); + }; + } + }; +}); + + + + + + +Ext.EventManager = new function() { + var EventManager = this, + doc = document, + win = window, + escapeRx = /\\/g, + prefix = Ext.baseCSSPrefix, + + supportsAddEventListener = !Ext.isIE9 && 'addEventListener' in doc, + readyEvent, + initExtCss = function() { + + var bd = doc.body || doc.getElementsByTagName('body')[0], + cls = [prefix + 'body'], + htmlCls = [], + supportsLG = Ext.supports.CSS3LinearGradient, + supportsBR = Ext.supports.CSS3BorderRadius, + html; + + if (!bd) { + return false; + } + + html = bd.parentNode; + + function add (c) { + cls.push(prefix + c); + } + + + if (Ext.isIE && Ext.isIE9m) { + add('ie'); + + + + + + + + + + + + + if (Ext.isIE6) { + add('ie6'); + } else { + add('ie7p'); + + if (Ext.isIE7) { + add('ie7'); + } else { + add('ie8p'); + + if (Ext.isIE8) { + add('ie8'); + } else { + add('ie9p'); + + if (Ext.isIE9) { + add('ie9'); + } + } + } + } + + if (Ext.isIE7m) { + add('ie7m'); + } + if (Ext.isIE8m) { + add('ie8m'); + } + if (Ext.isIE9m) { + add('ie9m'); + } + if (Ext.isIE7 || Ext.isIE8) { + add('ie78'); + } + } + + if (Ext.isIE10) { + add('ie10'); + } + + if (Ext.isGecko) { + add('gecko'); + if (Ext.isGecko3) { + add('gecko3'); + } + if (Ext.isGecko4) { + add('gecko4'); + } + if (Ext.isGecko5) { + add('gecko5'); + } + } + if (Ext.isOpera) { + add('opera'); + } + if (Ext.isWebKit) { + add('webkit'); + } + if (Ext.isSafari) { + add('safari'); + if (Ext.isSafari2) { + add('safari2'); + } + if (Ext.isSafari3) { + add('safari3'); + } + if (Ext.isSafari4) { + add('safari4'); + } + if (Ext.isSafari5) { + add('safari5'); + } + if (Ext.isSafari5_0) { + add('safari5_0') + } + } + if (Ext.isChrome) { + add('chrome'); + } + if (Ext.isMac) { + add('mac'); + } + if (Ext.isLinux) { + add('linux'); + } + if (!supportsBR) { + add('nbr'); + } + if (!supportsLG) { + add('nlg'); + } + + + if (html) { + if (Ext.isStrict && (Ext.isIE6 || Ext.isIE7)) { + Ext.isBorderBox = false; + } + else { + Ext.isBorderBox = true; + } + + if(!Ext.isBorderBox) { + htmlCls.push(prefix + 'content-box'); + } + if (Ext.isStrict) { + htmlCls.push(prefix + 'strict'); + } else { + htmlCls.push(prefix + 'quirks'); + } + Ext.fly(html, '_internal').addCls(htmlCls); + } + + Ext.fly(bd, '_internal').addCls(cls); + return true; + }; + + Ext.apply(EventManager, { + + hasBoundOnReady: false, + + + hasFiredReady: false, + + + deferReadyEvent : 1, + + + onReadyChain : [], + + + readyEvent: + (function () { + readyEvent = new Ext.util.Event(); + readyEvent.fire = function () { + Ext._beforeReadyTime = Ext._beforeReadyTime || new Date().getTime(); + readyEvent.self.prototype.fire.apply(readyEvent, arguments); + Ext._afterReadytime = new Date().getTime(); + }; + return readyEvent; + }()), + + + idleEvent: new Ext.util.Event(), + + + isReadyPaused: function(){ + return (/[?&]ext-pauseReadyFire\b/i.test(location.search) && !Ext._continueFireReady); + }, + + + bindReadyEvent: function() { + if (EventManager.hasBoundOnReady) { + return; + } + + + if ( doc.readyState == 'complete' ) { + EventManager.onReadyEvent({ + type: doc.readyState || 'body' + }); + } else { + doc.addEventListener('DOMContentLoaded', EventManager.onReadyEvent, false); + win.addEventListener('load', EventManager.onReadyEvent, false); + EventManager.hasBoundOnReady = true; + } + }, + + onReadyEvent : function(e) { + if (e && e.type) { + EventManager.onReadyChain.push(e.type); + } + + if (EventManager.hasBoundOnReady) { + doc.removeEventListener('DOMContentLoaded', EventManager.onReadyEvent, false); + win.removeEventListener('load', EventManager.onReadyEvent, false); + } + + if (!Ext.isReady) { + EventManager.fireDocReady(); + } + }, + + + fireDocReady: function() { + if (!Ext.isReady) { + Ext._readyTime = new Date().getTime(); + Ext.isReady = true; + + Ext.supports.init(); + EventManager.onWindowUnload(); + readyEvent.onReadyChain = EventManager.onReadyChain; + + if (Ext.isNumber(EventManager.deferReadyEvent)) { + Ext.Function.defer(EventManager.fireReadyEvent, EventManager.deferReadyEvent); + EventManager.hasDocReadyTimer = true; + } else { + EventManager.fireReadyEvent(); + } + } + }, + + + fireReadyEvent: function() { + + + + EventManager.hasDocReadyTimer = false; + EventManager.isFiring = true; + + + + + while (readyEvent.listeners.length && !EventManager.isReadyPaused()) { + readyEvent.fire(); + } + EventManager.isFiring = false; + EventManager.hasFiredReady = true; + Ext.EventManager.idleEvent.fire(); + }, + + + onDocumentReady: function(fn, scope, options) { + options = options || {}; + + options.single = true; + readyEvent.addListener(fn, scope, options); + + + + if (!(EventManager.isFiring || EventManager.hasDocReadyTimer)) { + if (Ext.isReady) { + EventManager.fireReadyEvent(); + } else { + EventManager.bindReadyEvent(); + } + } + }, + + + + + stoppedMouseDownEvent: new Ext.util.Event(), + + + propRe: /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate|freezeEvent)$/, + + + getId : function(element) { + var id; + + element = Ext.getDom(element); + + if (element === doc || element === win) { + id = element === doc ? Ext.documentId : Ext.windowId; + } + else { + id = Ext.id(element); + } + + if (!Ext.cache[id]) { + Ext.addCacheEntry(id, null, element); + } + + return id; + }, + + + prepareListenerConfig: function(element, config, isRemove) { + var propRe = EventManager.propRe, + key, value, args; + + + for (key in config) { + if (config.hasOwnProperty(key)) { + + if (!propRe.test(key)) { + value = config[key]; + + + if (typeof value == 'function') { + + args = [element, key, value, config.scope, config]; + } else { + + args = [element, key, value.fn, value.scope, value]; + } + + if (isRemove) { + EventManager.removeListener.apply(EventManager, args); + } else { + EventManager.addListener.apply(EventManager, args); + } + } + } + } + }, + + mouseEnterLeaveRe: /mouseenter|mouseleave/, + + + normalizeEvent: function(eventName, fn) { + if (EventManager.mouseEnterLeaveRe.test(eventName) && !Ext.supports.MouseEnterLeave) { + if (fn) { + fn = Ext.Function.createInterceptor(fn, EventManager.contains); + } + eventName = eventName == 'mouseenter' ? 'mouseover' : 'mouseout'; + } else if (eventName == 'mousewheel' && !Ext.supports.MouseWheel && !Ext.isOpera) { + eventName = 'DOMMouseScroll'; + } + return { + eventName: eventName, + fn: fn + }; + }, + + + contains: function(event) { + event = event.browserEvent || event; + var parent = event.currentTarget, + child = EventManager.getRelatedTarget(event); + + if (parent && parent.firstChild) { + while (child) { + if (child === parent) { + return false; + } + child = child.parentNode; + if (child && (child.nodeType != 1)) { + child = null; + } + } + } + return true; + }, + + + addListener: function(element, eventName, fn, scope, options) { + + if (typeof eventName !== 'string') { + EventManager.prepareListenerConfig(element, eventName); + return; + } + + var dom = element.dom || Ext.getDom(element), + hasAddEventListener, bind, wrap, cache, id, cacheItem, capture; + + if (typeof fn === 'string') { + fn = Ext.resolveMethod(fn, scope || element); + } + + + + options = options || {}; + + bind = EventManager.normalizeEvent(eventName, fn); + wrap = EventManager.createListenerWrap(dom, eventName, bind.fn, scope, options); + + + cache = EventManager.getEventListenerCache(element.dom ? element : dom, eventName); + eventName = bind.eventName; + + + hasAddEventListener = supportsAddEventListener || (Ext.isIE9 && !dom.attachEvent); + + if (!hasAddEventListener) { + id = EventManager.normalizeId(dom); + + + if (id) { + cacheItem = Ext.cache[id][eventName]; + if (cacheItem && cacheItem.firing) { + + + + + + + cache = EventManager.cloneEventListenerCache(dom, eventName); + } + } + } + + capture = !!options.capture; + cache.push({ + fn: fn, + wrap: wrap, + scope: scope, + capture: capture + }); + + if (!hasAddEventListener) { + + + if (cache.length === 1) { + id = EventManager.normalizeId(dom, true); + fn = Ext.Function.bind(EventManager.handleSingleEvent, EventManager, [id, eventName], true); + Ext.cache[id][eventName] = { + firing: false, + fn: fn + }; + dom.attachEvent('on' + eventName, fn); + } + } else { + dom.addEventListener(eventName, wrap, capture); + } + + if (dom == doc && eventName == 'mousedown') { + EventManager.stoppedMouseDownEvent.addListener(wrap); + } + }, + + + + normalizeId: function(dom, force) { + var id; + if (dom === document) { + id = Ext.documentId; + } else if (dom === window) { + id = Ext.windowId; + } else { + id = dom.id; + } + if (!id && force) { + id = EventManager.getId(dom); + } + return id; + }, + + handleSingleEvent: function(e, id, eventName) { + + + + var listenerCache = EventManager.getEventListenerCache(id, eventName), + attachItem = Ext.cache[id][eventName], + len, i; + + + + + if (attachItem.firing) { + return; + } + + attachItem.firing = true; + for (i = 0, len = listenerCache.length; i < len; ++i) { + listenerCache[i].wrap(e); + } + attachItem.firing = false; + + }, + + + removeListener : function(element, eventName, fn, scope) { + + if (typeof eventName !== 'string') { + EventManager.prepareListenerConfig(element, eventName, true); + return; + } + + var dom = Ext.getDom(element), + id, el = element.dom ? element : Ext.get(dom), + cache = EventManager.getEventListenerCache(el, eventName), + bindName = EventManager.normalizeEvent(eventName).eventName, + i = cache.length, j, cacheItem, hasRemoveEventListener, + listener, wrap; + + if (!dom) { + return; + } + + + hasRemoveEventListener = supportsAddEventListener || (Ext.isIE9 && !dom.detachEvent); + + if (typeof fn === 'string') { + fn = Ext.resolveMethod(fn, scope || element); + } + + while (i--) { + listener = cache[i]; + + if (listener && (!fn || listener.fn == fn) && (!scope || listener.scope === scope)) { + wrap = listener.wrap; + + + if (wrap.task) { + clearTimeout(wrap.task); + delete wrap.task; + } + + + j = wrap.tasks && wrap.tasks.length; + if (j) { + while (j--) { + clearTimeout(wrap.tasks[j]); + } + delete wrap.tasks; + } + + if (!hasRemoveEventListener) { + + + id = EventManager.normalizeId(dom, true); + cacheItem = Ext.cache[id][bindName]; + if (cacheItem && cacheItem.firing) { + + cache = EventManager.cloneEventListenerCache(dom, bindName); + } + + if (cache.length === 1) { + fn = cacheItem.fn; + delete Ext.cache[id][bindName]; + dom.detachEvent('on' + bindName, fn); + } + } else { + dom.removeEventListener(bindName, wrap, listener.capture); + } + + if (wrap && dom == doc && eventName == 'mousedown') { + EventManager.stoppedMouseDownEvent.removeListener(wrap); + } + + + Ext.Array.erase(cache, i, 1); + } + } + }, + + + removeAll : function(element) { + var id = (typeof element === 'string') ? element : element.id, + cache, events, eventName; + + + if (id && (cache = Ext.cache[id])) { + events = cache.events; + + for (eventName in events) { + if (events.hasOwnProperty(eventName)) { + EventManager.removeListener(element, eventName); + } + } + cache.events = {}; + } + }, + + + purgeElement : function(element, eventName) { + var dom = Ext.getDom(element), + i = 0, len, childNodes; + + if (eventName) { + EventManager.removeListener(element, eventName); + } else { + EventManager.removeAll(element); + } + + if (dom && dom.childNodes) { + childNodes = dom.childNodes; + for (len = childNodes.length; i < len; i++) { + EventManager.purgeElement(childNodes[i], eventName); + } + } + }, + + + createListenerWrap : function(dom, ename, fn, scope, options) { + options = options || {}; + + var f, gen, wrap = function(e, args) { + + if (!gen) { + f = ['if(!' + Ext.name + ') {return;}']; + + if (options.buffer || options.delay || options.freezeEvent) { + if (options.freezeEvent) { + + + f.push('e = X.EventObject.setEvent(e);'); + } + f.push('e = new X.EventObjectImpl(e, ' + (options.freezeEvent ? 'true' : 'false' ) + ');'); + } else { + f.push('e = X.EventObject.setEvent(e);'); + } + + if (options.delegate) { + + + f.push('var result, t = e.getTarget("' + (options.delegate + '').replace(escapeRx, '\\\\') + '", this);'); + f.push('if(!t) {return;}'); + } else { + f.push('var t = e.target, result;'); + } + + if (options.target) { + f.push('if(e.target !== options.target) {return;}'); + } + + if (options.stopEvent) { + f.push('e.stopEvent();'); + } else { + if(options.preventDefault) { + f.push('e.preventDefault();'); + } + if(options.stopPropagation) { + f.push('e.stopPropagation();'); + } + } + + if (options.normalized === false) { + f.push('e = e.browserEvent;'); + } + + if (options.buffer) { + f.push('(wrap.task && clearTimeout(wrap.task));'); + f.push('wrap.task = setTimeout(function() {'); + } + + if (options.delay) { + f.push('wrap.tasks = wrap.tasks || [];'); + f.push('wrap.tasks.push(setTimeout(function() {'); + } + + + f.push('result = fn.call(scope || dom, e, t, options);'); + + if (options.single) { + f.push('evtMgr.removeListener(dom, ename, fn, scope);'); + } + + + + if (ename !== 'mousemove' && ename !== 'unload') { + f.push('if (evtMgr.idleEvent.listeners.length) {'); + f.push('evtMgr.idleEvent.fire();'); + f.push('}'); + } + + if (options.delay) { + f.push('}, ' + options.delay + '));'); + } + + if (options.buffer) { + f.push('}, ' + options.buffer + ');'); + } + f.push('return result;'); + + gen = Ext.cacheableFunctionFactory('e', 'options', 'fn', 'scope', 'ename', 'dom', 'wrap', 'args', 'X', 'evtMgr', f.join('\n')); + } + + return gen.call(dom, e, options, fn, scope, ename, dom, wrap, args, Ext, EventManager); + }; + return wrap; + }, + + + getEventCache: function(element) { + var elementCache, eventCache, id; + + if (!element) { + return []; + } + + if (element.$cache) { + elementCache = element.$cache; + } else { + + if (typeof element === 'string') { + id = element; + } else { + id = EventManager.getId(element); + } + elementCache = Ext.cache[id]; + } + eventCache = elementCache.events || (elementCache.events = {}); + return eventCache; + }, + + + getEventListenerCache : function(element, eventName) { + var eventCache = EventManager.getEventCache(element); + return eventCache[eventName] || (eventCache[eventName] = []); + }, + + + cloneEventListenerCache: function(element, eventName){ + var eventCache = EventManager.getEventCache(element), + out; + + if (eventCache[eventName]) { + out = eventCache[eventName].slice(0); + } else { + out = []; + } + eventCache[eventName] = out; + return out; + }, + + + mouseLeaveRe: /(mouseout|mouseleave)/, + mouseEnterRe: /(mouseover|mouseenter)/, + + + stopEvent: function(event) { + EventManager.stopPropagation(event); + EventManager.preventDefault(event); + }, + + + stopPropagation: function(event) { + event = event.browserEvent || event; + if (event.stopPropagation) { + event.stopPropagation(); + } else { + event.cancelBubble = true; + } + }, + + + preventDefault: function(event) { + event = event.browserEvent || event; + if (event.preventDefault) { + event.preventDefault(); + } else { + event.returnValue = false; + + try { + + if (event.ctrlKey || event.keyCode > 111 && event.keyCode < 124) { + event.keyCode = -1; + } + } catch (e) { + + } + } + }, + + + getRelatedTarget: function(event) { + event = event.browserEvent || event; + var target = event.relatedTarget; + if (!target) { + if (EventManager.mouseLeaveRe.test(event.type)) { + target = event.toElement; + } else if (EventManager.mouseEnterRe.test(event.type)) { + target = event.fromElement; + } + } + return EventManager.resolveTextNode(target); + }, + + + getPageX: function(event) { + return EventManager.getPageXY(event)[0]; + }, + + + getPageY: function(event) { + return EventManager.getPageXY(event)[1]; + }, + + + getPageXY: function(event) { + event = event.browserEvent || event; + var x = event.pageX, + y = event.pageY, + docEl = doc.documentElement, + body = doc.body; + + + if (!x && x !== 0) { + x = event.clientX + (docEl && docEl.scrollLeft || body && body.scrollLeft || 0) - (docEl && docEl.clientLeft || body && body.clientLeft || 0); + y = event.clientY + (docEl && docEl.scrollTop || body && body.scrollTop || 0) - (docEl && docEl.clientTop || body && body.clientTop || 0); + } + return [x, y]; + }, + + + getTarget: function(event) { + event = event.browserEvent || event; + return EventManager.resolveTextNode(event.target || event.srcElement); + }, + + + + + + resolveTextNode: Ext.isGecko ? + function(node) { + if (node) { + + var s = HTMLElement.prototype.toString.call(node); + if (s !== '[xpconnect wrapped native prototype]' && s !== '[object XULElement]') { + return node.nodeType == 3 ? node.parentNode: node; + } + } + } + : + function(node) { + return node && node.nodeType == 3 ? node.parentNode: node; + }, + + + + + curWidth: 0, + curHeight: 0, + + + onWindowResize: function(fn, scope, options) { + var resize = EventManager.resizeEvent; + + if (!resize) { + EventManager.resizeEvent = resize = new Ext.util.Event(); + EventManager.on(win, 'resize', EventManager.fireResize, null, {buffer: 100}); + } + resize.addListener(fn, scope, options); + }, + + + fireResize: function() { + var w = Ext.Element.getViewWidth(), + h = Ext.Element.getViewHeight(); + + + if (EventManager.curHeight != h || EventManager.curWidth != w) { + EventManager.curHeight = h; + EventManager.curWidth = w; + EventManager.resizeEvent.fire(w, h); + } + }, + + + removeResizeListener: function(fn, scope) { + var resize = EventManager.resizeEvent; + if (resize) { + resize.removeListener(fn, scope); + } + }, + + + onWindowUnload: function(fn, scope, options) { + var unload = EventManager.unloadEvent; + + if (!unload) { + EventManager.unloadEvent = unload = new Ext.util.Event(); + EventManager.addListener(win, 'unload', EventManager.fireUnload); + } + if (fn) { + unload.addListener(fn, scope, options); + } + }, + + + fireUnload: function() { + + try { + + doc = win = undefined; + + var gridviews, i, ln, + el, cache; + + EventManager.unloadEvent.fire(); + + if (Ext.isGecko3) { + gridviews = Ext.ComponentQuery.query('gridview'); + i = 0; + ln = gridviews.length; + for (; i < ln; i++) { + gridviews[i].scrollToTop(); + } + } + + cache = Ext.cache; + + for (el in cache) { + if (cache.hasOwnProperty(el)) { + EventManager.removeAll(el); + } + } + } catch(e) { + } + }, + + + removeUnloadListener: function(fn, scope) { + var unload = EventManager.unloadEvent; + if (unload) { + unload.removeListener(fn, scope); + } + }, + + + useKeyDown: Ext.isWebKit ? + parseInt(navigator.userAgent.match(/AppleWebKit\/(\d+)/)[1], 10) >= 525 : + !((Ext.isGecko && !Ext.isWindows) || Ext.isOpera), + + + getKeyEvent: function() { + return EventManager.useKeyDown ? 'keydown' : 'keypress'; + } + }); + + + if(!supportsAddEventListener && document.attachEvent) { + Ext.apply( EventManager, { + + + + pollScroll : function() { + var scrollable = true; + + try { + document.documentElement.doScroll('left'); + } catch(e) { + scrollable = false; + } + + + if (scrollable && document.body) { + EventManager.onReadyEvent({ + type:'doScroll' + }); + } else { + + EventManager.scrollTimeout = setTimeout(EventManager.pollScroll, 20); + } + + return scrollable; + }, + + + scrollTimeout: null, + + + readyStatesRe : /complete/i, + + + checkReadyState: function() { + var state = document.readyState; + + if (EventManager.readyStatesRe.test(state)) { + EventManager.onReadyEvent({ + type: state + }); + } + }, + + bindReadyEvent: function() { + var topContext = true; + + if (EventManager.hasBoundOnReady) { + return; + } + + + try { + topContext = window.frameElement === undefined; + } catch(e) { + + + topContext = false; + } + + if (!topContext || !doc.documentElement.doScroll) { + EventManager.pollScroll = Ext.emptyFn; + } + + + if (EventManager.pollScroll() === true) { + return; + } + + + if (doc.readyState == 'complete' ) { + EventManager.onReadyEvent({type: 'already ' + (doc.readyState || 'body') }); + } else { + doc.attachEvent('onreadystatechange', EventManager.checkReadyState); + window.attachEvent('onload', EventManager.onReadyEvent); + EventManager.hasBoundOnReady = true; + } + }, + + onReadyEvent : function(e) { + if (e && e.type) { + EventManager.onReadyChain.push(e.type); + } + + if (EventManager.hasBoundOnReady) { + document.detachEvent('onreadystatechange', EventManager.checkReadyState); + window.detachEvent('onload', EventManager.onReadyEvent); + } + + if (Ext.isNumber(EventManager.scrollTimeout)) { + clearTimeout(EventManager.scrollTimeout); + delete EventManager.scrollTimeout; + } + + if (!Ext.isReady) { + EventManager.fireDocReady(); + } + }, + + + onReadyChain : [] + }); + } + + + + Ext.onReady = function(fn, scope, options) { + Ext.Loader.onReady(fn, scope, true, options); + }; + + + Ext.onDocumentReady = EventManager.onDocumentReady; + + + EventManager.on = EventManager.addListener; + + + EventManager.un = EventManager.removeListener; + + Ext.onReady(initExtCss); +}; + + + +Ext.define('Ext.util.Observable', function(Observable) { + + + var emptyArray = [], + arrayProto = Array.prototype, + arraySlice = arrayProto.slice, + ExtEvent = Ext.util.Event, + ListenerRemover = function(observable) { + + + if (observable instanceof ListenerRemover) { + return observable; + } + + this.observable = observable; + + + + if (arguments[1].isObservable) { + this.managedListeners = true; + } + this.args = arraySlice.call(arguments, 1); + }; + + ListenerRemover.prototype.destroy = function() { + this.observable[this.managedListeners ? 'mun' : 'un'].apply(this.observable, this.args); + }; + + return { + + + + + + statics: { + + releaseCapture: function(o) { + o.fireEventArgs = this.prototype.fireEventArgs; + }, + + + capture: function(o, fn, scope) { + + + + + var newFn = function(eventName, args) { + return fn.apply(scope, [eventName].concat(args)); + } + + this.captureArgs(o, newFn, scope); + }, + + + captureArgs: function(o, fn, scope) { + o.fireEventArgs = Ext.Function.createInterceptor(o.fireEventArgs, fn, scope); + }, + + + observe: function(cls, listeners) { + if (cls) { + if (!cls.isObservable) { + Ext.applyIf(cls, new this()); + this.captureArgs(cls.prototype, cls.fireEventArgs, cls); + } + if (Ext.isObject(listeners)) { + cls.on(listeners); + } + } + return cls; + }, + + + prepareClass: function (T, mixin) { + + + + + + + if (!T.HasListeners) { + + + + var HasListeners = function () {}, + SuperHL = T.superclass.HasListeners || (mixin && mixin.HasListeners) || + Observable.HasListeners; + + + T.prototype.HasListeners = T.HasListeners = HasListeners; + + + + HasListeners.prototype = T.hasListeners = new SuperHL(); + } + } + }, + + + + + + + isObservable: true, + + + eventsSuspended: 0, + + + + constructor: function(config) { + var me = this; + + Ext.apply(me, config); + + + if (!me.hasListeners) { + me.hasListeners = new me.HasListeners(); + } + + me.events = me.events || {}; + if (me.listeners) { + me.on(me.listeners); + me.listeners = null; + } + + if (me.bubbleEvents) { + me.enableBubble(me.bubbleEvents); + } + }, + + onClassExtended: function (T) { + if (!T.HasListeners) { + + + Observable.prepareClass(T); + } + }, + + + + eventOptionsRe : /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate|element|destroyable|vertical|horizontal|freezeEvent|priority)$/, + + + addManagedListener: function(item, ename, fn, scope, options, noDestroy) { + var me = this, + managedListeners = me.managedListeners = me.managedListeners || [], + config, passedOptions; + + if (typeof ename !== 'string') { + + + + + passedOptions = arguments.length > 4 ? options : ename; + + options = ename; + for (ename in options) { + if (options.hasOwnProperty(ename)) { + config = options[ename]; + if (!me.eventOptionsRe.test(ename)) { + + + me.addManagedListener(item, ename, config.fn || config, config.scope || options.scope || scope, config.fn ? config : passedOptions, true); + } + } + } + if (options && options.destroyable) { + return new ListenerRemover(me, item, options); + } + } + else { + if (typeof fn === 'string') { + scope = scope || me; + fn = Ext.resolveMethod(fn, scope); + } + + managedListeners.push({ + item: item, + ename: ename, + fn: fn, + scope: scope, + options: options + }); + + item.on(ename, fn, scope, options); + + + if (!noDestroy && options && options.destroyable) { + return new ListenerRemover(me, item, ename, fn, scope); + } + } + }, + + + removeManagedListener: function(item, ename, fn, scope) { + var me = this, + options, + config, + managedListeners, + length, + i, func; + + if (typeof ename !== 'string') { + options = ename; + for (ename in options) { + if (options.hasOwnProperty(ename)) { + config = options[ename]; + if (!me.eventOptionsRe.test(ename)) { + me.removeManagedListener(item, ename, config.fn || config, config.scope || options.scope || scope); + } + } + } + } else { + managedListeners = me.managedListeners ? me.managedListeners.slice() : []; + + if (typeof fn === 'string') { + scope = scope || me; + fn = Ext.resolveMethod(fn, scope); + } + + for (i = 0, length = managedListeners.length; i < length; i++) { + me.removeManagedListenerItem(false, managedListeners[i], item, ename, fn, scope); + } + } + }, + + + fireEvent: function(eventName) { + return this.fireEventArgs(eventName, arraySlice.call(arguments, 1)); + }, + + + fireEventArgs: function(eventName, args) { + eventName = eventName.toLowerCase(); + var me = this, + events = me.events, + event = events && events[eventName], + ret = true; + + + + if (event && me.hasListeners[eventName]) { + ret = me.continueFireEvent(eventName, args || emptyArray, event.bubble); + } + return ret; + }, + + + continueFireEvent: function(eventName, args, bubbles) { + var target = this, + queue, event, + ret = true; + + do { + if (target.eventsSuspended) { + if ((queue = target.eventQueue)) { + queue.push([eventName, args, bubbles]); + } + return ret; + } else { + event = target.events[eventName]; + + + if (event && event !== true) { + if ((ret = event.fire.apply(event, args)) === false) { + break; + } + } + } + } while (bubbles && (target = target.getBubbleParent())); + return ret; + }, + + + getBubbleParent: function() { + var me = this, parent = me.getBubbleTarget && me.getBubbleTarget(); + if (parent && parent.isObservable) { + return parent; + } + return null; + }, + + + addListener: function(ename, fn, scope, options) { + var me = this, + config, event, + prevListenerCount = 0; + + + if (typeof ename !== 'string') { + options = ename; + for (ename in options) { + if (options.hasOwnProperty(ename)) { + config = options[ename]; + if (!me.eventOptionsRe.test(ename)) { + + me.addListener(ename, config.fn || config, config.scope || options.scope, config.fn ? config : options); + } + } + } + if (options && options.destroyable) { + return new ListenerRemover(me, options); + } + } + + else { + ename = ename.toLowerCase(); + event = me.events[ename]; + if (event && event.isEvent) { + prevListenerCount = event.listeners.length; + } else { + me.events[ename] = event = new ExtEvent(me, ename); + } + + + if (typeof fn === 'string') { + scope = scope || me; + fn = Ext.resolveMethod(fn, scope); + } + event.addListener(fn, scope, options); + + + + if (event.listeners.length !== prevListenerCount) { + me.hasListeners._incr_(ename); + } + if (options && options.destroyable) { + return new ListenerRemover(me, ename, fn, scope, options); + } + } + }, + + + removeListener: function(ename, fn, scope) { + var me = this, + config, + event, + options; + + if (typeof ename !== 'string') { + options = ename; + for (ename in options) { + if (options.hasOwnProperty(ename)) { + config = options[ename]; + if (!me.eventOptionsRe.test(ename)) { + me.removeListener(ename, config.fn || config, config.scope || options.scope); + } + } + } + } else { + ename = ename.toLowerCase(); + event = me.events[ename]; + if (event && event.isEvent) { + if (typeof fn === 'string') { + scope = scope || me; + fn = Ext.resolveMethod(fn, scope); + } + + if (event.removeListener(fn, scope)) { + me.hasListeners._decr_(ename); + } + } + } + }, + + + clearListeners: function() { + var events = this.events, + hasListeners = this.hasListeners, + event, + key; + + for (key in events) { + if (events.hasOwnProperty(key)) { + event = events[key]; + if (event.isEvent) { + delete hasListeners[key]; + event.clearListeners(); + } + } + } + + this.clearManagedListeners(); + }, + + + + clearManagedListeners : function() { + var managedListeners = this.managedListeners || [], + i = 0, + len = managedListeners.length; + + for (; i < len; i++) { + this.removeManagedListenerItem(true, managedListeners[i]); + } + + this.managedListeners = []; + }, + + + removeManagedListenerItem: function(isClear, managedListener, item, ename, fn, scope){ + if (isClear || (managedListener.item === item && managedListener.ename === ename && (!fn || managedListener.fn === fn) && (!scope || managedListener.scope === scope))) { + managedListener.item.un(managedListener.ename, managedListener.fn, managedListener.scope); + if (!isClear) { + Ext.Array.remove(this.managedListeners, managedListener); + } + } + }, + + + + addEvents: function(o) { + var me = this, + events = me.events || (me.events = {}), + arg, args, i; + + if (typeof o == 'string') { + for (args = arguments, i = args.length; i--; ) { + arg = args[i]; + if (!events[arg]) { + events[arg] = true; + } + } + } else { + Ext.applyIf(me.events, o); + } + }, + + + hasListener: function(ename) { + return !!this.hasListeners[ename.toLowerCase()]; + }, + + + suspendEvents: function(queueSuspended) { + this.eventsSuspended += 1; + if (queueSuspended && !this.eventQueue) { + this.eventQueue = []; + } + }, + + + suspendEvent: function(eventName) { + var len = arguments.length, + i, event; + + for (i = 0; i < len; i++) { + event = this.events[arguments[i]]; + + + if (event && event.suspend) { + event.suspend(); + } + } + }, + + + resumeEvent: function() { + var len = arguments.length, + i, event; + + for (i = 0; i < len; i++) { + + + event = this.events[arguments[i]]; + if (event && event.resume) { + event.resume(); + } + } + }, + + + resumeEvents: function() { + var me = this, + queued = me.eventQueue, + qLen, q; + + if (me.eventsSuspended && ! --me.eventsSuspended) { + delete me.eventQueue; + + if (queued) { + qLen = queued.length; + for (q = 0; q < qLen; q++) { + me.continueFireEvent.apply(me, queued[q]); + } + } + } + }, + + + relayEvents : function(origin, events, prefix) { + var me = this, + len = events.length, + i = 0, + oldName, + relayers = {}; + + for (; i < len; i++) { + oldName = events[i]; + + + relayers[oldName] = me.createRelayer(prefix ? prefix + oldName : oldName); + } + + + + me.mon(origin, relayers, null, null, undefined); + + + return new ListenerRemover(me, origin, relayers); + }, + + + createRelayer: function(newName, beginEnd) { + var me = this; + return function() { + return me.fireEventArgs.call(me, newName, beginEnd ? arraySlice.apply(arguments, beginEnd) : arguments); + }; + }, + + + enableBubble: function(eventNames) { + if (eventNames) { + var me = this, + names = (typeof eventNames == 'string') ? arguments : eventNames, + length = names.length, + events = me.events, + ename, event, i; + + for (i = 0; i < length; ++i) { + ename = names[i].toLowerCase(); + event = events[ename]; + + if (!event || typeof event == 'boolean') { + events[ename] = event = new ExtEvent(me, ename); + } + + + + me.hasListeners._incr_(ename); + + event.bubble = true; + } + } + } + }; +}, function() { + var Observable = this, + proto = Observable.prototype, + HasListeners = function () {}, + prepareMixin = function (T) { + if (!T.HasListeners) { + var proto = T.prototype; + + + Observable.prepareClass(T, this); + + + + T.onExtended(function (U) { + + Observable.prepareClass(U); + }); + + + + if (proto.onClassMixedIn) { + + Ext.override(T, { + onClassMixedIn: function (U) { + prepareMixin.call(this, U); + this.callParent(arguments); + } + }); + } else { + + proto.onClassMixedIn = function (U) { + prepareMixin.call(this, U); + }; + } + } + }, + globalEvents; + + HasListeners.prototype = { + + _decr_: function (ev) { + if (! --this[ev]) { + + + + delete this[ev]; + } + }, + _incr_: function (ev) { + if (this.hasOwnProperty(ev)) { + + ++this[ev]; + } else { + + + this[ev] = 1; + } + } + }; + + proto.HasListeners = Observable.HasListeners = HasListeners; + + Observable.createAlias({ + + on: 'addListener', + + un: 'removeListener', + + mon: 'addManagedListener', + + mun: 'removeManagedListener' + }); + + + Observable.observeClass = Observable.observe; + + + Ext.globalEvents = globalEvents = new Observable({ + events: { + idle: Ext.EventManager.idleEvent, + ready: Ext.EventManager.readyEvent + } + }); + + + Ext.on = function() { + return globalEvents.addListener.apply(globalEvents, arguments); + }; + + + Ext.un = function() { + return globalEvents.removeListener.apply(globalEvents, arguments); + }; + + + + + function getMethodEvent(method){ + var e = (this.methodEvents = this.methodEvents || {})[method], + returnValue, + v, + cancel, + obj = this, + makeCall; + + if (!e) { + this.methodEvents[method] = e = {}; + e.originalFn = this[method]; + e.methodName = method; + e.before = []; + e.after = []; + + makeCall = function(fn, scope, args){ + if((v = fn.apply(scope || obj, args)) !== undefined){ + if (typeof v == 'object') { + if(v.returnValue !== undefined){ + returnValue = v.returnValue; + }else{ + returnValue = v; + } + cancel = !!v.cancel; + } + else + if (v === false) { + cancel = true; + } + else { + returnValue = v; + } + } + }; + + this[method] = function(){ + var args = Array.prototype.slice.call(arguments, 0), + b, i, len; + returnValue = v = undefined; + cancel = false; + + for(i = 0, len = e.before.length; i < len; i++){ + b = e.before[i]; + makeCall(b.fn, b.scope, args); + if (cancel) { + return returnValue; + } + } + + if((v = e.originalFn.apply(obj, args)) !== undefined){ + returnValue = v; + } + + for(i = 0, len = e.after.length; i < len; i++){ + b = e.after[i]; + makeCall(b.fn, b.scope, args); + if (cancel) { + return returnValue; + } + } + return returnValue; + }; + } + return e; + } + + Ext.apply(proto, { + onClassMixedIn: prepareMixin, + + + + + beforeMethod : function(method, fn, scope){ + getMethodEvent.call(this, method).before.push({ + fn: fn, + scope: scope + }); + }, + + + afterMethod : function(method, fn, scope){ + getMethodEvent.call(this, method).after.push({ + fn: fn, + scope: scope + }); + }, + + removeMethodListener: function(method, fn, scope){ + var e = this.getMethodEvent(method), + i, len; + for(i = 0, len = e.before.length; i < len; i++){ + if(e.before[i].fn == fn && e.before[i].scope == scope){ + Ext.Array.erase(e.before, i, 1); + return; + } + } + for(i = 0, len = e.after.length; i < len; i++){ + if(e.after[i].fn == fn && e.after[i].scope == scope){ + Ext.Array.erase(e.after, i, 1); + return; + } + } + }, + + toggleEventLogging: function(toggle) { + Ext.util.Observable[toggle ? 'capture' : 'releaseCapture'](this, function(en) { + if (Ext.isDefined(Ext.global.console)) { + Ext.global.console.log(en, arguments); + } + }); + } + }); +}); + + + + + + +Ext.define('Ext.EventObjectImpl', { + + + + BACKSPACE: 8, + + TAB: 9, + + NUM_CENTER: 12, + + ENTER: 13, + + RETURN: 13, + + SHIFT: 16, + + CTRL: 17, + + ALT: 18, + + PAUSE: 19, + + CAPS_LOCK: 20, + + ESC: 27, + + SPACE: 32, + + PAGE_UP: 33, + + PAGE_DOWN: 34, + + END: 35, + + HOME: 36, + + LEFT: 37, + + UP: 38, + + RIGHT: 39, + + DOWN: 40, + + PRINT_SCREEN: 44, + + INSERT: 45, + + DELETE: 46, + + ZERO: 48, + + ONE: 49, + + TWO: 50, + + THREE: 51, + + FOUR: 52, + + FIVE: 53, + + SIX: 54, + + SEVEN: 55, + + EIGHT: 56, + + NINE: 57, + + A: 65, + + B: 66, + + C: 67, + + D: 68, + + E: 69, + + F: 70, + + G: 71, + + H: 72, + + I: 73, + + J: 74, + + K: 75, + + L: 76, + + M: 77, + + N: 78, + + O: 79, + + P: 80, + + Q: 81, + + R: 82, + + S: 83, + + T: 84, + + U: 85, + + V: 86, + + W: 87, + + X: 88, + + Y: 89, + + Z: 90, + + CONTEXT_MENU: 93, + + NUM_ZERO: 96, + + NUM_ONE: 97, + + NUM_TWO: 98, + + NUM_THREE: 99, + + NUM_FOUR: 100, + + NUM_FIVE: 101, + + NUM_SIX: 102, + + NUM_SEVEN: 103, + + NUM_EIGHT: 104, + + NUM_NINE: 105, + + NUM_MULTIPLY: 106, + + NUM_PLUS: 107, + + NUM_MINUS: 109, + + NUM_PERIOD: 110, + + NUM_DIVISION: 111, + + F1: 112, + + F2: 113, + + F3: 114, + + F4: 115, + + F5: 116, + + F6: 117, + + F7: 118, + + F8: 119, + + F9: 120, + + F10: 121, + + F11: 122, + + F12: 123, + + WHEEL_SCALE: (function () { + var scale; + + if (Ext.isGecko) { + + scale = 3; + } else if (Ext.isMac) { + + + + + if (Ext.isSafari && Ext.webKitVersion >= 532.0) { + + + + + + + scale = 120; + } else { + + + scale = 12; + } + + + + + + scale *= 3; + } else { + + scale = 120; + } + + return scale; + }()), + + + clickRe: /(dbl)?click/, + + safariKeys: { + 3: 13, + 63234: 37, + 63235: 39, + 63232: 38, + 63233: 40, + 63276: 33, + 63277: 34, + 63272: 46, + 63273: 36, + 63275: 35 + }, + + btnMap: Ext.isIE ? { + 1: 0, + 4: 1, + 2: 2 + } : { + 0: 0, + 1: 1, + 2: 2 + }, + + + + + + constructor: function(event, freezeEvent){ + if (event) { + this.setEvent(event.browserEvent || event, freezeEvent); + } + }, + + setEvent: function(event, freezeEvent){ + var me = this, button, options; + + if (event === me || (event && event.browserEvent)) { + return event; + } + me.browserEvent = event; + if (event) { + + button = event.button ? me.btnMap[event.button] : (event.which ? event.which - 1 : -1); + if (me.clickRe.test(event.type) && button == -1) { + button = 0; + } + options = { + type: event.type, + button: button, + shiftKey: event.shiftKey, + + ctrlKey: event.ctrlKey || event.metaKey || false, + altKey: event.altKey, + + keyCode: event.keyCode, + charCode: event.charCode, + + target: Ext.EventManager.getTarget(event), + relatedTarget: Ext.EventManager.getRelatedTarget(event), + currentTarget: event.currentTarget, + xy: (freezeEvent ? me.getXY() : null) + }; + } else { + options = { + button: -1, + shiftKey: false, + ctrlKey: false, + altKey: false, + keyCode: 0, + charCode: 0, + target: null, + xy: [0, 0] + }; + } + Ext.apply(me, options); + return me; + }, + + + stopEvent: function(){ + this.stopPropagation(); + this.preventDefault(); + }, + + + preventDefault: function(){ + if (this.browserEvent) { + Ext.EventManager.preventDefault(this.browserEvent); + } + }, + + + stopPropagation: function(){ + var browserEvent = this.browserEvent; + + if (browserEvent) { + if (browserEvent.type == 'mousedown') { + Ext.EventManager.stoppedMouseDownEvent.fire(this); + } + Ext.EventManager.stopPropagation(browserEvent); + } + }, + + + getCharCode: function(){ + return this.charCode || this.keyCode; + }, + + + getKey: function(){ + return this.normalizeKey(this.keyCode || this.charCode); + }, + + + normalizeKey: function(key){ + + return Ext.isWebKit ? (this.safariKeys[key] || key) : key; + }, + + + getPageX: function(){ + return this.getX(); + }, + + + getPageY: function(){ + return this.getY(); + }, + + + getX: function() { + return this.getXY()[0]; + }, + + + getY: function() { + return this.getXY()[1]; + }, + + + getXY: function() { + if (!this.xy) { + + this.xy = Ext.EventManager.getPageXY(this.browserEvent); + } + return this.xy; + }, + + + getTarget : function(selector, maxDepth, returnEl){ + if (selector) { + return Ext.fly(this.target).findParent(selector, maxDepth, returnEl); + } + return returnEl ? Ext.get(this.target) : this.target; + }, + + + getRelatedTarget : function(selector, maxDepth, returnEl){ + if (selector && this.relatedTarget) { + return Ext.fly(this.relatedTarget).findParent(selector, maxDepth, returnEl); + } + return returnEl ? Ext.get(this.relatedTarget) : this.relatedTarget; + }, + + + correctWheelDelta : function (delta) { + var scale = this.WHEEL_SCALE, + ret = Math.round(delta / scale); + + if (!ret && delta) { + ret = (delta < 0) ? -1 : 1; + } + + return ret; + }, + + + getWheelDeltas : function () { + var me = this, + event = me.browserEvent, + dx = 0, dy = 0; + + if (Ext.isDefined(event.wheelDeltaX)) { + dx = event.wheelDeltaX; + dy = event.wheelDeltaY; + } else if (event.wheelDelta) { + dy = event.wheelDelta; + } else if (event.detail) { + dy = -event.detail; + + + + if (dy > 100) { + dy = 3; + } else if (dy < -100) { + dy = -3; + } + + + + if (Ext.isDefined(event.axis) && event.axis === event.HORIZONTAL_AXIS) { + dx = dy; + dy = 0; + } + } + + return { + x: me.correctWheelDelta(dx), + y: me.correctWheelDelta(dy) + }; + }, + + + getWheelDelta : function(){ + var deltas = this.getWheelDeltas(); + + return deltas.y; + }, + + + within : function(el, related, allowEl){ + if(el){ + var t = related ? this.getRelatedTarget() : this.getTarget(), + result; + + if (t) { + result = Ext.fly(el, '_internal').contains(t); + if (!result && allowEl) { + result = t == Ext.getDom(el); + } + return result; + } + } + return false; + }, + + + isNavKeyPress : function(){ + var me = this, + k = this.normalizeKey(me.keyCode); + + return (k >= 33 && k <= 40) || + k == me.RETURN || + k == me.TAB || + k == me.ESC; + }, + + + isSpecialKey : function(){ + var k = this.normalizeKey(this.keyCode); + return (this.type == 'keypress' && this.ctrlKey) || + this.isNavKeyPress() || + (k == this.BACKSPACE) || + (k >= 16 && k <= 20) || + (k >= 44 && k <= 46); + }, + + + getPoint : function(){ + var xy = this.getXY(); + return new Ext.util.Point(xy[0], xy[1]); + }, + + + hasModifier : function(){ + return this.ctrlKey || this.altKey || this.shiftKey || this.metaKey; + }, + + + injectEvent: (function () { + var API, + dispatchers = {}, + crazyIEButtons; + + + + + + + if (!Ext.isIE9m && document.createEvent) { + API = { + createHtmlEvent: function (doc, type, bubbles, cancelable) { + var event = doc.createEvent('HTMLEvents'); + + event.initEvent(type, bubbles, cancelable); + return event; + }, + + createMouseEvent: function (doc, type, bubbles, cancelable, detail, + clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, + button, relatedTarget) { + var event = doc.createEvent('MouseEvents'), + view = doc.defaultView || window; + + if (event.initMouseEvent) { + event.initMouseEvent(type, bubbles, cancelable, view, detail, + clientX, clientY, clientX, clientY, ctrlKey, altKey, + shiftKey, metaKey, button, relatedTarget); + } else { + event = doc.createEvent('UIEvents'); + event.initEvent(type, bubbles, cancelable); + event.view = view; + event.detail = detail; + event.screenX = clientX; + event.screenY = clientY; + event.clientX = clientX; + event.clientY = clientY; + event.ctrlKey = ctrlKey; + event.altKey = altKey; + event.metaKey = metaKey; + event.shiftKey = shiftKey; + event.button = button; + event.relatedTarget = relatedTarget; + } + + return event; + }, + + createUIEvent: function (doc, type, bubbles, cancelable, detail) { + var event = doc.createEvent('UIEvents'), + view = doc.defaultView || window; + + event.initUIEvent(type, bubbles, cancelable, view, detail); + return event; + }, + + fireEvent: function (target, type, event) { + target.dispatchEvent(event); + }, + + fixTarget: function (target) { + + if (target == window && !target.dispatchEvent) { + return document; + } + + return target; + } + }; + } else if (document.createEventObject) { + crazyIEButtons = { 0: 1, 1: 4, 2: 2 }; + + API = { + createHtmlEvent: function (doc, type, bubbles, cancelable) { + var event = doc.createEventObject(); + event.bubbles = bubbles; + event.cancelable = cancelable; + return event; + }, + + createMouseEvent: function (doc, type, bubbles, cancelable, detail, + clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, + button, relatedTarget) { + var event = doc.createEventObject(); + event.bubbles = bubbles; + event.cancelable = cancelable; + event.detail = detail; + event.screenX = clientX; + event.screenY = clientY; + event.clientX = clientX; + event.clientY = clientY; + event.ctrlKey = ctrlKey; + event.altKey = altKey; + event.shiftKey = shiftKey; + event.metaKey = metaKey; + event.button = crazyIEButtons[button] || button; + event.relatedTarget = relatedTarget; + return event; + }, + + createUIEvent: function (doc, type, bubbles, cancelable, detail) { + var event = doc.createEventObject(); + event.bubbles = bubbles; + event.cancelable = cancelable; + return event; + }, + + fireEvent: function (target, type, event) { + target.fireEvent('on' + type, event); + }, + + fixTarget: function (target) { + if (target == document) { + + + return document.documentElement; + } + + return target; + } + }; + } + + + + + Ext.Object.each({ + load: [false, false], + unload: [false, false], + select: [true, false], + change: [true, false], + submit: [true, true], + reset: [true, false], + resize: [true, false], + scroll: [true, false] + }, + function (name, value) { + var bubbles = value[0], cancelable = value[1]; + dispatchers[name] = function (targetEl, srcEvent) { + var e = API.createHtmlEvent(name, bubbles, cancelable); + API.fireEvent(targetEl, name, e); + }; + }); + + + + + function createMouseEventDispatcher (type, detail) { + var cancelable = (type != 'mousemove'); + return function (targetEl, srcEvent) { + var xy = srcEvent.getXY(), + e = API.createMouseEvent(targetEl.ownerDocument, type, true, cancelable, + detail, xy[0], xy[1], srcEvent.ctrlKey, srcEvent.altKey, + srcEvent.shiftKey, srcEvent.metaKey, srcEvent.button, + srcEvent.relatedTarget); + API.fireEvent(targetEl, type, e); + }; + } + + Ext.each(['click', 'dblclick', 'mousedown', 'mouseup', 'mouseover', 'mousemove', 'mouseout'], + function (eventName) { + dispatchers[eventName] = createMouseEventDispatcher(eventName, 1); + }); + + + + + Ext.Object.each({ + focusin: [true, false], + focusout: [true, false], + activate: [true, true], + focus: [false, false], + blur: [false, false] + }, + function (name, value) { + var bubbles = value[0], cancelable = value[1]; + dispatchers[name] = function (targetEl, srcEvent) { + var e = API.createUIEvent(targetEl.ownerDocument, name, bubbles, cancelable, 1); + API.fireEvent(targetEl, name, e); + }; + }); + + + if (!API) { + + + dispatchers = {}; + + API = { + fixTarget: Ext.identityFn + }; + } + + function cannotInject (target, srcEvent) { + } + + return function (target) { + var me = this, + dispatcher = dispatchers[me.type] || cannotInject, + t = target ? (target.dom || target) : me.getTarget(); + + t = API.fixTarget(t); + dispatcher(t, me); + }; + }()) + +}, function() { + +Ext.EventObject = new Ext.EventObjectImpl(); + +}); + + + + + + +Ext.define('Ext.dom.AbstractQuery', { + + select: function(q, root) { + var results = [], + nodes, + i, + j, + qlen, + nlen; + + root = root || document; + + if (typeof root == 'string') { + root = document.getElementById(root); + } + + q = q.split(","); + + for (i = 0,qlen = q.length; i < qlen; i++) { + if (typeof q[i] == 'string') { + + + if (typeof q[i][0] == '@') { + nodes = root.getAttributeNode(q[i].substring(1)); + results.push(nodes); + } else { + nodes = root.querySelectorAll(q[i]); + + for (j = 0,nlen = nodes.length; j < nlen; j++) { + results.push(nodes[j]); + } + } + } + } + + return results; + }, + + + selectNode: function(q, root) { + return this.select(q, root)[0]; + }, + + + is: function(el, q) { + if (typeof el == "string") { + el = document.getElementById(el); + } + return this.select(q).indexOf(el) !== -1; + } + +}); + + + + + +Ext.define('Ext.dom.AbstractHelper', { + emptyTags : /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i, + confRe : /^(?:tag|children|cn|html|tpl|tplData)$/i, + endRe : /end/i, + styleSepRe: /\s*(?::|;)\s*/, + + + attributeTransform: { cls : 'class', htmlFor : 'for' }, + + closeTags: {}, + + decamelizeName : (function () { + var camelCaseRe = /([a-z])([A-Z])/g, + cache = {}; + + function decamel (match, p1, p2) { + return p1 + '-' + p2.toLowerCase(); + } + + return function (s) { + return cache[s] || (cache[s] = s.replace(camelCaseRe, decamel)); + }; + }()), + + generateMarkup: function(spec, buffer) { + var me = this, + specType = typeof spec, + attr, val, tag, i, closeTags; + + if (specType == "string" || specType == "number") { + buffer.push(spec); + } else if (Ext.isArray(spec)) { + for (i = 0; i < spec.length; i++) { + if (spec[i]) { + me.generateMarkup(spec[i], buffer); + } + } + } else { + tag = spec.tag || 'div'; + buffer.push('<', tag); + + for (attr in spec) { + if (spec.hasOwnProperty(attr)) { + val = spec[attr]; + if (!me.confRe.test(attr)) { + if (typeof val == "object") { + buffer.push(' ', attr, '="'); + me.generateStyles(val, buffer).push('"'); + } else { + buffer.push(' ', me.attributeTransform[attr] || attr, '="', val, '"'); + } + } + } + } + + + if (me.emptyTags.test(tag)) { + buffer.push('/>'); + } else { + buffer.push('>'); + + + if ((val = spec.tpl)) { + val.applyOut(spec.tplData, buffer); + } + if ((val = spec.html)) { + buffer.push(val); + } + if ((val = spec.cn || spec.children)) { + me.generateMarkup(val, buffer); + } + + + closeTags = me.closeTags; + buffer.push(closeTags[tag] || (closeTags[tag] = '')); + } + } + + return buffer; + }, + + + generateStyles: function (styles, buffer) { + var a = buffer || [], + name; + + for (name in styles) { + if (styles.hasOwnProperty(name)) { + a.push(this.decamelizeName(name), ':', styles[name], ';'); + } + } + + return buffer || a.join(''); + }, + + + markup: function(spec) { + if (typeof spec == "string") { + return spec; + } + + var buf = this.generateMarkup(spec, []); + return buf.join(''); + }, + + + applyStyles: function(el, styles) { + if (styles) { + var i = 0, + len; + + el = Ext.fly(el, '_applyStyles'); + if (typeof styles == 'function') { + styles = styles.call(); + } + if (typeof styles == 'string') { + styles = Ext.util.Format.trim(styles).split(this.styleSepRe); + for (len = styles.length; i < len;) { + el.setStyle(styles[i++], styles[i++]); + } + } else if (Ext.isObject(styles)) { + el.setStyle(styles); + } + } + }, + + + insertHtml: function(where, el, html) { + var hash = {}, + setStart, + range, + frag, + rangeEl; + + where = where.toLowerCase(); + + + hash['beforebegin'] = ['BeforeBegin', 'previousSibling']; + hash['afterend'] = ['AfterEnd', 'nextSibling']; + + range = el.ownerDocument.createRange(); + setStart = 'setStart' + (this.endRe.test(where) ? 'After' : 'Before'); + if (hash[where]) { + range[setStart](el); + frag = range.createContextualFragment(html); + el.parentNode.insertBefore(frag, where == 'beforebegin' ? el : el.nextSibling); + return el[(where == 'beforebegin' ? 'previous' : 'next') + 'Sibling']; + } + else { + rangeEl = (where == 'afterbegin' ? 'first' : 'last') + 'Child'; + if (el.firstChild) { + range[setStart](el[rangeEl]); + frag = range.createContextualFragment(html); + if (where == 'afterbegin') { + el.insertBefore(frag, el.firstChild); + } + else { + el.appendChild(frag); + } + } + else { + el.innerHTML = html; + } + return el[rangeEl]; + } + + throw 'Illegal insertion point -> "' + where + '"'; + }, + + + insertBefore: function(el, o, returnElement) { + return this.doInsert(el, o, returnElement, 'beforebegin'); + }, + + + insertAfter: function(el, o, returnElement) { + return this.doInsert(el, o, returnElement, 'afterend', 'nextSibling'); + }, + + + insertFirst: function(el, o, returnElement) { + return this.doInsert(el, o, returnElement, 'afterbegin', 'firstChild'); + }, + + + append: function(el, o, returnElement) { + return this.doInsert(el, o, returnElement, 'beforeend', '', true); + }, + + + overwrite: function(el, o, returnElement) { + el = Ext.getDom(el); + el.innerHTML = this.markup(o); + return returnElement ? Ext.get(el.firstChild) : el.firstChild; + }, + + doInsert: function(el, o, returnElement, pos, sibling, append) { + var newNode = this.insertHtml(pos, Ext.getDom(el), this.markup(o)); + return returnElement ? Ext.get(newNode, true) : newNode; + } + +}); + + + +Ext.define('Ext.dom.AbstractElement_static', { + override: 'Ext.dom.AbstractElement', + + inheritableStatics: { + unitRe: /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i, + camelRe: /(-[a-z])/gi, + msRe: /^-ms-/, + cssRe: /([a-z0-9\-]+)\s*:\s*([^;\s]+(?:\s*[^;\s]+)*)?;?/gi, + opacityRe: /alpha\(opacity=(.*)\)/i, + propertyCache: {}, + defaultUnit : "px", + borders: {l: 'border-left-width', r: 'border-right-width', t: 'border-top-width', b: 'border-bottom-width'}, + paddings: {l: 'padding-left', r: 'padding-right', t: 'padding-top', b: 'padding-bottom'}, + margins: {l: 'margin-left', r: 'margin-right', t: 'margin-top', b: 'margin-bottom'}, + + addUnits: function(size, units) { + + if (typeof size == 'number') { + return size + (units || this.defaultUnit || 'px'); + } + + + if (size === "" || size == "auto" || size === undefined || size === null) { + return size || ''; + } + + + if (!this.unitRe.test(size)) { + return size || ''; + } + + return size; + }, + + + isAncestor: function(p, c) { + var ret = false; + + p = Ext.getDom(p); + c = Ext.getDom(c); + if (p && c) { + if (p.contains) { + return p.contains(c); + } else if (p.compareDocumentPosition) { + return !!(p.compareDocumentPosition(c) & 16); + } else { + while ((c = c.parentNode)) { + ret = c == p || ret; + } + } + } + return ret; + }, + + + parseBox: function(box) { + box = box || 0; + + var type = typeof box, + parts, + ln; + + if (type === 'number') { + return { + top : box, + right : box, + bottom: box, + left : box + }; + } else if (type !== 'string') { + + return box; + } + + parts = box.split(' '); + ln = parts.length; + + if (ln == 1) { + parts[1] = parts[2] = parts[3] = parts[0]; + } else if (ln == 2) { + parts[2] = parts[0]; + parts[3] = parts[1]; + } else if (ln == 3) { + parts[3] = parts[1]; + } + + return { + top :parseFloat(parts[0]) || 0, + right :parseFloat(parts[1]) || 0, + bottom:parseFloat(parts[2]) || 0, + left :parseFloat(parts[3]) || 0 + }; + }, + + + unitizeBox: function(box, units) { + var a = this.addUnits, + b = this.parseBox(box); + + return a(b.top, units) + ' ' + + a(b.right, units) + ' ' + + a(b.bottom, units) + ' ' + + a(b.left, units); + + }, + + + camelReplaceFn: function(m, a) { + return a.charAt(1).toUpperCase(); + }, + + + normalize: function(prop) { + + if (prop == 'float') { + prop = Ext.supports.Float ? 'cssFloat' : 'styleFloat'; + } + + return this.propertyCache[prop] || (this.propertyCache[prop] = prop.replace(this.msRe, 'ms-').replace(this.camelRe, this.camelReplaceFn)); + }, + + + getDocumentHeight: function() { + return Math.max(!Ext.isStrict ? document.body.scrollHeight : document.documentElement.scrollHeight, this.getViewportHeight()); + }, + + + getDocumentWidth: function() { + return Math.max(!Ext.isStrict ? document.body.scrollWidth : document.documentElement.scrollWidth, this.getViewportWidth()); + }, + + + getViewportHeight: function(){ + return window.innerHeight; + }, + + + getViewportWidth: function() { + return window.innerWidth; + }, + + + getViewSize: function() { + return { + width: window.innerWidth, + height: window.innerHeight + }; + }, + + + getOrientation: function() { + if (Ext.supports.OrientationChange) { + return (window.orientation == 0) ? 'portrait' : 'landscape'; + } + + return (window.innerHeight > window.innerWidth) ? 'portrait' : 'landscape'; + }, + + + fromPoint: function(x, y) { + return Ext.get(document.elementFromPoint(x, y)); + }, + + + parseStyles: function(styles){ + var out = {}, + cssRe = this.cssRe, + matches; + + if (styles) { + + + + + cssRe.lastIndex = 0; + while ((matches = cssRe.exec(styles))) { + out[matches[1]] = matches[2]||''; + } + } + return out; + } + } +}, +function () { + var doc = document, + activeElement = null, + isCSS1 = doc.compatMode == "CSS1Compat"; + + + + + if (!('activeElement' in doc) && doc.addEventListener) { + doc.addEventListener('focus', + function (ev) { + if (ev && ev.target) { + activeElement = (ev.target == doc) ? null : ev.target; + } + }, true); + } + + + function makeSelectionRestoreFn (activeEl, start, end) { + return function () { + activeEl.selectionStart = start; + activeEl.selectionEnd = end; + }; + } + + this.addInheritableStatics({ + + getActiveElement: function () { + var active; + + + + try { + active = doc.activeElement; + } catch(e) {} + + + + active = active || activeElement; + if (!active) { + active = activeElement = document.body; + } + return active; + }, + + + getRightMarginFixCleaner: function (target) { + var supports = Ext.supports, + hasInputBug = supports.DisplayChangeInputSelectionBug, + hasTextAreaBug = supports.DisplayChangeTextAreaSelectionBug, + activeEl, + tag, + start, + end; + + if (hasInputBug || hasTextAreaBug) { + activeEl = doc.activeElement || activeElement; + tag = activeEl && activeEl.tagName; + + if ((hasTextAreaBug && tag == 'TEXTAREA') || + (hasInputBug && tag == 'INPUT' && activeEl.type == 'text')) { + if (Ext.dom.Element.isAncestor(target, activeEl)) { + start = activeEl.selectionStart; + end = activeEl.selectionEnd; + + if (Ext.isNumber(start) && Ext.isNumber(end)) { + + + + + return makeSelectionRestoreFn(activeEl, start, end); + } + } + } + } + + return Ext.emptyFn; + }, + + getViewWidth: function(full) { + return full ? Ext.dom.Element.getDocumentWidth() : Ext.dom.Element.getViewportWidth(); + }, + + getViewHeight: function(full) { + return full ? Ext.dom.Element.getDocumentHeight() : Ext.dom.Element.getViewportHeight(); + }, + + getDocumentHeight: function() { + return Math.max(!isCSS1 ? doc.body.scrollHeight : doc.documentElement.scrollHeight, Ext.dom.Element.getViewportHeight()); + }, + + getDocumentWidth: function() { + return Math.max(!isCSS1 ? doc.body.scrollWidth : doc.documentElement.scrollWidth, Ext.dom.Element.getViewportWidth()); + }, + + getViewportHeight: function(){ + return Ext.isIE9m ? + (Ext.isStrict ? doc.documentElement.clientHeight : doc.body.clientHeight) : + self.innerHeight; + }, + + getViewportWidth: function() { + return (!Ext.isStrict && !Ext.isOpera) ? doc.body.clientWidth : + Ext.isIE9m ? doc.documentElement.clientWidth : self.innerWidth; + }, + + + serializeForm: function(form) { + var fElements = form.elements || (document.forms[form] || Ext.getDom(form)).elements, + hasSubmit = false, + encoder = encodeURIComponent, + data = '', + eLen = fElements.length, + element, name, type, options, hasValue, e, + o, oLen, opt; + + for (e = 0; e < eLen; e++) { + element = fElements[e]; + name = element.name; + type = element.type; + options = element.options; + + if (!element.disabled && name) { + if (/select-(one|multiple)/i.test(type)) { + oLen = options.length; + for (o = 0; o < oLen; o++) { + opt = options[o]; + if (opt.selected) { + hasValue = opt.hasAttribute ? opt.hasAttribute('value') : opt.getAttributeNode('value').specified; + data += Ext.String.format("{0}={1}&", encoder(name), encoder(hasValue ? opt.value : opt.text)); + } + } + } else if (!(/file|undefined|reset|button/i.test(type))) { + if (!(/radio|checkbox/i.test(type) && !element.checked) && !(type == 'submit' && hasSubmit)) { + data += encoder(name) + '=' + encoder(element.value) + '&'; + hasSubmit = /submit/i.test(type); + } + } + } + } + return data.substr(0, data.length - 1); + } + }); +}); + + + +Ext.define('Ext.dom.AbstractElement_insertion', { + override: 'Ext.dom.AbstractElement', + + + appendChild: function(el, returnDom) { + var me = this, + insertEl, + eLen, e, oldUseDom; + + if (el.nodeType || el.dom || typeof el == 'string') { + el = Ext.getDom(el); + me.dom.appendChild(el); + return !returnDom ? Ext.get(el) : el; + } else if (el.length) { + + insertEl = Ext.fly(document.createDocumentFragment(), '_internal'); + eLen = el.length; + + + Ext.DomHelper.useDom = true; + for (e = 0; e < eLen; e++) { + insertEl.appendChild(el[e], returnDom); + } + Ext.DomHelper.useDom = oldUseDom; + me.dom.appendChild(insertEl.dom); + return returnDom ? insertEl.dom : insertEl; + } + else { + return me.createChild(el, null, returnDom); + } + }, + + + appendTo: function(el) { + Ext.getDom(el).appendChild(this.dom); + return this; + }, + + + insertBefore: function(el) { + el = Ext.getDom(el); + el.parentNode.insertBefore(this.dom, el); + return this; + }, + + + insertAfter: function(el) { + el = Ext.getDom(el); + el.parentNode.insertBefore(this.dom, el.nextSibling); + return this; + }, + + + insertFirst: function(el, returnDom) { + el = el || {}; + if (el.nodeType || el.dom || typeof el == 'string') { + el = Ext.getDom(el); + this.dom.insertBefore(el, this.dom.firstChild); + return !returnDom ? Ext.get(el) : el; + } + else { + return this.createChild(el, this.dom.firstChild, returnDom); + } + }, + + + insertSibling: function(el, where, returnDom) { + var me = this, + DomHelper = Ext.core.DomHelper, + oldUseDom = DomHelper.useDom, + isAfter = (where || 'before').toLowerCase() == 'after', + rt, insertEl, eLen, e; + + if (Ext.isArray(el)) { + + insertEl = Ext.fly(document.createDocumentFragment(), '_internal'); + eLen = el.length; + + + DomHelper.useDom = true; + for (e = 0; e < eLen; e++) { + rt = insertEl.appendChild(el[e], returnDom); + } + DomHelper.useDom = oldUseDom; + + + me.dom.parentNode.insertBefore(insertEl.dom, isAfter ? me.dom.nextSibling : me.dom); + return rt; + } + + el = el || {}; + + if (el.nodeType || el.dom) { + rt = me.dom.parentNode.insertBefore(Ext.getDom(el), isAfter ? me.dom.nextSibling : me.dom); + if (!returnDom) { + rt = Ext.get(rt); + } + } else { + if (isAfter && !me.dom.nextSibling) { + rt = DomHelper.append(me.dom.parentNode, el, !returnDom); + } else { + rt = DomHelper[isAfter ? 'insertAfter' : 'insertBefore'](me.dom, el, !returnDom); + } + } + return rt; + }, + + + replace: function(el) { + el = Ext.get(el); + this.insertBefore(el); + el.remove(); + return this; + }, + + + replaceWith: function(el){ + var me = this; + + if (el.nodeType || el.dom || typeof el == 'string') { + el = Ext.get(el); + me.dom.parentNode.insertBefore(el.dom, me.dom); + } else { + el = Ext.core.DomHelper.insertBefore(me.dom, el); + } + + delete Ext.cache[me.id]; + Ext.removeNode(me.dom); + me.id = Ext.id(me.dom = el); + Ext.dom.AbstractElement.addToCache(me.isFlyweight ? new Ext.dom.AbstractElement(me.dom) : me); + return me; + }, + + + createChild: function(config, insertBefore, returnDom) { + config = config || {tag:'div'}; + if (insertBefore) { + return Ext.core.DomHelper.insertBefore(insertBefore, config, returnDom !== true); + } + else { + return Ext.core.DomHelper.append(this.dom, config, returnDom !== true); + } + }, + + + wrap: function(config, returnDom, selector) { + var newEl = Ext.core.DomHelper.insertBefore(this.dom, config || {tag: "div"}, true), + target = newEl; + + if (selector) { + target = Ext.DomQuery.selectNode(selector, newEl.dom); + } + + target.appendChild(this.dom); + return returnDom ? newEl.dom : newEl; + }, + + + insertHtml: function(where, html, returnEl) { + var el = Ext.core.DomHelper.insertHtml(where, this.dom, html); + return returnEl ? Ext.get(el) : el; + } +}); + + + +Ext.define('Ext.dom.AbstractElement_style', { + + override: 'Ext.dom.AbstractElement' + +}, function() { + + var Element = this, + wordsRe = /\w/g, + spacesRe = /\s+/, + transparentRe = /^(?:transparent|(?:rgba[(](?:\s*\d+\s*[,]){3}\s*0\s*[)]))$/i, + + + + + hasClassList = Ext.supports.ClassList, + PADDING = 'padding', + MARGIN = 'margin', + BORDER = 'border', + LEFT_SUFFIX = '-left', + RIGHT_SUFFIX = '-right', + TOP_SUFFIX = '-top', + BOTTOM_SUFFIX = '-bottom', + WIDTH = '-width', + + borders = {l: BORDER + LEFT_SUFFIX + WIDTH, r: BORDER + RIGHT_SUFFIX + WIDTH, t: BORDER + TOP_SUFFIX + WIDTH, b: BORDER + BOTTOM_SUFFIX + WIDTH}, + paddings = {l: PADDING + LEFT_SUFFIX, r: PADDING + RIGHT_SUFFIX, t: PADDING + TOP_SUFFIX, b: PADDING + BOTTOM_SUFFIX}, + margins = {l: MARGIN + LEFT_SUFFIX, r: MARGIN + RIGHT_SUFFIX, t: MARGIN + TOP_SUFFIX, b: MARGIN + BOTTOM_SUFFIX}, + internalFly = new Element.Fly(); + + + Ext.override(Element, { + + + styleHooks: {}, + + + addStyles : function(sides, styles){ + var totalSize = 0, + sidesArr = (sides || '').match(wordsRe), + i, + len = sidesArr.length, + side, + styleSides = []; + + if (len == 1) { + totalSize = Math.abs(parseFloat(this.getStyle(styles[sidesArr[0]])) || 0); + } else if (len) { + for (i = 0; i < len; i++) { + side = sidesArr[i]; + styleSides.push(styles[side]); + } + + styleSides = this.getStyle(styleSides); + + for (i=0; i < len; i++) { + side = sidesArr[i]; + totalSize += Math.abs(parseFloat(styleSides[styles[side]]) || 0); + } + } + + return totalSize; + }, + + + addCls: (function(){ + var addWithClassList = function(className) { + var me = this, + dom = me.dom, + trimRe = me.trimRe, + origClassName = className, + classList, + newCls, + i, + len, + cls; + + if (typeof(className) == 'string') { + + className = className.replace(trimRe, '').split(spacesRe); + } + + + + if (dom && className && !!(len = className.length)) { + if (!dom.className) { + dom.className = className.join(' '); + } else { + classList = dom.classList; + if (classList) { + for (i = 0; i < len; ++i) { + cls = className[i]; + if (cls) { + if (!classList.contains(cls)) { + if (newCls) { + newCls.push(cls); + } else { + newCls = dom.className.replace(trimRe, ''); + newCls = newCls ? [newCls, cls] : [cls]; + } + } + } + } + + if (newCls) { + dom.className = newCls.join(' '); + } + } else { + addWithoutClassList(origClassName); + } + } + } + return me; + }, addWithoutClassList = function(className) { + var me = this, + dom = me.dom, + elClasses; + + if (dom && className && className.length) { + elClasses = Ext.Element.mergeClsList(dom.className, className); + if (elClasses.changed) { + dom.className = elClasses.join(' '); + } + } + return me; + }; + + return hasClassList ? addWithClassList : addWithoutClassList; + })(), + + + + removeCls: function(className) { + var me = this, + dom = me.dom, + classList, + len, + elClasses; + + if (typeof(className) == 'string') { + + className = className.replace(me.trimRe, '').split(spacesRe); + } + + if (dom && dom.className && className && !!(len = className.length)) { + classList = dom.classList; + if (len === 1 && classList) { + if (className[0]) { + classList.remove(className[0]); + } + } else { + elClasses = Ext.Element.removeCls(dom.className, className); + if (elClasses.changed) { + dom.className = elClasses.join(' '); + } + } + } + return me; + }, + + + radioCls: function(className) { + var cn = this.dom.parentNode.childNodes, + v, + i, len; + className = Ext.isArray(className) ? className: [className]; + for (i = 0, len = cn.length; i < len; i++) { + v = cn[i]; + if (v && v.nodeType == 1) { + internalFly.attach(v).removeCls(className); + } + } + return this.addCls(className); + }, + + + toggleCls: (function(){ + var toggleWithClassList = function(className){ + var me = this, + dom = me.dom, + classList; + + if (dom) { + className = className.replace(me.trimRe, ''); + if (className) { + classList = dom.classList; + if (classList) { + classList.toggle(className); + } else { + toggleWithoutClassList(className); + } + } + } + + return me; + }, toggleWithoutClassList = function(className){ + return this.hasCls(className) ? this.removeCls(className) : this.addCls(className); + }; + + return hasClassList ? toggleWithClassList : toggleWithoutClassList; + })(), + + + hasCls: (function(){ + var hasClsWithClassList = function(className) { + var dom = this.dom, + out = false, + classList; + + if (dom && className) { + classList = dom.classList; + if (classList) { + out = classList.contains(className); + } else { + out = hasClsWithoutClassList(className); + } + } + return out; + }, hasClsWithoutClassList = function(className){ + var dom = this.dom; + return dom ? className && (' '+dom.className+' ').indexOf(' '+className+' ') !== -1 : false; + }; + + return hasClassList ? hasClsWithClassList : hasClsWithoutClassList; + })(), + + + replaceCls: function(oldClassName, newClassName){ + return this.removeCls(oldClassName).addCls(newClassName); + }, + + + isStyle: function(style, val) { + return this.getStyle(style) == val; + }, + + + getStyle: function (property, inline) { + var me = this, + dom = me.dom, + multiple = typeof property != 'string', + hooks = me.styleHooks, + prop = property, + props = prop, + len = 1, + domStyle, camel, values, hook, out, style, i; + + if (multiple) { + values = {}; + prop = props[0]; + i = 0; + if (!(len = props.length)) { + return values; + } + } + + if (!dom || dom.documentElement) { + return values || ''; + } + + domStyle = dom.style; + + if (inline) { + style = domStyle; + } else { + + + + + style = dom.ownerDocument.defaultView.getComputedStyle(dom, null); + + + if (!style) { + inline = true; + style = domStyle; + } + } + + do { + hook = hooks[prop]; + + if (!hook) { + hooks[prop] = hook = { name: Element.normalize(prop) }; + } + + if (hook.get) { + out = hook.get(dom, me, inline, style); + } else { + camel = hook.name; + out = style[camel]; + } + + if (!multiple) { + return out; + } + + values[prop] = out; + prop = props[++i]; + } while (i < len); + + return values; + }, + + getStyles: function () { + var props = Ext.Array.slice(arguments), + len = props.length, + inline; + + if (len && typeof props[len-1] == 'boolean') { + inline = props.pop(); + } + + return this.getStyle(props, inline); + }, + + + isTransparent: function (prop) { + var value = this.getStyle(prop); + return value ? transparentRe.test(value) : false; + }, + + + setStyle: function(prop, value) { + var me = this, + dom = me.dom, + hooks = me.styleHooks, + style = dom.style, + name = prop, + hook; + + + if (typeof name == 'string') { + hook = hooks[name]; + if (!hook) { + hooks[name] = hook = { name: Element.normalize(name) }; + } + value = (value == null) ? '' : value; + if (hook.set) { + hook.set(dom, value, me); + } else { + style[hook.name] = value; + } + if (hook.afterSet) { + hook.afterSet(dom, value, me); + } + } else { + for (name in prop) { + if (prop.hasOwnProperty(name)) { + hook = hooks[name]; + if (!hook) { + hooks[name] = hook = { name: Element.normalize(name) }; + } + value = prop[name]; + value = (value == null) ? '' : value; + if (hook.set) { + hook.set(dom, value, me); + } else { + style[hook.name] = value; + } + if (hook.afterSet) { + hook.afterSet(dom, value, me); + } + } + } + } + + return me; + }, + + + getHeight: function(contentHeight) { + var dom = this.dom, + height = contentHeight ? (dom.clientHeight - this.getPadding("tb")) : dom.offsetHeight; + return height > 0 ? height: 0; + }, + + + getWidth: function(contentWidth) { + var dom = this.dom, + width = contentWidth ? (dom.clientWidth - this.getPadding("lr")) : dom.offsetWidth; + return width > 0 ? width: 0; + }, + + + setWidth: function(width) { + var me = this; + me.dom.style.width = Element.addUnits(width); + return me; + }, + + + setHeight: function(height) { + var me = this; + me.dom.style.height = Element.addUnits(height); + return me; + }, + + + getBorderWidth: function(side){ + return this.addStyles(side, borders); + }, + + + getPadding: function(side){ + return this.addStyles(side, paddings); + }, + + margins : margins, + + + applyStyles: function(styles) { + if (styles) { + var i, + len, + dom = this.dom; + + if (typeof styles == 'function') { + styles = styles.call(); + } + if (typeof styles == 'string') { + styles = Ext.util.Format.trim(styles).split(/\s*(?::|;)\s*/); + for (i = 0, len = styles.length; i < len;) { + dom.style[Element.normalize(styles[i++])] = styles[i++]; + } + } + else if (typeof styles == 'object') { + this.setStyle(styles); + } + } + }, + + + setSize: function(width, height) { + var me = this, + style = me.dom.style; + + if (Ext.isObject(width)) { + + height = width.height; + width = width.width; + } + + style.width = Element.addUnits(width); + style.height = Element.addUnits(height); + return me; + }, + + + getViewSize: function() { + var doc = document, + dom = this.dom; + + if (dom == doc || dom == doc.body) { + return { + width: Element.getViewportWidth(), + height: Element.getViewportHeight() + }; + } + else { + return { + width: dom.clientWidth, + height: dom.clientHeight + }; + } + }, + + + getSize: function(contentSize) { + var dom = this.dom; + return { + width: Math.max(0, contentSize ? (dom.clientWidth - this.getPadding("lr")) : dom.offsetWidth), + height: Math.max(0, contentSize ? (dom.clientHeight - this.getPadding("tb")) : dom.offsetHeight) + }; + }, + + + repaint: function() { + var dom = this.dom; + this.addCls(Ext.baseCSSPrefix + 'repaint'); + setTimeout(function(){ + internalFly.attach(dom).removeCls(Ext.baseCSSPrefix + 'repaint'); + }, 1); + return this; + }, + + + getMargin: function(side){ + var me = this, + hash = {t:"top", l:"left", r:"right", b: "bottom"}, + key, + o, + margins; + + if (!side) { + margins = []; + for (key in me.margins) { + if(me.margins.hasOwnProperty(key)) { + margins.push(me.margins[key]); + } + } + o = me.getStyle(margins); + if(o && typeof o == 'object') { + + for (key in me.margins) { + if(me.margins.hasOwnProperty(key)) { + o[hash[key]] = parseFloat(o[me.margins[key]]) || 0; + } + } + } + + return o; + } else { + return me.addStyles(side, me.margins); + } + }, + + + mask: function(msg, msgCls, transparent) { + var me = this, + dom = me.dom, + data = (me.$cache || me.getCache()).data, + el = data.mask, + mask, + size, + cls = '', + prefix = Ext.baseCSSPrefix; + + me.addCls(prefix + 'masked'); + if (me.getStyle("position") == "static") { + me.addCls(prefix + 'masked-relative'); + } + if (el) { + el.remove(); + } + if (msgCls && typeof msgCls == 'string' ) { + cls = ' ' + msgCls; + } + else { + cls = ' ' + prefix + 'mask-gray'; + } + + mask = me.createChild({ + cls: prefix + 'mask' + ((transparent !== false) ? '' : (' ' + prefix + 'mask-gray')), + html: msg ? ('
' + msg + '
') : '' + }); + + size = me.getSize(); + + data.mask = mask; + + if (dom === document.body) { + size.height = window.innerHeight; + if (me.orientationHandler) { + Ext.EventManager.unOrientationChange(me.orientationHandler, me); + } + + me.orientationHandler = function() { + size = me.getSize(); + size.height = window.innerHeight; + mask.setSize(size); + }; + + Ext.EventManager.onOrientationChange(me.orientationHandler, me); + } + mask.setSize(size); + if (Ext.is.iPad) { + Ext.repaint(); + } + }, + + + unmask: function() { + var me = this, + data = (me.$cache || me.getCache()).data, + mask = data.mask, + prefix = Ext.baseCSSPrefix; + + if (mask) { + mask.remove(); + delete data.mask; + } + me.removeCls([prefix + 'masked', prefix + 'masked-relative']); + + if (me.dom === document.body) { + Ext.EventManager.unOrientationChange(me.orientationHandler, me); + delete me.orientationHandler; + } + } + }); + + + Ext.onReady(function () { + var supports = Ext.supports, + styleHooks, + colorStyles, i, name, camel; + + function fixTransparent (dom, el, inline, style) { + var value = style[this.name] || ''; + return transparentRe.test(value) ? 'transparent' : value; + } + + function fixRightMargin (dom, el, inline, style) { + var result = style.marginRight, + domStyle, display; + + + + if (result != '0px') { + domStyle = dom.style; + display = domStyle.display; + domStyle.display = 'inline-block'; + result = (inline ? style : dom.ownerDocument.defaultView.getComputedStyle(dom, null)).marginRight; + domStyle.display = display; + } + + return result; + } + + function fixRightMarginAndInputFocus (dom, el, inline, style) { + var result = style.marginRight, + domStyle, cleaner, display; + + if (result != '0px') { + domStyle = dom.style; + cleaner = Element.getRightMarginFixCleaner(dom); + display = domStyle.display; + domStyle.display = 'inline-block'; + result = (inline ? style : dom.ownerDocument.defaultView.getComputedStyle(dom, '')).marginRight; + domStyle.display = display; + cleaner(); + } + + return result; + } + + styleHooks = Element.prototype.styleHooks; + + + + if (supports.init) { + supports.init(); + } + + + if (!supports.RightMargin) { + styleHooks.marginRight = styleHooks['margin-right'] = { + name: 'marginRight', + + + get: (supports.DisplayChangeInputSelectionBug || supports.DisplayChangeTextAreaSelectionBug) ? + fixRightMarginAndInputFocus : fixRightMargin + }; + } + + if (!supports.TransparentColor) { + colorStyles = ['background-color', 'border-color', 'color', 'outline-color']; + for (i = colorStyles.length; i--; ) { + name = colorStyles[i]; + camel = Element.normalize(name); + + styleHooks[name] = styleHooks[camel] = { + name: camel, + get: fixTransparent + }; + } + } + }); + +}); + + + +Ext.define('Ext.dom.AbstractElement_traversal', { + override: 'Ext.dom.AbstractElement', + + + findParent: function(simpleSelector, limit, returnEl) { + var target = this.dom, + topmost = document.documentElement, + depth = 0, + stopEl; + + limit = limit || 50; + if (isNaN(limit)) { + stopEl = Ext.getDom(limit); + limit = Number.MAX_VALUE; + } + while (target && target.nodeType == 1 && depth < limit && target != topmost && target != stopEl) { + if (Ext.DomQuery.is(target, simpleSelector)) { + return returnEl ? Ext.get(target) : target; + } + depth++; + target = target.parentNode; + } + return null; + }, + + + findParentNode: function(simpleSelector, limit, returnEl) { + var p = Ext.fly(this.dom.parentNode, '_internal'); + return p ? p.findParent(simpleSelector, limit, returnEl) : null; + }, + + + up: function(simpleSelector, limit, returnDom) { + return this.findParentNode(simpleSelector, limit, !returnDom); + }, + + + select: function(selector, composite) { + return Ext.dom.Element.select(selector, this.dom, composite); + }, + + + query: function(selector) { + return Ext.DomQuery.select(selector, this.dom); + }, + + + down: function(selector, returnDom) { + var n = Ext.DomQuery.selectNode(selector, this.dom); + return returnDom ? n : Ext.get(n); + }, + + + child: function(selector, returnDom) { + var node, + me = this, + id; + + + + id = Ext.id(me.dom); + + id = Ext.escapeId(id); + node = Ext.DomQuery.selectNode('#' + id + " > " + selector, me.dom); + return returnDom ? node : Ext.get(node); + }, + + + parent: function(selector, returnDom) { + return this.matchNode('parentNode', 'parentNode', selector, returnDom); + }, + + + next: function(selector, returnDom) { + return this.matchNode('nextSibling', 'nextSibling', selector, returnDom); + }, + + + prev: function(selector, returnDom) { + return this.matchNode('previousSibling', 'previousSibling', selector, returnDom); + }, + + + + first: function(selector, returnDom) { + return this.matchNode('nextSibling', 'firstChild', selector, returnDom); + }, + + + last: function(selector, returnDom) { + return this.matchNode('previousSibling', 'lastChild', selector, returnDom); + }, + + matchNode: function(dir, start, selector, returnDom) { + if (!this.dom) { + return null; + } + + var n = this.dom[start]; + while (n) { + if (n.nodeType == 1 && (!selector || Ext.DomQuery.is(n, selector))) { + return !returnDom ? Ext.get(n) : n; + } + n = n[dir]; + } + return null; + }, + + isAncestor: function(element) { + return this.self.isAncestor.call(this.self, this.dom, element); + } +}); + + + + + +Ext.define('Ext.dom.AbstractElement', { + + + + + + + + + trimRe: /^\s+|\s+$/g, + whitespaceRe: /\s/, + + inheritableStatics: { + trimRe: /^\s+|\s+$/g, + whitespaceRe: /\s/, + + + get: function(el) { + var me = this, + document = window.document, + El = Ext.dom.Element, + cacheItem, + docEl, + extEl, + dom, + id; + + if (!el) { + return null; + } + + + if (el.isFly) { + el = el.dom; + } + + if (typeof el == "string") { + if (el == Ext.windowId) { + return El.get(window); + } else if (el == Ext.documentId) { + return El.get(document); + } + + cacheItem = Ext.cache[el]; + + + + + if (cacheItem && cacheItem.skipGarbageCollection) { + extEl = cacheItem.el; + return extEl; + } + + if (!(dom = document.getElementById(el))) { + return null; + } + + if (cacheItem && cacheItem.el) { + extEl = Ext.updateCacheEntry(cacheItem, dom).el; + } else { + + extEl = new El(dom, !!cacheItem); + } + return extEl; + } else if (el.tagName) { + if (!(id = el.id)) { + id = Ext.id(el); + } + cacheItem = Ext.cache[id]; + if (cacheItem && cacheItem.el) { + extEl = Ext.updateCacheEntry(cacheItem, el).el; + } else { + + extEl = new El(el, !!cacheItem); + } + return extEl; + } else if (el instanceof me) { + if (el != me.docEl && el != me.winEl) { + id = el.id; + + + cacheItem = Ext.cache[id]; + if (cacheItem) { + Ext.updateCacheEntry(cacheItem, document.getElementById(id) || el.dom); + } + } + return el; + } else if (el.isComposite) { + return el; + } else if (Ext.isArray(el)) { + return me.select(el); + } else if (el === document) { + + if (!me.docEl) { + docEl = me.docEl = Ext.Object.chain(El.prototype); + docEl.dom = document; + + + + docEl.el = docEl; + docEl.id = Ext.id(document); + me.addToCache(docEl); + } + return me.docEl; + } else if (el === window) { + if (!me.winEl) { + me.winEl = Ext.Object.chain(El.prototype); + me.winEl.dom = window; + me.winEl.id = Ext.id(window); + me.addToCache(me.winEl); + } + return me.winEl; + } + return null; + }, + + addToCache: function(el, id) { + if (el) { + Ext.addCacheEntry(id, el); + } + return el; + }, + + addMethods: function() { + this.override.apply(this, arguments); + }, + + + mergeClsList: function() { + var clsList, clsHash = {}, + i, length, j, listLength, clsName, result = [], + changed = false, + trimRe = this.trimRe, + whitespaceRe = this.whitespaceRe; + + for (i = 0, length = arguments.length; i < length; i++) { + clsList = arguments[i]; + if (Ext.isString(clsList)) { + clsList = clsList.replace(trimRe, '').split(whitespaceRe); + } + if (clsList) { + for (j = 0, listLength = clsList.length; j < listLength; j++) { + clsName = clsList[j]; + if (!clsHash[clsName]) { + if (i) { + changed = true; + } + clsHash[clsName] = true; + } + } + } + } + + for (clsName in clsHash) { + result.push(clsName); + } + result.changed = changed; + return result; + }, + + + removeCls: function(existingClsList, removeClsList) { + var clsHash = {}, + i, length, clsName, result = [], + changed = false, + whitespaceRe = this.whitespaceRe; + + if (existingClsList) { + if (Ext.isString(existingClsList)) { + existingClsList = existingClsList.replace(this.trimRe, '').split(whitespaceRe); + } + for (i = 0, length = existingClsList.length; i < length; i++) { + clsHash[existingClsList[i]] = true; + } + } + if (removeClsList) { + if (Ext.isString(removeClsList)) { + removeClsList = removeClsList.split(whitespaceRe); + } + for (i = 0, length = removeClsList.length; i < length; i++) { + clsName = removeClsList[i]; + if (clsHash[clsName]) { + changed = true; + delete clsHash[clsName]; + } + } + } + for (clsName in clsHash) { + result.push(clsName); + } + result.changed = changed; + return result; + }, + + + VISIBILITY: 1, + + + DISPLAY: 2, + + + OFFSETS: 3, + + + ASCLASS: 4 + }, + + constructor: function(element, forceNew) { + var me = this, + dom = typeof element == 'string' + ? document.getElementById(element) + : element, + id; + + + + + me.el = me; + + if (!dom) { + return null; + } + + id = dom.id; + if (!forceNew && id && Ext.cache[id]) { + + return Ext.cache[id].el; + } + + + me.dom = dom; + + + me.id = id || Ext.id(dom); + + me.self.addToCache(me); + }, + + + set: function(o, useSet) { + var el = this.dom, + attr, + value; + + for (attr in o) { + if (o.hasOwnProperty(attr)) { + value = o[attr]; + if (attr == 'style') { + this.applyStyles(value); + } + else if (attr == 'cls') { + el.className = value; + } + else if (useSet !== false) { + if (value === undefined) { + el.removeAttribute(attr); + } else { + el.setAttribute(attr, value); + } + } + else { + el[attr] = value; + } + } + } + return this; + }, + + + defaultUnit: "px", + + + is: function(simpleSelector) { + return Ext.DomQuery.is(this.dom, simpleSelector); + }, + + + getValue: function(asNumber) { + var val = this.dom.value; + return asNumber ? parseInt(val, 10) : val; + }, + + + remove: function() { + var me = this, + dom = me.dom; + + if (me.isAnimate) { + me.stopAnimation(); + } + + if (dom) { + Ext.removeNode(dom); + delete me.dom; + } + }, + + + contains: function(el) { + if (!el) { + return false; + } + + var me = this, + dom = el.dom || el; + + + return (dom === me.dom) || Ext.dom.AbstractElement.isAncestor(me.dom, dom); + }, + + + getAttribute: function(name, ns) { + var dom = this.dom; + return dom.getAttributeNS(ns, name) || dom.getAttribute(ns + ":" + name) || dom.getAttribute(name) || dom[name]; + }, + + + update: function(html) { + if (this.dom) { + this.dom.innerHTML = html; + } + return this; + }, + + + + setHTML: function(html) { + if(this.dom) { + this.dom.innerHTML = html; + } + return this; + }, + + + getHTML: function() { + return this.dom ? this.dom.innerHTML : ''; + }, + + + hide: function() { + this.setVisible(false); + return this; + }, + + + show: function() { + this.setVisible(true); + return this; + }, + + + setVisible: function(visible, animate) { + var me = this, + statics = me.self, + mode = me.getVisibilityMode(), + prefix = Ext.baseCSSPrefix; + + switch (mode) { + case statics.VISIBILITY: + me.removeCls([prefix + 'hidden-display', prefix + 'hidden-offsets']); + me[visible ? 'removeCls' : 'addCls'](prefix + 'hidden-visibility'); + break; + + case statics.DISPLAY: + me.removeCls([prefix + 'hidden-visibility', prefix + 'hidden-offsets']); + me[visible ? 'removeCls' : 'addCls'](prefix + 'hidden-display'); + break; + + case statics.OFFSETS: + me.removeCls([prefix + 'hidden-visibility', prefix + 'hidden-display']); + me[visible ? 'removeCls' : 'addCls'](prefix + 'hidden-offsets'); + break; + } + + return me; + }, + + getVisibilityMode: function() { + + + + var data = (this.$cache || this.getCache()).data, + visMode = data.visibilityMode; + + if (visMode === undefined) { + data.visibilityMode = visMode = this.self.DISPLAY; + } + + return visMode; + }, + + + setVisibilityMode: function(mode) { + (this.$cache || this.getCache()).data.visibilityMode = mode; + return this; + }, + + getCache: function() { + var me = this, + id = me.dom.id || Ext.id(me.dom); + + + + + me.$cache = Ext.cache[id] || Ext.addCacheEntry(id, null, me.dom); + + return me.$cache; + } +}, +function() { + var AbstractElement = this; + + + Ext.getDetachedBody = function () { + var detachedEl = AbstractElement.detachedBodyEl; + + if (!detachedEl) { + detachedEl = document.createElement('div'); + AbstractElement.detachedBodyEl = detachedEl = new AbstractElement.Fly(detachedEl); + detachedEl.isDetachedBody = true; + } + + return detachedEl; + }; + + + Ext.getElementById = function (id) { + var el = document.getElementById(id), + detachedBodyEl; + + if (!el && (detachedBodyEl = AbstractElement.detachedBodyEl)) { + el = detachedBodyEl.dom.querySelector('#' + Ext.escapeId(id)); + } + + return el; + }; + + + Ext.get = function(el) { + return Ext.dom.Element.get(el); + }; + + this.addStatics({ + + Fly: new Ext.Class({ + + + + + extend: AbstractElement, + + + isFly: true, + + constructor: function(dom) { + this.dom = dom; + + + + this.el = this; + }, + + + attach: function (dom) { + + + this.dom = dom; + + + this.$cache = dom.id ? Ext.cache[dom.id] : null; + return this; + } + }), + + _flyweights: {}, + + + fly: function(dom, named) { + var fly = null, + _flyweights = AbstractElement._flyweights; + + named = named || '_global'; + + dom = Ext.getDom(dom); + + if (dom) { + fly = _flyweights[named] || (_flyweights[named] = new AbstractElement.Fly()); + + + + fly.dom = dom; + + + fly.$cache = dom.id ? Ext.cache[dom.id] : null; + } + return fly; + } + }); + + + Ext.fly = function() { + return AbstractElement.fly.apply(AbstractElement, arguments); + }; + + (function (proto) { + + proto.destroy = proto.remove; + + + if (document.querySelector) { + proto.getById = function (id, asDom) { + + + var dom = document.getElementById(id) || + this.dom.querySelector('#'+Ext.escapeId(id)); + return asDom ? dom : (dom ? Ext.get(dom) : null); + }; + } else { + proto.getById = function (id, asDom) { + var dom = document.getElementById(id); + return asDom ? dom : (dom ? Ext.get(dom) : null); + }; + } + }(this.prototype)); +}); + + + + + + + +Ext.define('Ext.dom.Helper', (function() { + + +var afterbegin = 'afterbegin', + afterend = 'afterend', + beforebegin = 'beforebegin', + beforeend = 'beforeend', + ts = '', + te = '
', + tbs = ts+'', + tbe = ''+te, + trs = tbs + '', + tre = ''+tbe, + detachedDiv = document.createElement('div'), + bbValues = ['BeforeBegin', 'previousSibling'], + aeValues = ['AfterEnd', 'nextSibling'], + bb_ae_PositionHash = { + beforebegin: bbValues, + afterend: aeValues + }, + fullPositionHash = { + beforebegin: bbValues, + afterend: aeValues, + afterbegin: ['AfterBegin', 'firstChild'], + beforeend: ['BeforeEnd', 'lastChild'] + }; + + +return { + extend: Ext.dom.AbstractHelper , + + + tableRe: /^(?:table|thead|tbody|tr|td)$/i, + + tableElRe: /td|tr|tbody|thead/i, + + + useDom : false, + + + createDom: function(o, parentNode){ + var el, + doc = document, + useSet, + attr, + val, + cn, + i, l; + + if (Ext.isArray(o)) { + el = doc.createDocumentFragment(); + for (i = 0, l = o.length; i < l; i++) { + this.createDom(o[i], el); + } + } else if (typeof o == 'string') { + el = doc.createTextNode(o); + } else { + el = doc.createElement(o.tag || 'div'); + useSet = !!el.setAttribute; + for (attr in o) { + if (!this.confRe.test(attr)) { + val = o[attr]; + if (attr == 'cls') { + el.className = val; + } else { + if (useSet) { + el.setAttribute(attr, val); + } else { + el[attr] = val; + } + } + } + } + Ext.DomHelper.applyStyles(el, o.style); + + if ((cn = o.children || o.cn)) { + this.createDom(cn, el); + } else if (o.html) { + el.innerHTML = o.html; + } + } + if (parentNode) { + parentNode.appendChild(el); + } + return el; + }, + + ieTable: function(depth, openingTags, htmlContent, closingTags){ + detachedDiv.innerHTML = [openingTags, htmlContent, closingTags].join(''); + + var i = -1, + el = detachedDiv, + ns; + + while (++i < depth) { + el = el.firstChild; + } + + ns = el.nextSibling; + + if (ns) { + ns = el; + el = document.createDocumentFragment(); + + while (ns) { + nx = ns.nextSibling; + el.appendChild(ns); + ns = nx; + } + } + return el; + }, + + + insertIntoTable: function(tag, where, destinationEl, html) { + var node, + before, + bb = where == beforebegin, + ab = where == afterbegin, + be = where == beforeend, + ae = where == afterend; + + if (tag == 'td' && (ab || be) || !this.tableElRe.test(tag) && (bb || ae)) { + return null; + } + before = bb ? destinationEl : + ae ? destinationEl.nextSibling : + ab ? destinationEl.firstChild : null; + + if (bb || ae) { + destinationEl = destinationEl.parentNode; + } + + if (tag == 'td' || (tag == 'tr' && (be || ab))) { + node = this.ieTable(4, trs, html, tre); + } else if (((tag == 'tbody' || tag == 'thead') && (be || ab)) || + (tag == 'tr' && (bb || ae))) { + node = this.ieTable(3, tbs, html, tbe); + } else { + node = this.ieTable(2, ts, html, te); + } + destinationEl.insertBefore(node, before); + return node; + }, + + + createContextualFragment: function(html) { + var fragment = document.createDocumentFragment(), + length, childNodes; + + detachedDiv.innerHTML = html; + childNodes = detachedDiv.childNodes; + length = childNodes.length; + + + while (length--) { + fragment.appendChild(childNodes[0]); + } + return fragment; + }, + + applyStyles: function(el, styles) { + if (styles) { + if (typeof styles == "function") { + styles = styles.call(); + } + if (typeof styles == "string") { + styles = Ext.dom.Element.parseStyles(styles); + } + if (typeof styles == "object") { + Ext.fly(el, '_applyStyles').setStyle(styles); + } + } + }, + + + createHtml: function(spec) { + return this.markup(spec); + }, + + doInsert: function(el, o, returnElement, pos, sibling, append) { + + el = el.dom || Ext.getDom(el); + + var newNode; + + if (this.useDom) { + newNode = this.createDom(o, null); + + if (append) { + el.appendChild(newNode); + } + else { + (sibling == 'firstChild' ? el : el.parentNode).insertBefore(newNode, el[sibling] || el); + } + + } else { + newNode = this.insertHtml(pos, el, this.markup(o)); + } + return returnElement ? Ext.get(newNode, true) : newNode; + }, + + + overwrite: function(el, html, returnElement) { + var newNode; + + el = Ext.getDom(el); + html = this.markup(html); + + + if (Ext.isIE && this.tableRe.test(el.tagName)) { + + while (el.firstChild) { + el.removeChild(el.firstChild); + } + if (html) { + newNode = this.insertHtml('afterbegin', el, html); + return returnElement ? Ext.get(newNode) : newNode; + } + return null; + } + el.innerHTML = html; + return returnElement ? Ext.get(el.firstChild) : el.firstChild; + }, + + insertHtml: function(where, el, html) { + var hashVal, + range, + rangeEl, + setStart, + frag; + + where = where.toLowerCase(); + + + if (el.insertAdjacentHTML) { + + + if (Ext.isIE && this.tableRe.test(el.tagName) && (frag = this.insertIntoTable(el.tagName.toLowerCase(), where, el, html))) { + return frag; + } + + if ((hashVal = fullPositionHash[where])) { + + if (Ext.global.MSApp && Ext.global.MSApp.execUnsafeLocalFunction) { + + MSApp.execUnsafeLocalFunction(function () { + el.insertAdjacentHTML(hashVal[0], html); + }); + } else { + el.insertAdjacentHTML(hashVal[0], html); + } + + return el[hashVal[1]]; + } + + } else { + + if (el.nodeType === 3) { + where = where === 'afterbegin' ? 'beforebegin' : where; + where = where === 'beforeend' ? 'afterend' : where; + } + range = Ext.supports.CreateContextualFragment ? el.ownerDocument.createRange() : undefined; + setStart = 'setStart' + (this.endRe.test(where) ? 'After' : 'Before'); + if (bb_ae_PositionHash[where]) { + if (range) { + range[setStart](el); + frag = range.createContextualFragment(html); + } else { + frag = this.createContextualFragment(html); + } + el.parentNode.insertBefore(frag, where == beforebegin ? el : el.nextSibling); + return el[(where == beforebegin ? 'previous' : 'next') + 'Sibling']; + } else { + rangeEl = (where == afterbegin ? 'first' : 'last') + 'Child'; + if (el.firstChild) { + if (range) { + range[setStart](el[rangeEl]); + frag = range.createContextualFragment(html); + } else { + frag = this.createContextualFragment(html); + } + + if (where == afterbegin) { + el.insertBefore(frag, el.firstChild); + } else { + el.appendChild(frag); + } + } else { + el.innerHTML = html; + } + return el[rangeEl]; + } + } + }, + + + createTemplate: function(o) { + var html = this.markup(o); + return new Ext.Template(html); + } + +}; +})(), function() { + Ext.ns('Ext.core'); + Ext.DomHelper = Ext.core.DomHelper = new this; +}); + + + +Ext.define('Ext.Template', { + + + + + + inheritableStatics: { + + from: function(el, config) { + el = Ext.getDom(el); + return new this(el.value || el.innerHTML, config || ''); + } + }, + + + + + constructor: function(html) { + var me = this, + args = arguments, + buffer = [], + i = 0, + length = args.length, + value; + + me.initialConfig = {}; + + + + + if (length === 1 && Ext.isArray(html)) { + args = html; + length = args.length; + } + + if (length > 1) { + for (; i < length; i++) { + value = args[i]; + if (typeof value == 'object') { + Ext.apply(me.initialConfig, value); + Ext.apply(me, value); + } else { + buffer.push(value); + } + } + } else { + buffer.push(html); + } + + + me.html = buffer.join(''); + + if (me.compiled) { + me.compile(); + } + }, + + + isTemplate: true, + + + + + disableFormats: false, + + re: /\{([\w\-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g, + + + apply: function(values) { + var me = this, + useFormat = me.disableFormats !== true, + fm = Ext.util.Format, + tpl = me, + ret; + + if (me.compiled) { + return me.compiled(values).join(''); + } + + function fn(m, name, format, args) { + if (format && useFormat) { + if (args) { + args = [values[name]].concat(Ext.functionFactory('return ['+ args +'];')()); + } else { + args = [values[name]]; + } + if (format.substr(0, 5) == "this.") { + return tpl[format.substr(5)].apply(tpl, args); + } + else { + return fm[format].apply(fm, args); + } + } + else { + return values[name] !== undefined ? values[name] : ""; + } + } + + ret = me.html.replace(me.re, fn); + return ret; + }, + + + applyOut: function(values, out) { + var me = this; + + if (me.compiled) { + out.push.apply(out, me.compiled(values)); + } else { + out.push(me.apply(values)); + } + + return out; + }, + + + applyTemplate: function () { + return this.apply.apply(this, arguments); + }, + + + set: function(html, compile) { + var me = this; + me.html = html; + me.compiled = null; + return compile ? me.compile() : me; + }, + + compileARe: /\\/g, + compileBRe: /(\r\n|\n)/g, + compileCRe: /'/g, + + /** + * Compiles the template into an internal function, eliminating the RegEx overhead. + * @return {Ext.Template} this + */ + compile: function() { + var me = this, + fm = Ext.util.Format, + useFormat = me.disableFormats !== true, + body, bodyReturn; + + function fn(m, name, format, args) { + if (format && useFormat) { + args = args ? ',' + args: ""; + if (format.substr(0, 5) != "this.") { + format = "fm." + format + '('; + } + else { + format = 'this.' + format.substr(5) + '('; + } + } + else { + args = ''; + format = "(values['" + name + "'] == undefined ? '' : "; + } + return "'," + format + "values['" + name + "']" + args + ") ,'"; + } + + bodyReturn = me.html.replace(me.compileARe, '\\\\').replace(me.compileBRe, '\\n').replace(me.compileCRe, "\\'").replace(me.re, fn); + body = "this.compiled = function(values){ return ['" + bodyReturn + "'];};"; + eval(body); + return me; + }, + + /** + * Applies the supplied values to the template and inserts the new node(s) as the first child of el. + * + * @param {String/HTMLElement/Ext.Element} el The context element + * @param {Object/Array} values The template values. See {@link #applyTemplate} for details. + * @param {Boolean} returnElement (optional) true to return a Ext.Element. + * @return {HTMLElement/Ext.Element} The new node or Element + */ + insertFirst: function(el, values, returnElement) { + return this.doInsert('afterBegin', el, values, returnElement); + }, + + /** + * Applies the supplied values to the template and inserts the new node(s) before el. + * + * @param {String/HTMLElement/Ext.Element} el The context element + * @param {Object/Array} values The template values. See {@link #applyTemplate} for details. + * @param {Boolean} returnElement (optional) true to return a Ext.Element. + * @return {HTMLElement/Ext.Element} The new node or Element + */ + insertBefore: function(el, values, returnElement) { + return this.doInsert('beforeBegin', el, values, returnElement); + }, + + /** + * Applies the supplied values to the template and inserts the new node(s) after el. + * + * @param {String/HTMLElement/Ext.Element} el The context element + * @param {Object/Array} values The template values. See {@link #applyTemplate} for details. + * @param {Boolean} returnElement (optional) true to return a Ext.Element. + * @return {HTMLElement/Ext.Element} The new node or Element + */ + insertAfter: function(el, values, returnElement) { + return this.doInsert('afterEnd', el, values, returnElement); + }, + + /** + * Applies the supplied `values` to the template and appends the new node(s) to the specified `el`. + * + * For example usage see {@link Ext.Template Ext.Template class docs}. + * + * @param {String/HTMLElement/Ext.Element} el The context element + * @param {Object/Array} values The template values. See {@link #applyTemplate} for details. + * @param {Boolean} returnElement (optional) true to return an Ext.Element. + * @return {HTMLElement/Ext.Element} The new node or Element + */ + append: function(el, values, returnElement) { + return this.doInsert('beforeEnd', el, values, returnElement); + }, + + doInsert: function(where, el, values, returnElement) { + var newNode = Ext.DomHelper.insertHtml(where, Ext.getDom(el), this.apply(values)); + return returnElement ? Ext.get(newNode) : newNode; + }, + + /** + * Applies the supplied values to the template and overwrites the content of el with the new node(s). + * + * @param {String/HTMLElement/Ext.Element} el The context element + * @param {Object/Array} values The template values. See {@link #applyTemplate} for details. + * @param {Boolean} returnElement (optional) true to return a Ext.Element. + * @return {HTMLElement/Ext.Element} The new node or Element + */ + overwrite: function(el, values, returnElement) { + var newNode = Ext.DomHelper.overwrite(Ext.getDom(el), this.apply(values)); + return returnElement ? Ext.get(newNode) : newNode; + } +}); + +// @tag core +/** + * This class parses the XTemplate syntax and calls abstract methods to process the parts. + * @private + */ +Ext.define('Ext.XTemplateParser', { + constructor: function (config) { + Ext.apply(this, config); + }, + + /** + * @property {Number} level The 'for' or 'foreach' loop context level. This is adjusted + * up by one prior to calling {@link #doFor} or {@link #doForEach} and down by one after + * calling the corresponding {@link #doEnd} that closes the loop. This will be 1 on the + * first {@link #doFor} or {@link #doForEach} call. + */ + + /** + * This method is called to process a piece of raw text from the tpl. + * @param {String} text + * @method doText + */ + // doText: function (text) + + /** + * This method is called to process expressions (like `{[expr]}`). + * @param {String} expr The body of the expression (inside "{[" and "]}"). + * @method doExpr + */ + // doExpr: function (expr) + + /** + * This method is called to process simple tags (like `{tag}`). + * @method doTag + */ + // doTag: function (tag) + + /** + * This method is called to process ``. + * @method doElse + */ + // doElse: function () + + /** + * This method is called to process `{% text %}`. + * @param {String} text + * @method doEval + */ + // doEval: function (text) + + /** + * This method is called to process ``. If there are other attributes, + * these are passed in the actions object. + * @param {String} action + * @param {Object} actions Other actions keyed by the attribute name (such as 'exec'). + * @method doIf + */ + // doIf: function (action, actions) + + /** + * This method is called to process ``. If there are other attributes, + * these are passed in the actions object. + * @param {String} action + * @param {Object} actions Other actions keyed by the attribute name (such as 'exec'). + * @method doElseIf + */ + // doElseIf: function (action, actions) + + /** + * This method is called to process ``. If there are other attributes, + * these are passed in the actions object. + * @param {String} action + * @param {Object} actions Other actions keyed by the attribute name (such as 'exec'). + * @method doSwitch + */ + // doSwitch: function (action, actions) + + /** + * This method is called to process ``. If there are other attributes, + * these are passed in the actions object. + * @param {String} action + * @param {Object} actions Other actions keyed by the attribute name (such as 'exec'). + * @method doCase + */ + // doCase: function (action, actions) + + /** + * This method is called to process ``. + * @method doDefault + */ + // doDefault: function () + + /** + * This method is called to process ``. It is given the action type that started + * the tpl and the set of additional actions. + * @param {String} type The type of action that is being ended. + * @param {Object} actions The other actions keyed by the attribute name (such as 'exec'). + * @method doEnd + */ + // doEnd: function (type, actions) + + /** + * This method is called to process ``. If there are other attributes, + * these are passed in the actions object. + * @param {String} action + * @param {Object} actions Other actions keyed by the attribute name (such as 'exec'). + * @method doFor + */ + // doFor: function (action, actions) + + /** + * This method is called to process ``. If there are other + * attributes, these are passed in the actions object. + * @param {String} action + * @param {Object} actions Other actions keyed by the attribute name (such as 'exec'). + * @method doForEach + */ + // doForEach: function (action, actions) + + /** + * This method is called to process ``. If there are other attributes, + * these are passed in the actions object. + * @param {String} action + * @param {Object} actions Other actions keyed by the attribute name. + * @method doExec + */ + // doExec: function (action, actions) + + /** + * This method is called to process an empty ``. This is unlikely to need to be + * implemented, so a default (do nothing) version is provided. + * @method + */ + doTpl: Ext.emptyFn, + + parse: function (str) { + var me = this, + len = str.length, + aliases = { elseif: 'elif' }, + topRe = me.topRe, + actionsRe = me.actionsRe, + index, stack, s, m, t, prev, frame, subMatch, begin, end, actions, + prop; + + me.level = 0; + me.stack = stack = []; + + for (index = 0; index < len; index = end) { + topRe.lastIndex = index; + m = topRe.exec(str); + + if (!m) { + me.doText(str.substring(index, len)); + break; + } + + begin = m.index; + end = topRe.lastIndex; + + if (index < begin) { + me.doText(str.substring(index, begin)); + } + + if (m[1]) { + end = str.indexOf('%}', begin+2); + me.doEval(str.substring(begin+2, end)); + end += 2; + } else if (m[2]) { + end = str.indexOf(']}', begin+2); + me.doExpr(str.substring(begin+2, end)); + end += 2; + } else if (m[3]) { // if ('{' token) + me.doTag(m[3]); + } else if (m[4]) { // content of a tag + actions = null; + while ((subMatch = actionsRe.exec(m[4])) !== null) { + s = subMatch[2] || subMatch[3]; + if (s) { + s = Ext.String.htmlDecode(s); // decode attr value + t = subMatch[1]; + t = aliases[t] || t; + actions = actions || {}; + prev = actions[t]; + + if (typeof prev == 'string') { + actions[t] = [prev, s]; + } else if (prev) { + actions[t].push(s); + } else { + actions[t] = s; + } + } + } + + if (!actions) { + if (me.elseRe.test(m[4])) { + me.doElse(); + } else if (me.defaultRe.test(m[4])) { + me.doDefault(); + } else { + me.doTpl(); + stack.push({ type: 'tpl' }); + } + } + else if (actions['if']) { + me.doIf(actions['if'], actions); + stack.push({ type: 'if' }); + } + else if (actions['switch']) { + me.doSwitch(actions['switch'], actions); + stack.push({ type: 'switch' }); + } + else if (actions['case']) { + me.doCase(actions['case'], actions); + } + else if (actions['elif']) { + me.doElseIf(actions['elif'], actions); + } + else if (actions['for']) { + ++me.level; + + // Extract property name to use from indexed item + if (prop = me.propRe.exec(m[4])) { + actions.propName = prop[1] || prop[2]; + } + me.doFor(actions['for'], actions); + stack.push({ type: 'for', actions: actions }); + } + else if (actions['foreach']) { + ++me.level; + + // Extract property name to use from indexed item + if (prop = me.propRe.exec(m[4])) { + actions.propName = prop[1] || prop[2]; + } + me.doForEach(actions['foreach'], actions); + stack.push({ type: 'foreach', actions: actions }); + } + else if (actions.exec) { + me.doExec(actions.exec, actions); + stack.push({ type: 'exec', actions: actions }); + } + /* + else { + // todo - error + } + */ + } else if (m[0].length === 5) { + // if the length of m[0] is 5, assume that we're dealing with an opening tpl tag with no attributes (e.g. ...) + // in this case no action is needed other than pushing it on to the stack + stack.push({ type: 'tpl' }); + } else { + frame = stack.pop(); + me.doEnd(frame.type, frame.actions); + if (frame.type == 'for' || frame.type == 'foreach') { + --me.level; + } + } + } + }, + + // Internal regexes + + topRe: /(?:(\{\%)|(\{\[)|\{([^{}]+)\})|(?:]*)\>)|(?:<\/tpl>)/g, + actionsRe: /\s*(elif|elseif|if|for|foreach|exec|switch|case|eval|between)\s*\=\s*(?:(?:"([^"]*)")|(?:'([^']*)'))\s*/g, + propRe: /prop=(?:(?:"([^"]*)")|(?:'([^']*)'))/, + defaultRe: /^\s*default\s*$/, + elseRe: /^\s*else\s*$/ +}); + + + +Ext.define('Ext.XTemplateCompiler', { + extend: Ext.XTemplateParser , + + + + + useEval: Ext.isGecko, + + + + + useIndex: Ext.isIE8m, + + useFormat: true, + + propNameRe: /^[\w\d\$]*$/, + + compile: function (tpl) { + var me = this, + code = me.generate(tpl); + + + + + + return me.useEval ? me.evalTpl(code) : (new Function('Ext', code))(Ext); + }, + + generate: function (tpl) { + var me = this, + + definitions = 'var fm=Ext.util.Format,ts=Object.prototype.toString;', + code; + + + me.maxLevel = 0; + + me.body = [ + 'var c0=values, a0=' + me.createArrayTest(0) + ', p0=parent, n0=xcount, i0=xindex, k0, v;\n' + ]; + if (me.definitions) { + if (typeof me.definitions === 'string') { + me.definitions = [me.definitions, definitions ]; + } else { + me.definitions.push(definitions); + } + } else { + me.definitions = [ definitions ]; + } + me.switches = []; + + me.parse(tpl); + + me.definitions.push( + (me.useEval ? '$=' : 'return') + ' function (' + me.fnArgs + ') {', + me.body.join(''), + '}' + ); + + code = me.definitions.join('\n'); + + + me.definitions.length = me.body.length = me.switches.length = 0; + delete me.definitions; + delete me.body; + delete me.switches; + + return code; + }, + + + + + doText: function (text) { + var me = this, + out = me.body; + + text = text.replace(me.aposRe, "\\'").replace(me.newLineRe, '\\n'); + if (me.useIndex) { + out.push('out[out.length]=\'', text, '\'\n'); + } else { + out.push('out.push(\'', text, '\')\n'); + } + }, + + doExpr: function (expr) { + var out = this.body; + out.push('if ((v=' + expr + ') != null) out'); + + + + if (this.useIndex) { + out.push('[out.length]=v+\'\'\n'); + } else { + out.push('.push(v+\'\')\n'); + } + }, + + doTag: function (tag) { + var expr = this.parseTag(tag); + if (expr) { + this.doExpr(expr); + } else { + + this.doText('{' + tag + '}'); + } + }, + + doElse: function () { + this.body.push('} else {\n'); + }, + + doEval: function (text) { + this.body.push(text, '\n'); + }, + + doIf: function (action, actions) { + var me = this; + + + if (action === '.') { + me.body.push('if (values) {\n'); + } else if (me.propNameRe.test(action)) { + me.body.push('if (', me.parseTag(action), ') {\n'); + } + + else { + me.body.push('if (', me.addFn(action), me.callFn, ') {\n'); + } + if (actions.exec) { + me.doExec(actions.exec); + } + }, + + doElseIf: function (action, actions) { + var me = this; + + + if (action === '.') { + me.body.push('else if (values) {\n'); + } else if (me.propNameRe.test(action)) { + me.body.push('} else if (', me.parseTag(action), ') {\n'); + } + + else { + me.body.push('} else if (', me.addFn(action), me.callFn, ') {\n'); + } + if (actions.exec) { + me.doExec(actions.exec); + } + }, + + doSwitch: function (action) { + var me = this; + + + if (action === '.') { + me.body.push('switch (values) {\n'); + } else if (me.propNameRe.test(action)) { + me.body.push('switch (', me.parseTag(action), ') {\n'); + } + + else { + me.body.push('switch (', me.addFn(action), me.callFn, ') {\n'); + } + me.switches.push(0); + }, + + doCase: function (action) { + var me = this, + cases = Ext.isArray(action) ? action : [action], + n = me.switches.length - 1, + match, i; + + if (me.switches[n]) { + me.body.push('break;\n'); + } else { + me.switches[n]++; + } + + for (i = 0, n = cases.length; i < n; ++i) { + match = me.intRe.exec(cases[i]); + cases[i] = match ? match[1] : ("'" + cases[i].replace(me.aposRe,"\\'") + "'"); + } + + me.body.push('case ', cases.join(': case '), ':\n'); + }, + + doDefault: function () { + var me = this, + n = me.switches.length - 1; + + if (me.switches[n]) { + me.body.push('break;\n'); + } else { + me.switches[n]++; + } + + me.body.push('default:\n'); + }, + + doEnd: function (type, actions) { + var me = this, + L = me.level-1; + + if (type == 'for' || type == 'foreach') { + + if (actions.exec) { + me.doExec(actions.exec); + } + + me.body.push('}\n'); + me.body.push('parent=p',L,';values=r',L+1,';xcount=n'+L+';xindex=i',L,'+1;xkey=k',L,';\n'); + } else if (type == 'if' || type == 'switch') { + me.body.push('}\n'); + } + }, + + doFor: function (action, actions) { + var me = this, + s, + L = me.level, + up = L-1, + parentAssignment; + + + if (action === '.') { + s = 'values'; + } else if (me.propNameRe.test(action)) { + s = me.parseTag(action); + } + + else { + s = me.addFn(action) + me.callFn; + } + + + + + if (me.maxLevel < L) { + me.maxLevel = L; + me.body.push('var '); + } + + if (action == '.') { + parentAssignment = 'c' + L; + } else { + parentAssignment = 'a' + up + '?c' + up + '[i' + up + ']:c' + up; + } + + me.body.push('i',L,'=0,n', L, '=0,c',L,'=',s,',a',L,'=', me.createArrayTest(L),',r',L,'=values,p',L,',k',L,';\n', + 'p',L,'=parent=',parentAssignment,'\n', + 'if (c',L,'){if(a',L,'){n', L,'=c', L, '.length;}else if (c', L, '.isMixedCollection){c',L,'=c',L,'.items;n',L,'=c',L,'.length;}else if(c',L,'.isStore){c',L,'=c',L,'.data.items;n',L,'=c',L,'.length;}else{c',L,'=[c',L,'];n',L,'=1;}}\n', + 'for (xcount=n',L,';i',L,'1){ out.push("',actions.between,'"); } \n'); + } + }, + + doForEach: function (action, actions) { + var me = this, + s, + L = me.level, + up = L-1, + parentAssignment; + + + if (action === '.') { + s = 'values'; + } else if (me.propNameRe.test(action)) { + s = me.parseTag(action); + } + + else { + s = me.addFn(action) + me.callFn; + } + + + + + if (me.maxLevel < L) { + me.maxLevel = L; + me.body.push('var '); + } + + if (action == '.') { + parentAssignment = 'c' + L; + } else { + parentAssignment = 'a' + up + '?c' + up + '[i' + up + ']:c' + up; + } + + me.body.push('i',L,'=-1,n',L,'=0,c',L,'=',s,',a',L,'=',me.createArrayTest(L),',r',L,'=values,p',L,',k',L,';\n', + 'p',L,'=parent=',parentAssignment,'\n', + 'for(k',L,' in c',L,'){\n', + 'xindex=++i',L,'+1;\n', + 'xkey=k',L,';\n', + 'values=c',L,'[k',L,'];'); + if (actions.propName) { + me.body.push('.', actions.propName); + } + + if (actions.between) { + me.body.push('if(xindex>1){ out.push("',actions.between,'"); } \n'); + } + }, + + createArrayTest: ('isArray' in Array) ? function(L) { + return 'Array.isArray(c' + L + ')'; + } : function(L) { + return 'ts.call(c' + L + ')==="[object Array]"'; + }, + + doExec: function (action, actions) { + var me = this, + name = 'f' + me.definitions.length; + + me.definitions.push('function ' + name + '(' + me.fnArgs + ') {', + ' try { with(values) {', + ' ' + action, + ' }} catch(e) {', + '}', + '}'); + + me.body.push(name + me.callFn + '\n'); + }, + + + + + addFn: function (body) { + var me = this, + name = 'f' + me.definitions.length; + + if (body === '.') { + me.definitions.push('function ' + name + '(' + me.fnArgs + ') {', + ' return values', + '}'); + } else if (body === '..') { + me.definitions.push('function ' + name + '(' + me.fnArgs + ') {', + ' return parent', + '}'); + } else { + me.definitions.push('function ' + name + '(' + me.fnArgs + ') {', + ' try { with(values) {', + ' return(' + body + ')', + ' }} catch(e) {', + '}', + '}'); + } + + return name; + }, + + parseTag: function (tag) { + var me = this, + m = me.tagRe.exec(tag), + name, format, args, math, v; + + if (!m) { + return null; + } + + name = m[1]; + format = m[2]; + args = m[3]; + math = m[4]; + + + if (name == '.') { + + if (!me.validTypes) { + me.definitions.push('var validTypes={string:1,number:1,boolean:1};'); + me.validTypes = true; + } + v = 'validTypes[typeof values] || ts.call(values) === "[object Date]" ? values : ""'; + } + + else if (name == '#') { + v = 'xindex'; + } + + else if (name == '$') { + v = 'xkey'; + } + else if (name.substr(0, 7) == "parent.") { + v = name; + } + + else if (isNaN(name) && name.indexOf('-') == -1 && name.indexOf('.') != -1) { + v = "values." + name; + } + + + else { + v = "values['" + name + "']"; + } + + if (math) { + v = '(' + v + math + ')'; + } + + if (format && me.useFormat) { + args = args ? ',' + args : ""; + if (format.substr(0, 5) != "this.") { + format = "fm." + format + '('; + } else { + format += '('; + } + } else { + return v; + } + + return format + v + args + ')'; + }, + + + evalTpl: function ($) { + + + + + + eval($); + return $; + }, + + newLineRe: /\r\n|\r|\n/g, + aposRe: /[']/g, + intRe: /^\s*(\d+)\s*$/, + tagRe: /^([\w-\.\#\$]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?(\s?[\+\-\*\/]\s?[\d\.\+\-\*\/\(\)]+)?$/ + +}, function () { + var proto = this.prototype; + + proto.fnArgs = 'out,values,parent,xindex,xcount,xkey'; + proto.callFn = '.call(this,' + proto.fnArgs + ')'; +}); + +// @tag core +/** + * A template class that supports advanced functionality like: + * + * - Autofilling arrays using templates and sub-templates + * - Conditional processing with basic comparison operators + * - Basic math function support + * - Execute arbitrary inline code with special built-in template variables + * - Custom member functions + * - Many special tags and built-in operators that aren't defined as part of the API, but are supported in the templates that can be created + * + * XTemplate provides the templating mechanism built into {@link Ext.view.View}. + * + * The {@link Ext.Template} describes the acceptable parameters to pass to the constructor. The following examples + * demonstrate all of the supported features. + * + * # Sample Data + * + * This is the data object used for reference in each code example: + * + * var data = { + * name: 'Don Griffin', + * title: 'Senior Technomage', + * company: 'Sencha Inc.', + * drinks: ['Coffee', 'Water', 'More Coffee'], + * kids: [ + * { name: 'Aubrey', age: 17 }, + * { name: 'Joshua', age: 13 }, + * { name: 'Cale', age: 10 }, + * { name: 'Nikol', age: 5 }, + * { name: 'Solomon', age: 0 } + * ] + * }; + * + * # Auto filling of arrays + * + * The **tpl** tag and the **for** operator are used to process the provided data object: + * + * - If the value specified in for is an array, it will auto-fill, repeating the template block inside the tpl + * tag for each item in the array. + * - If for="." is specified, the data object provided is examined. + * - If between="..." is specified, the provided value will be inserted between the items. + * This is also supported in the "foreach" looping template. + * - While processing an array, the special variable {#} will provide the current array index + 1 (starts at 1, not 0). + * + * Examples: + * + * ... + * ... + * ... + * ... + * + * Using the sample data above: + * + * var tpl = new Ext.XTemplate( + * '

Kids: ', + * '', + * '

{#}. {name}

', + * '

' + * ); + * tpl.overwrite(panel.body, data.kids); + * + * An example illustrating how the **for** property can be leveraged to access specified members of the provided data + * object to populate the template: + * + * var tpl = new Ext.XTemplate( + * '

Name: {name}

', + * '

Title: {title}

', + * '

Company: {company}

', + * '

Kids: ', + * '', + * '

{name}

', + * '

' + * ); + * tpl.overwrite(panel.body, data); + * + * Flat arrays that contain values (and not objects) can be auto-rendered using the special **`{.}`** variable inside a + * loop. This variable will represent the value of the array at the current index: + * + * var tpl = new Ext.XTemplate( + * '

{name}\'s favorite beverages:

', + * '', + * '
- {.}
', + * '
' + * ); + * tpl.overwrite(panel.body, data); + * + * When processing a sub-template, for example while looping through a child array, you can access the parent object's + * members via the **parent** object: + * + * var tpl = new Ext.XTemplate( + * '

Name: {name}

', + * '

Kids: ', + * '', + * '', + * '

{name}

', + * '

Dad: {parent.name}

', + * '
', + * '

' + * ); + * tpl.overwrite(panel.body, data); + * + * The **foreach** operator is used to loop over an object's properties. The following + * example demonstrates looping over the main data object's properties: + * + * var tpl = new Ext.XTemplate( + * '
', + * '', + * '
{$}
', // the special **`{$}`** variable contains the property name + * '
{.}
', // within the loop, the **`{.}`** variable is set to the property value + * '
', + * '
' + * ); + * tpl.overwrite(panel.body, data); + * + * # Conditional processing with basic comparison operators + * + * The **tpl** tag and the **if** operator are used to provide conditional checks for deciding whether or not to render + * specific parts of the template. + * + * Using the sample data above: + * + * var tpl = new Ext.XTemplate( + * '

Name: {name}

', + * '

Kids: ', + * '', + * '', + * '

{name}

', + * '
', + * '

' + * ); + * tpl.overwrite(panel.body, data); + * + * More advanced conditionals are also supported: + * + * var tpl = new Ext.XTemplate( + * '

Name: {name}

', + * '

Kids: ', + * '', + * '

{name} is a ', + * '', + * '

teenager

', + * '', + * '

kid

', + * '', + * '

baby

', + * '
', + * '

' + * ); + * + * var tpl = new Ext.XTemplate( + * '

Name: {name}

', + * '

Kids: ', + * '', + * '

{name} is a ', + * '', + * '', + * '

girl

', + * '', + * '

boy

', + * '
', + * '

' + * ); + * + * A `break` is implied between each case and default, however, multiple cases can be listed + * in a single <tpl> tag. + * + * # Using double quotes + * + * Examples: + * + * var tpl = new Ext.XTemplate( + * "Child", + * "Teenager", + * "...", + * '...', + * "", + * "Hello" + * ); + * + * # Basic math support + * + * The following basic math operators may be applied directly on numeric data values: + * + * + - * / + * + * For example: + * + * var tpl = new Ext.XTemplate( + * '

Name: {name}

', + * '

Kids: ', + * '', + * '', + * '

{#}: {name}

', + * '

In 5 Years: {age+5}

', + * '

Dad: {parent.name}

', + * '
', + * '

' + * ); + * tpl.overwrite(panel.body, data); + * + * # Execute arbitrary inline code with special built-in template variables + * + * Anything between `{[ ... ]}` is considered code to be executed in the scope of the template. + * The expression is evaluated and the result is included in the generated result. There are + * some special variables available in that code: + * + * - **out**: The output array into which the template is being appended (using `push` to later + * `join`). + * - **values**: The values in the current scope. If you are using scope changing sub-templates, + * you can change what values is. + * - **parent**: The scope (values) of the ancestor template. + * - **xindex**: If you are in a "for" or "foreach" looping template, the index of the loop you are in (1-based). + * - **xcount**: If you are in a "for" looping template, the total length of the array you are looping. + * - **xkey**: If you are in a "foreach" looping template, the key of the current property + * being examined. + * + * This example demonstrates basic row striping using an inline code block and the xindex variable: + * + * var tpl = new Ext.XTemplate( + * '

Name: {name}

', + * '

Company: {[values.company.toUpperCase() + ", " + values.title]}

', + * '

Kids: ', + * '', + * '

', + * '{name}', + * '
', + * '

' + * ); + * + * Any code contained in "verbatim" blocks (using "{% ... %}") will be inserted directly in + * the generated code for the template. These blocks are not included in the output. This + * can be used for simple things like break/continue in a loop, or control structures or + * method calls (when they don't produce output). The `this` references the template instance. + * + * var tpl = new Ext.XTemplate( + * '

Name: {name}

', + * '

Company: {[values.company.toUpperCase() + ", " + values.title]}

', + * '

Kids: ', + * '', + * '{% if (xindex % 2 === 0) continue; %}', + * '{name}', + * '{% if (xindex > 100) break; %}', + * '', + * '

' + * ); + * + * # Template member functions + * + * One or more member functions can be specified in a configuration object passed into the XTemplate constructor for + * more complex processing: + * + * var tpl = new Ext.XTemplate( + * '

Name: {name}

', + * '

Kids: ', + * '', + * '', + * '

Girl: {name} - {age}

', + * '', + * '

Boy: {name} - {age}

', + * '
', + * '', + * '

{name} is a baby!

', + * '
', + * '

', + * { + * // XTemplate configuration: + * disableFormats: true, + * // member functions: + * isGirl: function(name){ + * return name == 'Aubrey' || name == 'Nikol'; + * }, + * isBaby: function(age){ + * return age < 1; + * } + * } + * ); + * tpl.overwrite(panel.body, data); + */ +Ext.define('Ext.XTemplate', { + extend: Ext.Template , + + + + /** + * @private + */ + emptyObj: {}, + + /** + * @cfg {Boolean} compiled + * Only applies to {@link Ext.Template}, XTemplates are compiled automatically on the + * first call to {@link #apply} or {@link #applyOut}. + * @hide + */ + + /** + * @cfg {String/Array} definitions + * Optional. A statement, or array of statements which set up `var`s which may then + * be accessed within the scope of the generated function. + */ + + apply: function(values, parent) { + return this.applyOut(values, [], parent).join(''); + }, + + applyOut: function(values, out, parent) { + var me = this, + compiler; + + if (!me.fn) { + compiler = new Ext.XTemplateCompiler({ + useFormat: me.disableFormats !== true, + definitions: me.definitions + }); + + me.fn = compiler.compile(me.html); + } + + try { + me.fn(out, values, parent || me.emptyObj, 1, 1); + } catch (e) { + } + + return out; + }, + + /** + * Does nothing. XTemplates are compiled automatically, so this function simply returns this. + * @return {Ext.XTemplate} this + */ + compile: function() { + return this; + }, + + statics: { + /** + * Gets an `XTemplate` from an object (an instance of an {@link Ext#define}'d class). + * Many times, templates are configured high in the class hierarchy and are to be + * shared by all classes that derive from that base. To further complicate matters, + * these templates are seldom actual instances but are rather configurations. For + * example: + * + * Ext.define('MyApp.Class', { + * extraCls: 'extra-class', + * + * someTpl: [ + * '
', + * { + * + * emitClass: function(out) { + * out.push(this.owner.extraCls); + * } + * }] + * }); + * + * The goal being to share that template definition with all instances and even + * instances of derived classes, until `someTpl` is overridden. This method will + * "upgrade" these configurations to be real `XTemplate` instances *in place* (to + * avoid creating one instance per object). + * + * The resulting XTemplate will have an `owner` reference injected which refers back + * to the owning object whether that is an object which has an *own instance*, or a + * class prototype. Through this link, XTemplate member functions will be able to access + * prototype properties of its owning class. + * + * @param {Object} instance The object from which to get the `XTemplate` (must be + * an instance of an {@link Ext#define}'d class). + * @param {String} name The name of the property by which to get the `XTemplate`. + * @return {Ext.XTemplate} The `XTemplate` instance or null if not found. + * @protected + * @static + */ + getTpl: function (instance, name) { + var tpl = instance[name], // go for it! 99% of the time we will get it! + owner; + + if (tpl && !tpl.isTemplate) { // tpl is just a configuration (not an instance) + // create the template instance from the configuration: + tpl = Ext.ClassManager.dynInstantiate('Ext.XTemplate', tpl); + + // and replace the reference with the new instance: + if (instance.hasOwnProperty(name)) { // the tpl is on the instance + owner = instance; + } else { // must be somewhere in the prototype chain + for (owner = instance.self.prototype; owner && !owner.hasOwnProperty(name); owner = owner.superclass) { + } + } + owner[name] = tpl; + tpl.owner = owner; + } + // else !tpl (no such tpl) or the tpl is an instance already... either way, tpl + // is ready to return + + return tpl || null; + } + } +}); + +// @tag dom,core +// @require Helper.js +// @define Ext.dom.Query +// @define Ext.core.DomQuery +// @define Ext.DomQuery + +/* + * This is code is also distributed under MIT license for use + * with jQuery and prototype JavaScript libraries. + */ +/** + * @class Ext.dom.Query + * @alternateClassName Ext.DomQuery + * @alternateClassName Ext.core.DomQuery + * @singleton + * + * Provides high performance selector/xpath processing by compiling queries into reusable functions. New pseudo classes + * and matchers can be plugged. It works on HTML and XML documents (if a content node is passed in). + * + * DomQuery supports most of the [CSS3 selectors spec][1], along with some custom selectors and basic XPath. + * + * All selectors, attribute filters and pseudos below can be combined infinitely in any order. For example + * `div.foo:nth-child(odd)[@foo=bar].bar:first` would be a perfectly valid selector. Node filters are processed + * in the order in which they appear, which allows you to optimize your queries for your document structure. + * + * ## Element Selectors: + * + * - **`*`** any element + * - **`E`** an element with the tag E + * - **`E F`** All descendent elements of E that have the tag F + * - **`E > F`** or **E/F** all direct children elements of E that have the tag F + * - **`E + F`** all elements with the tag F that are immediately preceded by an element with the tag E + * - **`E ~ F`** all elements with the tag F that are preceded by a sibling element with the tag E + * + * ## Attribute Selectors: + * + * The use of `@` and quotes are optional. For example, `div[@foo='bar']` is also a valid attribute selector. + * + * - **`E[foo]`** has an attribute "foo" + * - **`E[foo=bar]`** has an attribute "foo" that equals "bar" + * - **`E[foo^=bar]`** has an attribute "foo" that starts with "bar" + * - **`E[foo$=bar]`** has an attribute "foo" that ends with "bar" + * - **`E[foo*=bar]`** has an attribute "foo" that contains the substring "bar" + * - **`E[foo%=2]`** has an attribute "foo" that is evenly divisible by 2 + * - **`E[foo!=bar]`** attribute "foo" does not equal "bar" + * + * ## Pseudo Classes: + * + * - **`E:first-child`** E is the first child of its parent + * - **`E:last-child`** E is the last child of its parent + * - **`E:nth-child(_n_)`** E is the _n_th child of its parent (1 based as per the spec) + * - **`E:nth-child(odd)`** E is an odd child of its parent + * - **`E:nth-child(even)`** E is an even child of its parent + * - **`E:only-child`** E is the only child of its parent + * - **`E:checked`** E is an element that is has a checked attribute that is true (e.g. a radio or checkbox) + * - **`E:first`** the first E in the resultset + * - **`E:last`** the last E in the resultset + * - **`E:nth(_n_)`** the _n_th E in the resultset (1 based) + * - **`E:odd`** shortcut for :nth-child(odd) + * - **`E:even`** shortcut for :nth-child(even) + * - **`E:contains(foo)`** E's innerHTML contains the substring "foo" + * - **`E:nodeValue(foo)`** E contains a textNode with a nodeValue that equals "foo" + * - **`E:not(S)`** an E element that does not match simple selector S + * - **`E:has(S)`** an E element that has a descendent that matches simple selector S + * - **`E:next(S)`** an E element whose next sibling matches simple selector S + * - **`E:prev(S)`** an E element whose previous sibling matches simple selector S + * - **`E:any(S1|S2|S2)`** an E element which matches any of the simple selectors S1, S2 or S3 + * - **`E:visible(true)`** an E element which is deeply visible according to {@link Ext.dom.Element#isVisible} + * + * ## CSS Value Selectors: + * + * - **`E{display=none}`** css value "display" that equals "none" + * - **`E{display^=none}`** css value "display" that starts with "none" + * - **`E{display$=none}`** css value "display" that ends with "none" + * - **`E{display*=none}`** css value "display" that contains the substring "none" + * - **`E{display%=2}`** css value "display" that is evenly divisible by 2 + * - **`E{display!=none}`** css value "display" that does not equal "none" + * + * ## XML Namespaces: + * - **`ns|E`** an element with tag E and namespace prefix ns + * + * [1]: http: + */ +Ext.ns('Ext.core'); + +Ext.dom.Query = Ext.core.DomQuery = Ext.DomQuery = (function() { + var DQ, + doc = document, + cache = {}, + simpleCache = {}, + valueCache = {}, + useClassList = !!doc.documentElement.classList, + useElementPointer = !!doc.documentElement.firstElementChild, + useChildrenCollection = (function() { + var d = doc.createElement('div'); + d.innerHTML = 'text'; + return d.children && (d.children.length === 0); + })(), + nonSpace = /\S/, + trimRe = /^\s+|\s+$/g, + tplRe = /\{(\d+)\}/g, + modeRe = /^(\s?[\/>+~]\s?|\s|$)/, + tagTokenRe = /^(#)?([\w\-\*\|\\]+)/, + nthRe = /(\d*)n\+?(\d*)/, + nthRe2 = /\D/, + startIdRe = /^\s*#/, + + + + isIE = window.ActiveXObject ? true : false, + key = 30803, + longHex = /\\([0-9a-fA-F]{6})/g, + shortHex = /\\([0-9a-fA-F]{1,6})\s{0,1}/g, + nonHex = /\\([^0-9a-fA-F]{1})/g, + escapes = /\\/g, + num, hasEscapes, + + + supportsColonNsSeparator = (function () { + var xmlDoc, + xmlString = ''; + + if (window.DOMParser) { + xmlDoc = (new DOMParser()).parseFromString(xmlString, "application/xml"); + } else { + xmlDoc = new ActiveXObject("Microsoft.XMLDOM"); + xmlDoc.loadXML(xmlString); + } + + return !!xmlDoc.getElementsByTagName('a:b').length; + })(), + + + + longHexToChar = function($0, $1) { + return String.fromCharCode(parseInt($1, 16)); + }, + + + shortToLongHex = function($0, $1) { + while ($1.length < 6) { + $1 = '0' + $1; + } + return '\\' + $1; + }, + + + charToLongHex = function($0, $1) { + num = $1.charCodeAt(0).toString(16); + if (num.length === 1) { + num = '0' + num; + } + return '\\0000' + num; + }, + + + + + unescapeCssSelector = function(selector) { + return (hasEscapes) ? selector.replace(longHex, longHexToChar) : selector; + }, + + + setupEscapes = function(path) { + hasEscapes = (path.indexOf('\\') > -1); + if (hasEscapes) { + path = path + .replace(shortHex, shortToLongHex) + .replace(nonHex, charToLongHex) + .replace(escapes, '\\\\'); + } + return path; + }; + + + + eval("var batch = 30803, child, next, prev, byClassName;"); + + + + child = useChildrenCollection ? + function child(parent, index) { + return parent.children[index]; + } : + function child(parent, index) { + var i = 0, + n = parent.firstChild; + while (n) { + if (n.nodeType == 1) { + if (++i == index) { + return n; + } + } + n = n.nextSibling; + } + return null; + }; + + + next = useElementPointer ? + function(n) { + return n.nextElementSibling; + } : + function(n) { + while ((n = n.nextSibling) && n.nodeType != 1); + return n; + }; + + + prev = useElementPointer ? + function(n) { + return n.previousElementSibling; + } : + function(n) { + while ((n = n.previousSibling) && n.nodeType != 1); + return n; + }; + + + + function children(parent) { + var n = parent.firstChild, + nodeIndex = -1, + nextNode; + + while (n) { + nextNode = n.nextSibling; + + if (n.nodeType == 3 && !nonSpace.test(n.nodeValue)) { + parent.removeChild(n); + } else { + + n.nodeIndex = ++nodeIndex; + } + n = nextNode; + } + return this; + } + + + + byClassName = useClassList ? + function (nodeSet, cls) { + cls = unescapeCssSelector(cls); + if (!cls) { + return nodeSet; + } + var result = [], ri = -1, + i, ci, classList; + + for (i = 0; ci = nodeSet[i]; i++) { + classList = ci.classList; + if (classList) { + if (classList.contains(cls)) { + result[++ri] = ci; + } + } else if ((' ' + ci.className + ' ').indexOf(cls) !== -1) { + + + result[++ri] = ci; + } + } + return result; + } : + function (nodeSet, cls) { + cls = unescapeCssSelector(cls); + if (!cls) { + return nodeSet; + } + var result = [], ri = -1, + i, ci; + + for (i = 0; ci = nodeSet[i]; i++) { + if ((' ' + ci.className + ' ').indexOf(cls) !== -1) { + result[++ri] = ci; + } + } + return result; + }; + + function attrValue(n, attr) { + + if (!n.tagName && typeof n.length != "undefined") { + n = n[0]; + } + if (!n) { + return null; + } + + if (attr == "for") { + return n.htmlFor; + } + if (attr == "class" || attr == "className") { + return n.className; + } + return n.getAttribute(attr) || n[attr]; + + } + + + + + function getNodes(ns, mode, tagName) { + var result = [], ri = -1, cs, + i, ni, j, ci, cn, utag, n, cj; + if (!ns) { + return result; + } + tagName = tagName.replace('|', ':') || "*"; + + if (typeof ns.getElementsByTagName != "undefined") { + ns = [ns]; + } + + + + if (!mode) { + tagName = unescapeCssSelector(tagName); + if (!supportsColonNsSeparator && DQ.isXml(ns[0]) && + tagName.indexOf(':') !== -1) { + + + + + + + for (i = 0; ni = ns[i]; i++) { + cs = ni.getElementsByTagName(tagName.split(':').pop()); + for (j = 0; ci = cs[j]; j++) { + if (ci.tagName === tagName) { + result[++ri] = ci; + } + } + } + } else { + for (i = 0; ni = ns[i]; i++) { + cs = ni.getElementsByTagName(tagName); + for (j = 0; ci = cs[j]; j++) { + result[++ri] = ci; + } + } + } + + + } else if (mode == "/" || mode == ">") { + utag = tagName.toUpperCase(); + for (i = 0; ni = ns[i]; i++) { + cn = ni.childNodes; + for (j = 0; cj = cn[j]; j++) { + if (cj.nodeName == utag || cj.nodeName == tagName || tagName == '*') { + result[++ri] = cj; + } + } + } + + + } else if (mode == "+") { + utag = tagName.toUpperCase(); + for (i = 0; n = ns[i]; i++) { + while ((n = n.nextSibling) && n.nodeType != 1); + if (n && (n.nodeName == utag || n.nodeName == tagName || tagName == '*')) { + result[++ri] = n; + } + } + + + } else if (mode == "~") { + utag = tagName.toUpperCase(); + for (i = 0; n = ns[i]; i++) { + while ((n = n.nextSibling)) { + if (n.nodeName == utag || n.nodeName == tagName || tagName == '*') { + result[++ri] = n; + } + } + } + } + return result; + } + + function concat(a, b) { + a.push.apply(a, b); + return a; + } + + function byTag(cs, tagName) { + if (cs.tagName || cs === doc) { + cs = [cs]; + } + if (!tagName) { + return cs; + } + var result = [], ri = -1, + i, ci; + tagName = tagName.toLowerCase(); + for (i = 0; ci = cs[i]; i++) { + if (ci.nodeType == 1 && ci.tagName.toLowerCase() == tagName) { + result[++ri] = ci; + } + } + return result; + } + + function byId(cs, id) { + id = unescapeCssSelector(id); + if (cs.tagName || cs === doc) { + cs = [cs]; + } + if (!id) { + return cs; + } + var result = [], ri = -1, + i, ci; + for (i = 0; ci = cs[i]; i++) { + if (ci && ci.id == id) { + result[++ri] = ci; + return result; + } + } + return result; + } + + + + function byAttribute(cs, attr, value, op, custom) { + var result = [], + ri = -1, + useGetStyle = custom == "{", + fn = DQ.operators[op], + a, + xml, + hasXml, + i, ci; + + value = unescapeCssSelector(value); + + for (i = 0; ci = cs[i]; i++) { + + if (ci.nodeType === 1) { + + if (!hasXml) { + xml = DQ.isXml(ci); + hasXml = true; + } + + + if (!xml) { + if (useGetStyle) { + a = DQ.getStyle(ci, attr); + } else if (attr == "class" || attr == "className") { + a = ci.className; + } else if (attr == "for") { + a = ci.htmlFor; + } else if (attr == "href") { + + + a = ci.getAttribute("href", 2); + } else { + a = ci.getAttribute(attr); + } + } else { + a = ci.getAttribute(attr); + } + if ((fn && fn(a, value)) || (!fn && a)) { + result[++ri] = ci; + } + } + } + return result; + } + + function byPseudo(cs, name, value) { + value = unescapeCssSelector(value); + return DQ.pseudos[name](cs, value); + } + + function nodupIEXml(cs) { + var d = ++key, + r, + i, len, c; + cs[0].setAttribute("_nodup", d); + r = [cs[0]]; + for (i = 1, len = cs.length; i < len; i++) { + c = cs[i]; + if (!c.getAttribute("_nodup") != d) { + c.setAttribute("_nodup", d); + r[r.length] = c; + } + } + for (i = 0, len = cs.length; i < len; i++) { + cs[i].removeAttribute("_nodup"); + } + return r; + } + + function nodup(cs) { + if (!cs) { + return []; + } + var len = cs.length, c, i, r = cs, cj, ri = -1, d, j; + if (!len || typeof cs.nodeType != "undefined" || len == 1) { + return cs; + } + if (isIE && typeof cs[0].selectSingleNode != "undefined") { + return nodupIEXml(cs); + } + d = ++key; + cs[0]._nodup = d; + for (i = 1; c = cs[i]; i++) { + if (c._nodup != d) { + c._nodup = d; + } else { + r = []; + for (j = 0; j < i; j++) { + r[++ri] = cs[j]; + } + for (j = i + 1; cj = cs[j]; j++) { + if (cj._nodup != d) { + cj._nodup = d; + r[++ri] = cj; + } + } + return r; + } + } + return r; + } + + function quickDiffIEXml(c1, c2) { + var d = ++key, + r = [], + i, len; + for (i = 0, len = c1.length; i < len; i++) { + c1[i].setAttribute("_qdiff", d); + } + for (i = 0, len = c2.length; i < len; i++) { + if (c2[i].getAttribute("_qdiff") != d) { + r[r.length] = c2[i]; + } + } + for (i = 0, len = c1.length; i < len; i++) { + c1[i].removeAttribute("_qdiff"); + } + return r; + } + + function quickDiff(c1, c2) { + var len1 = c1.length, + d = ++key, + r = [], + i, len; + if (!len1) { + return c2; + } + if (isIE && typeof c1[0].selectSingleNode != "undefined") { + return quickDiffIEXml(c1, c2); + } + for (i = 0; i < len1; i++) { + c1[i]._qdiff = d; + } + for (i = 0, len = c2.length; i < len; i++) { + if (c2[i]._qdiff != d) { + r[r.length] = c2[i]; + } + } + return r; + } + + function quickId(ns, mode, root, id) { + if (ns == root) { + id = unescapeCssSelector(id); + var d = root.ownerDocument || root; + return d.getElementById(id); + } + ns = getNodes(ns, mode, "*"); + return byId(ns, id); + } + + return DQ = { + getStyle: function(el, name) { + return Ext.fly(el, '_DomQuery').getStyle(name); + }, + + compile: function(path, type) { + type = type || "select"; + + + var fn = ["var f = function(root) {\n var mode; ++batch; var n = root || document;\n"], + lastPath, + matchers = DQ.matchers, + matchersLn = matchers.length, + modeMatch, + + lmode = path.match(modeRe), + tokenMatch, matched, j, t, m; + + path = setupEscapes(path); + + if (lmode && lmode[1]) { + fn[fn.length] = 'mode="' + lmode[1].replace(trimRe, "") + '";'; + path = path.replace(lmode[1], ""); + } + + + while (path.substr(0, 1) == "/") { + path = path.substr(1); + } + + while (path && lastPath != path) { + lastPath = path; + tokenMatch = path.match(tagTokenRe); + if (type == "select") { + if (tokenMatch) { + + if (tokenMatch[1] == "#") { + fn[fn.length] = 'n = quickId(n, mode, root, "' + tokenMatch[2] + '");'; + } else { + fn[fn.length] = 'n = getNodes(n, mode, "' + tokenMatch[2] + '");'; + } + path = path.replace(tokenMatch[0], ""); + } else if (path.substr(0, 1) != '@') { + fn[fn.length] = 'n = getNodes(n, mode, "*");'; + } + + } else { + if (tokenMatch) { + if (tokenMatch[1] == "#") { + fn[fn.length] = 'n = byId(n, "' + tokenMatch[2] + '");'; + } else { + fn[fn.length] = 'n = byTag(n, "' + tokenMatch[2] + '");'; + } + path = path.replace(tokenMatch[0], ""); + } + } + while (!(modeMatch = path.match(modeRe))) { + matched = false; + for (j = 0; j < matchersLn; j++) { + t = matchers[j]; + m = path.match(t.re); + if (m) { + fn[fn.length] = t.select.replace(tplRe, function(x, i) { + return m[i]; + }); + path = path.replace(m[0], ""); + matched = true; + break; + } + } + + if (!matched) { + Ext.Error.raise({ + sourceClass:'Ext.DomQuery', + sourceMethod:'compile', + msg:'Error parsing selector. Parsing failed at "' + path + '"' + }); + } + } + if (modeMatch[1]) { + fn[fn.length] = 'mode="' + modeMatch[1].replace(trimRe, "") + '";'; + path = path.replace(modeMatch[1], ""); + } + } + + fn[fn.length] = "return nodup(n);\n}"; + + + eval(fn.join("")); + return f; + }, + + + jsSelect: function(path, root, type) { + + root = root || doc; + + if (typeof root == "string") { + root = doc.getElementById(root); + } + var paths = path.split(","), + results = [], + i, len, subPath, result; + + + for (i = 0, len = paths.length; i < len; i++) { + subPath = paths[i].replace(trimRe, ""); + + if (!cache[subPath]) { + + cache[subPath] = DQ.compile(subPath, type); + if (!cache[subPath]) { + Ext.Error.raise({ + sourceClass:'Ext.DomQuery', + sourceMethod:'jsSelect', + msg:subPath + ' is not a valid selector' + }); + } + } else { + + + setupEscapes(subPath); + } + result = cache[subPath](root); + if (result && result !== doc) { + results = results.concat(result); + } + } + + + + if (paths.length > 1) { + return nodup(results); + } + return results; + }, + + isXml: function(el) { + var docEl = (el ? el.ownerDocument || el : 0).documentElement; + return docEl ? docEl.nodeName !== "HTML" : false; + }, + + + select : doc.querySelectorAll ? function(path, root, type, single) { + root = root || doc; + if (!DQ.isXml(root)) { + try { + + if (root.parentNode && (root.nodeType !== 9) && path.indexOf(',') === -1 && !startIdRe.test(path)) { + path = '#' + Ext.escapeId(Ext.id(root)) + ' ' + path; + root = root.parentNode; + } + return single ? [ root.querySelector(path) ] + : Ext.Array.toArray(root.querySelectorAll(path)); + } + catch (e) { + } + } + return DQ.jsSelect.call(this, path, root, type); + } : function(path, root, type) { + return DQ.jsSelect.call(this, path, root, type); + }, + + + selectNode : function(path, root){ + return Ext.DomQuery.select(path, root, null, true)[0]; + }, + + + selectValue: function(path, root, defaultValue) { + path = path.replace(trimRe, ""); + if (!valueCache[path]) { + valueCache[path] = DQ.compile(path, "select"); + } else { + setupEscapes(path); + } + + var n = valueCache[path](root), + v; + + n = n[0] ? n[0] : n; + + + + + + if (typeof n.normalize == 'function') { + n.normalize(); + } + + v = (n && n.firstChild ? n.firstChild.nodeValue : null); + return ((v === null || v === undefined || v === '') ? defaultValue : v); + }, + + + selectNumber: function(path, root, defaultValue) { + var v = DQ.selectValue(path, root, defaultValue || 0); + return parseFloat(v); + }, + + + is: function(el, ss) { + if (typeof el == "string") { + el = doc.getElementById(el); + } + var isArray = Ext.isArray(el), + result = DQ.filter(isArray ? el : [el], ss); + return isArray ? (result.length == el.length) : (result.length > 0); + }, + + + filter: function(els, ss, nonMatches) { + ss = ss.replace(trimRe, ""); + if (!simpleCache[ss]) { + simpleCache[ss] = DQ.compile(ss, "simple"); + } else { + setupEscapes(ss); + } + + var result = simpleCache[ss](els); + return nonMatches ? quickDiff(result, els) : result; + }, + + + matchers: [{ + re: /^\.([\w\-\\]+)/, + select: useClassList ? 'n = byClassName(n, "{1}");' : 'n = byClassName(n, " {1} ");' + }, { + re: /^\:([\w\-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/, + select: 'n = byPseudo(n, "{1}", "{2}");' + }, { + re: /^(?:([\[\{])(?:@)?([\w\-]+)\s?(?:(=|.=)\s?['"]?(.*?)["']?)?[\]\}])/, + select: 'n = byAttribute(n, "{2}", "{4}", "{3}", "{1}");' + }, { + re: /^#([\w\-\\]+)/, + select: 'n = byId(n, "{1}");' + }, { + re: /^@([\w\-\.]+)/, + select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};' + }], + + + operators: { + "=": function(a, v) { + return a == v; + }, + "!=": function(a, v) { + return a != v; + }, + "^=": function(a, v) { + return a && a.substr(0, v.length) == v; + }, + "$=": function(a, v) { + return a && a.substr(a.length - v.length) == v; + }, + "*=": function(a, v) { + return a && a.indexOf(v) !== -1; + }, + "%=": function(a, v) { + return (a % v) === 0; + }, + "|=": function(a, v) { + return a && (a == v || a.substr(0, v.length + 1) == v + '-'); + }, + "~=": function(a, v) { + return a && (' ' + a + ' ').indexOf(' ' + v + ' ') != -1; + } + }, + + + pseudos: { + "first-child": function(c) { + var r = [], ri = -1, n, + i, ci; + for (i = 0; (ci = n = c[i]); i++) { + while ((n = n.previousSibling) && n.nodeType != 1); + if (!n) { + r[++ri] = ci; + } + } + return r; + }, + + "last-child": function(c) { + var r = [], ri = -1, n, + i, ci; + for (i = 0; (ci = n = c[i]); i++) { + while ((n = n.nextSibling) && n.nodeType != 1); + if (!n) { + r[++ri] = ci; + } + } + return r; + }, + + "nth-child": function(c, a) { + var r = [], ri = -1, + m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a), + f = (m[1] || 1) - 0, l = m[2] - 0, + i, n, j, cn, pn; + for (i = 0; n = c[i]; i++) { + pn = n.parentNode; + if (batch != pn._batch) { + j = 0; + for (cn = pn.firstChild; cn; cn = cn.nextSibling) { + if (cn.nodeType == 1) { + cn.nodeIndex = ++j; + } + } + pn._batch = batch; + } + if (f == 1) { + if (l === 0 || n.nodeIndex == l) { + r[++ri] = n; + } + } else if ((n.nodeIndex + l) % f === 0) { + r[++ri] = n; + } + } + + return r; + }, + + "only-child": function(c) { + var r = [], ri = -1, + i, ci; + for (i = 0; ci = c[i]; i++) { + if (!prev(ci) && !next(ci)) { + r[++ri] = ci; + } + } + return r; + }, + + "empty": function(c) { + var r = [], ri = -1, + i, ci, cns, j, cn, empty; + for (i = 0; ci = c[i]; i++) { + cns = ci.childNodes; + j = 0; + empty = true; + while (cn = cns[j]) { + ++j; + if (cn.nodeType == 1 || cn.nodeType == 3) { + empty = false; + break; + } + } + if (empty) { + r[++ri] = ci; + } + } + return r; + }, + + "contains": function(c, v) { + var r = [], ri = -1, + i, ci; + for (i = 0; ci = c[i]; i++) { + if ((ci.textContent || ci.innerText || ci.text || '').indexOf(v) != -1) { + r[++ri] = ci; + } + } + return r; + }, + + "nodeValue": function(c, v) { + var r = [], ri = -1, + i, ci; + for (i = 0; ci = c[i]; i++) { + if (ci.firstChild && ci.firstChild.nodeValue == v) { + r[++ri] = ci; + } + } + return r; + }, + + "checked": function(c) { + var r = [], ri = -1, + i, ci; + for (i = 0; ci = c[i]; i++) { + if (ci.checked === true) { + r[++ri] = ci; + } + } + return r; + }, + + "not": function(c, ss) { + return DQ.filter(c, ss, true); + }, + + "any": function(c, selectors) { + var ss = selectors.split('|'), + r = [], ri = -1, s, + i, ci, j; + for (i = 0; ci = c[i]; i++) { + for (j = 0; s = ss[j]; j++) { + if (DQ.is(ci, s)) { + r[++ri] = ci; + break; + } + } + } + return r; + }, + + "odd": function(c) { + return this["nth-child"](c, "odd"); + }, + + "even": function(c) { + return this["nth-child"](c, "even"); + }, + + "nth": function(c, a) { + return c[a - 1] || []; + }, + + "first": function(c) { + return c[0] || []; + }, + + "last": function(c) { + return c[c.length - 1] || []; + }, + + "has": function(c, ss) { + var s = DQ.select, + r = [], ri = -1, + i, ci; + for (i = 0; ci = c[i]; i++) { + if (s(ss, ci).length > 0) { + r[++ri] = ci; + } + } + return r; + }, + + "next": function(c, ss) { + var is = DQ.is, + r = [], ri = -1, + i, ci, n; + for (i = 0; ci = c[i]; i++) { + n = next(ci); + if (n && is(n, ss)) { + r[++ri] = ci; + } + } + return r; + }, + + "prev": function(c, ss) { + var is = DQ.is, + r = [], ri = -1, + i, ci, n; + for (i = 0; ci = c[i]; i++) { + n = prev(ci); + if (n && is(n, ss)) { + r[++ri] = ci; + } + } + return r; + }, + + focusable: function(candidates) { + var len = candidates.length, + results = [], + i = 0, + c; + + for (; i < len; i++) { + c = candidates[i]; + if (Ext.fly(c, '_DomQuery').isFocusable()) { + results.push(c); + } + } + + return results; + }, + + visible: function(candidates, deep) { + var len = candidates.length, + results = [], + i = 0, + c; + + for (; i < len; i++) { + c = candidates[i]; + if (Ext.fly(c, '_DomQuery').isVisible(deep)) { + results.push(c); + } + } + + return results; + } + } + }; +}()); + + +Ext.query = Ext.DomQuery.select; + + + + + +Ext.define('Ext.dom.Element_anim', { + override: 'Ext.dom.Element', + + + animate: function(config) { + var me = this, + listeners, + anim, + animId = me.dom.id || Ext.id(me.dom); + + if (!Ext.fx.Manager.hasFxBlock(animId)) { + + if (config.listeners) { + listeners = config.listeners; + delete config.listeners; + } + if (config.internalListeners) { + config.listeners = config.internalListeners; + delete config.internalListeners; + } + anim = new Ext.fx.Anim(me.anim(config)); + if (listeners) { + anim.on(listeners); + } + Ext.fx.Manager.queueFx(anim); + } + return me; + }, + + + anim: function(config) { + if (!Ext.isObject(config)) { + return (config) ? {} : false; + } + + var me = this, + duration = config.duration || Ext.fx.Anim.prototype.duration, + easing = config.easing || 'ease', + animConfig; + + if (config.stopAnimation) { + me.stopAnimation(); + } + + Ext.applyIf(config, Ext.fx.Manager.getFxDefaults(me.id)); + + + Ext.fx.Manager.setFxDefaults(me.id, { + delay: 0 + }); + + animConfig = { + + target: me.dom, + remove: config.remove, + alternate: config.alternate || false, + duration: duration, + easing: easing, + callback: config.callback, + listeners: config.listeners, + iterations: config.iterations || 1, + scope: config.scope, + block: config.block, + concurrent: config.concurrent, + delay: config.delay || 0, + paused: true, + keyframes: config.keyframes, + from: config.from || {}, + to: Ext.apply({}, config) + }; + Ext.apply(animConfig.to, config.to); + + + delete animConfig.to.to; + delete animConfig.to.from; + delete animConfig.to.remove; + delete animConfig.to.alternate; + delete animConfig.to.keyframes; + delete animConfig.to.iterations; + delete animConfig.to.listeners; + delete animConfig.to.target; + delete animConfig.to.paused; + delete animConfig.to.callback; + delete animConfig.to.scope; + delete animConfig.to.duration; + delete animConfig.to.easing; + delete animConfig.to.concurrent; + delete animConfig.to.block; + delete animConfig.to.stopAnimation; + delete animConfig.to.delay; + return animConfig; + }, + + + slideIn: function(anchor, obj, slideOut) { + var me = this, + dom = me.dom, + elStyle = dom.style, + beforeAnim, + wrapAnim, + restoreScroll, + wrapDomParentNode; + + anchor = anchor || "t"; + obj = obj || {}; + + beforeAnim = function() { + var animScope = this, + listeners = obj.listeners, + el = Ext.fly(dom, '_anim'), + box, originalStyles, anim, wrap; + + if (!slideOut) { + el.fixDisplay(); + } + + box = el.getBox(); + if ((anchor == 't' || anchor == 'b') && box.height === 0) { + box.height = dom.scrollHeight; + } + else if ((anchor == 'l' || anchor == 'r') && box.width === 0) { + box.width = dom.scrollWidth; + } + + originalStyles = el.getStyles('width', 'height', 'left', 'right', 'top', 'bottom', 'position', 'z-index', true); + el.setSize(box.width, box.height); + + + if (obj.preserveScroll) { + restoreScroll = el.cacheScrollValues(); + } + + wrap = el.wrap({ + id: Ext.id() + '-anim-wrap-for-' + el.dom.id, + style: { + visibility: slideOut ? 'visible' : 'hidden' + } + }); + wrapDomParentNode = wrap.dom.parentNode; + wrap.setPositioning(el.getPositioning(true)); + if (wrap.isStyle('position', 'static')) { + wrap.position('relative'); + } + el.clearPositioning('auto'); + wrap.clip(); + + + if (restoreScroll) { + restoreScroll(); + } + + + + + el.setStyle({ + visibility: '', + position: 'absolute' + }); + if (slideOut) { + wrap.setSize(box.width, box.height); + } + + switch (anchor) { + case 't': + anim = { + from: { + width: box.width + 'px', + height: '0px' + }, + to: { + width: box.width + 'px', + height: box.height + 'px' + } + }; + elStyle.bottom = '0px'; + break; + case 'l': + anim = { + from: { + width: '0px', + height: box.height + 'px' + }, + to: { + width: box.width + 'px', + height: box.height + 'px' + } + }; + me.anchorAnimX(anchor); + break; + case 'r': + anim = { + from: { + x: box.x + box.width, + width: '0px', + height: box.height + 'px' + }, + to: { + x: box.x, + width: box.width + 'px', + height: box.height + 'px' + } + }; + me.anchorAnimX(anchor); + break; + case 'b': + anim = { + from: { + y: box.y + box.height, + width: box.width + 'px', + height: '0px' + }, + to: { + y: box.y, + width: box.width + 'px', + height: box.height + 'px' + } + }; + break; + case 'tl': + anim = { + from: { + x: box.x, + y: box.y, + width: '0px', + height: '0px' + }, + to: { + width: box.width + 'px', + height: box.height + 'px' + } + }; + elStyle.bottom = '0px'; + me.anchorAnimX('l'); + break; + case 'bl': + anim = { + from: { + y: box.y + box.height, + width: '0px', + height: '0px' + }, + to: { + y: box.y, + width: box.width + 'px', + height: box.height + 'px' + } + }; + me.anchorAnimX('l'); + break; + case 'br': + anim = { + from: { + x: box.x + box.width, + y: box.y + box.height, + width: '0px', + height: '0px' + }, + to: { + x: box.x, + y: box.y, + width: box.width + 'px', + height: box.height + 'px' + } + }; + me.anchorAnimX('r'); + break; + case 'tr': + anim = { + from: { + x: box.x + box.width, + width: '0px', + height: '0px' + }, + to: { + x: box.x, + width: box.width + 'px', + height: box.height + 'px' + } + }; + elStyle.bottom = '0px'; + me.anchorAnimX('r'); + break; + } + + wrap.show(); + wrapAnim = Ext.apply({}, obj); + delete wrapAnim.listeners; + wrapAnim = new Ext.fx.Anim(Ext.applyIf(wrapAnim, { + target: wrap, + duration: 500, + easing: 'ease-out', + from: slideOut ? anim.to : anim.from, + to: slideOut ? anim.from : anim.to + })); + + + wrapAnim.on('afteranimate', function() { + var el = Ext.fly(dom, '_anim'); + + el.setStyle(originalStyles); + if (slideOut) { + if (obj.useDisplay) { + el.setDisplayed(false); + } else { + el.hide(); + } + } + if (wrap.dom) { + if (wrap.dom.parentNode) { + wrap.dom.parentNode.insertBefore(el.dom, wrap.dom); + } else { + wrapDomParentNode.appendChild(el.dom); + } + wrap.remove(); + } + + if (restoreScroll) { + restoreScroll(); + } + + animScope.end(); + }); + + if (listeners) { + wrapAnim.on(listeners); + } + }; + + me.animate({ + + duration: obj.duration ? Math.max(obj.duration, 500) * 2 : 1000, + listeners: { + beforeanimate: beforeAnim + } + }); + return me; + }, + + + + slideOut: function(anchor, o) { + return this.slideIn(anchor, o, true); + }, + + + puff: function(obj) { + var me = this, + dom = me.dom, + beforeAnim, + box = me.getBox(), + originalStyles = me.getStyles('width', 'height', 'left', 'right', 'top', 'bottom', 'position', 'z-index', 'font-size', 'opacity', true); + + obj = Ext.applyIf(obj || {}, { + easing: 'ease-out', + duration: 500, + useDisplay: false + }); + + beforeAnim = function() { + var el = Ext.fly(dom, '_anim'); + + el.clearOpacity(); + el.show(); + this.to = { + width: box.width * 2, + height: box.height * 2, + x: box.x - (box.width / 2), + y: box.y - (box.height /2), + opacity: 0, + fontSize: '200%' + }; + this.on('afteranimate',function() { + var el = Ext.fly(dom, '_anim'); + if (el) { + if (obj.useDisplay) { + el.setDisplayed(false); + } else { + el.hide(); + } + el.setStyle(originalStyles); + Ext.callback(obj.callback, obj.scope); + } + }); + }; + + me.animate({ + duration: obj.duration, + easing: obj.easing, + listeners: { + beforeanimate: { + fn: beforeAnim + } + } + }); + return me; + }, + + + switchOff: function(obj) { + var me = this, + dom = me.dom, + beforeAnim; + + obj = Ext.applyIf(obj || {}, { + easing: 'ease-in', + duration: 500, + remove: false, + useDisplay: false + }); + + beforeAnim = function() { + var el = Ext.fly(dom, '_anim'), + animScope = this, + size = el.getSize(), + xy = el.getXY(), + keyframe, position; + + el.clearOpacity(); + el.clip(); + position = el.getPositioning(); + + keyframe = new Ext.fx.Animator({ + target: dom, + duration: obj.duration, + easing: obj.easing, + keyframes: { + 33: { + opacity: 0.3 + }, + 66: { + height: 1, + y: xy[1] + size.height / 2 + }, + 100: { + width: 1, + x: xy[0] + size.width / 2 + } + } + }); + keyframe.on('afteranimate', function() { + var el = Ext.fly(dom, '_anim'); + if (obj.useDisplay) { + el.setDisplayed(false); + } else { + el.hide(); + } + el.clearOpacity(); + el.setPositioning(position); + el.setSize(size); + + animScope.end(); + }); + }; + + me.animate({ + + duration: (Math.max(obj.duration, 500) * 2), + listeners: { + beforeanimate: { + fn: beforeAnim + } + }, + callback: obj.callback, + scope: obj.scope + }); + return me; + }, + + + frame : function(color, count, obj){ + var me = this, + dom = me.dom, + beforeAnim; + + color = color || '#C3DAF9'; + count = count || 1; + obj = obj || {}; + + beforeAnim = function() { + var el = Ext.fly(dom, '_anim'), + animScope = this, + box, + proxy, proxyAnim; + + el.show(); + box = el.getBox(); + proxy = Ext.getBody().createChild({ + id: el.dom.id + '-anim-proxy', + style: { + position : 'absolute', + 'pointer-events': 'none', + 'z-index': 35000, + border : '0px solid ' + color + } + }); + + proxyAnim = new Ext.fx.Anim({ + target: proxy, + duration: obj.duration || 1000, + iterations: count, + from: { + top: box.y, + left: box.x, + borderWidth: 0, + opacity: 1, + height: box.height, + width: box.width + }, + to: { + top: box.y - 20, + left: box.x - 20, + borderWidth: 10, + opacity: 0, + height: box.height + 40, + width: box.width + 40 + } + }); + proxyAnim.on('afteranimate', function() { + proxy.remove(); + + animScope.end(); + }); + }; + + me.animate({ + + duration: (Math.max(obj.duration, 500) * 2) || 2000, + listeners: { + beforeanimate: { + fn: beforeAnim + } + }, + callback: obj.callback, + scope: obj.scope + }); + return me; + }, + + + ghost: function(anchor, obj) { + var me = this, + dom = me.dom, + beforeAnim; + + anchor = anchor || "b"; + beforeAnim = function() { + var el = Ext.fly(dom, '_anim'), + width = el.getWidth(), + height = el.getHeight(), + xy = el.getXY(), + position = el.getPositioning(), + to = { + opacity: 0 + }; + switch (anchor) { + case 't': + to.y = xy[1] - height; + break; + case 'l': + to.x = xy[0] - width; + break; + case 'r': + to.x = xy[0] + width; + break; + case 'b': + to.y = xy[1] + height; + break; + case 'tl': + to.x = xy[0] - width; + to.y = xy[1] - height; + break; + case 'bl': + to.x = xy[0] - width; + to.y = xy[1] + height; + break; + case 'br': + to.x = xy[0] + width; + to.y = xy[1] + height; + break; + case 'tr': + to.x = xy[0] + width; + to.y = xy[1] - height; + break; + } + this.to = to; + this.on('afteranimate', function () { + var el = Ext.fly(dom, '_anim'); + if (el) { + el.hide(); + el.clearOpacity(); + el.setPositioning(position); + } + }); + }; + + me.animate(Ext.applyIf(obj || {}, { + duration: 500, + easing: 'ease-out', + listeners: { + beforeanimate: beforeAnim + } + })); + return me; + }, + + + highlight: function(color, o) { + var me = this, + dom = me.dom, + from = {}, + restore, to, attr, lns, event, fn; + + + if (dom.tagName.match(me.tableTagRe)) { + return me.select('div').highlight(color, o); + } + + o = o || {}; + lns = o.listeners || {}; + attr = o.attr || 'backgroundColor'; + from[attr] = color || 'ffff9c'; + + if (!o.to) { + to = {}; + to[attr] = o.endColor || me.getColor(attr, 'ffffff', ''); + } + else { + to = o.to; + } + + + o.listeners = Ext.apply(Ext.apply({}, lns), { + beforeanimate: function() { + restore = dom.style[attr]; + var el = Ext.fly(dom, '_anim'); + el.clearOpacity(); + el.show(); + + event = lns.beforeanimate; + if (event) { + fn = event.fn || event; + return fn.apply(event.scope || lns.scope || window, arguments); + } + }, + afteranimate: function() { + if (dom) { + dom.style[attr] = restore; + } + + event = lns.afteranimate; + if (event) { + fn = event.fn || event; + fn.apply(event.scope || lns.scope || window, arguments); + } + } + }); + + me.animate(Ext.apply({}, o, { + duration: 1000, + easing: 'ease-in', + from: from, + to: to + })); + return me; + }, + + + pause: function(ms) { + var me = this; + Ext.fx.Manager.setFxDefaults(me.id, { + delay: ms + }); + return me; + }, + + + fadeIn: function(o) { + var me = this, + dom = me.dom; + + me.animate(Ext.apply({}, o, { + opacity: 1, + internalListeners: { + beforeanimate: function(anim){ + + + var el = Ext.fly(dom, '_anim'); + if (el.isStyle('display', 'none')) { + el.setDisplayed(''); + } else { + el.show(); + } + } + } + })); + return this; + }, + + + fadeOut: function(o) { + var me = this, + dom = me.dom; + + o = Ext.apply({ + opacity: 0, + internalListeners: { + afteranimate: function(anim){ + if (dom && anim.to.opacity === 0) { + var el = Ext.fly(dom, '_anim'); + if (o.useDisplay) { + el.setDisplayed(false); + } else { + el.hide(); + } + } + } + } + }, o); + me.animate(o); + return me; + }, + + + scale: function(w, h, o) { + this.animate(Ext.apply({}, o, { + width: w, + height: h + })); + return this; + }, + + + shift: function(config) { + this.animate(config); + return this; + }, + + + anchorAnimX: function(anchor) { + var xName = (anchor === 'l') ? 'right' : 'left'; + this.dom.style[xName] = '0px'; + } +}); + + + +Ext.define('Ext.dom.Element_dd', { + override: 'Ext.dom.Element', + + + initDD : function(group, config, overrides){ + var dd = new Ext.dd.DD(Ext.id(this.dom), group, config); + return Ext.apply(dd, overrides); + }, + + + initDDProxy : function(group, config, overrides){ + var dd = new Ext.dd.DDProxy(Ext.id(this.dom), group, config); + return Ext.apply(dd, overrides); + }, + + + initDDTarget : function(group, config, overrides){ + var dd = new Ext.dd.DDTarget(Ext.id(this.dom), group, config); + return Ext.apply(dd, overrides); + } +}); + + + +Ext.define('Ext.dom.Element_fx', { + override: 'Ext.dom.Element' +}, +function() { + +var Element = Ext.dom.Element, + VISIBILITY = "visibility", + DISPLAY = "display", + NONE = "none", + HIDDEN = 'hidden', + VISIBLE = 'visible', + OFFSETS = "offsets", + ASCLASS = "asclass", + NOSIZE = 'nosize', + ORIGINALDISPLAY = 'originalDisplay', + VISMODE = 'visibilityMode', + ISVISIBLE = 'isVisible', + OFFSETCLASS = Ext.baseCSSPrefix + 'hide-offsets', + getDisplay = function(el) { + var data = (el.$cache || el.getCache()).data, + display = data[ORIGINALDISPLAY]; + + if (display === undefined) { + data[ORIGINALDISPLAY] = display = ''; + } + return display; + }, + getVisMode = function(el){ + var data = (el.$cache || el.getCache()).data, + visMode = data[VISMODE]; + + if (visMode === undefined) { + data[VISMODE] = visMode = Element.VISIBILITY; + } + return visMode; + }; + +Element.override({ + + originalDisplay : "", + visibilityMode : 1, + + + setVisible : function(visible, animate) { + var me = this, + dom = me.dom, + visMode = getVisMode(me); + + + if (typeof animate == 'string') { + switch (animate) { + case DISPLAY: + visMode = Element.DISPLAY; + break; + case VISIBILITY: + visMode = Element.VISIBILITY; + break; + case OFFSETS: + visMode = Element.OFFSETS; + break; + case NOSIZE: + case ASCLASS: + visMode = Element.ASCLASS; + break; + } + me.setVisibilityMode(visMode); + animate = false; + } + + if (!animate || !me.anim) { + if (visMode == Element.DISPLAY) { + return me.setDisplayed(visible); + } else if (visMode == Element.OFFSETS) { + me[visible?'removeCls':'addCls'](OFFSETCLASS); + } else if (visMode == Element.VISIBILITY) { + me.fixDisplay(); + + dom.style.visibility = visible ? '' : HIDDEN; + } else if (visMode == Element.ASCLASS) { + me[visible?'removeCls':'addCls'](me.visibilityCls || Element.visibilityCls); + } + } else { + + if (visible) { + me.setOpacity(0.01); + me.setVisible(true); + } + if (!Ext.isObject(animate)) { + animate = { + duration: 350, + easing: 'ease-in' + }; + } + me.animate(Ext.applyIf({ + callback: function() { + if (!visible) { + + + Ext.fly(dom, '_internal').setVisible(false).setOpacity(1); + } + }, + to: { + opacity: (visible) ? 1 : 0 + } + }, animate)); + } + (me.$cache || me.getCache()).data[ISVISIBLE] = visible; + return me; + }, + + + hasMetrics : function(){ + var visMode = getVisMode(this); + return this.isVisible() || (visMode == Element.OFFSETS) || (visMode == Element.VISIBILITY); + }, + + + toggle : function(animate){ + var me = this; + me.setVisible(!me.isVisible(), me.anim(animate)); + return me; + }, + + + setDisplayed : function(value) { + if(typeof value == "boolean"){ + value = value ? getDisplay(this) : NONE; + } + this.setStyle(DISPLAY, value); + return this; + }, + + + fixDisplay : function(){ + var me = this; + if (me.isStyle(DISPLAY, NONE)) { + me.setStyle(VISIBILITY, HIDDEN); + me.setStyle(DISPLAY, getDisplay(me)); + if (me.isStyle(DISPLAY, NONE)) { + me.setStyle(DISPLAY, "block"); + } + } + }, + + + hide : function(animate){ + + if (typeof animate == 'string'){ + this.setVisible(false, animate); + return this; + } + this.setVisible(false, this.anim(animate)); + return this; + }, + + + show : function(animate){ + + if (typeof animate == 'string'){ + this.setVisible(true, animate); + return this; + } + this.setVisible(true, this.anim(animate)); + return this; + } +}); + +}); + + + +Ext.define('Ext.dom.Element_position', { + override: 'Ext.dom.Element' +}, +function() { + +var flyInstance, + Element = this, + LEFT = "left", + RIGHT = "right", + TOP = "top", + BOTTOM = "bottom", + POSITION = "position", + STATIC = "static", + RELATIVE = "relative", + ZINDEX = "z-index", + BODY = 'BODY', + + PADDING = 'padding', + BORDER = 'border', + SLEFT = '-left', + SRIGHT = '-right', + STOP = '-top', + SBOTTOM = '-bottom', + SWIDTH = '-width', + + borders = {l: BORDER + SLEFT + SWIDTH, r: BORDER + SRIGHT + SWIDTH, t: BORDER + STOP + SWIDTH, b: BORDER + SBOTTOM + SWIDTH}, + paddings = {l: PADDING + SLEFT, r: PADDING + SRIGHT, t: PADDING + STOP, b: PADDING + SBOTTOM}, + paddingsTLRB = [paddings.l, paddings.r, paddings.t, paddings.b], + bordersTLRB = [borders.l, borders.r, borders.t, borders.b], + round = Math.round, + doc = document, + fly = function (el) { + if (!flyInstance) { + flyInstance = new Ext.Element.Fly(); + } + flyInstance.attach(el); + return flyInstance; + }; + + Element.override({ + + pxRe: /^\d+(?:\.\d*)?px$/i, + + inheritableStatics: { + getX: function(el) { + return Element.getXY(el)[0]; + }, + + getXY: function(el) { + var bd = doc.body, + docEl = doc.documentElement, + leftBorder = 0, + topBorder = 0, + ret = [0,0], + box, + scroll; + + el = Ext.getDom(el); + + if(el != doc && el != bd){ + + + if (Ext.isIE) { + try { + box = el.getBoundingClientRect(); + + + topBorder = docEl.clientTop || bd.clientTop; + leftBorder = docEl.clientLeft || bd.clientLeft; + } catch (ex) { + box = { left: 0, top: 0 }; + } + } else { + box = el.getBoundingClientRect(); + } + + scroll = fly(doc).getScroll(); + ret = [ + round(box.left + scroll.left - leftBorder), + round(box.top + scroll.top - topBorder) + ]; + } + return ret; + }, + + getY: function(el) { + return Element.getXY(el)[1]; + }, + + setX: function(el, x) { + Element.setXY(el, [x, false]); + }, + + setXY: function(el, xy) { + (el = Ext.fly(el, '_setXY')).position(); + + var pts = el.translatePoints(xy), + style = el.dom.style, + pos; + + + + style.right = 'auto'; + for (pos in pts) { + if (!isNaN(pts[pos])) { + style[pos] = pts[pos] + "px"; + } + } + }, + + setY: function(el, y) { + Element.setXY(el, [false, y]); + } + }, + + + center: function(centerIn){ + return this.alignTo(centerIn || doc, 'c-c'); + }, + + + clearPositioning: function(value) { + value = value || ''; + return this.setStyle({ + left : value, + right : value, + top : value, + bottom : value, + 'z-index' : '', + position : STATIC + }); + }, + + getAnchorToXY: function(el, anchor, local, mySize) { + return el.getAnchorXY(anchor, local, mySize); + }, + + + getBottom: function(local) { + return (local ? this.getLocalY() : this.getY()) + this.getHeight(); + }, + + getBorderPadding: function() { + var paddingWidth = this.getStyle(paddingsTLRB), + bordersWidth = this.getStyle(bordersTLRB); + + return { + beforeX: (parseFloat(bordersWidth[borders.l]) || 0) + (parseFloat(paddingWidth[paddings.l]) || 0), + afterX: (parseFloat(bordersWidth[borders.r]) || 0) + (parseFloat(paddingWidth[paddings.r]) || 0), + beforeY: (parseFloat(bordersWidth[borders.t]) || 0) + (parseFloat(paddingWidth[paddings.t]) || 0), + afterY: (parseFloat(bordersWidth[borders.b]) || 0) + (parseFloat(paddingWidth[paddings.b]) || 0) + }; + }, + + + getCenterXY: function(){ + return this.getAlignToXY(doc, 'c-c'); + }, + + + getLeft: function(local) { + return local ? this.getLocalX() : this.getX(); + }, + + + getLocalX: function() { + var me = this, + offsetParent = me.dom.offsetParent, + x = me.getStyle('left'); + + if (!x || x === 'auto') { + x = 0; + } else if (me.pxRe.test(x)) { + x = parseFloat(x); + } else { + x = me.getX(); + if (offsetParent) { + x -= Element.getX(offsetParent); + } + } + + return x; + }, + + + getLocalXY: function() { + var me = this, + offsetParent = me.dom.offsetParent, + style = me.getStyle(['left', 'top']), + x = style.left, + y = style.top; + + if (!x || x === 'auto') { + x = 0; + } else if (me.pxRe.test(x)) { + x = parseFloat(x); + } else { + x = me.getX(); + if (offsetParent) { + x -= Element.getX(offsetParent); + } + } + + if (!y || y === 'auto') { + y = 0; + } else if (me.pxRe.test(y)) { + y = parseFloat(y); + } else { + y = me.getY(); + if (offsetParent) { + y -= Element.getY(offsetParent); + } + } + + return [x, y]; + }, + + + getLocalY: function() { + var me = this, + offsetParent = me.dom.offsetParent, + y = me.getStyle('top'); + + if (!y || y === 'auto') { + y = 0; + } else if (me.pxRe.test(y)) { + y = parseFloat(y); + } else { + y = me.getY(); + if (offsetParent) { + y -= Element.getY(offsetParent); + } + } + + return y; + }, + + + getPageBox: function(getRegion) { + var me = this, + dom = me.dom, + isDoc = dom.nodeName == BODY, + w = isDoc ? Ext.Element.getViewWidth() : dom.offsetWidth, + h = isDoc ? Ext.Element.getViewHeight() : dom.offsetHeight, + xy = me.getXY(), + t = xy[1], + r = xy[0] + w, + b = xy[1] + h, + l = xy[0]; + + if (getRegion) { + return new Ext.util.Region(t, r, b, l); + } + else { + return { + left: l, + top: t, + width: w, + height: h, + right: r, + bottom: b + }; + } + }, + + + getPositioning: function(autoPx){ + var styles = this.getStyle(['left', 'top', 'position', 'z-index']), + dom = this.dom; + + if(autoPx) { + if(styles.left === 'auto') { + styles.left = dom.offsetLeft + 'px'; + } + if(styles.top === 'auto') { + styles.top = dom.offsetTop + 'px'; + } + } + + return styles; + }, + + + getRight: function(local) { + return (local ? this.getLocalX() : this.getX()) + this.getWidth(); + }, + + + getTop: function(local) { + return local ? this.getLocalY() : this.getY(); + }, + + + getX: function() { + return Element.getX(this.dom); + }, + + + getXY: function() { + return Element.getXY(this.dom); + }, + + + getY: function() { + return Element.getY(this.dom); + }, + + + moveTo: function(x, y, animate) { + return this.setXY([x, y], animate); + }, + + + position: function(pos, zIndex, x, y) { + var me = this; + + if (!pos && me.isStyle(POSITION, STATIC)) { + me.setStyle(POSITION, RELATIVE); + } else if (pos) { + me.setStyle(POSITION, pos); + } + if (zIndex) { + me.setStyle(ZINDEX, zIndex); + } + if (x || y) { + me.setXY([x || false, y || false]); + } + }, + + + setBottom: function(bottom) { + this.dom.style[BOTTOM] = this.addUnits(bottom); + return this; + }, + + + setBounds: function(x, y, width, height, animate) { + return this.setBox({ + x: x, + y: y, + width: width, + height: height + }, animate); + }, + + + setLeft: function(left) { + this.dom.style[LEFT] = this.addUnits(left); + return this; + }, + + + setLeftTop: function(left, top) { + var me = this, + style = me.dom.style; + + style.left = me.addUnits(left); + style.top = me.addUnits(top); + + return me; + }, + + setLocalX: function(x) { + var style = this.dom.style; + + + style.right = 'auto'; + style.left = (x === null) ? 'auto' : x + 'px'; + }, + + setLocalXY: function(x, y) { + var style = this.dom.style; + + + style.right = 'auto'; + + if (x && x.length) { + y = x[1]; + x = x[0]; + } + + if (x === null) { + style.left = 'auto'; + } else if (x !== undefined) { + style.left = x + 'px'; + } + + if (y === null) { + style.top = 'auto'; + } else if (y !== undefined) { + style.top = y + 'px'; + } + }, + + setLocalY: function(y) { + this.dom.style.top = (y === null) ? 'auto' : y + 'px'; + }, + + + setLocation: function(x, y, animate) { + return this.setXY([x, y], animate); + }, + + + setPositioning: function(pc) { + return this.setStyle(pc); + }, + + + setRight: function(right) { + this.dom.style[RIGHT] = this.addUnits(right); + return this; + }, + + + setTop: function(top) { + this.dom.style[TOP] = this.addUnits(top); + return this; + }, + + setX: function(x, animate) { + return this.setXY([x, this.getY()], animate); + }, + + setXY: function(xy, animate) { + var me = this; + + if (!animate || !me.anim) { + Element.setXY(me.dom, xy); + } else { + if (!Ext.isObject(animate)) { + animate = {}; + } + me.animate(Ext.applyIf({ to: { x: xy[0], y: xy[1] } }, animate)); + } + return this; + }, + + setY: function(y, animate) { + return this.setXY([this.getX(), y], animate); + } + }); + + + Element.getTrueXY = Element.getXY; + +}); + + + +Ext.define('Ext.dom.Element_scroll', { + override: 'Ext.dom.Element', + + + isScrollable: function() { + var dom = this.dom; + return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth; + }, + + + getScroll: function() { + var me = this, + dom = me.dom, + doc = document, + body = doc.body, + docElement = doc.documentElement, + left, top; + + if (dom === doc || dom === body) { + + + + + + + + + left = docElement.scrollLeft || (body ? body.scrollLeft : 0); + top = docElement.scrollTop || (body ? body.scrollTop : 0); + } else { + left = dom.scrollLeft; + top = dom.scrollTop; + } + + return { + left: left, + top: top + }; + }, + + + getScrollLeft: function() { + var dom = this.dom, + doc = document; + + if (dom === doc || dom === doc.body) { + return this.getScroll().left; + } else { + return dom.scrollLeft; + } + }, + + + getScrollTop: function(){ + var dom = this.dom, + doc = document; + + if (dom === doc || dom === doc.body) { + return this.getScroll().top; + } else { + return dom.scrollTop; + } + }, + + + setScrollLeft: function(left){ + this.dom.scrollLeft = left; + return this; + }, + + + setScrollTop: function(top) { + this.dom.scrollTop = top; + return this; + }, + + + scrollBy: function(deltaX, deltaY, animate) { + var me = this, + dom = me.dom; + + + if (deltaX.length) { + animate = deltaY; + deltaY = deltaX[1]; + deltaX = deltaX[0]; + } else if (typeof deltaX != 'number') { + animate = deltaY; + deltaY = deltaX.y; + deltaX = deltaX.x; + } + + if (deltaX) { + me.scrollTo('left', me.constrainScrollLeft(dom.scrollLeft + deltaX), animate); + } + if (deltaY) { + me.scrollTo('top', me.constrainScrollTop(dom.scrollTop + deltaY), animate); + } + + return me; + }, + + + scrollTo: function(side, value, animate) { + + var top = /top/i.test(side), + me = this, + prop = top ? 'scrollTop' : 'scrollLeft', + dom = me.dom, + animCfg; + + if (!animate || !me.anim) { + + dom[prop] = value; + + dom[prop] = value; + } + else { + animCfg = { + to: {} + }; + animCfg.to[prop] = value; + if (Ext.isObject(animate)) { + Ext.applyIf(animCfg, animate); + } + me.animate(animCfg); + } + return me; + }, + + + scrollIntoView: function(container, hscroll, animate, highlight) { + var me = this, + dom = me.dom, + offsets = me.getOffsetsTo(container = Ext.getDom(container) || Ext.getBody().dom), + + left = offsets[0] + container.scrollLeft, + top = offsets[1] + container.scrollTop, + bottom = top + dom.offsetHeight, + right = left + dom.offsetWidth, + + ctClientHeight = container.clientHeight, + ctScrollTop = parseInt(container.scrollTop, 10), + ctScrollLeft = parseInt(container.scrollLeft, 10), + ctBottom = ctScrollTop + ctClientHeight, + ctRight = ctScrollLeft + container.clientWidth, + newPos; + + + if (highlight) { + if (animate) { + animate = Ext.apply({ + listeners: { + afteranimate: function() { + me.scrollChildFly.attach(dom).highlight(); + } + } + }, animate); + } else { + me.scrollChildFly.attach(dom).highlight(); + } + } + + if (dom.offsetHeight > ctClientHeight || top < ctScrollTop) { + newPos = top; + } else if (bottom > ctBottom) { + newPos = bottom - ctClientHeight; + } + if (newPos != null) { + me.scrollChildFly.attach(container).scrollTo('top', newPos, animate); + } + + if (hscroll !== false) { + newPos = null; + if (dom.offsetWidth > container.clientWidth || left < ctScrollLeft) { + newPos = left; + } else if (right > ctRight) { + newPos = right - container.clientWidth; + } + if (newPos != null) { + me.scrollChildFly.attach(container).scrollTo('left', newPos, animate); + } + } + return me; + }, + + + scrollChildIntoView: function(child, hscroll) { + this.scrollChildFly.attach(Ext.getDom(child)).scrollIntoView(this, hscroll); + }, + + + scroll: function(direction, distance, animate) { + if (!this.isScrollable()) { + return false; + } + var me = this, + dom = me.dom, + side = direction === 'r' || direction === 'l' ? 'left' : 'top', + scrolled = false, + currentScroll, constrainedScroll; + + if (direction === 'r') { + distance = -distance; + } + + if (side === 'left') { + currentScroll = dom.scrollLeft; + constrainedScroll = me.constrainScrollLeft(currentScroll + distance); + } else { + currentScroll = dom.scrollTop; + constrainedScroll = me.constrainScrollTop(currentScroll + distance); + } + + if (constrainedScroll !== currentScroll) { + this.scrollTo(side, constrainedScroll, animate); + scrolled = true; + } + + return scrolled; + }, + + constrainScrollLeft: function(left) { + var dom = this.dom; + return Math.max(Math.min(left, dom.scrollWidth - dom.clientWidth), 0); + }, + + constrainScrollTop: function(top) { + var dom = this.dom; + return Math.max(Math.min(top, dom.scrollHeight - dom.clientHeight), 0); + } +}, function() { + this.prototype.scrollChildFly = new this.Fly(); + this.prototype.scrolltoFly = new this.Fly(); +}); + + + +Ext.define('Ext.dom.Element_style', { + override: 'Ext.dom.Element' +}, +function() { + +var Element = this, + view = document.defaultView, + adjustDirect2DTableRe = /table-row|table-.*-group/, + INTERNAL = '_internal', + HIDDEN = 'hidden', + HEIGHT = 'height', + WIDTH = 'width', + ISCLIPPED = 'isClipped', + OVERFLOW = 'overflow', + OVERFLOWX = 'overflow-x', + OVERFLOWY = 'overflow-y', + ORIGINALCLIP = 'originalClip', + DOCORBODYRE = /#document|body/i, + + + styleHooks, verticalStyleHooks90, verticalStyleHooks270, + edges, k, edge, borderWidth; + +if (!view || !view.getComputedStyle) { + Element.prototype.getStyle = function (property, inline) { + var me = this, + dom = me.dom, + multiple = typeof property != 'string', + hooks = me.styleHooks, + prop = property, + props = prop, + len = 1, + isInline = inline, + camel, domStyle, values, hook, out, style, i; + + if (multiple) { + values = {}; + prop = props[0]; + i = 0; + if (!(len = props.length)) { + return values; + } + } + + if (!dom || dom.documentElement) { + return values || ''; + } + + domStyle = dom.style; + + if (inline) { + style = domStyle; + } else { + style = dom.currentStyle; + + + if (!style) { + isInline = true; + style = domStyle; + } + } + + do { + hook = hooks[prop]; + + if (!hook) { + hooks[prop] = hook = { name: Element.normalize(prop) }; + } + + if (hook.get) { + out = hook.get(dom, me, isInline, style); + } else { + camel = hook.name; + + + + + + if (hook.canThrow) { + try { + out = style[camel]; + } catch (e) { + out = ''; + } + } else { + + + out = style ? style[camel] : ''; + } + } + + if (!multiple) { + return out; + } + + values[prop] = out; + prop = props[++i]; + } while (i < len); + + return values; + }; +} + +Element.override({ + getHeight: function(contentHeight, preciseHeight) { + var me = this, + hidden = me.isStyle('display', 'none'), + height, + floating; + + if (hidden) { + return 0; + } + + height = me.dom.offsetHeight; + + + if (Ext.supports.Direct2DBug) { + floating = me.adjustDirect2DDimension(HEIGHT); + if (preciseHeight) { + height += floating; + } + else if (floating > 0 && floating < 0.5) { + height++; + } + } + + if (contentHeight) { + height -= me.getBorderWidth("tb") + me.getPadding("tb"); + } + + return (height < 0) ? 0 : height; + }, + + getWidth: function(contentWidth, preciseWidth) { + var me = this, + dom = me.dom, + hidden = me.isStyle('display', 'none'), + rect, width, floating; + + if (hidden) { + return 0; + } + + + + + + + + if (preciseWidth && Ext.supports.BoundingClientRect) { + rect = dom.getBoundingClientRect(); + + + + + width = (me.vertical && !Ext.isIE9 && !Ext.supports.RotatedBoundingClientRect) ? + (rect.bottom - rect.top) : (rect.right - rect.left); + } else { + width = dom.offsetWidth; + } + + + + + if (Ext.supports.Direct2DBug && !me.vertical) { + + floating = me.adjustDirect2DDimension(WIDTH); + if (preciseWidth) { + width += floating; + } + + + + else if (floating > 0 && floating < 0.5) { + width++; + } + } + + if (contentWidth) { + width -= me.getBorderWidth("lr") + me.getPadding("lr"); + } + + return (width < 0) ? 0 : width; + }, + + setWidth: function(width, animate) { + var me = this; + width = me.adjustWidth(width); + if (!animate || !me.anim) { + me.dom.style.width = me.addUnits(width); + } + else { + if (!Ext.isObject(animate)) { + animate = {}; + } + me.animate(Ext.applyIf({ + to: { + width: width + } + }, animate)); + } + return me; + }, + + setHeight : function(height, animate) { + var me = this; + + height = me.adjustHeight(height); + if (!animate || !me.anim) { + me.dom.style.height = me.addUnits(height); + } + else { + if (!Ext.isObject(animate)) { + animate = {}; + } + me.animate(Ext.applyIf({ + to: { + height: height + } + }, animate)); + } + + return me; + }, + + applyStyles: function(style) { + Ext.DomHelper.applyStyles(this.dom, style); + return this; + }, + + setSize: function(width, height, animate) { + var me = this; + + if (Ext.isObject(width)) { + animate = height; + height = width.height; + width = width.width; + } + + width = me.adjustWidth(width); + height = me.adjustHeight(height); + + if (!animate || !me.anim) { + me.dom.style.width = me.addUnits(width); + me.dom.style.height = me.addUnits(height); + } + else { + if (animate === true) { + animate = {}; + } + me.animate(Ext.applyIf({ + to: { + width: width, + height: height + } + }, animate)); + } + + return me; + }, + + getViewSize : function() { + var me = this, + dom = me.dom, + isDoc = DOCORBODYRE.test(dom.nodeName), + ret; + + + if (isDoc) { + ret = { + width : Element.getViewWidth(), + height : Element.getViewHeight() + }; + } else { + ret = { + width : dom.clientWidth, + height : dom.clientHeight + }; + } + + return ret; + }, + + getSize: function(contentSize) { + return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)}; + }, + + + + + adjustWidth : function(width) { + var me = this, + isNum = (typeof width == 'number'); + + if (isNum && me.autoBoxAdjust && !me.isBorderBox()) { + width -= (me.getBorderWidth("lr") + me.getPadding("lr")); + } + return (isNum && width < 0) ? 0 : width; + }, + + + adjustHeight : function(height) { + var me = this, + isNum = (typeof height == "number"); + + if (isNum && me.autoBoxAdjust && !me.isBorderBox()) { + height -= (me.getBorderWidth("tb") + me.getPadding("tb")); + } + return (isNum && height < 0) ? 0 : height; + }, + + + getColor : function(attr, defaultValue, prefix) { + var v = this.getStyle(attr), + color = prefix || prefix === '' ? prefix : '#', + h, len, i=0; + + if (!v || (/transparent|inherit/.test(v))) { + return defaultValue; + } + if (/^r/.test(v)) { + v = v.slice(4, v.length - 1).split(','); + len = v.length; + for (; i 5 ? color.toLowerCase() : defaultValue); + }, + + + setOpacity: function(opacity, animate) { + var me = this; + + if (!me.dom) { + return me; + } + + if (!animate || !me.anim) { + me.setStyle('opacity', opacity); + } + else { + if (typeof animate != 'object') { + animate = { + duration: 350, + easing: 'ease-in' + }; + } + + me.animate(Ext.applyIf({ + to: { + opacity: opacity + } + }, animate)); + } + return me; + }, + + + clearOpacity : function() { + return this.setOpacity(''); + }, + + + adjustDirect2DDimension: function(dimension) { + var me = this, + dom = me.dom, + display = me.getStyle('display'), + inlineDisplay = dom.style.display, + inlinePosition = dom.style.position, + originIndex = dimension === WIDTH ? 0 : 1, + currentStyle = dom.currentStyle, + floating; + + if (display === 'inline') { + dom.style.display = 'inline-block'; + } + + dom.style.position = display.match(adjustDirect2DTableRe) ? 'absolute' : 'static'; + + + + + + + floating = (parseFloat(currentStyle[dimension]) || parseFloat(currentStyle.msTransformOrigin.split(' ')[originIndex]) * 2) % 1; + + dom.style.position = inlinePosition; + + if (display === 'inline') { + dom.style.display = inlineDisplay; + } + + return floating; + }, + + + clip : function() { + var me = this, + data = (me.$cache || me.getCache()).data, + style; + + if (!data[ISCLIPPED]) { + data[ISCLIPPED] = true; + style = me.getStyle([OVERFLOW, OVERFLOWX, OVERFLOWY]); + data[ORIGINALCLIP] = { + o: style[OVERFLOW], + x: style[OVERFLOWX], + y: style[OVERFLOWY] + }; + me.setStyle(OVERFLOW, HIDDEN); + me.setStyle(OVERFLOWX, HIDDEN); + me.setStyle(OVERFLOWY, HIDDEN); + } + return me; + }, + + + unclip : function() { + var me = this, + data = (me.$cache || me.getCache()).data, + clip; + + if (data[ISCLIPPED]) { + data[ISCLIPPED] = false; + clip = data[ORIGINALCLIP]; + if (clip.o) { + me.setStyle(OVERFLOW, clip.o); + } + if (clip.x) { + me.setStyle(OVERFLOWX, clip.x); + } + if (clip.y) { + me.setStyle(OVERFLOWY, clip.y); + } + } + return me; + }, + + + boxWrap : function(cls) { + cls = cls || Ext.baseCSSPrefix + 'box'; + var el = Ext.get(this.insertHtml("beforeBegin", "
" + Ext.String.format(Element.boxMarkup, cls) + "
")); + Ext.DomQuery.selectNode('.' + cls + '-mc', el.dom).appendChild(this.dom); + return el; + }, + + + getComputedHeight : function() { + var me = this, + h = Math.max(me.dom.offsetHeight, me.dom.clientHeight); + if (!h) { + h = parseFloat(me.getStyle(HEIGHT)) || 0; + if (!me.isBorderBox()) { + h += me.getFrameWidth('tb'); + } + } + return h; + }, + + + getComputedWidth : function() { + var me = this, + w = Math.max(me.dom.offsetWidth, me.dom.clientWidth); + + if (!w) { + w = parseFloat(me.getStyle(WIDTH)) || 0; + if (!me.isBorderBox()) { + w += me.getFrameWidth('lr'); + } + } + return w; + }, + + + getFrameWidth : function(sides, onlyContentBox) { + return (onlyContentBox && this.isBorderBox()) ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides)); + }, + + + addClsOnOver : function(className, testFn, scope) { + var me = this, + dom = me.dom, + hasTest = Ext.isFunction(testFn); + + me.hover( + function() { + if (hasTest && testFn.call(scope || me, me) === false) { + return; + } + Ext.fly(dom, INTERNAL).addCls(className); + }, + function() { + Ext.fly(dom, INTERNAL).removeCls(className); + } + ); + return me; + }, + + + addClsOnFocus : function(className, testFn, scope) { + var me = this, + dom = me.dom, + hasTest = Ext.isFunction(testFn); + + me.on("focus", function() { + if (hasTest && testFn.call(scope || me, me) === false) { + return false; + } + Ext.fly(dom, INTERNAL).addCls(className); + }); + me.on("blur", function() { + Ext.fly(dom, INTERNAL).removeCls(className); + }); + return me; + }, + + + addClsOnClick : function(className, testFn, scope) { + var me = this, + dom = me.dom, + hasTest = Ext.isFunction(testFn); + + me.on("mousedown", function() { + if (hasTest && testFn.call(scope || me, me) === false) { + return false; + } + Ext.fly(dom, INTERNAL).addCls(className); + var d = Ext.getDoc(), + fn = function() { + Ext.fly(dom, INTERNAL).removeCls(className); + d.removeListener("mouseup", fn); + }; + d.on("mouseup", fn); + }); + return me; + }, + + + getStyleSize : function() { + var me = this, + d = this.dom, + isDoc = DOCORBODYRE.test(d.nodeName), + s , + w, h; + + + if (isDoc) { + return { + width : Element.getViewWidth(), + height : Element.getViewHeight() + }; + } + + s = me.getStyle([HEIGHT, WIDTH], true); + + if (s.width && s.width != 'auto') { + w = parseFloat(s.width); + if (me.isBorderBox()) { + w -= me.getFrameWidth('lr'); + } + } + + if (s.height && s.height != 'auto') { + h = parseFloat(s.height); + if (me.isBorderBox()) { + h -= me.getFrameWidth('tb'); + } + } + + return {width: w || me.getWidth(true), height: h || me.getHeight(true)}; + }, + + statics: { + selectableCls: Ext.baseCSSPrefix + 'selectable', + unselectableCls: Ext.baseCSSPrefix + 'unselectable' + }, + + + selectable : function() { + var me = this; + + + + me.dom.unselectable = ''; + + me.removeCls(Element.unselectableCls); + me.addCls(Element.selectableCls); + + return me; + }, + + + unselectable : function() { + + + + + + + + var me = this; + + + + + + + if (Ext.isOpera) { + me.dom.unselectable = 'on'; + } + + + + + + + + + + + me.removeCls(Element.selectableCls); + me.addCls(Element.unselectableCls); + + return me; + }, + + + setVertical: function(angle, cls) { + var me = this, + proto = Element.prototype, + hooks; + + me.vertical = true; + if (cls) { + me.addCls(me.verticalCls = cls); + } + + me.setWidth = proto.setHeight; + me.setHeight = proto.setWidth; + if (!Ext.isIE9m) { + + + + + me.getWidth = proto.getHeight; + me.getHeight = proto.getWidth; + } + + + me.styleHooks = (angle === 270) ? + Element.prototype.verticalStyleHooks270 : Element.prototype.verticalStyleHooks90; + }, + + + setHorizontal: function() { + var me = this, + cls = me.verticalCls; + + delete me.vertical; + if (cls) { + delete me.verticalCls; + me.removeCls(cls); + } + + + delete me.setWidth; + delete me.setHeight; + if (!Ext.isIE9m) { + delete me.getWidth; + delete me.getHeight; + } + + + delete me.styleHooks; + } +}); + +Element.prototype.styleHooks = styleHooks = Ext.dom.AbstractElement.prototype.styleHooks; + + + +Element.prototype.verticalStyleHooks90 = verticalStyleHooks90 = Ext.Object.chain(Element.prototype.styleHooks); +Element.prototype.verticalStyleHooks270 = verticalStyleHooks270 = Ext.Object.chain(Element.prototype.styleHooks); + +verticalStyleHooks90.width = { name: 'height' }; +verticalStyleHooks90.height = { name: 'width' }; +verticalStyleHooks90['margin-top'] = { name: 'marginLeft' }; +verticalStyleHooks90['margin-right'] = { name: 'marginTop' }; +verticalStyleHooks90['margin-bottom'] = { name: 'marginRight' }; +verticalStyleHooks90['margin-left'] = { name: 'marginBottom' }; +verticalStyleHooks90['padding-top'] = { name: 'paddingLeft' }; +verticalStyleHooks90['padding-right'] = { name: 'paddingTop' }; +verticalStyleHooks90['padding-bottom'] = { name: 'paddingRight' }; +verticalStyleHooks90['padding-left'] = { name: 'paddingBottom' }; +verticalStyleHooks90['border-top'] = { name: 'borderLeft' }; +verticalStyleHooks90['border-right'] = { name: 'borderTop' }; +verticalStyleHooks90['border-bottom'] = { name: 'borderRight' }; +verticalStyleHooks90['border-left'] = { name: 'borderBottom' }; + +verticalStyleHooks270.width = { name: 'height' }; +verticalStyleHooks270.height = { name: 'width' }; +verticalStyleHooks270['margin-top'] = { name: 'marginRight' }; +verticalStyleHooks270['margin-right'] = { name: 'marginBottom' }; +verticalStyleHooks270['margin-bottom'] = { name: 'marginLeft' }; +verticalStyleHooks270['margin-left'] = { name: 'marginTop' }; +verticalStyleHooks270['padding-top'] = { name: 'paddingRight' }; +verticalStyleHooks270['padding-right'] = { name: 'paddingBottom' }; +verticalStyleHooks270['padding-bottom'] = { name: 'paddingLeft' }; +verticalStyleHooks270['padding-left'] = { name: 'paddingTop' }; +verticalStyleHooks270['border-top'] = { name: 'borderRight' }; +verticalStyleHooks270['border-right'] = { name: 'borderBottom' }; +verticalStyleHooks270['border-bottom'] = { name: 'borderLeft' }; +verticalStyleHooks270['border-left'] = { name: 'borderTop' }; + +if (Ext.isIE7m) { + styleHooks.fontSize = styleHooks['font-size'] = { + name: 'fontSize', + canThrow: true + }; + + styleHooks.fontStyle = styleHooks['font-style'] = { + name: 'fontStyle', + canThrow: true + }; + + styleHooks.fontFamily = styleHooks['font-family'] = { + name: 'fontFamily', + canThrow: true + }; +} + + +if (Ext.isIEQuirks || Ext.isIE && Ext.ieVersion <= 8) { + function getBorderWidth (dom, el, inline, style) { + if (style[this.styleName] == 'none') { + return '0px'; + } + return style[this.name]; + } + + edges = ['Top','Right','Bottom','Left']; + k = edges.length; + + while (k--) { + edge = edges[k]; + borderWidth = 'border' + edge + 'Width'; + + styleHooks['border-'+edge.toLowerCase()+'-width'] = styleHooks[borderWidth] = { + name: borderWidth, + styleName: 'border' + edge + 'Style', + get: getBorderWidth + }; + } +} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +Ext.getDoc().on('selectstart', function(ev, dom) { + var doc = document.documentElement, + selectableCls = Element.selectableCls, + unselectableCls = Element.unselectableCls, + tagName = dom && dom.tagName; + + tagName = tagName && tagName.toLowerCase(); + + + + + if (tagName === 'input' || tagName === 'textarea') { + return; + } + + + while (dom && dom.nodeType === 1 && dom !== doc) { + var el = Ext.fly(dom); + + + if (el.hasCls(selectableCls)) { + return; + } + + + if (el.hasCls(unselectableCls)) { + ev.stopEvent(); + return; + } + + dom = dom.parentNode; + } +}); + +}); + +Ext.onReady(function () { + var opacityRe = /alpha\(opacity=(.*)\)/i, + trimRe = /^\s+|\s+$/g, + hooks = Ext.dom.Element.prototype.styleHooks; + + + hooks.opacity = { + name: 'opacity', + afterSet: function(dom, value, el) { + if (el.isLayer) { + el.onOpacitySet(value); + } + } + }; + if (!Ext.supports.Opacity && Ext.isIE) { + Ext.apply(hooks.opacity, { + get: function (dom) { + var filter = dom.style.filter, + match, opacity; + if (filter.match) { + match = filter.match(opacityRe); + if (match) { + opacity = parseFloat(match[1]); + if (!isNaN(opacity)) { + return opacity ? opacity / 100 : 0; + } + } + } + return 1; + }, + set: function (dom, value) { + var style = dom.style, + val = style.filter.replace(opacityRe, '').replace(trimRe, ''); + + style.zoom = 1; + + + if (typeof(value) == 'number' && value >= 0 && value < 1) { + value *= 100; + style.filter = val + (val.length ? ' ' : '') + 'alpha(opacity='+value+')'; + } else { + style.filter = val; + } + } + }); + } + + +}); + + + +Ext.define('Ext.util.Positionable', { + + _positionTopLeft: ['position', 'top', 'left'], + + _alignRe: /^([a-z]+)-([a-z]+)(\?)?$/, + + + + afterSetPosition: Ext.emptyFn, + + + + + adjustForConstraints: function(xy, parent) { + var vector = this.getConstrainVector(parent, xy); + if (vector) { + xy[0] += vector[0]; + xy[1] += vector[1]; + } + return xy; + }, + + + alignTo: function(element, position, offsets, animate) { + var me = this, + el = me.el; + + return me.setXY(me.getAlignToXY(element, position, offsets), + el.anim && !!animate ? el.anim(animate) : false); + }, + + + anchorTo: function(anchorToEl, alignment, offsets, animate, monitorScroll, callback) { + var me = this, + scroll = !Ext.isEmpty(monitorScroll), + action = function() { + me.alignTo(anchorToEl, alignment, offsets, animate); + Ext.callback(callback, me); + }, + anchor = me.getAnchor(); + + + me.removeAnchor(); + Ext.apply(anchor, { + fn: action, + scroll: scroll + }); + + Ext.EventManager.onWindowResize(action, null); + + if (scroll) { + Ext.EventManager.on(window, 'scroll', action, null, + {buffer: !isNaN(monitorScroll) ? monitorScroll : 50}); + } + action(); + return me; + }, + + + calculateAnchorXY: function(anchor, extraX, extraY, mySize) { + + + var me = this, + el = me.el, + doc = document, + isViewport = el.dom == doc.body || el.dom == doc, + round = Math.round, + xy, myWidth, myHeight; + + anchor = (anchor || "tl").toLowerCase(); + mySize = mySize || {}; + + myWidth = mySize.width || isViewport ? Ext.Element.getViewWidth() : me.getWidth(); + myHeight = mySize.height || isViewport ? Ext.Element.getViewHeight() : me.getHeight(); + + + + switch (anchor) { + case 'tl' : xy = [0, 0]; + break; + case 'bl' : xy = [0, myHeight]; + break; + case 'tr' : xy = [myWidth, 0]; + break; + case 'c' : xy = [round(myWidth * 0.5), round(myHeight * 0.5)]; + break; + case 't' : xy = [round(myWidth * 0.5), 0]; + break; + case 'l' : xy = [0, round(myHeight * 0.5)]; + break; + case 'r' : xy = [myWidth, round(myHeight * 0.5)]; + break; + case 'b' : xy = [round(myWidth * 0.5), myHeight]; + break; + case 'tc' : xy = [round(myWidth * 0.5), 0]; + break; + case 'bc' : xy = [round(myWidth * 0.5), myHeight]; + break; + case 'br' : xy = [myWidth, myHeight]; + } + return [xy[0] + extraX, xy[1] + extraY]; + }, + + + convertPositionSpec: Ext.identityFn, + + + getAlignToXY: function(alignToEl, posSpec, offset) { + var me = this, + viewportWidth = Ext.Element.getViewWidth() - 10, + viewportHeight = Ext.Element.getViewHeight() - 10, + doc = document, + docElement = doc.documentElement, + docBody = doc.body, + scrollX = (docElement.scrollLeft || docBody.scrollLeft || 0), + scrollY = (docElement.scrollTop || docBody.scrollTop || 0), + alignMatch, myPosition, alignToElPosition, myWidth, myHeight, + alignToElRegion, swapY, swapX, constrain, align1, align2, + p1y, p1x, p2y, p2x, x, y; + + alignToEl = Ext.get(alignToEl.el || alignToEl); + + if (!alignToEl || !alignToEl.dom) { + } + + offset = offset || [0,0]; + posSpec = (!posSpec || posSpec == "?" ? "tl-bl?" : + (!(/-/).test(posSpec) && posSpec !== "" ? "tl-" + posSpec : posSpec || "tl-bl")).toLowerCase(); + + posSpec = me.convertPositionSpec(posSpec); + + alignMatch = posSpec.match(me._alignRe); + + + align1 = alignMatch[1]; + align2 = alignMatch[2]; + constrain = !!alignMatch[3]; + + + + myPosition = me.getAnchorXY(align1, true); + alignToElPosition = me.getAnchorToXY(alignToEl, align2, false); + + x = alignToElPosition[0] - myPosition[0] + offset[0]; + y = alignToElPosition[1] - myPosition[1] + offset[1]; + + + if (constrain) { + myWidth = me.getWidth(); + myHeight = me.getHeight(); + alignToElRegion = alignToEl.getRegion(); + + + + + p1y = align1.charAt(0); + p1x = align1.charAt(align1.length - 1); + p2y = align2.charAt(0); + p2x = align2.charAt(align2.length - 1); + swapY = ((p1y == "t" && p2y == "b") || (p1y == "b" && p2y == "t")); + swapX = ((p1x == "r" && p2x == "l") || (p1x == "l" && p2x == "r")); + + if (x + myWidth > viewportWidth + scrollX) { + x = swapX ? alignToElRegion.left - myWidth : viewportWidth + scrollX - myWidth; + } + if (x < scrollX) { + x = swapX ? alignToElRegion.right : scrollX; + } + if (y + myHeight > viewportHeight + scrollY) { + y = swapY ? alignToElRegion.top - myHeight : viewportHeight + scrollY - myHeight; + } + if (y < scrollY) { + y = swapY ? alignToElRegion.bottom : scrollY; + } + } + return [x,y]; + }, + + + getAnchor: function(){ + var el = this.el, + data = (el.$cache || el.getCache()).data, + anchor; + + if (!el.dom) { + return; + } + anchor = data._anchor; + + if(!anchor){ + anchor = data._anchor = {}; + } + return anchor; + }, + + + getAnchorXY: function(anchor, local, mySize) { + var me = this, + myPos = me.getXY(), + el = me.el, + doc = document, + isViewport = el.dom == doc.body || el.dom == doc, + scroll = el.getScroll(), + extraX = isViewport ? scroll.left : local ? 0 : myPos[0], + extraY = isViewport ? scroll.top : local ? 0 : myPos[1]; + + return me.calculateAnchorXY(anchor, extraX, extraY, mySize); + }, + + + getBox: function(contentBox, local) { + var me = this, + xy = local ? me.getLocalXY() : me.getXY(), + x = xy[0], + y = xy[1], + w = me.getWidth(), + h = me.getHeight(), + borderPadding, beforeX, beforeY; + + if (contentBox) { + borderPadding = me.getBorderPadding(); + beforeX = borderPadding.beforeX; + beforeY = borderPadding.beforeY; + + x += beforeX; + y += beforeY; + w -= (beforeX + borderPadding.afterX); + h -= (beforeY + borderPadding.afterY); + } + + return { + x: x, + left: x, + 0: x, + y: y, + top: y, + 1: y, + width: w, + height: h, + right: x + w, + bottom: y + h + }; + }, + + + calculateConstrainedPosition: function(constrainTo, proposedPosition, local, proposedSize) { + var me = this, + vector, + fp = me.floatParent, + parentNode = fp ? fp.getTargetEl() : null, + parentOffset, + borderPadding, + proposedConstrainPosition, + xy = false; + + if (local && fp) { + parentOffset = parentNode.getXY(); + borderPadding = parentNode.getBorderPadding(); + parentOffset[0] += borderPadding.beforeX; + parentOffset[1] += borderPadding.beforeY; + if (proposedPosition) { + proposedConstrainPosition = [proposedPosition[0] + parentOffset[0], proposedPosition[1] + parentOffset[1]]; + } + } else { + proposedConstrainPosition = proposedPosition; + } + + + + constrainTo = constrainTo || me.constrainTo || parentNode || me.container || me.el.parent(); + vector = (me.constrainHeader ? me.header : me).getConstrainVector(constrainTo, proposedConstrainPosition, proposedSize); + + + if (vector) { + xy = proposedPosition || me.getPosition(local); + xy[0] += vector[0]; + xy[1] += vector[1]; + } + return xy; + }, + + + getConstrainVector: function(constrainTo, proposedPosition, proposedSize) { + var thisRegion = this.getRegion(), + vector = [0, 0], + shadowSize = (this.shadow && this.constrainShadow && !this.shadowDisabled) ? this.shadow.getShadowSize() : undefined, + overflowed = false, + constraintInsets = this.constraintInsets; + + if (!(constrainTo instanceof Ext.util.Region)) { + constrainTo = Ext.get(constrainTo.el || constrainTo).getViewRegion(); + } + + + if (constraintInsets) { + constraintInsets = Ext.isObject(constraintInsets) ? constraintInsets : Ext.Element.parseBox(constraintInsets); + constrainTo.adjust(constraintInsets.top, constraintInsets.right, constraintInsets.bottom, constraintInsets.length); + } + + + if (proposedPosition) { + thisRegion.translateBy(proposedPosition[0] - thisRegion.x, proposedPosition[1] - thisRegion.y); + } + + if (proposedSize) { + thisRegion.right = thisRegion.left + proposedSize[0]; + thisRegion.bottom = thisRegion.top + proposedSize[1]; + } + + + if (shadowSize) { + constrainTo.adjust(shadowSize[0], -shadowSize[1], -shadowSize[2], shadowSize[3]); + } + + + if (thisRegion.right > constrainTo.right) { + overflowed = true; + vector[0] = (constrainTo.right - thisRegion.right); + } + if (thisRegion.left + vector[0] < constrainTo.left) { + overflowed = true; + vector[0] = (constrainTo.left - thisRegion.left); + } + + + if (thisRegion.bottom > constrainTo.bottom) { + overflowed = true; + vector[1] = (constrainTo.bottom - thisRegion.bottom); + } + if (thisRegion.top + vector[1] < constrainTo.top) { + overflowed = true; + vector[1] = (constrainTo.top - thisRegion.top); + } + return overflowed ? vector : false; + }, + + + getOffsetsTo: function(offsetsTo) { + var o = this.getXY(), + e = Ext.fly(offsetsTo.el || offsetsTo, '_internal').getXY(); + return [o[0] - e[0],o[1] - e[1]]; + }, + + + getRegion: function() { + var box = this.getBox(); + return new Ext.util.Region(box.top, box.right, box.bottom, box.left); + }, + + + getViewRegion: function() { + var me = this, + el = me.el, + isBody = el.dom.nodeName === 'BODY', + borderPadding, scroll, pos, top, left, width, height; + + + if (isBody) { + scroll = el.getScroll(); + left = scroll.left; + top = scroll.top; + width = Ext.dom.AbstractElement.getViewportWidth(); + height = Ext.dom.AbstractElement.getViewportHeight(); + } + else { + borderPadding = me.getBorderPadding(); + pos = me.getXY(); + left = pos[0] + borderPadding.beforeX; + top = pos[1] + borderPadding.beforeY; + width = me.getWidth(true); + height = me.getHeight(true); + } + + return new Ext.util.Region(top, left + width, top + height, left); + }, + + + move: function(direction, distance, animate) { + var me = this, + xy = me.getXY(), + x = xy[0], + y = xy[1], + left = [x - distance, y], + right = [x + distance, y], + top = [x, y - distance], + bottom = [x, y + distance], + hash = { + l: left, + left: left, + r: right, + right: right, + t: top, + top: top, + up: top, + b: bottom, + bottom: bottom, + down: bottom + }; + + direction = direction.toLowerCase(); + me.setXY([hash[direction][0], hash[direction][1]], animate); + }, + + + removeAnchor: function() { + var anchor = this.getAnchor(); + + if (anchor && anchor.fn) { + Ext.EventManager.removeResizeListener(anchor.fn); + if (anchor.scroll) { + Ext.EventManager.un(window, 'scroll', anchor.fn); + } + delete anchor.fn; + } + return this; + }, + + + setBox: function(box, animate) { + var me = this, + el = me.el, + x = box.x, + y = box.y, + xy = [x, y], + w = box.width, + h = box.height, + doConstrain = (me.constrain || me.constrainHeader), + constrainedPos = doConstrain && me.calculateConstrainedPosition(null, [x, y], false, [w, h]); + + + if (constrainedPos) { + x = constrainedPos[0]; + y = constrainedPos[1]; + } + if (!animate || !el.anim) { + me.setSize(w, h); + me.setXY([x, y]); + me.afterSetPosition(x, y); + } else { + me.animate(Ext.applyIf({ + to: { + x: x, + y: y, + width: el.adjustWidth(w), + height: el.adjustHeight(h) + }, + listeners: { + afteranimate: Ext.Function.bind(me.afterSetPosition, me, [x, y]) + } + }, animate)); + } + return me; + }, + + + setRegion: function(region, animate) { + return this.setBox({ + x: region.left, + y: region.top, + width: region.right - region.left, + height: region.bottom - region.top + }, animate); + }, + + + translatePoints: function(x, y) { + var pos = this.translateXY(x, y); + + return { + left: pos.x, + top: pos.y + }; + }, + + + translateXY: function(x, y) { + var me = this, + el = me.el, + styles = el.getStyle(me._positionTopLeft), + relative = styles.position == 'relative', + left = parseFloat(styles.left), + top = parseFloat(styles.top), + xy = me.getXY(); + + if (Ext.isArray(x)) { + y = x[1]; + x = x[0]; + } + if (isNaN(left)) { + left = relative ? 0 : el.dom.offsetLeft; + } + if (isNaN(top)) { + top = relative ? 0 : el.dom.offsetTop; + } + left = (typeof x == 'number') ? x - xy[0] + left : undefined; + top = (typeof y == 'number') ? y - xy[1] + top : undefined; + return { + x: left, + y: top + }; + } +}); + + + +Ext.define('Ext.dom.Element', function(Element) { + var HIDDEN = 'hidden', + DOC = document, + VISIBILITY = "visibility", + DISPLAY = "display", + NONE = "none", + XMASKED = Ext.baseCSSPrefix + "masked", + XMASKEDRELATIVE = Ext.baseCSSPrefix + "masked-relative", + EXTELMASKMSG = Ext.baseCSSPrefix + "mask-msg", + bodyRe = /^body/i, + visFly, + + + noBoxAdjust = Ext.isStrict ? { + select: 1 + }: { + input: 1, + select: 1, + textarea: 1 + }, + + + isScrolled = function(c) { + var r = [], ri = -1, + i, ci; + for (i = 0; ci = c[i]; i++) { + if (ci.scrollTop > 0 || ci.scrollLeft > 0) { + r[++ri] = ci; + } + } + return r; + }; + + return { + + extend: Ext.dom.AbstractElement , + + alternateClassName: ['Ext.Element', 'Ext.core.Element'], + + + + + + + + + + + + tableTagRe: /^(?:tr|td|table|tbody)$/i, + + mixins: [ + Ext.util.Positionable + ], + + addUnits: function() { + return Element.addUnits.apply(Element, arguments); + }, + + + focus: function(defer, dom) { + var me = this; + + dom = dom || me.dom; + try { + if (Number(defer)) { + Ext.defer(me.focus, defer, me, [null, dom]); + } else { + dom.focus(); + } + } catch(e) { + } + return me; + }, + + + blur: function() { + var me = this, + dom = me.dom; + + + if (dom !== document.body) { + try { + dom.blur(); + } catch(e) { + } + return me; + } else { + return me.focus(undefined, dom); + } + }, + + + isBorderBox: function() { + var box = Ext.isBorderBox; + + + if (box && Ext.isIE7m) { + box = !((this.dom.tagName || "").toLowerCase() in noBoxAdjust); + } + return box; + }, + + + hover: function(overFn, outFn, scope, options) { + var me = this; + me.on('mouseenter', overFn, scope || me.dom, options); + me.on('mouseleave', outFn, scope || me.dom, options); + return me; + }, + + + getAttributeNS: function(ns, name) { + return this.getAttribute(name, ns); + }, + + getAttribute: (Ext.isIE && !(Ext.isIE9p && DOC.documentMode >= 9)) ? + + + + + + + + + + + + function(name, ns) { + var d = this.dom, + type; + if (ns) { + type = typeof d[ns + ":" + name]; + if (type != 'undefined' && type != 'unknown') { + return d[ns + ":" + name] || null; + } + return null; + } + if (name === "for") { + name = "htmlFor"; + } + return d[name] || null; + } : function(name, ns) { + var d = this.dom; + if (ns) { + return d.getAttributeNS(ns, name) || d.getAttribute(ns + ":" + name); + } + return d.getAttribute(name) || d[name] || null; + }, + + + cacheScrollValues: function() { + var me = this, + scrolledDescendants, + el, i, + scrollValues = [], + result = function() { + for (i = 0; i < scrolledDescendants.length; i++) { + el = scrolledDescendants[i]; + el.scrollLeft = scrollValues[i][0]; + el.scrollTop = scrollValues[i][1]; + } + }; + + if (!Ext.DomQuery.pseudos.isScrolled) { + Ext.DomQuery.pseudos.isScrolled = isScrolled; + } + scrolledDescendants = me.query(':isScrolled'); + for (i = 0; i < scrolledDescendants.length; i++) { + el = scrolledDescendants[i]; + scrollValues[i] = [el.scrollLeft, el.scrollTop]; + } + return result; + }, + + + autoBoxAdjust: true, + + + isVisible : function(deep) { + var me = this, + dom = me.dom, + stopNode = dom.ownerDocument.documentElement; + + if (!visFly) { + visFly = new Element.Fly(); + } + + while (dom !== stopNode) { + + + if (!dom || dom.nodeType === 11 || (visFly.attach(dom)).isStyle(VISIBILITY, HIDDEN) || visFly.isStyle(DISPLAY, NONE)) { + return false; + } + + if (!deep) { + break; + } + dom = dom.parentNode; + } + return true; + }, + + + isDisplayed : function() { + return !this.isStyle(DISPLAY, NONE); + }, + + + enableDisplayMode : function(display) { + var me = this; + + me.setVisibilityMode(Element.DISPLAY); + + if (!Ext.isEmpty(display)) { + (me.$cache || me.getCache()).data.originalDisplay = display; + } + + return me; + }, + + + mask : function(msg, msgCls , elHeight) { + var me = this, + dom = me.dom, + + + setExpression = dom.style.setExpression, + data = (me.$cache || me.getCache()).data, + maskShimEl = data.maskShimEl, + maskEl = data.maskEl, + maskMsg = data.maskMsg, + widthExpression, heightExpression; + + if (!(bodyRe.test(dom.tagName) && me.getStyle('position') == 'static')) { + me.addCls(XMASKEDRELATIVE); + } + + + if (maskEl) { + maskEl.remove(); + } + + if (maskMsg) { + maskMsg.remove(); + } + + if (maskShimEl) { + maskShimEl.remove(); + } + + if (Ext.isIE6) { + maskShimEl = Ext.DomHelper.append(dom, { + tag: 'iframe', + cls : Ext.baseCSSPrefix + 'shim ' + Ext.baseCSSPrefix + 'mask-shim' + }, true); + data.maskShimEl = maskShimEl; + maskShimEl.setDisplayed(true); + } + + Ext.DomHelper.append(dom, [{ + cls : Ext.baseCSSPrefix + "mask", + style: 'top:0;left:0;' + }, { + cls : msgCls ? EXTELMASKMSG + " " + msgCls : EXTELMASKMSG, + cn : { + tag: 'div', + cls: Ext.baseCSSPrefix + 'mask-msg-inner', + cn: { + tag: 'div', + cls: Ext.baseCSSPrefix + 'mask-msg-text', + html: msg || '' + } + } + }]); + + maskMsg = Ext.get(dom.lastChild); + maskEl = Ext.get(maskMsg.dom.previousSibling); + data.maskMsg = maskMsg; + data.maskEl = maskEl; + + me.addCls(XMASKED); + maskEl.setDisplayed(true); + + if (typeof msg == 'string') { + maskMsg.setDisplayed(true); + maskMsg.center(me); + } else { + maskMsg.setDisplayed(false); + } + + + + + + if (!Ext.supports.IncludePaddingInWidthCalculation && setExpression) { + + try { + maskEl.dom.style.setExpression('width', 'this.parentNode.clientWidth + "px"'); + widthExpression = 'this.parentNode.clientWidth + "px"'; + if (maskShimEl) { + maskShimEl.dom.style.setExpression('width', widthExpression); + } + maskEl.dom.style.setExpression('width', widthExpression); + } catch (e) {} + } + + + + if (!Ext.supports.IncludePaddingInHeightCalculation && setExpression) { + + try { + heightExpression = 'this.parentNode.' + (dom == DOC.body ? 'scrollHeight' : 'offsetHeight') + ' + "px"'; + if (maskShimEl) { + maskShimEl.dom.style.setExpression('height', heightExpression); + } + maskEl.dom.style.setExpression('height', heightExpression); + } catch (e) {} + } + + else if (Ext.isIE9m && !(Ext.isIE7 && Ext.isStrict) && me.getStyle('height') == 'auto') { + if (maskShimEl) { + maskShimEl.setSize(undefined, elHeight || me.getHeight()); + } + maskEl.setSize(undefined, elHeight || me.getHeight()); + } + return maskEl; + }, + + + unmask : function() { + var me = this, + data = (me.$cache || me.getCache()).data, + maskEl = data.maskEl, + maskShimEl = data.maskShimEl, + maskMsg = data.maskMsg, + style; + + if (maskEl) { + style = maskEl.dom.style; + + if (style.clearExpression) { + style.clearExpression('width'); + style.clearExpression('height'); + } + + if (maskEl) { + maskEl.remove(); + delete data.maskEl; + } + + if (maskMsg) { + maskMsg.remove(); + delete data.maskMsg; + } + + me.removeCls([XMASKED, XMASKEDRELATIVE]); + + if (maskShimEl) { + style = maskShimEl.dom.style; + + if (style.clearExpression) { + style.clearExpression('width'); + style.clearExpression('height'); + } + + maskShimEl.remove(); + delete data.maskShimEl; + } + } + }, + + + isMasked : function() { + var me = this, + data = (me.$cache || me.getCache()).data, + maskEl = data.maskEl, + maskMsg = data.maskMsg, + hasMask = false; + + if (maskEl && maskEl.isVisible()) { + if (maskMsg) { + maskMsg.center(me); + } + hasMask = true; + } + return hasMask; + }, + + + createShim : function() { + var el = DOC.createElement('iframe'), + shim; + + el.frameBorder = '0'; + el.className = Ext.baseCSSPrefix + 'shim'; + el.src = Ext.SSL_SECURE_URL; + shim = Ext.get(this.dom.parentNode.insertBefore(el, this.dom)); + shim.autoBoxAdjust = false; + return shim; + }, + + + addKeyListener : function(key, fn, scope){ + var config; + if(typeof key != 'object' || Ext.isArray(key)){ + config = { + target: this, + key: key, + fn: fn, + scope: scope + }; + }else{ + config = { + target: this, + key : key.key, + shift : key.shift, + ctrl : key.ctrl, + alt : key.alt, + fn: fn, + scope: scope + }; + } + return new Ext.util.KeyMap(config); + }, + + + addKeyMap : function(config) { + return new Ext.util.KeyMap(Ext.apply({ + target: this + }, config)); + }, + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + on: function(eventName, fn, scope, options) { + Ext.EventManager.on(this, eventName, fn, scope || this, options); + return this; + }, + + + un: function(eventName, fn, scope) { + Ext.EventManager.un(this, eventName, fn, scope || this); + return this; + }, + + + removeAllListeners: function() { + Ext.EventManager.removeAll(this); + return this; + }, + + + purgeAllListeners: function() { + Ext.EventManager.purgeElement(this); + return this; + }, + + select: function(selector) { + return Element.select(selector, false, this.dom); + } + }; +}, function() { + + var DOC = document, + EC = Ext.cache, + Element = this, + AbstractElement = Ext.dom.AbstractElement, + focusRe = /^a|button|embed|iframe|input|object|select|textarea$/i, + nonSpaceRe = /\S/, + scriptTagRe = /(?:]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig, + replaceScriptTagRe = /(?:)((\n|\r|.)*?)(?:<\/script>)/ig, + srcRe = /\ssrc=([\'\"])(.*?)\1/i, + typeRe = /\stype=([\'\"])(.*?)\1/i, + useDocForId = !Ext.isIE8m, + internalFly; + + Element.boxMarkup = '
'; + + + + + + function garbageCollect() { + if (!Ext.enableGarbageCollector) { + clearInterval(Element.collectorThreadId); + } else { + var eid, + d, + o, + t; + + for (eid in EC) { + if (!EC.hasOwnProperty(eid)) { + continue; + } + + o = EC[eid]; + + + if (o.skipGarbageCollection) { + continue; + } + + d = o.dom; + + + + + + + + + + + + + + + + + if (d && (!d.parentNode || (!d.offsetParent && !Ext.getElementById(eid)))) { + if (Ext.enableListenerCollection) { + Ext.EventManager.removeAll(d); + } + delete EC[eid]; + } + } + + if (Ext.isIE) { + t = {}; + for (eid in EC) { + if (!EC.hasOwnProperty(eid)) { + continue; + } + t[eid] = EC[eid]; + } + EC = Ext.cache = t; + } + } + } + + Element.collectorThreadId = setInterval(garbageCollect, 30000); + + + Element.addMethods({ + + + monitorMouseLeave: function(delay, handler, scope) { + var me = this, + timer, + listeners = { + mouseleave: function(e) { + timer = setTimeout(Ext.Function.bind(handler, scope||me, [e]), delay); + }, + mouseenter: function() { + clearTimeout(timer); + }, + freezeEvent: true + }; + + me.on(listeners); + return listeners; + }, + + + swallowEvent : function(eventName, preventDefault) { + var me = this, + e, eLen, + fn = function(e) { + e.stopPropagation(); + if (preventDefault) { + e.preventDefault(); + } + }; + + if (Ext.isArray(eventName)) { + eLen = eventName.length; + + for (e = 0; e < eLen; e++) { + me.on(eventName[e], fn); + } + + return me; + } + me.on(eventName, fn); + return me; + }, + + + relayEvent : function(eventName, observable) { + this.on(eventName, function(e) { + observable.fireEvent(eventName, e); + }); + }, + + + clean : function(forceReclean) { + var me = this, + dom = me.dom, + data = (me.$cache || me.getCache()).data, + n = dom.firstChild, + ni = -1, + nx; + + if (data.isCleaned && forceReclean !== true) { + return me; + } + + while (n) { + nx = n.nextSibling; + if (n.nodeType == 3) { + + if (!(nonSpaceRe.test(n.nodeValue))) { + dom.removeChild(n); + + } else if (nx && nx.nodeType == 3) { + n.appendData(Ext.String.trim(nx.data)); + dom.removeChild(nx); + nx = n.nextSibling; + n.nodeIndex = ++ni; + } + } else { + + internalFly.attach(n).clean(); + n.nodeIndex = ++ni; + } + n = nx; + } + + data.isCleaned = true; + return me; + }, + + + load : function(options) { + this.getLoader().load(options); + return this; + }, + + + getLoader : function() { + var me = this, + data = (me.$cache || me.getCache()).data, + loader = data.loader; + + if (!loader) { + data.loader = loader = new Ext.ElementLoader({ + target: me + }); + } + return loader; + }, + + + syncContent: function(source) { + source = Ext.getDom(source); + var sourceNodes = source.childNodes, + sourceLen = sourceNodes.length, + dest = this.dom, + destNodes = dest.childNodes, + destLen = destNodes.length, + i, destNode, sourceNode, + nodeType, newAttrs, attLen, attName; + + + + + + if (Ext.isIE9m && dest.mergeAttributes) { + dest.mergeAttributes(source, true); + + + + dest.src = source.src; + } else { + newAttrs = source.attributes; + attLen = newAttrs.length; + for (i = 0; i < attLen; i++) { + attName = newAttrs[i].name; + if (attName !== 'id') { + dest.setAttribute(attName, newAttrs[i].value); + } + } + } + + + if (sourceLen !== destLen) { + dest.innerHTML = source.innerHTML; + return; + } + + + + for (i = 0; i < sourceLen; i++) { + sourceNode = sourceNodes[i]; + destNode = destNodes[i]; + nodeType = sourceNode.nodeType; + + + if (nodeType !== destNode.nodeType || (nodeType === 1 && sourceNode.tagName !== destNode.tagName)) { + dest.innerHTML = source.innerHTML; + return; + } + + + if (nodeType === 3) { + destNode.data = sourceNode.data; + } + + else { + if (sourceNode.id && destNode.id !== sourceNode.id) { + destNode.id = sourceNode.id; + } + destNode.style.cssText = sourceNode.style.cssText; + destNode.className = sourceNode.className; + internalFly.attach(destNode).syncContent(sourceNode); + } + } + }, + + + update : function(html, loadScripts, callback) { + var me = this, + id, + dom, + interval; + + if (!me.dom) { + return me; + } + html = html || ''; + dom = me.dom; + + if (loadScripts !== true) { + dom.innerHTML = html; + Ext.callback(callback, me); + return me; + } + + id = Ext.id(); + html += ''; + + interval = setInterval(function() { + var hd, + match, + attrs, + srcMatch, + typeMatch, + el, + s; + if (!(el = DOC.getElementById(id))) { + return false; + } + clearInterval(interval); + Ext.removeNode(el); + hd = Ext.getHead().dom; + + while ((match = scriptTagRe.exec(html))) { + attrs = match[1]; + srcMatch = attrs ? attrs.match(srcRe) : false; + if (srcMatch && srcMatch[2]) { + s = DOC.createElement("script"); + s.src = srcMatch[2]; + typeMatch = attrs.match(typeRe); + if (typeMatch && typeMatch[2]) { + s.type = typeMatch[2]; + } + hd.appendChild(s); + } else if (match[2] && match[2].length > 0) { + if (window.execScript) { + window.execScript(match[2]); + } else { + window.eval(match[2]); + } + } + } + Ext.callback(callback, me); + }, 20); + dom.innerHTML = html.replace(replaceScriptTagRe, ''); + return me; + }, + + + removeAllListeners : function() { + this.removeAnchor(); + Ext.EventManager.removeAll(this.dom); + return this; + }, + + + createProxy : function(config, renderTo, matchBox) { + config = (typeof config == 'object') ? config : {tag : "div", cls: config}; + + var me = this, + proxy = renderTo ? Ext.DomHelper.append(renderTo, config, true) : + Ext.DomHelper.insertBefore(me.dom, config, true); + + proxy.setVisibilityMode(Element.DISPLAY); + proxy.hide(); + if (matchBox && me.setBox && me.getBox) { + proxy.setBox(me.getBox()); + } + return proxy; + }, + + + needsTabIndex: function() { + if (this.dom) { + if ((this.dom.nodeName === 'a') && (!this.dom.href)) { + return true; + } + return !focusRe.test(this.dom.nodeName); + } + }, + + + isFocusable: function ( asFocusEl) { + var dom = this.dom, + tabIndexAttr = dom.getAttributeNode('tabIndex'), + tabIndex, + nodeName = dom.nodeName, + canFocus = false; + + + + + + + + + + + + if (tabIndexAttr && tabIndexAttr.specified) { + tabIndex = tabIndexAttr.value; + } + if (dom && !dom.disabled) { + + + if (tabIndex == -1) { + canFocus = Ext.FocusManager && Ext.FocusManager.enabled && asFocusEl; + } + else { + + if (focusRe.test(nodeName)) { + if ((nodeName !== 'a') || dom.href) { + canFocus = true; + } + } + + else { + canFocus = tabIndex != null && tabIndex >= 0; + } + } + canFocus = canFocus && this.isVisible(true); + } + return canFocus; + } + }); + + if (Ext.isIE) { + Element.prototype.getById = function (id, asDom) { + var dom = this.dom, + cacheItem, el, ret; + + if (dom) { + + + el = (useDocForId && DOC.getElementById(id)) || dom.all[id]; + if (el) { + if (asDom) { + ret = el; + } else { + + + cacheItem = EC[id]; + if (cacheItem && cacheItem.el) { + ret = Ext.updateCacheEntry(cacheItem, el).el; + } else { + ret = new Element(el); + } + } + return ret; + } + } + + return asDom ? Ext.getDom(id) : Element.get(id); + }; + } + + Element.createAlias({ + + addListener: 'on', + + removeListener: 'un', + + clearListeners: 'removeAllListeners', + + focusable: 'isFocusable' + }); + + Element.Fly = AbstractElement.Fly = new Ext.Class({ + extend: Element, + + isFly: true, + + constructor: function(dom) { + this.dom = dom; + + + + this.el = this; + }, + + attach: AbstractElement.Fly.prototype.attach + }); + + internalFly = new Element.Fly(); + + if (Ext.isIE) { + Ext.getElementById = function (id) { + var el = DOC.getElementById(id), + detachedBodyEl; + + if (!el && (detachedBodyEl = AbstractElement.detachedBodyEl)) { + el = detachedBodyEl.dom.all[id]; + } + + return el; + }; + } else if (!DOC.querySelector) { + Ext.getDetachedBody = Ext.getBody; + + Ext.getElementById = function (id) { + return DOC.getElementById(id); + }; + } +}); + + + +Ext.define('Ext.dom.CompositeElementLite', { + alternateClassName: 'Ext.CompositeElementLite', + + + + statics: { + + importElementMethods: function() { + var name, + elementPrototype = Ext.dom.Element.prototype, + prototype = this.prototype; + + for (name in elementPrototype) { + if (typeof elementPrototype[name] == 'function'){ + (function(key) { + prototype[key] = prototype[key] || function() { + return this.invoke(key, arguments); + }; + }).call(prototype, name); + + } + } + } + }, + + constructor: function(elements, root) { + + this.elements = []; + this.add(elements, root); + this.el = new Ext.dom.AbstractElement.Fly(); + }, + + + isComposite: true, + + + getElement: function(el) { + + return this.el.attach(el); + }, + + + transformElement: function(el) { + return Ext.getDom(el); + }, + + + getCount: function() { + return this.elements.length; + }, + + + add: function(els, root) { + var elements = this.elements, + i, ln; + + if (!els) { + return this; + } + + if (typeof els == "string") { + els = Ext.dom.Element.selectorFunction(els, root); + } + else if (els.isComposite) { + els = els.elements; + } + else if (!Ext.isIterable(els)) { + els = [els]; + } + + for (i = 0, ln = els.length; i < ln; ++i) { + elements.push(this.transformElement(els[i])); + } + + return this; + }, + + invoke: function(fn, args) { + var elements = this.elements, + ln = elements.length, + element, + i; + + fn = Ext.dom.Element.prototype[fn]; + for (i = 0; i < ln; i++) { + element = elements[i]; + + if (element) { + fn.apply(this.getElement(element), args); + } + } + return this; + }, + + + item: function(index) { + var el = this.elements[index], + out = null; + + if (el) { + out = this.getElement(el); + } + + return out; + }, + + + slice: function() { + return this.elements.slice.apply(this.elements, arguments); + }, + + + addListener: function(eventName, handler, scope, opt) { + var els = this.elements, + len = els.length, + i, e; + + for (i = 0; i < len; i++) { + e = els[i]; + if (e) { + Ext.EventManager.on(e, eventName, handler, scope || e, opt); + } + } + return this; + }, + + each: function(fn, scope) { + var me = this, + els = me.elements, + len = els.length, + i, e; + + for (i = 0; i < len; i++) { + e = els[i]; + if (e) { + e = this.getElement(e); + if (fn.call(scope || e, e, me, i) === false) { + break; + } + } + } + return me; + }, + + + fill: function(els) { + var me = this; + me.elements = []; + me.add(els); + return me; + }, + + insert: function(index, nodes) { + Ext.Array.insert(this.elements, index, nodes); + }, + + + filter: function(selector) { + var me = this, + els = me.elements, + len = els.length, + out = [], + i = 0, + isFunc = typeof selector == 'function', + add, + el; + + for (; i < len; i++) { + el = els[i]; + add = false; + if (el) { + el = me.getElement(el); + + if (isFunc) { + add = selector.call(el, el, me, i) !== false; + } else { + add = el.is(selector); + } + + if (add) { + out.push(me.transformElement(el)); + } + } + } + + me.elements = out; + return me; + }, + + + indexOf: function(el) { + return Ext.Array.indexOf(this.elements, this.transformElement(el)); + }, + + + replaceElement: function(el, replacement, domReplace) { + var index = !isNaN(el) ? el : this.indexOf(el), + d; + if (index > -1) { + replacement = Ext.getDom(replacement); + if (domReplace) { + d = this.elements[index]; + d.parentNode.insertBefore(replacement, d); + Ext.removeNode(d); + } + Ext.Array.splice(this.elements, index, 1, replacement); + } + return this; + }, + + + clear: function(removeDom) { + var me = this, + els = me.elements, + i = els.length - 1; + + if (removeDom) { + for (; i >= 0; i--) { + Ext.removeNode(els[i]); + } + } + this.elements = []; + }, + + addElements: function(els, root) { + if (!els) { + return this; + } + + if (typeof els == "string") { + els = Ext.dom.Element.selectorFunction(els, root); + } + + var yels = this.elements, + eLen = els.length, + e; + + for (e = 0; e < eLen; e++) { + yels.push(Ext.get(els[e])); + } + + return this; + }, + + + first: function() { + return this.item(0); + }, + + + last: function() { + return this.item(this.getCount() - 1); + }, + + + contains: function(el) { + return this.indexOf(el) != -1; + }, + + + removeElement: function(keys, removeDom) { + keys = [].concat(keys); + + var me = this, + elements = me.elements, + kLen = keys.length, + val, el, k; + + for (k = 0; k < kLen; k++) { + val = keys[k]; + + if ((el = (elements[val] || elements[val = me.indexOf(val)]))) { + if (removeDom) { + if (el.dom) { + el.remove(); + } else { + Ext.removeNode(el); + } + } + Ext.Array.erase(elements, val, 1); + } + } + + return me; + } + +}, function() { + this.importElementMethods(); + + this.prototype.on = this.prototype.addListener; + + if (Ext.DomQuery){ + Ext.dom.Element.selectorFunction = Ext.DomQuery.select; + } + + + Ext.dom.Element.select = function(selector, root) { + var elements; + + if (typeof selector == "string") { + elements = Ext.dom.Element.selectorFunction(selector, root); + } + else if (selector.length !== undefined) { + elements = selector; + } + else { + } + + return new Ext.CompositeElementLite(elements); + }; + + + Ext.select = function() { + return Ext.dom.Element.select.apply(Ext.dom.Element, arguments); + }; +}); + + + +Ext.define('Ext.dom.CompositeElement', { + alternateClassName: 'Ext.CompositeElement', + + extend: Ext.dom.CompositeElementLite , + + + getElement: function(el) { + + return el; + }, + + + transformElement: function(el) { + return Ext.get(el); + } + +}, function() { + + + Ext.dom.Element.select = function(selector, unique, root) { + var elements; + + if (typeof selector == "string") { + elements = Ext.dom.Element.selectorFunction(selector, root); + } + else if (selector.length !== undefined) { + elements = selector; + } + else { + } + return (unique === true) ? new Ext.CompositeElement(elements) : new Ext.CompositeElementLite(elements); + }; +}); + + +Ext.select = Ext.Element.select; + + +Ext.define('Ext.util.HashMap', { + mixins: { + observable: Ext.util.Observable + }, + + + generation: 0, + + + + + constructor: function(config) { + config = config || {}; + + var me = this, + keyFn = config.keyFn; + + me.initialConfig = config; + me.addEvents( + + 'add', + + 'clear', + + 'remove', + + 'replace' + ); + + me.mixins.observable.constructor.call(me, config); + me.clear(true); + + if (keyFn) { + me.getKey = keyFn; + } + }, + + + getCount: function() { + return this.length; + }, + + + getData: function(key, value) { + + if (value === undefined) { + value = key; + key = this.getKey(value); + } + + return [key, value]; + }, + + + getKey: function(o) { + return o.id; + }, + + + add: function(key, value) { + var me = this; + + + + if (arguments.length === 1) { + value = key; + key = me.getKey(value); + } + + if (me.containsKey(key)) { + return me.replace(key, value); + } + + me.map[key] = value; + ++me.length; + me.generation++; + if (me.hasListeners.add) { + me.fireEvent('add', me, key, value); + } + return value; + }, + + + replace: function(key, value) { + var me = this, + map = me.map, + old; + + + + if (arguments.length === 1) { + value = key; + key = me.getKey(value); + } + + if (!me.containsKey(key)) { + me.add(key, value); + } + old = map[key]; + map[key] = value; + me.generation++; + if (me.hasListeners.replace) { + me.fireEvent('replace', me, key, value, old); + } + return value; + }, + + + remove: function(o) { + var key = this.findKey(o); + if (key !== undefined) { + return this.removeAtKey(key); + } + return false; + }, + + + removeAtKey: function(key) { + var me = this, + value; + + if (me.containsKey(key)) { + value = me.map[key]; + delete me.map[key]; + --me.length; + me.generation++; + if (me.hasListeners.remove) { + me.fireEvent('remove', me, key, value); + } + return true; + } + return false; + }, + + + get: function(key) { + var map = this.map; + return map.hasOwnProperty(key) ? map[key] : undefined; + }, + + + clear: function( initial) { + var me = this; + + + if (initial || me.generation) { + me.map = {}; + me.length = 0; + me.generation = initial ? 0 : me.generation + 1; + } + if (initial !== true && me.hasListeners.clear) { + me.fireEvent('clear', me); + } + return me; + }, + + + containsKey: function(key) { + var map = this.map; + return map.hasOwnProperty(key) && map[key] !== undefined; + }, + + + contains: function(value) { + return this.containsKey(this.findKey(value)); + }, + + + getKeys: function() { + return this.getArray(true); + }, + + + getValues: function() { + return this.getArray(false); + }, + + + getArray: function(isKey) { + var arr = [], + key, + map = this.map; + for (key in map) { + if (map.hasOwnProperty(key)) { + arr.push(isKey ? key: map[key]); + } + } + return arr; + }, + + + each: function(fn, scope) { + + var items = Ext.apply({}, this.map), + key, + length = this.length; + + scope = scope || this; + for (key in items) { + if (items.hasOwnProperty(key)) { + if (fn.call(scope, key, items[key], length) === false) { + break; + } + } + } + return this; + }, + + + clone: function() { + var hash = new this.self(this.initialConfig), + map = this.map, + key; + + hash.suspendEvents(); + for (key in map) { + if (map.hasOwnProperty(key)) { + hash.add(key, map[key]); + } + } + hash.resumeEvents(); + return hash; + }, + + + findKey: function(value) { + var key, + map = this.map; + + for (key in map) { + if (map.hasOwnProperty(key) && map[key] === value) { + return key; + } + } + return undefined; + } +}); + + +Ext.define('Ext.AbstractManager', { + + + + + + + + typeName: 'type', + + constructor: function(config) { + Ext.apply(this, config || {}); + + + this.all = new Ext.util.HashMap(); + + this.types = {}; + }, + + + get : function(id) { + return this.all.get(id); + }, + + + register: function(item) { + this.all.add(item); + }, + + + unregister: function(item) { + this.all.remove(item); + }, + + + registerType : function(type, cls) { + this.types[type] = cls; + cls[this.typeName] = type; + }, + + + isRegistered : function(type){ + return this.types[type] !== undefined; + }, + + + create: function(config, defaultType) { + var type = config[this.typeName] || config.type || defaultType, + Constructor = this.types[type]; + + + return new Constructor(config); + }, + + + onAvailable : function(id, fn, scope){ + var all = this.all, + item, + callback; + + if (all.containsKey(id)) { + item = all.get(id); + fn.call(scope || item, item); + } else { + callback = function(map, key, item){ + if (key == id) { + fn.call(scope || item, item); + all.un('add', callback); + } + }; + all.on('add', callback); + } + }, + + + each: function(fn, scope){ + this.all.each(fn, scope || this); + }, + + + getCount: function(){ + return this.all.getCount(); + } +}); + + +Ext.define('Ext.ComponentManager', { + extend: Ext.AbstractManager , + alternateClassName: 'Ext.ComponentMgr', + + singleton: true, + + typeName: 'xtype', + + + create: function(component, defaultType){ + if (typeof component == 'string') { + return Ext.widget(component); + } + if (component.isComponent) { + return component; + } + return Ext.widget(component.xtype || defaultType, component); + }, + + registerType: function(type, cls) { + this.types[type] = cls; + cls[this.typeName] = type; + cls.prototype[this.typeName] = type; + } +}, +function () { + + Ext.getCmp = function(id) { + return Ext.ComponentManager.get(id); + }; +}); + + +Ext.define('Ext.ComponentQuery', { + singleton: true + + + + +}, function() { + + var cq = this, + domQueryOperators = Ext.dom.Query.operators, + nthRe = /(\d*)n\+?(\d*)/, + nthRe2 = /\D/, + + + + filterFnPattern = [ + 'var r = [],', + 'i = 0,', + 'it = items,', + 'l = it.length,', + 'c;', + 'for (; i < l; i++) {', + 'c = it[i];', + 'if (c.{0}) {', + 'r.push(c);', + '}', + '}', + 'return r;' + ].join(''), + + filterItems = function(items, operation) { + + + + return operation.method.apply(this, [ items ].concat(operation.args)); + }, + + getItems = function(items, mode) { + var result = [], + i = 0, + length = items.length, + candidate, + deep = mode !== '>'; + + for (; i < length; i++) { + candidate = items[i]; + if (candidate.getRefItems) { + result = result.concat(candidate.getRefItems(deep)); + } + } + return result; + }, + + getAncestors = function(items) { + var result = [], + i = 0, + length = items.length, + candidate; + for (; i < length; i++) { + candidate = items[i]; + while (!!(candidate = candidate.getRefOwner())) { + result.push(candidate); + } + } + return result; + }, + + + filterByXType = function(items, xtype, shallow) { + if (xtype === '*') { + return items.slice(); + } + else { + var result = [], + i = 0, + length = items.length, + candidate; + for (; i < length; i++) { + candidate = items[i]; + if (candidate.isXType(xtype, shallow)) { + result.push(candidate); + } + } + return result; + } + }, + + + filterByClassName = function(items, className) { + var result = [], + i = 0, + length = items.length, + candidate; + for (; i < length; i++) { + candidate = items[i]; + if (candidate.hasCls(className)) { + result.push(candidate); + } + } + return result; + }, + + + filterByAttribute = function(items, property, operator, compareTo) { + var result = [], + i = 0, + length = items.length, + mustBeOwnProperty, + presenceOnly, + candidate, propValue, + j, propLen; + + + if (property.charAt(0) === '@') { + mustBeOwnProperty = true; + property = property.substr(1); + } + if (property.charAt(0) === '?') { + mustBeOwnProperty = true; + presenceOnly = true; + property = property.substr(1); + } + + for (; i < length; i++) { + candidate = items[i]; + + + if (!mustBeOwnProperty || candidate.hasOwnProperty(property)) { + + + propValue = candidate[property]; + + if (presenceOnly) { + result.push(candidate); + } + + else if (operator === '~=') { + if (propValue) { + + if (!Ext.isArray(propValue)) { + propValue = propValue.split(' '); + } + + for (j = 0, propLen = propValue.length; j < propLen; j++) { + if (domQueryOperators[operator](Ext.coerce(propValue[j], compareTo), compareTo)) { + result.push(candidate); + break; + } + } + } + } else if (!compareTo ? !!candidate[property] : domQueryOperators[operator](Ext.coerce(propValue, compareTo), compareTo)) { + result.push(candidate); + } + } + } + return result; + }, + + + filterById = function(items, id) { + var result = [], + i = 0, + length = items.length, + candidate; + for (; i < length; i++) { + candidate = items[i]; + if (candidate.getItemId() === id) { + result.push(candidate); + } + } + return result; + }, + + + filterByPseudo = function(items, name, value) { + return cq.pseudos[name](items, value); + }, + + + + modeRe = /^(\s?([>\^])\s?|\s|$)/, + + + tokenRe = /^(#)?([\w\-]+|\*)(?:\((true|false)\))?/, + + matchers = [{ + + re: /^\.([\w\-]+)(?:\((true|false)\))?/, + method: filterByXType + }, { + + + + re: /^(?:\[((?:@|\?)?[\w\-\$]*[^\^\$\*~%!])\s?(?:(=|.=)\s?['"]?(.*?)["']?)?\])/, + method: filterByAttribute + }, { + + re: /^#([\w\-]+)/, + method: filterById + }, { + + re: /^\:([\w\-]+)(?:\(((?:\{[^\}]+\})|(?:(?!\{)[^\s>\/]*?(?!\})))\))?/, + method: filterByPseudo + }, { + + re: /^(?:\{([^\}]+)\})/, + method: filterFnPattern + }]; + + + cq.Query = Ext.extend(Object, { + constructor: function(cfg) { + cfg = cfg || {}; + Ext.apply(this, cfg); + }, + + + + + + + + + + execute : function(root) { + var operations = this.operations, + i = 0, + length = operations.length, + operation, + workingItems; + + + if (!root) { + workingItems = Ext.ComponentManager.all.getArray(); + } + + else if (Ext.isIterable(root)) { + workingItems = root; + } + + else if (root.isMixedCollection) { + workingItems = root.items; + } + + + + for (; i < length; i++) { + operation = operations[i]; + + + + + + + + if (operation.mode === '^') { + workingItems = getAncestors(workingItems || [root]); + } + else if (operation.mode) { + workingItems = getItems(workingItems || [root], operation.mode); + } + else { + workingItems = filterItems(workingItems || getItems([root]), operation); + } + + + + if (i === length -1) { + return workingItems; + } + } + return []; + }, + + is: function(component) { + var operations = this.operations, + components = Ext.isArray(component) ? component : [component], + originalLength = components.length, + lastOperation = operations[operations.length-1], + ln, i; + + components = filterItems(components, lastOperation); + if (components.length === originalLength) { + if (operations.length > 1) { + for (i = 0, ln = components.length; i < ln; i++) { + if (Ext.Array.indexOf(this.execute(), components[i]) === -1) { + return false; + } + } + } + return true; + } + return false; + } + }); + + Ext.apply(this, { + + + cache: {}, + + + pseudos: { + not: function(components, selector){ + var CQ = Ext.ComponentQuery, + i = 0, + length = components.length, + results = [], + index = -1, + component; + + for(; i < length; ++i) { + component = components[i]; + if (!CQ.is(component, selector)) { + results[++index] = component; + } + } + return results; + }, + first: function(components) { + var ret = []; + + if (components.length > 0) { + ret.push(components[0]); + } + return ret; + }, + last: function(components) { + var len = components.length, + ret = []; + + if (len > 0) { + ret.push(components[len - 1]); + } + return ret; + }, + focusable: function(cmps) { + var len = cmps.length, + results = [], + i = 0, + c; + + for (; i < len; i++) { + c = cmps[i]; + + + if (c.isFocusable()) { + results.push(c); + } + } + + return results; + }, + "nth-child" : function(c, a) { + var result = [], + m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a), + f = (m[1] || 1) - 0, l = m[2] - 0, + i, n, nodeIndex; + for (i = 0; n = c[i]; i++) { + nodeIndex = i + 1; + if (f == 1) { + if (l == 0 || nodeIndex == l) { + result.push(n); + } + } else if ((nodeIndex + l) % f == 0){ + result.push(n); + } + } + + return result; + } + }, + + + query: function(selector, root) { + var selectors = selector.split(','), + length = selectors.length, + i = 0, + results = [], + noDupResults = [], + dupMatcher = {}, + query, resultsLn, cmp; + + for (; i < length; i++) { + selector = Ext.String.trim(selectors[i]); + query = this.cache[selector] || (this.cache[selector] = this.parse(selector)); + results = results.concat(query.execute(root)); + } + + + + if (length > 1) { + resultsLn = results.length; + for (i = 0; i < resultsLn; i++) { + cmp = results[i]; + if (!dupMatcher[cmp.id]) { + noDupResults.push(cmp); + dupMatcher[cmp.id] = true; + } + } + results = noDupResults; + } + return results; + }, + + + is: function(component, selector) { + if (!selector) { + return true; + } + var selectors = selector.split(','), + length = selectors.length, + i = 0, + query; + + for (; i < length; i++) { + selector = Ext.String.trim(selectors[i]); + query = this.cache[selector] || (this.cache[selector] = this.parse(selector)); + if (query.is(component)) { + return true; + } + } + return false; + }, + + parse: function(selector) { + var operations = [], + length = matchers.length, + lastSelector, + tokenMatch, + matchedChar, + modeMatch, + selectorMatch, + i, matcher, method; + + + + + while (selector && lastSelector !== selector) { + lastSelector = selector; + + + tokenMatch = selector.match(tokenRe); + + if (tokenMatch) { + matchedChar = tokenMatch[1]; + + + if (matchedChar === '#') { + operations.push({ + method: filterById, + args: [Ext.String.trim(tokenMatch[2])] + }); + } + + + else if (matchedChar === '.') { + operations.push({ + method: filterByClassName, + args: [Ext.String.trim(tokenMatch[2])] + }); + } + + + else { + operations.push({ + method: filterByXType, + args: [Ext.String.trim(tokenMatch[2]), Boolean(tokenMatch[3])] + }); + } + + + selector = selector.replace(tokenMatch[0], ''); + } + + + + + while (!(modeMatch = selector.match(modeRe))) { + + + for (i = 0; selector && i < length; i++) { + matcher = matchers[i]; + selectorMatch = selector.match(matcher.re); + method = matcher.method; + + + + + if (selectorMatch) { + operations.push({ + method: Ext.isString(matcher.method) + + + + ? Ext.functionFactory('items', Ext.String.format.apply(Ext.String, [method].concat(selectorMatch.slice(1)))) + : matcher.method, + args: selectorMatch.slice(1) + }); + selector = selector.replace(selectorMatch[0], ''); + break; + } + + if (i === (length - 1)) { + Ext.Error.raise('Invalid ComponentQuery selector: "' + arguments[0] + '"'); + } + } + } + + + + + + if (modeMatch[1]) { + operations.push({ + mode: modeMatch[2]||modeMatch[1] + }); + selector = selector.replace(modeMatch[0], ''); + } + } + + + + return new cq.Query({ + operations: operations + }); + } + }); +}); + + + + +Ext.define('Ext.util.ProtoElement', (function () { + var splitWords = Ext.String.splitWords, + toMap = Ext.Array.toMap; + + return { + + isProtoEl: true, + + + clsProp: 'cls', + + + styleProp: 'style', + + + removedProp: 'removed', + + + styleIsText: false, + + constructor: function (config) { + var me = this; + + Ext.apply(me, config); + + me.classList = splitWords(me.cls); + me.classMap = toMap(me.classList); + delete me.cls; + + if (Ext.isFunction(me.style)) { + me.styleFn = me.style; + delete me.style; + } else if (typeof me.style == 'string') { + me.style = Ext.Element.parseStyles(me.style); + } else if (me.style) { + me.style = Ext.apply({}, me.style); + } + }, + + + flush: function(){ + this.flushClassList = []; + this.removedClasses = {}; + + delete this.style; + delete this.unselectableAttr; + }, + + + addCls: function (cls) { + var me = this, + add = (typeof cls === 'string') ? splitWords(cls) : cls, + length = add.length, + list = me.classList, + map = me.classMap, + flushList = me.flushClassList, + i = 0, + c; + + for (; i < length; ++i) { + c = add[i]; + if (!map[c]) { + map[c] = true; + list.push(c); + if (flushList) { + flushList.push(c); + delete me.removedClasses[c]; + } + } + } + + return me; + }, + + + hasCls: function (cls) { + return cls in this.classMap; + }, + + + removeCls: function (cls) { + var me = this, + list = me.classList, + newList = (me.classList = []), + remove = toMap(splitWords(cls)), + length = list.length, + map = me.classMap, + removedClasses = me.removedClasses, + i, c; + + for (i = 0; i < length; ++i) { + c = list[i]; + if (remove[c]) { + if (removedClasses) { + if (map[c]) { + removedClasses[c] = true; + Ext.Array.remove(me.flushClassList, c); + } + } + delete map[c]; + } else { + newList.push(c); + } + } + + return me; + }, + + + setStyle: function (prop, value) { + var me = this, + style = me.style || (me.style = {}); + + if (typeof prop == 'string') { + if (arguments.length === 1) { + me.setStyle(Ext.Element.parseStyles(prop)); + } else { + style[prop] = value; + } + } else { + Ext.apply(style, prop); + } + + return me; + }, + + unselectable: function() { + + this.addCls(Ext.dom.Element.unselectableCls); + + if (Ext.isOpera) { + this.unselectableAttr = true; + } + }, + + + writeTo: function (to) { + var me = this, + classList = me.flushClassList || me.classList, + removedClasses = me.removedClasses, + style; + + if (me.styleFn) { + style = Ext.apply({}, me.styleFn()); + Ext.apply(style, me.style); + } else { + style = me.style; + } + + to[me.clsProp] = classList.join(' '); + + if (style) { + to[me.styleProp] = me.styleIsText ? Ext.DomHelper.generateStyles(style) : style; + } + + if (removedClasses) { + removedClasses = Ext.Object.getKeys(removedClasses); + if (removedClasses.length) { + to[me.removedProp] = removedClasses.join(' '); + } + } + + if (me.unselectableAttr) { + to.unselectable = 'on'; + } + + return to; + } + }; +}())); + + +Ext.define('Ext.PluginManager', { + extend: Ext.AbstractManager , + alternateClassName: 'Ext.PluginMgr', + singleton: true, + typeName: 'ptype', + + + create : function(config, defaultType, host) { + var result; + + if (config.init) { + result = config; + } else { + + if (host) { + config = Ext.apply({}, config); + config.cmp = host; + } + + else { + host = config.cmp; + } + + if (config.xclass) { + result = Ext.create(config); + } else { + + result = Ext.ClassManager.getByAlias(('plugin.' + (config.ptype || defaultType))); + + if (typeof result === 'function') { + result = new result(config); + } + } + } + + + if (result && host && result.setCmp && !result.setCmpCalled) { + result.setCmp(host); + result.setCmpCalled = true; + } + return result; + }, + + + findByType: function(type, defaultsOnly) { + var matches = [], + types = this.types, + name, + item; + + for (name in types) { + if (!types.hasOwnProperty(name)) { + continue; + } + item = types[name]; + + if (item.type == type && (!defaultsOnly || (defaultsOnly === true && item.isDefault))) { + matches.push(item); + } + } + + return matches; + } +}, function() { + + Ext.preg = function() { + return Ext.PluginManager.registerType.apply(Ext.PluginManager, arguments); + }; +}); + + +Ext.define('Ext.util.Filter', { + + + + + + + + id: null, + + + anyMatch: false, + + + exactMatch: false, + + + caseSensitive: false, + + + disabled: false, + + + operator: null, + + + + statics: { + + createFilterFn: function(filters) { + return filters && filters.length ? function(candidate) { + var isMatch = true, + length = filters.length, + i, filter; + + for (i = 0; isMatch && i < length; i++) { + filter = filters[i]; + + + if (!filter.disabled) { + isMatch = isMatch && filter.filterFn.call(filter.scope || filter, candidate); + } + } + return isMatch; + } : function() { + return true; + }; + } + }, + + operatorFns: { + "<": function(candidate) { + return Ext.coerce(this.getRoot(candidate)[this.property], this.value) < this.value; + }, + "<=": function(candidate) { + return Ext.coerce(this.getRoot(candidate)[this.property], this.value) <= this.value; + }, + "=": function(candidate) { + return Ext.coerce(this.getRoot(candidate)[this.property], this.value) == this.value; + }, + ">=": function(candidate) { + return Ext.coerce(this.getRoot(candidate)[this.property], this.value) >= this.value; + }, + ">": function(candidate) { + return Ext.coerce(this.getRoot(candidate)[this.property], this.value) > this.value; + }, + "!=": function(candidate) { + return Ext.coerce(this.getRoot(candidate)[this.property], this.value) != this.value; + } + }, + + + constructor: function(config) { + var me = this; + me.initialConfig = config; + Ext.apply(me, config); + + + + me.filter = me.filter || me.filterFn; + + if (me.filter === undefined) { + me.setValue(config.value); + } + }, + + + setValue: function(value) { + var me = this; + me.value = value; + if (me.property === undefined || me.value === undefined) { + + + + + } else { + me.filter = me.createFilterFn(); + } + + me.filterFn = me.filter; + }, + + + setFilterFn: function(filterFn) { + this.filterFn = this.filter = filterFn; + }, + + + createFilterFn: function() { + var me = this, + matcher = me.createValueMatcher(), + property = me.property; + + if (me.operator) { + return me.operatorFns[me.operator]; + } else { + return function(item) { + var value = me.getRoot(item)[property]; + return matcher === null ? value === null : matcher.test(value); + }; + } + }, + + + getRoot: function(item) { + var root = this.root; + return root === undefined ? item : item[root]; + }, + + + createValueMatcher : function() { + var me = this, + value = me.value, + anyMatch = me.anyMatch, + exactMatch = me.exactMatch, + caseSensitive = me.caseSensitive, + escapeRe = Ext.String.escapeRegex; + + if (value === null) { + return value; + } + + if (!value.exec) { + value = String(value); + + if (anyMatch === true) { + value = escapeRe(value); + } else { + value = '^' + escapeRe(value); + if (exactMatch === true) { + value += '$'; + } + } + value = new RegExp(value, caseSensitive ? '' : 'i'); + } + + return value; + }, + + serialize: function() { + var me = this, + result = Ext.apply({}, me.initialConfig); + + result.value = me.value; + return result; + } +}, function() { + + this.prototype.operatorFns['=='] = this.prototype.operatorFns['=']; +}); + + +Ext.define('Ext.util.AbstractMixedCollection', { + + + mixins: { + observable: Ext.util.Observable + }, + + + isMixedCollection: true, + + + generation: 0, + + + indexGeneration: 0, + + constructor: function(allowFunctions, keyFn) { + var me = this; + + + if (arguments.length === 1 && Ext.isObject(allowFunctions)) { + me.initialConfig = allowFunctions; + Ext.apply(me, allowFunctions); + } + + else { + me.allowFunctions = allowFunctions === true; + if (keyFn) { + me.getKey = keyFn; + } + me.initialConfig = { + allowFunctions: me.allowFunctions, + getKey: me.getKey + }; + } + + me.items = []; + me.map = {}; + me.keys = []; + me.indexMap = {}; + me.length = 0; + + + + + + + + + + me.mixins.observable.constructor.call(me); + }, + + + allowFunctions : false, + + + add : function(key, obj) { + var len = this.length, + out; + + if (arguments.length === 1) { + out = this.insert(len, key); + } else { + out = this.insert(len, key, obj); + } + return out; + }, + + + getKey : function(o) { + return o.id; + }, + + + replace : function(key, o) { + var me = this, + old, + index; + + if (arguments.length == 1) { + o = arguments[0]; + key = me.getKey(o); + } + old = me.map[key]; + if (typeof key == 'undefined' || key === null || typeof old == 'undefined') { + return me.add(key, o); + } + me.generation++; + index = me.indexOfKey(key); + me.items[index] = o; + me.map[key] = o; + if (me.hasListeners.replace) { + me.fireEvent('replace', key, old, o); + } + return o; + }, + + + updateKey: function(oldKey, newKey) { + var me = this, + map = me.map, + indexMap = me.indexMap, + index = me.indexOfKey(oldKey), + item; + + if (index > -1) { + item = map[oldKey]; + delete map[oldKey]; + delete indexMap[oldKey]; + map[newKey] = item; + indexMap[newKey] = index; + me.keys[index] = newKey; + me.generation++; + + } + }, + + + addAll : function(objs) { + var me = this, + key; + + if (arguments.length > 1 || Ext.isArray(objs)) { + me.insert(me.length, arguments.length > 1 ? arguments : objs); + } else { + for (key in objs) { + if (objs.hasOwnProperty(key)) { + if (me.allowFunctions || typeof objs[key] != 'function') { + me.add(key, objs[key]); + } + } + } + } + }, + + + each : function(fn, scope){ + var items = Ext.Array.push([], this.items), + i = 0, + len = items.length, + item; + + for (; i < len; i++) { + item = items[i]; + if (fn.call(scope || item, item, i, len) === false) { + break; + } + } + }, + + + eachKey : function(fn, scope){ + var keys = this.keys, + items = this.items, + i = 0, + len = keys.length; + + for (; i < len; i++) { + fn.call(scope || window, keys[i], items[i], i, len); + } + }, + + + findBy : function(fn, scope) { + var keys = this.keys, + items = this.items, + i = 0, + len = items.length; + + for (; i < len; i++) { + if (fn.call(scope || window, items[i], keys[i])) { + return items[i]; + } + } + return null; + }, + + + find : function() { + if (Ext.isDefined(Ext.global.console)) { + Ext.global.console.warn('Ext.util.MixedCollection: find has been deprecated. Use findBy instead.'); + } + return this.findBy.apply(this, arguments); + }, + + + insert : function(index, key, obj) { + var out; + if (Ext.isIterable(key)) { + out = this.doInsert(index, key, obj); + } else { + if (arguments.length > 2) { + out = this.doInsert(index, [key], [obj]); + } else { + out = this.doInsert(index, [key]); + } + out = out[0]; + } + return out; + }, + + + doInsert : function(index, keys, objects) { + var me = this, + itemKey, + removeIndex, + i, len = keys.length, + deDupedLen = len, + fireAdd = me.hasListeners.add, + syncIndices, + newKeys = {}, + passedDuplicates, + oldKeys, oldObjects; + + + + if (objects != null) { + me.useLinearSearch = true; + } + + else { + objects = keys; + keys = new Array(len); + for (i = 0; i < len; i++) { + keys[i] = this.getKey(objects[i]); + } + } + + + me.suspendEvents(); + for (i = 0; i < len; i++) { + itemKey = keys[i]; + + + removeIndex = me.indexOfKey(itemKey); + if (removeIndex !== -1) { + if (removeIndex < index) { + index--; + } + me.removeAt(removeIndex); + } + + if (itemKey != null) { + + if (newKeys[itemKey] != null) { + passedDuplicates = true; + deDupedLen--; + } + newKeys[itemKey] = i; + } + } + me.resumeEvents(); + + + if (passedDuplicates) { + oldKeys = keys; + oldObjects = objects; + keys = new Array(deDupedLen); + objects = new Array(deDupedLen); + i = 0; + + + + for (itemKey in newKeys) { + keys[i] = oldKeys[newKeys[itemKey]]; + objects[i] = oldObjects[newKeys[itemKey]]; + i++; + } + len = deDupedLen; + } + + + syncIndices = index === me.length && me.indexGeneration === me.generation; + + + Ext.Array.insert(me.items, index, objects); + Ext.Array.insert(me.keys, index, keys); + me.length += len; + me.generation++; + if (syncIndices) { + me.indexGeneration = me.generation; + } + for (i = 0; i < len; i++, index++) { + itemKey = keys[i]; + if (itemKey != null) { + me.map[itemKey] = objects[i]; + + + if (syncIndices) { + me.indexMap[itemKey] = index; + } + } + if (fireAdd) { + me.fireEvent('add', index, objects[i], itemKey); + } + } + return objects; + }, + + + remove : function(o) { + var me = this, + removeKey, + index; + + + + + + + if (!me.useLinearSearch && (removeKey = me.getKey(o))) { + index = me.indexOfKey(removeKey); + } + + + else { + index = Ext.Array.indexOf(me.items, o); + } + + return (index === -1) ? false : me.removeAt(index); + }, + + + removeAll : function(items) { + var me = this, + i; + + if (items || me.hasListeners.remove) { + + if (items) { + for (i = items.length - 1; i >= 0; --i) { + me.remove(items[i]); + } + } else { + while (me.length) { + me.removeAt(0); + } + } + } else { + me.length = me.items.length = me.keys.length = 0; + me.map = {}; + me.indexMap = {}; + me.generation++; + me.indexGeneration = me.generation; + } + }, + + + removeAt : function(index) { + var me = this, + o, + key; + + if (index < me.length && index >= 0) { + me.length--; + o = me.items[index]; + Ext.Array.erase(me.items, index, 1); + key = me.keys[index]; + if (typeof key != 'undefined') { + delete me.map[key]; + } + Ext.Array.erase(me.keys, index, 1); + if (me.hasListeners.remove) { + me.fireEvent('remove', o, key); + } + me.generation++; + return o; + } + return false; + }, + + + removeRange : function(index, removeCount) { + var me = this, + o, + key, + i, + limit, + syncIndices, + trimming; + + if (index < me.length && index >= 0) { + if (!removeCount) { + removeCount = 1; + } + limit = Math.min(index + removeCount, me.length); + removeCount = limit - index; + + + trimming = limit === me.length; + syncIndices = trimming && me.indexGeneration === me.generation; + + + for (i = index; i < limit; i++) { + key = me.keys[i]; + if (key != null) { + delete me.map[key]; + if (syncIndices) { + delete me.indexMap[key]; + } + } + } + + o = me.items[i - 1]; + + me.length -= removeCount; + me.generation++; + if (syncIndices) { + me.indexGeneration = me.generation; + } + + + + + + if (trimming) { + me.items.length = me.keys.length = me.length; + } else { + me.items.splice(index, removeCount); + me.keys.splice(index, removeCount); + } + + + return o; + } + return false; + }, + + + removeAtKey : function(key) { + var me = this, + keys = me.keys, + i; + + + if (key == null) { + for (i = keys.length - 1; i >=0; i--) { + if (keys[i] == null) { + me.removeAt(i); + } + } + } + + else { + return me.removeAt(me.indexOfKey(key)); + } + }, + + + getCount : function() { + return this.length; + }, + + + indexOf : function(o) { + var me = this, + key; + + if (o != null) { + + + + + + if (!me.useLinearSearch && (key = me.getKey(o))) { + return this.indexOfKey(key); + } + + + return Ext.Array.indexOf(me.items, o); + } + + + return -1; + }, + + + indexOfKey : function(key) { + if (!this.map.hasOwnProperty(key)) { + return -1; + } + if (this.indexGeneration !== this.generation) { + this.rebuildIndexMap(); + } + return this.indexMap[key]; + }, + + rebuildIndexMap: function() { + var me = this, + indexMap = me.indexMap = {}, + keys = me.keys, + len = keys.length, + i; + + for (i = 0; i < len; i++) { + indexMap[keys[i]] = i; + } + me.indexGeneration = me.generation; + }, + + + get : function(key) { + var me = this, + mk = me.map[key], + item = mk !== undefined ? mk : (typeof key == 'number') ? me.items[key] : undefined; + return typeof item != 'function' || me.allowFunctions ? item : null; + }, + + + getAt : function(index) { + return this.items[index]; + }, + + + getByKey : function(key) { + return this.map[key]; + }, + + + contains : function(o) { + var me = this, + key; + + if (o != null) { + + + + + + if (!me.useLinearSearch && (key = me.getKey(o))) { + return this.map[key] != null; + } + + + return Ext.Array.indexOf(this.items, o) !== -1; + } + + return false; + }, + + + containsKey : function(key) { + return this.map.hasOwnProperty(key); + }, + + + clear : function() { + var me = this; + + + if (me.generation) { + me.length = 0; + me.items = []; + me.keys = []; + me.map = {}; + me.indexMap = {}; + + me.generation++; + me.indexGeneration = me.generation; + } + if (me.hasListeners.clear) { + me.fireEvent('clear'); + } + }, + + + first : function() { + return this.items[0]; + }, + + + last : function() { + return this.items[this.length - 1]; + }, + + + sum: function(property, root, start, end) { + var values = this.extractValues(property, root), + length = values.length, + sum = 0, + i; + + start = start || 0; + end = (end || end === 0) ? end : length - 1; + + for (i = start; i <= end; i++) { + sum += values[i]; + } + + return sum; + }, + + + collect: function(property, root, allowNull) { + var values = this.extractValues(property, root), + length = values.length, + hits = {}, + unique = [], + value, strValue, i; + + for (i = 0; i < length; i++) { + value = values[i]; + strValue = String(value); + + if ((allowNull || !Ext.isEmpty(value)) && !hits[strValue]) { + hits[strValue] = true; + unique.push(value); + } + } + + return unique; + }, + + + extractValues: function(property, root) { + var values = this.items; + + if (root) { + values = Ext.Array.pluck(values, root); + } + + return Ext.Array.pluck(values, property); + }, + + + hasRange: function(start, end) { + return (end < this.length); + }, + + + getRange : function(start, end){ + var me = this, + items = me.items, + range = [], + len = items.length, + tmp, reverse; + + if (len < 1) { + return range; + } + + if (start > end) { + reverse = true; + tmp = start; + start = end; + end = tmp; + } + + if (start < 0) { + start = 0; + } + + if (end == null || end >= len) { + end = len - 1; + } + + range = items.slice(start, end + 1); + if (reverse && range.length) { + range.reverse(); + } + return range; + }, + + + filter : function(property, value, anyMatch, caseSensitive) { + var filters = []; + + + if (Ext.isString(property)) { + filters.push(new Ext.util.Filter({ + property : property, + value : value, + anyMatch : anyMatch, + caseSensitive: caseSensitive + })); + } else if (Ext.isArray(property) || property instanceof Ext.util.Filter) { + filters = filters.concat(property); + } + + + + + return this.filterBy(Ext.util.Filter.createFilterFn(filters)); + }, + + + filterBy : function(fn, scope) { + var me = this, + newMC = new me.self(me.initialConfig), + keys = me.keys, + items = me.items, + length = items.length, + i; + + newMC.getKey = me.getKey; + + for (i = 0; i < length; i++) { + if (fn.call(scope || me, items[i], keys[i])) { + newMC.add(keys[i], items[i]); + } + } + + return newMC; + }, + + + findIndex : function(property, value, start, anyMatch, caseSensitive){ + if(Ext.isEmpty(value, false)){ + return -1; + } + value = this.createValueMatcher(value, anyMatch, caseSensitive); + return this.findIndexBy(function(o){ + return o && value.test(o[property]); + }, null, start); + }, + + + findIndexBy : function(fn, scope, start){ + var me = this, + keys = me.keys, + items = me.items, + i = start || 0, + len = items.length; + + for (; i < len; i++) { + if (fn.call(scope || me, items[i], keys[i])) { + return i; + } + } + return -1; + }, + + + createValueMatcher : function(value, anyMatch, caseSensitive, exactMatch) { + if (!value.exec) { + var er = Ext.String.escapeRegex; + value = String(value); + + if (anyMatch === true) { + value = er(value); + } else { + value = '^' + er(value); + if (exactMatch === true) { + value += '$'; + } + } + value = new RegExp(value, caseSensitive ? '' : 'i'); + } + return value; + }, + + + clone : function() { + var me = this, + copy = new this.self(me.initialConfig); + + copy.add(me.keys, me.items); + return copy; + } +}); + + +Ext.define('Ext.util.Sorter', { + + + + + + + + + + + direction: "ASC", + + constructor: function(config) { + var me = this; + + Ext.apply(me, config); + + + me.updateSortFunction(); + }, + + + createSortFunction: function(sorterFn) { + var me = this, + direction = me.direction || "ASC", + modifier = direction.toUpperCase() == "DESC" ? -1 : 1; + + + + return function(o1, o2) { + return modifier * sorterFn.call(me, o1, o2); + }; + }, + + + defaultSorterFn: function(o1, o2) { + var me = this, + transform = me.transform, + v1 = me.getRoot(o1)[me.property], + v2 = me.getRoot(o2)[me.property]; + + if (transform) { + v1 = transform(v1); + v2 = transform(v2); + } + + return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0); + }, + + + getRoot: function(item) { + return this.root === undefined ? item : item[this.root]; + }, + + + setDirection: function(direction) { + var me = this; + me.direction = direction ? direction.toUpperCase() : direction; + me.updateSortFunction(); + }, + + + toggle: function() { + var me = this; + me.direction = Ext.String.toggle(me.direction, "ASC", "DESC"); + me.updateSortFunction(); + }, + + + updateSortFunction: function(fn) { + var me = this; + fn = fn || me.sorterFn || me.defaultSorterFn; + me.sort = me.createSortFunction(fn); + }, + + serialize: function() { + return { + root: this.root, + property: this.property, + direction: this.direction + }; + } +}); + + +Ext.define("Ext.util.Sortable", { + + isSortable: true, + + + defaultSortDirection: "ASC", + + + + + + statics: { + + createComparator: function(sorters) { + return sorters && sorters.length ? function(r1, r2) { + var result = sorters[0].sort(r1, r2), + length = sorters.length, + i = 1; + + + for (; i < length; i++) { + result = result || sorters[i].sort.call(this, r1, r2); + } + return result; + }: function() { + return 0; + }; + } + }, + + + + + + + initSortable: function() { + var me = this, + sorters = me.sorters; + + + me.sorters = new Ext.util.AbstractMixedCollection(false, function(item) { + return item.id || item.property; + }); + + if (sorters) { + me.sorters.addAll(me.decodeSorters(sorters)); + } + }, + + + sort: function(sorters, direction, where, doSort) { + var me = this, + sorter, + newSorters; + + if (Ext.isArray(sorters)) { + doSort = where; + where = direction; + newSorters = sorters; + } + else if (Ext.isObject(sorters)) { + doSort = where; + where = direction; + newSorters = [sorters]; + } + else if (Ext.isString(sorters)) { + sorter = me.sorters.get(sorters); + + if (!sorter) { + sorter = { + property : sorters, + direction: direction + }; + newSorters = [sorter]; + } + else if (direction === undefined) { + sorter.toggle(); + } + else { + sorter.setDirection(direction); + } + } + + if (newSorters && newSorters.length) { + newSorters = me.decodeSorters(newSorters); + if (Ext.isString(where)) { + if (where === 'prepend') { + me.sorters.insert(0, newSorters); + } + else { + me.sorters.addAll(newSorters); + } + } + else { + me.sorters.clear(); + me.sorters.addAll(newSorters); + } + } + + if (doSort !== false) { + me.fireEvent('beforesort', me, newSorters); + me.onBeforeSort(newSorters); + + sorters = me.sorters.items; + if (sorters.length) { + + me.doSort(me.generateComparator()); + } + } + + return sorters; + }, + + + generateComparator: function() { + var sorters = this.sorters.getRange(); + return sorters.length ? this.createComparator(sorters) : this.emptyComparator; + }, + + emptyComparator: function(){ + return 0; + }, + + onBeforeSort: Ext.emptyFn, + + + decodeSorters: function(sorters) { + if (!Ext.isArray(sorters)) { + if (sorters === undefined) { + sorters = []; + } else { + sorters = [sorters]; + } + } + + var length = sorters.length, + Sorter = Ext.util.Sorter, + fields = this.model ? this.model.prototype.fields : null, + field, + config, i; + + for (i = 0; i < length; i++) { + config = sorters[i]; + + if (!(config instanceof Sorter)) { + if (Ext.isString(config)) { + config = { + property: config + }; + } + + Ext.applyIf(config, { + root : this.sortRoot, + direction: "ASC" + }); + + + if (config.fn) { + config.sorterFn = config.fn; + } + + + if (typeof config == 'function') { + config = { + sorterFn: config + }; + } + + + if (fields && !config.transform) { + field = fields.get(config.property); + config.transform = field && field.sortType !== Ext.identityFn ? field.sortType : undefined; + } + sorters[i] = new Ext.util.Sorter(config); + } + } + + return sorters; + }, + + getSorters: function() { + return this.sorters.items; + }, + + + getFirstSorter: function(){ + var sorters = this.sorters.items, + len = sorters.length, + i = 0, + sorter; + + for (; i < len; ++i) { + sorter = sorters[i]; + if (!sorter.isGrouper) { + return sorter; + } + } + return null; + } +}, function() { + + this.prototype.createComparator = this.createComparator; +}); + + +Ext.define('Ext.util.MixedCollection', { + extend: Ext.util.AbstractMixedCollection , + mixins: { + sortable: Ext.util.Sortable + }, + + + + + constructor: function() { + var me = this; + me.callParent(arguments); + me.addEvents('sort'); + me.mixins.sortable.initSortable.call(me); + }, + + doSort: function(sorterFn) { + this.sortBy(sorterFn); + }, + + + _sort : function(property, dir, fn) { + var me = this, + i, len, + dsc = String(dir).toUpperCase() == 'DESC' ? -1 : 1, + + + c = [], + keys = me.keys, + items = me.items, + o; + + + fn = fn || function(a, b) { + return a - b; + }; + + + for (i = 0, len = items.length; i < len; i++) { + c[c.length] = { + key : keys[i], + value: items[i], + index: i + }; + } + + + Ext.Array.sort(c, function(a, b) { + return fn(a[property], b[property]) * dsc || + + (a.index < b.index ? -1 : 1); + }); + + + + for (i = 0, len = c.length; i < len; i++) { + o = c[i]; + items[i] = o.value; + keys[i] = o.key; + me.indexMap[o.key] = i; + } + me.generation++; + me.indexGeneration = me.generation; + me.fireEvent('sort', me); + }, + + + sortBy: function(sorterFn) { + var me = this, + items = me.items, + item, + keys = me.keys, + key, + length = items.length, + i; + + + for (i = 0; i < length; i++) { + items[i].$extCollectionIndex = i; + } + + Ext.Array.sort(items, function(a, b) { + return sorterFn(a, b) || + + (a.$extCollectionIndex < b.$extCollectionIndex ? -1 : 1); + }); + + + for (i = 0; i < length; i++) { + item = items[i]; + key = me.getKey(item); + keys[i] = key; + me.indexMap[key] = i; + delete items.$extCollectionIndex; + } + me.generation++; + me.indexGeneration = me.generation; + me.fireEvent('sort', me, items, keys); + }, + + + findInsertionIndex: function(newItem, sorterFn) { + var me = this, + items = me.items, + start = 0, + end = items.length - 1, + middle, + comparison; + + if (!sorterFn) { + sorterFn = me.generateComparator(); + } + while (start <= end) { + middle = (start + end) >> 1; + comparison = sorterFn(newItem, items[middle]); + if (comparison >= 0) { + start = middle + 1; + } else if (comparison < 0) { + end = middle - 1; + } + } + return start; + }, + + + reorder: function(mapping) { + var me = this, + items = me.items, + index = 0, + length = items.length, + order = [], + remaining = [], + oldIndex; + + me.suspendEvents(); + + + for (oldIndex in mapping) { + order[mapping[oldIndex]] = items[oldIndex]; + } + + for (index = 0; index < length; index++) { + if (mapping[index] == undefined) { + remaining.push(items[index]); + } + } + + for (index = 0; index < length; index++) { + if (order[index] == undefined) { + order[index] = remaining.shift(); + } + } + + me.clear(); + me.addAll(order); + + me.resumeEvents(); + me.fireEvent('sort', me); + }, + + + sortByKey : function(dir, fn){ + this._sort('key', dir, fn || function(a, b){ + var v1 = String(a).toUpperCase(), v2 = String(b).toUpperCase(); + return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0); + }); + } +}); + + +Ext.define('Ext.fx.target.Target', { + + isAnimTarget: true, + + + constructor: function(target) { + this.target = target; + this.id = this.getId(); + }, + + getId: function() { + return this.target.id; + } +}); + + +Ext.define('Ext.fx.target.Element', { + + + + extend: Ext.fx.target.Target , + + + + type: 'element', + + getElVal: function(el, attr, val) { + if (val == undefined) { + if (attr === 'x') { + val = el.getX(); + } else if (attr === 'y') { + val = el.getY(); + } else if (attr === 'scrollTop') { + val = el.getScroll().top; + } else if (attr === 'scrollLeft') { + val = el.getScroll().left; + } else if (attr === 'height') { + val = el.getHeight(); + } else if (attr === 'width') { + val = el.getWidth(); + } else { + val = el.getStyle(attr); + } + } + return val; + }, + + getAttr: function(attr, val) { + var el = this.target; + return [[ el, this.getElVal(el, attr, val)]]; + }, + + setAttr: function(targetData) { + var target = this.target, + ln = targetData.length, + attrs, attr, o, i, j, ln2; + + for (i = 0; i < ln; i++) { + attrs = targetData[i].attrs; + for (attr in attrs) { + if (attrs.hasOwnProperty(attr)) { + ln2 = attrs[attr].length; + for (j = 0; j < ln2; j++) { + o = attrs[attr][j]; + this.setElVal(o[0], attr, o[1]); + } + } + } + } + }, + + setElVal: function(element, attr, value){ + if (attr === 'x') { + element.setX(value); + } else if (attr === 'y') { + element.setY(value); + } else if (attr === 'scrollTop') { + element.scrollTo('top', value); + } else if (attr === 'scrollLeft') { + element.scrollTo('left',value); + } else if (attr === 'width') { + element.setWidth(value); + } else if (attr === 'height') { + element.setHeight(value); + } else { + element.setStyle(attr, value); + } + } +}); + + +Ext.define('Ext.fx.target.ElementCSS', { + + + + extend: Ext.fx.target.Element , + + + + setAttr: function(targetData, isFirstFrame) { + var cssArr = { + attrs: [], + duration: [], + easing: [] + }, + ln = targetData.length, + attributes, + attrs, + attr, + easing, + duration, + o, + i, + j, + ln2; + for (i = 0; i < ln; i++) { + attrs = targetData[i]; + duration = attrs.duration; + easing = attrs.easing; + attrs = attrs.attrs; + for (attr in attrs) { + if (Ext.Array.indexOf(cssArr.attrs, attr) == -1) { + cssArr.attrs.push(attr.replace(/[A-Z]/g, function(v) { + return '-' + v.toLowerCase(); + })); + cssArr.duration.push(duration + 'ms'); + cssArr.easing.push(easing); + } + } + } + attributes = cssArr.attrs.join(','); + duration = cssArr.duration.join(','); + easing = cssArr.easing.join(', '); + for (i = 0; i < ln; i++) { + attrs = targetData[i].attrs; + for (attr in attrs) { + ln2 = attrs[attr].length; + for (j = 0; j < ln2; j++) { + o = attrs[attr][j]; + o[0].setStyle(Ext.supports.CSS3Prefix + 'TransitionProperty', isFirstFrame ? '' : attributes); + o[0].setStyle(Ext.supports.CSS3Prefix + 'TransitionDuration', isFirstFrame ? '' : duration); + o[0].setStyle(Ext.supports.CSS3Prefix + 'TransitionTimingFunction', isFirstFrame ? '' : easing); + o[0].setStyle(attr, o[1]); + + + if (isFirstFrame) { + o = o[0].dom.offsetWidth; + } + else { + + o[0].on(Ext.supports.CSS3TransitionEnd, function() { + this.setStyle(Ext.supports.CSS3Prefix + 'TransitionProperty', null); + this.setStyle(Ext.supports.CSS3Prefix + 'TransitionDuration', null); + this.setStyle(Ext.supports.CSS3Prefix + 'TransitionTimingFunction', null); + }, o[0], { single: true }); + } + } + } + } + } +}); + + +Ext.define('Ext.fx.target.CompositeElement', { + + + + extend: Ext.fx.target.Element , + + + + + isComposite: true, + + constructor: function(target) { + target.id = target.id || Ext.id(null, 'ext-composite-'); + this.callParent([target]); + }, + + getAttr: function(attr, val) { + var out = [], + target = this.target, + elements = target.elements, + length = elements.length, + i, + el; + + for (i = 0; i < length; i++) { + el = elements[i]; + + if (el) { + el = target.getElement(el); + out.push([el, this.getElVal(el, attr, val)]); + } + } + + return out; + }, + + setAttr: function(targetData){ + var target = this.target, + ln = targetData.length, + elements = target.elements, + ln3 = elements.length, + value, k, + attrs, attr, o, i, j, ln2; + + for (i = 0; i < ln; i++) { + attrs = targetData[i].attrs; + for (attr in attrs) { + if (attrs.hasOwnProperty(attr)) { + ln2 = attrs[attr].length; + for (j = 0; j < ln2; j++) { + value = attrs[attr][j][1]; + for (k = 0; k < ln3; ++k) { + el = elements[k]; + if (el) { + el = target.getElement(el); + this.setElVal(el, attr, value); + } + } + } + } + } + } + } +}); + + +Ext.define('Ext.fx.target.CompositeElementCSS', { + + + + extend: Ext.fx.target.CompositeElement , + + + + + setAttr: function() { + return Ext.fx.target.ElementCSS.prototype.setAttr.apply(this, arguments); + } +}); + + + +Ext.define('Ext.fx.target.Sprite', { + + + + extend: Ext.fx.target.Target , + + + + type: 'draw', + + getFromPrim: function (sprite, attr) { + var obj; + switch (attr) { + case 'rotate': + case 'rotation': + obj = sprite.attr.rotation; + return { + x: obj.x || 0, + y: obj.y || 0, + degrees: obj.degrees || 0 + }; + case 'scale': + case 'scaling': + obj = sprite.attr.scaling; + return { + x: obj.x || 1, + y: obj.y || 1, + cx: obj.cx || 0, + cy: obj.cy || 0 + }; + case 'translate': + case 'translation': + obj = sprite.attr.translation; + return { + x: obj.x || 0, + y: obj.y || 0 + }; + default: + return sprite.attr[attr]; + } + }, + + getAttr: function (attr, val) { + return [ + [this.target, val != undefined ? val : this.getFromPrim(this.target, attr)] + ]; + }, + + setAttr: function (targetData) { + var ln = targetData.length, + spriteArr = [], + attrsConf, attr, attrArr, attrs, sprite, idx, value, i, j, x, y, ln2; + for (i = 0; i < ln; i++) { + attrsConf = targetData[i].attrs; + for (attr in attrsConf) { + attrArr = attrsConf[attr]; + ln2 = attrArr.length; + for (j = 0; j < ln2; j++) { + sprite = attrArr[j][0]; + attrs = attrArr[j][1]; + if (attr === 'translate' || attr === 'translation') { + value = { + x: attrs.x, + y: attrs.y + }; + } + else if (attr === 'rotate' || attr === 'rotation') { + x = attrs.x; + if (isNaN(x)) { + x = null; + } + y = attrs.y; + if (isNaN(y)) { + y = null; + } + value = { + degrees: attrs.degrees, + x: x, + y: y + }; + } else if (attr === 'scale' || attr === 'scaling') { + x = attrs.x; + if (isNaN(x)) { + x = null; + } + y = attrs.y; + if (isNaN(y)) { + y = null; + } + value = { + x: x, + y: y, + cx: attrs.cx, + cy: attrs.cy + }; + } + else if (attr === 'width' || attr === 'height' || attr === 'x' || attr === 'y') { + value = parseFloat(attrs); + } + else { + value = attrs; + } + idx = Ext.Array.indexOf(spriteArr, sprite); + if (idx == -1) { + spriteArr.push([sprite, {}]); + idx = spriteArr.length - 1; + } + spriteArr[idx][1][attr] = value; + } + } + } + ln = spriteArr.length; + for (i = 0; i < ln; i++) { + spriteArr[i][0].setAttributes(spriteArr[i][1]); + } + this.target.redraw(); + } +}); + + + +Ext.define('Ext.fx.target.CompositeSprite', { + + + + extend: Ext.fx.target.Sprite , + + + + getAttr: function(attr, val) { + var out = [], + sprites = [].concat(this.target.items), + length = sprites.length, + i, + sprite; + + for (i = 0; i < length; i++) { + sprite = sprites[i]; + out.push([sprite, val != undefined ? val : this.getFromPrim(sprite, attr)]); + } + + return out; + } +}); + + +Ext.define('Ext.fx.target.Component', { + + + + extend: Ext.fx.target.Target , + + + + type: 'component', + + + getPropMethod: { + top: function() { + return this.getPosition(true)[1]; + }, + left: function() { + return this.getPosition(true)[0]; + }, + x: function() { + return this.getPosition()[0]; + }, + y: function() { + return this.getPosition()[1]; + }, + height: function() { + return this.getHeight(); + }, + width: function() { + return this.getWidth(); + }, + opacity: function() { + return this.el.getStyle('opacity'); + } + }, + + setMethods: { + top: 'setPosition', + left: 'setPosition', + x: 'setPagePosition', + y: 'setPagePosition', + height: 'setSize', + width: 'setSize', + opacity: 'setOpacity' + }, + + + getAttr: function(attr, val) { + return [[this.target, val !== undefined ? val : this.getPropMethod[attr].call(this.target)]]; + }, + + setAttr: function(targetData, isFirstFrame, isLastFrame) { + var me = this, + ln = targetData.length, + attrs, attr, o, i, j, targets, left, top, w, h, + methodsToCall = {}, + methodProps; + + for (i = 0; i < ln; i++) { + attrs = targetData[i].attrs; + for (attr in attrs) { + targets = attrs[attr].length; + for (j = 0; j < targets; j++) { + o = attrs[attr][j]; + methodProps = methodsToCall[me.setMethods[attr]] || (methodsToCall[me.setMethods[attr]] = {}); + methodProps.target = o[0]; + methodProps[attr] = o[1]; + + } + } + if (methodsToCall.setPosition) { + o = methodsToCall.setPosition; + left = (o.left === undefined) ? undefined : parseFloat(o.left); + top = (o.top === undefined) ? undefined : parseFloat(o.top); + o.target.setPosition(left, top); + } + if (methodsToCall.setPagePosition) { + o = methodsToCall.setPagePosition; + o.target.setPagePosition(o.x, o.y); + } + if (methodsToCall.setSize) { + o = methodsToCall.setSize; + + w = (o.width === undefined) ? o.target.getWidth() : parseFloat(o.width); + h = (o.height === undefined) ? o.target.getHeight() : parseFloat(o.height); + + + + + + + + + o.target.el.setSize(w, h); + if (isLastFrame || me.dynamic) { + + + + Ext.globalEvents.on({ + idle: Ext.Function.bind(o.target.setSize, o.target, [w, h]), + single: true + }); + } + } + if (methodsToCall.setOpacity) { + o = methodsToCall.setOpacity; + o.target.el.setStyle('opacity', o.opacity); + } + } + } +}); + + + +Ext.define('Ext.fx.Queue', { + + + + constructor: function() { + this.targets = new Ext.util.HashMap(); + this.fxQueue = {}; + }, + + + getFxDefaults: function(targetId) { + var target = this.targets.get(targetId); + if (target) { + return target.fxDefaults; + } + return {}; + }, + + + setFxDefaults: function(targetId, obj) { + var target = this.targets.get(targetId); + if (target) { + target.fxDefaults = Ext.apply(target.fxDefaults || {}, obj); + } + }, + + + stopAnimation: function(targetId) { + var me = this, + queue = me.getFxQueue(targetId), + ln = queue.length; + while (ln) { + queue[ln - 1].end(); + ln--; + } + }, + + + getActiveAnimation: function(targetId) { + var queue = this.getFxQueue(targetId); + return (queue && !!queue.length) ? queue[0] : false; + }, + + + hasFxBlock: function(targetId) { + var queue = this.getFxQueue(targetId); + return queue && queue[0] && queue[0].block; + }, + + + getFxQueue: function(targetId) { + if (!targetId) { + return false; + } + var me = this, + queue = me.fxQueue[targetId], + target = me.targets.get(targetId); + + if (!target) { + return false; + } + + if (!queue) { + me.fxQueue[targetId] = []; + + if (target.type != 'element') { + target.target.on('destroy', function() { + me.fxQueue[targetId] = []; + }); + } + } + return me.fxQueue[targetId]; + }, + + + queueFx: function(anim) { + var me = this, + target = anim.target, + queue, ln; + + if (!target) { + return; + } + + queue = me.getFxQueue(target.getId()); + ln = queue.length; + + if (ln) { + if (anim.concurrent) { + anim.paused = false; + } + else { + queue[ln - 1].on('afteranimate', function() { + anim.paused = false; + }); + } + } + else { + anim.paused = false; + } + anim.on('afteranimate', function() { + Ext.Array.remove(queue, anim); + if (queue.length === 0) { + me.targets.remove(anim.target); + } + if (anim.remove) { + if (target.type == 'element') { + var el = Ext.get(target.id); + if (el) { + el.remove(); + } + } + } + }, me, { + single: true + }); + queue.push(anim); + } +}); + + + +Ext.define('Ext.fx.Manager', { + + + + singleton: true, + + + + + + + + + + + mixins: { + queue: Ext.fx.Queue + }, + + + + constructor: function() { + var me = this; + me.items = new Ext.util.MixedCollection(); + me.mixins.queue.constructor.call(me); + + + + me.taskRunner = new Ext.util.TaskRunner(); + + + + + + + + + + + + + + + + + + + }, + + + interval: 16, + + + forceJS: true, + + + createTarget: function(target) { + var me = this, + useCSS3 = !me.forceJS && Ext.supports.Transitions, + targetObj; + + me.useCSS3 = useCSS3; + + if (target) { + + if (target.tagName || Ext.isString(target) || target.isFly) { + target = Ext.get(target); + targetObj = new Ext.fx.target['Element' + (useCSS3 ? 'CSS' : '')](target); + } + + else if (target.dom) { + targetObj = new Ext.fx.target['Element' + (useCSS3 ? 'CSS' : '')](target); + } + + else if (target.isComposite) { + targetObj = new Ext.fx.target['CompositeElement' + (useCSS3 ? 'CSS' : '')](target); + } + + else if (target.isSprite) { + targetObj = new Ext.fx.target.Sprite(target); + } + + else if (target.isCompositeSprite) { + targetObj = new Ext.fx.target.CompositeSprite(target); + } + + else if (target.isComponent) { + targetObj = new Ext.fx.target.Component(target); + } + else if (target.isAnimTarget) { + return target; + } + else { + return null; + } + me.targets.add(targetObj); + return targetObj; + } + else { + return null; + } + }, + + + addAnim: function(anim) { + var me = this, + items = me.items, + task = me.task; + + + + + items.add(anim.id, anim); + + + + if (!task && items.length) { + task = me.task = { + run: me.runner, + interval: me.interval, + scope: me + }; + + me.taskRunner.start(task); + } + }, + + + removeAnim: function(anim) { + var me = this, + items = me.items, + task = me.task; + + items.removeAtKey(anim.id); + + + + if (task && !items.length) { + + me.taskRunner.stop(task); + delete me.task; + } + }, + + + runner: function() { + var me = this, + items = me.items.getRange(), + i = 0, + len = items.length, + anim; + + + me.targetArr = {}; + + + me.timestamp = new Date(); + + + + + + + + + + + + for (; i < len; i++) { + anim = items[i]; + + if (anim.isReady()) { + + me.startAnim(anim); + } + } + + for (i = 0; i < len; i++) { + anim = items[i]; + + if (anim.isRunning()) { + + me.runAnim(anim); + } + } + + + me.applyPendingAttrs(); + }, + + + startAnim: function(anim) { + anim.start(this.timestamp); + }, + + + runAnim: function(anim) { + if (!anim) { + return; + } + var me = this, + useCSS3 = me.useCSS3 && anim.target.type == 'element', + elapsedTime = me.timestamp - anim.startTime, + lastFrame = (elapsedTime >= anim.duration), + target, o; + + target = this.collectTargetData(anim, elapsedTime, useCSS3, lastFrame); + + + + if (useCSS3) { + + + + anim.target.setAttr(target.anims[anim.id].attributes, true); + + + me.collectTargetData(anim, anim.duration, useCSS3, lastFrame); + + + anim.paused = true; + + target = anim.target.target; + + if (anim.target.isComposite) { + target = anim.target.target.last(); + } + + + o = {}; + o[Ext.supports.CSS3TransitionEnd] = anim.lastFrame; + o.scope = anim; + o.single = true; + target.on(o); + } + }, + + + collectTargetData: function(anim, elapsedTime, useCSS3, isLastFrame) { + var targetId = anim.target.getId(), + target = this.targetArr[targetId]; + + if (!target) { + + + + + target = this.targetArr[targetId] = { + id: targetId, + el: anim.target, + anims: {} + }; + } + + + + + + target.anims[anim.id] = { + id: anim.id, + anim: anim, + elapsed: elapsedTime, + isLastFrame: isLastFrame, + + attributes: [{ + duration: anim.duration, + easing: (useCSS3 && anim.reverse) ? anim.easingFn.reverse().toCSS3() : anim.easing, + + + attrs: anim.runAnim(elapsedTime) + }] + }; + + return target; + }, + + + applyPendingAttrs: function() { + var targetArr = this.targetArr, + target, targetId, animWrap, anim, animId; + + + for (targetId in targetArr) { + if (targetArr.hasOwnProperty(targetId)) { + target = targetArr[targetId]; + + + for (animId in target.anims) { + if (target.anims.hasOwnProperty(animId)) { + animWrap = target.anims[animId]; + anim = animWrap.anim; + + + if (animWrap.attributes && anim.isRunning()) { + + target.el.setAttr(animWrap.attributes, false, animWrap.isLastFrame); + + + if (animWrap.isLastFrame) { + + anim.lastFrame(); + } + } + } + } + } + } + } +}); + + +Ext.define('Ext.fx.Animator', { + + + + mixins: { + observable: Ext.util.Observable + }, + + + + + + + isAnimator: true, + + + duration: 250, + + + delay: 0, + + + delayStart: 0, + + + dynamic: false, + + + easing: 'ease', + + + running: false, + + + paused: false, + + + damper: 1, + + + iterations: 1, + + + currentIteration: 0, + + + keyframeStep: 0, + + + animKeyFramesRE: /^(from|to|\d+%?)$/, + + + + + constructor: function(config) { + var me = this; + config = Ext.apply(me, config || {}); + me.config = config; + me.id = Ext.id(null, 'ext-animator-'); + me.addEvents( + + 'beforeanimate', + + 'keyframe', + + 'afteranimate' + ); + me.mixins.observable.constructor.call(me, config); + me.timeline = []; + me.createTimeline(me.keyframes); + if (me.target) { + me.applyAnimator(me.target); + Ext.fx.Manager.addAnim(me); + } + }, + + + sorter: function (a, b) { + return a.pct - b.pct; + }, + + + createTimeline: function(keyframes) { + var me = this, + attrs = [], + to = me.to || {}, + duration = me.duration, + prevMs, ms, i, ln, pct, attr; + + for (pct in keyframes) { + if (keyframes.hasOwnProperty(pct) && me.animKeyFramesRE.test(pct)) { + attr = {attrs: Ext.apply(keyframes[pct], to)}; + + if (pct == "from") { + pct = 0; + } + else if (pct == "to") { + pct = 100; + } + + attr.pct = parseInt(pct, 10); + attrs.push(attr); + } + } + + Ext.Array.sort(attrs, me.sorter); + + + + + + ln = attrs.length; + for (i = 0; i < ln; i++) { + prevMs = (attrs[i - 1]) ? duration * (attrs[i - 1].pct / 100) : 0; + ms = duration * (attrs[i].pct / 100); + me.timeline.push({ + duration: ms - prevMs, + attrs: attrs[i].attrs + }); + } + }, + + + applyAnimator: function(target) { + var me = this, + anims = [], + timeline = me.timeline, + ln = timeline.length, + anim, easing, damper, attrs, i; + + if (me.fireEvent('beforeanimate', me) !== false) { + for (i = 0; i < ln; i++) { + anim = timeline[i]; + attrs = anim.attrs; + easing = attrs.easing || me.easing; + damper = attrs.damper || me.damper; + delete attrs.easing; + delete attrs.damper; + anim = new Ext.fx.Anim({ + target: target, + easing: easing, + damper: damper, + duration: anim.duration, + paused: true, + to: attrs + }); + anims.push(anim); + } + me.animations = anims; + me.target = anim.target; + for (i = 0; i < ln - 1; i++) { + anim = anims[i]; + anim.nextAnim = anims[i + 1]; + anim.on('afteranimate', function() { + this.nextAnim.paused = false; + }); + anim.on('afteranimate', function() { + this.fireEvent('keyframe', this, ++this.keyframeStep); + }, me); + } + anims[ln - 1].on('afteranimate', function() { + this.lastFrame(); + }, me); + } + }, + + + start: function(startTime) { + var me = this, + delay = me.delay, + delayStart = me.delayStart, + delayDelta; + if (delay) { + if (!delayStart) { + me.delayStart = startTime; + return; + } + else { + delayDelta = startTime - delayStart; + if (delayDelta < delay) { + return; + } + else { + + startTime = new Date(delayStart.getTime() + delay); + } + } + } + if (me.fireEvent('beforeanimate', me) !== false) { + me.startTime = startTime; + me.running = true; + me.animations[me.keyframeStep].paused = false; + } + }, + + + lastFrame: function() { + var me = this, + iter = me.iterations, + iterCount = me.currentIteration; + + iterCount++; + if (iterCount < iter) { + me.startTime = new Date(); + me.currentIteration = iterCount; + me.keyframeStep = 0; + me.applyAnimator(me.target); + me.animations[me.keyframeStep].paused = false; + } + else { + me.currentIteration = 0; + me.end(); + } + }, + + + end: function() { + var me = this; + me.fireEvent('afteranimate', me, me.startTime, new Date() - me.startTime); + }, + + isReady: function() { + return this.paused === false && this.running === false && this.iterations > 0; + }, + + isRunning: function() { + + return false; + } +}); + + +Ext.define('Ext.fx.CubicBezier', { + + + + singleton: true, + + + + cubicBezierAtTime: function(t, p1x, p1y, p2x, p2y, duration) { + var cx = 3 * p1x, + bx = 3 * (p2x - p1x) - cx, + ax = 1 - cx - bx, + cy = 3 * p1y, + by = 3 * (p2y - p1y) - cy, + ay = 1 - cy - by; + function sampleCurveX(t) { + return ((ax * t + bx) * t + cx) * t; + } + function solve(x, epsilon) { + var t = solveCurveX(x, epsilon); + return ((ay * t + by) * t + cy) * t; + } + function solveCurveX(x, epsilon) { + var t0, t1, t2, x2, d2, i; + for (t2 = x, i = 0; i < 8; i++) { + x2 = sampleCurveX(t2) - x; + if (Math.abs(x2) < epsilon) { + return t2; + } + d2 = (3 * ax * t2 + 2 * bx) * t2 + cx; + if (Math.abs(d2) < 1e-6) { + break; + } + t2 = t2 - x2 / d2; + } + t0 = 0; + t1 = 1; + t2 = x; + if (t2 < t0) { + return t0; + } + if (t2 > t1) { + return t1; + } + while (t0 < t1) { + x2 = sampleCurveX(t2); + if (Math.abs(x2 - x) < epsilon) { + return t2; + } + if (x > x2) { + t0 = t2; + } else { + t1 = t2; + } + t2 = (t1 - t0) / 2 + t0; + } + return t2; + } + return solve(t, 1 / (200 * duration)); + }, + + cubicBezier: function(x1, y1, x2, y2) { + var fn = function(pos) { + return Ext.fx.CubicBezier.cubicBezierAtTime(pos, x1, y1, x2, y2, 1); + }; + fn.toCSS3 = function() { + return 'cubic-bezier(' + [x1, y1, x2, y2].join(',') + ')'; + }; + fn.reverse = function() { + return Ext.fx.CubicBezier.cubicBezier(1 - x2, 1 - y2, 1 - x1, 1 - y1); + }; + return fn; + } +}); + + + + +Ext.require('Ext.fx.CubicBezier', function() { + var math = Math, + pi = math.PI, + pow = math.pow, + sin = math.sin, + sqrt = math.sqrt, + abs = math.abs, + backInSeed = 1.70158; + + Ext.define('Ext.fx.Easing', { + singleton: true, + + linear: Ext.identityFn, + ease: function(n) { + var q = 0.07813 - n / 2, + alpha = -0.25, + Q = sqrt(0.0066 + q * q), + x = Q - q, + X = pow(abs(x), 1/3) * (x < 0 ? -1 : 1), + y = -Q - q, + Y = pow(abs(y), 1/3) * (y < 0 ? -1 : 1), + t = X + Y + 0.25; + return pow(1 - t, 2) * 3 * t * 0.1 + (1 - t) * 3 * t * t + t * t * t; + }, + easeIn: function (n) { + return pow(n, 1.7); + }, + easeOut: function (n) { + return pow(n, 0.48); + }, + easeInOut: function(n) { + var q = 0.48 - n / 1.04, + Q = sqrt(0.1734 + q * q), + x = Q - q, + X = pow(abs(x), 1/3) * (x < 0 ? -1 : 1), + y = -Q - q, + Y = pow(abs(y), 1/3) * (y < 0 ? -1 : 1), + t = X + Y + 0.5; + return (1 - t) * 3 * t * t + t * t * t; + }, + backIn: function (n) { + return n * n * ((backInSeed + 1) * n - backInSeed); + }, + backOut: function (n) { + n = n - 1; + return n * n * ((backInSeed + 1) * n + backInSeed) + 1; + }, + elasticIn: function (n) { + if (n === 0 || n === 1) { + return n; + } + var p = 0.3, + s = p / 4; + return pow(2, -10 * n) * sin((n - s) * (2 * pi) / p) + 1; + }, + elasticOut: function (n) { + return 1 - Ext.fx.Easing.elasticIn(1 - n); + }, + bounceIn: function (n) { + return 1 - Ext.fx.Easing.bounceOut(1 - n); + }, + bounceOut: function (n) { + var s = 7.5625, + p = 2.75, + l; + if (n < (1 / p)) { + l = s * n * n; + } else { + if (n < (2 / p)) { + n -= (1.5 / p); + l = s * n * n + 0.75; + } else { + if (n < (2.5 / p)) { + n -= (2.25 / p); + l = s * n * n + 0.9375; + } else { + n -= (2.625 / p); + l = s * n * n + 0.984375; + } + } + } + return l; + } + }, function(){ + var easing = Ext.fx.Easing.self, + proto = easing.prototype; + + easing.implement({ + 'back-in': proto.backIn, + 'back-out': proto.backOut, + 'ease-in': proto.easeIn, + 'ease-out': proto.easeOut, + 'elastic-in': proto.elasticIn, + 'elastic-out': proto.elasticOut, + 'bounce-in': proto.bounceIn, + 'bounce-out': proto.bounceOut, + 'ease-in-out': proto.easeInOut + }); + }); +}); + + +Ext.define('Ext.draw.Color', { + + + + + + colorToHexRe: /(.*?)rgb\((\d+),\s*(\d+),\s*(\d+)\)/, + rgbRe: /\s*rgb\s*\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*\)\s*/, + hexRe: /\s*#([0-9a-fA-F][0-9a-fA-F]?)([0-9a-fA-F][0-9a-fA-F]?)([0-9a-fA-F][0-9a-fA-F]?)\s*/, + + + lightnessFactor: 0.2, + + + constructor : function(red, green, blue) { + var me = this, + clamp = Ext.Number.constrain; + me.r = clamp(red, 0, 255); + me.g = clamp(green, 0, 255); + me.b = clamp(blue, 0, 255); + }, + + + getRed: function() { + return this.r; + }, + + + getGreen: function() { + return this.g; + }, + + + getBlue: function() { + return this.b; + }, + + + getRGB: function() { + var me = this; + return [me.r, me.g, me.b]; + }, + + + getHSL: function() { + var me = this, + r = me.r / 255, + g = me.g / 255, + b = me.b / 255, + max = Math.max(r, g, b), + min = Math.min(r, g, b), + delta = max - min, + h, + s = 0, + l = 0.5 * (max + min); + + + if (min != max) { + s = (l < 0.5) ? delta / (max + min) : delta / (2 - max - min); + if (r == max) { + h = 60 * (g - b) / delta; + } else if (g == max) { + h = 120 + 60 * (b - r) / delta; + } else { + h = 240 + 60 * (r - g) / delta; + } + if (h < 0) { + h += 360; + } + if (h >= 360) { + h -= 360; + } + } + return [h, s, l]; + }, + + + getLighter: function(factor) { + var hsl = this.getHSL(); + factor = factor || this.lightnessFactor; + hsl[2] = Ext.Number.constrain(hsl[2] + factor, 0, 1); + return this.fromHSL(hsl[0], hsl[1], hsl[2]); + }, + + + getDarker: function(factor) { + factor = factor || this.lightnessFactor; + return this.getLighter(-factor); + }, + + + toString: function() { + var me = this, + round = Math.round, + r = round(me.r).toString(16), + g = round(me.g).toString(16), + b = round(me.b).toString(16); + r = (r.length == 1) ? '0' + r : r; + g = (g.length == 1) ? '0' + g : g; + b = (b.length == 1) ? '0' + b : b; + return ['#', r, g, b].join(''); + }, + + + toHex: function(color) { + if (Ext.isArray(color)) { + color = color[0]; + } + if (!Ext.isString(color)) { + return ''; + } + if (color.substr(0, 1) === '#') { + return color; + } + var digits = this.colorToHexRe.exec(color), + red, + green, + blue, + rgb; + + if (Ext.isArray(digits)) { + red = parseInt(digits[2], 10); + green = parseInt(digits[3], 10); + blue = parseInt(digits[4], 10); + rgb = blue | (green << 8) | (red << 16); + return digits[1] + '#' + ("000000" + rgb.toString(16)).slice(-6); + } + else { + return color; + } + }, + + + fromString: function(str) { + var values, r, g, b, + parse = parseInt; + + if ((str.length == 4 || str.length == 7) && str.substr(0, 1) === '#') { + values = str.match(this.hexRe); + if (values) { + r = parse(values[1], 16) >> 0; + g = parse(values[2], 16) >> 0; + b = parse(values[3], 16) >> 0; + if (str.length == 4) { + r += (r * 16); + g += (g * 16); + b += (b * 16); + } + } + } + else { + values = str.match(this.rgbRe); + if (values) { + r = values[1]; + g = values[2]; + b = values[3]; + } + } + + return (typeof r == 'undefined') ? undefined : new Ext.draw.Color(r, g, b); + }, + + + getGrayscale: function() { + + return this.r * 0.3 + this.g * 0.59 + this.b * 0.11; + }, + + + fromHSL: function(h, s, l) { + var C, X, m, i, rgb = [], + abs = Math.abs, + floor = Math.floor; + + if (s == 0 || h == null) { + + rgb = [l, l, l]; + } + else { + + + + + h /= 60; + C = s * (1 - abs(2 * l - 1)); + X = C * (1 - abs(h - 2 * floor(h / 2) - 1)); + m = l - C / 2; + switch (floor(h)) { + case 0: + rgb = [C, X, 0]; + break; + case 1: + rgb = [X, C, 0]; + break; + case 2: + rgb = [0, C, X]; + break; + case 3: + rgb = [0, X, C]; + break; + case 4: + rgb = [X, 0, C]; + break; + case 5: + rgb = [C, 0, X]; + break; + } + rgb = [rgb[0] + m, rgb[1] + m, rgb[2] + m]; + } + return new Ext.draw.Color(rgb[0] * 255, rgb[1] * 255, rgb[2] * 255); + } +}, function() { + var prototype = this.prototype; + + + this.addStatics({ + fromHSL: function() { + return prototype.fromHSL.apply(prototype, arguments); + }, + fromString: function() { + return prototype.fromString.apply(prototype, arguments); + }, + toHex: function() { + return prototype.toHex.apply(prototype, arguments); + } + }); +}); + + +Ext.define('Ext.draw.Draw', { + + + singleton: true, + + + + + + pathToStringRE: /,?([achlmqrstvxz]),?/gi, + pathCommandRE: /([achlmqstvz])[\s,]*((-?\d*\.?\d*(?:e[-+]?\d+)?\s*,?\s*)+)/ig, + pathValuesRE: /(-?\d*\.?\d*(?:e[-+]?\d+)?)\s*,?\s*/ig, + stopsRE: /^(\d+%?)$/, + radian: Math.PI / 180, + + availableAnimAttrs: { + along: "along", + blur: null, + "clip-rect": "csv", + cx: null, + cy: null, + fill: "color", + "fill-opacity": null, + "font-size": null, + height: null, + opacity: null, + path: "path", + r: null, + rotation: "csv", + rx: null, + ry: null, + scale: "csv", + stroke: "color", + "stroke-opacity": null, + "stroke-width": null, + translation: "csv", + width: null, + x: null, + y: null + }, + + is: function(o, type) { + type = String(type).toLowerCase(); + return (type == "object" && o === Object(o)) || + (type == "undefined" && typeof o == type) || + (type == "null" && o === null) || + (type == "array" && Array.isArray && Array.isArray(o)) || + (Object.prototype.toString.call(o).toLowerCase().slice(8, -1)) == type; + }, + + ellipsePath: function(sprite) { + var attr = sprite.attr; + return Ext.String.format("M{0},{1}A{2},{3},0,1,1,{0},{4}A{2},{3},0,1,1,{0},{1}z", attr.x, attr.y - attr.ry, attr.rx, attr.ry, attr.y + attr.ry); + }, + + rectPath: function(sprite) { + var attr = sprite.attr; + if (attr.radius) { + return Ext.String.format("M{0},{1}l{2},0a{3},{3},0,0,1,{3},{3}l0,{5}a{3},{3},0,0,1,{4},{3}l{6},0a{3},{3},0,0,1,{4},{4}l0,{7}a{3},{3},0,0,1,{3},{4}z", attr.x + attr.radius, attr.y, attr.width - attr.radius * 2, attr.radius, -attr.radius, attr.height - attr.radius * 2, attr.radius * 2 - attr.width, attr.radius * 2 - attr.height); + } + else { + return Ext.String.format("M{0},{1}L{2},{1},{2},{3},{0},{3}z", attr.x, attr.y, attr.width + attr.x, attr.height + attr.y); + } + }, + + + path2string: function () { + return this.join(",").replace(Ext.draw.Draw.pathToStringRE, "$1"); + }, + + + pathToString: function(arrayPath) { + return arrayPath.join(",").replace(Ext.draw.Draw.pathToStringRE, "$1"); + }, + + parsePathString: function (pathString) { + if (!pathString) { + return null; + } + var paramCounts = {a: 7, c: 6, h: 1, l: 2, m: 2, q: 4, s: 4, t: 2, v: 1, z: 0}, + data = [], + me = this; + if (me.is(pathString, "array") && me.is(pathString[0], "array")) { + data = me.pathClone(pathString); + } + if (!data.length) { + String(pathString).replace(me.pathCommandRE, function (a, b, c) { + var params = [], + name = b.toLowerCase(); + c.replace(me.pathValuesRE, function (a, b) { + b && params.push(+b); + }); + if (name == "m" && params.length > 2) { + data.push([b].concat(Ext.Array.splice(params, 0, 2))); + name = "l"; + b = (b == "m") ? "l" : "L"; + } + while (params.length >= paramCounts[name]) { + data.push([b].concat(Ext.Array.splice(params, 0, paramCounts[name]))); + if (!paramCounts[name]) { + break; + } + } + }); + } + data.toString = me.path2string; + return data; + }, + + mapPath: function (path, matrix) { + if (!matrix) { + return path; + } + var x, y, i, ii, j, jj, pathi; + path = this.path2curve(path); + for (i = 0, ii = path.length; i < ii; i++) { + pathi = path[i]; + for (j = 1, jj = pathi.length; j < jj-1; j += 2) { + x = matrix.x(pathi[j], pathi[j + 1]); + y = matrix.y(pathi[j], pathi[j + 1]); + pathi[j] = x; + pathi[j + 1] = y; + } + } + return path; + }, + + pathClone: function(pathArray) { + var res = [], + j, jj, i, ii; + if (!this.is(pathArray, "array") || !this.is(pathArray && pathArray[0], "array")) { + pathArray = this.parsePathString(pathArray); + } + for (i = 0, ii = pathArray.length; i < ii; i++) { + res[i] = []; + for (j = 0, jj = pathArray[i].length; j < jj; j++) { + res[i][j] = pathArray[i][j]; + } + } + res.toString = this.path2string; + return res; + }, + + pathToAbsolute: function (pathArray) { + if (!this.is(pathArray, "array") || !this.is(pathArray && pathArray[0], "array")) { + pathArray = this.parsePathString(pathArray); + } + var res = [], + x = 0, + y = 0, + mx = 0, + my = 0, + i = 0, + ln = pathArray.length, + r, pathSegment, j, ln2; + + if (ln && pathArray[0][0] == "M") { + x = +pathArray[0][1]; + y = +pathArray[0][2]; + mx = x; + my = y; + i++; + res[0] = ["M", x, y]; + } + for (; i < ln; i++) { + r = res[i] = []; + pathSegment = pathArray[i]; + if (pathSegment[0] != pathSegment[0].toUpperCase()) { + r[0] = pathSegment[0].toUpperCase(); + switch (r[0]) { + + case "A": + r[1] = pathSegment[1]; + r[2] = pathSegment[2]; + r[3] = pathSegment[3]; + r[4] = pathSegment[4]; + r[5] = pathSegment[5]; + r[6] = +(pathSegment[6] + x); + r[7] = +(pathSegment[7] + y); + break; + + case "V": + r[1] = +pathSegment[1] + y; + break; + + case "H": + r[1] = +pathSegment[1] + x; + break; + case "M": + + mx = +pathSegment[1] + x; + my = +pathSegment[2] + y; + default: + j = 1; + ln2 = pathSegment.length; + for (; j < ln2; j++) { + r[j] = +pathSegment[j] + ((j % 2) ? x : y); + } + } + } + else { + j = 0; + ln2 = pathSegment.length; + for (; j < ln2; j++) { + res[i][j] = pathSegment[j]; + } + } + switch (r[0]) { + + case "Z": + x = mx; + y = my; + break; + + case "H": + x = r[1]; + break; + + case "V": + y = r[1]; + break; + + case "M": + pathSegment = res[i]; + ln2 = pathSegment.length; + mx = pathSegment[ln2 - 2]; + my = pathSegment[ln2 - 1]; + default: + pathSegment = res[i]; + ln2 = pathSegment.length; + x = pathSegment[ln2 - 2]; + y = pathSegment[ln2 - 1]; + } + } + res.toString = this.path2string; + return res; + }, + + + pathToRelative: function (pathArray) { + if (!this.is(pathArray, "array") || !this.is(pathArray && pathArray[0], "array")) { + pathArray = this.parsePathString(pathArray); + } + var res = [], + x = 0, + y = 0, + mx = 0, + my = 0, + start = 0, + r, + pa, + i, + j, + k, + len, + ii, + jj, + kk; + + if (pathArray[0][0] == "M") { + x = pathArray[0][1]; + y = pathArray[0][2]; + mx = x; + my = y; + start++; + res.push(["M", x, y]); + } + for (i = start, ii = pathArray.length; i < ii; i++) { + r = res[i] = []; + pa = pathArray[i]; + if (pa[0] != pa[0].toLowerCase()) { + r[0] = pa[0].toLowerCase(); + switch (r[0]) { + case "a": + r[1] = pa[1]; + r[2] = pa[2]; + r[3] = pa[3]; + r[4] = pa[4]; + r[5] = pa[5]; + r[6] = +(pa[6] - x).toFixed(3); + r[7] = +(pa[7] - y).toFixed(3); + break; + case "v": + r[1] = +(pa[1] - y).toFixed(3); + break; + case "m": + mx = pa[1]; + my = pa[2]; + default: + for (j = 1, jj = pa.length; j < jj; j++) { + r[j] = +(pa[j] - ((j % 2) ? x : y)).toFixed(3); + } + } + } else { + r = res[i] = []; + if (pa[0] == "m") { + mx = pa[1] + x; + my = pa[2] + y; + } + for (k = 0, kk = pa.length; k < kk; k++) { + res[i][k] = pa[k]; + } + } + len = res[i].length; + switch (res[i][0]) { + case "z": + x = mx; + y = my; + break; + case "h": + x += +res[i][len - 1]; + break; + case "v": + y += +res[i][len - 1]; + break; + default: + x += +res[i][len - 2]; + y += +res[i][len - 1]; + } + } + res.toString = this.path2string; + return res; + }, + + + path2curve: function (path) { + var me = this, + points = me.pathToAbsolute(path), + ln = points.length, + attrs = {x: 0, y: 0, bx: 0, by: 0, X: 0, Y: 0, qx: null, qy: null}, + i, seg, segLn, point; + + for (i = 0; i < ln; i++) { + points[i] = me.command2curve(points[i], attrs); + if (points[i].length > 7) { + points[i].shift(); + point = points[i]; + while (point.length) { + Ext.Array.splice(points, i++, 0, ["C"].concat(Ext.Array.splice(point, 0, 6))); + } + Ext.Array.erase(points, i, 1); + ln = points.length; + i--; + } + seg = points[i]; + segLn = seg.length; + attrs.x = seg[segLn - 2]; + attrs.y = seg[segLn - 1]; + attrs.bx = parseFloat(seg[segLn - 4]) || attrs.x; + attrs.by = parseFloat(seg[segLn - 3]) || attrs.y; + } + return points; + }, + + interpolatePaths: function (path, path2) { + var me = this, + p = me.pathToAbsolute(path), + p2 = me.pathToAbsolute(path2), + attrs = {x: 0, y: 0, bx: 0, by: 0, X: 0, Y: 0, qx: null, qy: null}, + attrs2 = {x: 0, y: 0, bx: 0, by: 0, X: 0, Y: 0, qx: null, qy: null}, + fixArc = function (pp, i) { + if (pp[i].length > 7) { + pp[i].shift(); + var pi = pp[i]; + while (pi.length) { + Ext.Array.splice(pp, i++, 0, ["C"].concat(Ext.Array.splice(pi, 0, 6))); + } + Ext.Array.erase(pp, i, 1); + ii = Math.max(p.length, p2.length || 0); + } + }, + fixM = function (path1, path2, a1, a2, i) { + if (path1 && path2 && path1[i][0] == "M" && path2[i][0] != "M") { + Ext.Array.splice(path2, i, 0, ["M", a2.x, a2.y]); + a1.bx = 0; + a1.by = 0; + a1.x = path1[i][1]; + a1.y = path1[i][2]; + ii = Math.max(p.length, p2.length || 0); + } + }, + i, ii, + seg, seg2, seglen, seg2len; + for (i = 0, ii = Math.max(p.length, p2.length || 0); i < ii; i++) { + p[i] = me.command2curve(p[i], attrs); + fixArc(p, i); + (p2[i] = me.command2curve(p2[i], attrs2)); + fixArc(p2, i); + fixM(p, p2, attrs, attrs2, i); + fixM(p2, p, attrs2, attrs, i); + seg = p[i]; + seg2 = p2[i]; + seglen = seg.length; + seg2len = seg2.length; + attrs.x = seg[seglen - 2]; + attrs.y = seg[seglen - 1]; + attrs.bx = parseFloat(seg[seglen - 4]) || attrs.x; + attrs.by = parseFloat(seg[seglen - 3]) || attrs.y; + attrs2.bx = (parseFloat(seg2[seg2len - 4]) || attrs2.x); + attrs2.by = (parseFloat(seg2[seg2len - 3]) || attrs2.y); + attrs2.x = seg2[seg2len - 2]; + attrs2.y = seg2[seg2len - 1]; + } + return [p, p2]; + }, + + + command2curve: function (pathCommand, d) { + var me = this; + if (!pathCommand) { + return ["C", d.x, d.y, d.x, d.y, d.x, d.y]; + } + if (pathCommand[0] != "T" && pathCommand[0] != "Q") { + d.qx = d.qy = null; + } + switch (pathCommand[0]) { + case "M": + d.X = pathCommand[1]; + d.Y = pathCommand[2]; + break; + case "A": + pathCommand = ["C"].concat(me.arc2curve.apply(me, [d.x, d.y].concat(pathCommand.slice(1)))); + break; + case "S": + pathCommand = ["C", d.x + (d.x - (d.bx || d.x)), d.y + (d.y - (d.by || d.y))].concat(pathCommand.slice(1)); + break; + case "T": + d.qx = d.x + (d.x - (d.qx || d.x)); + d.qy = d.y + (d.y - (d.qy || d.y)); + pathCommand = ["C"].concat(me.quadratic2curve(d.x, d.y, d.qx, d.qy, pathCommand[1], pathCommand[2])); + break; + case "Q": + d.qx = pathCommand[1]; + d.qy = pathCommand[2]; + pathCommand = ["C"].concat(me.quadratic2curve(d.x, d.y, pathCommand[1], pathCommand[2], pathCommand[3], pathCommand[4])); + break; + case "L": + pathCommand = ["C"].concat(d.x, d.y, pathCommand[1], pathCommand[2], pathCommand[1], pathCommand[2]); + break; + case "H": + pathCommand = ["C"].concat(d.x, d.y, pathCommand[1], d.y, pathCommand[1], d.y); + break; + case "V": + pathCommand = ["C"].concat(d.x, d.y, d.x, pathCommand[1], d.x, pathCommand[1]); + break; + case "Z": + pathCommand = ["C"].concat(d.x, d.y, d.X, d.Y, d.X, d.Y); + break; + } + return pathCommand; + }, + + quadratic2curve: function (x1, y1, ax, ay, x2, y2) { + var _13 = 1 / 3, + _23 = 2 / 3; + return [ + _13 * x1 + _23 * ax, + _13 * y1 + _23 * ay, + _13 * x2 + _23 * ax, + _13 * y2 + _23 * ay, + x2, + y2 + ]; + }, + + rotate: function (x, y, rad) { + var cos = Math.cos(rad), + sin = Math.sin(rad), + X = x * cos - y * sin, + Y = x * sin + y * cos; + return {x: X, y: Y}; + }, + + arc2curve: function (x1, y1, rx, ry, angle, large_arc_flag, sweep_flag, x2, y2, recursive) { + + + var me = this, + PI = Math.PI, + radian = me.radian, + _120 = PI * 120 / 180, + rad = radian * (+angle || 0), + res = [], + math = Math, + mcos = math.cos, + msin = math.sin, + msqrt = math.sqrt, + mabs = math.abs, + masin = math.asin, + xy, x, y, h, rx2, ry2, k, cx, cy, f1, f2, df, c1, s1, c2, s2, + t, hx, hy, m1, m2, m3, m4, newres, i, ln, f2old, x2old, y2old; + if (!recursive) { + xy = me.rotate(x1, y1, -rad); + x1 = xy.x; + y1 = xy.y; + xy = me.rotate(x2, y2, -rad); + x2 = xy.x; + y2 = xy.y; + x = (x1 - x2) / 2; + y = (y1 - y2) / 2; + h = (x * x) / (rx * rx) + (y * y) / (ry * ry); + if (h > 1) { + h = msqrt(h); + rx = h * rx; + ry = h * ry; + } + rx2 = rx * rx; + ry2 = ry * ry; + k = (large_arc_flag == sweep_flag ? -1 : 1) * + msqrt(mabs((rx2 * ry2 - rx2 * y * y - ry2 * x * x) / (rx2 * y * y + ry2 * x * x))); + cx = k * rx * y / ry + (x1 + x2) / 2; + cy = k * -ry * x / rx + (y1 + y2) / 2; + f1 = masin(((y1 - cy) / ry).toFixed(7)); + f2 = masin(((y2 - cy) / ry).toFixed(7)); + + f1 = x1 < cx ? PI - f1 : f1; + f2 = x2 < cx ? PI - f2 : f2; + if (f1 < 0) { + f1 = PI * 2 + f1; + } + if (f2 < 0) { + f2 = PI * 2 + f2; + } + if (sweep_flag && f1 > f2) { + f1 = f1 - PI * 2; + } + if (!sweep_flag && f2 > f1) { + f2 = f2 - PI * 2; + } + } + else { + f1 = recursive[0]; + f2 = recursive[1]; + cx = recursive[2]; + cy = recursive[3]; + } + df = f2 - f1; + if (mabs(df) > _120) { + f2old = f2; + x2old = x2; + y2old = y2; + f2 = f1 + _120 * (sweep_flag && f2 > f1 ? 1 : -1); + x2 = cx + rx * mcos(f2); + y2 = cy + ry * msin(f2); + res = me.arc2curve(x2, y2, rx, ry, angle, 0, sweep_flag, x2old, y2old, [f2, f2old, cx, cy]); + } + df = f2 - f1; + c1 = mcos(f1); + s1 = msin(f1); + c2 = mcos(f2); + s2 = msin(f2); + t = math.tan(df / 4); + hx = 4 / 3 * rx * t; + hy = 4 / 3 * ry * t; + m1 = [x1, y1]; + m2 = [x1 + hx * s1, y1 - hy * c1]; + m3 = [x2 + hx * s2, y2 - hy * c2]; + m4 = [x2, y2]; + m2[0] = 2 * m1[0] - m2[0]; + m2[1] = 2 * m1[1] - m2[1]; + if (recursive) { + return [m2, m3, m4].concat(res); + } + else { + res = [m2, m3, m4].concat(res).join().split(","); + newres = []; + ln = res.length; + for (i = 0; i < ln; i++) { + newres[i] = i % 2 ? me.rotate(res[i - 1], res[i], rad).y : me.rotate(res[i], res[i + 1], rad).x; + } + return newres; + } + }, + + + rotateAndTranslatePath: function (sprite) { + var alpha = sprite.rotation.degrees, + cx = sprite.rotation.x, + cy = sprite.rotation.y, + dx = sprite.translation.x, + dy = sprite.translation.y, + path, + i, + p, + xy, + j, + res = []; + if (!alpha && !dx && !dy) { + return this.pathToAbsolute(sprite.attr.path); + } + dx = dx || 0; + dy = dy || 0; + path = this.pathToAbsolute(sprite.attr.path); + for (i = path.length; i--;) { + p = res[i] = path[i].slice(); + if (p[0] == "A") { + xy = this.rotatePoint(p[6], p[7], alpha, cx, cy); + p[6] = xy.x + dx; + p[7] = xy.y + dy; + } else { + j = 1; + while (p[j + 1] != null) { + xy = this.rotatePoint(p[j], p[j + 1], alpha, cx, cy); + p[j] = xy.x + dx; + p[j + 1] = xy.y + dy; + j += 2; + } + } + } + return res; + }, + + + rotatePoint: function (x, y, alpha, cx, cy) { + if (!alpha) { + return { + x: x, + y: y + }; + } + cx = cx || 0; + cy = cy || 0; + x = x - cx; + y = y - cy; + alpha = alpha * this.radian; + var cos = Math.cos(alpha), + sin = Math.sin(alpha); + return { + x: x * cos - y * sin + cx, + y: x * sin + y * cos + cy + }; + }, + + pathDimensions: function (path) { + if (!path || !(path + "")) { + return {x: 0, y: 0, width: 0, height: 0}; + } + path = this.path2curve(path); + var x = 0, + y = 0, + X = [], + Y = [], + i = 0, + ln = path.length, + p, xmin, ymin, xmax, ymax, dim; + for (; i < ln; i++) { + p = path[i]; + if (p[0] == "M") { + x = p[1]; + y = p[2]; + X.push(x); + Y.push(y); + } + else { + dim = this.curveDim(x, y, p[1], p[2], p[3], p[4], p[5], p[6]); + X = X.concat(dim.min.x, dim.max.x); + Y = Y.concat(dim.min.y, dim.max.y); + x = p[5]; + y = p[6]; + } + } + xmin = Math.min.apply(0, X); + ymin = Math.min.apply(0, Y); + xmax = Math.max.apply(0, X); + ymax = Math.max.apply(0, Y); + return { + x: Math.round(xmin), + y: Math.round(ymin), + path: path, + width: Math.round(xmax - xmin), + height: Math.round(ymax - ymin) + }; + }, + + intersectInside: function(path, cp1, cp2) { + return (cp2[0] - cp1[0]) * (path[1] - cp1[1]) > (cp2[1] - cp1[1]) * (path[0] - cp1[0]); + }, + + intersectIntersection: function(s, e, cp1, cp2) { + var p = [], + dcx = cp1[0] - cp2[0], + dcy = cp1[1] - cp2[1], + dpx = s[0] - e[0], + dpy = s[1] - e[1], + n1 = cp1[0] * cp2[1] - cp1[1] * cp2[0], + n2 = s[0] * e[1] - s[1] * e[0], + n3 = 1 / (dcx * dpy - dcy * dpx); + + p[0] = (n1 * dpx - n2 * dcx) * n3; + p[1] = (n1 * dpy - n2 * dcy) * n3; + return p; + }, + + intersect: function(subjectPolygon, clipPolygon) { + var me = this, + i = 0, + ln = clipPolygon.length, + cp1 = clipPolygon[ln - 1], + outputList = subjectPolygon, + cp2, s, e, ln2, inputList, j; + for (; i < ln; ++i) { + cp2 = clipPolygon[i]; + inputList = outputList; + outputList = []; + s = inputList[inputList.length - 1]; + j = 0; + ln2 = inputList.length; + for (; j < ln2; j++) { + e = inputList[j]; + if (me.intersectInside(e, cp1, cp2)) { + if (!me.intersectInside(s, cp1, cp2)) { + outputList.push(me.intersectIntersection(s, e, cp1, cp2)); + } + outputList.push(e); + } + else if (me.intersectInside(s, cp1, cp2)) { + outputList.push(me.intersectIntersection(s, e, cp1, cp2)); + } + s = e; + } + cp1 = cp2; + } + return outputList; + }, + + bezier : function (a, b, c, d, x) { + if (x === 0) { + return a; + } + else if (x === 1) { + return d; + } + var du = 1 - x, + d3 = du * du * du, + r = x / du; + return d3 * (a + r * (3 * b + r * (3 * c + d * r))); + }, + + bezierDim : function (a, b, c, d) { + var points = [], r, + A, top, C, delta, bottom, s, + min, max, i; + + if (a + 3 * c == d + 3 * b) { + r = a - b; + r /= 2 * (a - b - b + c); + if ( r < 1 && r > 0) { + points.push(r); + } + } else { + + + A = a - 3 * b + 3 * c - d; + top = 2 * (a - b - b + c); + C = a - b; + delta = top * top - 4 * A * C; + bottom = A + A; + if (delta === 0) { + r = top / bottom; + if (r < 1 && r > 0) { + points.push(r); + } + } else if (delta > 0) { + s = Math.sqrt(delta); + r = (s + top) / bottom; + + if (r < 1 && r > 0) { + points.push(r); + } + + r = (top - s) / bottom; + + if (r < 1 && r > 0) { + points.push(r); + } + } + } + min = Math.min(a, d); + max = Math.max(a, d); + for (i = 0; i < points.length; i++) { + min = Math.min(min, this.bezier(a, b, c, d, points[i])); + max = Math.max(max, this.bezier(a, b, c, d, points[i])); + } + return [min, max]; + }, + + curveDim: function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y) { + var x = this.bezierDim(p1x, c1x, c2x, p2x), + y = this.bezierDim(p1y, c1y, c2y, p2y); + return { + min: { + x: x[0], + y: y[0] + }, + max: { + x: x[1], + y: y[1] + } + }; + }, + + + getAnchors: function (prevX, prevY, curX, curY, nextX, nextY, value) { + value = value || 4; + var M = Math, + PI = M.PI, + halfPI = PI / 2, + abs = M.abs, + sin = M.sin, + cos = M.cos, + atan = M.atan, + control1Length, control2Length, control1Angle, control2Angle, + control1X, control1Y, control2X, control2Y, alpha; + + + + control1Length = (curX - prevX) / value; + control2Length = (nextX - curX) / value; + + + + + + if ((curY >= prevY && curY >= nextY) || (curY <= prevY && curY <= nextY)) { + control1Angle = control2Angle = halfPI; + } else { + control1Angle = atan((curX - prevX) / abs(curY - prevY)); + if (prevY < curY) { + control1Angle = PI - control1Angle; + } + control2Angle = atan((nextX - curX) / abs(curY - nextY)); + if (nextY < curY) { + control2Angle = PI - control2Angle; + } + } + + + alpha = halfPI - ((control1Angle + control2Angle) % (PI * 2)) / 2; + if (alpha > halfPI) { + alpha -= PI; + } + control1Angle += alpha; + control2Angle += alpha; + + + control1X = curX - control1Length * sin(control1Angle); + control1Y = curY + control1Length * cos(control1Angle); + control2X = curX + control2Length * sin(control2Angle); + control2Y = curY + control2Length * cos(control2Angle); + + + + + + if ((curY > prevY && control1Y < prevY) || (curY < prevY && control1Y > prevY)) { + control1X += abs(prevY - control1Y) * (control1X - curX) / (control1Y - curY); + control1Y = prevY; + } + if ((curY > nextY && control2Y < nextY) || (curY < nextY && control2Y > nextY)) { + control2X -= abs(nextY - control2Y) * (control2X - curX) / (control2Y - curY); + control2Y = nextY; + } + + return { + x1: control1X, + y1: control1Y, + x2: control2X, + y2: control2Y + }; + }, + + + smooth: function (originalPath, value) { + var path = this.path2curve(originalPath), + newp = [path[0]], + x = path[0][1], + y = path[0][2], + j, + points, + i = 1, + ii = path.length, + beg = 1, + mx = x, + my = y, + pathi, + pathil, + pathim, + pathiml, + pathip, + pathipl, + begl; + + for (; i < ii; i++) { + pathi = path[i]; + pathil = pathi.length; + pathim = path[i - 1]; + pathiml = pathim.length; + pathip = path[i + 1]; + pathipl = pathip && pathip.length; + if (pathi[0] == "M") { + mx = pathi[1]; + my = pathi[2]; + j = i + 1; + while (path[j][0] != "C") { + j++; + } + newp.push(["M", mx, my]); + beg = newp.length; + x = mx; + y = my; + continue; + } + if (pathi[pathil - 2] == mx && pathi[pathil - 1] == my && (!pathip || pathip[0] == "M")) { + begl = newp[beg].length; + points = this.getAnchors(pathim[pathiml - 2], pathim[pathiml - 1], mx, my, newp[beg][begl - 2], newp[beg][begl - 1], value); + newp[beg][1] = points.x2; + newp[beg][2] = points.y2; + } + else if (!pathip || pathip[0] == "M") { + points = { + x1: pathi[pathil - 2], + y1: pathi[pathil - 1] + }; + } else { + points = this.getAnchors(pathim[pathiml - 2], pathim[pathiml - 1], pathi[pathil - 2], pathi[pathil - 1], pathip[pathipl - 2], pathip[pathipl - 1], value); + } + newp.push(["C", x, y, points.x1, points.y1, pathi[pathil - 2], pathi[pathil - 1]]); + x = points.x2; + y = points.y2; + } + return newp; + }, + + findDotAtSegment: function (p1x, p1y, c1x, c1y, c2x, c2y, p2x, p2y, t) { + var t1 = 1 - t; + return { + x: Math.pow(t1, 3) * p1x + Math.pow(t1, 2) * 3 * t * c1x + t1 * 3 * t * t * c2x + Math.pow(t, 3) * p2x, + y: Math.pow(t1, 3) * p1y + Math.pow(t1, 2) * 3 * t * c1y + t1 * 3 * t * t * c2y + Math.pow(t, 3) * p2y + }; + }, + + + snapEnds: function (from, to, stepsMax, prettyNumbers) { + if (Ext.isDate(from)) { + return this.snapEndsByDate(from, to, stepsMax); + } + var step = (to - from) / stepsMax, + level = Math.floor(Math.log(step) / Math.LN10) + 1, + m = Math.pow(10, level), + cur, + floor, + modulo = Math.round((step % m) * Math.pow(10, 2 - level)), + interval = [[0, 15], [10, 1], [20, 4], [25, 2], [50, 9], [100, 15]], + stepCount = 0, + value, + weight, + i, + topValue, + topWeight = 1e9, + ln = interval.length; + + floor = Math.floor(from / m) * m; + if (from == floor && floor > 0) { + floor = Math.floor((from - (m/10)) / m) * m; + } + + if (prettyNumbers) { + for (i = 0; i < ln; i++) { + value = interval[i][0]; + weight = (value - modulo) < 0 ? 1e6 : (value - modulo) / interval[i][1]; + if (weight < topWeight) { + topValue = value; + topWeight = weight; + } + } + step = Math.floor(step * Math.pow(10, -level)) * Math.pow(10, level) + topValue * Math.pow(10, level - 2); + + if (from < 0 && to >= 0) { + cur = 0; + while (cur > from) { + cur -= step; + stepCount++; + } + from = +cur.toFixed(10); + + cur = 0; + while (cur < to) { + cur += step; + stepCount++; + } + to = +cur.toFixed(10); + } else { + cur = from = floor; + while (cur < to) { + cur += step; + stepCount++; + } + } + to = +cur.toFixed(10); + } else { + from = floor; + stepCount = stepsMax; + } + + return { + from: from, + to: to, + power: level, + step: step, + steps: stepCount + }; + }, + + + snapEndsByDate: function (from, to, stepsMax, lockEnds) { + var selectedStep = false, + scales = [ + [Ext.Date.MILLI, [1, 2, 5, 10, 20, 50, 100, 200, 250, 500]], + [Ext.Date.SECOND, [1, 2, 5, 10, 15, 30]], + [Ext.Date.MINUTE, [1, 2, 5, 10, 15, 30]], + [Ext.Date.HOUR, [1, 2, 3, 4, 6, 12]], + [Ext.Date.DAY, [1, 2, 7, 14]], + [Ext.Date.MONTH, [1, 2, 3, 6]] + ], + sLen = scales.length, + stop = false, + scale, j, yearDiff, s; + + + for (s = 0; s < sLen; s++) { + scale = scales[s]; + if (!stop) { + for (j = 0; j < scale[1].length; j++) { + if (to < Ext.Date.add(from, scale[0], scale[1][j] * stepsMax)) { + selectedStep = [scale[0], scale[1][j]]; + stop = true; + break; + } + } + } + } + + if (!selectedStep) { + yearDiff = this.snapEnds(from.getFullYear(), to.getFullYear() + 1, stepsMax, lockEnds); + selectedStep = [Date.YEAR, Math.round(yearDiff.step)]; + } + return this.snapEndsByDateAndStep(from, to, selectedStep, lockEnds); + }, + + + + + snapEndsByDateAndStep: function(from, to, step, lockEnds) { + var fromStat = [from.getFullYear(), from.getMonth(), from.getDate(), + from.getHours(), from.getMinutes(), from.getSeconds(), from.getMilliseconds()], + steps, testFrom, testTo, date, year, month, day, fractionalMonth, + stepUnit = step[0], stepValue = step[1]; + if (lockEnds) { + testFrom = from; + } else { + switch (stepUnit) { + case Ext.Date.MILLI: + testFrom = new Date(fromStat[0], fromStat[1], fromStat[2], fromStat[3], + fromStat[4], fromStat[5], Math.floor(fromStat[6] / stepValue) * stepValue); + break; + case Ext.Date.SECOND: + testFrom = new Date(fromStat[0], fromStat[1], fromStat[2], fromStat[3], + fromStat[4], Math.floor(fromStat[5] / stepValue) * stepValue, 0); + break; + case Ext.Date.MINUTE: + testFrom = new Date(fromStat[0], fromStat[1], fromStat[2], fromStat[3], + Math.floor(fromStat[4] / stepValue) * stepValue, 0, 0); + break; + case Ext.Date.HOUR: + testFrom = new Date(fromStat[0], fromStat[1], fromStat[2], + Math.floor(fromStat[3] / stepValue) * stepValue, 0, 0, 0); + break; + case Ext.Date.DAY: + testFrom = new Date(fromStat[0], fromStat[1], + Math.floor((fromStat[2] - 1) / stepValue) * stepValue + 1, 0, 0, 0, 0); + break; + case Ext.Date.MONTH: + testFrom = new Date(fromStat[0], Math.floor(fromStat[1] / stepValue) * stepValue, 1, 0, 0, 0, 0); + break; + default: + testFrom = new Date(Math.floor(fromStat[0] / stepValue) * stepValue, 0, 1, 0, 0, 0, 0); + break; + } + } + + fractionalMonth = ((stepUnit === Ext.Date.MONTH) && (stepValue == 1/2 || stepValue == 1/3 || stepValue == 1/4)); + steps = (fractionalMonth ? [] : 0); + + + testTo = new Date(testFrom); + while (testTo < to) { + if (fractionalMonth) { + date = new Date(testTo); + year = date.getFullYear(); + month = date.getMonth(); + day = date.getDate(); + switch(stepValue) { + case 1/2: + if (day >= 15) { + day = 1; + if (++month > 11) { + year++; + } + } + else { + day = 15; + } + break; + + case 1/3: + if (day >= 20) { + day = 1; + if (++month > 11) { + year++; + } + } + else { + if (day >= 10) { + day = 20 + } + else { + day = 10; + } + } + break; + + case 1/4: + if (day >= 22) { + day = 1; + if (++month > 11) { + year++; + } + } + else { + if (day >= 15) { + day = 22 + } + else { + if (day >= 8) { + day = 15 + } + else { + day = 8; + } + } + } + break; + } + testTo.setYear(year); + testTo.setMonth(month); + testTo.setDate(day); + steps.push(new Date(testTo)); + } + else { + testTo = Ext.Date.add(testTo, stepUnit, stepValue); + steps++; + } + } + + if (lockEnds) { + testTo = to; + } + + if (fractionalMonth) { + return { + from : +testFrom, + to : +testTo, + steps : steps + }; + } + else { + return { + from : +testFrom, + to : +testTo, + step : (testTo - testFrom) / steps, + steps : steps + }; + } + }, + + sorter: function (a, b) { + return a.offset - b.offset; + }, + + rad: function(degrees) { + return degrees % 360 * Math.PI / 180; + }, + + degrees: function(radian) { + return radian * 180 / Math.PI % 360; + }, + + withinBox: function(x, y, bbox) { + bbox = bbox || {}; + return (x >= bbox.x && x <= (bbox.x + bbox.width) && y >= bbox.y && y <= (bbox.y + bbox.height)); + }, + + parseGradient: function(gradient) { + var me = this, + type = gradient.type || 'linear', + angle = gradient.angle || 0, + radian = me.radian, + stops = gradient.stops, + stopsArr = [], + stop, + vector, + max, + stopObj; + + if (type == 'linear') { + vector = [0, 0, Math.cos(angle * radian), Math.sin(angle * radian)]; + max = 1 / (Math.max(Math.abs(vector[2]), Math.abs(vector[3])) || 1); + vector[2] *= max; + vector[3] *= max; + if (vector[2] < 0) { + vector[0] = -vector[2]; + vector[2] = 0; + } + if (vector[3] < 0) { + vector[1] = -vector[3]; + vector[3] = 0; + } + } + + for (stop in stops) { + if (stops.hasOwnProperty(stop) && me.stopsRE.test(stop)) { + stopObj = { + offset: parseInt(stop, 10), + color: Ext.draw.Color.toHex(stops[stop].color) || '#ffffff', + opacity: stops[stop].opacity || 1 + }; + stopsArr.push(stopObj); + } + } + + Ext.Array.sort(stopsArr, me.sorter); + if (type == 'linear') { + return { + id: gradient.id, + type: type, + vector: vector, + stops: stopsArr + }; + } + else { + return { + id: gradient.id, + type: type, + centerX: gradient.centerX, + centerY: gradient.centerY, + focalX: gradient.focalX, + focalY: gradient.focalY, + radius: gradient.radius, + vector: vector, + stops: stopsArr + }; + } + } +}); + + +Ext.define('Ext.fx.PropertyHandler', { + + + + + + statics: { + defaultHandler: { + pixelDefaultsRE: /width|height|top$|bottom$|left$|right$/i, + unitRE: /^(-?\d*\.?\d*){1}(em|ex|px|in|cm|mm|pt|pc|%)*$/, + scrollRE: /^scroll/i, + + computeDelta: function(from, end, damper, initial, attr) { + damper = (typeof damper == 'number') ? damper : 1; + var unitRE = this.unitRE, + match = unitRE.exec(from), + start, units; + if (match) { + from = match[1]; + units = match[2]; + if (!this.scrollRE.test(attr) && !units && this.pixelDefaultsRE.test(attr)) { + units = 'px'; + } + } + from = +from || 0; + + match = unitRE.exec(end); + if (match) { + end = match[1]; + units = match[2] || units; + } + end = +end || 0; + start = (initial != null) ? initial : from; + return { + from: from, + delta: (end - start) * damper, + units: units + }; + }, + + get: function(from, end, damper, initialFrom, attr) { + var ln = from.length, + out = [], + i, initial, res, j, len; + for (i = 0; i < ln; i++) { + if (initialFrom) { + initial = initialFrom[i][1].from; + } + if (Ext.isArray(from[i][1]) && Ext.isArray(end)) { + res = []; + j = 0; + len = from[i][1].length; + for (; j < len; j++) { + res.push(this.computeDelta(from[i][1][j], end[j], damper, initial, attr)); + } + out.push([from[i][0], res]); + } + else { + out.push([from[i][0], this.computeDelta(from[i][1], end, damper, initial, attr)]); + } + } + return out; + }, + + set: function(values, easing) { + var ln = values.length, + out = [], + i, val, res, len, j; + for (i = 0; i < ln; i++) { + val = values[i][1]; + if (Ext.isArray(val)) { + res = []; + j = 0; + len = val.length; + for (; j < len; j++) { + res.push(val[j].from + val[j].delta * easing + (val[j].units || 0)); + } + out.push([values[i][0], res]); + } else { + out.push([values[i][0], val.from + val.delta * easing + (val.units || 0)]); + } + } + return out; + } + }, + stringHandler: { + computeDelta: function(from, end, damper, initial, attr) { + return { + from: from, + delta: end + }; + }, + + get: function(from, end, damper, initialFrom, attr) { + var ln = from.length, + out = [], + i, initial, res, j, len; + for (i = 0; i < ln; i++) { + out.push([from[i][0], this.computeDelta(from[i][1], end, damper, initial, attr)]); + } + return out; + }, + + set: function(values, easing) { + var ln = values.length, + out = [], + i, val, res, len, j; + for (i = 0; i < ln; i++) { + val = values[i][1]; + out.push([values[i][0], val.delta]); + } + return out; + } + }, + color: { + rgbRE: /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i, + hexRE: /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i, + hex3RE: /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i, + + parseColor : function(color, damper) { + damper = (typeof damper == 'number') ? damper : 1; + var out = false, + reList = [this.hexRE, this.rgbRE, this.hex3RE], + length = reList.length, + match, base, re, i; + + for (i = 0; i < length; i++) { + re = reList[i]; + + base = (i % 2 === 0) ? 16 : 10; + match = re.exec(color); + if (match && match.length === 4) { + if (i === 2) { + match[1] += match[1]; + match[2] += match[2]; + match[3] += match[3]; + } + out = { + red: parseInt(match[1], base), + green: parseInt(match[2], base), + blue: parseInt(match[3], base) + }; + break; + } + } + + return out || color; + }, + + computeDelta: function(from, end, damper, initial) { + from = this.parseColor(from); + end = this.parseColor(end, damper); + var start = initial ? initial : from, + tfrom = typeof start, + tend = typeof end; + + if (tfrom == 'string' || tfrom == 'undefined' + || tend == 'string' || tend == 'undefined') { + return end || start; + } + return { + from: from, + delta: { + red: Math.round((end.red - start.red) * damper), + green: Math.round((end.green - start.green) * damper), + blue: Math.round((end.blue - start.blue) * damper) + } + }; + }, + + get: function(start, end, damper, initialFrom) { + var ln = start.length, + out = [], + i, initial; + for (i = 0; i < ln; i++) { + if (initialFrom) { + initial = initialFrom[i][1].from; + } + out.push([start[i][0], this.computeDelta(start[i][1], end, damper, initial)]); + } + return out; + }, + + set: function(values, easing) { + var ln = values.length, + out = [], + i, val, parsedString, from, delta; + for (i = 0; i < ln; i++) { + val = values[i][1]; + if (val) { + from = val.from; + delta = val.delta; + + val = (typeof val == 'object' && 'red' in val)? + 'rgb(' + val.red + ', ' + val.green + ', ' + val.blue + ')' : val; + val = (typeof val == 'object' && val.length)? val[0] : val; + if (typeof val == 'undefined') { + return []; + } + parsedString = typeof val == 'string'? val : + 'rgb(' + [ + (from.red + Math.round(delta.red * easing)) % 256, + (from.green + Math.round(delta.green * easing)) % 256, + (from.blue + Math.round(delta.blue * easing)) % 256 + ].join(',') + ')'; + out.push([ + values[i][0], + parsedString + ]); + } + } + return out; + } + }, + object: { + interpolate: function(prop, damper) { + damper = (typeof damper == 'number') ? damper : 1; + var out = {}, + p; + for(p in prop) { + out[p] = parseFloat(prop[p]) * damper; + } + return out; + }, + + computeDelta: function(from, end, damper, initial) { + from = this.interpolate(from); + end = this.interpolate(end, damper); + var start = initial ? initial : from, + delta = {}, + p; + + for(p in end) { + delta[p] = end[p] - start[p]; + } + return { + from: from, + delta: delta + }; + }, + + get: function(start, end, damper, initialFrom) { + var ln = start.length, + out = [], + i, initial; + for (i = 0; i < ln; i++) { + if (initialFrom) { + initial = initialFrom[i][1].from; + } + out.push([start[i][0], this.computeDelta(start[i][1], end, damper, initial)]); + } + return out; + }, + + set: function(values, easing) { + var ln = values.length, + out = [], + outObject = {}, + i, from, delta, val, p; + for (i = 0; i < ln; i++) { + val = values[i][1]; + from = val.from; + delta = val.delta; + for (p in from) { + outObject[p] = from[p] + delta[p] * easing; + } + out.push([ + values[i][0], + outObject + ]); + } + return out; + } + }, + + path: { + computeDelta: function(from, end, damper, initial) { + damper = (typeof damper == 'number') ? damper : 1; + var start; + from = +from || 0; + end = +end || 0; + start = (initial != null) ? initial : from; + return { + from: from, + delta: (end - start) * damper + }; + }, + + forcePath: function(path) { + if (!Ext.isArray(path) && !Ext.isArray(path[0])) { + path = Ext.draw.Draw.parsePathString(path); + } + return path; + }, + + get: function(start, end, damper, initialFrom) { + var endPath = this.forcePath(end), + out = [], + startLn = start.length, + startPathLn, pointsLn, i, deltaPath, initial, j, k, path, startPath; + for (i = 0; i < startLn; i++) { + startPath = this.forcePath(start[i][1]); + + deltaPath = Ext.draw.Draw.interpolatePaths(startPath, endPath); + startPath = deltaPath[0]; + endPath = deltaPath[1]; + + startPathLn = startPath.length; + path = []; + for (j = 0; j < startPathLn; j++) { + deltaPath = [startPath[j][0]]; + pointsLn = startPath[j].length; + for (k = 1; k < pointsLn; k++) { + initial = initialFrom && initialFrom[0][1][j][k].from; + deltaPath.push(this.computeDelta(startPath[j][k], endPath[j][k], damper, initial)); + } + path.push(deltaPath); + } + out.push([start[i][0], path]); + } + return out; + }, + + set: function(values, easing) { + var ln = values.length, + out = [], + i, j, k, newPath, calcPath, deltaPath, deltaPathLn, pointsLn; + for (i = 0; i < ln; i++) { + deltaPath = values[i][1]; + newPath = []; + deltaPathLn = deltaPath.length; + for (j = 0; j < deltaPathLn; j++) { + calcPath = [deltaPath[j][0]]; + pointsLn = deltaPath[j].length; + for (k = 1; k < pointsLn; k++) { + calcPath.push(deltaPath[j][k].from + deltaPath[j][k].delta * easing); + } + newPath.push(calcPath.join(',')); + } + out.push([values[i][0], newPath.join(',')]); + } + return out; + } + } + + } +}, function() { + + var props = [ + 'outlineColor', + 'backgroundColor', + 'borderColor', + 'borderTopColor', + 'borderRightColor', + 'borderBottomColor', + 'borderLeftColor', + 'fill', + 'stroke' + ], + length = props.length, + i = 0, + prop; + + for (; i= duration) { + elapsedTime = duration; + lastFrame = true; + } + if (me.reverse) { + elapsedTime = duration - elapsedTime; + } + + for (attr in attrs) { + if (attrs.hasOwnProperty(attr)) { + values = attrs[attr]; + easing = lastFrame ? 1 : easingFn(elapsedTime / duration); + ret[attr] = propHandlers[attr].set(values, easing); + } + } + me.frameCount++; + + return ret; + }, + + + lastFrame: function() { + var me = this, + iter = me.iterations, + iterCount = me.currentIteration; + + iterCount++; + if (iterCount < iter) { + if (me.alternate) { + me.reverse = !me.reverse; + } + me.startTime = new Date(); + me.currentIteration = iterCount; + + me.paused = false; + } + else { + me.currentIteration = 0; + me.end(); + me.fireEvent('lastframe', me, me.startTime); + } + }, + + endWasCalled: 0, + + + end: function() { + if (this.endWasCalled++) { + return; + } + var me = this; + me.startTime = 0; + me.paused = false; + me.running = false; + Ext.fx.Manager.removeAnim(me); + me.fireEvent('afteranimate', me, me.startTime); + Ext.callback(me.callback, me.scope, [me, me.startTime]); + }, + + isReady: function() { + return this.paused === false && this.running === false && this.iterations > 0; + }, + + isRunning: function() { + return this.paused === false && this.running === true && this.isAnimator !== true; + } +}); + +Ext.enableFx = true; + + +Ext.define('Ext.util.Animate', { + + + + + + + + isAnimate: true, + + + animate: function(animObj) { + var me = this; + if (Ext.fx.Manager.hasFxBlock(me.id)) { + return me; + } + Ext.fx.Manager.queueFx(new Ext.fx.Anim(me.anim(animObj))); + return this; + }, + + + anim: function(config) { + if (!Ext.isObject(config)) { + return (config) ? {} : false; + } + + var me = this; + + if (config.stopAnimation) { + me.stopAnimation(); + } + + Ext.applyIf(config, Ext.fx.Manager.getFxDefaults(me.id)); + + return Ext.apply({ + target: me, + paused: true + }, config); + }, + + + stopFx: Ext.Function.alias(Ext.util.Animate, 'stopAnimation'), + + + stopAnimation: function() { + Ext.fx.Manager.stopAnimation(this.id); + return this; + }, + + + syncFx: function() { + Ext.fx.Manager.setFxDefaults(this.id, { + concurrent: true + }); + return this; + }, + + + sequenceFx: function() { + Ext.fx.Manager.setFxDefaults(this.id, { + concurrent: false + }); + return this; + }, + + + hasActiveFx: Ext.Function.alias(Ext.util.Animate, 'getActiveAnimation'), + + + getActiveAnimation: function() { + return Ext.fx.Manager.getActiveAnimation(this.id); + } +}, function(){ + + Ext.applyIf(Ext.Element.prototype, this.prototype); + + Ext.CompositeElementLite.importElementMethods(); +}); + + +Ext.define('Ext.util.ElementContainer', { + + childEls: [ + + + + + ], + + constructor: function () { + var me = this, + childEls; + + + + if (me.hasOwnProperty('childEls')) { + childEls = me.childEls; + delete me.childEls; + + me.addChildEls.apply(me, childEls); + } + }, + + destroy: function () { + var me = this, + childEls = me.getChildEls(), + child, childName, i, k; + + for (i = childEls.length; i--; ) { + childName = childEls[i]; + if (typeof childName != 'string') { + childName = childName.name; + } + + child = me[childName]; + if (child) { + me[childName] = null; + child.remove(); + } + } + }, + + + addChildEls: function () { + var me = this, + args = arguments; + + if (me.hasOwnProperty('childEls')) { + me.childEls.push.apply(me.childEls, args); + } else { + me.childEls = me.getChildEls().concat(Array.prototype.slice.call(args)); + } + + me.prune(me.childEls, false); + }, + + + applyChildEls: function(el, id) { + var me = this, + childEls = me.getChildEls(), + baseId, childName, i, selector, value; + + baseId = (id || me.id) + '-'; + for (i = childEls.length; i--; ) { + childName = childEls[i]; + + if (typeof childName == 'string') { + + + value = el.getById(baseId + childName); + } else { + if ((selector = childName.select)) { + value = Ext.select(selector, true, el.dom); + } else if ((selector = childName.selectNode)) { + value = Ext.get(Ext.DomQuery.selectNode(selector, el.dom)); + } else { + + value = el.getById(childName.id || (baseId + childName.itemId)); + } + + childName = childName.name; + } + + me[childName] = value; + } + }, + + getChildEls: function () { + var me = this, + self; + + + if (me.hasOwnProperty('childEls')) { + return me.childEls; + } + + + + self = me.self; + return self.$childEls || me.getClassChildEls(self); + }, + + getClassChildEls: function (cls) { + var me = this, + result = cls.$childEls, + childEls, i, length, forked, mixin, mixins, name, parts, proto, supr, superMixins; + + if (!result) { + + + + + supr = cls.superclass; + if (supr) { + supr = supr.self; + parts = [supr.$childEls || me.getClassChildEls(supr)]; + superMixins = supr.prototype.mixins || {}; + } else { + parts = []; + superMixins = {}; + } + + proto = cls.prototype; + mixins = proto.mixins; + for (name in mixins) { + if (mixins.hasOwnProperty(name) && !superMixins.hasOwnProperty(name)) { + mixin = mixins[name].self; + parts.push(mixin.$childEls || me.getClassChildEls(mixin)); + } + } + + parts.push(proto.hasOwnProperty('childEls') && proto.childEls); + + for (i = 0, length = parts.length; i < length; ++i) { + childEls = parts[i]; + if (childEls && childEls.length) { + if (!result) { + result = childEls; + } else { + if (!forked) { + forked = true; + result = result.slice(0); + } + result.push.apply(result, childEls); + } + } + } + + cls.$childEls = result = (result ? me.prune(result, !forked) : []); + } + + return result; + }, + + prune: function (childEls, shared) { + var index = childEls.length, + map = {}, + name; + + while (index--) { + name = childEls[index]; + if (typeof name != 'string') { + name = name.name; + } + + if (!map[name]) { + map[name] = 1; + } else { + if (shared) { + shared = false; + childEls = childEls.slice(0); + } + Ext.Array.erase(childEls, index, 1); + } + } + + return childEls; + }, + + + removeChildEls: function (testFn) { + var me = this, + old = me.getChildEls(), + keepers = (me.childEls = []), + n, i, cel; + + for (i = 0, n = old.length; i < n; ++i) { + cel = old[i]; + if (!testFn(cel)) { + keepers.push(cel); + } + } + } +}); + + +Ext.define('Ext.util.Renderable', { + + + + + frameCls: Ext.baseCSSPrefix + 'frame', + + frameIdRegex: /[\-]frame\d+[TMB][LCR]$/, + + frameElNames: ['TL','TC','TR','ML','MC','MR','BL','BC','BR'], + + frameTpl: [ + '{%this.renderDockedItems(out,values,0);%}', + '', + '
{parent.baseCls}-{parent.ui}-{.}-tl{frameElCls}" role="presentation">', + '
{parent.baseCls}-{parent.ui}-{.}-tr{frameElCls}" role="presentation">', + '
{parent.baseCls}-{parent.ui}-{.}-tc{frameElCls}" role="presentation">
', + '
', + '
', + '
', + '
{parent.baseCls}-{parent.ui}-{.}-ml{frameElCls}" role="presentation">', + '
{parent.baseCls}-{parent.ui}-{.}-mr{frameElCls}" role="presentation">', + '
{parent.baseCls}-{parent.ui}-{.}-mc{frameElCls}" role="presentation">', + '{%this.applyRenderTpl(out, values)%}', + '
', + '
', + '
', + '', + '
{parent.baseCls}-{parent.ui}-{.}-bl{frameElCls}" role="presentation">', + '
{parent.baseCls}-{parent.ui}-{.}-br{frameElCls}" role="presentation">', + '
{parent.baseCls}-{parent.ui}-{.}-bc{frameElCls}" role="presentation">
', + '
', + '
', + '
', + '{%this.renderDockedItems(out,values,1);%}' + ], + + frameTableTpl: [ + '{%this.renderDockedItems(out,values,0);%}', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '
{parent.baseCls}-{parent.ui}-{.}-tl{frameElCls}" role="presentation"> {parent.baseCls}-{parent.ui}-{.}-tc{frameElCls}" role="presentation"> {parent.baseCls}-{parent.ui}-{.}-tr{frameElCls}" role="presentation">
{parent.baseCls}-{parent.ui}-{.}-ml{frameElCls}" role="presentation"> {parent.baseCls}-{parent.ui}-{.}-mc{frameElCls}" role="presentation">', + '{%this.applyRenderTpl(out, values)%}', + ' {parent.baseCls}-{parent.ui}-{.}-mr{frameElCls}" role="presentation">
{parent.baseCls}-{parent.ui}-{.}-bl{frameElCls}" role="presentation"> {parent.baseCls}-{parent.ui}-{.}-bc{frameElCls}" role="presentation"> {parent.baseCls}-{parent.ui}-{.}-br{frameElCls}" role="presentation">
', + '{%this.renderDockedItems(out,values,1);%}' + ], + + + afterRender : function() { + var me = this, + data = {}, + protoEl = me.protoEl, + target = me.el, + item, pre, hide, contentEl; + + me.finishRenderChildren(); + + + + if (me.contentEl) { + pre = Ext.baseCSSPrefix; + hide = pre + 'hide-'; + contentEl = Ext.get(me.contentEl); + contentEl.removeCls([pre+'hidden', hide+'display', hide+'offsets', hide+'nosize']); + me.getContentTarget().appendChild(contentEl.dom); + } + + protoEl.writeTo(data); + + + + + item = data.removed; + if (item) { + target.removeCls(item); + } + + item = data.cls; + if (item.length) { + target.addCls(item); + } + + item = data.style; + if (data.style) { + target.setStyle(item); + } + + me.protoEl = null; + + + if (!me.ownerCt) { + me.updateLayout(); + } + }, + + afterFirstLayout : function(width, height) { + var me = this, + x = me.x, + y = me.y, + hasX, + hasY, + pos, xy; + + + + if (!me.ownerLayout) { + hasX = Ext.isDefined(x); + hasY = Ext.isDefined(y); + } + + + + if (me.floating && (!hasX || !hasY)) { + if (me.floatParent) { + pos = me.floatParent.getTargetEl().getViewRegion(); + xy = me.el.getAlignToXY(me.floatParent.getTargetEl(), 'c-c'); + pos.x = xy[0] - pos.x; + pos.y = xy[1] - pos.y; + } else { + xy = me.el.getAlignToXY(me.container, 'c-c'); + pos = me.container.translateXY(xy[0], xy[1]); + } + x = hasX ? x : pos.x; + y = hasY ? y : pos.y; + hasX = hasY = true; + } + + if (hasX || hasY) { + me.setPosition(x, y); + } + me.onBoxReady(width, height); + }, + + + applyRenderSelectors: function() { + var me = this, + selectors = me.renderSelectors, + el = me.el, + dom = el.dom, + selector; + + me.applyChildEls(el); + + + + + if (selectors) { + for (selector in selectors) { + if (selectors.hasOwnProperty(selector) && selectors[selector]) { + me[selector] = Ext.get(Ext.DomQuery.selectNode(selectors[selector], dom)); + } + } + } + }, + + beforeRender: function () { + var me = this, + target = me.getTargetEl(), + overflowEl = me.getOverflowEl(), + layout = me.getComponentLayout(), + + overflowStyle = me.getOverflowStyle(); + + + me.frame = me.frame || me.alwaysFramed; + + if (!layout.initialized) { + layout.initLayout(); + } + + + + if (overflowEl) { + overflowEl.setStyle(overflowStyle); + me.overflowStyleSet = true; + } + + me.setUI(me.ui); + + if (me.disabled) { + + me.disable(true); + } + }, + + + doApplyRenderTpl: function(out, values) { + + + + var me = values.$comp, + tpl; + + + if (!me.rendered) { + tpl = me.initRenderTpl(); + tpl.applyOut(values.renderData, out); + } + }, + + + doAutoRender: function() { + var me = this; + if (!me.rendered) { + if (me.floating) { + me.render(document.body); + } else { + me.render(Ext.isBoolean(me.autoRender) ? Ext.getBody() : me.autoRender); + } + } + }, + + doRenderContent: function (out, renderData) { + + + + var me = renderData.$comp; + + if (me.html) { + Ext.DomHelper.generateMarkup(me.html, out); + delete me.html; + } + + if (me.tpl) { + + if (!me.tpl.isTemplate) { + me.tpl = new Ext.XTemplate(me.tpl); + } + + if (me.data) { + + me.tpl.applyOut(me.data, out); + delete me.data; + } + } + }, + + doRenderFramingDockedItems: function (out, renderData, after) { + + + + var me = renderData.$comp; + + + + if (!me.rendered && me.doRenderDockedItems) { + + + renderData.renderData.$skipDockedItems = true; + + + + me.doRenderDockedItems.call(this, out, renderData, after); + } + }, + + + finishRender: function(containerIdx) { + var me = this, + tpl, data, el; + + + + + + + + + + if (!me.el || me.$pid) { + if (me.container) { + el = me.container.getById(me.id, true); + } else { + el = Ext.getDom(me.id); + } + + if (!me.el) { + + me.wrapPrimaryEl(el); + } else { + + + delete me.$pid; + + if (!me.el.dom) { + + me.wrapPrimaryEl(me.el); + } + el.parentNode.insertBefore(me.el.dom, el); + Ext.removeNode(el); + + } + } else if (!me.rendering) { + + + + tpl = me.initRenderTpl(); + if (tpl) { + data = me.initRenderData(); + tpl.insertFirst(me.getTargetEl(), data); + } + } + + + if (!me.container) { + + me.container = Ext.get(me.el.dom.parentNode); + } + + if (me.ctCls) { + me.container.addCls(me.ctCls); + } + + + me.onRender(me.container, containerIdx); + + + if (!me.overflowStyleSet) { + me.getOverflowEl().setStyle(me.getOverflowStyle()); + } + + + + me.el.setVisibilityMode(Ext.Element[me.hideMode.toUpperCase()]); + + if (me.overCls) { + me.el.hover(me.addOverCls, me.removeOverCls, me); + } + + if (me.hasListeners.render) { + me.fireEvent('render', me); + } + + me.afterRender(); + if (me.hasListeners.afterrender) { + me.fireEvent('afterrender', me); + } + me.initEvents(); + + if (me.hidden) { + + + + me.el.hide(); + } + }, + + finishRenderChildren: function () { + var layout = this.getComponentLayout(); + + layout.finishRender(); + }, + + getElConfig : function() { + var me = this, + autoEl = me.autoEl, + frameInfo = me.getFrameInfo(), + config = { + tag: 'div', + tpl: frameInfo ? me.initFramingTpl(frameInfo.table) : me.initRenderTpl() + }, + protoEl = me.protoEl, + i, frameElNames, len, suffix, frameGenId, frameData; + + me.initStyles(protoEl); + protoEl.writeTo(config); + protoEl.flush(); + + if (Ext.isString(autoEl)) { + config.tag = autoEl; + } else { + Ext.apply(config, autoEl); + } + + + config.id = me.id; + + if (config.tpl) { + + if (frameInfo) { + frameElNames = me.frameElNames; + len = frameElNames.length; + + config.tplData = frameData = me.getFrameRenderData(); + frameData.renderData = me.initRenderData(); + frameGenId = frameData.fgid; + + + for (i = 0; i < len; i++) { + suffix = frameElNames[i]; + me.addChildEls({ name: 'frame' + suffix, id: frameGenId + suffix }); + } + + + me.addChildEls({ + name: 'frameBody', + id: frameGenId + 'MC' + }); + } else { + config.tplData = me.initRenderData(); + } + } + + return config; + }, + + + + initFramingTpl: function(table) { + var tpl = this.getFrameTpl(table); + + if (tpl && !tpl.applyRenderTpl) { + this.setupFramingTpl(tpl); + } + + return tpl; + }, + + + setupFramingTpl: function(frameTpl) { + frameTpl.applyRenderTpl = this.doApplyRenderTpl; + frameTpl.renderDockedItems = this.doRenderFramingDockedItems; + }, + + + getInsertPosition: function(position) { + + if (position !== undefined) { + if (Ext.isNumber(position)) { + position = this.container.dom.childNodes[position]; + } + else { + position = Ext.getDom(position); + } + } + + return position; + }, + + getRenderTree: function() { + var me = this; + + if (!me.hasListeners.beforerender || me.fireEvent('beforerender', me) !== false) { + me.beforeRender(); + + + + me.rendering = true; + + if (me.el) { + + + + return { + tag: 'div', + id: (me.$pid = Ext.id()) + }; + } + + return me.getElConfig(); + } + + return null; + }, + + initContainer: function(container) { + var me = this; + + + + + if (!container && me.el) { + container = me.el.dom.parentNode; + me.allowDomMove = false; + } + me.container = container.dom ? container : Ext.get(container); + + return me.container; + }, + + + initRenderData: function() { + var me = this; + + return Ext.apply({ + $comp: me, + id: me.id, + ui: me.ui, + uiCls: me.uiCls, + baseCls: me.baseCls, + componentCls: me.componentCls, + frame: me.frame, + childElCls: '' + }, me.renderData); + }, + + + initRenderTpl: function() { + var tpl = this.getTpl('renderTpl'); + + if (tpl && !tpl.renderContent) { + this.setupRenderTpl(tpl); + } + + return tpl; + }, + + + onRender: function(parentNode, containerIdx) { + var me = this, + x = me.x, + y = me.y, + lastBox = null, + width, height, + el = me.el; + + me.applyRenderSelectors(); + + + + me.rendering = null; + + me.rendered = true; + + + if (x != null) { + lastBox = {x:x}; + } + if (y != null) { + (lastBox = lastBox || {}).y = y; + } + + + + if (!me.getFrameInfo() && Ext.isBorderBox) { + width = me.width; + height = me.height; + + if (typeof width === 'number') { + lastBox = lastBox || {}; + lastBox.width = width; + } + if (typeof height === 'number') { + lastBox = lastBox || {}; + lastBox.height = height; + } + } + + me.lastBox = el.lastBox = lastBox; + }, + + + render: function(container, position) { + var me = this, + el = me.el && (me.el = Ext.get(me.el)), + vetoed, + tree, + nextSibling; + + Ext.suspendLayouts(); + + container = me.initContainer(container); + + nextSibling = me.getInsertPosition(position); + + if (!el) { + tree = me.getRenderTree(); + if (me.ownerLayout && me.ownerLayout.transformItemRenderTree) { + tree = me.ownerLayout.transformItemRenderTree(tree); + } + + + if (tree) { + if (nextSibling) { + el = Ext.DomHelper.insertBefore(nextSibling, tree); + } else { + el = Ext.DomHelper.append(container, tree); + } + + me.wrapPrimaryEl(el); + } + } else { + if (!me.hasListeners.beforerender || me.fireEvent('beforerender', me) !== false) { + me.beforeRender(); + + me.initStyles(el); + if (me.allowDomMove !== false) { + if (nextSibling) { + container.dom.insertBefore(el.dom, nextSibling); + } else { + container.dom.appendChild(el.dom); + } + } + } else { + vetoed = true; + } + } + + if (el && !vetoed) { + me.finishRender(position); + } + + Ext.resumeLayouts(!me.hidden && !container.isDetachedBody); + }, + + + ensureAttachedToBody: function (runLayout) { + var comp = this, + body; + + while (comp.ownerCt) { + comp = comp.ownerCt; + } + + if (comp.container.isDetachedBody) { + comp.container = body = Ext.getBody(); + body.appendChild(comp.el.dom); + if (runLayout) { + comp.updateLayout(); + } + if (typeof comp.x == 'number' || typeof comp.y == 'number') { + comp.setPosition(comp.x, comp.y); + } + } + }, + + setupRenderTpl: function (renderTpl) { + renderTpl.renderBody = renderTpl.renderContent = this.doRenderContent; + }, + + wrapPrimaryEl: function (dom) { + this.el = Ext.get(dom, true); + }, + + + initFrame : function() { + if (Ext.supports.CSS3BorderRadius || !this.frame) { + return; + } + + var me = this, + frameInfo = me.getFrameInfo(), + frameTpl, frameGenId, + frameElNames = me.frameElNames, + len = frameElNames.length, + i, frameData, suffix; + + if (frameInfo) { + frameTpl = me.getFrameTpl(frameInfo.table); + frameData = me.getFrameRenderData(); + frameGenId = frameData.fgid; + + + + frameTpl.insertFirst(me.el, frameData); + + + + me.frameBody = me.el.down('.' + me.frameCls + '-mc'); + + + me.removeChildEls(function (c) { + return c.id && me.frameIdRegex.test(c.id); + }); + + + for (i = 0; i < len; i++) { + suffix = frameElNames[i]; + me['frame' + suffix] = me.el.getById(frameGenId + suffix); + } + } + }, + + getFrameRenderData: function () { + var me = this, + + frameInfo = me.frameSize, + frameGenId = (me.frameGenId || 0) + 1; + + + + me.frameGenId = frameGenId; + + return { + $comp: me, + fgid: me.id + '-frame' + frameGenId, + ui: me.ui, + uiCls: me.uiCls, + frameCls: me.frameCls, + baseCls: me.baseCls, + top: !!frameInfo.top, + left: !!frameInfo.left, + right: !!frameInfo.right, + bottom: !!frameInfo.bottom, + + + frameElCls: '' + }; + }, + + updateFrame: function() { + if (Ext.supports.CSS3BorderRadius || !this.frame) { + return; + } + + var me = this, + wasTable = me.frameSize && me.frameSize.table, + oldFrameTL = me.frameTL, + oldFrameBL = me.frameBL, + oldFrameML = me.frameML, + oldFrameMC = me.frameMC, + newMCClassName; + + me.initFrame(); + + if (oldFrameMC) { + if (me.frame) { + + + newMCClassName = me.frameMC.dom.className; + + + + oldFrameMC.insertAfter(me.frameMC); + me.frameMC.remove(); + + + me.frameBody = me.frameMC = oldFrameMC; + + + oldFrameMC.dom.className = newMCClassName; + + + if (wasTable) { + me.el.query('> table')[1].remove(); + } + else { + if (oldFrameTL) { + oldFrameTL.remove(); + } + if (oldFrameBL) { + oldFrameBL.remove(); + } + if (oldFrameML) { + oldFrameML.remove(); + } + } + } + } + else if (me.frame) { + me.applyRenderSelectors(); + } + }, + + + getFrameInfo: function() { + + if (Ext.supports.CSS3BorderRadius || !this.frame) { + return false; + } + + var me = this, + frameInfoCache = me.frameInfoCache, + cls = me.getFramingInfoCls() + '-frameInfo', + frameInfo = frameInfoCache[cls], + max = Math.max, + styleEl, match, info, frameTop, frameRight, frameBottom, frameLeft, + borderWidthT, borderWidthR, borderWidthB, borderWidthL, + paddingT, paddingR, paddingB, paddingL, + borderRadiusTL, borderRadiusTR, borderRadiusBR, borderRadiusBL; + + if (frameInfo == null) { + + styleEl = Ext.fly(me.getStyleProxy(cls), 'frame-style-el'); + info = styleEl.getStyle('font-family'); + + if (info) { + + + + + + + + + + + + + + + + + + info = info.split('-'); + + borderRadiusTL = parseInt(info[1], 10); + borderRadiusTR = parseInt(info[2], 10); + borderRadiusBR = parseInt(info[3], 10); + borderRadiusBL = parseInt(info[4], 10); + borderWidthT = parseInt(info[5], 10); + borderWidthR = parseInt(info[6], 10); + borderWidthB = parseInt(info[7], 10); + borderWidthL = parseInt(info[8], 10); + paddingT = parseInt(info[9], 10); + paddingR = parseInt(info[10], 10); + paddingB = parseInt(info[11], 10); + paddingL = parseInt(info[12], 10); + + + + frameTop = max(borderWidthT, max(borderRadiusTL, borderRadiusTR)); + frameRight = max(borderWidthR, max(borderRadiusTR, borderRadiusBR)); + frameBottom = max(borderWidthB, max(borderRadiusBL, borderRadiusBR)); + frameLeft = max(borderWidthL, max(borderRadiusTL, borderRadiusBL)); + + frameInfo = { + table: info[0].charAt(0) === 't', + vertical: info[0].charAt(1) === 'v', + + top: frameTop, + right: frameRight, + bottom: frameBottom, + left: frameLeft, + + width: frameLeft + frameRight, + height: frameTop + frameBottom, + + maxWidth: max(frameTop, frameRight, frameBottom, frameLeft), + + border: { + top: borderWidthT, + right: borderWidthR, + bottom: borderWidthB, + left: borderWidthL, + width: borderWidthL + borderWidthR, + height: borderWidthT + borderWidthB + }, + padding: { + top: paddingT, + right: paddingR, + bottom: paddingB, + left: paddingL, + width: paddingL + paddingR, + height: paddingT + paddingB + }, + radius: { + tl: borderRadiusTL, + tr: borderRadiusTR, + br: borderRadiusBR, + bl: borderRadiusBL + } + }; + } else { + frameInfo = false; + } + + + frameInfoCache[cls] = frameInfo; + } + + me.frame = !!frameInfo; + me.frameSize = frameInfo; + + return frameInfo; + }, + + getFramingInfoCls: function(){ + return this.baseCls + '-' + this.ui; + }, + + + getStyleProxy: function(cls) { + var result = this.styleProxyEl || (Ext.AbstractComponent.prototype.styleProxyEl = Ext.getBody().createChild({ + style: { + position: 'absolute', + top: '-10000px' + } + }, null, true)); + + result.className = cls; + return result; + }, + + + getFrameTpl : function(table) { + return this.getTpl(table ? 'frameTableTpl' : 'frameTpl'); + }, + + + frameInfoCache: {} +}); + + +Ext.define('Ext.state.Provider', { + mixins: { + observable: Ext.util.Observable + }, + + + prefix: 'ext-', + + constructor : function(config){ + config = config || {}; + var me = this; + Ext.apply(me, config); + + me.addEvents("statechange"); + me.state = {}; + me.mixins.observable.constructor.call(me); + }, + + + get : function(name, defaultValue){ + return typeof this.state[name] == "undefined" ? + defaultValue : this.state[name]; + }, + + + clear : function(name){ + var me = this; + delete me.state[name]; + me.fireEvent("statechange", me, name, null); + }, + + + set : function(name, value){ + var me = this; + me.state[name] = value; + me.fireEvent("statechange", me, name, value); + }, + + + decodeValue : function(value){ + + + + + + + + + + var me = this, + re = /^(a|n|d|b|s|o|e)\:(.*)$/, + matches = re.exec(unescape(value)), + all, + type, + keyValue, + values, + vLen, + v; + + if(!matches || !matches[1]){ + return; + } + + type = matches[1]; + value = matches[2]; + switch (type) { + case 'e': + return null; + case 'n': + return parseFloat(value); + case 'd': + return new Date(Date.parse(value)); + case 'b': + return (value == '1'); + case 'a': + all = []; + if(value != ''){ + values = value.split('^'); + vLen = values.length; + + for (v = 0; v < vLen; v++) { + value = values[v]; + all.push(me.decodeValue(value)); + } + } + return all; + case 'o': + all = {}; + if(value != ''){ + values = value.split('^'); + vLen = values.length; + + for (v = 0; v < vLen; v++) { + value = values[v]; + keyValue = value.split('='); + all[keyValue[0]] = me.decodeValue(keyValue[1]); + } + } + return all; + default: + return value; + } + }, + + + encodeValue : function(value){ + var flat = '', + i = 0, + enc, + len, + key; + + if (value == null) { + return 'e:1'; + } else if(typeof value == 'number') { + enc = 'n:' + value; + } else if(typeof value == 'boolean') { + enc = 'b:' + (value ? '1' : '0'); + } else if(Ext.isDate(value)) { + enc = 'd:' + value.toGMTString(); + } else if(Ext.isArray(value)) { + for (len = value.length; i < len; i++) { + flat += this.encodeValue(value[i]); + if (i != len - 1) { + flat += '^'; + } + } + enc = 'a:' + flat; + } else if (typeof value == 'object') { + for (key in value) { + if (typeof value[key] != 'function' && value[key] !== undefined) { + flat += key + '=' + this.encodeValue(value[key]) + '^'; + } + } + enc = 'o:' + flat.substring(0, flat.length-1); + } else { + enc = 's:' + value; + } + return escape(enc); + } +}); + + +Ext.define('Ext.state.Manager', { + singleton: true, + + constructor: function() { + this.provider = new Ext.state.Provider(); + }, + + + + setProvider : function(stateProvider){ + this.provider = stateProvider; + }, + + + get : function(key, defaultValue){ + return this.provider.get(key, defaultValue); + }, + + + set : function(key, value){ + this.provider.set(key, value); + }, + + + clear : function(key){ + this.provider.clear(key); + }, + + + getProvider : function(){ + return this.provider; + } +}); + + +Ext.define('Ext.state.Stateful', { + + + + mixins: { + observable: Ext.util.Observable + }, + + + + + + + stateful: false, + + + + + + + saveDelay: 100, + + constructor: function(config) { + var me = this; + + config = config || {}; + if (config.stateful !== undefined) { + me.stateful = config.stateful; + } + if (config.saveDelay !== undefined) { + me.saveDelay = config.saveDelay; + } + me.stateId = me.stateId || config.stateId; + + if (!me.stateEvents) { + me.stateEvents = []; + } + if (config.stateEvents) { + me.stateEvents.concat(config.stateEvents); + } + this.addEvents( + + 'beforestaterestore', + + + 'staterestore', + + + 'beforestatesave', + + + 'statesave' + ); + me.mixins.observable.constructor.call(me); + + if (me.stateful !== false) { + me.addStateEvents(me.stateEvents); + me.initState(); + } + }, + + + addStateEvents: function (events) { + var me = this, + i, event, stateEventsByName; + + if (me.stateful && me.getStateId()) { + if (typeof events == 'string') { + events = Array.prototype.slice.call(arguments, 0); + } + + stateEventsByName = me.stateEventsByName || (me.stateEventsByName = {}); + + for (i = events.length; i--; ) { + event = events[i]; + + if (!stateEventsByName[event]) { + stateEventsByName[event] = 1; + me.on(event, me.onStateChange, me); + } + } + } + }, + + + onStateChange: function(){ + var me = this, + delay = me.saveDelay, + statics, runner; + + if (!me.stateful) { + return; + } + + if (delay) { + if (!me.stateTask) { + statics = Ext.state.Stateful; + runner = statics.runner || (statics.runner = new Ext.util.TaskRunner()); + + me.stateTask = runner.newTask({ + run: me.saveState, + scope: me, + interval: delay, + repeat: 1 + }); + } + + me.stateTask.start(); + } else { + me.saveState(); + } + }, + + + saveState: function() { + var me = this, + id = me.stateful && me.getStateId(), + hasListeners = me.hasListeners, + state; + + if (id) { + state = me.getState() || {}; + if (!hasListeners.beforestatesave || me.fireEvent('beforestatesave', me, state) !== false) { + Ext.state.Manager.set(id, state); + if (hasListeners.statesave) { + me.fireEvent('statesave', me, state); + } + } + } + }, + + + getState: function(){ + return null; + }, + + + applyState: function(state) { + if (state) { + Ext.apply(this, state); + } + }, + + + getStateId: function() { + var me = this; + return me.stateId || (me.autoGenId ? null : me.id); + }, + + + initState: function(){ + var me = this, + id = me.stateful && me.getStateId(), + hasListeners = me.hasListeners, + state; + + if (id) { + state = Ext.state.Manager.get(id); + if (state) { + state = Ext.apply({}, state); + if (!hasListeners.beforestaterestore || me.fireEvent('beforestaterestore', me, state) !== false) { + me.applyState(state); + if (hasListeners.staterestore) { + me.fireEvent('staterestore', me, state); + } + } + } + } + }, + + + savePropToState: function (propName, state, stateName) { + var me = this, + value = me[propName], + config = me.initialConfig; + + if (me.hasOwnProperty(propName)) { + if (!config || config[propName] !== value) { + if (state) { + state[stateName || propName] = value; + } + return true; + } + } + return false; + }, + + + savePropsToState: function (propNames, state) { + var me = this, + i, n; + + if (typeof propNames == 'string') { + me.savePropToState(propNames, state); + } else { + for (i = 0, n = propNames.length; i < n; ++i) { + me.savePropToState(propNames[i], state); + } + } + + return state; + }, + + + destroy: function(){ + var me = this, + task = me.stateTask; + + if (task) { + task.destroy(); + me.stateTask = null; + } + + me.clearListeners(); + } +}); + + + +Ext.define('Ext.AbstractComponent', { + + + + + + + + + + + mixins: { + positionable: Ext.util.Positionable , + observable: Ext.util.Observable , + animate: Ext.util.Animate , + elementCt: Ext.util.ElementContainer , + renderable: Ext.util.Renderable , + state: Ext.state.Stateful + }, + + + + + + + + + + + + + + + + + + statics: { + AUTO_ID: 1000, + + pendingLayouts: null, + + layoutSuspendCount: 0, + + + cancelLayout: function(comp, isDestroying) { + var context = this.runningLayoutContext || this.pendingLayouts; + + if (context) { + context.cancelComponent(comp, false, isDestroying); + } + }, + + + flushLayouts: function () { + var me = this, + context = me.pendingLayouts; + + if (context && context.invalidQueue.length) { + me.pendingLayouts = null; + me.runningLayoutContext = context; + + Ext.override(context, { + runComplete: function () { + + + + me.runningLayoutContext = null; + + var result = this.callParent(); + if (Ext.globalEvents.hasListeners.afterlayout) { + Ext.globalEvents.fireEvent('afterlayout'); + } + return result; + } + }); + + context.run(); + } + }, + + + resumeLayouts: function (flush) { + if (this.layoutSuspendCount && ! --this.layoutSuspendCount) { + if (flush) { + this.flushLayouts(); + } + if (Ext.globalEvents.hasListeners.resumelayouts) { + Ext.globalEvents.fireEvent('resumelayouts'); + } + } + }, + + + suspendLayouts: function () { + ++this.layoutSuspendCount; + }, + + + updateLayout: function (comp, defer) { + var me = this, + running = me.runningLayoutContext, + pending; + + if (running) { + running.queueInvalidate(comp); + } else { + pending = me.pendingLayouts || (me.pendingLayouts = new Ext.layout.Context()); + pending.queueInvalidate(comp); + + if (!defer && !me.layoutSuspendCount && !comp.isLayoutSuspended()) { + me.flushLayouts(); + } + } + } + }, + + + + + isComponent: true, + + + getAutoId: function() { + this.autoGenId = true; + return ++Ext.AbstractComponent.AUTO_ID; + }, + + deferLayouts: false, + + + + + autoGenId: false, + + + + + + + + + renderTpl: '{%this.renderContent(out,values)%}', + + + + + + + + + + + + + frameSize: null, + + + + + + + + + + + tplWriteMode: 'overwrite', + + + baseCls: Ext.baseCSSPrefix + 'component', + + + + + + + + + disabledCls: Ext.baseCSSPrefix + 'item-disabled', + + + ui: 'default', + + + uiCls: [], + + + + + + + + + + + + + + + hidden: false, + + + disabled: false, + + + + + draggable: false, + + + floating: false, + + + hideMode: 'display', + + + + + + + + + + + + + + + + autoShow: false, + + + autoRender: false, + + + allowDomMove: true, + + + + + rendered: false, + + + componentLayoutCounter: 0, + + + shrinkWrap: 2, + + weight: 0, + + + maskOnDisable: true, + + + _isLayoutRoot: false, + + + contentPaddingProperty: 'padding', + + horizontalPosProp: 'left', + + + borderBoxCls: Ext.baseCSSPrefix + 'border-box', + + + constructor : function(config) { + var me = this, + i, len, xhooks; + + if (config) { + Ext.apply(me, config); + + xhooks = me.xhooks; + if (xhooks) { + delete me.xhooks; + Ext.override(me, xhooks); + } + } else { + config = {}; + } + + me.initialConfig = config; + + me.mixins.elementCt.constructor.call(me); + + me.addEvents( + + 'beforeactivate', + + 'activate', + + 'beforedeactivate', + + 'deactivate', + + 'added', + + 'disable', + + 'enable', + + 'beforeshow', + + 'show', + + 'beforehide', + + 'hide', + + 'removed', + + 'beforerender', + + 'render', + + 'afterrender', + + 'boxready', + + 'beforedestroy', + + 'destroy', + + 'resize', + + 'move', + + 'focus', + + 'blur' + ); + + me.getId(); + + me.setupProtoEl(); + + + + if (me.cls) { + me.initialCls = me.cls; + me.protoEl.addCls(me.cls); + } + if (me.style) { + me.initialStyle = me.style; + me.protoEl.setStyle(me.style); + } + + me.renderData = me.renderData || {}; + me.renderSelectors = me.renderSelectors || {}; + + if (me.plugins) { + me.plugins = me.constructPlugins(); + } + + + if (!me.hasListeners) { + me.hasListeners = new me.HasListeners(); + } + + me.initComponent(); + + + Ext.ComponentManager.register(me); + + + me.mixins.observable.constructor.call(me); + me.mixins.state.constructor.call(me, config); + + + this.addStateEvents('resize'); + + + if (me.plugins) { + for (i = 0, len = me.plugins.length; i < len; i++) { + me.plugins[i] = me.initPlugin(me.plugins[i]); + } + } + + me.loader = me.getLoader(); + + if (me.renderTo) { + me.render(me.renderTo); + + + + } + + + + if (me.autoShow && !me.isContained) { + me.show(); + } + + }, + + initComponent: function () { + + + this.plugins = this.constructPlugins(); + + + + this.setSize(this.width, this.height); + }, + + + getState: function() { + var me = this, + state = null, + sizeModel = me.getSizeModel(); + + if (sizeModel.width.configured) { + state = me.addPropertyToState(state, 'width'); + } + if (sizeModel.height.configured) { + state = me.addPropertyToState(state, 'height'); + } + + return state; + }, + + + addPropertyToState: function (state, propName, value) { + var me = this, + len = arguments.length; + + + + if (len == 3 || me.hasOwnProperty(propName)) { + if (len < 3) { + value = me[propName]; + } + + + + if (value !== me.initialConfig[propName]) { + (state || (state = {}))[propName] = value; + } + } + + return state; + }, + + show: Ext.emptyFn, + + animate: function(animObj) { + var me = this, + hasToWidth, + hasToHeight, + toHeight, + toWidth, + to, + clearWidth, + clearHeight, + curWidth, w, curHeight, h, isExpanding, + wasConstrained, + wasConstrainedHeader, + passedCallback, + oldOverflow; + + animObj = animObj || {}; + to = animObj.to || {}; + + if (Ext.fx.Manager.hasFxBlock(me.id)) { + return me; + } + + hasToWidth = Ext.isDefined(to.width); + if (hasToWidth) { + toWidth = Ext.Number.constrain(to.width, me.minWidth, me.maxWidth); + } + + hasToHeight = Ext.isDefined(to.height); + if (hasToHeight) { + toHeight = Ext.Number.constrain(to.height, me.minHeight, me.maxHeight); + } + + + if (!animObj.dynamic && (hasToWidth || hasToHeight)) { + curWidth = (animObj.from ? animObj.from.width : undefined) || me.getWidth(); + w = curWidth; + curHeight = (animObj.from ? animObj.from.height : undefined) || me.getHeight(); + h = curHeight; + isExpanding = false; + + if (hasToHeight && toHeight > curHeight) { + h = toHeight; + isExpanding = true; + } + if (hasToWidth && toWidth > curWidth) { + w = toWidth; + isExpanding = true; + } + + + if (hasToHeight || hasToWidth) { + oldOverflow = me.el.getStyle('overtflow'); + if (oldOverflow !== 'hidden') { + me.el.setStyle('overflow', 'hidden'); + } + } + + + + + if (isExpanding) { + clearWidth = !Ext.isNumber(me.width); + clearHeight = !Ext.isNumber(me.height); + + + + + me.setSize(w, h); + me.el.setSize(curWidth, curHeight); + + if (clearWidth) { + delete me.width; + } + if (clearHeight) { + delete me.height; + } + } + if (hasToWidth) { + to.width = toWidth; + } + + if (hasToHeight) { + to.height = toHeight; + } + } + + + + wasConstrained = me.constrain; + wasConstrainedHeader = me.constrainHeader; + if (wasConstrained || wasConstrainedHeader) { + me.constrain = me.constrainHeader = false; + passedCallback = animObj.callback; + animObj.callback = function() { + me.constrain = wasConstrained; + me.constrainHeader = wasConstrainedHeader; + + if (passedCallback) { + passedCallback.call(animObj.scope||me, arguments); + } + if (oldOverflow !== 'hidden') { + me.el.setStyle('overflow', oldOverflow); + } + }; + } + return me.mixins.animate.animate.apply(me, arguments); + }, + + setHiddenState: function(hidden){ + var hierarchyState = this.getHierarchyState(); + + this.hidden = hidden; + if (hidden) { + hierarchyState.hidden = true; + } else { + delete hierarchyState.hidden; + } + }, + + onHide: function() { + + if (this.ownerLayout) { + this.updateLayout({ isRoot: false }); + } + }, + + onShow : function() { + this.updateLayout({ isRoot: false }); + }, + + + constructPlugin: function(plugin) { + var me = this; + + + if (typeof plugin == 'string') { + plugin = Ext.PluginManager.create({}, plugin, me); + } + + else { + plugin = Ext.PluginManager.create(plugin, null, me); + } + return plugin; + }, + + + constructPlugins: function() { + var me = this, + plugins = me.plugins, + result, i, len; + + if (plugins) { + result = []; + if (!Ext.isArray(plugins)) { + plugins = [ plugins ]; + } + for (i = 0, len = plugins.length; i < len; i++) { + + result[i] = me.constructPlugin(plugins[i]); + } + } + + me.pluginsInitialized = true; + return result; + }, + + + initPlugin : function(plugin) { + plugin.init(this); + + return plugin; + }, + + + + addPlugin: function(plugin) { + var me = this; + + plugin = me.constructPlugin(plugin); + if (me.plugins) { + me.plugins.push(plugin); + } else { + me.plugins = [ plugin ]; + } + if (me.pluginsInitialized) { + me.initPlugin(plugin); + } + return plugin; + }, + + removePlugin: function(plugin) { + Ext.Array.remove(this.plugins, plugin); + plugin.destroy(); + }, + + + findPlugin: function(ptype) { + var i, + plugins = this.plugins, + ln = plugins && plugins.length; + for (i = 0; i < ln; i++) { + if (plugins[i].ptype === ptype) { + return plugins[i]; + } + } + }, + + + getPlugin: function(pluginId) { + var i, + plugins = this.plugins, + ln = plugins && plugins.length; + for (i = 0; i < ln; i++) { + if (plugins[i].pluginId === pluginId) { + return plugins[i]; + } + } + }, + + + beforeLayout: Ext.emptyFn, + + + updateAria: Ext.emptyFn, + + + registerFloatingItem: function(cmp) { + var me = this; + if (!me.floatingDescendants) { + me.floatingDescendants = new Ext.ZIndexManager(me); + } + me.floatingDescendants.register(cmp); + }, + + unregisterFloatingItem: function(cmp) { + var me = this; + if (me.floatingDescendants) { + me.floatingDescendants.unregister(cmp); + } + }, + + layoutSuspendCount: 0, + + suspendLayouts: function () { + var me = this; + if (!me.rendered) { + return; + } + if (++me.layoutSuspendCount == 1) { + me.suspendLayout = true; + } + }, + + resumeLayouts: function (flushOptions) { + var me = this; + if (!me.rendered) { + return; + } + if (! --me.layoutSuspendCount) { + me.suspendLayout = false; + if (flushOptions && !me.isLayoutSuspended()) { + me.updateLayout(flushOptions); + } + } + }, + + setupProtoEl: function() { + var cls = this.initCls(); + + this.protoEl = new Ext.util.ProtoElement({ + cls: cls.join(' ') + }); + }, + + initCls: function() { + var me = this, + cls = [ me.baseCls, me.getComponentLayout().targetCls ]; + + if (Ext.isDefined(me.cmpCls)) { + if (Ext.isDefined(Ext.global.console)) { + Ext.global.console.warn('Ext.Component: cmpCls has been deprecated. Please use componentCls.'); + } + me.componentCls = me.cmpCls; + delete me.cmpCls; + } + + if (me.componentCls) { + cls.push(me.componentCls); + } else { + me.componentCls = me.baseCls; + } + + return cls; + }, + + + setUI: function(ui) { + var me = this, + uiCls = me.uiCls, + activeUI = me.activeUI, + classes; + + if (ui === activeUI) { + + return; + } + + + if (activeUI) { + classes = me.removeClsWithUI(uiCls, true); + + if (classes.length) { + me.removeCls(classes); + } + + + me.removeUIFromElement(); + } + else { + + me.uiCls = []; + } + + + me.ui = ui; + + + + me.activeUI = ui; + + + me.addUIToElement(); + + classes = me.addClsWithUI(uiCls, true); + + if (classes.length) { + me.addCls(classes); + } + + + + + if (me.rendered) { + me.updateLayout(); + } + }, + + + addClsWithUI: function(classes, skip) { + var me = this, + clsArray = [], + i = 0, + uiCls = me.uiCls = Ext.Array.clone(me.uiCls), + activeUI = me.activeUI, + length, + cls; + + if (typeof classes === "string") { + classes = (classes.indexOf(' ') < 0) ? [classes] : Ext.String.splitWords(classes); + } + + length = classes.length; + + for (; i < length; i++) { + cls = classes[i]; + + if (cls && !me.hasUICls(cls)) { + uiCls.push(cls); + + + if (activeUI) { + clsArray = clsArray.concat(me.addUIClsToElement(cls)); + } + } + } + + if (skip !== true && activeUI) { + me.addCls(clsArray); + } + + return clsArray; + }, + + + removeClsWithUI: function(classes, skip) { + var me = this, + clsArray = [], + i = 0, + extArray = Ext.Array, + remove = extArray.remove, + uiCls = me.uiCls = extArray.clone(me.uiCls), + activeUI = me.activeUI, + length, cls; + + if (typeof classes === "string") { + classes = (classes.indexOf(' ') < 0) ? [classes] : Ext.String.splitWords(classes); + } + + length = classes.length; + + for (i = 0; i < length; i++) { + cls = classes[i]; + + if (cls && me.hasUICls(cls)) { + remove(uiCls, cls); + + + if (activeUI) { + clsArray = clsArray.concat(me.removeUIClsFromElement(cls)); + } + } + } + + if (skip !== true && activeUI) { + me.removeCls(clsArray); + } + + return clsArray; + }, + + + hasUICls: function(cls) { + var me = this, + uiCls = me.uiCls || []; + + return Ext.Array.contains(uiCls, cls); + }, + + frameElementsArray: ['tl', 'tc', 'tr', 'ml', 'mc', 'mr', 'bl', 'bc', 'br'], + + + addUIClsToElement: function(cls) { + var me = this, + baseClsUi = me.baseCls + '-' + me.ui + '-' + cls, + result = [Ext.baseCSSPrefix + cls, me.baseCls + '-' + cls, baseClsUi], + frameElementsArray, frameElementsLength, i, el, frameElement; + + if (me.rendered && me.frame && !Ext.supports.CSS3BorderRadius) { + + frameElementsArray = me.frameElementsArray; + frameElementsLength = frameElementsArray.length; + + + for (i = 0; i < frameElementsLength; i++) { + frameElement = frameElementsArray[i]; + el = me['frame' + frameElement.toUpperCase()]; + + if (el) { + el.addCls(baseClsUi + '-' + frameElement); + } + } + } + + return result; + }, + + + removeUIClsFromElement: function(cls) { + var me = this, + baseClsUi = me.baseCls + '-' + me.ui + '-' + cls, + result = [Ext.baseCSSPrefix + cls, me.baseCls + '-' + cls, baseClsUi], + frameElementsArray, frameElementsLength, i, el, frameElement; + + if (me.rendered && me.frame && !Ext.supports.CSS3BorderRadius) { + + frameElementsArray = me.frameElementsArray; + frameElementsLength = frameElementsArray.length; + + + for (i = 0; i < frameElementsLength; i++) { + frameElement = frameElementsArray[i]; + el = me['frame' + frameElement.toUpperCase()]; + + if (el) { + el.removeCls(baseClsUi + '-' + frameElement); + } + } + } + + return result; + }, + + + addUIToElement: function() { + var me = this, + baseClsUI = me.baseCls + '-' + me.ui, + frameElementsArray, frameElementsLength, i, el, frameElement; + + me.addCls(baseClsUI); + + if (me.rendered && me.frame && !Ext.supports.CSS3BorderRadius) { + + frameElementsArray = me.frameElementsArray; + frameElementsLength = frameElementsArray.length; + + + for (i = 0; i < frameElementsLength; i++) { + frameElement = frameElementsArray[i]; + el = me['frame' + frameElement.toUpperCase()]; + + if (el) { + el.addCls(baseClsUI + '-' + frameElement); + } + } + } + }, + + + removeUIFromElement: function() { + var me = this, + baseClsUI = me.baseCls + '-' + me.ui, + frameElementsArray, frameElementsLength, i, el, frameElement; + + me.removeCls(baseClsUI); + + if (me.rendered && me.frame && !Ext.supports.CSS3BorderRadius) { + + frameElementsArray = me.frameElementsArray; + frameElementsLength = frameElementsArray.length; + + for (i = 0; i < frameElementsLength; i++) { + frameElement = frameElementsArray[i]; + el = me['frame' + frameElement.toUpperCase()]; + + if (el) { + el.removeCls(baseClsUI + '-' + frameElement); + } + } + } + }, + + + getTpl: function(name) { + return Ext.XTemplate.getTpl(this, name); + }, + + + initStyles: function(targetEl) { + var me = this, + Element = Ext.Element, + margin = me.margin, + border = me.border, + cls = me.cls, + style = me.style, + x = me.x, + y = me.y, + width, height; + + me.initPadding(targetEl); + + if (margin != null) { + targetEl.setStyle('margin', this.unitizeBox((margin === true) ? 5 : margin)); + } + + if (border != null) { + me.setBorder(border, targetEl); + } + + + + if (cls && cls != me.initialCls) { + targetEl.addCls(cls); + me.cls = me.initialCls = null; + } + if (style && style != me.initialStyle) { + targetEl.setStyle(style); + me.style = me.initialStyle = null; + } + + if (x != null) { + targetEl.setStyle(me.horizontalPosProp, (typeof x == 'number') ? (x + 'px') : x); + } + if (y != null) { + targetEl.setStyle('top', (typeof y == 'number') ? (y + 'px') : y); + } + + if (Ext.isBorderBox && (!me.ownerCt || me.floating)) { + targetEl.addCls(me.borderBoxCls); + } + + + + if (!me.getFrameInfo()) { + width = me.width; + height = me.height; + + + if (width != null) { + if (typeof width === 'number') { + if (Ext.isBorderBox) { + targetEl.setStyle('width', width + 'px'); + } + } else { + targetEl.setStyle('width', width); + } + } + if (height != null) { + if (typeof height === 'number') { + if (Ext.isBorderBox) { + targetEl.setStyle('height', height + 'px'); + } + } else { + targetEl.setStyle('height', height); + } + } + } + }, + + + initPadding: function(targetEl) { + var me = this, + padding = me.padding; + + if (padding != null) { + if (me.layout && me.layout.managePadding && me.contentPaddingProperty === 'padding') { + + + + + + targetEl.setStyle('padding', 0); + } else { + + + targetEl.setStyle('padding', this.unitizeBox((padding === true) ? 5 : padding)); + } + } + }, + + parseBox: function(box) { + return Ext.dom.Element.parseBox(box); + }, + + unitizeBox: function(box) { + return Ext.dom.Element.unitizeBox(box); + }, + + + setMargin: function(margin, preventLayout) { + var me = this; + + if (me.rendered) { + if (!margin && margin !== 0) { + margin = ''; + } else { + if (margin === true) { + margin = 5; + } + margin = this.unitizeBox(margin); + } + me.getTargetEl().setStyle('margin', margin); + if (!preventLayout) { + me.updateLayout(); + } + } else { + me.margin = margin; + } + }, + + + initEvents : function() { + var me = this, + afterRenderEvents = me.afterRenderEvents, + afterRenderEvent, el, property, index, len; + + if (afterRenderEvents) { + for (property in afterRenderEvents) { + el = me[property]; + + if (el && el.on) { + afterRenderEvent = afterRenderEvents[property]; + + for (index = 0, len = afterRenderEvent.length ; index < len ; ++index) { + me.mon(el, afterRenderEvent[index]); + } + } + } + } + + + + + me.addFocusListener(); + }, + + + addFocusListener: function() { + var me = this, + focusEl = me.getFocusEl(), + needsTabIndex; + + + + + + + + + + if (focusEl) { + + + if (focusEl.isComponent) { + return focusEl.addFocusListener(); + } + + + + + needsTabIndex = focusEl.needsTabIndex(); + if (!me.focusListenerAdded && (!needsTabIndex || Ext.FocusManager.enabled)) { + if (needsTabIndex) { + focusEl.dom.tabIndex = -1; + } + focusEl.on({ + focus: me.onFocus, + blur: me.onBlur, + scope: me + }); + me.focusListenerAdded = true; + } + } + }, + + + getFocusEl: Ext.emptyFn, + + isFocusable: function() { + var me = this, + focusEl; + if ((me.focusable !== false) && (focusEl = me.getFocusEl()) && me.rendered && !me.destroying && !me.isDestroyed && !me.disabled && me.isVisible(true)) { + + + + + return focusEl.isFocusable(true); + } + }, + + + beforeFocus: Ext.emptyFn, + + + onFocus: function(e) { + var me = this, + focusCls = me.focusCls, + focusEl = me.getFocusEl(); + + if (!me.disabled) { + me.beforeFocus(e); + if (focusCls && focusEl) { + focusEl.addCls(me.addClsWithUI(focusCls, true)); + } + if (!me.hasFocus) { + me.hasFocus = true; + me.fireEvent('focus', me, e); + } + } + }, + + + beforeBlur : Ext.emptyFn, + + + onBlur : function(e) { + var me = this, + focusCls = me.focusCls, + focusEl = me.getFocusEl(); + + if (me.destroying) { + return; + } + + me.beforeBlur(e); + if (focusCls && focusEl) { + focusEl.removeCls(me.removeClsWithUI(focusCls, true)); + } + if (me.validateOnBlur) { + me.validate(); + } + me.hasFocus = false; + me.fireEvent('blur', me, e); + me.postBlur(e); + }, + + + postBlur : Ext.emptyFn, + + + is: function(selector) { + return Ext.ComponentQuery.is(this, selector); + }, + + + up: function (selector, limit) { + var result = this.getRefOwner(), + limitSelector = typeof limit === 'string', + limitCount = typeof limit === 'number', + limitComponent = limit && limit.isComponent, + steps = 0; + + if (selector) { + for (; result; result = result.getRefOwner()) { + steps++; + if (selector.isComponent) { + if (result === selector) { + return result; + } + } else { + if (Ext.ComponentQuery.is(result, selector)) { + return result; + } + } + + + if (limitSelector && result.is(limit)) { + return; + } + if (limitCount && steps === limit) { + return; + } + if (limitComponent && result === limit) { + return; + } + } + } + return result; + }, + + + nextSibling: function(selector) { + var o = this.ownerCt, it, last, idx, c; + if (o) { + it = o.items; + idx = it.indexOf(this) + 1; + if (idx) { + if (selector) { + for (last = it.getCount(); idx < last; idx++) { + if ((c = it.getAt(idx)).is(selector)) { + return c; + } + } + } else { + if (idx < it.getCount()) { + return it.getAt(idx); + } + } + } + } + return null; + }, + + + previousSibling: function(selector) { + var o = this.ownerCt, it, idx, c; + if (o) { + it = o.items; + idx = it.indexOf(this); + if (idx != -1) { + if (selector) { + for (--idx; idx >= 0; idx--) { + if ((c = it.getAt(idx)).is(selector)) { + return c; + } + } + } else { + if (idx) { + return it.getAt(--idx); + } + } + } + } + return null; + }, + + + previousNode: function(selector, includeSelf) { + var node = this, + ownerCt = node.ownerCt, + result, + it, i, sib; + + + if (includeSelf && node.is(selector)) { + return node; + } + + if (ownerCt) { + for (it = ownerCt.items.items, i = Ext.Array.indexOf(it, node) - 1; i > -1; i--) { + sib = it[i]; + if (sib.query) { + result = sib.query(selector); + result = result[result.length - 1]; + if (result) { + return result; + } + } + if (sib.is(selector)) { + return sib; + } + } + return ownerCt.previousNode(selector, true); + } + return null; + }, + + + nextNode: function(selector, includeSelf) { + var node = this, + ownerCt = node.ownerCt, + result, + it, len, i, sib; + + + if (includeSelf && node.is(selector)) { + return node; + } + + if (ownerCt) { + for (it = ownerCt.items.items, i = Ext.Array.indexOf(it, node) + 1, len = it.length; i < len; i++) { + sib = it[i]; + if (sib.is(selector)) { + return sib; + } + if (sib.down) { + result = sib.down(selector); + if (result) { + return result; + } + } + } + return ownerCt.nextNode(selector); + } + return null; + }, + + + getId : function() { + return this.id || (this.id = 'ext-comp-' + (this.getAutoId())); + }, + + + getItemId : function() { + return this.itemId || this.id; + }, + + + getEl : function() { + return this.el; + }, + + + getTargetEl: function() { + return this.frameBody || this.el; + }, + + + getOverflowEl: function(){ + return this.getTargetEl(); + }, + + + getOverflowStyle: function() { + var me = this, + result = null, + ox, oy, + overflowStyle; + + + + + if (typeof me.autoScroll === 'boolean') { + result = { + overflow: overflowStyle = me.autoScroll ? 'auto' : '' + }; + me.scrollFlags = { + overflowX: overflowStyle, + overflowY: overflowStyle, + x: true, + y: true, + both: true + }; + } else { + ox = me.overflowX; + oy = me.overflowY; + if (ox !== undefined || oy !== undefined) { + result = { + 'overflowX': ox = ox || '', + 'overflowY': oy = oy || '' + }; + + + me.scrollFlags = { + overflowX: ox, + overflowY: oy, + x: ox = (ox === 'auto' || ox === 'scroll'), + y: oy = (oy === 'auto' || oy === 'scroll'), + both: ox && oy + }; + } else { + me.scrollFlags = { + overflowX: '', + overflowY: '', + x: false, + y: false, + both: false + }; + } + } + + + + if (result && Ext.isIE7m) { + result.position = 'relative'; + } + + return result; + }, + + + isXType: function(xtype, shallow) { + if (shallow) { + return this.xtype === xtype; + } + else { + return this.xtypesMap[xtype]; + } + }, + + + getXTypes: function() { + var self = this.self, + xtypes, parentPrototype, parentXtypes; + + if (!self.xtypes) { + xtypes = []; + parentPrototype = this; + + while (parentPrototype) { + parentXtypes = parentPrototype.xtypes; + + if (parentXtypes !== undefined) { + xtypes.unshift.apply(xtypes, parentXtypes); + } + + parentPrototype = parentPrototype.superclass; + } + + self.xtypeChain = xtypes; + self.xtypes = xtypes.join('/'); + } + + return self.xtypes; + }, + + + update : function(htmlOrData, loadScripts, cb) { + var me = this, + isData = (me.tpl && !Ext.isString(htmlOrData)), + el; + + if (isData) { + me.data = htmlOrData; + } else { + me.html = Ext.isObject(htmlOrData) ? Ext.DomHelper.markup(htmlOrData) : htmlOrData; + } + + if (me.rendered) { + el = me.isContainer ? me.layout.getRenderTarget() : me.getTargetEl(); + if (isData) { + me.tpl[me.tplWriteMode](el, htmlOrData || {}); + } else { + el.update(me.html, loadScripts, cb); + } + me.updateLayout(); + } + + }, + + + setVisible : function(visible) { + return this[visible ? 'show': 'hide'](); + }, + + + isVisible: function(deep) { + var me = this, + hidden; + + if (me.hidden || !me.rendered || me.isDestroyed) { + hidden = true; + } else if (deep) { + hidden = me.isHierarchicallyHidden(); + } + + return !hidden; + }, + + isHierarchicallyHidden: function() { + var child = this, + hidden = false, + parent, parentHierarchyState; + + + + + + for (; (parent = child.ownerCt || child.floatParent); child = parent) { + parentHierarchyState = parent.getHierarchyState(); + if (parentHierarchyState.hidden) { + hidden = true; + break; + } + if (child.getHierarchyState().collapseImmune) { + + if (parent.collapsed && !child.collapseImmune) { + + + + hidden = true; + break; + } + } else { + + + + hidden = !!parentHierarchyState.collapsed; + break; + } + } + + return hidden; + }, + + onBoxReady: function(width, height) { + var me = this; + + if (me.disableOnBoxReady) { + me.onDisable(); + } else if (me.enableOnBoxReady) { + me.onEnable(); + } + if (me.resizable) { + me.initResizable(me.resizable); + } + + + + if (me.draggable) { + me.initDraggable(); + } + + if (me.hasListeners.boxready) { + me.fireEvent('boxready', me, width, height); + } + }, + + + enable: function(silent) { + var me = this; + + delete me.disableOnBoxReady; + me.removeCls(me.disabledCls); + if (me.rendered) { + me.onEnable(); + } else { + me.enableOnBoxReady = true; + } + + me.disabled = false; + delete me.resetDisable; + + if (silent !== true) { + me.fireEvent('enable', me); + } + + return me; + }, + + + disable: function(silent) { + var me = this; + + delete me.enableOnBoxReady; + me.addCls(me.disabledCls); + if (me.rendered) { + me.onDisable(); + } else { + me.disableOnBoxReady = true; + } + + me.disabled = true; + + if (silent !== true) { + delete me.resetDisable; + me.fireEvent('disable', me); + } + + return me; + }, + + + onEnable: function() { + if (this.maskOnDisable) { + this.el.dom.disabled = false; + this.unmask(); + } + }, + + + onDisable : function() { + var me = this, + focusCls = me.focusCls, + focusEl = me.getFocusEl(); + + if (focusCls && focusEl) { + focusEl.removeCls(me.removeClsWithUI(focusCls, true)); + } + + if (me.maskOnDisable) { + me.el.dom.disabled = true; + me.mask(); + } + }, + + mask: function() { + var box = this.lastBox, + target = this.getMaskTarget(), + args = []; + + + if (box) { + args[2] = box.height; + } + target.mask.apply(target, args); + }, + + unmask: function() { + this.getMaskTarget().unmask(); + }, + + getMaskTarget: function(){ + return this.el; + }, + + + isDisabled : function() { + return this.disabled; + }, + + + setDisabled : function(disabled) { + return this[disabled ? 'disable': 'enable'](); + }, + + + isHidden : function() { + return this.hidden; + }, + + + addCls : function(cls) { + var me = this, + el = me.rendered ? me.el : me.protoEl; + + el.addCls.apply(el, arguments); + return me; + }, + + + addClass : function() { + return this.addCls.apply(this, arguments); + }, + + + hasCls: function (cls) { + var me = this, + el = me.rendered ? me.el : me.protoEl; + + return el.hasCls.apply(el, arguments); + }, + + + removeCls : function(cls) { + var me = this, + el = me.rendered ? me.el : me.protoEl; + + el.removeCls.apply(el, arguments); + return me; + }, + + + addOverCls: function() { + var me = this; + if (!me.disabled) { + me.el.addCls(me.overCls); + } + }, + + removeOverCls: function() { + this.el.removeCls(this.overCls); + }, + + addListener : function(element, listeners, scope, options) { + var me = this, + fn, + option; + + if (Ext.isString(element) && (Ext.isObject(listeners) || options && options.element)) { + if (options.element) { + fn = listeners; + + listeners = {}; + listeners[element] = fn; + element = options.element; + if (scope) { + listeners.scope = scope; + } + + for (option in options) { + if (options.hasOwnProperty(option)) { + if (me.eventOptionsRe.test(option)) { + listeners[option] = options[option]; + } + } + } + } + + + + if (me[element] && me[element].on) { + me.mon(me[element], listeners); + } else { + me.afterRenderEvents = me.afterRenderEvents || {}; + if (!me.afterRenderEvents[element]) { + me.afterRenderEvents[element] = []; + } + me.afterRenderEvents[element].push(listeners); + } + return; + } + + return me.mixins.observable.addListener.apply(me, arguments); + }, + + + removeManagedListenerItem: function(isClear, managedListener, item, ename, fn, scope){ + var me = this, + element = managedListener.options ? managedListener.options.element : null; + + if (element) { + element = me[element]; + if (element && element.un) { + if (isClear || (managedListener.item === item && managedListener.ename === ename && (!fn || managedListener.fn === fn) && (!scope || managedListener.scope === scope))) { + element.un(managedListener.ename, managedListener.fn, managedListener.scope); + if (!isClear) { + Ext.Array.remove(me.managedListeners, managedListener); + } + } + } + } else { + return me.mixins.observable.removeManagedListenerItem.apply(me, arguments); + } + }, + + + getBubbleTarget : function() { + return this.ownerCt; + }, + + + isFloating : function() { + return this.floating; + }, + + + isDraggable : function() { + return !!this.draggable; + }, + + + isDroppable : function() { + return !!this.droppable; + }, + + + onAdded : function(container, pos) { + var me = this; + + me.ownerCt = container; + + if (me.hierarchyState) { + + + + me.hierarchyState.invalid = true; + + + + + + delete me.hierarchyState; + } + + if (me.hasListeners.added) { + me.fireEvent('added', me, container, pos); + } + }, + + + onRemoved : function(destroying) { + var me = this; + if (me.hasListeners.removed) { + me.fireEvent('removed', me, me.ownerCt); + } + delete me.ownerCt; + delete me.ownerLayout; + }, + + + beforeDestroy : Ext.emptyFn, + + + onResize: function(width, height, oldWidth, oldHeight) { + var me = this; + + + if (me.floating && me.constrain) { + me.doConstrain(); + } + if (me.hasListeners.resize) { + me.fireEvent('resize', me, width, height, oldWidth, oldHeight); + } + }, + + + setSize : function(width, height) { + var me = this; + + + if (width && typeof width == 'object') { + height = width.height; + width = width.width; + } + + + if (typeof width == 'number') { + me.width = Ext.Number.constrain(width, me.minWidth, me.maxWidth); + } else if (width === null) { + delete me.width; + } + + if (typeof height == 'number') { + me.height = Ext.Number.constrain(height, me.minHeight, me.maxHeight); + } else if (height === null) { + delete me.height; + } + + + + if (me.rendered && me.isVisible()) { + + + me.updateLayout({ + isRoot: false + }); + } + + return me; + }, + + + isLayoutRoot: function() { + var me = this, + ownerLayout = me.ownerLayout; + + + + + + if (!ownerLayout || me._isLayoutRoot || me.floating) { + return true; + } + + return ownerLayout.isItemLayoutRoot(me); + }, + + + isLayoutSuspended: function () { + var comp = this, + ownerLayout; + + while (comp) { + if (comp.layoutSuspendCount || comp.suspendLayout) { + return true; + } + + ownerLayout = comp.ownerLayout; + if (!ownerLayout) { + break; + } + + + + + + + comp = ownerLayout.owner; + } + + return false; + }, + + + updateLayout: function (options) { + var me = this, + defer, + lastBox = me.lastBox, + isRoot = options && options.isRoot; + + if (lastBox) { + + + lastBox.invalid = true; + } + + if (!me.rendered || me.layoutSuspendCount || me.suspendLayout) { + return; + } + + if (me.hidden) { + Ext.AbstractComponent.cancelLayout(me); + } else if (typeof isRoot != 'boolean') { + isRoot = me.isLayoutRoot(); + } + + + if (isRoot || !me.ownerLayout || !me.ownerLayout.onContentChange(me)) { + + if (!me.isLayoutSuspended()) { + + defer = (options && options.hasOwnProperty('defer')) ? options.defer : me.deferLayouts; + Ext.AbstractComponent.updateLayout(me, defer); + } + } + }, + + + getSizeModel: function (ownerCtSizeModel) { + var me = this, + models = Ext.layout.SizeModel, + ownerContext = me.componentLayout.ownerContext, + width = me.width, + height = me.height, + typeofWidth, typeofHeight, + hasPixelWidth, hasPixelHeight, + heightModel, ownerLayout, policy, shrinkWrap, topLevel, widthModel; + + if (ownerContext) { + + + + + widthModel = ownerContext.widthModel; + heightModel = ownerContext.heightModel; + } + + if (!widthModel || !heightModel) { + hasPixelWidth = ((typeofWidth = typeof width) == 'number'); + hasPixelHeight = ((typeofHeight = typeof height) == 'number'); + topLevel = me.floating || !(ownerLayout = me.ownerLayout); + + + if (topLevel) { + policy = Ext.layout.Layout.prototype.autoSizePolicy; + shrinkWrap = me.floating ? 3 : me.shrinkWrap; + + if (hasPixelWidth) { + widthModel = models.configured; + } + + if (hasPixelHeight) { + heightModel = models.configured; + } + } else { + policy = ownerLayout.getItemSizePolicy(me, ownerCtSizeModel); + shrinkWrap = ownerLayout.isItemShrinkWrap(me); + } + + if (ownerContext) { + ownerContext.ownerSizePolicy = policy; + } + + shrinkWrap = (shrinkWrap === true) ? 3 : (shrinkWrap || 0); + + + + + + if (topLevel && shrinkWrap) { + if (width && typeofWidth == 'string') { + shrinkWrap &= 2; + } + if (height && typeofHeight == 'string') { + shrinkWrap &= 1; + } + } + + if (shrinkWrap !== 3) { + if (!ownerCtSizeModel) { + ownerCtSizeModel = me.ownerCt && me.ownerCt.getSizeModel(); + } + + if (ownerCtSizeModel) { + shrinkWrap |= (ownerCtSizeModel.width.shrinkWrap ? 1 : 0) | (ownerCtSizeModel.height.shrinkWrap ? 2 : 0); + } + } + + if (!widthModel) { + if (!policy.setsWidth) { + if (hasPixelWidth) { + widthModel = models.configured; + } else { + widthModel = (shrinkWrap & 1) ? models.shrinkWrap : models.natural; + } + } else if (policy.readsWidth) { + if (hasPixelWidth) { + widthModel = models.calculatedFromConfigured; + } else { + widthModel = (shrinkWrap & 1) ? models.calculatedFromShrinkWrap : + models.calculatedFromNatural; + } + } else { + widthModel = models.calculated; + } + } + + if (!heightModel) { + if (!policy.setsHeight) { + if (hasPixelHeight) { + heightModel = models.configured; + } else { + heightModel = (shrinkWrap & 2) ? models.shrinkWrap : models.natural; + } + } else if (policy.readsHeight) { + if (hasPixelHeight) { + heightModel = models.calculatedFromConfigured; + } else { + heightModel = (shrinkWrap & 2) ? models.calculatedFromShrinkWrap : + models.calculatedFromNatural; + } + } else { + heightModel = models.calculated; + } + } + } + + + + return widthModel.pairsByHeightOrdinal[heightModel.ordinal]; + }, + + isDescendant: function(ancestor) { + if (ancestor.isContainer) { + for (var c = this.ownerCt; c; c = c.ownerCt) { + if (c === ancestor) { + return true; + } + } + } + return false; + }, + + + doComponentLayout : function() { + this.updateLayout(); + return this; + }, + + + forceComponentLayout: function () { + this.updateLayout(); + }, + + + setComponentLayout : function(layout) { + var currentLayout = this.componentLayout; + if (currentLayout && currentLayout.isLayout && currentLayout != layout) { + currentLayout.setOwner(null); + } + this.componentLayout = layout; + layout.setOwner(this); + }, + + getComponentLayout : function() { + var me = this; + + if (!me.componentLayout || !me.componentLayout.isLayout) { + me.setComponentLayout(Ext.layout.Layout.create(me.componentLayout, 'autocomponent')); + } + return me.componentLayout; + }, + + + afterComponentLayout: function(width, height, oldWidth, oldHeight) { + var me = this; + + if (++me.componentLayoutCounter === 1) { + me.afterFirstLayout(width, height); + } + + if (width !== oldWidth || height !== oldHeight) { + me.onResize(width, height, oldWidth, oldHeight); + } + }, + + + beforeComponentLayout: function(width, height) { + return true; + }, + + + setPosition: function(x, y, animate) { + var me = this, + pos = me.beforeSetPosition.apply(me, arguments); + + if (pos && me.rendered) { + x = pos.x; + y = pos.y; + + if (animate) { + + + + if (x !== me.getLocalX() || y !== me.getLocalY()) { + me.stopAnimation(); + me.animate(Ext.apply({ + duration: 1000, + listeners: { + afteranimate: Ext.Function.bind(me.afterSetPosition, me, [x, y]) + }, + to: { + x: x, + y: y + } + }, animate)); + } + } else { + me.setLocalXY(x, y); + me.afterSetPosition(x, y); + } + } + return me; + }, + + + beforeSetPosition: function (x, y, animate) { + var pos, x0; + + + + if (x) { + + if (Ext.isNumber(x0 = x[0])) { + animate = y; + y = x[1]; + x = x0; + } + + else if ((x0 = x.x) !== undefined) { + animate = y; + y = x.y; + x = x0; + } + } + + if (this.constrain || this.constrainHeader) { + pos = this.calculateConstrainedPosition(null, [x, y], true); + if (pos) { + x = pos[0]; + y = pos[1]; + } + } + + + pos = { + x : this.x = x, + y : this.y = y, + anim: animate, + hasX: x !== undefined, + hasY: y !== undefined + }; + + return (pos.hasX || pos.hasY) ? pos : null; + }, + + + afterSetPosition: function(x, y) { + var me = this; + me.onPosition(x, y); + if (me.hasListeners.move) { + me.fireEvent('move', me, x, y); + } + }, + + + onPosition: Ext.emptyFn, + + + setWidth : function(width) { + return this.setSize(width); + }, + + + setHeight : function(height) { + return this.setSize(undefined, height); + }, + + + getSize : function() { + return this.el.getSize(); + }, + + + getWidth : function() { + return this.el.getWidth(); + }, + + + getHeight : function() { + return this.el.getHeight(); + }, + + + getLoader: function(){ + var me = this, + autoLoad = me.autoLoad ? (Ext.isObject(me.autoLoad) ? me.autoLoad : {url: me.autoLoad}) : null, + loader = me.loader || autoLoad; + + if (loader) { + if (!loader.isLoader) { + me.loader = new Ext.ComponentLoader(Ext.apply({ + target: me, + autoLoad: autoLoad + }, loader)); + } else { + loader.setTarget(me); + } + return me.loader; + + } + return null; + }, + + + setDocked : function(dock, layoutParent) { + var me = this; + + me.dock = dock; + if (layoutParent && me.ownerCt && me.rendered) { + me.ownerCt.updateLayout(); + } + return me; + }, + + + setBorder: function(border, targetEl) { + var me = this, + initial = !!targetEl; + + if (me.rendered || initial) { + if (!initial) { + targetEl = me.el; + } + + if (!border) { + border = 0; + } else if (border === true) { + border = '1px'; + } else { + border = this.unitizeBox(border); + } + targetEl.setStyle('border-width', border); + if (!initial) { + me.updateLayout(); + } + } + me.border = border; + }, + + onDestroy : function() { + var me = this; + + if (me.monitorResize && Ext.EventManager.resizeEvent) { + Ext.EventManager.resizeEvent.removeListener(me.setSize, me); + } + + + Ext.destroy( + me.componentLayout, + me.loadMask, + me.floatingDescendants + ); + }, + + + destroy : function() { + var me = this, + selectors = me.renderSelectors, + selector, + el; + + if (!me.isDestroyed) { + if (!me.hasListeners.beforedestroy || me.fireEvent('beforedestroy', me) !== false) { + me.destroying = true; + me.beforeDestroy(); + + if (me.floating) { + delete me.floatParent; + + + if (me.zIndexManager) { + me.zIndexManager.unregister(me); + } + } else if (me.ownerCt && me.ownerCt.remove) { + me.ownerCt.remove(me, false); + } + + me.stopAnimation(); + me.onDestroy(); + + + Ext.destroy(me.plugins); + + if (me.hasListeners.destroy) { + me.fireEvent('destroy', me); + } + Ext.ComponentManager.unregister(me); + + me.mixins.state.destroy.call(me); + + me.clearListeners(); + + if (me.rendered) { + if (!me.preserveElOnDestroy) { + me.el.remove(); + } + me.mixins.elementCt.destroy.call(me); + if (selectors) { + for (selector in selectors) { + if (selectors.hasOwnProperty(selector)) { + el = me[selector]; + if (el) { + delete me[selector]; + el.remove(); + } + } + } + } + + delete me.el; + delete me.frameBody; + delete me.rendered; + } + + me.destroying = false; + me.isDestroyed = true; + } + } + }, + + + isDescendantOf: function(container) { + return !!this.findParentBy(function(p){ + return p === container; + }); + }, + + + getHierarchyState: function (inner) { + var me = this, + hierarchyState = (inner && me.hierarchyStateInner) || me.hierarchyState, + ownerCt = me.ownerCt, + parent, layout, hierarchyStateInner, getInner; + + if (!hierarchyState || hierarchyState.invalid) { + + + + + parent = me.getRefOwner(); + + if (ownerCt) { + + + getInner = me.ownerLayout === ownerCt.layout; + } + + me.hierarchyState = hierarchyState = + + + + + + Ext.Object.chain(parent ? parent.getHierarchyState(getInner) + : Ext.rootHierarchyState); + + me.initHierarchyState(hierarchyState); + if ((layout = me.componentLayout).initHierarchyState) { + layout.initHierarchyState(hierarchyState); + } + + if (me.isContainer) { + me.hierarchyStateInner = hierarchyStateInner = Ext.Object.chain(hierarchyState); + + layout = me.layout; + if (layout && layout.initHierarchyState) { + layout.initHierarchyState(hierarchyStateInner, hierarchyState); + } + if (inner) { + hierarchyState = hierarchyStateInner; + } + } + } + + return hierarchyState; + }, + + + initHierarchyState: function(hierarchyState) { + var me = this; + + if (me.collapsed) { + hierarchyState.collapsed = true; + } + if (me.hidden) { + hierarchyState.hidden = true; + } + if (me.collapseImmune) { + hierarchyState.collapseImmune = true; + } + }, + + + + + + getAnchorToXY: function(el, anchor, local, mySize) { + return el.getAnchorXY(anchor, local, mySize); + }, + + getBorderPadding: function() { + return this.el.getBorderPadding(); + }, + + getLocalX: function() { + return this.el.getLocalX(); + }, + + getLocalXY: function() { + return this.el.getLocalXY(); + }, + + getLocalY: function() { + return this.el.getLocalY(); + }, + + getX: function() { + return this.el.getX(); + }, + + getXY: function() { + return this.el.getXY(); + }, + + getY: function() { + return this.el.getY(); + }, + + setLocalX: function(x) { + this.el.setLocalX(x); + }, + + setLocalXY: function(x, y) { + this.el.setLocalXY(x, y); + }, + + setLocalY: function(y) { + this.el.setLocalY(y); + }, + + setX: function(x, animate) { + this.el.setX(x, animate); + }, + + setXY: function(xy, animate) { + this.el.setXY(xy, animate); + }, + + setY: function(y, animate) { + this.el.setY(y, animate); + } + + + + +}, function() { + var AbstractComponent = this; + + AbstractComponent.createAlias({ + on: 'addListener', + prev: 'previousSibling', + next: 'nextSibling' + }); + + + Ext.resumeLayouts = function (flush) { + AbstractComponent.resumeLayouts(flush); + }; + + + Ext.suspendLayouts = function () { + AbstractComponent.suspendLayouts(); + }; + + + Ext.batchLayouts = function(fn, scope) { + AbstractComponent.suspendLayouts(); + + fn.call(scope); + AbstractComponent.resumeLayouts(true); + }; +}); + + +Ext.define('Ext.AbstractPlugin', { + disabled: false, + + + isPlugin: true, + + + constructor: function(config) { + this.pluginConfig = config; + Ext.apply(this, config); + }, + + + clonePlugin: function(overrideCfg) { + return new this.self(Ext.apply({}, overrideCfg, this.pluginConfig)); + }, + + + setCmp: function(cmp) { + this.cmp = cmp; + }, + + + getCmp: function() { + return this.cmp; + }, + + + + + init: Ext.emptyFn, + + + destroy: Ext.emptyFn, + + + enable: function() { + this.disabled = false; + }, + + + disable: function() { + this.disabled = true; + }, + + + + onClassExtended: function(cls, data, hooks) { + var alias = data.alias; + + + if (alias && !data.ptype) { + if (Ext.isArray(alias)) { + alias = alias[0]; + } + cls.prototype.ptype = alias.split('plugin.')[1]; + } + } +}); + + +Ext.define('Ext.Action', { + + + + + + + + + + + + + + + constructor : function(config){ + this.initialConfig = config; + this.itemId = config.itemId = (config.itemId || config.id || Ext.id()); + this.items = []; + }, + + + isAction : true, + + + setText : function(text){ + this.initialConfig.text = text; + this.callEach('setText', [text]); + }, + + + getText : function(){ + return this.initialConfig.text; + }, + + + setIconCls : function(cls){ + this.initialConfig.iconCls = cls; + this.callEach('setIconCls', [cls]); + }, + + + getIconCls : function(){ + return this.initialConfig.iconCls; + }, + + + setDisabled : function(v){ + this.initialConfig.disabled = v; + this.callEach('setDisabled', [v]); + }, + + + enable : function(){ + this.setDisabled(false); + }, + + + disable : function(){ + this.setDisabled(true); + }, + + + isDisabled : function(){ + return this.initialConfig.disabled; + }, + + + setHidden : function(v){ + this.initialConfig.hidden = v; + this.callEach('setVisible', [!v]); + }, + + + show : function(){ + this.setHidden(false); + }, + + + hide : function(){ + this.setHidden(true); + }, + + + isHidden : function(){ + return this.initialConfig.hidden; + }, + + + setHandler : function(fn, scope){ + this.initialConfig.handler = fn; + this.initialConfig.scope = scope; + this.callEach('setHandler', [fn, scope]); + }, + + + each : function(fn, scope){ + Ext.each(this.items, fn, scope); + }, + + + callEach : function(fnName, args){ + var items = this.items, + i = 0, + len = items.length, + item; + + Ext.suspendLayouts(); + for(; i < len; i++){ + item = items[i]; + item[fnName].apply(item, args); + } + Ext.resumeLayouts(true); + }, + + + addComponent : function(comp){ + this.items.push(comp); + comp.on('destroy', this.removeComponent, this); + }, + + + removeComponent : function(comp){ + Ext.Array.remove(this.items, comp); + }, + + + execute : function(){ + this.initialConfig.handler.apply(this.initialConfig.scope || Ext.global, arguments); + } +}); + + +Ext.define('Ext.data.flash.BinaryXhr', { + + statics: { + + flashPluginActivated: function() { + Ext.data.flash.BinaryXhr.flashPluginActive = true; + Ext.data.flash.BinaryXhr.flashPlugin = document.getElementById("ext-flash-polyfill"); + Ext.globalEvents.fireEvent("flashready"); + }, + + + flashPluginActive: false, + + + flashPluginInjected: false, + + + + connectionIndex: 1, + + + liveConnections: {}, + + + flashPlugin: null, + + + onFlashStateChange: function(javascriptId, state, data) { + var connection; + + connection = this.liveConnections[Number(javascriptId)]; + if (connection) { + connection.onFlashStateChange(state, data); + } + }, + + + registerConnection: function(conn) { + var i = this.connectionIndex; + this.conectionIndex = this.connectionIndex + 1; + this.liveConnections[i] = conn; + return i; + }, + + + injectFlashPlugin: function() { + var divTag, pTag, aTag, iTag, + me=this, + flashLoaderPath, flashObjectPath; + + + + + + + iTag=document.createElement("img"); + iTag.setAttribute("src", window.location.protocol + '//www.adobe.com/images/shared/download_buttons/get_flash_player.gif'); + iTag.setAttribute("alt", "Get Adobe Flash player"); + + aTag=document.createElement("a"); + aTag.setAttribute("href", "http://www.adobe.com/go/getflashplayer"); + aTag.appendChild(iTag); + + pTag=document.createElement("p"); + pTag.innerHTML="To view this page ensure that Adobe Flash Player version 11.1.0 or greater is installed."; + + divTag=document.createElement("div"); + divTag.setAttribute("id", "ext-flash-polyfill"); + divTag.appendChild(pTag); + divTag.appendChild(iTag); + + Ext.getBody().dom.appendChild(divTag); + + + + + + flashLoaderPath = [Ext.Loader.getPath('Ext.data.Connection'), '../../../plugins/flash/swfobject.js'].join('/'); + flashObjectPath = "/plugins/flash/FlashPlugin.swf"; + if (Ext.flashPluginPath) { + flashObjectPath = Ext.flashPluginPath; + } + + Ext.Loader.loadScript({ + url:flashLoaderPath, + onLoad: function() { + + var swfVersionStr = "11.4.0"; + + var xiSwfUrlStr = "playerProductInstall.swf"; + var flashvars = {}; + var params = {}; + params.quality = "high"; + params.bgcolor = "#ffffff"; + params.allowscriptaccess = "sameDomain"; + params.allowfullscreen = "true"; + var attributes = {}; + attributes.id = "ext-flash-polyfill"; + attributes.name = "polyfill"; + attributes.align = "middle"; + swfobject.embedSWF( + flashObjectPath, "ext-flash-polyfill", + "0", "0", + swfVersionStr, xiSwfUrlStr, + flashvars, params, attributes); + }, + onError: function() { + }, + scope: me + }); + Ext.globalEvents.addEvents("flashready"); + Ext.data.flash.BinaryXhr.flashPluginInjected = true; + } + + + }, + + + readyState: 0, + + + status: 0, + + + + statusText: "", + + + responseBytes: null, + + + javascriptId: null, + + + + constructor: function (config) { + + if (!Ext.data.flash.BinaryXhr.flashPluginInjected) { + Ext.data.flash.BinaryXhr.injectFlashPlugin(); + } + var me = this; + + Ext.apply(me, config); + me.requestHeaders = {}; + }, + + + abort: function () { + var me = this; + + if (me.readyState == 4) { + return; + } + + me.aborted = true; + + if (!Ext.data.flash.BinaryXhr.flashPluginActive) { + Ext.globalEvents.removeListener("flashready", me.onFlashReady, me); + return; + } + + Ext.data.flash.BinaryXhr.flashPlugin.abortRequest(me.javascriptId); + + delete Ext.data.flash.BinaryXhr.liveConnections[me.javascriptId]; + }, + + + getAllResponseHeaders: function () { + var headers = []; + Ext.Object.each(this.responseHeaders, function (name, value) { + headers.push(name + ': ' + value); + }); + return headers.join('\x0d\x0a'); + }, + + + getResponseHeader: function (header) { + var headers = this.responseHeaders; + return (headers && headers[header]) || null; + }, + + + open: function (method, url, async, user, password) { + var me = this; + me.method = method; + me.url = url; + me.async = async !== false; + me.user = user; + me.password = password; + + }, + + + overrideMimeType: function (mimeType) { + this.mimeType = mimeType; + }, + + + send: function (body) { + var me = this; + me.body = body; + if (!Ext.data.flash.BinaryXhr.flashPluginActive) { + Ext.globalEvents.addListener("flashready", me.onFlashReady, me); + } else { + this.onFlashReady(); + } + }, + + + onFlashReady: function() { + var me = this, req, status; + me.javascriptId = Ext.data.flash.BinaryXhr.registerConnection(me); + + + req = { + method: me.method, + url: me.url, + user: me.user, + password: me.password, + mimeType: me.mimeType, + requestHeaders: me.requestHeaders, + body: me.body, + javascriptId: me.javascriptId + }; + status = Ext.data.flash.BinaryXhr.flashPlugin.postBinary(req); + }, + + + setReadyState: function (state) { + var me = this; + if (me.readyState != state) { + me.readyState = state; + me.onreadystatechange(); + } + }, + + + setRequestHeader: function (header, value) { + this.requestHeaders[header] = value; + }, + + + onreadystatechange: Ext.emptyFn, + + + parseData: function (data) { + var me = this; + + this.status = data.status || 0; + + me.responseHeaders = {}; + if (me.mimeType) { + me.responseHeaders["content-type"] = me.mimeType; + } + if (data.reason == "complete") { + + this.responseBytes = data.data; + me.responseHeaders["content-length"] = data.data.length; + } else if (data.reason == "error" || data.reason == "securityError") { + this.statusText = data.text; + me.responseHeaders["content-length"] = 0; + } + }, + + + onFlashStateChange: function(state, data) { + var me = this; + if (state == 4) { + + me.parseData(data); + + delete Ext.data.flash.BinaryXhr.liveConnections[me.javascriptId]; + } + me.setReadyState(state); + } + +}); + + +Ext.define('Ext.data.Connection', { + mixins: { + observable: Ext.util.Observable + }, + + + + + + statics: { + requestId: 0 + }, + + url: null, + async: true, + method: null, + username: '', + password: '', + + + disableCaching: true, + + + withCredentials: false, + + + binary: false, + + + cors: false, + + isXdr: false, + + defaultXdrContentType: 'text/plain', + + + disableCachingParam: '_dc', + + + timeout : 30000, + + + + + + + + + + useDefaultHeader : true, + defaultPostHeader : 'application/x-www-form-urlencoded; charset=UTF-8', + useDefaultXhrHeader : true, + defaultXhrHeader : 'XMLHttpRequest', + + constructor : function(config) { + config = config || {}; + Ext.apply(this, config); + + + + + this.requests = {}; + this.mixins.observable.constructor.call(this); + }, + + + request : function(options) { + options = options || {}; + var me = this, + scope = options.scope || window, + username = options.username || me.username, + password = options.password || me.password || '', + async, + requestOptions, + request, + headers, + xhr; + if (me.fireEvent('beforerequest', me, options) !== false) { + + requestOptions = me.setOptions(options, scope); + + if (me.isFormUpload(options)) { + me.upload(options.form, requestOptions.url, requestOptions.data, options); + return null; + } + + + if (options.autoAbort || me.autoAbort) { + me.abort(); + } + + + async = options.async !== false ? (options.async || me.async) : false; + xhr = me.openRequest(options, requestOptions, async, username, password); + + + if (!me.isXdr) { + headers = me.setupHeaders(xhr, options, requestOptions.data, requestOptions.params); + } + + + request = { + id: ++Ext.data.Connection.requestId, + xhr: xhr, + headers: headers, + options: options, + async: async, + binary: options.binary || me.binary, + timeout: setTimeout(function() { + request.timedout = true; + me.abort(request); + }, options.timeout || me.timeout) + }; + + me.requests[request.id] = request; + me.latestId = request.id; + + if (async) { + if (!me.isXdr) { + xhr.onreadystatechange = Ext.Function.bind(me.onStateChange, me, [request]); + } + } + + if (me.isXdr) { + me.processXdrRequest(request, xhr); + } + + + xhr.send(requestOptions.data); + if (!async) { + return me.onComplete(request); + } + return request; + } else { + Ext.callback(options.callback, options.scope, [options, undefined, undefined]); + return null; + } + }, + + processXdrRequest: function(request, xhr) { + var me = this; + + + delete request.headers; + + request.contentType = request.options.contentType || me.defaultXdrContentType; + + xhr.onload = Ext.Function.bind(me.onStateChange, me, [request, true]); + xhr.onerror = xhr.ontimeout = Ext.Function.bind(me.onStateChange, me, [request, false]); + }, + + processXdrResponse: function(response, xhr) { + + response.getAllResponseHeaders = function () { + return []; + }; + response.getResponseHeader = function () { + return ''; + }; + response.contentType = xhr.contentType || this.defaultXdrContentType; + }, + + + upload: function(form, url, params, options) { + form = Ext.getDom(form); + options = options || {}; + + var id = Ext.id(), + frame = document.createElement('iframe'), + hiddens = [], + encoding = 'multipart/form-data', + buf = { + target: form.target, + method: form.method, + encoding: form.encoding, + enctype: form.enctype, + action: form.action + }, + addField = function(name, value) { + hiddenItem = document.createElement('input'); + Ext.fly(hiddenItem).set({ + type: 'hidden', + value: value, + name: name + }); + form.appendChild(hiddenItem); + hiddens.push(hiddenItem); + }, + hiddenItem, obj, value, name, vLen, v, hLen, h; + + + Ext.fly(frame).set({ + id: id, + name: id, + cls: Ext.baseCSSPrefix + 'hide-display', + src: Ext.SSL_SECURE_URL + }); + + document.body.appendChild(frame); + + + if (document.frames) { + document.frames[id].name = id; + } + + Ext.fly(form).set({ + target: id, + method: 'POST', + enctype: encoding, + encoding: encoding, + action: url || buf.action + }); + + + if (params) { + obj = Ext.Object.fromQueryString(params) || {}; + + for (name in obj) { + if (obj.hasOwnProperty(name)) { + value = obj[name]; + if (Ext.isArray(value)) { + vLen = value.length; + for (v = 0; v < vLen; v++) { + addField(name, value[v]); + } + } else { + addField(name, value); + } + } + } + } + + Ext.fly(frame).on('load', Ext.Function.bind(this.onUploadComplete, this, [frame, options]), null, {single: !Ext.isOpera}); + form.submit(); + + Ext.fly(form).set(buf); + + hLen = hiddens.length; + + for (h = 0; h < hLen; h++) { + Ext.removeNode(hiddens[h]); + } + }, + + + onUploadComplete: function(frame, options) { + var me = this, + + response = { + responseText: '', + responseXML: null + }, callback, success, doc, contentNode; + + try { + doc = frame.contentWindow.document || frame.contentDocument || window.frames[frame.id].document; + + + if (doc) { + if (Ext.isOpera && doc.location == 'about:blank') { + return; + } + if (doc.body) { + + + + if ((contentNode = doc.body.firstChild) && /pre/i.test(contentNode.tagName)) { + response.responseText = contentNode.textContent; + } + + + + else if ((contentNode = doc.getElementsByTagName('textarea')[0])) { + response.responseText = contentNode.value; + } + + else { + response.responseText = doc.body.textContent || doc.body.innerText; + } + } + + response.responseXML = doc.XMLDocument || doc; + callback = options.success; + success = true; + } + } catch (e) { + + response.responseText = '{success:false,message:"' + Ext.String.trim(e.message || e.description) + '"}'; + callback = options.failure; + success = false; + } + + me.fireEvent('requestcomplete', me, response, options); + + Ext.callback(callback, options.scope, [response, options]); + Ext.callback(options.callback, options.scope, [options, success, response]); + + setTimeout(function() { + Ext.removeNode(frame); + }, 100); + }, + + + isFormUpload: function(options) { + var form = this.getForm(options); + if (form) { + return (options.isUpload || (/multipart\/form-data/i).test(form.getAttribute('enctype'))); + } + return false; + }, + + + getForm: function(options) { + return Ext.getDom(options.form) || null; + }, + + + setOptions: function(options, scope) { + var me = this, + params = options.params || {}, + extraParams = me.extraParams, + urlParams = options.urlParams, + url = options.url || me.url, + jsonData = options.jsonData, + method, + disableCache, + data; + + + + if (Ext.isFunction(params)) { + params = params.call(scope, options); + } + + + if (Ext.isFunction(url)) { + url = url.call(scope, options); + } + + url = this.setupUrl(options, url); + + + + data = options.rawData || options.binaryData || options.xmlData || jsonData || null; + if (jsonData && !Ext.isPrimitive(jsonData)) { + data = Ext.encode(data); + } + + if (options.binaryData) { + if (me.nativeBinaryPostSupport()) { + data = (new Uint8Array(options.binaryData)); + if ((Ext.isChrome && Ext.chromeVersion < 22) || Ext.isSafari || Ext.isGecko) { + data = data.buffer; + } + } + } + + + if (Ext.isObject(params)) { + params = Ext.Object.toQueryString(params); + } + + if (Ext.isObject(extraParams)) { + extraParams = Ext.Object.toQueryString(extraParams); + } + + params = params + ((extraParams) ? ((params) ? '&' : '') + extraParams : ''); + + urlParams = Ext.isObject(urlParams) ? Ext.Object.toQueryString(urlParams) : urlParams; + + params = this.setupParams(options, params); + + + method = (options.method || me.method || ((params || data) ? 'POST' : 'GET')).toUpperCase(); + this.setupMethod(options, method); + + + disableCache = options.disableCaching !== false ? (options.disableCaching || me.disableCaching) : false; + + if (method === 'GET' && disableCache) { + url = Ext.urlAppend(url, (options.disableCachingParam || me.disableCachingParam) + '=' + (new Date().getTime())); + } + + + if ((method == 'GET' || data) && params) { + url = Ext.urlAppend(url, params); + params = null; + } + + + if (urlParams) { + url = Ext.urlAppend(url, urlParams); + } + + return { + url: url, + method: method, + data: data || params || null + }; + }, + + + setupUrl: function(options, url) { + var form = this.getForm(options); + if (form) { + url = url || form.action; + } + return url; + }, + + + + setupParams: function(options, params) { + var form = this.getForm(options), + serializedForm; + if (form && !this.isFormUpload(options)) { + serializedForm = Ext.Element.serializeForm(form); + params = params ? (params + '&' + serializedForm) : serializedForm; + } + return params; + }, + + + setupMethod: function(options, method) { + if (this.isFormUpload(options)) { + return 'POST'; + } + return method; + }, + + + setupHeaders: function(xhr, options, data, params) { + var me = this, + headers = Ext.apply({}, options.headers || {}, me.defaultHeaders || {}), + contentType = me.defaultPostHeader, + jsonData = options.jsonData, + xmlData = options.xmlData, + key, + header; + + if (!headers['Content-Type'] && (data || params)) { + if (data) { + if (options.rawData) { + contentType = 'text/plain'; + } else { + if (xmlData && Ext.isDefined(xmlData)) { + contentType = 'text/xml'; + } else if (jsonData && Ext.isDefined(jsonData)) { + contentType = 'application/json'; + } + } + } + headers['Content-Type'] = contentType; + } + + if (me.useDefaultXhrHeader && !headers['X-Requested-With']) { + headers['X-Requested-With'] = me.defaultXhrHeader; + } + + try { + for (key in headers) { + if (headers.hasOwnProperty(key)) { + header = headers[key]; + xhr.setRequestHeader(key, header); + } + } + } catch(e) { + me.fireEvent('exception', key, header); + } + return headers; + }, + + + newRequest: function (options) { + var me = this, + xhr; + + if (options.binaryData) { + + if (me.nativeBinaryPostSupport()) { + xhr = this.getXhrInstance(); + } else { + + xhr = new Ext.data.flash.BinaryXhr(); + } + } else if ((options.cors || me.cors) && Ext.isIE && Ext.ieVersion <= 9) { + xhr = me.getXdrInstance(); + me.isXdr = true; + } else { + xhr = me.getXhrInstance(); + } + + return xhr; + }, + + + openRequest: function (options, requestOptions, async, username, password) { + var me = this, + xhr = me.newRequest(options); + + if (username) { + xhr.open(requestOptions.method, requestOptions.url, async, username, password); + } else { + if (me.isXdr) { + xhr.open(requestOptions.method, requestOptions.url); + } else { + xhr.open(requestOptions.method, requestOptions.url, async); + } + } + + if (options.binary || me.binary) { + if (window.Uint8Array) { + xhr.responseType = 'arraybuffer'; + } else if (xhr.overrideMimeType) { + + + + + xhr.overrideMimeType('text\/plain; charset=x-user-defined'); + } + } + + if (options.withCredentials || me.withCredentials) { + xhr.withCredentials = true; + } + + return xhr; + }, + + + getXdrInstance: function() { + var xdr; + + if (Ext.ieVersion >= 8) { + xdr = new XDomainRequest(); + } else { + Ext.Error.raise({ + msg: 'Your browser does not support CORS' + }); + } + + return xdr; + }, + + + getXhrInstance: (function() { + var options = [function() { + return new XMLHttpRequest(); + }, function() { + return new ActiveXObject('MSXML2.XMLHTTP.3.0'); + }, function() { + return new ActiveXObject('MSXML2.XMLHTTP'); + }, function() { + return new ActiveXObject('Microsoft.XMLHTTP'); + }], i = 0, + len = options.length, + xhr; + + for (; i < len; ++i) { + try { + xhr = options[i]; + xhr(); + break; + } catch(e) { + } + } + return xhr; + }()), + + + isLoading : function(request) { + if (!request) { + request = this.getLatest(); + } + if (!(request && request.xhr)) { + return false; + } + + var state = request.xhr.readyState; + return ((request.xhr instanceof Ext.data.flash.BinaryXhr) && state != 4) || !(state === 0 || state == 4); + }, + + + abort : function(request) { + var me = this, + xhr; + + if (!request) { + request = me.getLatest(); + } + + if (request && me.isLoading(request)) { + + xhr = request.xhr; + try { + xhr.onreadystatechange = null; + } catch (e) { + + + xhr.onreadystatechange = Ext.emptyFn; + } + xhr.abort(); + me.clearTimeout(request); + if (!request.timedout) { + request.aborted = true; + } + me.onComplete(request); + me.cleanup(request); + } + }, + + + abortAll: function(){ + var requests = this.requests, + id; + + for (id in requests) { + if (requests.hasOwnProperty(id)) { + this.abort(requests[id]); + } + } + }, + + + getLatest: function(){ + var id = this.latestId, + request; + + if (id) { + request = this.requests[id]; + } + return request || null; + }, + + + onStateChange : function(request, xdrResult) { + var me = this; + + + if ((request.xhr && request.xhr.readyState == 4) || me.isXdr) { + me.clearTimeout(request); + me.onComplete(request, xdrResult); + me.cleanup(request); + Ext.EventManager.idleEvent.fire(); + } + }, + + + clearTimeout: function(request) { + clearTimeout(request.timeout); + delete request.timeout; + }, + + + cleanup: function(request) { + request.xhr = null; + delete request.xhr; + }, + + + onComplete : function(request, xdrResult) { + var me = this, + options = request.options, + result, + success, + response; + + try { + result = me.parseStatus(request.xhr.status); + } catch (e) { + + result = { + success : false, + isException : false + }; + + } + success = me.isXdr ? xdrResult : result.success; + + if (success) { + response = me.createResponse(request); + me.fireEvent('requestcomplete', me, response, options); + Ext.callback(options.success, options.scope, [response, options]); + } else { + if (result.isException || request.aborted || request.timedout) { + response = me.createException(request); + } else { + response = me.createResponse(request); + } + me.fireEvent('requestexception', me, response, options); + Ext.callback(options.failure, options.scope, [response, options]); + } + Ext.callback(options.callback, options.scope, [options, success, response]); + delete me.requests[request.id]; + return response; + }, + + + parseStatus: function(status) { + + status = status == 1223 ? 204 : status; + + var success = (status >= 200 && status < 300) || status == 304, + isException = false; + + if (!success) { + switch (status) { + case 12002: + case 12029: + case 12030: + case 12031: + case 12152: + case 13030: + isException = true; + break; + } + } + return { + success: success, + isException: isException + }; + }, + + + createResponse : function(request) { + var me = this, + xhr = request.xhr, + isXdr = me.isXdr, + headers = {}, + lines = isXdr ? [] : xhr.getAllResponseHeaders().replace(/\r\n/g, '\n').split('\n'), + count = lines.length, + line, index, key, response, byteArray; + + while (count--) { + line = lines[count]; + index = line.indexOf(':'); + if (index >= 0) { + key = line.substr(0, index).toLowerCase(); + if (line.charAt(index + 1) == ' ') { + ++index; + } + headers[key] = line.substr(index + 1); + } + } + + request.xhr = null; + delete request.xhr; + + response = { + request: request, + requestId: request.id, + status: xhr.status, + statusText: xhr.statusText, + getResponseHeader: function(header) { + return headers[header.toLowerCase()]; + }, + getAllResponseHeaders: function() { + return headers; + } + }; + + if (isXdr) { + me.processXdrResponse(response, xhr); + } + + if (request.binary) { + response.responseBytes = me.getByteArray(xhr); + } else { + + + + + response.responseText = xhr.responseText; + response.responseXML = xhr.responseXML; + } + + + + xhr = null; + return response; + }, + + + createException : function(request) { + return { + request : request, + requestId : request.id, + status : request.aborted ? -1 : 0, + statusText : request.aborted ? 'transaction aborted' : 'communication failure', + aborted: request.aborted, + timedout: request.timedout + }; + }, + + + getByteArray: function(xhr) { + var response = xhr.response, + responseBody = xhr.responseBody, + byteArray, responseText, len, i; + + if (xhr instanceof Ext.data.flash.BinaryXhr) { + + byteArray = xhr.responseBytes; + } else if (window.Uint8Array) { + + + + byteArray = response ? new Uint8Array(response) : []; + } else if (Ext.isIE9p) { + + + + + try { + byteArray = new VBArray(responseBody).toArray(); + } catch(e) { + + + + + byteArray = []; + } + } else if (Ext.isIE) { + + + + + + if (!this.self.vbScriptInjected) { + this.injectVBScript(); + } + getIEByteArray(xhr.responseBody, byteArray = []); + } else { + + + byteArray = []; + responseText = xhr.responseText; + len = responseText.length; + for (i = 0; i < len; i++) { + + + + byteArray.push(responseText.charCodeAt(i) & 0xFF); + } + } + + return byteArray; + }, + + + injectVBScript: function() { + var scriptTag = document.createElement('script'); + scriptTag.type = 'text/vbscript'; + scriptTag.text = [ + 'Function getIEByteArray(byteArray, out)', + 'Dim len, i', + 'len = LenB(byteArray)', + 'For i = 1 to len', + 'out.push(AscB(MidB(byteArray, i, 1)))', + 'Next', + 'End Function' + ].join('\n'); + Ext.getHead().dom.appendChild(scriptTag); + this.self.vbScriptInjected = true; + }, + + + nativeBinaryPostSupport: function() { + return Ext.isChrome || + (Ext.isSafari && Ext.isDefined(window.Uint8Array)) || + (Ext.isGecko && Ext.isDefined(window.Uint8Array)); + } + + +}); + + +Ext.define('Ext.Ajax', { + extend: Ext.data.Connection , + singleton: true, + + + + + + + + + + + + + + + + + autoAbort : false +}); + + +Ext.define('Ext.util.Floating', { + + + + + focusOnToFront: true, + + + shadow: 'sides', + + + constrain: false, + + + + + + constructor: function (dom) { + var me = this; + + + me.fixed = me.fixed && !(Ext.isIE6 || Ext.isIEQuirks); + + me.el = new Ext.dom.Layer(Ext.apply({ + preventSync : true, + hideMode : me.hideMode, + hidden : me.hidden, + shadow : (typeof me.shadow != 'undefined') ? me.shadow : 'sides', + shadowOffset : me.shadowOffset, + constrain : false, + fixed : me.fixed, + shim : (me.shim === false) ? false : undefined + }, me.floating), dom); + + + + if (me.modal && !(Ext.FocusManager && Ext.FocusManager.enabled)) { + me.mon(me.el, { + keydown: me.onKeyDown, + scope: me + }); + } + + + me.mon(me.el, { + mousedown: me.onMouseDown, + scope: me + }); + + + me.floating = true; + + + + + me.registerWithOwnerCt(); + + me.initHierarchyEvents(); + }, + + initHierarchyEvents: function() { + var me = this, + syncHidden = this.syncHidden; + + if (!me.hasHierarchyEventListeners) { + me.mon(me.hierarchyEventSource, { + hide: syncHidden, + collapse: syncHidden, + show: syncHidden, + expand: syncHidden, + added: syncHidden, + scope: me + }); + me.hasHierarchyEventListeners = true; + } + }, + + registerWithOwnerCt: function() { + var me = this, + ownerCt = me.ownerCt, + zip = me.zIndexParent; + + if (zip) { + zip.unregisterFloatingItem(me); + } + + + + zip = me.zIndexParent = me.up('[floating]'); + + + + + me.setFloatParent(ownerCt || zip); + delete me.ownerCt; + + if (zip) { + zip.registerFloatingItem(me); + } else { + Ext.WindowManager.register(me); + } + }, + + + onKeyDown: function(e) { + var me = this, + shift, + focusables, + first, + last; + + + + + + + + + + + + + if (e.getKey() == Ext.EventObject.TAB) { + shift = e.shiftKey; + focusables = me.el.query(':focusable'); + first = focusables[0]; + last = focusables[focusables.length - 1]; + if (first && last && e.target === (shift ? first : last)) { + e.stopEvent(); + (shift ? last : first).focus(false, true); + } + } + }, + + + + onMouseDown: function (e) { + var focusTask = this.focusTask; + + if (this.floating && + + + + (!focusTask || !focusTask.id)) { + + this.toFront(!!e.getTarget(':focusable')); + } + }, + + setFloatParent: function(floatParent) { + var me = this; + + me.floatParent = floatParent; + + + + if ((me.constrain || me.constrainHeader) && !me.constrainTo) { + me.constrainTo = floatParent ? floatParent.getTargetEl() : me.container; + } + }, + + + syncShadow : function() { + if (this.floating) { + this.el.sync(true); + } + }, + + onBeforeFloatLayout: function(){ + this.el.preventSync = true; + }, + + onAfterFloatLayout: function(){ + delete this.el.preventSync; + this.syncShadow(); + }, + + + syncHidden: function() { + var me = this, + hidden = me.hidden || !me.rendered, + hierarchicallyHidden = me.hierarchicallyHidden = me.isHierarchicallyHidden(), + pendingShow = me.pendingShow; + + if (hidden !== hierarchicallyHidden) { + if (hierarchicallyHidden) { + me.hide(); + me.pendingShow = true; + } else if (pendingShow) { + delete me.pendingShow; + if (pendingShow.length) { + me.show.apply(me, pendingShow); + } else { + me.show(); + } + } + } + }, + + + + + + + setZIndex: function(index) { + var me = this; + + me.el.setZIndex(index); + + + index += 10; + + + + if (me.floatingDescendants) { + index = Math.floor(me.floatingDescendants.setBase(index) / 100) * 100 + 10000; + } + return index; + }, + + + doConstrain: function(constrainTo) { + var me = this, + + + + xy = me.calculateConstrainedPosition(constrainTo, null, true); + + + if (xy) { + me.setPosition(xy); + } + }, + + + toFront: function(preventFocus) { + var me = this, + zip = me.zIndexParent, + preventFocusSetting = me.preventFocusOnActivate; + + + + if (zip && me.bringParentToFront !== false) { + zip.toFront(true); + } + + if (!Ext.isDefined(preventFocus)) { + preventFocus = !me.focusOnToFront; + } + + if (preventFocus) { + me.preventFocusOnActivate = true; + } + if (me.zIndexManager.bringToFront(me, preventFocus)) { + if (!preventFocus) { + + + + me.focus(false, true); + } + } + + + me.preventFocusOnActivate = preventFocusSetting; + return me; + }, + + + setActive: function(active, newActive) { + var me = this; + + if (active) { + if (me.el.shadow && !me.maximized) { + me.el.enableShadow(true); + } + if (!me.preventFocusOnActivate) { + me.focus(false, true); + } + me.fireEvent('activate', me); + } else { + + + if (me.isWindow && (newActive && newActive.isWindow) && me.hideShadowOnDeactivate) { + me.el.disableShadow(); + } + me.fireEvent('deactivate', me); + } + }, + + + toBack: function() { + this.zIndexManager.sendToBack(this); + return this; + }, + + + center: function() { + var me = this, + xy; + + if (me.isVisible()) { + xy = me.getAlignToXY(me.container, 'c-c'); + me.setPagePosition(xy); + } else { + me.needsCenter = true; + } + return me; + }, + + onFloatShow: function() { + if (this.needsCenter) { + this.center(); + } + delete this.needsCenter; + }, + + + fitContainer: function(animate) { + var me = this, + parent = me.floatParent, + container = parent ? parent.getTargetEl() : me.container, + newBox = container.getViewSize(false), + newPosition = parent || (container.dom !== document.body) ? + + [0, 0] : + + container.getXY(); + + newBox.x = newPosition[0]; + newBox.y = newPosition[1]; + me.setBox(newBox, animate); + } +}); + + +Ext.define('Ext.Component', { + + + + alias: ['widget.component', 'widget.box'], + + extend: Ext.AbstractComponent , + + + + + + + + + mixins: { + floating: Ext.util.Floating + }, + + statics: { + + DIRECTION_TOP: 'top', + DIRECTION_RIGHT: 'right', + DIRECTION_BOTTOM: 'bottom', + DIRECTION_LEFT: 'left', + + VERTICAL_DIRECTION_Re: /^(?:top|bottom)$/, + + + + INVALID_ID_CHARS_Re: /[\.,\s]/g + }, + + + + + + + resizeHandles: 'all', + + + + + + + + + floating: false, + + + defaultAlign: 'tl-bl?', + + + toFrontOnShow: true, + + + + + + + + + + + + + + + + + + + + hideMode: 'display', + + offsetsCls: Ext.baseCSSPrefix + 'hide-offsets', + + bubbleEvents: [], + + defaultComponentLayoutType: 'autocomponent', + + + + + + + + + + constructor: function(config) { + var me = this; + + config = config || {}; + if (config.initialConfig) { + + + if (config.isAction) { + me.baseAction = config; + } + config = config.initialConfig; + + } + else if (config.tagName || config.dom || Ext.isString(config)) { + + config = { + applyTo: config, + id: config.id || config + }; + } + + me.callParent([config]); + + + + if (me.baseAction){ + me.baseAction.addComponent(me); + } + }, + + + initComponent: function() { + var me = this; + + me.callParent(); + + if (me.listeners) { + me.on(me.listeners); + me.listeners = null; + } + me.enableBubble(me.bubbleEvents); + }, + + afterRender: function() { + var me = this; + + me.callParent(); + + if (!(me.x && me.y) && (me.pageX || me.pageY)) { + me.setPagePosition(me.pageX, me.pageY); + } + }, + + + setAutoScroll : function(scroll) { + var me = this; + + me.autoScroll = !!scroll; + + + + + if (me.rendered) { + me.getOverflowEl().setStyle(me.getOverflowStyle()); + } + me.updateLayout(); + return me; + }, + + + setOverflowXY: function(overflowX, overflowY) { + var me = this, + argCount = arguments.length; + + if (argCount) { + me.overflowX = overflowX || ''; + if (argCount > 1) { + me.overflowY = overflowY || ''; + } + } + + + + + if (me.rendered) { + me.getOverflowEl().setStyle(me.getOverflowStyle()); + } + me.updateLayout(); + return me; + }, + + beforeRender: function () { + var me = this, + floating = me.floating, + cls; + + if (floating) { + me.addCls(Ext.baseCSSPrefix + 'layer'); + + cls = floating.cls; + if (cls) { + me.addCls(cls); + } + } + + return me.callParent(); + }, + + beforeLayout: function(){ + this.callParent(arguments); + if (this.floating) { + this.onBeforeFloatLayout(); + } + }, + + afterComponentLayout: function(){ + this.callParent(arguments); + if (this.floating) { + this.onAfterFloatLayout(); + } + }, + + + makeFloating : function (dom) { + this.mixins.floating.constructor.call(this, dom); + }, + + wrapPrimaryEl: function (dom) { + if (this.floating) { + this.makeFloating(dom); + } else { + this.callParent(arguments); + } + }, + + initResizable: function(resizable) { + var me = this; + + resizable = Ext.apply({ + target: me, + dynamic: false, + constrainTo: me.constrainTo || (me.floatParent ? me.floatParent.getTargetEl() : null), + handles: me.resizeHandles + }, resizable); + resizable.target = me; + me.resizer = new Ext.resizer.Resizer(resizable); + }, + + getDragEl: function() { + return this.el; + }, + + initDraggable: function() { + var me = this, + + + + + dragTarget = (me.resizer && me.resizer.el !== me.el) ? me.resizerComponent = new Ext.Component({ + el: me.resizer.el, + rendered: true, + container: me.container + }) : me, + ddConfig = Ext.applyIf({ + el: dragTarget.getDragEl(), + constrainTo: (me.constrain||me.draggable.constrain) ? (me.constrainTo || (me.floatParent ? me.floatParent.getTargetEl() : me.container)) : undefined + }, me.draggable); + + + if (me.constrain || me.constrainDelegate) { + ddConfig.constrain = me.constrain; + ddConfig.constrainDelegate = me.constrainDelegate; + } + + me.dd = new Ext.util.ComponentDragger(dragTarget, ddConfig); + }, + + + scrollBy: function(deltaX, deltaY, animate) { + var el; + + if ((el = this.getTargetEl()) && el.dom) { + el.scrollBy.apply(el, arguments); + } + }, + + + setLoading : function(load, targetEl) { + var me = this, + config = { + target: me + }; + + if (me.rendered) { + Ext.destroy(me.loadMask); + me.loadMask = null; + + if (load !== false && !me.collapsed) { + if (Ext.isObject(load)) { + Ext.apply(config, load); + } else if (Ext.isString(load)) { + config.msg = load; + } + + if (targetEl) { + Ext.applyIf(config, { + useTargetEl: true + }); + } + me.loadMask = new Ext.LoadMask(config); + me.loadMask.show(); + } + } + return me.loadMask; + }, + + beforeSetPosition: function () { + var me = this, + pos = me.callParent(arguments), + adj; + + if (pos) { + adj = me.adjustPosition(pos.x, pos.y); + pos.x = adj.x; + pos.y = adj.y; + } + return pos || null; + }, + + afterSetPosition: function(ax, ay) { + this.onPosition(ax, ay); + this.fireEvent('move', this, ax, ay); + }, + + + showAt: function(x, y, animate) { + var me = this; + + + + if (!me.rendered && (me.autoRender || me.floating)) { + me.x = x; + me.y = y; + return me.show(); + } + if (me.floating) { + me.setPosition(x, y, animate); + } else { + me.setPagePosition(x, y, animate); + } + me.show(); + }, + + + showBy: function(cmp, pos, off) { + var me = this; + + + if (me.floating && cmp) { + me.show(); + + + if (me.rendered && !me.hidden) { + + + + me.alignTo(cmp, pos || me.defaultAlign, off); + } + } + return me; + }, + + + setPagePosition: function(x, y, animate) { + var me = this, + p, + floatParentBox; + + if (Ext.isArray(x)) { + y = x[1]; + x = x[0]; + } + me.pageX = x; + me.pageY = y; + + if (me.floating) { + + + if (me.isContainedFloater()) { + floatParentBox = me.floatParent.getTargetEl().getViewRegion(); + if (Ext.isNumber(x) && Ext.isNumber(floatParentBox.left)) { + x -= floatParentBox.left; + } + if (Ext.isNumber(y) && Ext.isNumber(floatParentBox.top)) { + y -= floatParentBox.top; + } + } else { + p = me.el.translateXY(x, y); + x = p.x; + y = p.y; + } + + me.setPosition(x, y, animate); + } else { + p = me.el.translateXY(x, y); + me.setPosition(p.x, p.y, animate); + } + + return me; + }, + + + + isContainedFloater: function() { + return (this.floating && this.floatParent); + }, + + + updateBox : function(box){ + this.setSize(box.width, box.height); + this.setPagePosition(box.x, box.y); + return this; + }, + + + getOuterSize: function() { + var el = this.el; + return { + width: el.getWidth() + el.getMargin('lr'), + height: el.getHeight() + el.getMargin('tb') + }; + }, + + + adjustPosition: function(x, y) { + var me = this, + floatParentBox; + + + if (me.isContainedFloater()) { + floatParentBox = me.floatParent.getTargetEl().getViewRegion(); + x += floatParentBox.left; + y += floatParentBox.top; + } + + return { + x: x, + y: y + }; + }, + + + getPosition: function(local) { + var me = this, + xy, + isContainedFloater = me.isContainedFloater(), + floatParentBox; + + + if ((local === true) && !isContainedFloater) { + return [me.getLocalX(), me.getLocalY()]; + } + + xy = me.getXY(); + + + if ((local === true) && isContainedFloater) { + floatParentBox = me.floatParent.getTargetEl().getViewRegion(); + xy[0] -= floatParentBox.left; + xy[1] -= floatParentBox.top; + } + return xy; + }, + + getId: function() { + var me = this, + xtype; + + if (!me.id) { + xtype = me.getXType(); + if (xtype) { + xtype = xtype.replace(Ext.Component.INVALID_ID_CHARS_Re, '-'); + } else { + xtype = Ext.name.toLowerCase() + '-comp'; + } + me.id = xtype + '-' + me.getAutoId(); + } + return me.id; + }, + + + show: function(animateTarget, cb, scope) { + var me = this, + rendered = me.rendered; + + if (me.hierarchicallyHidden || (me.floating && !rendered && me.isHierarchicallyHidden())) { + + + + if (!rendered) { + + + + + + + + + + me.initHierarchyEvents(); + } + + if (arguments.length > 1) { + arguments[0] = null; + me.pendingShow = arguments; + } else { + me.pendingShow = true; + } + } else if (rendered && me.isVisible()) { + if (me.toFrontOnShow && me.floating) { + me.toFront(); + } + } else { + if (me.fireEvent('beforeshow', me) !== false) { + me.hidden = false; + delete this.getHierarchyState().hidden; + + + + + + + + + + Ext.suspendLayouts(); + if (!rendered && (me.autoRender || me.floating)) { + me.doAutoRender(); + rendered = me.rendered; + } + + if (rendered) { + me.beforeShow(); + Ext.resumeLayouts(); + me.onShow.apply(me, arguments); + me.afterShow.apply(me, arguments); + } else { + Ext.resumeLayouts(true); + } + } else { + me.onShowVeto(); + } + } + return me; + }, + + onShowVeto: Ext.emptyFn, + + + beforeShow: Ext.emptyFn, + + + onShow: function() { + var me = this; + + me.el.show(); + me.callParent(arguments); + + + if (me.floating) { + if (me.maximized) { + me.fitContainer(); + } + else if (me.constrain) { + me.doConstrain(); + } + } + }, + + getAnimateTarget: function(target){ + target = target || this.animateTarget; + if (target) { + target = target.isComponent ? target.getEl() : Ext.get(target); + } + return target || null; + }, + + + afterShow: function(animateTarget, cb, scope) { + var me = this, + myEl = me.el, + fromBox, + toBox, + ghostPanel; + + + animateTarget = me.getAnimateTarget(animateTarget); + + + if (!me.ghost) { + animateTarget = null; + } + + if (animateTarget) { + toBox = { + x: myEl.getX(), + y: myEl.getY(), + width: myEl.dom.offsetWidth, + height: myEl.dom.offsetHeight + }; + fromBox = { + x: animateTarget.getX(), + y: animateTarget.getY(), + width: animateTarget.dom.offsetWidth, + height: animateTarget.dom.offsetHeight + }; + myEl.addCls(me.offsetsCls); + ghostPanel = me.ghost(); + ghostPanel.el.stopAnimation(); + + + ghostPanel.setX(-10000); + + me.ghostBox = toBox; + ghostPanel.el.animate({ + from: fromBox, + to: toBox, + listeners: { + afteranimate: function() { + delete ghostPanel.componentLayout.lastComponentSize; + me.unghost(); + delete me.ghostBox; + myEl.removeCls(me.offsetsCls); + me.onShowComplete(cb, scope); + } + } + }); + } + else { + me.onShowComplete(cb, scope); + } + me.fireHierarchyEvent('show'); + }, + + + onShowComplete: function(cb, scope) { + var me = this; + if (me.floating) { + me.toFront(); + me.onFloatShow(); + } + Ext.callback(cb, scope || me); + me.fireEvent('show', me); + delete me.hiddenByLayout; + }, + + + hide: function(animateTarget, cb, scope) { + var me = this, + continueHide; + + if (me.pendingShow) { + + + delete me.pendingShow; + } if (!(me.rendered && !me.isVisible())) { + continueHide = (me.fireEvent('beforehide', me) !== false); + if (me.hierarchicallyHidden || continueHide) { + me.hidden = true; + me.getHierarchyState().hidden = true; + if (me.rendered) { + me.onHide.apply(me, arguments); + } + } + } + return me; + }, + + + onHide: function(animateTarget, cb, scope) { + var me = this, + ghostPanel, + fromSize, + toBox; + + + animateTarget = me.getAnimateTarget(animateTarget); + + + if (!me.ghost) { + animateTarget = null; + } + + if (animateTarget) { + toBox = { + x: animateTarget.getX(), + y: animateTarget.getY(), + width: animateTarget.dom.offsetWidth, + height: animateTarget.dom.offsetHeight + }; + ghostPanel = me.ghost(); + ghostPanel.el.stopAnimation(); + fromSize = me.getSize(); + ghostPanel.el.animate({ + to: toBox, + listeners: { + afteranimate: function() { + delete ghostPanel.componentLayout.lastComponentSize; + ghostPanel.el.hide(); + ghostPanel.el.setSize(fromSize); + me.afterHide(cb, scope); + } + } + }); + } + me.el.hide(); + if (!animateTarget) { + me.afterHide(cb, scope); + } + }, + + + afterHide: function(cb, scope) { + var me = this, + activeEl = Ext.Element.getActiveElement(); + + me.hiddenByLayout = null; + + + + Ext.AbstractComponent.prototype.onHide.call(me); + + + if (activeEl === me.el || me.el.contains(activeEl)) { + Ext.fly(activeEl).blur(); + } + + Ext.callback(cb, scope || me); + me.fireEvent('hide', me); + me.fireHierarchyEvent('hide'); + }, + + + onDestroy: function() { + var me = this; + + + if (me.rendered) { + Ext.destroy( + me.dd, + me.resizer, + me.proxy, + me.proxyWrap, + me.resizerComponent + ); + } + delete me.focusTask; + me.callParent(); + }, + + deleteMembers: function() { + var args = arguments, + len = args.length, + i = 0; + for (; i < len; ++i) { + delete this[args[i]]; + } + }, + + + focus: function(selectText, delay, callback, scope) { + var me = this, + focusEl, + focusElDom, + containerScrollTop; + + + if (delay) { + if (!me.focusTask) { + + + Ext.Component.prototype.focusTask = new Ext.util.DelayedTask(me.focus); + } + me.focusTask.delay(Ext.isNumber(delay) ? delay : 10, null, me, [selectText, false, callback, scope]); + return me; + } + + + if (me.focusTask) { + me.focusTask.cancel(); + } + + if (me.rendered && !me.isDestroyed && me.isVisible(true) && (focusEl = me.getFocusEl())) { + + + + if (focusEl.isComponent) { + return focusEl.focus(selectText, delay); + } + + + if ((focusElDom = focusEl.dom)) { + + + if (focusEl.needsTabIndex()) { + focusElDom.tabIndex = -1; + } + + if (me.floating) { + containerScrollTop = me.container.dom.scrollTop; + } + + + + + focusEl.focus(); + if (selectText === true) { + focusElDom.select(); + } + + + Ext.callback(callback, scope); + } + + + + if (me.floating) { + me.toFront(true); + if (containerScrollTop !== undefined) { + me.container.dom.scrollTop = containerScrollTop; + } + } + } + return me; + }, + + + cancelFocus: function() { + var task = this.focusTask; + if (task) { + task.cancel(); + } + }, + + + blur: function() { + var focusEl; + if (this.rendered && (focusEl = this.getFocusEl())) { + focusEl.blur(); + } + return this; + }, + + getEl: function() { + return this.el; + }, + + + getResizeEl: function() { + return this.el; + }, + + + getPositionEl: function() { + return this.el; + }, + + + getActionEl: function() { + return this.el; + }, + + + getVisibilityEl: function() { + return this.el; + }, + + + getRefOwner: function() { + return this.ownerCt || this.floatParent; + }, + + + getBubbleTarget: function() { + return this.getRefOwner(); + }, + + + getContentTarget: function() { + return this.el; + }, + + + cloneConfig: function(overrides) { + overrides = overrides || {}; + var id = overrides.id || Ext.id(), + cfg = Ext.applyIf(overrides, this.initialConfig), + self; + + cfg.id = id; + + self = Ext.getClass(this); + + + return new self(cfg); + }, + + + getXType: function() { + return this.self.xtype; + }, + + + findParentBy: function(fn) { + var p; + + + for (p = this.getBubbleTarget(); p && !fn(p, this); p = p.getBubbleTarget()) { + + } + return p || null; + }, + + + findParentByType: function(xtype) { + return Ext.isFunction(xtype) ? + this.findParentBy(function(p) { + return p.constructor === xtype; + }) + : + this.up(xtype); + }, + + + bubble: function(fn, scope, args) { + var p = this; + while (p) { + if (fn.apply(scope || p, args || [p]) === false) { + break; + } + p = p.getBubbleTarget(); + } + return this; + }, + + getProxy: function() { + var me = this, + target; + + if (!me.proxy) { + target = Ext.getBody(); + me.proxy = me.el.createProxy(Ext.baseCSSPrefix + 'proxy-el', target, true); + } + return me.proxy; + }, + + + fireHierarchyEvent: function (ename) { + this.hierarchyEventSource.fireEvent(ename, this); + }, + + onAdded: function() { + this.callParent(arguments); + if (this.hierarchyEventSource.hasListeners.added) { + this.fireHierarchyEvent('added'); + } + } +}, function () { + + this.hierarchyEventSource = this.prototype.hierarchyEventSource = new Ext.util.Observable({ events: { + hide: true, + show: true, + collapse: true, + expand: true, + added: true + }}); +}); + + +Ext.define('Ext.layout.container.border.Region', { + override: 'Ext.Component', + + + initBorderRegion: function () { + var me = this; + + if (!me._borderRegionInited) { + me._borderRegionInited = true; + + + + me.addStateEvents(['changeregion', 'changeweight']); + + + + + + Ext.override(me, { + getState: function () { + var state = me.callParent(); + + + + state = me.addPropertyToState(state, 'region'); + state = me.addPropertyToState(state, 'weight'); + + return state; + } + }); + } + }, + + + getOwningBorderContainer: function () { + var layout = this.getOwningBorderLayout(); + return layout && layout.owner; + }, + + + getOwningBorderLayout: function () { + + var layout = this.ownerLayout; + return (layout && layout.isBorderLayout) ? layout : null; + }, + + + setBorderRegion: function (region) { + var me = this, + borderLayout, + old = me.region; + + if (region !== old) { + borderLayout = me.getOwningBorderLayout(); + if (borderLayout) { + var regionFlags = borderLayout.regionFlags[region], + placeholder = me.placeholder, + splitter = me.splitter, + owner = borderLayout.owner, + regionMeta = borderLayout.regionMeta, + collapsed = me.collapsed || me.floated, + delta, items, index; + + if (me.fireEventArgs('beforechangeregion', [me, region]) === false) { + return old; + } + Ext.suspendLayouts(); + + me.region = region; + Ext.apply(me, regionFlags); + + if (me.updateCollapseTool) { + me.updateCollapseTool(); + } + + if (splitter) { + + Ext.apply(splitter, regionFlags); + splitter.updateOrientation(); + + items = owner.items; + index = items.indexOf(me); + if (index >= 0) { + delta = regionMeta[region].splitterDelta; + if (items.getAt(index + delta) !== splitter) { + + items.remove(splitter); + index = items.indexOf(me); + if (delta > 0) { + ++index; + } + + items.insert(index, splitter); + + + + + } + } + } + if (placeholder) { + + + + + if (collapsed) { + me.expand(false); + } + + owner.remove(placeholder); + me.placeholder = null; + + if (collapsed) { + me.collapse(null, false); + } + } + + owner.updateLayout(); + Ext.resumeLayouts(true); + + me.fireEventArgs('changeregion', [me, old]); + } else { + me.region = region; + } + } + + return old; + }, + + + setRegionWeight: function (weight) { + var me = this, + ownerCt = me.getOwningBorderContainer(), + placeholder = me.placeholder, + old = me.weight; + + if (weight !== old) { + if (me.fireEventArgs('beforechangeweight', [me, weight]) !== false) { + me.weight = weight; + if (placeholder) { + placeholder.weight = weight; + } + if (ownerCt) { + ownerCt.updateLayout(); + } + me.fireEventArgs('changeweight', [me, old]); + } + } + + return old; + } +}); + + +Ext.define('Ext.ElementLoader', { + + + + mixins: { + observable: Ext.util.Observable + }, + + + + + + + statics: { + Renderer: { + Html: function(loader, response, active){ + loader.getTarget().update(response.responseText, active.scripts === true); + return true; + } + } + }, + + + + + url: null, + + + params: null, + + + baseParams: null, + + + autoLoad: false, + + + target: null, + + + loadMask: false, + + + ajaxOptions: null, + + + scripts: false, + + + + + + + + + + + + + isLoader: true, + + constructor: function(config) { + var me = this, + autoLoad; + + config = config || {}; + Ext.apply(me, config); + me.setTarget(me.target); + me.addEvents( + + 'beforeload', + + + 'exception', + + + 'load' + ); + + + me.mixins.observable.constructor.call(me); + + if (me.autoLoad) { + autoLoad = me.autoLoad; + if (autoLoad === true) { + autoLoad = {}; + } + me.load(autoLoad); + } + }, + + + setTarget: function(target){ + var me = this; + target = Ext.get(target); + if (me.target && me.target != target) { + me.abort(); + } + me.target = target; + }, + + + getTarget: function(){ + return this.target || null; + }, + + + abort: function(){ + var active = this.active; + if (active !== undefined) { + Ext.Ajax.abort(active.request); + if (active.mask) { + this.removeMask(); + } + delete this.active; + } + }, + + + removeMask: function(){ + this.target.unmask(); + }, + + + addMask: function(mask){ + this.target.mask(mask === true ? null : mask); + }, + + + load: function(options) { + + options = Ext.apply({}, options); + + var me = this, + mask = Ext.isDefined(options.loadMask) ? options.loadMask : me.loadMask, + params = Ext.apply({}, options.params), + ajaxOptions = Ext.apply({}, options.ajaxOptions), + callback = options.callback || me.callback, + scope = options.scope || me.scope || me; + + Ext.applyIf(ajaxOptions, me.ajaxOptions); + Ext.applyIf(options, ajaxOptions); + + Ext.applyIf(params, me.params); + Ext.apply(params, me.baseParams); + + Ext.applyIf(options, { + url: me.url + }); + + + Ext.apply(options, { + scope: me, + params: params, + callback: me.onComplete + }); + + if (me.fireEvent('beforeload', me, options) === false) { + return; + } + + if (mask) { + me.addMask(mask); + } + + me.active = { + options: options, + mask: mask, + scope: scope, + callback: callback, + success: options.success || me.success, + failure: options.failure || me.failure, + renderer: options.renderer || me.renderer, + scripts: Ext.isDefined(options.scripts) ? options.scripts : me.scripts + }; + me.active.request = Ext.Ajax.request(options); + me.setOptions(me.active, options); + }, + + + setOptions: Ext.emptyFn, + + + onComplete: function(options, success, response) { + var me = this, + active = me.active, + scope; + + if (active) { + scope = active.scope; + if (success) { + success = me.getRenderer(active.renderer).call(me, me, response, active) !== false; + } + + if (success) { + Ext.callback(active.success, scope, [me, response, options]); + me.fireEvent('load', me, response, options); + } else { + Ext.callback(active.failure, scope, [me, response, options]); + me.fireEvent('exception', me, response, options); + } + Ext.callback(active.callback, scope, [me, success, response, options]); + if (active.mask) { + me.removeMask(); + } + } + + delete me.active; + }, + + + getRenderer: function(renderer){ + if (Ext.isFunction(renderer)) { + return renderer; + } + return this.statics().Renderer.Html; + }, + + + startAutoRefresh: function(interval, options){ + var me = this; + me.stopAutoRefresh(); + me.autoRefresh = setInterval(function(){ + me.load(options); + }, interval); + }, + + + stopAutoRefresh: function(){ + clearInterval(this.autoRefresh); + delete this.autoRefresh; + }, + + + isAutoRefreshing: function(){ + return Ext.isDefined(this.autoRefresh); + }, + + + destroy: function(){ + var me = this; + me.stopAutoRefresh(); + delete me.target; + me.abort(); + me.clearListeners(); + } +}); + + +Ext.define('Ext.ComponentLoader', { + + + + extend: Ext.ElementLoader , + + statics: { + Renderer: { + Data: function(loader, response, active){ + var success = true; + try { + loader.getTarget().update(Ext.decode(response.responseText)); + } catch (e) { + success = false; + } + return success; + }, + + Component: function(loader, response, active){ + var success = true, + target = loader.getTarget(), + items = []; + + + try { + items = Ext.decode(response.responseText); + } catch (e) { + success = false; + } + + if (success) { + target.suspendLayouts(); + if (active.removeAll) { + target.removeAll(); + } + target.add(items); + target.resumeLayouts(true); + } + return success; + } + } + }, + + + + + target: null, + + + loadMask: false, + + + + + renderer: 'html', + + + setTarget: function(target){ + var me = this; + + if (Ext.isString(target)) { + target = Ext.getCmp(target); + } + + if (me.target && me.target != target) { + me.abort(); + } + me.target = target; + }, + + + removeMask: function(){ + this.target.setLoading(false); + }, + + + addMask: function(mask){ + this.target.setLoading(mask); + }, + + + setOptions: function(active, options){ + active.removeAll = Ext.isDefined(options.removeAll) ? options.removeAll : this.removeAll; + }, + + + getRenderer: function(renderer){ + if (Ext.isFunction(renderer)) { + return renderer; + } + + var renderers = this.statics().Renderer; + switch (renderer) { + case 'component': + return renderers.Component; + case 'data': + return renderers.Data; + default: + return Ext.ElementLoader.Renderer.Html; + } + } +}); + + +Ext.define('Ext.layout.SizeModel', { + constructor: function (config) { + var me = this, + SizeModel = me.self, + sizeModelsArray = SizeModel.sizeModelsArray, + name; + + Ext.apply(me, config); + + me[name = me.name] = true; + + me.fixed = !(me.auto = me.natural || me.shrinkWrap); + + + sizeModelsArray[me.ordinal = sizeModelsArray.length] = + SizeModel[name] = + SizeModel.sizeModels[name] = me; + }, + + statics: { + + sizeModelsArray: [], + + + sizeModels: {} + }, + + + + + + + calculated: false, + + + configured: false, + + + constrainedMax: false, + + + constrainedMin: false, + + + + + natural: false, + + + shrinkWrap: false, + + + calculatedFromConfigured: false, + + + calculatedFromNatural: false, + + + calculatedFromShrinkWrap: false, + + + names: null +}, +function () { + var SizeModel = this, + sizeModelsArray = SizeModel.sizeModelsArray, + i, j, n, pairs, sizeModel; + + + + + new SizeModel({ + name: 'calculated' + }); + + new SizeModel({ + name: 'configured', + names: { width: 'width', height: 'height' } + }); + + new SizeModel({ + name: 'natural' + }); + + new SizeModel({ + name: 'shrinkWrap' + }); + + + + + + new SizeModel({ + name: 'calculatedFromConfigured', + configured: true, + names: { width: 'width', height: 'height' } + }); + + new SizeModel({ + name: 'calculatedFromNatural', + natural: true + }); + + new SizeModel({ + name: 'calculatedFromShrinkWrap', + shrinkWrap: true + }); + + new SizeModel({ + name: 'constrainedMax', + configured: true, + constrained: true, + names: { width: 'maxWidth', height: 'maxHeight' } + }); + + new SizeModel({ + name: 'constrainedMin', + configured: true, + constrained: true, + names: { width: 'minWidth', height: 'minHeight' } + }); + + new SizeModel({ + name: 'constrainedDock', + configured: true, + constrained: true, + constrainedByMin: true, + names: { width: 'dockConstrainedWidth', height: 'dockConstrainedHeight' } + }); + + for (i = 0, n = sizeModelsArray.length; i < n; ++i) { + sizeModel = sizeModelsArray[i]; + + + sizeModel.pairsByHeightOrdinal = pairs = []; + + for (j = 0; j < n; ++j) { + pairs.push({ + width: sizeModel, + height: sizeModelsArray[j] + }); + } + } +}); + + +Ext.define('Ext.layout.Layout', { + + + + + + + + + isLayout: true, + initialized: false, + running: false, + + autoSizePolicy: { + readsWidth: 1, + readsHeight: 1, + setsWidth: 0, + setsHeight: 0 + }, + + statics: { + layoutsByType: {}, + + create: function(layout, defaultType) { + var ClassManager = Ext.ClassManager, + layoutsByType = this.layoutsByType, + alias, className, config, layoutClass, type, load; + + if (!layout || typeof layout === 'string') { + type = layout || defaultType; + config = {}; + } else if (layout.isLayout) { + return layout; + } else { + config = layout; + type = layout.type || defaultType; + } + + if (!(layoutClass = layoutsByType[type])) { + alias = 'layout.' + type; + className = ClassManager.getNameByAlias(alias); + + + if (!className) { + load = true; + } + + layoutClass = ClassManager.get(className); + if (load || !layoutClass) { + return ClassManager.instantiateByAlias(alias, config || {}); + } + layoutsByType[type] = layoutClass; + } + + return new layoutClass(config); + } + }, + + constructor : function(config) { + var me = this; + + me.id = Ext.id(null, me.type + '-'); + Ext.apply(me, config); + me.layoutCount = 0; + }, + + + + + beginLayout: Ext.emptyFn, + + + beginLayoutCycle: function (ownerContext) { + var me = this, + context = me.context, + changed; + + if (me.lastWidthModel != ownerContext.widthModel) { + if (me.lastWidthModel) { + changed = true; + } + me.lastWidthModel = ownerContext.widthModel; + } + + if (me.lastHeightModel != ownerContext.heightModel) { + if (me.lastWidthModel) { + changed = true; + } + me.lastHeightModel = ownerContext.heightModel; + } + + if (changed) { + (context = ownerContext.context).clearTriggers(me, false); + context.clearTriggers(me, true); + me.triggerCount = 0; + } + }, + + + + + + + + + finishedLayout: function (ownerContext) { + this.lastWidthModel = ownerContext.widthModel; + this.lastHeightModel = ownerContext.heightModel; + this.ownerContext = null; + }, + + + + redoLayout: Ext.emptyFn, + undoLayout: Ext.emptyFn, + + getAnimatePolicy: function() { + return this.animatePolicy; + }, + + + getItemSizePolicy: function (item) { + return this.autoSizePolicy; + }, + + isItemBoxParent: function (itemContext) { + return false; + }, + + isItemLayoutRoot: function (item) { + var sizeModel = item.getSizeModel(), + width = sizeModel.width, + height = sizeModel.height; + + + + if (!item.componentLayout.lastComponentSize && (width.calculated || height.calculated)) { + return false; + } + + + return !width.shrinkWrap && !height.shrinkWrap; + }, + + isItemShrinkWrap: function (item) { + return item.shrinkWrap; + }, + + isRunning: function () { + return !!this.ownerContext; + }, + + + + + + getItemsRenderTree: function (items, renderCfgs) { + var length = items.length, + i, item, itemConfig, result; + + if (length) { + result = []; + for (i = 0; i < length; ++i) { + item = items[i]; + + + + if (!item.rendered) { + + + + + + + if (renderCfgs && (renderCfgs[item.id] !== undefined)) { + itemConfig = renderCfgs[item.id]; + } else { + + this.configureItem(item); + itemConfig = item.getRenderTree(); + if (renderCfgs) { + renderCfgs[item.id] = itemConfig; + } + } + + + if (itemConfig) { + result.push(itemConfig); + } + } + } + } + + return result; + }, + + finishRender: Ext.emptyFn, + + finishRenderItems: function (target, items) { + var length = items.length, + i, item; + + for (i = 0; i < length; i++) { + item = items[i]; + + + if (item.rendering) { + + + item.finishRender(i); + + this.afterRenderItem(item); + } + } + }, + + renderChildren: function () { + var me = this, + items = me.getLayoutItems(), + target = me.getRenderTarget(); + + me.renderItems(items, target); + }, + + + renderItems : function(items, target) { + var me = this, + ln = items.length, + i = 0, + item; + + if (ln) { + Ext.suspendLayouts(); + for (; i < ln; i++) { + item = items[i]; + if (item && !item.rendered) { + me.renderItem(item, target, i); + } else if (!me.isValidParent(item, target, i)) { + me.moveItem(item, target, i); + } else { + + me.configureItem(item); + } + } + Ext.resumeLayouts(true); + } + }, + + + isValidParent : function(item, target, position) { + var itemDom = item.el ? item.el.dom : Ext.getDom(item), + targetDom = (target && target.dom) || target, + parentNode = itemDom.parentNode, + className; + + + if (parentNode) { + className = parentNode.className; + if (className && className.indexOf(Ext.baseCSSPrefix + 'resizable-wrap') !== -1) { + itemDom = itemDom.parentNode; + } + } + + + if (itemDom && targetDom) { + if (typeof position == 'number') { + position = this.getPositionOffset(position); + return itemDom === targetDom.childNodes[position]; + } + return itemDom.parentNode === targetDom; + } + + return false; + }, + + getPositionOffset: function(position){ + return position; + }, + + + configureItem: function(item) { + item.ownerLayout = this; + }, + + + renderItem : function(item, target, position) { + var me = this; + if (!item.rendered) { + me.configureItem(item); + item.render(target, position); + me.afterRenderItem(item); + } + }, + + + moveItem : function(item, target, position) { + target = target.dom || target; + if (typeof position == 'number') { + position = target.childNodes[position]; + } + target.insertBefore(item.el.dom, position || null); + item.container = Ext.get(target); + this.configureItem(item); + }, + + + onContentChange: function () { + this.owner.updateLayout(); + return true; + }, + + + initLayout : function() { + this.initialized = true; + }, + + + setOwner : function(owner) { + this.owner = owner; + }, + + + getLayoutItems : function() { + return []; + }, + + onAdd: function (item) { + item.ownerLayout = this; + }, + afterRenderItem: Ext.emptyFn, + onRemove : Ext.emptyFn, + onDestroy : Ext.emptyFn, + + + afterRemove : function(item) { + var me = this, + el = item.el, + owner = me.owner, + removeClasses; + + if (item.rendered) { + removeClasses = [].concat(me.itemCls || []); + if (owner.itemCls) { + removeClasses = Ext.Array.push(removeClasses, owner.itemCls); + } + if (removeClasses.length) { + el.removeCls(removeClasses); + } + } + + delete item.ownerLayout; + }, + + + destroy : function() { + var me = this, + target; + + if (me.targetCls) { + target = me.getTarget(); + if (target) { + target.removeCls(me.targetCls); + } + } + + me.onDestroy(); + }, + + sortWeightedItems: function (items, reverseProp) { + for (var i = 0, length = items.length; i < length; ++i) { + items[i].$i = i; + } + + Ext.Array.sort(items, function (item1, item2) { + var ret = item2.weight - item1.weight; + + if (!ret) { + ret = item1.$i - item2.$i; + if (item1[reverseProp]) { + ret = -ret; + } + } + + return ret; + }); + + for (i = 0; i < length; ++i) { + delete items[i].$i; + } + } +}, function () { + var Layout = this; + + Layout.prototype.sizeModels = Layout.sizeModels = Ext.layout.SizeModel.sizeModels; +}); + + +Ext.define('Ext.layout.container.Container', { + + + + alias: ['layout.container'], + + extend: Ext.layout.Layout , + + alternateClassName: 'Ext.layout.ContainerLayout', + + mixins: { + elementCt: Ext.util.ElementContainer + }, + + + + + + type: 'container', + + + + + + + beginCollapse: Ext.emptyFn, + + + beginExpand: Ext.emptyFn, + + + animatePolicy: null, + + childEls: [ + + 'overflowPadderEl' + ], + + renderTpl: [ + '{%this.renderBody(out,values)%}' + ], + + usesContainerHeight: true, + usesContainerWidth: true, + usesHeight: true, + usesWidth: true, + + constructor: function () { + this.callParent(arguments); + this.mixins.elementCt.constructor.call(this); + }, + + destroy : function() { + this.callParent(); + this.mixins.elementCt.destroy.call(this); + }, + + + beginLayout: function (ownerContext) { + this.callParent(arguments); + + ownerContext.targetContext = ownerContext.paddingContext = ownerContext.getEl('getTarget', this); + + this.cacheChildItems(ownerContext); + }, + + beginLayoutCycle: function (ownerContext, firstCycle) { + var me = this; + + me.callParent(arguments); + + if (firstCycle) { + if (me.usesContainerHeight) { + ++ownerContext.consumersContainerHeight; + } + if (me.usesContainerWidth) { + ++ownerContext.consumersContainerWidth; + } + } + }, + + cacheChildItems: function (ownerContext) { + var context = ownerContext.context, + childItems = [], + items = this.getVisibleItems(), + length = items.length, + i; + + ownerContext.childItems = childItems; + ownerContext.visibleItems = items; + + for (i = 0; i < length; ++i) { + childItems.push(context.getCmp(items[i])); + } + }, + + cacheElements: function () { + var owner = this.owner; + + this.applyChildEls(owner.el, owner.id); + }, + + + configureItem: function(item) { + var me = this, + itemCls = me.itemCls, + ownerItemCls = me.owner.itemCls, + addClasses; + + + item.ownerLayout = me; + + if (itemCls) { + + addClasses = typeof itemCls === 'string' ? [itemCls] : itemCls; + } + if (ownerItemCls) { + addClasses = Ext.Array.push(addClasses||[], ownerItemCls); + } + if (addClasses) { + item.addCls(addClasses); + } + }, + + doRenderBody: function (out, renderData) { + + + + this.renderItems(out, renderData); + this.renderContent(out, renderData); + }, + + doRenderContainer: function (out, renderData) { + + + + var me = renderData.$comp.layout, + tpl = me.getRenderTpl(), + data = me.getRenderData(); + + tpl.applyOut(data, out); + }, + + doRenderItems: function (out, renderData) { + + + + var me = renderData.$layout, + tree = me.getRenderTree(); + + if (tree) { + Ext.DomHelper.generateMarkup(tree, out); + } + }, + + finishRender: function () { + var me = this, + target, items; + + me.callParent(); + + me.cacheElements(); + + target = me.getRenderTarget(); + items = me.getLayoutItems(); + + + me.finishRenderItems(target, items); + }, + + + notifyOwner: function() { + this.owner.afterLayout(this); + }, + + + getContainerSize : function(ownerContext, inDom) { + + + + + + + var targetContext = ownerContext.targetContext, + frameInfo = targetContext.getFrameInfo(), + padding = ownerContext.paddingContext.getPaddingInfo(), + got = 0, + needed = 0, + gotWidth, gotHeight, width, height; + + + + + + + + + + if (!ownerContext.widthModel.shrinkWrap) { + ++needed; + width = inDom ? targetContext.getDomProp('width') : targetContext.getProp('width'); + gotWidth = (typeof width == 'number'); + if (gotWidth) { + ++got; + width -= frameInfo.width + padding.width; + if (width < 0) { + width = 0; + } + } + } + + if (!ownerContext.heightModel.shrinkWrap) { + ++needed; + height = inDom ? targetContext.getDomProp('height') : targetContext.getProp('height'); + gotHeight = (typeof height == 'number'); + if (gotHeight) { + ++got; + height -= frameInfo.height + padding.height; + if (height < 0) { + height = 0; + } + } + } + + return { + width: width, + height: height, + needed: needed, + got: got, + gotAll: got == needed, + gotWidth: gotWidth, + gotHeight: gotHeight + }; + }, + + + + + + + + + + getPositionOffset: function(position) { + if (!this.createsInnerCt) { + var offset = this.owner.itemNodeOffset; + if (offset) { + position += offset; + } + } + return position; + }, + + + getLayoutItems: function() { + var owner = this.owner, + items = owner && owner.items; + + return (items && items.items) || []; + }, + + getRenderData: function () { + var comp = this.owner; + + return { + $comp: comp, + $layout: this, + ownerId: comp.id + }; + }, + + + getRenderedItems: function() { + var me = this, + target = me.getRenderTarget(), + items = me.getLayoutItems(), + ln = items.length, + renderedItems = [], + i, item; + + for (i = 0; i < ln; i++) { + item = items[i]; + if (item.rendered && me.isValidParent(item, target, i)) { + renderedItems.push(item); + } + } + + return renderedItems; + }, + + + getRenderTarget: function() { + return this.owner.getTargetEl(); + }, + + + getElementTarget: function() { + return this.getRenderTarget(); + }, + + getRenderTpl: function () { + var me = this, + renderTpl = Ext.XTemplate.getTpl(this, 'renderTpl'); + + + + if (!renderTpl.renderContent) { + me.owner.setupRenderTpl(renderTpl); + } + + return renderTpl; + }, + + getRenderTree: function () { + var result, + items = this.owner.items, + itemsGen, + renderCfgs = {}; + + do { + itemsGen = items.generation; + result = this.getItemsRenderTree(this.getLayoutItems(), renderCfgs); + } while (items.generation !== itemsGen); + return result; + }, + + renderChildren: function () { + var me = this, + ownerItems = me.owner.items, + target = me.getRenderTarget(), + itemsGen, items; + + + + + do { + itemsGen = ownerItems.generation; + items = me.getLayoutItems(); + me.renderItems(items, target); + } while (ownerItems.generation !== itemsGen); + }, + + getScrollbarsNeeded: function (width, height, contentWidth, contentHeight) { + var scrollbarSize = Ext.getScrollbarSize(), + hasWidth = typeof width == 'number', + hasHeight = typeof height == 'number', + needHorz = 0, + needVert = 0; + + + if (!scrollbarSize.width) { + return 0; + } + if (hasHeight && height < contentHeight) { + needVert = 2; + width -= scrollbarSize.width; + } + + if (hasWidth && width < contentWidth) { + needHorz = 1; + if (!needVert && hasHeight) { + height -= scrollbarSize.height; + if (height < contentHeight) { + needVert = 2; + } + } + } + + return needVert + needHorz; + }, + + + getTarget: function() { + return this.owner.getTargetEl(); + }, + + + getVisibleItems: function() { + var target = this.getRenderTarget(), + items = this.getLayoutItems(), + ln = items.length, + visibleItems = [], + i, item; + + for (i = 0; i < ln; i++) { + item = items[i]; + if (item.rendered && this.isValidParent(item, target, i) && item.hidden !== true) { + visibleItems.push(item); + } + } + + return visibleItems; + }, + + setupRenderTpl: function (renderTpl) { + var me = this; + + renderTpl.renderBody = me.doRenderBody; + renderTpl.renderContainer = me.doRenderContainer; + renderTpl.renderItems = me.doRenderItems; + }, + + getContentTarget: function(){ + return this.owner.getDefaultContentTarget(); + } + +}); + + +Ext.define('Ext.layout.container.Auto', { + + + + alias: ['layout.auto', 'layout.autocontainer'], + + extend: Ext.layout.container.Container , + + + + type: 'autocontainer', + + childEls: [ + 'outerCt', + 'innerCt', + 'clearEl' + ], + + + reserveScrollbar: false, + + + managePadding: true, + + + manageOverflow: false, + + + lastOverflowAdjust: { + width: 0, + height: 0 + }, + + + + + + + + + + + + + + renderTpl: [ + '{% if (!(Ext.isIEQuirks || Ext.isIE7m)) { %}', + + + + + + + + '', + + + '
', + '{%this.renderBody(out,values)%}', + '
', + '
', + '{% } else if (values.shrinkWrapWidth) { %}', + + + + '', + '', + '', + '', + '
', + '{%this.renderBody(out,values)%}', + + '
', + '
', + '{% } else { %}', + + + + + + + '
', + '
', + '{%this.renderBody(out,values)%}', + + '
', + '
', + '
', + + '{% values.$layout.isShrinkWrapTpl = false %}', + '{% } %}' + ], + + + + + + tableTpl: [ + '', + '', + '', + '', + '
', + '
' + ], + + isShrinkWrapTpl: true, + + + beginLayout: function(ownerContext) { + var me = this, + bottomPadding, overflowYStyle, overflowXStyle, needsTable; + + me.callParent(arguments); + + me.initContextItems(ownerContext); + + if (!me.isShrinkWrapTpl) { + + + + + if (ownerContext.widthModel.shrinkWrap) { + needsTable = true; + } + + + + if (Ext.isStrict && Ext.isIE7) { + overflowXStyle = me.getOverflowXStyle(ownerContext); + if ((overflowXStyle === 'auto' || overflowXStyle === 'scroll') && + ownerContext.paddingContext.getPaddingInfo().right) { + needsTable = true; + } + } + + if (needsTable) { + me.insertTableCt(ownerContext); + } + } + + + + + if (!me.isShrinkWrapTpl && Ext.isIE7 && Ext.isStrict && !me.clearElHasPadding) { + bottomPadding = ownerContext.paddingContext.getPaddingInfo().bottom; + overflowYStyle = me.getOverflowYStyle(ownerContext); + if (bottomPadding && (overflowYStyle === 'auto' || overflowYStyle === 'scroll')) { + me.clearEl.setStyle('height', bottomPadding); + me.clearElHasPadding = true; + } + } + }, + + beforeLayoutCycle: function(ownerContext){ + var comp = this.owner, + hierarchyState = comp.hierarchyState, + hierarchyStateInner = comp.hierarchyStateInner; + + if (!hierarchyState || hierarchyState.invalid) { + hierarchyState = comp.getHierarchyState(); + hierarchyStateInner = comp.hierarchyStateInner; + } + if (ownerContext.widthModel.shrinkWrap && this.isShrinkWrapTpl) { + hierarchyStateInner.inShrinkWrapTable = true; + } else { + delete hierarchyStateInner.inShrinkWrapTable; + } + }, + + beginLayoutCycle: function(ownerContext) { + var me = this, + outerCt = me.outerCt, + lastOuterCtWidth = me.lastOuterCtWidth || '', + lastOuterCtHeight = me.lastOuterCtHeight || '', + lastOuterCtTableLayout = me.lastOuterCtTableLayout || '', + state = ownerContext.state, + overflowXStyle, overflowYStyle, outerCtWidth, outerCtHeight, outerCtTableLayout, + deferWidth, hierarchyStateInner; + + me.callParent(arguments); + + + outerCtWidth = outerCtHeight = outerCtTableLayout = ''; + + if (!ownerContext.widthModel.shrinkWrap && me.isShrinkWrapTpl) { + + + + if (Ext.isIE7m && Ext.isStrict) { + overflowYStyle = me.getOverflowYStyle(ownerContext); + if (overflowYStyle === 'auto' || overflowYStyle === 'scroll') { + + + + deferWidth = true; + } + } + + if (!deferWidth) { + + outerCtWidth = '100%'; + } + hierarchyStateInner = me.owner.hierarchyStateInner; + + + + overflowXStyle = me.getOverflowXStyle(ownerContext); + outerCtTableLayout = (hierarchyStateInner.inShrinkWrapTable || + overflowXStyle === 'auto' || + overflowXStyle === 'scroll') ? '' : 'fixed'; + } + + if (!ownerContext.heightModel.shrinkWrap && + !Ext.supports.PercentageHeightOverflowBug) { + + + + + + outerCtHeight = '100%'; + } + + + + + if ((outerCtWidth !== lastOuterCtWidth) || me.hasOuterCtPxWidth) { + outerCt.setStyle('width', outerCtWidth); + me.lastOuterCtWidth = outerCtWidth; + me.hasOuterCtPxWidth = false; + } + + + if (outerCtTableLayout !== lastOuterCtTableLayout) { + outerCt.setStyle('table-layout', outerCtTableLayout); + me.lastOuterCtTableLayout = outerCtTableLayout; + } + + + + + if ((outerCtHeight !== lastOuterCtHeight) || me.hasOuterCtPxHeight) { + outerCt.setStyle('height', outerCtHeight); + me.lastOuterCtHeight = outerCtHeight; + me.hasOuterCtPxHeight = false; + } + + if (me.hasInnerCtPxHeight) { + me.innerCt.setStyle('height', ''); + me.hasInnerCtPxHeight = false; + } + + + + + state.overflowAdjust = state.overflowAdjust || me.lastOverflowAdjust; + }, + + calculate: function(ownerContext) { + var me = this, + state = ownerContext.state, + containerSize = me.getContainerSize(ownerContext, true), + + calculatedItems = state.calculatedItems || + (state.calculatedItems = me.calculateItems ? + me.calculateItems(ownerContext, containerSize) : true); + + me.setCtSizeIfNeeded(ownerContext, containerSize); + + if (calculatedItems && ownerContext.hasDomProp('containerChildrenSizeDone')) { + + me.calculateContentSize(ownerContext); + + if (containerSize.gotAll) { + if (me.manageOverflow && !ownerContext.state.secondPass && !me.reserveScrollbar) { + me.calculateOverflow(ownerContext, containerSize); + } + return; + } + } + + me.done = false; + }, + + calculateContentSize: function (ownerContext) { + var me = this, + containerDimensions = ((ownerContext.widthModel.shrinkWrap ? 1 : 0) | + (ownerContext.heightModel.shrinkWrap ? 2 : 0)), + calcWidth = (containerDimensions & 1) || undefined, + calcHeight = (containerDimensions & 2) || undefined, + needed = 0, + props = ownerContext.props; + + if (calcWidth) { + if (isNaN(props.contentWidth)) { + ++needed; + } else { + calcWidth = undefined; + } + } + if (calcHeight) { + if (isNaN(props.contentHeight)) { + ++needed; + } else { + calcHeight = undefined; + } + } + + if (needed) { + if (calcWidth && !ownerContext.setContentWidth(me.measureContentWidth(ownerContext))) { + me.done = false; + } + if (calcHeight && !ownerContext.setContentHeight(me.measureContentHeight(ownerContext))) { + me.done = false; + } + + + + + + + } + }, + + + calculateOverflow: function (ownerContext) { + var me = this, + width, height, scrollbarSize, scrollbars, xauto, yauto, targetEl; + + + + xauto = (me.getOverflowXStyle(ownerContext) === 'auto'); + yauto = (me.getOverflowYStyle(ownerContext) === 'auto'); + + if (xauto || yauto) { + scrollbarSize = Ext.getScrollbarSize(); + targetEl = ownerContext.overflowContext.el.dom; + scrollbars = 0; + + if (targetEl.scrollWidth > targetEl.clientWidth) { + + scrollbars |= 1; + } + + if (targetEl.scrollHeight > targetEl.clientHeight) { + + scrollbars |= 2; + } + + width = (yauto && (scrollbars & 2)) ? scrollbarSize.width : 0; + height = (xauto && (scrollbars & 1)) ? scrollbarSize.height : 0; + + if (width !== me.lastOverflowAdjust.width || height !== me.lastOverflowAdjust.height) { + me.done = false; + + + + ownerContext.invalidate({ + state: { + overflowAdjust: { + width: width, + height: height + }, + overflowState: scrollbars, + secondPass: true + } + }); + } + } + }, + + completeLayout: function(ownerContext) { + this.lastOverflowAdjust = ownerContext.state.overflowAdjust; + }, + + doRenderPadding: function(out, renderData) { + + + + var me = renderData.$layout, + owner = renderData.$layout.owner, + padding = owner[owner.contentPaddingProperty]; + + if (me.managePadding && padding) { + out.push('padding:', owner.unitizeBox(padding)); + } + }, + + finishedLayout: function (ownerContext) { + var innerCt = this.innerCt; + + this.callParent(arguments); + + if (Ext.isIEQuirks || Ext.isIE8m) { + + + + innerCt.repaint(); + } + + if (Ext.isOpera) { + + + + innerCt.setStyle('position', 'relative'); + innerCt.dom.scrollWidth; + innerCt.setStyle('position', ''); + } + }, + + + getContainerSize : function(ownerContext, inDom) { + + + + + + + var size = this.callParent(arguments), + overflowAdjust = ownerContext.state.overflowAdjust; + + if (overflowAdjust) { + size.width -= overflowAdjust.width; + size.height -= overflowAdjust.height; + } + + return size; + }, + + getRenderData: function() { + var owner = this.owner, + data = this.callParent(); + + + + + + + + + + + + + + + + + + + + if ((Ext.isIEQuirks || Ext.isIE7m) && + ((owner.shrinkWrap & 1) || + (owner.floating && !owner.width))) { + data.shrinkWrapWidth = true; + } + + return data; + }, + + + + getRenderTarget: function() { + return this.innerCt; + }, + + + + getElementTarget: function() { + return this.innerCt; + }, + + + getOverflowXStyle: function(ownerContext) { + return ownerContext.overflowXStyle || + (ownerContext.overflowXStyle = this.owner.scrollFlags.overflowX || ownerContext.overflowContext.getStyle('overflow-x')); + }, + + + getOverflowYStyle: function(ownerContext) { + return ownerContext.overflowYStyle || + (ownerContext.overflowYStyle = this.owner.scrollFlags.overflowY || ownerContext.overflowContext.getStyle('overflow-y')); + }, + + initContextItems: function(ownerContext) { + var me = this, + target = ownerContext.target, + customOverflowEl = me.owner.customOverflowEl; + + ownerContext.outerCtContext = ownerContext.getEl('outerCt', me); + ownerContext.innerCtContext = ownerContext.getEl('innerCt', me); + + if (customOverflowEl) { + ownerContext.overflowContext = ownerContext.getEl(customOverflowEl); + } else { + ownerContext.overflowContext = ownerContext.targetContext; + } + + if (target[target.contentPaddingProperty] !== undefined) { + + + + + + ownerContext.paddingContext = me.isShrinkWrapTpl ? + ownerContext.innerCtContext : ownerContext.outerCtContext; + } + }, + + initLayout: function() { + var me = this, + scrollbarWidth = Ext.getScrollbarSize().width, + owner = me.owner; + + me.callParent(); + + + + + if (scrollbarWidth && me.manageOverflow && !me.hasOwnProperty('lastOverflowAdjust')) { + if (owner.autoScroll || me.reserveScrollbar) { + me.lastOverflowAdjust = { + width: scrollbarWidth, + height: 0 + }; + } + } + }, + + + insertTableCt: function(ownerContext) { + var me = this, + owner = me.owner, + i = 0, + renderTpl, fragment, childNodes, childLength, targetEl; + + + renderTpl = Ext.XTemplate.getTpl(this, 'tableTpl'); + renderTpl.renderPadding = me.doRenderPadding + + + + me.outerCt.dom.removeChild(me.innerCt.dom); + + + fragment = document.createDocumentFragment(); + childNodes = me.innerCt.dom.childNodes; + childLength = childNodes.length; + + for (; i < childLength; i++) { + fragment.appendChild(childNodes[0]); + } + + targetEl = me.getTarget(); + targetEl.dom.innerHTML = renderTpl.apply({ + $layout: me, + ownerId: me.owner.id + }); + + + targetEl.down('td').dom.appendChild(fragment); + + + + me.applyChildEls(owner.el, owner.id) + + + + me.isShrinkWrapTpl = true; + + ownerContext.removeEl(me.outerCt); + ownerContext.removeEl(me.innerCt); + me.initContextItems(ownerContext); + }, + + measureContentHeight: function (ownerContext) { + + var contentHeight = this.outerCt.getHeight(), + target = ownerContext.target; + + if (this.managePadding && (target[target.contentPaddingProperty] === undefined)) { + + + + + contentHeight += ownerContext.targetContext.getPaddingInfo().height; + } + return contentHeight; + }, + + measureContentWidth: function (ownerContext) { + var dom, style, old, contentWidth, target; + + + + + if (this.chromeCellMeasureBug) { + dom = this.innerCt.dom; + style = dom.style; + old = style.display; + + if (old == 'table-cell') { + style.display = ''; + dom.offsetWidth; + style.display = old; + } + } + + + contentWidth = this.outerCt.getWidth(); + target = ownerContext.target; + + if (this.managePadding && (target[target.contentPaddingProperty] === undefined)) { + + + + + contentWidth += ownerContext.targetContext.getPaddingInfo().width; + } + return contentWidth; + }, + + + setCtSizeIfNeeded: function(ownerContext, containerSize) { + var me = this, + width = containerSize.width, + height = containerSize.height, + padding = ownerContext.paddingContext.getPaddingInfo(), + targetEl = me.getTarget(), + overflowXStyle = me.getOverflowXStyle(ownerContext), + overflowYStyle = me.getOverflowYStyle(ownerContext), + canOverflowX = (overflowXStyle === 'auto' || overflowXStyle === 'scroll'), + canOverflowY = (overflowYStyle === 'auto' || overflowYStyle === 'scroll'), + scrollbarSize = Ext.getScrollbarSize(), + isShrinkWrapTpl = me.isShrinkWrapTpl, + manageOverflow = me.manageOverflow, + overflowStyleName, needsOuterHeight, needsInnerHeight, needsInnerCtPaddingHeight; + + if (width && !ownerContext.widthModel.shrinkWrap && + + + ((Ext.isIE7m && Ext.isStrict && isShrinkWrapTpl && canOverflowY) || + + + + (Ext.isIEQuirks && !isShrinkWrapTpl && !canOverflowX))) { + + if (!manageOverflow) { + + + + if (canOverflowY && (targetEl.dom.scrollHeight > targetEl.dom.clientHeight)) { + + width -= scrollbarSize.width; + } + } + + ownerContext.outerCtContext.setProp('width', width + padding.width); + me.hasOuterCtPxWidth = true; + } + + if (height && !ownerContext.heightModel.shrinkWrap) { + if (Ext.supports.PercentageHeightOverflowBug) { + + + needsOuterHeight = true; + } + if (((Ext.isIE8 && Ext.isStrict) || + Ext.isIE7m && Ext.isStrict && isShrinkWrapTpl)) { + + + + needsInnerHeight = true; + + + needsInnerCtPaddingHeight = !Ext.isIE8; + } + + if ((needsOuterHeight || needsInnerHeight) && canOverflowX && + (targetEl.dom.scrollWidth > targetEl.dom.clientWidth)) { + + + + height = Math.max(height - scrollbarSize.height, 0); + } + + if (needsOuterHeight) { + ownerContext.outerCtContext.setProp('height', height + padding.height); + me.hasOuterCtPxHeight = true; + } + + if (needsInnerHeight) { + if (needsInnerCtPaddingHeight) { + height += padding.height; + } + ownerContext.innerCtContext.setProp('height', height); + me.hasInnerCtPxHeight = true; + } + } + + if (Ext.isIE7 && Ext.isStrict && !isShrinkWrapTpl && (overflowYStyle === 'auto')) { + + + + + + + + overflowStyleName = (overflowXStyle === 'auto') ? 'overflow-x' : 'overflow-y'; + targetEl.setStyle(overflowStyleName, 'hidden'); + targetEl.setStyle(overflowStyleName, 'auto'); + } + }, + + setupRenderTpl: function (renderTpl) { + this.callParent(arguments); + + renderTpl.renderPadding = this.doRenderPadding; + }, + + getContentTarget: function(){ + return this.innerCt; + } + +}, function(){ + this.prototype.chromeCellMeasureBug = Ext.isChrome && Ext.chromeVersion >= 26; +}); + + +Ext.define('Ext.ZIndexManager', { + alternateClassName: 'Ext.WindowGroup', + + statics: { + zBase : 9000 + }, + + constructor: function(container) { + var me = this; + + me.list = {}; + me.zIndexStack = []; + me.front = null; + + if (container) { + + + if (container.isContainer) { + container.on('resize', me._onContainerResize, me); + me.zseed = Ext.Number.from(me.rendered ? container.getEl().getStyle('zIndex') : undefined, me.getNextZSeed()); + + me.targetEl = container.getTargetEl(); + me.container = container; + } + + else { + Ext.EventManager.onWindowResize(me._onContainerResize, me); + me.zseed = me.getNextZSeed(); + me.targetEl = Ext.get(container); + } + } + + + else { + Ext.EventManager.onWindowResize(me._onContainerResize, me); + me.zseed = me.getNextZSeed(); + Ext.onDocumentReady(function() { + me.targetEl = Ext.getBody(); + }); + } + }, + + getNextZSeed: function() { + return (Ext.ZIndexManager.zBase += 10000); + }, + + setBase: function(baseZIndex) { + this.zseed = baseZIndex; + var result = this.assignZIndices(); + this._activateLast(); + return result; + }, + + + assignZIndices: function() { + var a = this.zIndexStack, + len = a.length, + i = 0, + zIndex = this.zseed, + comp, + topModal; + + for (; i < len; i++) { + comp = a[i]; + if (comp && !comp.hidden) { + + + + + + + + + zIndex = comp.setZIndex(zIndex); + if (comp.modal) { + topModal = comp; + } + } + } + + + if (topModal) { + this._showModalMask(topModal) + } + return zIndex; + }, + + + _setActiveChild: function(comp, oldFront) { + var front = this.front, + oldPreventFocus = comp.preventFocusOnActivate; + + if (comp !== front) { + + if (front && !front.destroying) { + front.setActive(false, comp); + } + this.front = comp; + if (comp && comp != oldFront) { + + + comp.preventFocusOnActivate = comp.preventFocusOnActivate || oldFront && (oldFront.preventFocusOnActivate || !oldFront.focusOnToFront); + + comp.setActive(true); + + + if (comp.modal) { + this._showModalMask(comp); + } + + + comp.preventFocusOnActivate = oldPreventFocus; + } + } + }, + + onComponentHide: function(comp){ + this._activateLast(); + }, + + + _activateLast: function() { + var me = this, + stack = me.zIndexStack, + i = stack.length - 1, + comp; + + + + + for (; i >= 0 && stack[i].hidden; --i); + + + if ((comp = stack[i])) { + me._setActiveChild(comp, me.front); + if (comp.modal) { + return; + } + } + + else { + if (me.front && !me.front.destroying) { + me.front.setActive(false); + } + me.front = null; + } + + + + for (; i >= 0; --i) { + comp = stack[i]; + + if (comp.isVisible() && comp.modal) { + me._showModalMask(comp); + return; + } + } + + + + me._hideModalMask(); + }, + + _showModalMask: function(comp) { + var me = this, + zIndex = comp.el.getStyle('zIndex') - 4, + maskTarget = comp.floatParent ? comp.floatParent.getTargetEl() : comp.container, + mask = me.mask, + shim = me.maskShim, + viewSize; + + if (!mask) { + if (Ext.isIE6) { + shim = me.maskShim = Ext.getBody().createChild({ + tag: 'iframe', + cls : Ext.baseCSSPrefix + 'shim ' + Ext.baseCSSPrefix + 'mask-shim' + }); + shim.setVisibilityMode(Ext.Element.DISPLAY); + } + + + mask = me.mask = Ext.getBody().createChild({ + cls: Ext.baseCSSPrefix + 'mask', + style: 'height:0;width:0' + }); + mask.setVisibilityMode(Ext.Element.DISPLAY); + mask.on('click', me._onMaskClick, me); + } + + mask.maskTarget = maskTarget; + viewSize = me.getMaskBox(); + + if (shim) { + shim.setStyle('zIndex', zIndex); + shim.show(); + shim.setBox(viewSize); + } + mask.setStyle('zIndex', zIndex); + + + + mask.show(); + mask.setBox(viewSize); + }, + + _hideModalMask: function() { + var mask = this.mask, + maskShim = this.maskShim; + + if (mask && mask.isVisible()) { + mask.maskTarget = undefined; + mask.hide(); + if (maskShim) { + maskShim.hide(); + } + } + }, + + _onMaskClick: function() { + if (this.front) { + this.front.focus(); + } + }, + + getMaskBox: function(){ + var maskTarget = this.mask.maskTarget; + if (maskTarget.dom === document.body) { + return { + height: Math.max(document.body.scrollHeight, Ext.dom.Element.getDocumentHeight()), + width: Math.max(document.body.scrollWidth, document.documentElement.clientWidth), + x: 0, + y: 0 + }; + } else { + return maskTarget.getBox(); + } + }, + + _onContainerResize: function() { + var me = this, + mask = me.mask, + maskShim = me.maskShim, + viewSize; + + if (mask && mask.isVisible()) { + + + + mask.hide(); + if (maskShim) { + maskShim.hide(); + } + + viewSize = me.getMaskBox(); + if (maskShim) { + maskShim.setSize(viewSize); + maskShim.show(); + } + mask.setSize(viewSize); + mask.show(); + } + }, + + + register : function(comp) { + var me = this, + compAfterHide = comp.afterHide; + + if (comp.zIndexManager) { + comp.zIndexManager.unregister(comp); + } + comp.zIndexManager = me; + + me.list[comp.id] = comp; + me.zIndexStack.push(comp); + + + comp.afterHide = function() { + compAfterHide.apply(comp, arguments); + me.onComponentHide(comp); + }; + }, + + + unregister : function(comp) { + var me = this, + list = me.list; + + delete comp.zIndexManager; + if (list && list[comp.id]) { + delete list[comp.id]; + + + delete comp.afterHide; + Ext.Array.remove(me.zIndexStack, comp); + + + me._activateLast(); + } + }, + + + get : function(id) { + return id.isComponent ? id : this.list[id]; + }, + + + bringToFront : function(comp, preventFocus) { + var me = this, + result = false, + zIndexStack = me.zIndexStack; + + comp = me.get(comp); + if (comp !== me.front) { + Ext.Array.remove(zIndexStack, comp); + if (comp.preventBringToFront) { + + zIndexStack.unshift(comp); + } else { + + zIndexStack.push(comp); + } + + me.assignZIndices(); + + + if (!preventFocus) { + me._activateLast(); + } + result = true; + me.front = comp; + + + if (comp.modal) { + me._showModalMask(comp); + } + } + return result; + }, + + + sendToBack : function(comp) { + var me = this; + + comp = me.get(comp); + Ext.Array.remove(me.zIndexStack, comp); + me.zIndexStack.unshift(comp); + me.assignZIndices(); + this._activateLast(); + return comp; + }, + + + hideAll : function() { + var list = this.list, + item, + id; + + for (id in list) { + if (list.hasOwnProperty(id)) { + item = list[id]; + if (item.isComponent && item.isVisible()) { + item.hide(); + } + } + } + }, + + + hide: function() { + var i = 0, + stack = this.zIndexStack, + len = stack.length, + comp; + + this.tempHidden = []; + for (; i < len; i++) { + comp = stack[i]; + if (comp.isVisible()) { + this.tempHidden.push(comp); + comp.el.hide(); + comp.hidden = true; + } + } + }, + + + show: function() { + var i = 0, + tempHidden = this.tempHidden, + len = tempHidden ? tempHidden.length : 0, + comp; + + for (; i < len; i++) { + comp = tempHidden[i]; + comp.el.show(); + comp.hidden = false; + comp.setPosition(comp.x, comp.y); + } + delete this.tempHidden; + }, + + + getActive : function() { + return this.front; + }, + + + getBy : function(fn, scope) { + var r = [], + i = 0, + stack = this.zIndexStack, + len = stack.length, + comp; + + for (; i < len; i++) { + comp = stack[i]; + if (fn.call(scope||comp, comp) !== false) { + r.push(comp); + } + } + return r; + }, + + + each : function(fn, scope) { + var list = this.list, + id, + comp; + + for (id in list) { + if (list.hasOwnProperty(id)) { + comp = list[id]; + if (comp.isComponent && fn.call(scope || comp, comp) === false) { + return; + } + } + } + }, + + + eachBottomUp: function (fn, scope) { + var stack = this.zIndexStack, + i = 0, + len = stack.length, + comp; + + for (; i < len; i++) { + comp = stack[i]; + if (comp.isComponent && fn.call(scope || comp, comp) === false) { + return; + } + } + }, + + + eachTopDown: function (fn, scope) { + var stack = this.zIndexStack, + i = stack.length, + comp; + + for (; i-- > 0; ) { + comp = stack[i]; + if (comp.isComponent && fn.call(scope || comp, comp) === false) { + return; + } + } + }, + + destroy: function() { + var me = this, + list = me.list, + comp, + id; + + for (id in list) { + if (list.hasOwnProperty(id)) { + comp = list[id]; + + if (comp.isComponent) { + comp.destroy(); + } + } + } + + delete me.zIndexStack; + delete me.list; + delete me.container; + delete me.targetEl; + } +}, function() { + + Ext.WindowManager = Ext.WindowMgr = new this(); +}); + + +Ext.define('Ext.Queryable', { + + isQueryable: true, + + + query : function(selector) { + selector = selector || '*'; + return Ext.ComponentQuery.query(selector, this); + }, + + + queryBy: function(fn, scope) { + var out = [], + items = this.getRefItems(true), + i = 0, + len = items.length, + item; + + for (; i < len; ++i) { + item = items[i]; + if (fn.call(scope || item, item) !== false) { + out.push(item); + } + } + return out; + }, + + + queryById: function(id){ + return this.down('#' + id); + }, + + + child: function (selector) { + if (selector && selector.isComponent) { + selector = '#' + Ext.escapeId(selector.getItemId()); + } + + selector = selector || ''; + return this.query('> ' + selector)[0] || null; + }, + + + down: function (selector) { + if (selector && selector.isComponent) { + selector = '#' + Ext.escapeId(selector.getItemId()); + } + + selector = selector || ''; + return this.query(selector)[0] || null; + }, + + getRefItems: function(){ + return []; + } + +}); + + +Ext.define('Ext.layout.component.Component', { + + + + extend: Ext.layout.Layout , + + + + type: 'component', + + isComponentLayout: true, + + nullBox: {}, + + usesContentHeight: true, + usesContentWidth: true, + usesHeight: true, + usesWidth: true, + + beginLayoutCycle: function (ownerContext, firstCycle) { + var me = this, + owner = me.owner, + ownerCtContext = ownerContext.ownerCtContext, + heightModel = ownerContext.heightModel, + widthModel = ownerContext.widthModel, + body = owner.el.dom === document.body, + lastBox = owner.lastBox || me.nullBox, + lastSize = owner.el.lastBox || me.nullBox, + dirty = !body, + ownerLayout, v, widthName, heightName; + + me.callParent(arguments); + + if (firstCycle) { + if (me.usesContentWidth) { + ++ownerContext.consumersContentWidth; + } + if (me.usesContentHeight) { + ++ownerContext.consumersContentHeight; + } + if (me.usesWidth) { + ++ownerContext.consumersWidth; + } + if (me.usesHeight) { + ++ownerContext.consumersHeight; + } + + if (ownerCtContext && !ownerCtContext.hasRawContent) { + ownerLayout = owner.ownerLayout; + + if (ownerLayout.usesWidth) { + ++ownerContext.consumersWidth; + } + if (ownerLayout.usesHeight) { + ++ownerContext.consumersHeight; + } + } + } + + + + + if (widthModel.configured) { + + + + + widthName = widthModel.names.width; + + if (!body) { + dirty = firstCycle ? owner[widthName] !== lastSize.width + : widthModel.constrained; + } + + ownerContext.setWidth(owner[widthName], dirty); + } else if (ownerContext.isTopLevel) { + if (widthModel.calculated) { + v = lastBox.width; + ownerContext.setWidth(v, v != lastSize.width); + } + + v = lastBox.x; + ownerContext.setProp('x', v, v != lastSize.x); + } + + if (heightModel.configured) { + heightName = heightModel.names.height; + + if (!body) { + dirty = firstCycle ? owner[heightName] !== lastSize.height + : heightModel.constrained; + } + + ownerContext.setHeight(owner[heightName], dirty); + } else if (ownerContext.isTopLevel) { + if (heightModel.calculated) { + v = lastBox.height; + ownerContext.setHeight(v, v != lastSize.height); + } + + v = lastBox.y; + ownerContext.setProp('y', v, v != lastSize.y); + } + }, + + finishedLayout: function(ownerContext) { + var me = this, + elementChildren = ownerContext.children, + owner = me.owner, + len, i, elContext, lastBox, props; + + + + + + if (elementChildren) { + len = elementChildren.length; + for (i = 0; i < len; i++) { + elContext = elementChildren[i]; + elContext.el.lastBox = elContext.props; + } + } + + + ownerContext.previousSize = me.lastComponentSize; + + + me.lastComponentSize = owner.el.lastBox = props = ownerContext.props; + + + + lastBox = owner.lastBox || (owner.lastBox = {}); + lastBox.x = props.x; + lastBox.y = props.y; + lastBox.width = props.width; + lastBox.height = props.height; + lastBox.invalid = false; + + me.callParent(arguments); + }, + + notifyOwner: function(ownerContext) { + var me = this, + currentSize = me.lastComponentSize, + prevSize = ownerContext.previousSize, + args = [currentSize.width, currentSize.height]; + + if (prevSize) { + args.push(prevSize.width, prevSize.height); + } + + + me.owner.afterComponentLayout.apply(me.owner, args); + }, + + + getTarget : function() { + return this.owner.el; + }, + + + getRenderTarget : function() { + return this.owner.el; + }, + + cacheTargetInfo: function(ownerContext) { + var me = this, + targetInfo = me.targetInfo, + target; + + if (!targetInfo) { + target = ownerContext.getEl('getTarget', me); + + me.targetInfo = targetInfo = { + padding: target.getPaddingInfo(), + border: target.getBorderInfo() + }; + } + + return targetInfo; + }, + + measureAutoDimensions: function (ownerContext, dimensions) { + + + + + + + var me = this, + owner = me.owner, + containerLayout = owner.layout, + heightModel = ownerContext.heightModel, + widthModel = ownerContext.widthModel, + boxParent = ownerContext.boxParent, + isBoxParent = ownerContext.isBoxParent, + props = ownerContext.props, + isContainer, + ret = { + gotWidth: false, + gotHeight: false, + isContainer: (isContainer = !ownerContext.hasRawContent) + }, + hv = dimensions || 3, + zeroWidth, zeroHeight, + needed = 0, + got = 0, + ready, size, temp; + + + + + + + + if (widthModel.shrinkWrap && ownerContext.consumersContentWidth) { + ++needed; + zeroWidth = !(hv & 1); + + if (isContainer) { + + + if (zeroWidth) { + ret.contentWidth = 0; + ret.gotWidth = true; + ++got; + } else if ((ret.contentWidth = ownerContext.getProp('contentWidth')) !== undefined) { + ret.gotWidth = true; + ++got; + } + } else { + size = props.contentWidth; + + if (typeof size == 'number') { + ret.contentWidth = size; + ret.gotWidth = true; + ++got; + } else { + if (zeroWidth) { + ready = true; + } else if (!ownerContext.hasDomProp('containerChildrenSizeDone')) { + ready = false; + } else if (isBoxParent || !boxParent || boxParent.widthModel.shrinkWrap) { + + + + ready = true; + } else { + + + + ready = boxParent.hasDomProp('width'); + } + + if (ready) { + if (zeroWidth) { + temp = 0; + } else if (containerLayout && containerLayout.measureContentWidth) { + + + temp = containerLayout.measureContentWidth(ownerContext); + } else { + temp = me.measureContentWidth(ownerContext); + } + + if (!isNaN(ret.contentWidth = temp)) { + ownerContext.setContentWidth(temp, true); + ret.gotWidth = true; + ++got; + } + } + } + } + } else if (widthModel.natural && ownerContext.consumersWidth) { + ++needed; + size = props.width; + + + if (typeof size == 'number') { + ret.width = size; + ret.gotWidth = true; + ++got; + } else { + if (isBoxParent || !boxParent) { + ready = true; + } else { + + + + ready = boxParent.hasDomProp('width'); + } + + if (ready) { + if (!isNaN(ret.width = me.measureOwnerWidth(ownerContext))) { + ownerContext.setWidth(ret.width, false); + ret.gotWidth = true; + ++got; + } + } + } + } + + + + + if (heightModel.shrinkWrap && ownerContext.consumersContentHeight) { + ++needed; + zeroHeight = !(hv & 2); + + if (isContainer) { + + if (zeroHeight) { + ret.contentHeight = 0; + ret.gotHeight = true; + ++got; + } else if ((ret.contentHeight = ownerContext.getProp('contentHeight')) !== undefined) { + ret.gotHeight = true; + ++got; + } + } else { + size = props.contentHeight; + + if (typeof size == 'number') { + ret.contentHeight = size; + ret.gotHeight = true; + ++got; + } else { + if (zeroHeight) { + ready = true; + } else if (!ownerContext.hasDomProp('containerChildrenSizeDone')) { + ready = false; + } else if (owner.noWrap) { + ready = true; + } else if (!widthModel.shrinkWrap) { + + ready = (ownerContext.bodyContext || ownerContext).hasDomProp('width'); + } else if (isBoxParent || !boxParent || boxParent.widthModel.shrinkWrap) { + + + + ready = true; + } else { + + + + ready = boxParent.hasDomProp('width'); + } + + if (ready) { + if (zeroHeight) { + temp = 0; + } else if (containerLayout && containerLayout.measureContentHeight) { + + + temp = containerLayout.measureContentHeight(ownerContext); + } else { + temp = me.measureContentHeight(ownerContext); + } + + if (!isNaN(ret.contentHeight = temp)) { + ownerContext.setContentHeight(temp, true); + ret.gotHeight = true; + ++got; + } + } + } + } + } else if (heightModel.natural && ownerContext.consumersHeight) { + ++needed; + size = props.height; + + + if (typeof size == 'number') { + ret.height = size; + ret.gotHeight = true; + ++got; + } else { + if (isBoxParent || !boxParent) { + ready = true; + } else { + + + + ready = boxParent.hasDomProp('width'); + } + + if (ready) { + if (!isNaN(ret.height = me.measureOwnerHeight(ownerContext))) { + ownerContext.setHeight(ret.height, false); + ret.gotHeight = true; + ++got; + } + } + } + } + + if (boxParent) { + ownerContext.onBoxMeasured(); + } + + ret.gotAll = got == needed; + + return ret; + }, + + measureContentWidth: function (ownerContext) { + + return ownerContext.el.getWidth() - ownerContext.getFrameInfo().width; + }, + + measureContentHeight: function (ownerContext) { + + return ownerContext.el.getHeight() - ownerContext.getFrameInfo().height; + }, + + measureOwnerHeight: function (ownerContext) { + return ownerContext.el.getHeight(); + }, + + measureOwnerWidth: function (ownerContext) { + return ownerContext.el.getWidth(); + } +}); + + +Ext.define('Ext.layout.component.Auto', { + + + + alias: 'layout.autocomponent', + + extend: Ext.layout.component.Component , + + + + type: 'autocomponent', + + + setHeightInDom: false, + + + setWidthInDom: false, + + waitForOuterHeightInDom: false, + waitForOuterWidthInDom: false, + + beginLayoutCycle: function(ownerContext, firstCycle){ + var me = this, + lastWidthModel = me.lastWidthModel, + lastHeightModel = me.lastHeightModel, + el = me.owner.el; + + me.callParent(arguments); + + if (lastWidthModel && lastWidthModel.fixed && ownerContext.widthModel.shrinkWrap) { + el.setWidth(null); + } + + if (lastHeightModel && lastHeightModel.fixed && ownerContext.heightModel.shrinkWrap) { + el.setHeight(null); + } + }, + + calculate: function(ownerContext) { + var me = this, + measurement = me.measureAutoDimensions(ownerContext), + heightModel = ownerContext.heightModel, + widthModel = ownerContext.widthModel, + width, height; + + + + if (measurement.gotWidth) { + if (widthModel.shrinkWrap) { + me.publishOwnerWidth(ownerContext, measurement.contentWidth); + } else if (me.publishInnerWidth) { + me.publishInnerWidth(ownerContext, measurement.width); + } + } else if (!widthModel.auto && me.publishInnerWidth) { + width = me.waitForOuterWidthInDom ? ownerContext.getDomProp('width') + : ownerContext.getProp('width'); + if (width === undefined) { + me.done = false; + } else { + me.publishInnerWidth(ownerContext, width); + } + } + + if (measurement.gotHeight) { + if (heightModel.shrinkWrap) { + me.publishOwnerHeight(ownerContext, measurement.contentHeight); + } else if (me.publishInnerHeight) { + me.publishInnerHeight(ownerContext, measurement.height); + } + } else if (!heightModel.auto && me.publishInnerHeight) { + height = me.waitForOuterHeightInDom ? ownerContext.getDomProp('height') + : ownerContext.getProp('height'); + if (height === undefined) { + me.done = false; + } else { + me.publishInnerHeight(ownerContext, height); + } + } + + if (!measurement.gotAll) { + me.done = false; + } + }, + + calculateOwnerHeightFromContentHeight: function (ownerContext, contentHeight) { + return contentHeight + ownerContext.getFrameInfo().height; + }, + + calculateOwnerWidthFromContentWidth: function (ownerContext, contentWidth) { + return contentWidth + ownerContext.getFrameInfo().width; + }, + + publishOwnerHeight: function (ownerContext, contentHeight) { + var me = this, + owner = me.owner, + height = me.calculateOwnerHeightFromContentHeight(ownerContext, contentHeight), + constrainedHeight, dirty, heightModel; + + if (isNaN(height)) { + me.done = false; + } else { + constrainedHeight = Ext.Number.constrain(height, owner.minHeight, owner.maxHeight); + + if (constrainedHeight == height) { + dirty = me.setHeightInDom; + } else { + heightModel = me.sizeModels[ + (constrainedHeight < height) ? 'constrainedMax' : 'constrainedMin']; + height = constrainedHeight; + + if (ownerContext.heightModel.calculatedFromShrinkWrap) { + + + + ownerContext.heightModel = heightModel; + } else { + ownerContext.invalidate({ heightModel: heightModel }); + } + } + + ownerContext.setHeight(height, dirty); + } + }, + + publishOwnerWidth: function (ownerContext, contentWidth) { + var me = this, + owner = me.owner, + width = me.calculateOwnerWidthFromContentWidth(ownerContext, contentWidth), + constrainedWidth, dirty, widthModel; + + if (isNaN(width)) { + me.done = false; + } else { + constrainedWidth = Ext.Number.constrain(width, owner.minWidth, owner.maxWidth); + + if (constrainedWidth == width) { + dirty = me.setWidthInDom; + } else { + widthModel = me.sizeModels[ + (constrainedWidth < width) ? 'constrainedMax' : 'constrainedMin']; + width = constrainedWidth; + + if (ownerContext.widthModel.calculatedFromShrinkWrap) { + + + + ownerContext.widthModel = widthModel; + } else { + ownerContext.invalidate({ widthModel: widthModel }); + } + } + + ownerContext.setWidth(width, dirty); + } + } +}); + + +Ext.define('Ext.container.AbstractContainer', { + + + + extend: Ext.Component , + + + + + + + + mixins: { + queryable: Ext.Queryable + }, + + + + renderTpl: '{%this.renderContainer(out,values)%}', + + + + + + + + + + + suspendLayout : false, + + + autoDestroy : true, + + + defaultType: 'panel', + + + detachOnRemove: true, + + + isContainer : true, + + + layoutCounter : 0, + + baseCls: Ext.baseCSSPrefix + 'container', + + + + defaultLayoutType: 'auto', + + + initComponent : function(){ + var me = this; + me.addEvents( + + 'afterlayout', + + 'beforeadd', + + 'beforeremove', + + 'add', + + 'remove' + ); + + me.callParent(); + + me.getLayout(); + me.initItems(); + }, + + + initItems : function() { + var me = this, + items = me.items; + + + me.items = new Ext.util.AbstractMixedCollection(false, me.getComponentId); + me.floatingItems = new Ext.util.MixedCollection(false, me.getComponentId); + + if (items) { + if (!Ext.isArray(items)) { + items = [items]; + } + + me.add(items); + } + }, + + + getFocusEl: function() { + return this.getTargetEl(); + }, + + finishRenderChildren: function () { + this.callParent(); + + var layout = this.getLayout(); + + if (layout) { + layout.finishRender(); + } + }, + + beforeRender: function () { + var me = this, + layout = me.getLayout(), + targetCls; + + me.callParent(); + + if (!layout.initialized) { + layout.initLayout(); + } + + targetCls = layout.targetCls; + + if (targetCls) { + me.applyTargetCls(targetCls); + } + }, + + + + + + + applyTargetCls: function(targetCls) { + this.addCls(targetCls); + }, + + afterComponentLayout: function() { + var floaters = this.floatingItems.items, + floaterCount = floaters.length, + i, floater + + this.callParent(arguments); + + + for (i = 0; i < floaterCount; i++) { + floater = floaters[i]; + if (!floater.rendered && floater.autoShow) { + floater.show(); + } + } + }, + + onPosition: function() { + this.callParent(arguments); + this.repositionFloatingItems(); + }, + + onResize: function() { + this.callParent(arguments); + this.repositionFloatingItems(); + }, + + repositionFloatingItems: function() { + var floaters = this.floatingItems.items, + floaterCount = floaters.length, + i, floater; + + + for (i = 0; i < floaterCount; i++) { + floater = floaters[i]; + if (floater.el && !floater.hidden) { + floater.setPosition(floater.x, floater.y); + } + } + }, + + setupRenderTpl: function (renderTpl) { + this.callParent(arguments); + this.getLayout().setupRenderTpl(renderTpl); + }, + + + getDefaultContentTarget: function() { + return this.el; + }, + + + getContentTarget: function(){ + return this.getLayout().getContentTarget(); + }, + + + setLayout : function(layout) { + var currentLayout = this.layout; + + if (currentLayout && currentLayout.isLayout && currentLayout != layout) { + currentLayout.setOwner(null); + } + + this.layout = layout; + layout.setOwner(this); + }, + + + getLayout : function() { + var me = this; + if (!me.layout || !me.layout.isLayout) { + + me.setLayout(Ext.layout.Layout.create(me.layout, me.self.prototype.layout || me.defaultLayoutType)); + } + + return me.layout; + }, + + + doLayout : function() { + this.updateLayout(); + return this; + }, + + + afterLayout : function(layout) { + var me = this; + ++me.layoutCounter; + if (me.hasListeners.afterlayout) { + me.fireEvent('afterlayout', me, layout); + } + }, + + + prepareItems : function(items, applyDefaults) { + + + if (Ext.isArray(items)) { + items = items.slice(); + } else { + items = [items]; + } + + + var me = this, + i = 0, + len = items.length, + item; + + for (; i < len; i++) { + item = items[i]; + if (item == null) { + Ext.Array.erase(items, i, 1); + --i; + --len; + } else { + if (applyDefaults) { + item = this.applyDefaults(item); + } + + + item.isContained = me; + items[i] = me.lookupComponent(item); + + delete item.isContained; + delete items[i].isContained; + } + } + + return items; + }, + + + applyDefaults : function(config) { + var defaults = this.defaults; + + if (defaults) { + if (Ext.isFunction(defaults)) { + defaults = defaults.call(this, config); + } + + if (Ext.isString(config)) { + config = Ext.ComponentManager.get(config); + } + Ext.applyIf(config, defaults); + } + return config; + }, + + + lookupComponent : function(comp) { + return (typeof comp == 'string') ? Ext.ComponentManager.get(comp) + : Ext.ComponentManager.create(comp, this.defaultType); + }, + + + getComponentId : function(comp) { + return comp.getItemId && comp.getItemId(); + }, + + + add : function() { + var me = this, + args = Ext.Array.slice(arguments), + index = (typeof args[0] == 'number') ? args.shift() : -1, + layout = me.getLayout(), + addingArray, items, i, length, item, pos, ret; + + if (args.length == 1 && Ext.isArray(args[0])) { + items = args[0]; + addingArray = true; + } else { + items = args; + } + + if (me.rendered) { + Ext.suspendLayouts(); + } + + ret = items = me.prepareItems(items, true); + length = items.length; + + if (!addingArray && length == 1) { + ret = items[0]; + } + + + for (i = 0; i < length; i++) { + item = items[i]; + + pos = (index < 0) ? me.items.length : (index + i); + + + if (item.floating) { + me.floatingItems.add(item); + item.onAdded(me, pos); + + if (me.hasListeners.add) { + me.fireEvent('add', me, item, pos); + } + } else if ((!me.hasListeners.beforeadd || me.fireEvent('beforeadd', me, item, pos) !== false) && me.onBeforeAdd(item) !== false) { + me.items.insert(pos, item); + item.onAdded(me, pos); + me.onAdd(item, pos); + layout.onAdd(item, pos); + + if (me.hasListeners.add) { + me.fireEvent('add', me, item, pos); + } + } + } + + + me.updateLayout(); + if (me.rendered) { + Ext.resumeLayouts(true); + } + + return ret; + }, + + + onAdd : Ext.emptyFn, + + + onRemove : Ext.emptyFn, + + + insert : function(index, comp) { + var compIdx; + if (comp && comp.isComponent) { + compIdx = this.items.indexOf(comp); + if (compIdx !== -1) { + return this.move(compIdx, index); + } + } + return this.add(index, comp); + }, + + + move : function(fromIdx, toIdx) { + var items = this.items, + item; + + if (fromIdx.isComponent) { + fromIdx = items.indexOf(fromIdx); + } + item = items.removeAt(fromIdx); + if (item === false) { + return false; + } + items.insert(toIdx, item); + this.onMove(item, fromIdx, toIdx); + this.updateLayout(); + return item; + }, + + onMove: Ext.emptyFn, + + + onBeforeAdd : function(item) { + + if (item.ownerCt && item.ownerCt !== this) { + item.ownerCt.remove(item, false); + } + }, + + + remove : function(comp, autoDestroy) { + var me = this, + c = me.getComponent(comp); + + if (c && (!me.hasListeners.beforeremove || me.fireEvent('beforeremove', me, c) !== false)) { + me.doRemove(c, autoDestroy); + if (me.hasListeners.remove) { + me.fireEvent('remove', me, c); + } + + if (!me.destroying && !c.floating) { + me.updateLayout(); + } + } + + return c; + }, + + + doRemove : function(component, doDestroy) { + + doDestroy = doDestroy === true || (doDestroy !== false && this.autoDestroy); + + var me = this, + layout = me.layout, + hasLayout = layout && me.rendered, + + + isDestroying = component.destroying || doDestroy, + floating = component.floating; + + if (floating) { + me.floatingItems.remove(component); + } else { + me.items.remove(component); + } + + + if (hasLayout && !floating) { + + if (layout.running) { + Ext.AbstractComponent.cancelLayout(component, isDestroying); + } + layout.onRemove(component, isDestroying); + } + + component.onRemoved(isDestroying); + + me.onRemove(component, isDestroying); + + + if (doDestroy) { + component.destroy(); + } + + else { + if (hasLayout && !floating) { + layout.afterRemove(component); + } + if (me.detachOnRemove && component.rendered) { + me.detachComponent(component); + } + } + }, + + + detachComponent: function(component){ + Ext.getDetachedBody().appendChild(component.getEl()); + }, + + + removeAll : function(autoDestroy) { + var me = this, + removeItems = me.items.items.slice().concat(me.floatingItems.items), + items = [], + i = 0, + len = removeItems.length, + item; + + + me.suspendLayouts(); + for (; i < len; i++) { + item = removeItems[i]; + me.remove(item, autoDestroy); + + if (item.ownerCt !== me) { + items.push(item); + } + } + + + me.resumeLayouts(!!len); + return items; + }, + + + getRefItems : function(deep) { + var me = this, + items = me.items.items, + len = items.length, + i = 0, + item, + result = []; + + for (; i < len; i++) { + item = items[i]; + result[result.length] = item; + if (deep && item.getRefItems) { + result.push.apply(result, item.getRefItems(true)); + } + } + + + items = me.floatingItems.items; + len = items.length; + for (i = 0; i < len; i++) { + item = items[i]; + result[result.length] = item; + if (deep && item.getRefItems) { + result.push.apply(result, item.getRefItems(true)); + } + } + + return result; + }, + + + cascade : function(fn, scope, origArgs){ + var me = this, + cs = me.items ? me.items.items : [], + len = cs.length, + i = 0, + c, + args = origArgs ? origArgs.concat(me) : [me], + componentIndex = args.length - 1; + + if (fn.apply(scope || me, args) !== false) { + for (; i < len; i++){ + c = cs[i]; + if (c.cascade) { + c.cascade(fn, scope, origArgs); + } else { + args[componentIndex] = c; + fn.apply(scope || cs, args); + } + } + } + return this; + }, + + + isAncestor: function(possibleDescendant) { + while (possibleDescendant) { + if (possibleDescendant.ownerCt === this) { + return true; + } + possibleDescendant = possibleDescendant.ownerCt; + } + }, + + + getComponent : function(comp) { + if (Ext.isObject(comp)) { + comp = comp.getItemId(); + } + + var c = this.items.get(comp); + + + if (!c && typeof comp != 'number') { + c = this.floatingItems.get(comp); + } + + return c; + }, + + + contains: function(comp, deep) { + var result = false; + if (deep) { + this.cascade(function(c) { + + if (c.contains && c.contains(comp)) { + result = true; + return false; + } + }); + return result; + } else { + return this.items.contains(comp) || this.floatingItems.contains(comp); + } + }, + + nextChild: function(child, selector) { + var me = this, + result, + childIndex = me.items.indexOf(child); + + if (childIndex !== -1) { + result = selector ? Ext.ComponentQuery(selector, me.items.items.slice(childIndex + 1)) : me.items.getAt(childIndex + 1); + if (!result && me.ownerCt) { + result = me.ownerCt.nextChild(me, selector); + } + } + return result; + }, + + prevChild: function(child, selector) { + var me = this, + result, + childIndex = me.items.indexOf(child); + + if (childIndex !== -1) { + result = selector ? Ext.ComponentQuery(selector, me.items.items.slice(childIndex + 1)) : me.items.getAt(childIndex + 1); + if (!result && me.ownerCt) { + result = me.ownerCt.nextChild(me, selector); + } + } + return result; + }, + + + + + enable: function() { + this.callParent(arguments); + + var itemsToDisable = this.getChildItemsToDisable(), + length = itemsToDisable.length, + item, i; + + for (i = 0; i < length; i++) { + item = itemsToDisable[i]; + + if (item.resetDisable) { + item.enable(); + } + } + + return this; + }, + + + + + disable: function() { + this.callParent(arguments); + + var itemsToDisable = this.getChildItemsToDisable(), + length = itemsToDisable.length, + item, i; + + for (i = 0; i < length; i++) { + item = itemsToDisable[i]; + + if (item.resetDisable !== false && !item.disabled) { + item.disable(); + item.resetDisable = true; + } + } + + return this; + }, + + + getChildItemsToDisable: function(){ + return this.query('[isFormField],button'); + }, + + + + beforeDestroy : function() { + var me = this, + items = me.items, + floatingItems = me.floatingItems, + c; + + if (items) { + while ((c = items.first())) { + me.doRemove(c, true); + } + } + + if (floatingItems) { + while ((c = floatingItems.first())) { + me.doRemove(c, true); + } + } + + Ext.destroy( + me.layout + ); + me.callParent(); + } +}); + + +Ext.define('Ext.container.Container', { + extend: Ext.container.AbstractContainer , + alias: 'widget.container', + alternateClassName: 'Ext.Container', + + + getChildByElement: function(el, deep) { + var item, + itemEl, + i = 0, + it = this.getRefItems(), + ln = it.length; + + el = Ext.getDom(el); + for (; i < ln; i++) { + item = it[i]; + itemEl = item.getEl(); + if (itemEl && ((itemEl.dom === el) || itemEl.contains(el))) { + return (deep && item.getChildByElement) ? item.getChildByElement(el, deep) : item; + } + } + return null; + } +}); + + +Ext.define('Ext.layout.container.Editor', { + + + + alias: 'layout.editor', + + extend: Ext.layout.container.Container , + + + + autoSizeDefault: { + width: 'field', + height: 'field' + }, + + sizePolicies: { + + $: { + + $: { + readsWidth: 1, + readsHeight: 1, + setsWidth: 0, + setsHeight: 0 + }, + boundEl: { + readsWidth: 1, + readsHeight: 0, + setsWidth: 0, + setsHeight: 1 + } + }, + + boundEl: { + + $: { + readsWidth: 0, + readsHeight: 1, + setsWidth: 1, + setsHeight: 0 + }, + boundEl: { + readsWidth: 0, + readsHeight: 0, + setsWidth: 1, + setsHeight: 1 + } + } + }, + + getItemSizePolicy: function (item) { + var me = this, + autoSize = me.owner.autoSize, + key = autoSize && autoSize.width, + policy = me.sizePolicies; + + policy = policy[key] || policy.$; + + key = autoSize && autoSize.height; + policy = policy[key] || policy.$; + + return policy; + }, + + calculate: function(ownerContext) { + var me = this, + owner = me.owner, + autoSize = owner.autoSize, + fieldWidth, + fieldHeight; + + if (autoSize === true) { + autoSize = me.autoSizeDefault; + } + + + if (autoSize) { + fieldWidth = me.getDimension(owner, autoSize.width, 'getWidth', owner.width); + fieldHeight = me.getDimension(owner, autoSize.height, 'getHeight', owner.height); + } + + + ownerContext.childItems[0].setSize(fieldWidth, fieldHeight); + + + ownerContext.setWidth(fieldWidth); + ownerContext.setHeight(fieldHeight); + + + ownerContext.setContentSize(fieldWidth || owner.field.getWidth(), + fieldHeight || owner.field.getHeight()); + }, + + getDimension: function(owner, type, getMethod, ownerSize){ + switch (type) { + + case 'boundEl': + return owner.boundEl[getMethod](); + + + case 'field': + return undefined; + + + default: + return ownerSize; + } + } +}); + + +Ext.define('Ext.Editor', { + + + + extend: Ext.container.Container , + + alias: 'widget.editor', + + + + + + layout: 'editor', + + + + + allowBlur: true, + + + + + revertInvalid: true, + + + + + + + value : '', + + + alignment: 'c-c?', + + + offsets: [0, 0], + + + shadow : 'frame', + + + constrain : false, + + + swallowKeys : true, + + + completeOnEnter : true, + + + cancelOnEsc : true, + + + updateEl : false, + + + + + focusOnToFront: false, + + + + + hidden: true, + baseCls: Ext.baseCSSPrefix + 'editor', + + initComponent : function() { + var me = this, + field = me.field = Ext.ComponentManager.create(me.field, 'textfield'); + + Ext.apply(field, { + inEditor: true, + msgTarget: field.msgTarget == 'title' ? 'title' : 'qtip' + }); + me.mon(field, { + scope: me, + blur: me.onFieldBlur, + specialkey: me.onSpecialKey + }); + + if (field.grow) { + me.mon(field, 'autosize', me.onFieldAutosize, me, {delay: 1}); + } + me.floating = { + constrain: me.constrain + }; + me.items = field; + + me.callParent(arguments); + + me.addEvents( + + 'beforestartedit', + + + 'startedit', + + + 'beforecomplete', + + 'complete', + + 'canceledit', + + 'specialkey' + ); + }, + + + onFieldAutosize: function(){ + this.updateLayout(); + }, + + + afterRender : function(ct, position) { + var me = this, + field = me.field, + inputEl = field.inputEl; + + me.callParent(arguments); + + + if (inputEl) { + inputEl.dom.name = ''; + if (me.swallowKeys) { + inputEl.swallowEvent([ + 'keypress', + 'keydown' + ]); + } + } + }, + + + onSpecialKey : function(field, event) { + var me = this, + key = event.getKey(), + complete = me.completeOnEnter && key == event.ENTER, + cancel = me.cancelOnEsc && key == event.ESC; + + if (complete || cancel) { + event.stopEvent(); + + + Ext.defer(function() { + if (complete) { + me.completeEdit(); + } else { + me.cancelEdit(); + } + if (field.triggerBlur) { + field.triggerBlur(event); + } + }, 10); + } + + me.fireEvent('specialkey', me, field, event); + }, + + + startEdit : function(el, value) { + var me = this, + field = me.field; + + me.completeEdit(); + me.boundEl = Ext.get(el); + value = Ext.isDefined(value) ? value : Ext.String.trim(me.boundEl.dom.innerText || me.boundEl.dom.innerHTML); + + if (!me.rendered) { + + + + + if (me.ownerCt) { + me.parentEl = me.ownerCt.el; + me.parentEl.position(); + } + me.render(me.parentEl || document.body); + } + + if (me.fireEvent('beforestartedit', me, me.boundEl, value) !== false) { + me.startValue = value; + me.show(); + + field.suspendEvents(); + field.reset(); + field.setValue(value); + field.resumeEvents(); + me.realign(true); + field.focus(); + if (field.autoSize) { + field.autoSize(); + } + me.editing = true; + } + }, + + + realign : function(autoSize) { + var me = this; + if (autoSize === true) { + me.updateLayout(); + } + me.alignTo(me.boundEl, me.alignment, me.offsets); + }, + + + completeEdit : function(remainVisible) { + var me = this, + field = me.field, + value; + + if (!me.editing) { + return; + } + + + if (field.assertValue) { + field.assertValue(); + } + + value = me.getValue(); + if (!field.isValid()) { + if (me.revertInvalid !== false) { + me.cancelEdit(remainVisible); + } + return; + } + + if (String(value) === String(me.startValue) && me.ignoreNoChange) { + me.hideEdit(remainVisible); + return; + } + + if (me.fireEvent('beforecomplete', me, value, me.startValue) !== false) { + + value = me.getValue(); + if (me.updateEl && me.boundEl) { + me.boundEl.update(value); + } + me.hideEdit(remainVisible); + me.fireEvent('complete', me, value, me.startValue); + } + }, + + + onShow : function() { + var me = this; + + me.callParent(arguments); + if (me.hideEl !== false) { + me.boundEl.hide(); + } + me.fireEvent('startedit', me, me.boundEl, me.startValue); + }, + + + cancelEdit : function(remainVisible) { + var me = this, + startValue = me.startValue, + field = me.field, + value; + + if (me.editing) { + value = me.getValue(); + + field.suspendEvents(); + me.setValue(startValue); + field.resumeEvents(); + me.hideEdit(remainVisible); + me.fireEvent('canceledit', me, value, startValue); + } + }, + + + hideEdit: function(remainVisible) { + if (remainVisible !== true) { + this.editing = false; + this.hide(); + } + }, + + + onFieldBlur : function(field, e) { + var me = this, + target = Ext.Element.getActiveElement(); + + + if(me.allowBlur === true && me.editing && me.selectSameEditor !== true) { + me.completeEdit(); + } + + + if (Ext.fly(target).isFocusable() || target.getAttribute('tabIndex')) { + target.focus(); + } + }, + + + onHide : function() { + var me = this, + field = me.field; + + if (me.editing) { + me.completeEdit(); + return; + } + + + if (field.hasFocus && field.triggerBlur) { + field.triggerBlur(); + } + if (field.collapse) { + field.collapse(); + } + + + if (me.hideEl !== false) { + me.boundEl.show(); + } + me.callParent(arguments); + }, + + + setValue : function(value) { + this.field.setValue(value); + }, + + + getValue : function() { + return this.field.getValue(); + }, + + beforeDestroy : function() { + var me = this; + + Ext.destroy(me.field); + delete me.field; + delete me.parentEl; + delete me.boundEl; + + me.callParent(arguments); + } +}); + + +Ext.define('Ext.util.KeyMap', { + alternateClassName: 'Ext.KeyMap', + + + + + + + + + + + eventName: 'keydown', + + constructor: function(config) { + var me = this; + + + + if ((arguments.length !== 1) || (typeof config === 'string') || config.dom || config.tagName || config === document || config.isComponent) { + me.legacyConstructor.apply(me, arguments); + return; + } + + Ext.apply(me, config); + me.bindings = []; + + if (!me.target.isComponent) { + me.target = Ext.get(me.target); + } + + if (me.binding) { + me.addBinding(me.binding); + } else if (config.key) { + me.addBinding(config); + } + me.enable(); + }, + + + legacyConstructor: function(el, binding, eventName){ + var me = this; + + Ext.apply(me, { + target: Ext.get(el), + eventName: eventName || me.eventName, + bindings: [] + }); + if (binding) { + me.addBinding(binding); + } + me.enable(); + }, + + + addBinding : function(binding){ + var me = this, + keyCode = binding.key, + i, + len; + + if (me.processing) { + me.bindings = bindings.slice(0); + } + + if (Ext.isArray(binding)) { + for (i = 0, len = binding.length; i < len; i++) { + me.addBinding(binding[i]); + } + return; + } + + me.bindings.push(Ext.apply({ + keyCode: me.processKeys(keyCode) + }, binding)); + }, + + + removeBinding: function(binding){ + var me = this, + bindings = me.bindings, + len = bindings.length, + i, item, keys; + + if (me.processing) { + me.bindings = bindings.slice(0); + } + + keys = me.processKeys(binding.key); + for (i = 0; i < len; ++i) { + item = bindings[i]; + if (item.fn === binding.fn && item.scope === binding.scope) { + if (binding.alt == item.alt && binding.crtl == item.crtl && binding.shift == item.shift) { + if (Ext.Array.equals(item.keyCode, keys)) { + Ext.Array.erase(me.bindings, i, 1); + return; + } + } + } + } + }, + + processKeys: function(keyCode){ + var processed = false, + key, keys, keyString, len, i; + + if (Ext.isString(keyCode)) { + keys = []; + keyString = keyCode.toUpperCase(); + + for (i = 0, len = keyString.length; i < len; ++i){ + keys.push(keyString.charCodeAt(i)); + } + keyCode = keys; + processed = true; + } + + if (!Ext.isArray(keyCode)) { + keyCode = [keyCode]; + } + + if (!processed) { + for (i = 0, len = keyCode.length; i < len; ++i) { + key = keyCode[i]; + if (Ext.isString(key)) { + keyCode[i] = key.toUpperCase().charCodeAt(0); + } + } + } + return keyCode; + }, + + + handleTargetEvent: (function() { + var tagRe = /input|textarea/i; + + return function(event) { + var me = this, + bindings, i, len, + target, contentEditable; + + if (me.enabled) { + bindings = me.bindings; + i = 0; + len = bindings.length; + + + event = me.processEvent.apply(me||me.processEventScope, arguments); + + + if (me.ignoreInputFields) { + target = event.target; + contentEditable = target.contentEditable; + + + + if (tagRe.test(target.tagName) || (contentEditable === '' || contentEditable === 'true')) { + return; + } + } + + + + if (!event.getKey) { + return event; + } + me.processing = true; + for(; i < len; ++i){ + me.processBinding(bindings[i], event); + } + me.processing = false; + } + } + }()), + + + processEvent: Ext.identityFn, + + + processBinding: function(binding, event){ + if (this.checkModifiers(binding, event)) { + var key = event.getKey(), + handler = binding.fn || binding.handler, + scope = binding.scope || this, + keyCode = binding.keyCode, + defaultEventAction = binding.defaultEventAction, + i, + len, + keydownEvent = new Ext.EventObjectImpl(event); + + + for (i = 0, len = keyCode.length; i < len; ++i) { + if (key === keyCode[i]) { + if (handler.call(scope, key, event) !== true && defaultEventAction) { + keydownEvent[defaultEventAction](); + } + break; + } + } + } + }, + + + checkModifiers: function(binding, e) { + var keys = ['shift', 'ctrl', 'alt'], + i = 0, + len = keys.length, + val, key; + + for (; i < len; ++i){ + key = keys[i]; + val = binding[key]; + if (!(val === undefined || (val === e[key + 'Key']))) { + return false; + } + } + return true; + }, + + + on: function(key, fn, scope) { + var keyCode, shift, ctrl, alt; + if (Ext.isObject(key) && !Ext.isArray(key)) { + keyCode = key.key; + shift = key.shift; + ctrl = key.ctrl; + alt = key.alt; + } else { + keyCode = key; + } + this.addBinding({ + key: keyCode, + shift: shift, + ctrl: ctrl, + alt: alt, + fn: fn, + scope: scope + }); + }, + + + un: function(key, fn, scope) { + var keyCode, shift, ctrl, alt; + if (Ext.isObject(key) && !Ext.isArray(key)) { + keyCode = key.key; + shift = key.shift; + ctrl = key.ctrl; + alt = key.alt; + } else { + keyCode = key; + } + this.removeBinding({ + key: keyCode, + shift: shift, + ctrl: ctrl, + alt: alt, + fn: fn, + scope: scope + }); + }, + + + isEnabled : function() { + return this.enabled; + }, + + + enable: function() { + var me = this; + + if (!me.enabled) { + me.target.on(me.eventName, me.handleTargetEvent, me); + me.enabled = true; + } + }, + + + disable: function() { + var me = this; + + if (me.enabled) { + me.target.removeListener(me.eventName, me.handleTargetEvent, me); + me.enabled = false; + } + }, + + + setDisabled : function(disabled) { + if (disabled) { + this.disable(); + } else { + this.enable(); + } + }, + + + destroy: function(removeTarget) { + var me = this, + target = me.target; + + me.bindings = []; + me.disable(); + if (removeTarget === true) { + if (target.isComponent) { + target.destroy(); + } else { + target.remove(); + } + } + delete me.target; + } +}); + + +Ext.define('Ext.util.KeyNav', { + alternateClassName: 'Ext.KeyNav', + + + + statics: { + keyOptions: { + left: 37, + right: 39, + up: 38, + down: 40, + space: 32, + pageUp: 33, + pageDown: 34, + del: 46, + backspace: 8, + home: 36, + end: 35, + enter: 13, + esc: 27, + tab: 9 + } + }, + + constructor: function(config) { + var me = this; + if (arguments.length === 2) { + me.legacyConstructor.apply(me, arguments); + return; + } + me.setConfig(config); + }, + + + legacyConstructor: function(el, config) { + this.setConfig(Ext.apply({ + target: el + }, config)); + }, + + + setConfig: function(config) { + var me = this, + keymapCfg = { + target: config.target, + ignoreInputFields: config.ignoreInputFields, + eventName: me.getKeyEvent('forceKeyDown' in config ? config.forceKeyDown : me.forceKeyDown, config.eventName) + }, + map, keyCodes, defaultScope, keyName, binding; + + if (me.map) { + me.map.destroy(); + } + + if (config.processEvent) { + keymapCfg.processEvent = config.processEvent; + keymapCfg.processEventScope = config.processEventScope||me; + } + + + if (config.keyMap) { + map = me.map = config.keyMap; + } + + else { + map = me.map = new Ext.util.KeyMap(keymapCfg); + me.destroyKeyMap = true; + } + keyCodes = Ext.util.KeyNav.keyOptions; + defaultScope = config.scope || me; + + for (keyName in keyCodes) { + if (keyCodes.hasOwnProperty(keyName)) { + + + + if (binding = config[keyName]) { + if (typeof binding === 'function') { + binding = { + handler: binding, + defaultEventAction: (config.defaultEventAction !== undefined) ? config.defaultEventAction : me.defaultEventAction + }; + } + map.addBinding({ + key: keyCodes[keyName], + handler: Ext.Function.bind(me.handleEvent, binding.scope||defaultScope, binding.handler||binding.fn, true), + defaultEventAction: (binding.defaultEventAction !== undefined) ? binding.defaultEventAction : me.defaultEventAction + }); + } + } + } + + map.disable(); + if (!config.disabled) { + map.enable(); + } + }, + + + handleEvent: function(keyCode, event, handler){ + return handler.call(this, event); + }, + + + disabled: false, + + + defaultEventAction: "stopEvent", + + + forceKeyDown: false, + + + + + eventName: 'keypress', + + + + + + + + + + + destroy: function(removeEl) { + if (this.destroyKeyMap) { + this.map.destroy(removeEl); + } + delete this.map; + }, + + + enable: function() { + + if (this.map) { + this.map.enable(); + this.disabled = false; + } + }, + + + disable: function() { + + if (this.map) { + this.map.disable(); + } + this.disabled = true; + }, + + + setDisabled : function(disabled) { + this.map.setDisabled(disabled); + this.disabled = disabled; + }, + + + getKeyEvent: function(forceKeyDown, configuredEventName) { + if (forceKeyDown || (Ext.EventManager.useKeyDown && !configuredEventName)) { + return 'keydown'; + } else { + return configuredEventName||this.eventName; + } + } +}); + + +Ext.define('Ext.FocusManager', { + singleton: true, + alternateClassName: ['Ext.FocusMgr' ], + + mixins: { + observable: Ext.util.Observable + }, + + + + + + + + + + + + enabled: false, + + + + focusElementCls: Ext.baseCSSPrefix + 'focus-element', + + focusFrameCls: Ext.baseCSSPrefix + 'focus-frame', + + + whitelist: [ + 'textfield' + ], + + constructor: function(config) { + var me = this, + CQ = Ext.ComponentQuery; + + me.mixins.observable.constructor.call(me, config); + + me.addEvents( + + 'beforecomponentfocus', + + + 'componentfocus', + + + 'disable', + + + 'enable' + ); + + me.focusTask = new Ext.util.DelayedTask(me.handleComponentFocus, me); + + + Ext.override(Ext.AbstractComponent, { + onFocus: function() { + this.callParent(arguments); + if (me.enabled && this.hasFocus) { + Array.prototype.unshift.call(arguments, this); + me.onComponentFocus.apply(me, arguments); + } + }, + onBlur: function() { + this.callParent(arguments); + if (me.enabled && !this.hasFocus) { + Array.prototype.unshift.call(arguments, this); + me.onComponentBlur.apply(me, arguments); + } + }, + onDestroy: function() { + this.callParent(arguments); + if (me.enabled) { + Array.prototype.unshift.call(arguments, this); + me.onComponentDestroy.apply(me, arguments); + } + } + }); + Ext.override(Ext.Component, { + afterHide: function() { + this.callParent(arguments); + if (me.enabled) { + Array.prototype.unshift.call(arguments, this); + me.onComponentHide.apply(me, arguments); + } + } + }); + + + me.keyNav = new Ext.util.KeyNav(Ext.getDoc(), { + disabled: true, + scope: me, + + backspace: me.focusLast, + enter: me.navigateIn, + esc: me.navigateOut, + tab: me.navigateSiblings, + space: me.navigateIn, + del: me.focusLast, + left: me.navigateSiblings, + right: me.navigateSiblings, + down: me.navigateSiblings, + up: me.navigateSiblings + }); + + me.focusData = {}; + me.subscribers = new Ext.util.HashMap(); + me.focusChain = {}; + + + Ext.apply(CQ.pseudos, { + + nextFocus: function(cmps, idx, step) { + step = step || 1; + idx = parseInt(idx, 10); + + var len = cmps.length, + i = idx, c; + + for (;;) { + + if ((i += step) >= len) { + i = 0; + } else if (i < 0) { + i = len - 1; + } + + + if (i === idx) { + return []; + } + + + if ((c = cmps[i]).isFocusable()) { + return [c]; + } + } + + return []; + }, + + prevFocus: function(cmps, idx) { + return this.nextFocus(cmps, idx, -1); + }, + + root: function(cmps) { + var len = cmps.length, + results = [], + i = 0, + c; + + for (; i < len; i++) { + c = cmps[i]; + if (!c.ownerCt) { + results.push(c); + } + } + + return results; + } + }); + }, + + + addXTypeToWhitelist: function(xtype) { + var me = this; + + if (Ext.isArray(xtype)) { + Ext.Array.forEach(xtype, me.addXTypeToWhitelist, me); + return; + } + + if (!Ext.Array.contains(me.whitelist, xtype)) { + me.whitelist.push(xtype); + } + }, + + clearComponent: function(cmp) { + clearTimeout(this.cmpFocusDelay); + if (!cmp.isDestroyed) { + cmp.blur(); + } + }, + + + disable: function() { + var me = this; + + if (!me.enabled) { + return; + } + + delete me.options; + me.enabled = false; + + me.removeDOM(); + + + me.keyNav.disable(); + + me.fireEvent('disable', me); + }, + + + enable: function(options) { + var me = this; + + if (options === true) { + options = { focusFrame: true }; + } + me.options = options = options || {}; + + if (me.enabled) { + return; + } + + + me.enabled = true; + me.initDOM(options); + + + me.keyNav.enable(); + + + me.focusEl.focus(); + delete me.focusedCmp; + + me.fireEvent('enable', me); + }, + + focusLast: function(e) { + var me = this; + + if (me.isWhitelisted(me.focusedCmp)) { + return true; + } + + + if (me.previousFocusedCmp) { + me.previousFocusedCmp.focus(); + } + }, + + getRootComponents: function() { + var CQ = Ext.ComponentQuery, + inline = CQ.query(':focusable:root:not([floating])'), + floating = CQ.query(':focusable:root[floating]'); + + + + floating.sort(function(a, b) { + return a.el.getZIndex() > b.el.getZIndex(); + }); + + return floating.concat(inline); + }, + + initDOM: function(options) { + var me = this, + cls = me.focusFrameCls, + needListeners = Ext.ComponentQuery.query('{getFocusEl()}:not([focusListenerAdded])'), + i = 0, len = needListeners.length; + + if (!Ext.isReady) { + return Ext.onReady(me.initDOM, me); + } + + + + + for (; i < len; i++) { + needListeners[i].addFocusListener(); + } + + + if (!me.focusEl) { + me.focusEl = Ext.getBody(); + me.focusEl.dom.tabIndex = -1; + } + + + if (!me.focusFrame && options.focusFrame) { + me.focusFrame = Ext.getBody().createChild({ + cls: cls, + children: [ + { cls: cls + '-top' }, + { cls: cls + '-bottom' }, + { cls: cls + '-left' }, + { cls: cls + '-right' } + ], + style: 'top: -100px; left: -100px;' + }); + me.focusFrame.setVisibilityMode(Ext.Element.DISPLAY); + me.focusFrame.hide().setLocalXY(0, 0); + } + }, + + isWhitelisted: function(cmp) { + return cmp && Ext.Array.some(this.whitelist, function(x) { + return cmp.isXType(x); + }); + }, + + navigateIn: function(e) { + var me = this, + focusedCmp = me.focusedCmp, + defaultRoot, + firstChild; + + if (me.isWhitelisted(focusedCmp)) { + return true; + } + + if (!focusedCmp) { + + defaultRoot = me.getRootComponents()[0]; + if (defaultRoot) { + + + if (defaultRoot.getFocusEl() === me.focusEl) { + me.focusEl.blur(); + } + defaultRoot.focus(); + } + } else { + + + firstChild = focusedCmp.hasFocus ? Ext.ComponentQuery.query('>:focusable', focusedCmp)[0] : focusedCmp; + if (firstChild) { + firstChild.focus(); + } else { + + if (Ext.isFunction(focusedCmp.onClick)) { + e.button = 0; + focusedCmp.onClick(e); + if (focusedCmp.isVisible(true)) { + focusedCmp.focus(); + } else { + me.navigateOut(); + } + } + } + } + }, + + navigateOut: function(e) { + var me = this, + parent; + + if (!me.focusedCmp || !(parent = me.focusedCmp.up(':focusable'))) { + me.focusEl.focus(); + } else { + parent.focus(); + } + + + + + return true; + }, + + navigateSiblings: function(e, source, parent) { + var me = this, + src = source || me, + key = e.getKey(), + EO = Ext.EventObject, + goBack = e.shiftKey || key == EO.LEFT || key == EO.UP, + checkWhitelist = key == EO.LEFT || key == EO.RIGHT || key == EO.UP || key == EO.DOWN, + nextSelector = goBack ? 'prev' : 'next', + idx, next, focusedCmp, siblings; + + focusedCmp = (src.focusedCmp && src.focusedCmp.comp) || src.focusedCmp; + if (!focusedCmp && !parent) { + return true; + } + + if (checkWhitelist && me.isWhitelisted(focusedCmp)) { + return true; + } + + + if (!focusedCmp || focusedCmp.is(':root')) { + siblings = me.getRootComponents(); + } else { + + parent = parent || focusedCmp.up(); + if (parent) { + siblings = parent.getRefItems(); + } + } + + + + if (siblings) { + idx = focusedCmp ? Ext.Array.indexOf(siblings, focusedCmp) : -1; + next = Ext.ComponentQuery.query(':' + nextSelector + 'Focus(' + idx + ')', siblings)[0]; + if (next && focusedCmp !== next) { + next.focus(); + return next; + } + } + }, + + onComponentBlur: function(cmp, e) { + var me = this; + + if (me.focusedCmp === cmp) { + me.previousFocusedCmp = cmp; + delete me.focusedCmp; + } + + if (me.focusFrame) { + me.focusFrame.hide(); + } + }, + + onComponentFocus: function(cmp, e) { + var me = this, + chain = me.focusChain, + parent; + + if (!cmp.isFocusable()) { + me.clearComponent(cmp); + + + + + + if (chain[cmp.id]) { + return; + } + + + parent = cmp.up(); + if (parent) { + + + + chain[cmp.id] = true; + parent.focus(); + } + + return; + } + + me.focusChain = {}; + + + + + me.focusTask.delay(10, null, null, [cmp, cmp.getFocusEl()]); + }, + + handleComponentFocus: function(cmp, focusEl) { + var me = this, + cls, + ff, + box, + bt, + bl, + bw, + bh, + ft, + fb, + fl, + fr; + + if (me.fireEvent('beforecomponentfocus', me, cmp, me.previousFocusedCmp) === false) { + me.clearComponent(cmp); + return; + } + + me.focusedCmp = cmp; + + + if (me.shouldShowFocusFrame(cmp)) { + cls = '.' + me.focusFrameCls + '-'; + ff = me.focusFrame; + + + box = (focusEl.dom ? focusEl : focusEl.el).getBox(); + + + + + bt = box.top; + bl = box.left; + bw = box.width; + bh = box.height; + ft = ff.child(cls + 'top'); + fb = ff.child(cls + 'bottom'); + fl = ff.child(cls + 'left'); + fr = ff.child(cls + 'right'); + + ft.setWidth(bw).setLocalXY(bl, bt); + fb.setWidth(bw).setLocalXY(bl, bt + bh - 2); + fl.setHeight(bh - 2).setLocalXY(bl, bt + 2); + fr.setHeight(bh - 2).setLocalXY(bl + bw - 2, bt + 2); + + ff.show(); + } + + me.fireEvent('componentfocus', me, cmp, me.previousFocusedCmp); + }, + + onComponentHide: function(cmp) { + var me = this, + cmpHadFocus = false, + focusedCmp = me.focusedCmp, + parent; + + if (focusedCmp) { + + + cmpHadFocus = cmp.hasFocus || (cmp.isContainer && cmp.isAncestor(me.focusedCmp)); + } + + me.clearComponent(cmp); + + + if (cmpHadFocus && (parent = cmp.up(':focusable'))) { + parent.focus(); + } else { + me.focusEl.focus(); + } + }, + + onComponentDestroy: function() { + + }, + + removeDOM: function() { + var me = this; + + + + if (me.enabled || me.subscribers.length) { + return; + } + + Ext.destroy( + me.focusFrame + ); + delete me.focusEl; + delete me.focusFrame; + }, + + + removeXTypeFromWhitelist: function(xtype) { + var me = this; + + if (Ext.isArray(xtype)) { + Ext.Array.forEach(xtype, me.removeXTypeFromWhitelist, me); + return; + } + + Ext.Array.remove(me.whitelist, xtype); + }, + + setupSubscriberKeys: function(container, keys) { + var me = this, + el = container.getFocusEl(), + scope = keys.scope, + handlers = { + backspace: me.focusLast, + enter: me.navigateIn, + esc: me.navigateOut, + scope: me + }, + + navSiblings = function(e) { + if (me.focusedCmp === container) { + + + + return me.navigateSiblings(e, me, container); + } else { + return me.navigateSiblings(e); + } + }; + + Ext.iterate(keys, function(key, cb) { + handlers[key] = function(e) { + var ret = navSiblings(e); + + if (Ext.isFunction(cb) && cb.call(scope || container, e, ret) === true) { + return true; + } + + return ret; + }; + }, me); + + return new Ext.util.KeyNav(el, handlers); + }, + + shouldShowFocusFrame: function(cmp) { + var me = this, + opts = me.options || {}; + + + + + if (!me.focusFrame || !cmp) { + return false; + } + + + if (opts.focusFrame) { + return true; + } + + if (me.focusData[cmp.id].focusFrame) { + return true; + } + + return false; + } +}); + + +Ext.define('Ext.Img', { + extend: Ext.Component , + alias: ['widget.image', 'widget.imagecomponent'], + + autoEl: 'img', + + baseCls: Ext.baseCSSPrefix + 'img', + + + src: '', + + + alt: '', + + + title: '', + + + imgCls: '', + + + + initComponent: function() { + if (this.glyph) { + this.autoEl = 'div'; + } + this.callParent(); + }, + + getElConfig: function() { + var me = this, + config = me.callParent(), + glyphFontFamily = Ext._glyphFontFamily, + glyph = me.glyph, + img, glyphParts; + + + + if (me.autoEl == 'img') { + img = config; + } else if (me.glyph) { + if (typeof glyph === 'string') { + glyphParts = glyph.split('@'); + glyph = glyphParts[0]; + glyphFontFamily = glyphParts[1]; + } + config.html = '&#' + glyph + ';'; + if (glyphFontFamily) { + config.style = 'font-family:' + glyphFontFamily; + } + } else { + config.cn = [img = { + tag: 'img', + id: me.id + '-img' + }]; + } + + if (img) { + if (me.imgCls) { + img.cls = (img.cls ? img.cls + ' ' : '') + me.imgCls; + } + + img.src = me.src || Ext.BLANK_IMAGE_URL; + } + + if (me.alt) { + (img || config).alt = me.alt; + } + if (me.title) { + (img || config).title = me.title; + } + + return config; + }, + + onRender: function () { + var me = this, + el; + + me.callParent(arguments); + + el = me.el; + me.imgEl = (me.autoEl == 'img') ? el : el.getById(me.id + '-img'); + }, + + onDestroy: function () { + Ext.destroy(this.imgEl); + this.imgEl = null; + this.callParent(); + }, + + + setSrc: function(src) { + var me = this, + imgEl = me.imgEl; + + me.src = src; + + if (imgEl) { + imgEl.dom.src = src || Ext.BLANK_IMAGE_URL; + } + }, + + setGlyph: function(glyph) { + var me = this, + glyphFontFamily = Ext._glyphFontFamily, + glyphParts, dom; + + if (glyph != me.glyph) { + if (typeof glyph === 'string') { + glyphParts = glyph.split('@'); + glyph = glyphParts[0]; + glyphFontFamily = glyphParts[1]; + } + + dom = me.el.dom; + + dom.innerHTML = '&#' + glyph + ';'; + if (glyphFontFamily) { + dom.style = 'font-family:' + glyphFontFamily; + } + } + } +}); + + +Ext.define('Ext.util.Bindable', { + + + bindStore: function(store, initial, propertyName) { + + + + propertyName = propertyName || 'store'; + + var me = this, + oldStore = me[propertyName]; + + if (!initial && oldStore) { + + me.onUnbindStore(oldStore, initial, propertyName); + + if (store !== oldStore && oldStore.autoDestroy) { + oldStore.destroyStore(); + } else { + me.unbindStoreListeners(oldStore); + } + } + if (store) { + store = Ext.data.StoreManager.lookup(store); + me.bindStoreListeners(store); + me.onBindStore(store, initial, propertyName); + } + me[propertyName] = store || null; + return me; + }, + + + getStore: function(){ + return this.store; + }, + + + unbindStoreListeners: function(store) { + + var listeners = this.storeListeners; + if (listeners) { + store.un(listeners); + } + }, + + + bindStoreListeners: function(store) { + + var me = this, + listeners = Ext.apply({}, me.getStoreListeners(store)); + + if (!listeners.scope) { + listeners.scope = me; + } + me.storeListeners = listeners; + store.on(listeners); + }, + + + getStoreListeners: Ext.emptyFn, + + + onUnbindStore: Ext.emptyFn, + + + onBindStore: Ext.emptyFn +}); + + +Ext.define('Ext.LoadMask', { + + extend: Ext.Component , + + alias: 'widget.loadmask', + + + + mixins: { + floating: Ext.util.Floating , + bindable: Ext.util.Bindable + }, + + + + + + + + + + + + msg : 'Loading...', + + + + msgCls : Ext.baseCSSPrefix + 'mask-loading', + + + maskCls: Ext.baseCSSPrefix + 'mask', + + + useMsg: true, + + + useTargetEl: false, + + baseCls: Ext.baseCSSPrefix + 'mask-msg', + + childEls: [ + 'msgEl', + 'msgTextEl' + ], + + renderTpl: [ + '
', + '
', + '
' + ], + + + floating: { + shadow: 'frame' + }, + + + focusOnToFront: false, + + + + bringParentToFront: false, + + + constructor : function(config) { + var me = this, + comp; + + if (arguments.length === 2) { + comp = config; + config = arguments[1]; + } else { + comp = config.target; + } + + + if (!comp.isComponent) { + comp = Ext.get(comp); + this.isElement = true; + } + + me.ownerCt = comp; + if (!this.isElement) { + me.bindComponent(comp); + } + me.callParent([config]); + + if (me.store) { + me.bindStore(me.store, true); + } + }, + + bindComponent: function(comp) { + var me = this, + listeners = { + scope: this, + resize: me.sizeMask, + added: me.onComponentAdded, + removed: me.onComponentRemoved + }; + + if (comp.floating) { + listeners.move = me.sizeMask; + me.activeOwner = comp; + } else if (comp.ownerCt) { + me.onComponentAdded(comp.ownerCt); + } else { + + me.preventBringToFront = true; + } + + me.mon(comp, listeners); + + + me.mon(me.hierarchyEventSource, { + show: me.onContainerShow, + hide: me.onContainerHide, + expand: me.onContainerExpand, + collapse: me.onContainerCollapse, + scope: me + }); + }, + + onComponentAdded: function(owner) { + var me = this; + delete me.activeOwner; + me.floatParent = owner; + if (!owner.floating) { + owner = owner.up('[floating]'); + } + if (owner) { + me.activeOwner = owner; + me.mon(owner, 'move', me.sizeMask, me); + } else { + me.preventBringToFront = true; + } + owner = me.floatParent.ownerCt; + if (me.rendered && me.isVisible() && owner) { + me.floatOwner = owner; + me.mon(owner, 'afterlayout', me.sizeMask, me, {single: true}); + } + }, + + onComponentRemoved: function(owner) { + var me = this, + activeOwner = me.activeOwner, + floatOwner = me.floatOwner; + + if (activeOwner) { + me.mun(activeOwner, 'move', me.sizeMask, me); + } + if (floatOwner) { + me.mun(floatOwner, 'afterlayout', me.sizeMask, me); + } + delete me.activeOwner; + delete me.floatOwner; + }, + + afterRender: function() { + this.callParent(arguments); + this.container = this.floatParent.getContentTarget(); + }, + + onContainerShow: function(container) { + if (this.isActiveContainer(container)) { + this.onComponentShow(); + } + }, + + onContainerHide: function(container) { + if (this.isActiveContainer(container)) { + this.onComponentHide(); + } + }, + + onContainerExpand: function(container) { + if (this.isActiveContainer(container)) { + this.onComponentShow(); + } + }, + + onContainerCollapse: function(container) { + if (this.isActiveContainer(container)) { + this.onComponentHide(); + } + }, + + isActiveContainer: function(container) { + return this.isDescendantOf(container); + }, + + onComponentHide: function() { + var me = this; + + if (me.rendered && me.isVisible()) { + me.hide(); + me.showNext = true; + } + }, + + onComponentShow: function() { + if (this.showNext) { + this.show(); + } + delete this.showNext; + }, + + + sizeMask: function() { + var me = this, + target; + + if (me.rendered && me.isVisible()) { + me.center(); + + target = me.getMaskTarget(); + me.getMaskEl().show().setSize(target.getSize()).alignTo(target, 'tl-tl'); + + } + }, + + + bindStore : function(store, initial) { + var me = this; + me.mixins.bindable.bindStore.apply(me, arguments); + store = me.store; + if (store && store.isLoading()) { + me.onBeforeLoad(); + } + }, + + getStoreListeners: function(store) { + var load = this.onLoad, + beforeLoad = this.onBeforeLoad, + result = { + + cachemiss: beforeLoad, + + + cachefilled: load + }; + + + if (!store.proxy.isSynchronous) { + result.beforeLoad = beforeLoad; + result.load = load; + } + return result; + }, + + onDisable : function() { + this.callParent(arguments); + if (this.loading) { + this.onLoad(); + } + }, + + getOwner: function() { + return this.ownerCt || this.floatParent; + }, + + getMaskTarget: function() { + var owner = this.getOwner(); + return this.useTargetEl ? owner.getTargetEl() : owner.getEl(); + }, + + + onBeforeLoad : function() { + var me = this, + owner = me.getOwner(), + origin; + + if (!me.disabled) { + me.loading = true; + + + if (owner.componentLayoutCounter) { + me.maybeShow(); + } else { + + origin = owner.afterComponentLayout; + owner.afterComponentLayout = function() { + owner.afterComponentLayout = origin; + origin.apply(owner, arguments); + me.maybeShow(); + }; + } + } + }, + + maybeShow: function() { + var me = this, + owner = me.getOwner(); + + if (!owner.isVisible(true)) { + me.showNext = true; + } + else if (me.loading && owner.rendered) { + me.show(); + } + }, + + getMaskEl: function(){ + var me = this; + return me.maskEl || (me.maskEl = me.el.insertSibling({ + cls: me.maskCls, + style: { + zIndex: me.el.getStyle('zIndex') - 2 + } + }, 'before')); + }, + + onShow: function() { + var me = this, + msgEl = me.msgEl; + + me.callParent(arguments); + me.loading = true; + + if (me.useMsg) { + msgEl.show(); + me.msgTextEl.update(me.msg); + } else { + msgEl.parent().hide(); + } + }, + + hide: function() { + + if (this.isElement) { + this.ownerCt.unmask(); + this.fireEvent('hide', this); + return; + } + delete this.showNext; + return this.callParent(arguments); + }, + + onHide: function() { + this.callParent(); + this.getMaskEl().hide(); + }, + + show: function() { + + if (this.isElement) { + this.ownerCt.mask(this.useMsg ? this.msg : '', this.msgCls); + this.fireEvent('show', this); + return; + } + return this.callParent(arguments); + }, + + afterShow: function() { + this.callParent(arguments); + this.sizeMask(); + }, + + setZIndex: function(index) { + var me = this, + owner = me.activeOwner; + + if (owner) { + + + + index = parseInt(owner.el.getStyle('zIndex'), 10) + 1; + } + + me.getMaskEl().setStyle('zIndex', index - 1); + return me.mixins.floating.setZIndex.apply(me, arguments); + }, + + + onLoad : function() { + this.loading = false; + this.hide(); + }, + + onDestroy: function() { + var me = this; + + if (me.isElement) { + me.ownerCt.unmask(); + } + + Ext.destroy(me.maskEl); + me.callParent(); + } +}); + + +Ext.define('Ext.data.association.Association', { + alternateClassName: 'Ext.data.Association', + + + + + + + + primaryKey: 'id', + + + + + + associationKeyFunction : null, + + defaultReaderType: 'json', + + isAssociation: true, + + initialConfig: null, + + statics: { + AUTO_ID: 1000, + + create: function(association){ + if (Ext.isString(association)) { + association = { + type: association + }; + } + + switch (association.type) { + case 'belongsTo': + return new Ext.data.association.BelongsTo(association); + case 'hasMany': + return new Ext.data.association.HasMany(association); + case 'hasOne': + return new Ext.data.association.HasOne(association); + + + + default: + } + return association; + } + }, + + + constructor: function(config) { + Ext.apply(this, config); + + var me = this, + types = Ext.ModelManager.types, + ownerName = config.ownerModel, + associatedName = config.associatedModel, + ownerModel = types[ownerName], + associatedModel = types[associatedName], + associationKey = config.associationKey, + keyReIdx; + + if (associationKey) { + keyReIdx = String(associationKey).search(/[\[\.]/); + + if (keyReIdx >= 0) { + me.associationKeyFunction = Ext.functionFactory('obj', 'return obj' + (keyReIdx > 0 ? '.' : '') + associationKey); + } + } + + me.initialConfig = config; + + + me.ownerModel = ownerModel; + me.associatedModel = associatedModel; + + + + + + Ext.applyIf(me, { + ownerName : ownerName, + associatedName: associatedName + }); + + me.associationId = 'association' + (++me.statics().AUTO_ID); + }, + + + getReader: function(){ + var me = this, + reader = me.reader, + model = me.associatedModel; + + if (reader) { + if (Ext.isString(reader)) { + reader = { + type: reader + }; + } + if (reader.isReader) { + reader.setModel(model); + } else { + Ext.applyIf(reader, { + model: model, + type : me.defaultReaderType + }); + } + me.reader = Ext.createByAlias('reader.' + reader.type, reader); + } + return me.reader || null; + } +}); + + +Ext.define('Ext.ModelManager', { + extend: Ext.AbstractManager , + alternateClassName: 'Ext.ModelMgr', + + + singleton: true, + + typeName: 'mtype', + + + associationStack: [], + + + registerType: function(name, config) { + var proto = config.prototype, + model; + if (proto && proto.isModel) { + + model = config; + } else { + + if (!config.extend) { + config.extend = 'Ext.data.Model'; + } + model = Ext.define(name, config); + } + this.types[name] = model; + return model; + }, + + + unregisterType: function(name) { + delete this.types[name]; + }, + + + onModelDefined: function(model) { + var stack = this.associationStack, + length = stack.length, + create = [], + association, i, created; + + for (i = 0; i < length; i++) { + association = stack[i]; + + if (association.associatedModel == model.modelName) { + create.push(association); + } + } + + for (i = 0, length = create.length; i < length; i++) { + created = create[i]; + this.types[created.ownerModel].prototype.associations.add(Ext.data.association.Association.create(created)); + Ext.Array.remove(stack, created); + } + }, + + + registerDeferredAssociation: function(association){ + this.associationStack.push(association); + }, + + + getModel: function(id) { + var model = id; + if (typeof model == 'string') { + model = this.types[model]; + } + return model; + }, + + + create: function(config, name, id) { + var Con = typeof name == 'function' ? name : this.types[name || config.name]; + + return new Con(config, id); + } +}, function() { + + + Ext.regModel = function() { + return this.ModelManager.registerType.apply(this.ModelManager, arguments); + }; +}); + + +Ext.define('Ext.layout.component.ProgressBar', { + + + + alias: ['layout.progressbar'], + + extend: Ext.layout.component.Auto , + + + + type: 'progressbar', + + beginLayout: function (ownerContext) { + var me = this, + i, textEls; + + me.callParent(arguments); + + if (!ownerContext.textEls) { + textEls = me.owner.textEl; + + if (textEls.isComposite) { + ownerContext.textEls = []; + textEls = textEls.elements; + for (i = textEls.length; i--; ) { + ownerContext.textEls[i] = ownerContext.getEl(Ext.get(textEls[i])); + } + } else { + ownerContext.textEls = [ ownerContext.getEl('textEl') ]; + } + } + }, + + calculate: function(ownerContext) { + var me = this, + i, textEls, width; + + me.callParent(arguments); + + if (Ext.isNumber(width = ownerContext.getProp('width'))) { + width -= ownerContext.getBorderInfo().width; + textEls = ownerContext.textEls; + + for (i = textEls.length; i--; ) { + textEls[i].setWidth(width); + } + } else { + me.done = false; + } + } +}); + + +Ext.define('Ext.ProgressBar', { + extend: Ext.Component , + alias: 'widget.progressbar', + + + + + + + + + + + + + + + + + + baseCls: Ext.baseCSSPrefix + 'progress', + + + animate: false, + + + text: '', + + + waitTimer: null, + + childEls: [ + 'bar' + ], + + renderTpl: [ + '', + '
{text}
', + '
', + '
', + '', + '
', + '
{text}
', + '
', + '
', + '
' + ], + + componentLayout: 'progressbar', + + + initComponent: function() { + this.callParent(); + + this.addEvents( + + "update" + ); + }, + + initRenderData: function() { + var me = this; + return Ext.apply(me.callParent(), { + internalText : !me.hasOwnProperty('textEl'), + text : me.text || ' ', + percentage : me.value ? me.value * 100 : 0 + }); + }, + + onRender : function() { + var me = this; + + me.callParent(arguments); + + + if (me.textEl) { + me.textEl = Ext.get(me.textEl); + me.updateText(me.text); + } + + else { + + + me.textEl = me.el.select('.' + me.baseCls + '-text'); + } + }, + + + updateProgress: function(value, text, animate) { + var me = this, + oldValue = me.value; + + me.value = value || 0; + if (text) { + me.updateText(text); + } + if (me.rendered && !me.isDestroyed) { + if (animate === true || (animate !== false && me.animate)) { + me.bar.stopAnimation(); + me.bar.animate(Ext.apply({ + from: { + width: (oldValue * 100) + '%' + }, + to: { + width: (me.value * 100) + '%' + } + }, me.animate)); + } else { + me.bar.setStyle('width', (me.value * 100) + '%'); + } + } + me.fireEvent('update', me, me.value, text); + return me; + }, + + + updateText: function(text) { + var me = this; + + me.text = text; + if (me.rendered) { + me.textEl.update(me.text); + } + return me; + }, + + applyText : function(text) { + this.updateText(text); + }, + + getText: function(){ + return this.text; + }, + + + wait: function(o) { + var me = this, scope; + + if (!me.waitTimer) { + scope = me; + o = o || {}; + me.updateText(o.text); + me.waitTimer = Ext.TaskManager.start({ + run: function(i){ + var inc = o.increment || 10; + i -= 1; + me.updateProgress(((((i+inc)%inc)+1)*(100/inc))*0.01, null, o.animate); + }, + interval: o.interval || 1000, + duration: o.duration, + onStop: function(){ + if (o.fn) { + o.fn.apply(o.scope || me); + } + me.reset(); + }, + scope: scope + }); + } + return me; + }, + + + isWaiting: function(){ + return this.waitTimer !== null; + }, + + + reset: function(hide){ + var me = this; + + me.updateProgress(0); + me.clearTimer(); + if (hide === true) { + me.hide(); + } + return me; + }, + + + clearTimer: function(){ + var me = this; + + if (me.waitTimer) { + me.waitTimer.onStop = null; + Ext.TaskManager.stop(me.waitTimer); + me.waitTimer = null; + } + }, + + onDestroy: function(){ + var me = this, + bar = me.bar; + + me.clearTimer(); + if (me.rendered) { + if (me.textEl.isComposite) { + me.textEl.clear(); + } + Ext.destroyMembers(me, 'textEl', 'progressBar'); + if (bar && me.animate) { + bar.stopAnimation(); + } + } + me.callParent(); + } +}); + + +Ext.define('Ext.ShadowPool', { + singleton: true, + + + markup: (function() { + return Ext.String.format( + '', + Ext.baseCSSPrefix, + Ext.isIE && !Ext.supports.CSS3BoxShadow ? 'ie' : 'css' + ); + }()), + + shadows: [], + + pull: function() { + var sh = this.shadows.shift(); + if (!sh) { + sh = Ext.get(Ext.DomHelper.insertHtml("beforeBegin", document.body.firstChild, this.markup)); + sh.autoBoxAdjust = false; + } + return sh; + }, + + push: function(sh) { + this.shadows.push(sh); + }, + + reset: function() { + var shadows = [].concat(this.shadows), + s, + sLen = shadows.length; + + for (s = 0; s < sLen; s++) { + shadows[s].remove(); + } + + this.shadows = []; + } +}); + + +Ext.define('Ext.Shadow', { + + + localXYNames: { + get: 'getLocalXY', + set: 'setLocalXY' + }, + + + constructor: function(config) { + var me = this, + adjusts, + offset, + rad; + + Ext.apply(me, config); + if (!Ext.isString(me.mode)) { + me.mode = me.defaultMode; + } + offset = me.offset; + rad = Math.floor(offset / 2); + me.opacity = 50; + switch (me.mode.toLowerCase()) { + + case "drop": + if (Ext.supports.CSS3BoxShadow) { + adjusts = { + t: offset, + l: offset, + h: -offset, + w: -offset + }; + } + else { + adjusts = { + t: -rad, + l: -rad, + h: -rad, + w: -rad + }; + } + break; + case "sides": + if (Ext.supports.CSS3BoxShadow) { + adjusts = { + t: offset, + l: 0, + h: -offset, + w: 0 + }; + } + else { + adjusts = { + t: - (1 + rad), + l: 1 + rad - 2 * offset, + h: -1, + w: rad - 1 + }; + } + break; + case "frame": + if (Ext.supports.CSS3BoxShadow) { + adjusts = { + t: 0, + l: 0, + h: 0, + w: 0 + }; + } + else { + adjusts = { + t: 1 + rad - 2 * offset, + l: 1 + rad - 2 * offset, + h: offset - rad - 1, + w: offset - rad - 1 + }; + } + break; + case "bottom": + if (Ext.supports.CSS3BoxShadow) { + adjusts = { + t: offset, + l: 0, + h: -offset, + w: 0 + }; + } + else { + adjusts = { + t: offset, + l: 0, + h: 0, + w: 0 + }; + } + break; + } + me.adjusts = adjusts; + }, + + + getShadowSize: function() { + var me = this, + offset = me.el ? me.offset : 0, + result = [offset, offset, offset, offset], + mode = me.mode.toLowerCase(); + + + if (me.el && mode !== 'frame') { + result[0] = 0; + if (mode == 'drop') { + result[3] = 0; + } + } + return result; + }, + + + + + offset: 4, + + + defaultMode: "drop", + + + boxShadowProperty: (function() { + var property = 'boxShadow', + style = document.documentElement.style; + + if (!('boxShadow' in style)) { + if ('WebkitBoxShadow' in style) { + + property = 'WebkitBoxShadow'; + } + else if ('MozBoxShadow' in style) { + + property = 'MozBoxShadow'; + } + } + + return property; + }()), + + + show: function(target) { + var me = this, + index, xy; + + target = Ext.get(target); + + + index = (parseInt(target.getStyle("z-index"), 10) - 1) || 0; + xy = target[me.localXYNames.get](); + + + if (!me.el) { + me.el = Ext.ShadowPool.pull(); + + if (me.fixed) { + me.el.dom.style.position = 'fixed'; + } else { + me.el.dom.style.position = ''; + } + if (me.el.dom.nextSibling != target.dom) { + me.el.insertBefore(target); + } + } + me.el.setStyle("z-index", me.zIndex || index); + if (Ext.isIE && !Ext.supports.CSS3BoxShadow) { + me.el.dom.style.filter = "progid:DXImageTransform.Microsoft.alpha(opacity=" + me.opacity + ") progid:DXImageTransform.Microsoft.Blur(pixelradius=" + (me.offset) + ")"; + } + me.realign( + xy[0], + xy[1], + target.dom.offsetWidth, + target.dom.offsetHeight + ); + me.el.dom.style.display = "block"; + }, + + + isVisible: function() { + return this.el ? true: false; + }, + + + realign: function(l, t, targetWidth, targetHeight) { + if (!this.el) { + return; + } + var adjusts = this.adjusts, + el = this.el, + targetStyle = el.dom.style, + shadowWidth, + shadowHeight, + sws, + shs; + + el[this.localXYNames.set](l + adjusts.l, t + adjusts.t); + shadowWidth = Math.max(targetWidth + adjusts.w, 0); + shadowHeight = Math.max(targetHeight + adjusts.h, 0); + sws = shadowWidth + "px"; + shs = shadowHeight + "px"; + if (targetStyle.width != sws || targetStyle.height != shs) { + targetStyle.width = sws; + targetStyle.height = shs; + + if (Ext.supports.CSS3BoxShadow) { + targetStyle[this.boxShadowProperty] = '0 0 ' + (this.offset + 2) + 'px #888'; + } + } + }, + + + hide: function() { + var me = this; + + if (me.el) { + me.el.dom.style.display = "none"; + Ext.ShadowPool.push(me.el); + delete me.el; + } + }, + + + setZIndex: function(z) { + this.zIndex = z; + if (this.el) { + this.el.setStyle("z-index", z); + } + }, + + + setOpacity: function(opacity){ + if (this.el) { + if (Ext.isIE && !Ext.supports.CSS3BoxShadow) { + opacity = Math.floor(opacity * 100 / 2) / 100; + } + this.opacity = opacity; + this.el.setOpacity(opacity); + } + } +}); + + + +Ext.define('Ext.app.EventDomain', { + + + + + statics: { + + instances: {} + }, + + + + isEventDomain: true, + + constructor: function() { + var me = this; + + Ext.app.EventDomain.instances[me.type] = me; + + me.bus = {}; + me.monitoredClasses = []; + }, + + + dispatch: function(target, ev, args) { + var me = this, + bus = me.bus, + selectors = bus[ev], + selector, controllers, id, events, event, i, ln; + + if (!selectors) { + return true; + } + + + for (selector in selectors) { + + if (selectors.hasOwnProperty(selector) && me.match(target, selector)) { + + controllers = selectors[selector]; + + for (id in controllers) { + if (controllers.hasOwnProperty(id)) { + + events = controllers[id]; + + for (i = 0, ln = events.length; i < ln; i++) { + event = events[i]; + + + if (event.fire.apply(event, args) === false) { + return false; + } + } + } + } + } + } + + return true; + }, + + + listen: function(selectors, controller) { + var me = this, + bus = me.bus, + idProperty = me.idProperty, + monitoredClasses = me.monitoredClasses, + monitoredClassesCount = monitoredClasses.length, + i, tree, list, selector, options, listener, scope, event, listeners, ev; + + for (selector in selectors) { + if (selectors.hasOwnProperty(selector) && (listeners = selectors[selector])) { + if (idProperty) { + + selector = selector === '*' ? selector : selector.substring(1); + } + + for (ev in listeners) { + if (listeners.hasOwnProperty(ev)) { + options = null; + listener = listeners[ev]; + scope = controller; + event = new Ext.util.Event(controller, ev); + + + if (Ext.isObject(listener)) { + options = listener; + listener = options.fn; + scope = options.scope || controller; + + delete options.fn; + delete options.scope; + } + + if (typeof listener === 'string') { + listener = scope[listener]; + } + event.addListener(listener, scope, options); + + for (i = monitoredClassesCount; i-- > 0;) { + monitoredClasses[i].hasListeners._incr_(ev); + } + + + tree = bus[ev] || (bus[ev] = {}); + tree = tree[selector] || (tree[selector] = {}); + list = tree[controller.id] || (tree[controller.id] = []); + + + list.push(event); + } + } + } + } + }, + + + match: function(target, selector) { + var idProperty = this.idProperty; + + if (idProperty) { + return selector === '*' || target[idProperty] === selector; + } + + return false; + }, + + + monitor: function(observable) { + var domain = this, + prototype = observable.isInstance ? observable : observable.prototype, + fireEventArgs = prototype.fireEventArgs; + + domain.monitoredClasses.push(observable); + + prototype.fireEventArgs = function(ev, args) { + var ret = fireEventArgs.apply(this, arguments); + + if (ret !== false) { + ret = domain.dispatch(this, ev, args); + } + + return ret; + }; + }, + + + unlisten: function(controllerId) { + var bus = this.bus, + controllers, ev, selector, selectors; + + for (ev in bus) { + if (bus.hasOwnProperty(ev) && (selectors = bus[ev])) { + for (selector in selectors) { + controllers = selectors[selector]; + delete controllers[controllerId]; + } + } + } + } +}); + + +Ext.define('Ext.app.domain.Component', { + extend: Ext.app.EventDomain , + singleton: true, + + + + + + type: 'component', + + constructor: function() { + var me = this; + + me.callParent(); + me.monitor(Ext.Component); + }, + + match: function(target, selector) { + return target.is(selector); + } +}); + + +Ext.define('Ext.app.EventBus', { + singleton: true, + + + + + + constructor: function() { + var me = this, + domains = Ext.app.EventDomain.instances; + + me.callParent(); + + me.domains = domains; + me.bus = domains.component.bus; + }, + + + control: function(selectors, controller) { + return this.domains.component.listen(selectors, controller); + }, + + + listen: function(to, controller) { + var domains = this.domains, + domain; + + for (domain in to) { + if (to.hasOwnProperty(domain)) { + domains[domain].listen(to[domain], controller); + } + } + }, + + + unlisten: function(controllerId) { + var domains = Ext.app.EventDomain.instances, + domain; + + for (domain in domains) { + domains[domain].unlisten(controllerId); + } + } +}); + + +Ext.define('Ext.data.StoreManager', { + extend: Ext.util.MixedCollection , + alternateClassName: ['Ext.StoreMgr', 'Ext.data.StoreMgr', 'Ext.StoreManager'], + singleton: true, + + + + + + register : function() { + for (var i = 0, s; (s = arguments[i]); i++) { + this.add(s); + } + }, + + + unregister : function() { + for (var i = 0, s; (s = arguments[i]); i++) { + this.remove(this.lookup(s)); + } + }, + + + lookup : function(store) { + + if (Ext.isArray(store)) { + var fields = ['field1'], + expand = !Ext.isArray(store[0]), + data = store, + i, + len; + + if(expand){ + data = []; + for (i = 0, len = store.length; i < len; ++i) { + data.push([store[i]]); + } + } else { + for(i = 2, len = store[0].length; i <= len; ++i){ + fields.push('field' + i); + } + } + return new Ext.data.ArrayStore({ + data : data, + fields: fields, + autoDestroy: true, + autoCreated: true, + expanded: expand + }); + } + + if (Ext.isString(store)) { + + return this.get(store); + } else { + + return Ext.data.AbstractStore.create(store); + } + }, + + + getKey : function(o) { + return o.storeId; + } +}, function() { + + Ext.regStore = function(name, config) { + var store; + + if (Ext.isObject(name)) { + config = name; + } else { + config.storeId = name; + } + + if (config instanceof Ext.data.Store) { + store = config; + } else { + store = new Ext.data.Store(config); + } + + return Ext.data.StoreManager.register(store); + }; + + + Ext.getStore = function(name) { + return Ext.data.StoreManager.lookup(name); + }; +}); + + +Ext.define('Ext.app.domain.Global', { + extend: Ext.app.EventDomain , + singleton: true, + + type: 'global', + + constructor: function() { + var me = this; + + me.callParent(); + me.monitor(Ext.globalEvents); + }, + + + listen: function(listeners, controller) { + + + this.callParent([{ global: listeners }, controller]); + }, + + match: function() { + return true; + } +}); + + +Ext.define('Ext.data.ResultSet', { + + loaded: true, + + + count: 0, + + + total: 0, + + + success: false, + + + + + constructor: function(config) { + Ext.apply(this, config); + + + this.totalRecords = this.total; + + if (config.count === undefined) { + this.count = this.records.length; + } + } +}); + + +Ext.define('Ext.data.reader.Reader', { + + alternateClassName: ['Ext.data.Reader', 'Ext.data.DataReader'], + + mixins: { + observable: Ext.util.Observable + }, + + + + + totalProperty: 'total', + + + successProperty: 'success', + + + root: '', + + + + + implicitIncludes: true, + + + readRecordsOnFailure: true, + + + + + isReader: true, + + + + + applyDefaults: true, + + lastFieldGeneration: null, + + + constructor: function(config) { + var me = this; + + me.mixins.observable.constructor.call(me, config); + me.fieldCount = 0; + me.model = Ext.ModelManager.getModel(me.model); + + + + + + + if (me.model && me.model.prototype.fields) { + me.buildExtractors(); + } + + this.addEvents( + + 'exception' + ); + }, + + + setModel: function(model, setOnProxy) { + var me = this; + + me.model = Ext.ModelManager.getModel(model); + if (model) { + me.buildExtractors(true); + } + + if (setOnProxy && me.proxy) { + me.proxy.setModel(me.model, true); + } + }, + + + read: function(response) { + var data; + + if (response) { + data = response.responseText ? this.getResponseData(response) : this.readRecords(response); + } + + return data || this.nullResultSet; + }, + + + readRecords: function(data) { + var me = this, + success, + recordCount, + records, + root, + total, + value, + message; + + + if (me.lastFieldGeneration !== me.model.prototype.fields.generation) { + me.buildExtractors(true); + } + + + me.rawData = data; + + data = me.getData(data); + + success = true; + recordCount = 0; + records = []; + + if (me.successProperty) { + value = me.getSuccess(data); + if (value === false || value === 'false') { + success = false; + } + } + + if (me.messageProperty) { + message = me.getMessage(data); + } + + + + if (me.readRecordsOnFailure || success) { + + + root = Ext.isArray(data) ? data : me.getRoot(data); + + if (root) { + total = root.length; + } + + if (me.totalProperty) { + value = parseInt(me.getTotal(data), 10); + if (!isNaN(value)) { + total = value; + } + } + + if (root) { + records = me.extractData(root); + recordCount = records.length; + } + } + + return new Ext.data.ResultSet({ + total : total || recordCount, + count : recordCount, + records: records, + success: success, + message: message + }); + }, + + + extractData : function(root) { + var me = this, + Model = me.model, + length = root.length, + records = new Array(length), + convertedValues, node, record, i; + + if (!root.length && Ext.isObject(root)) { + root = [root]; + length = 1; + } + + for (i = 0; i < length; i++) { + node = root[i]; + if (node.isModel) { + + + records[i] = node; + } else { + + + + records[i] = record = new Model(undefined, me.getId(node), node, convertedValues = {}); + + + + record.phantom = false; + + + me.convertRecordData(convertedValues, node, record); + + if (me.implicitIncludes && record.associations.length) { + me.readAssociated(record, node); + } + } + } + + return records; + }, + + + readAssociated: function(record, data) { + var associations = record.associations.items, + i = 0, + length = associations.length, + association, associationData, proxy, reader; + + for (; i < length; i++) { + association = associations[i]; + associationData = this.getAssociatedDataRoot(data, association.associationKeyFunction || association.associationKey || association.name); + + if (associationData) { + reader = association.getReader(); + if (!reader) { + proxy = association.associatedModel.getProxy(); + + if (proxy) { + reader = proxy.getReader(); + } else { + reader = new this.constructor({ + model: association.associatedName + }); + } + } + association.read(record, reader, associationData); + } + } + }, + + + getAssociatedDataRoot: function(data, associationName) { + if (Ext.isFunction(associationName)) { + return associationName(data); + } + + return data[associationName]; + }, + + getFields: function() { + return this.model.prototype.fields.items; + }, + + + getData: Ext.identityFn, + + + getRoot: Ext.identityFn, + + + getResponseData: function(response) { + }, + + + onMetaChange : function(meta) { + var me = this, + fields = meta.fields || me.getFields(), + newModel, + clientIdProperty; + + + me.metaData = meta; + + + me.root = meta.root || me.root; + me.idProperty = meta.idProperty || me.idProperty; + me.totalProperty = meta.totalProperty || me.totalProperty; + me.successProperty = meta.successProperty || me.successProperty; + me.messageProperty = meta.messageProperty || me.messageProperty; + clientIdProperty = meta.clientIdProperty; + + if (me.model) { + me.model.setFields(fields, me.idProperty, clientIdProperty); + me.setModel(me.model, true); + } + else { + newModel = Ext.define("Ext.data.reader.Json-Model" + Ext.id(), { + extend: 'Ext.data.Model', + fields: fields, + clientIdProperty: clientIdProperty + }); + if (me.idProperty) { + + + + + newModel.idProperty = me.idProperty; + } + me.setModel(newModel, true); + } + }, + + + getIdProperty: function() { + var idField = this.model.prototype.idField, + idProperty = this.idProperty; + + if (!idProperty && idField && (idProperty = idField.mapping) == null) { + idProperty = idField.name; + } + return idProperty; + }, + + + buildExtractors: function(force) { + var me = this, + idProp = me.getIdProperty(), + totalProp = me.totalProperty, + successProp = me.successProperty, + messageProp = me.messageProperty, + accessor; + + if (force === true) { + delete me.convertRecordData; + } + + if (me.convertRecordData) { + return; + } + + + if (totalProp) { + me.getTotal = me.createAccessor(totalProp); + } + + if (successProp) { + me.getSuccess = me.createAccessor(successProp); + } + + if (messageProp) { + me.getMessage = me.createAccessor(messageProp); + } + + + if (idProp) { + accessor = me.createAccessor(idProp); + me.getId = function(record) { + var id = accessor.call(me, record); + return (id === undefined || id === '') ? null : id; + }; + } else { + me.getId = function() { + return null; + }; + } + me.convertRecordData = me.buildRecordDataExtractor(); + me.lastFieldGeneration = me.model.prototype.fields.generation; + }, + + recordDataExtractorTemplate : [ + 'var me = this\n', + ' ,fields = me.model.prototype.fields\n', + ' ,value\n', + ' ,internalId\n', + '', + ' ,__field{#} = fields.map["{name}"]\n', + '', ';\n', + + 'return function(dest, source, record) {\n', + '', + '{% var fieldAccessExpression = this.createFieldAccessExpression(values, "__field" + xindex, "source");', + ' if (fieldAccessExpression) { %}', + + ' value = {[ this.createFieldAccessExpression(values, "__field" + xindex, "source") ]};\n', + + + '', + ' dest["{name}"] = value === undefined ? __field{#}.convert(__field{#}.defaultValue, record) : __field{#}.convert(value, record);\n', + + + '', + ' if (value === undefined) {\n', + ' if (me.applyDefaults) {\n', + '', + ' dest["{name}"] = __field{#}.convert(__field{#}.defaultValue, record);\n', + '', + ' dest["{name}"] = __field{#}.defaultValue\n', + '', + ' };\n', + ' } else {\n', + '', + ' dest["{name}"] = __field{#}.convert(value, record);\n', + '', + ' dest["{name}"] = value;\n', + '', + ' };\n', + + + '', + ' if (value !== undefined) {\n', + '', + ' dest["{name}"] = __field{#}.convert(value, record);\n', + '', + ' dest["{name}"] = value;\n', + '', + ' }\n', + '', + + + + + '{% } else { %}', + '', + '', + ' dest["{name}"] = __field{#}.convert(__field{#}.defaultValue, record);\n', + '', + ' dest["{name}"] = __field{#}.defaultValue\n', + '', + '', + '{% } %}', + '', + + + + + '', + ' if (record && (internalId = {[ this.createFieldAccessExpression(\{mapping: values.clientIdProp\}, null, "source") ]})) {\n', + ' record.{["internalId"]} = internalId;\n', + ' }\n', + '', + + '};' + ], + + + buildRecordDataExtractor: function() { + var me = this, + modelProto = me.model.prototype, + templateData = { + clientIdProp: modelProto.clientIdProperty, + fields: modelProto.fields.items + }; + + me.recordDataExtractorTemplate.createFieldAccessExpression = function() { + return me.createFieldAccessExpression.apply(me,arguments); + }; + + + + + + return Ext.functionFactory(me.recordDataExtractorTemplate.apply(templateData)).call(me); + }, + + destroyReader: function() { + var me = this; + delete me.proxy; + delete me.model; + delete me.convertRecordData; + delete me.getId; + delete me.getTotal; + delete me.getSuccess; + delete me.getMessage; + } +}, function() { + var proto = this.prototype; + Ext.apply(proto, { + + nullResultSet: new Ext.data.ResultSet({ + total : 0, + count : 0, + records: [], + success: true, + message: '' + }), + recordDataExtractorTemplate: new Ext.XTemplate(proto.recordDataExtractorTemplate) + }); +}); + + +Ext.define('Ext.data.reader.Json', { + extend: Ext.data.reader.Reader , + alternateClassName: 'Ext.data.JsonReader', + alias : 'reader.json', + + root: '', + + + + + metaProperty: 'metaData', + + + useSimpleAccessors: false, + + + readRecords: function(data) { + var me = this, + meta; + + + if (me.getMeta) { + meta = me.getMeta(data); + if (meta) { + me.onMetaChange(meta); + } + } else if (data.metaData) { + me.onMetaChange(data.metaData); + } + + + me.jsonData = data; + return me.callParent([data]); + }, + + + getResponseData: function(response) { + var data, error; + + try { + data = Ext.decode(response.responseText); + return this.readRecords(data); + } catch (ex) { + error = new Ext.data.ResultSet({ + total : 0, + count : 0, + records: [], + success: false, + message: ex.message + }); + + this.fireEvent('exception', this, response, error); + + Ext.Logger.warn('Unable to parse the JSON returned by the server'); + + return error; + } + }, + + + buildExtractors : function() { + var me = this, + metaProp = me.metaProperty; + + me.callParent(arguments); + + if (me.root) { + me.getRoot = me.createAccessor(me.root); + } else { + me.getRoot = Ext.identityFn; + } + + if (metaProp) { + me.getMeta = me.createAccessor(metaProp); + } + }, + + + extractData: function(root) { + var recordName = this.record, + data = [], + length, i; + + if (recordName) { + length = root.length; + + if (!length && Ext.isObject(root)) { + length = 1; + root = [root]; + } + + for (i = 0; i < length; i++) { + data[i] = root[i][recordName]; + } + } else { + data = root; + } + return this.callParent([data]); + }, + + + createAccessor: (function() { + var re = /[\[\.]/; + + return function(expr) { + if (Ext.isEmpty(expr)) { + return Ext.emptyFn; + } + if (Ext.isFunction(expr)) { + return expr; + } + if (this.useSimpleAccessors !== true) { + var i = String(expr).search(re); + if (i >= 0) { + return Ext.functionFactory('obj', 'return obj' + (i > 0 ? '.' : '') + expr); + } + } + return function(obj) { + return obj[expr]; + }; + }; + }()), + + + createFieldAccessExpression: (function() { + var re = /[\[\.]/; + + return function(field, fieldVarName, dataName) { + var mapping = field.mapping, + hasMap = mapping || mapping === 0, + map = hasMap ? mapping : field.name, + result, + operatorIndex; + + + if (mapping === false) { + return; + } + + if (typeof map === 'function') { + result = fieldVarName + '.mapping(' + dataName + ', this)'; + } else if (this.useSimpleAccessors === true || ((operatorIndex = String(map).search(re)) < 0)) { + if (!hasMap || isNaN(map)) { + + map = '"' + map + '"'; + } + result = dataName + "[" + map + "]"; + } else if (operatorIndex === 0) { + + + result = dataName + map; + } else { + + + + + + + var parts = map.split('.'), + len = parts.length, + i = 1, + tempResult = dataName + '.' + parts[0], + buffer = [tempResult]; + + for (; i < len; i++) { + tempResult += '.' + parts[i]; + buffer.push(tempResult); + } + result = buffer.join(' && '); + } + return result; + }; + }()) +}); + + +Ext.define('Ext.data.writer.Writer', { + alias: 'writer.base', + alternateClassName: ['Ext.data.DataWriter', 'Ext.data.Writer'], + + + writeAllFields: true, + + + + + nameProperty: 'name', + + + writeRecordId: true, + + + isWriter: true, + + + constructor: function(config) { + Ext.apply(this, config); + }, + + + write: function(request) { + var operation = request.operation, + records = operation.records || [], + len = records.length, + i = 0, + data = []; + + for (; i < len; i++) { + data.push(this.getRecordData(records[i], operation)); + } + return this.writeRecords(request, data); + }, + + + getRecordData: function(record, operation) { + var isPhantom = record.phantom === true, + writeAll = this.writeAllFields || isPhantom, + fields = record.fields, + fieldItems = fields.items, + data = {}, + clientIdProperty = record.clientIdProperty, + changes, + field, + key, + mappedIdProperty, + f, fLen; + + if (writeAll) { + fLen = fieldItems.length; + + for (f = 0; f < fLen; f++) { + field = fieldItems[f]; + if (field.persist) { + this.writeValue(data, field, record); + } + } + } else { + + changes = record.getChanges(); + for (key in changes) { + if (changes.hasOwnProperty(key)) { + field = fields.get(key); + if (field.persist) { + this.writeValue(data, field, record); + } + } + } + } + if (isPhantom) { + if (clientIdProperty && operation && operation.records.length > 1) { + + + data[clientIdProperty] = record.internalId; + } + } else if (this.writeRecordId) { + + mappedIdProperty = fields.get(record.idProperty)[this.nameProperty] || record.idProperty; + data[mappedIdProperty] = record.getId(); + } + + return data; + }, + + writeValue: function(data, field, record){ + var name = field[this.nameProperty], + dateFormat = this.dateFormat || field.dateWriteFormat || field.dateFormat, + value = record.get(field.name); + + + + if (name == null) { + name = field.name; + } + + if (field.serialize) { + data[name] = field.serialize(value, record); + } else if (field.type === Ext.data.Types.DATE && dateFormat && Ext.isDate(value)) { + data[name] = Ext.Date.format(value, dateFormat); + } else { + data[name] = value; + } + } +}); + + +Ext.define('Ext.data.writer.Json', { + extend: Ext.data.writer.Writer , + alternateClassName: 'Ext.data.JsonWriter', + alias: 'writer.json', + + + root: undefined, + + + encode: false, + + + allowSingle: true, + + + expandData: false, + + + getExpandedData: function(data) { + var dataLength = data.length, + i = 0, + item, + prop, + nameParts, + j, + tempObj, + + toObject = function(name, value) { + var o = {}; + o[name] = value; + return o; + }; + + for (; i < dataLength; i++) { + item = data[i]; + + for (prop in item) { + if (item.hasOwnProperty(prop)) { + + nameParts = prop.split('.'); + j = nameParts.length - 1; + + if (j > 0) { + + + tempObj = item[prop]; + + for (; j > 0; j--) { + + + + tempObj = toObject(nameParts[j], tempObj); + } + + + + + item[nameParts[0]] = item[nameParts[0]] || {}; + + + Ext.Object.merge(item[nameParts[0]], tempObj); + + delete item[prop]; + } + } + } + } + return data; + }, + + + writeRecords: function(request, data) { + var root = this.root; + + if (this.expandData) { + data = this.getExpandedData(data); + } + + if (this.allowSingle && data.length === 1) { + + data = data[0]; + } + + if (this.encode) { + if (root) { + + request.params[root] = Ext.encode(data); + } else { + } + } else { + + request.jsonData = request.jsonData || {}; + if (root) { + request.jsonData[root] = data; + } else { + request.jsonData = data; + } + } + return request; + } +}); + + +Ext.define('Ext.data.proxy.Proxy', { + alias: 'proxy.proxy', + alternateClassName: ['Ext.data.DataProxy', 'Ext.data.Proxy'], + + + + + + + + + + + + + mixins: { + observable: Ext.util.Observable + }, + + + batchOrder: 'create,update,destroy', + + + batchActions: true, + + + defaultReaderType: 'json', + + + defaultWriterType: 'json', + + + + + + + + + isProxy: true, + + + isSynchronous: false, + + + constructor: function(config) { + var me = this; + + config = config || {}; + me.proxyConfig = config; + + me.mixins.observable.constructor.call(me, config); + + if (me.model !== undefined && !(me.model instanceof Ext.data.Model)) { + me.setModel(me.model); + } else { + if (me.reader) { + me.setReader(me.reader); + } + + if (me.writer) { + me.setWriter(me.writer); + } + } + + + }, + + + setModel: function(model, setOnStore) { + var me = this; + + me.model = Ext.ModelManager.getModel(model); + + me.setReader(this.reader); + me.setWriter(this.writer); + + if (setOnStore && me.store) { + me.store.setModel(me.model); + } + }, + + + getModel: function() { + return this.model; + }, + + + setReader: function(reader) { + var me = this, + needsCopy = true, + current = me.reader; + + if (reader === undefined || typeof reader == 'string') { + reader = { + type: reader + }; + needsCopy = false; + } + + if (reader.isReader) { + reader.setModel(me.model); + } else { + if (needsCopy) { + reader = Ext.apply({}, reader); + } + Ext.applyIf(reader, { + proxy: me, + model: me.model, + type : me.defaultReaderType + }); + + reader = Ext.createByAlias('reader.' + reader.type, reader); + } + + if (reader !== current && reader.onMetaChange) { + reader.onMetaChange = Ext.Function.createSequence(reader.onMetaChange, this.onMetaChange, this); + } + + me.reader = reader; + return me.reader; + }, + + + getReader: function() { + return this.reader; + }, + + + onMetaChange: function(meta) { + this.fireEvent('metachange', this, meta); + }, + + + setWriter: function(writer) { + var me = this, + needsCopy = true; + + if (writer === undefined || typeof writer == 'string') { + writer = { + type: writer + }; + needsCopy = false; + } + + if (!writer.isWriter) { + if (needsCopy) { + writer = Ext.apply({}, writer); + } + Ext.applyIf(writer, { + model: me.model, + type : me.defaultWriterType + }); + + writer = Ext.createByAlias('writer.' + writer.type, writer); + } + + me.writer = writer; + + return me.writer; + }, + + + getWriter: function() { + return this.writer; + }, + + + create: Ext.emptyFn, + + + read: Ext.emptyFn, + + + update: Ext.emptyFn, + + + destroy: Ext.emptyFn, + + + batch: function(options, listeners) { + var me = this, + useBatch = me.batchActions, + batch, + records, + actions, aLen, action, a, r, rLen, record; + + if (options.operations === undefined) { + + + options = { + operations: options, + listeners: listeners + }; + } + + if (options.batch) { + if (Ext.isDefined(options.batch.runOperation)) { + batch = Ext.applyIf(options.batch, { + proxy: me, + listeners: {} + }); + } + } else { + options.batch = { + proxy: me, + listeners: options.listeners || {} + }; + } + + if (!batch) { + batch = new Ext.data.Batch(options.batch); + } + + batch.on('complete', Ext.bind(me.onBatchComplete, me, [options], 0)); + + actions = me.batchOrder.split(','); + aLen = actions.length; + + for (a = 0; a < aLen; a++) { + action = actions[a]; + records = options.operations[action]; + + if (records) { + if (useBatch) { + batch.add(new Ext.data.Operation({ + action : action, + records : records + })); + } else { + rLen = records.length; + + for (r = 0; r < rLen; r++) { + record = records[r]; + + batch.add(new Ext.data.Operation({ + action : action, + records : [record] + })); + } + } + } + } + + batch.start(); + return batch; + }, + + + onBatchComplete: function(batchOptions, batch) { + var scope = batchOptions.scope || this; + + if (batch.hasException) { + if (Ext.isFunction(batchOptions.failure)) { + Ext.callback(batchOptions.failure, scope, [batch, batchOptions]); + } + } else if (Ext.isFunction(batchOptions.success)) { + Ext.callback(batchOptions.success, scope, [batch, batchOptions]); + } + + if (Ext.isFunction(batchOptions.callback)) { + Ext.callback(batchOptions.callback, scope, [batch, batchOptions]); + } + }, + + clone: function() { + return new this.self(this.proxyConfig); + } +}); + + +Ext.define('Ext.data.Operation', { + + synchronous: true, + + + action: undefined, + + + filters: undefined, + + + sorters: undefined, + + + groupers: undefined, + + + start: undefined, + + + limit: undefined, + + + batch: undefined, + + + + + callback: undefined, + + + scope: undefined, + + + started: false, + + + running: false, + + + complete: false, + + + success: undefined, + + + exception: false, + + + error: undefined, + + + actionCommitRecordsRe: /^(?:create|update)$/i, + + + actionSkipSyncRe: /^destroy$/i, + + + constructor: function(config) { + Ext.apply(this, config || {}); + }, + + + commitRecords: function(serverRecords) { + var me = this, + commitRecords = me.actionCommitRecordsRe.test(me.action), + mc, index, clientRecords, serverRec, clientRec, i, len, + modifiedFields, recordModifiedFields; + + if (!me.actionSkipSyncRe.test(me.action)) { + clientRecords = me.records; + + if (clientRecords && clientRecords.length) { + + + + + + if (commitRecords) { + recordModifiedFields = []; + } + if (clientRecords.length > 1) { + + + + + if (me.action == 'update' || clientRecords[0].clientIdProperty) { + mc = new Ext.util.MixedCollection(); + mc.addAll(serverRecords); + + for (index = clientRecords.length; index--; ) { + clientRec = clientRecords[index]; + serverRec = mc.findBy(me.matchClientRec, clientRec); + + + modifiedFields = clientRec.copyFrom(serverRec); + + + if (commitRecords) { + recordModifiedFields.push(modifiedFields); + } + } + } else { + for (i = 0, len = clientRecords.length; i < len; ++i) { + clientRec = clientRecords[i]; + serverRec = serverRecords[i]; + if (clientRec && serverRec) { + modifiedFields = me.updateRecord(clientRec, serverRec); + + + if (commitRecords) { + recordModifiedFields.push(modifiedFields); + } + } + } + } + } else { + + modifiedFields = me.updateRecord(clientRecords[0], serverRecords[0]); + + + if (commitRecords) { + recordModifiedFields[0] = modifiedFields; + } + } + + if (commitRecords) { + for (index = clientRecords.length; index--; ) { + + + + + clientRecords[index].commit(false, recordModifiedFields[index]); + } + } + } + } + }, + + updateRecord: function(clientRec, serverRec) { + + if (serverRec && (clientRec.phantom || clientRec.getId() === serverRec.getId())) { + return clientRec.copyFrom(serverRec); + } + + + return []; + }, + + + + + matchClientRec: function(record) { + var clientRec = this, + clientRecordId = clientRec.getId(); + + if(clientRecordId && record.getId() === clientRecordId) { + return true; + } + + + + return record.internalId === clientRec.internalId; + }, + + + setStarted: function() { + this.started = true; + this.running = true; + }, + + + setCompleted: function() { + this.complete = true; + this.running = false; + }, + + + setSuccessful: function() { + this.success = true; + }, + + + setException: function(error) { + this.exception = true; + this.success = false; + this.running = false; + this.error = error; + }, + + + hasException: function() { + return this.exception === true; + }, + + + getError: function() { + return this.error; + }, + + + getRecords: function() { + var resultSet = this.getResultSet(); + return this.records || (resultSet ? resultSet.records : null); + }, + + + getResultSet: function() { + return this.resultSet; + }, + + + isStarted: function() { + return this.started === true; + }, + + + isRunning: function() { + return this.running === true; + }, + + + isComplete: function() { + return this.complete === true; + }, + + + wasSuccessful: function() { + return this.isComplete() && this.success === true; + }, + + + setBatch: function(batch) { + this.batch = batch; + }, + + + allowWrite: function() { + return this.action != 'read'; + } +}); + + +Ext.define('Ext.data.AbstractStore', { + + + + + + + + mixins: { + observable: Ext.util.Observable , + sortable: Ext.util.Sortable + }, + + statics: { + + create: function(store) { + if (!store.isStore) { + if (!store.type) { + store.type = 'store'; + } + store = Ext.createByAlias('store.' + store.type, store); + } + return store; + } + }, + + onClassExtended: function(cls, data, hooks) { + var model = data.model, + onBeforeClassCreated; + + if (typeof model == 'string') { + onBeforeClassCreated = hooks.onBeforeCreated; + + hooks.onBeforeCreated = function() { + var me = this, + args = arguments; + + Ext.require(model, function() { + onBeforeClassCreated.apply(me, args); + }); + }; + } + }, + + + remoteSort : false, + + + remoteFilter: false, + + + + + autoLoad: undefined, + + + autoSync: false, + + + batchUpdateMode: 'operation', + + + filterOnLoad: true, + + + sortOnLoad: true, + + + implicitModel: false, + + + defaultProxyType: 'memory', + + + isDestroyed: false, + + + isStore: true, + + + + + + + + + + + + sortRoot: 'data', + + + constructor: function(config) { + var me = this, + filters; + + + + + + + + + + + + + + + + + + + + + + + + Ext.apply(me, config); + + + + me.removed = []; + + me.mixins.observable.constructor.apply(me, arguments); + + + me.model = Ext.ModelManager.getModel(me.model); + + + Ext.applyIf(me, { + modelDefaults: null + }); + + + if (!me.model && me.fields) { + me.model = Ext.define('Ext.data.Store.ImplicitModel-' + (me.storeId || Ext.id()), { + extend: 'Ext.data.Model', + fields: me.fields, + proxy: me.proxy || me.defaultProxyType + }); + + delete me.fields; + + me.implicitModel = true; + } + + + + me.setProxy(me.proxy || me.model.getProxy()); + + if (!me.disableMetaChangeEvent) { + me.proxy.on('metachange', me.onMetaChange, me); + } + + if (me.id && !me.storeId) { + me.storeId = me.id; + delete me.id; + } + + if (me.storeId) { + Ext.data.StoreManager.register(me); + } + + me.mixins.sortable.initSortable.call(me); + + + filters = me.decodeFilters(me.filters); + me.filters = new Ext.util.MixedCollection(); + me.filters.addAll(filters); + }, + + + setProxy: function(proxy) { + var me = this; + + if (proxy instanceof Ext.data.proxy.Proxy) { + proxy.setModel(me.model); + } else { + if (Ext.isString(proxy)) { + proxy = { + type: proxy + }; + } + Ext.applyIf(proxy, { + model: me.model + }); + + proxy = Ext.createByAlias('proxy.' + proxy.type, proxy); + } + + me.proxy = proxy; + + return me.proxy; + }, + + + getProxy: function() { + return this.proxy; + }, + + + onMetaChange: function(proxy, meta) { + this.fireEvent('metachange', this, meta); + }, + + + create: function(data, options) { + var me = this, + instance = Ext.ModelManager.create(Ext.applyIf(data, me.modelDefaults), me.model.modelName), + operation; + + options = options || {}; + + Ext.applyIf(options, { + action : 'create', + records: [instance] + }); + + operation = new Ext.data.Operation(options); + + me.proxy.create(operation, me.onProxyWrite, me); + + return instance; + }, + + read: function() { + return this.load.apply(this, arguments); + }, + + update: function(options) { + var me = this, + operation; + options = options || {}; + + Ext.applyIf(options, { + action : 'update', + records: me.getUpdatedRecords() + }); + + operation = new Ext.data.Operation(options); + + return me.proxy.update(operation, me.onProxyWrite, me); + }, + + + onProxyWrite: function(operation) { + var me = this, + success = operation.wasSuccessful(), + records = operation.getRecords(); + + switch (operation.action) { + case 'create': + me.onCreateRecords(records, operation, success); + break; + case 'update': + me.onUpdateRecords(records, operation, success); + break; + case 'destroy': + me.onDestroyRecords(records, operation, success); + break; + } + + if (success) { + me.fireEvent('write', me, operation); + me.fireEvent('datachanged', me); + me.fireEvent('refresh', me); + } + + Ext.callback(operation.callback, operation.scope || me, [records, operation, success]); + }, + + + onCreateRecords: Ext.emptyFn, + + + onUpdateRecords: Ext.emptyFn, + + + onDestroyRecords: function(records, operation, success) { + if (success) { + this.removed = []; + } + }, + + + + destroy: function(options) { + var me = this, + operation; + + options = options || {}; + + Ext.applyIf(options, { + action : 'destroy', + records: me.getRemovedRecords() + }); + + operation = new Ext.data.Operation(options); + + return me.proxy.destroy(operation, me.onProxyWrite, me); + }, + + + onBatchOperationComplete: function(batch, operation) { + return this.onProxyWrite(operation); + }, + + + onBatchComplete: function(batch, operation) { + var me = this, + operations = batch.operations, + length = operations.length, + i; + + me.suspendEvents(); + + for (i = 0; i < length; i++) { + me.onProxyWrite(operations[i]); + } + + me.resumeEvents(); + + me.fireEvent('datachanged', me); + me.fireEvent('refresh', me); + }, + + + onBatchException: function(batch, operation) { + + + + + + }, + + + filterNew: function(item) { + + return item.phantom === true && item.isValid(); + }, + + + getNewRecords: function() { + return []; + }, + + + getUpdatedRecords: function() { + return []; + }, + + + getModifiedRecords : function(){ + return [].concat(this.getNewRecords(), this.getUpdatedRecords()); + }, + + + filterUpdated: function(item) { + + return item.dirty === true && item.phantom !== true && item.isValid(); + }, + + + getRemovedRecords: function() { + return this.removed; + }, + + filter: function(filters, value) { + + }, + + + decodeFilters: function(filters) { + if (!Ext.isArray(filters)) { + if (filters === undefined) { + filters = []; + } else { + filters = [filters]; + } + } + + var length = filters.length, + Filter = Ext.util.Filter, + config, i; + + for (i = 0; i < length; i++) { + config = filters[i]; + + if (!(config instanceof Filter)) { + Ext.apply(config, { + root: 'data' + }); + + + if (config.fn) { + config.filterFn = config.fn; + } + + + if (typeof config == 'function') { + config = { + filterFn: config + }; + } + + filters[i] = new Filter(config); + } + } + + return filters; + }, + + clearFilter: function(supressEvent) { + + }, + + isFiltered: function() { + + }, + + filterBy: function(fn, scope) { + + }, + + + sync: function(options) { + var me = this, + operations = {}, + toCreate = me.getNewRecords(), + toUpdate = me.getUpdatedRecords(), + toDestroy = me.getRemovedRecords(), + needsSync = false; + + if (toCreate.length > 0) { + operations.create = toCreate; + needsSync = true; + } + + if (toUpdate.length > 0) { + operations.update = toUpdate; + needsSync = true; + } + + if (toDestroy.length > 0) { + operations.destroy = toDestroy; + needsSync = true; + } + + if (needsSync && me.fireEvent('beforesync', operations) !== false) { + options = options || {}; + + me.proxy.batch(Ext.apply(options, { + operations: operations, + listeners: me.getBatchListeners() + })); + } + + return me; + }, + + + getBatchListeners: function() { + var me = this, + listeners = { + scope: me, + exception: me.onBatchException + }; + + if (me.batchUpdateMode == 'operation') { + listeners.operationcomplete = me.onBatchOperationComplete; + } else { + listeners.complete = me.onBatchComplete; + } + + return listeners; + }, + + + save: function() { + return this.sync.apply(this, arguments); + }, + + + load: function(options) { + var me = this, + operation; + + options = Ext.apply({ + action: 'read', + filters: me.filters.items, + sorters: me.getSorters() + }, options); + me.lastOptions = options; + + operation = new Ext.data.Operation(options); + + if (me.fireEvent('beforeload', me, operation) !== false) { + me.loading = true; + me.proxy.read(operation, me.onProxyLoad, me); + } + + return me; + }, + + + reload: function(options) { + return this.load(Ext.apply(this.lastOptions, options)); + }, + + + afterEdit : function(record, modifiedFieldNames) { + var me = this, + i, shouldSync; + + if (me.autoSync && !me.autoSyncSuspended) { + for (i = modifiedFieldNames.length; i--;) { + + if (record.fields.get(modifiedFieldNames[i]).persist) { + shouldSync = true; + break; + } + } + if (shouldSync) { + me.sync(); + } + } + me.onUpdate(record, Ext.data.Model.EDIT, modifiedFieldNames); + me.fireEvent('update', me, record, Ext.data.Model.EDIT, modifiedFieldNames); + }, + + + afterReject : function(record) { + + + + + + this.onUpdate(record, Ext.data.Model.REJECT, null); + this.fireEvent('update', this, record, Ext.data.Model.REJECT, null); + }, + + + afterCommit : function(record, modifiedFieldNames) { + if (!modifiedFieldNames) { + modifiedFieldNames = null; + } + this.onUpdate(record, Ext.data.Model.COMMIT, modifiedFieldNames); + this.fireEvent('update', this, record, Ext.data.Model.COMMIT, modifiedFieldNames); + }, + + onUpdate: Ext.emptyFn, + + onIdChanged: function(model, oldId, newId, oldInternalId){ + this.fireEvent('idchanged', this, model, oldId, newId, oldInternalId); + }, + + + destroyStore: function() { + var implicitModelName, + me = this; + + if (!me.isDestroyed) { + me.clearListeners(); + if (me.storeId) { + Ext.data.StoreManager.unregister(me); + } + me.clearData(); + me.data = me.tree = me.sorters = me.filters = me.groupers = null; + if (me.reader) { + me.reader.destroyReader(); + } + me.proxy = me.reader = me.writer = null; + me.isDestroyed = true; + + if (me.implicitModel) { + implicitModelName = Ext.getClassName(me.model); + Ext.undefine(implicitModelName); + Ext.ModelManager.unregisterType(implicitModelName); + } else { + me.model = null; + } + } + }, + + + getState: function() { + var me = this, + hasState, + result, + hasGroupers = !!me.groupers, + groupers = [], + sorters = [], + filters = []; + + if (hasGroupers) { + me.groupers.each(function(g) { + groupers[groupers.length] = g.serialize(); + hasState = true; + }); + } + + if (me.sorters) { + + me.sorters.each(function(s) { + + if (hasGroupers && !me.groupers.contains(s)) { + sorters[sorters.length] = s.serialize(); + hasState = true; + } + }); + } + + + + if (me.filters && me.statefulFilters) { + me.filters.each(function(f) { + filters[filters.length] = f.serialize(); + hasState = true; + }); + } + + + if (hasState) { + result = {}; + if (groupers.length) { + result.groupers = groupers; + } + if (sorters.length) { + result.sorters = sorters; + } + if (filters.length) { + result.filters = filters; + } + return result; + } + }, + + + applyState: function(state) { + var me = this, + hasSorters = !!me.sorters, + hasGroupers = !!me.groupers, + hasFilters = !!me.filters, + locallySorted; + + if (hasGroupers && state.groupers) { + me.groupers.clear(); + me.groupers.addAll(me.decodeGroupers(state.groupers)); + } + + if (hasSorters && state.sorters) { + me.sorters.clear(); + me.sorters.addAll(me.decodeSorters(state.sorters)); + } + + if (hasFilters && state.filters) { + me.filters.clear(); + me.filters.addAll(me.decodeFilters(state.filters)); + } + + if (hasSorters && hasGroupers) { + + me.sorters.insert(0, me.groupers.getRange()); + } + + + if (me.autoLoad && (me.remoteSort || me.remoteGroup || me.remoteFilter)) { + if (me.autoLoad === true) { + me.reload(); + } else { + me.reload(me.autoLoad); + } + } + + + if (hasFilters && me.filters.length && !me.remoteFilter) { + me.filter(); + locallySorted = me.sortOnFilter; + } + + + if (hasSorters && me.sorters.length && !me.remoteSort && !locallySorted) { + me.sort(); + } + }, + + + doSort: function(sorterFn) { + var me = this; + if (me.remoteSort) { + + me.load(); + } else { + me.data.sortBy(sorterFn); + me.fireEvent('datachanged', me); + me.fireEvent('refresh', me); + } + me.fireEvent('sort', me, me.sorters.getRange()); + }, + + + clearData: Ext.emptyFn, + + + getCount: Ext.emptyFn, + + + getById: Ext.emptyFn, + + + removeAll: Ext.emptyFn, + + + + + isLoading: function() { + return !!this.loading; + }, + + + suspendAutoSync: function() { + this.autoSyncSuspended = true; + }, + + + resumeAutoSync: function() { + this.autoSyncSuspended = false; + } + +}); + + + +Ext.define('Ext.app.domain.Store', { + extend: Ext.app.EventDomain , + singleton: true, + + + + + + type: 'store', + idProperty: 'storeId', + + constructor: function() { + var me = this; + + me.callParent(); + me.monitor(Ext.data.AbstractStore); + } +}); + + +Ext.define('Ext.app.Controller', { + + + + + + + + + + + + + + + mixins: { + observable: Ext.util.Observable + }, + + + + statics: { + strings: { + model: { + getter: 'getModel', + upper: 'Model' + }, + + view: { + getter: 'getView', + upper: 'View' + }, + + controller: { + getter: 'getController', + upper: 'Controller' + }, + + store: { + getter: 'getStore', + upper: 'Store' + } + }, + + controllerRegex: /^(.*)\.controller\./, + + createGetter: function(baseGetter, name) { + return function () { + return this[baseGetter](name); + }; + }, + + getGetterName: function(name, kindUpper) { + var fn = 'get', + parts = name.split('.'), + numParts = parts.length, + index; + + + for (index = 0; index < numParts; index++) { + fn += Ext.String.capitalize(parts[index]); + } + + fn += kindUpper; + + return fn; + }, + + + processDependencies: function(cls, requires, namespace, kind, names) { + if (!names || !names.length) { + return; + } + + var me = this, + strings = me.strings[kind], + o, absoluteName, shortName, name, j, subLn, getterName, getter; + + if (!Ext.isArray(names)) { + names = [names]; + } + + for (j = 0, subLn = names.length; j < subLn; j++) { + name = names[j]; + o = me.getFullName(name, kind, namespace); + absoluteName = o.absoluteName; + shortName = o.shortName; + + requires.push(absoluteName); + getterName = me.getGetterName(shortName, strings.upper); + cls[getterName] = getter = me.createGetter(strings.getter, name); + + + if (kind !== 'controller') { + + + + + getter['Ext.app.getter'] = true; + } + } + }, + + getFullName: function(name, kind, namespace) { + var shortName = name, + sep, absoluteName; + + if ((sep = name.indexOf('@')) > 0) { + + + + + shortName = name.substring(0, sep); + absoluteName = name.substring(sep + 1) + '.' + shortName; + } + + + + + + + + + + + + + + + + else if (name.indexOf('.') > 0 && (Ext.ClassManager.isCreated(name) || + Ext.Loader.isAClassNameWithAKnownPrefix(name))) { + absoluteName = name; + } + else { + + if (namespace) { + absoluteName = namespace + '.' + kind + '.' + name; + shortName = name; + } + else { + absoluteName = name; + } + } + + return { + absoluteName: absoluteName, + shortName: shortName + }; + } + }, + + + application: null, + + + + + + + + + + onClassExtended: function(cls, data, hooks) { + var onBeforeClassCreated = hooks.onBeforeCreated; + + hooks.onBeforeCreated = function(cls, data) { + var Controller = Ext.app.Controller, + ctrlRegex = Controller.controllerRegex, + requires = [], + className, namespace, requires, proto, match; + + proto = cls.prototype; + + + className = Ext.getClassName(cls); + namespace = data.$namespace || + Ext.app.getNamespace(className) || + ((match = ctrlRegex.exec(className)) && match[1]); + + if (namespace) { + proto.$namespace = namespace; + } + + Controller.processDependencies(proto, requires, namespace, 'model', data.models); + Controller.processDependencies(proto, requires, namespace, 'view', data.views); + Controller.processDependencies(proto, requires, namespace, 'store', data.stores); + Controller.processDependencies(proto, requires, namespace, 'controller', data.controllers); + + Ext.require(requires, Ext.Function.pass(onBeforeClassCreated, arguments, this)); + }; + }, + + + constructor: function (config) { + var me = this; + + me.mixins.observable.constructor.call(me, config); + + if (me.refs) { + me.ref(me.refs); + } + + me.eventbus = Ext.app.EventBus; + + me.initAutoGetters(); + }, + + initAutoGetters: function() { + var proto = this.self.prototype, + prop, fn; + + for (prop in proto) { + fn = proto[prop]; + + + + if (fn && fn['Ext.app.getter']) { + fn.call(this); + } + } + }, + + doInit: function(app) { + var me = this; + + if (!me._initialized) { + me.init(app); + me._initialized = true; + } + }, + + finishInit: function(app) { + var me = this, + controllers = me.controllers, + controller, i, l; + + if (me._initialized && controllers && controllers.length) { + for (i = 0, l = controllers.length; i < l; i++) { + controller = me.getController(controllers[i]); + controller.finishInit(app); + } + } + }, + + + init: Ext.emptyFn, + + + onLaunch: Ext.emptyFn, + + ref: function(refs) { + var me = this, + i = 0, + length = refs.length, + info, ref, fn; + + refs = Ext.Array.from(refs); + + me.references = me.references || []; + + for (; i < length; i++) { + info = refs[i]; + ref = info.ref; + fn = 'get' + Ext.String.capitalize(ref); + + if (!me[fn]) { + me[fn] = Ext.Function.pass(me.getRef, [ref, info], me); + } + me.references.push(ref.toLowerCase()); + } + }, + + + addRef: function(refs) { + this.ref(refs); + }, + + getRef: function(ref, info, config) { + var me = this, + refCache = me.refCache || (me.refCache = {}), + cached = refCache[ref]; + + info = info || {}; + config = config || {}; + + Ext.apply(info, config); + + if (info.forceCreate) { + return Ext.ComponentManager.create(info, 'component'); + } + + if (!cached) { + if (info.selector) { + refCache[ref] = cached = Ext.ComponentQuery.query(info.selector)[0]; + } + + if (!cached && info.autoCreate) { + refCache[ref] = cached = Ext.ComponentManager.create(info, 'component'); + } + + if (cached) { + cached.on('beforedestroy', function() { + refCache[ref] = null; + }); + } + } + + return cached; + }, + + + hasRef: function(ref) { + var references = this.references; + return references && Ext.Array.indexOf(references, ref.toLowerCase()) !== -1; + }, + + + control: function(selectors, listeners, controller) { + var me = this, + ctrl = controller, + obj; + + if (Ext.isString(selectors)) { + obj = {}; + obj[selectors] = listeners; + } + else { + obj = selectors; + ctrl = listeners; + } + + me.eventbus.control(obj, ctrl || me); + }, + + + listen: function (to, controller) { + this.eventbus.listen(to, controller || this); + }, + + + getController: function(id) { + var me = this, + app = me.application; + + if (id === me.id) { + return me; + } + + return app && app.getController(id); + }, + + + getStore: function(name) { + var storeId, store; + + storeId = (name.indexOf('@') == -1) ? name : name.split('@')[0]; + store = Ext.StoreManager.get(storeId); + + if (!store) { + name = Ext.app.Controller.getFullName(name, 'store', this.$namespace); + + if (name) { + store = Ext.create(name.absoluteName, { + storeId: storeId + }); + } + } + + return store; + }, + + + getModel: function(model) { + var name = Ext.app.Controller.getFullName(model, 'model', this.$namespace); + + return name && Ext.ModelManager.getModel(name.absoluteName); + }, + + + getView: function(view) { + var name = Ext.app.Controller.getFullName(view, 'view', this.$namespace); + + return name && Ext.ClassManager.get(name.absoluteName); + }, + + + getApplication: function() { + return this.application; + } +}); + + +Ext.define('Ext.container.DockingContainer', { + + + + + + + + isDockingContainer: true, + + + + + + + defaultDockWeights: { + top: { render: 1, visual: 1 }, + left: { render: 3, visual: 5 }, + right: { render: 5, visual: 7 }, + bottom: { render: 7, visual: 3 } + }, + + + + + + dockOrder: { + top: -1, + left: -1, + right: 1, + bottom: 1 + }, + + + horizontalDocks: 0, + + + addDocked : function(items, pos) { + var me = this, + i = 0, + item, length; + + items = me.prepareItems(items); + length = items.length; + + for (; i < length; i++) { + item = items[i]; + item.dock = item.dock || 'top'; + if (item.dock === 'left' || item.dock === 'right') { + me.horizontalDocks++; + } + + if (pos !== undefined) { + i += pos; + me.dockedItems.insert(i, item); + } else { + me.dockedItems.add(item); + } + + item.onAdded(me, i); + if (me.hasListeners.dockedadd) { + me.fireEvent('dockedadd', me, item, i); + } + if (me.onDockedAdd !== Ext.emptyFn) { + me.onDockedAdd(item); + } + } + + if (me.rendered && !me.suspendLayout) { + me.updateLayout(); + } + return items; + }, + + destroyDockedItems: function(){ + var dockedItems = this.dockedItems, + c; + + if (dockedItems) { + while ((c = dockedItems.first())) { + this.removeDocked(c, true); + } + } + }, + + doRenderDockedItems: function (out, renderData, after) { + + + + + + + + + var me = renderData.$comp, + layout = me.componentLayout, + items, + tree; + + if (layout.getDockedItems && !renderData.$skipDockedItems) { + items = layout.getDockedItems('render', !after); + tree = items && layout.getItemsRenderTree(items); + + if (tree) { + Ext.DomHelper.generateMarkup(tree, out); + } + } + }, + + + getDockedComponent: function(comp) { + if (Ext.isObject(comp)) { + comp = comp.getItemId(); + } + return this.dockedItems.get(comp); + }, + + + getDockedItems : function(selector, beforeBody) { + var dockedItems = this.getComponentLayout().getDockedItems('render', beforeBody); + + if (selector && dockedItems.length) { + dockedItems = Ext.ComponentQuery.query(selector, dockedItems); + } + + return dockedItems; + }, + + getDockingRefItems: function(deep, containerItems) { + + var selector = deep && '*,* *', + + dockedItems = this.getDockedItems(selector, true), + items; + + + dockedItems.push.apply(dockedItems, containerItems); + + + items = this.getDockedItems(selector, false); + dockedItems.push.apply(dockedItems, items); + + return dockedItems; + }, + + initDockingItems: function() { + var me = this, + items = me.dockedItems; + + me.dockedItems = new Ext.util.AbstractMixedCollection(false, me.getComponentId); + if (items) { + me.addDocked(items); + } + }, + + + insertDocked : function(pos, items) { + this.addDocked(items, pos); + }, + + + + onDockedAdd : Ext.emptyFn, + + onDockedRemove : Ext.emptyFn, + + + removeDocked : function(item, autoDestroy) { + var me = this, + layout, + hasLayout; + + autoDestroy = autoDestroy === true || (autoDestroy !== false && me.autoDestroy); + if (!me.dockedItems.contains(item)) { + return item; + } + if (item.dock === 'left' || item.dock === 'right') { + me.horizontalDocks--; + } + + layout = me.componentLayout; + hasLayout = layout && me.rendered; + + if (hasLayout) { + layout.onRemove(item); + } + + me.dockedItems.remove(item); + + item.onRemoved(item.destroying || autoDestroy); + me.onDockedRemove(item); + + if (autoDestroy) { + item.destroy(); + } else if (hasLayout) { + + layout.afterRemove(item); + } + + if (me.hasListeners.dockedremove) { + me.fireEvent('dockedremove', me, item); + } + + if (!me.destroying && !me.suspendLayout) { + me.updateLayout(); + } + + return item; + }, + + setupDockingRenderTpl: function (renderTpl) { + renderTpl.renderDockedItems = this.doRenderDockedItems; + } +}); + + +Ext.define('Ext.toolbar.Fill', { + extend: Ext.Component , + alias: 'widget.tbfill', + alternateClassName: 'Ext.Toolbar.Fill', + + isFill : true, + flex: 1 +}); + + +Ext.define('Ext.layout.container.boxOverflow.None', { + alternateClassName: 'Ext.layout.boxOverflow.None', + + constructor: function(layout, config) { + this.layout = layout; + Ext.apply(this, config); + }, + + handleOverflow: Ext.emptyFn, + + clearOverflow: Ext.emptyFn, + + beginLayout: Ext.emptyFn, + beginLayoutCycle: Ext.emptyFn, + + calculate: function(ownerContext) { + var me = this, + plan = ownerContext.state.boxPlan, + overflow; + + if (plan && plan.tooNarrow) { + overflow = me.handleOverflow(ownerContext); + + if (overflow) { + if (overflow.reservedSpace) { + me.layout.publishInnerCtSize(ownerContext, overflow.reservedSpace); + } + + + + + + + + + + + + } + } else { + me.clearOverflow(); + } + }, + + completeLayout: Ext.emptyFn, + + finishedLayout: function (ownerContext) { + var me = this, + owner = me.layout.owner, + hiddens, + hiddenCount; + + + if (owner.hasListeners.overflowchange) { + hiddens = owner.query('>[hidden]'); + hiddenCount = hiddens.length; + if (hiddenCount !== me.lastHiddenCount) { + owner.fireEvent('overflowchange', me.lastHiddenCount, hiddenCount, hiddens); + me.lastHiddenCount = hiddenCount; + } + } + }, + + onRemove: Ext.emptyFn, + + + getItem: function(item) { + return this.layout.owner.getComponent(item); + }, + + getOwnerType: function(owner){ + var type; + if (owner.isToolbar) { + type = 'toolbar'; + } else if (owner.isTabBar) { + type = 'tabbar'; + } else if (owner.isMenu) { + type = 'menu'; + } else { + type = owner.getXType(); + } + + return type; + }, + + getPrefixConfig: Ext.emptyFn, + getSuffixConfig: Ext.emptyFn, + getOverflowCls: function() { + return ''; + } +}); + + +Ext.define('Ext.toolbar.Item', { + extend: Ext.Component , + alias: 'widget.tbitem', + alternateClassName: 'Ext.Toolbar.Item', + enable:Ext.emptyFn, + disable:Ext.emptyFn, + focus:Ext.emptyFn + +}); + + +Ext.define('Ext.toolbar.Separator', { + extend: Ext.toolbar.Item , + alias: 'widget.tbseparator', + alternateClassName: 'Ext.Toolbar.Separator', + baseCls: Ext.baseCSSPrefix + 'toolbar-separator', + focusable: false +}); + + +Ext.define('Ext.button.Manager', { + singleton: true, + + alternateClassName: 'Ext.ButtonToggleManager', + + groups: {}, + + pressedButton: null, + + buttonSelector: '.' + Ext.baseCSSPrefix + 'btn', + + init: function() { + var me = this; + if (!me.initialized) { + Ext.getDoc().on({ + keydown: me.onDocumentKeyDown, + mouseup: me.onDocumentMouseUp, + scope: me + }); + me.initialized = true; + } + }, + + + + onDocumentKeyDown: function(e) { + var k = e.getKey(), + btn; + + + if (k === e.SPACE || k === e.ENTER) { + + + btn = e.getTarget(this.buttonSelector); + + + if (btn) { + Ext.getCmp(btn.id).onClick(e); + } + } + }, + + + + + onButtonMousedown: function(button, e) { + var pressed = this.pressedButton; + if (pressed) { + pressed.onMouseUp(e); + } + this.pressedButton = button; + }, + + onDocumentMouseUp: function(e) { + var pressed = this.pressedButton; + + if (pressed) { + pressed.onMouseUp(e); + this.pressedButton = null; + } + }, + + toggleGroup: function(btn, state) { + if (state) { + var g = this.groups[btn.toggleGroup], + length = g.length, + i; + + for (i = 0; i < length; i++) { + if (g[i] !== btn) { + g[i].toggle(false); + } + } + } + }, + + register: function(btn) { + var me = this, + groups = this.groups, + group = groups[btn.toggleGroup]; + + me.init(); + if (!btn.toggleGroup) { + return; + } + + if (!group) { + group = groups[btn.toggleGroup] = []; + } + group.push(btn); + btn.on('toggle', me.toggleGroup, me); + }, + + unregister: function(btn) { + if (!btn.toggleGroup) { + return; + } + var me = this, + group = me.groups[btn.toggleGroup]; + + if (group) { + Ext.Array.remove(group, btn); + btn.un('toggle', me.toggleGroup, me); + } + }, + + + + + getPressed: function(group) { + var g = this.groups[group], + i = 0, + len; + + if (g) { + for (len = g.length; i < len; i++) { + if (g[i].pressed === true) { + return g[i]; + } + } + } + return null; + } +}); + + +Ext.define('Ext.menu.Manager', { + singleton: true, + + + + + alternateClassName: 'Ext.menu.MenuMgr', + + + + menuSelector: '.' + Ext.baseCSSPrefix + 'menu', + + menus: {}, + groups: {}, + attached: false, + lastShow: new Date(), + + init: function() { + var me = this; + + me.active = new Ext.util.MixedCollection(); + Ext.getDoc().addKeyListener(27, function() { + if (me.active.length > 0) { + me.hideAll(); + } + }, me); + }, + + + hideAll: function() { + var active = this.active, + menus, m, mLen; + + if (active && active.length > 0) { + menus = Ext.Array.slice(active.items); + mLen = menus.length; + + for (m = 0; m < mLen; m++) { + menus[m].hide(); + } + + return true; + } + return false; + }, + + onHide: function(m) { + var me = this, + active = me.active; + active.remove(m); + if (active.length < 1) { + Ext.getDoc().un('mousedown', me.onMouseDown, me); + me.attached = false; + } + }, + + onShow: function(m) { + var me = this, + active = me.active, + attached = me.attached; + + me.lastShow = new Date(); + active.add(m); + if (!attached) { + Ext.getDoc().on('mousedown', me.onMouseDown, me, { + + + buffer: Ext.isIE9m ? 10 : undefined + }); + me.attached = true; + } + m.toFront(); + }, + + onBeforeHide: function(m) { + if (m.activeChild) { + m.activeChild.hide(); + } + if (m.autoHideTimer) { + clearTimeout(m.autoHideTimer); + delete m.autoHideTimer; + } + }, + + onBeforeShow: function(m) { + var active = this.active, + parentMenu = m.parentMenu; + + active.remove(m); + if (!parentMenu && !m.allowOtherMenus) { + this.hideAll(); + } + else if (parentMenu && parentMenu.activeChild && m != parentMenu.activeChild) { + parentMenu.activeChild.hide(); + } + }, + + + onMouseDown: function(e) { + var me = this, + active = me.active, + lastShow = me.lastShow, + doHide = true; + + if (Ext.Date.getElapsed(lastShow) > 50 && active.length > 0 && !e.getTarget(me.menuSelector)) { + + + + if (Ext.isIE9m && !Ext.getDoc().contains(e.target)) { + doHide = false; + } + if (doHide) { + me.hideAll(); + } + } + }, + + + register: function(menu) { + var me = this; + + if (!me.active) { + me.init(); + } + + if (menu.floating) { + me.menus[menu.id] = menu; + menu.on({ + beforehide: me.onBeforeHide, + hide: me.onHide, + beforeshow: me.onBeforeShow, + show: me.onShow, + scope: me + }); + } + }, + + + get: function(menu) { + var menus = this.menus; + + if (typeof menu == 'string') { + if (!menus) { + return null; + } + return menus[menu]; + } else if (menu.isMenu) { + return menu; + } else if (Ext.isArray(menu)) { + return new Ext.menu.Menu({items:menu}); + } else { + return Ext.ComponentManager.create(menu, 'menu'); + } + }, + + + unregister: function(menu) { + var me = this, + menus = me.menus, + active = me.active; + + delete menus[menu.id]; + active.remove(menu); + menu.un({ + beforehide: me.onBeforeHide, + hide: me.onHide, + beforeshow: me.onBeforeShow, + show: me.onShow, + scope: me + }); + }, + + + registerCheckable: function(menuItem) { + var groups = this.groups, + groupId = menuItem.group; + + if (groupId) { + if (!groups[groupId]) { + groups[groupId] = []; + } + + groups[groupId].push(menuItem); + } + }, + + + unregisterCheckable: function(menuItem) { + var groups = this.groups, + groupId = menuItem.group; + + if (groupId) { + Ext.Array.remove(groups[groupId], menuItem); + } + }, + + onCheckChange: function(menuItem, state) { + var groups = this.groups, + groupId = menuItem.group, + i = 0, + group, ln, curr; + + if (groupId && state) { + group = groups[groupId]; + ln = group.length; + for (; i < ln; i++) { + curr = group[i]; + if (curr != menuItem) { + curr.setChecked(false); + } + } + } + } +}); + + +Ext.define('Ext.util.ClickRepeater', { + extend: Ext.util.Observable , + + + constructor : function(el, config){ + var me = this; + + me.el = Ext.get(el); + me.el.unselectable(); + + Ext.apply(me, config); + + me.callParent(); + + me.addEvents( + + "mousedown", + + "click", + + "mouseup" + ); + + if(!me.disabled){ + me.disabled = true; + me.enable(); + } + + + if(me.handler){ + me.on("click", me.handler, me.scope || me); + } + }, + + + + + + + + + interval : 20, + + + delay: 250, + + + preventDefault : true, + + + stopDefault : false, + + timer : 0, + + + enable: function(){ + if(this.disabled){ + this.el.on('mousedown', this.handleMouseDown, this); + + + if (Ext.isIE && !(Ext.isIE10p || (Ext.isStrict && Ext.isIE9))){ + this.el.on('dblclick', this.handleDblClick, this); + } + if(this.preventDefault || this.stopDefault){ + this.el.on('click', this.eventOptions, this); + } + } + this.disabled = false; + }, + + + disable: function( force){ + if(force || !this.disabled){ + clearTimeout(this.timer); + if(this.pressedCls){ + this.el.removeCls(this.pressedCls); + } + Ext.getDoc().un('mouseup', this.handleMouseUp, this); + this.el.removeAllListeners(); + } + this.disabled = true; + }, + + + setDisabled: function(disabled){ + this[disabled ? 'disable' : 'enable'](); + }, + + eventOptions: function(e){ + if(this.preventDefault){ + e.preventDefault(); + } + if(this.stopDefault){ + e.stopEvent(); + } + }, + + + destroy : function() { + this.disable(true); + Ext.destroy(this.el); + this.clearListeners(); + }, + + handleDblClick : function(e){ + clearTimeout(this.timer); + this.el.blur(); + + this.fireEvent("mousedown", this, e); + this.fireEvent("click", this, e); + }, + + + handleMouseDown : function(e){ + clearTimeout(this.timer); + this.el.blur(); + if(this.pressedCls){ + this.el.addCls(this.pressedCls); + } + this.mousedownTime = new Date(); + + Ext.getDoc().on("mouseup", this.handleMouseUp, this); + this.el.on("mouseout", this.handleMouseOut, this); + + this.fireEvent("mousedown", this, e); + this.fireEvent("click", this, e); + + + if (this.accelerate) { + this.delay = 400; + } + + + + e = new Ext.EventObjectImpl(e); + + this.timer = Ext.defer(this.click, this.delay || this.interval, this, [e]); + }, + + + click : function(e){ + this.fireEvent("click", this, e); + this.timer = Ext.defer(this.click, this.accelerate ? + this.easeOutExpo(Ext.Date.getElapsed(this.mousedownTime), + 400, + -390, + 12000) : + this.interval, this, [e]); + }, + + easeOutExpo : function (t, b, c, d) { + return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b; + }, + + + handleMouseOut : function(){ + clearTimeout(this.timer); + if(this.pressedCls){ + this.el.removeCls(this.pressedCls); + } + this.el.on("mouseover", this.handleMouseReturn, this); + }, + + + handleMouseReturn : function(){ + this.el.un("mouseover", this.handleMouseReturn, this); + if(this.pressedCls){ + this.el.addCls(this.pressedCls); + } + this.click(); + }, + + + handleMouseUp : function(e){ + clearTimeout(this.timer); + this.el.un("mouseover", this.handleMouseReturn, this); + this.el.un("mouseout", this.handleMouseOut, this); + Ext.getDoc().un("mouseup", this.handleMouseUp, this); + if(this.pressedCls){ + this.el.removeCls(this.pressedCls); + } + this.fireEvent("mouseup", this, e); + } +}); + + +Ext.define('Ext.layout.component.Button', { + + + + alias: ['layout.button'], + + extend: Ext.layout.component.Auto , + + + + type: 'button', + + htmlRE: /<.*>/, + + beginLayout: function(ownerContext) { + var me = this, + owner = me.owner, + text = owner.text; + + me.callParent(arguments); + ownerContext.btnWrapContext = ownerContext.getEl('btnWrap'); + ownerContext.btnElContext = ownerContext.getEl('btnEl'); + ownerContext.btnInnerElContext = ownerContext.getEl('btnInnerEl'); + ownerContext.btnIconElContext = ownerContext.getEl('btnIconEl'); + + if (text && me.htmlRE.test(text)) { + ownerContext.isHtmlText = true; + + + + + owner.btnInnerEl.setStyle('line-height', 'normal'); + owner.btnInnerEl.setStyle('padding-top', ''); + } + }, + + beginLayoutCycle: function(ownerContext) { + var owner = this.owner, + lastWidthModel = this.lastWidthModel; + + this.callParent(arguments); + + if (lastWidthModel && !this.lastWidthModel.shrinkWrap && + ownerContext.widthModel.shrinkWrap) { + + owner.btnWrap.setStyle('height', ''); + owner.btnEl.setStyle('height', ''); + owner.btnInnerEl.setStyle('line-height', ''); + } + }, + + calculate: function(ownerContext) { + var me = this, + owner = me.owner, + btnElContext = ownerContext.btnElContext, + btnInnerElContext = ownerContext.btnInnerElContext, + btnWrapContext = ownerContext.btnWrapContext, + mmax = Math.max, + ownerHeight, contentHeight, btnElHeight, innerElHeight; + + me.callParent(arguments); + + if (ownerContext.heightModel.shrinkWrap) { + + + + + + + + btnElHeight = owner.btnEl.getHeight(); + if (ownerContext.isHtmlText) { + me.centerInnerEl( + ownerContext, + btnElHeight + ); + me.ieCenterIcon(ownerContext, btnElHeight); + } + } else { + + + ownerHeight = ownerContext.getProp('height'); + + + if (ownerHeight) { + + + contentHeight = ownerHeight - ownerContext.getFrameInfo().height - ownerContext.getPaddingInfo().height; + + + + + btnElHeight = contentHeight; + if ((owner.menu || owner.split) && owner.arrowAlign === 'bottom') { + + + btnElHeight -= btnWrapContext.getPaddingInfo().bottom; + } + + + + + + innerElHeight = btnElHeight; + if ((owner.icon || owner.iconCls || owner.glyph) && + (owner.iconAlign === 'top' || owner.iconAlign === 'bottom')) { + innerElHeight -= btnInnerElContext.getPaddingInfo().height; + } + + btnWrapContext.setProp('height', mmax(0, contentHeight)); + btnElContext.setProp('height', mmax(0, btnElHeight)); + + if (ownerContext.isHtmlText) { + + + me.centerInnerEl(ownerContext, btnElHeight); + } else { + + + + btnInnerElContext.setProp('line-height', mmax(0, innerElHeight) + 'px'); + } + me.ieCenterIcon(ownerContext, btnElHeight); + } else if (ownerHeight !== 0) { + + me.done = false; + } + } + }, + + centerInnerEl: function(ownerContext, btnElHeight) { + var me = this, + btnInnerElContext = ownerContext.btnInnerElContext, + innerElHeight = me.owner.btnInnerEl.getHeight(); + + if (ownerContext.heightModel.shrinkWrap && (btnElHeight < innerElHeight)) { + + + + ownerContext.btnElContext.setHeight(innerElHeight); + } else if (btnElHeight > innerElHeight) { + + + + btnInnerElContext.setProp( + 'padding-top', + Math.round((btnElHeight - innerElHeight) / 2) + + + + + btnInnerElContext.getPaddingInfo().top + ); + } + }, + + ieCenterIcon: function(ownerContext, btnElHeight) { + var iconAlign = this.owner.iconAlign; + + if ((Ext.isIEQuirks || Ext.isIE6) && + (iconAlign === 'left' || iconAlign === 'right')) { + + + + + + + ownerContext.btnIconElContext.setHeight(btnElHeight); + } + }, + + publishInnerWidth: function(ownerContext, width) { + if (this.owner.getFrameInfo().table) { + + + + ownerContext.btnInnerElContext.setWidth( + width - + + ownerContext.getFrameInfo().width - ownerContext.getPaddingInfo().width - + + + ownerContext.btnWrapContext.getPaddingInfo().width + ); + } + } + +}); + + +Ext.define('Ext.util.TextMetrics', { + statics: { + shared: null, + + measure: function(el, text, fixedWidth){ + var me = this, + shared = me.shared; + + if(!shared){ + shared = me.shared = new me(el, fixedWidth); + } + shared.bind(el); + shared.setFixedWidth(fixedWidth || 'auto'); + return shared.getSize(text); + }, + + + destroy: function(){ + var me = this; + Ext.destroy(me.shared); + me.shared = null; + } + }, + + + constructor: function(bindTo, fixedWidth){ + var me = this, + measure = Ext.getBody().createChild({ + cls: Ext.baseCSSPrefix + 'textmetrics' + }); + + me.measure = measure; + if (bindTo) { + me.bind(bindTo); + } + + measure.position('absolute'); + measure.setLocalXY(-1000, -1000); + measure.hide(); + + if (fixedWidth) { + measure.setWidth(fixedWidth); + } + }, + + + getSize: function(text){ + var measure = this.measure, + size; + + measure.update(text); + size = measure.getSize(); + measure.update(''); + return size; + }, + + + bind: function(el){ + var me = this; + + me.el = Ext.get(el); + me.measure.setStyle( + me.el.getStyles('font-size','font-style', 'font-weight', 'font-family','line-height', 'text-transform', 'letter-spacing') + ); + }, + + + setFixedWidth : function(width){ + this.measure.setWidth(width); + }, + + + getWidth : function(text){ + this.measure.dom.style.width = 'auto'; + return this.getSize(text).width; + }, + + + getHeight : function(text){ + return this.getSize(text).height; + }, + + + destroy: function(){ + var me = this; + me.measure.remove(); + delete me.el; + delete me.measure; + } +}, function(){ + Ext.Element.addMethods({ + + getTextWidth : function(text, min, max){ + return Ext.Number.constrain(Ext.util.TextMetrics.measure(this.dom, Ext.value(text, this.dom.innerHTML, true)).width, min || 0, max || 1000000); + } + }); +}); + + +Ext.define('Ext.button.Button', { + + + alias: 'widget.button', + extend: Ext.Component , + + + + + + + + + + + mixins: { + queryable: Ext.Queryable + }, + + alternateClassName: 'Ext.Button', + + + + isButton: true, + componentLayout: 'button', + + + hidden: false, + + + disabled: false, + + + pressed: false, + + + + + + + + + + + + + + + + + + + + + + + tabIndex: 0, + + + + + enableToggle: false, + + + + + + + menuAlign: 'tl-bl?', + + + showEmptyMenu: false, + + + textAlign: 'center', + + + + + + + + + clickEvent: 'click', + + + preventDefault: true, + + + handleMouseEvents: true, + + + tooltipType: 'qtip', + + + baseCls: Ext.baseCSSPrefix + 'btn', + + + pressedCls: 'pressed', + + + overCls: 'over', + + + focusCls: 'focus', + + + menuActiveCls: 'menu-active', + + + + + hrefTarget: '_blank', + + + + + + + + childEls: [ + 'btnEl', 'btnWrap', 'btnInnerEl', 'btnIconEl' + ], + + + + + renderTpl: [ + ' {splitCls}', + '{childElCls}" unselectable="on">', + '', + '', + '{text}', + '', + 'background-image:url({iconUrl});', + 'font-family:{glyphFontFamily};">', + '&#{glyph}; ', + '', + '', + '', + + '', + '', + '' + ], + + + scale: 'small', + + + allowedScales: ['small', 'medium', 'large'], + + + + + iconAlign: 'left', + + + arrowAlign: 'right', + + + arrowCls: 'arrow', + + + + + + + + maskOnDisable: false, + + shrinkWrap: 3, + + frame: true, + + + _triggerRegion: {}, + + + initComponent: function() { + var me = this; + + + + me.autoEl = { + tag: 'a', + role: 'button', + hidefocus: 'on', + unselectable: 'on' + }; + + + me.addCls('x-unselectable'); + + me.callParent(arguments); + + me.addEvents( + + 'click', + + + 'toggle', + + + 'mouseover', + + + 'mouseout', + + + 'menushow', + + + 'menuhide', + + + 'menutriggerover', + + + 'menutriggerout', + + + 'textchange', + + + 'iconchange', + + + 'glyphchange' + ); + + if (me.menu) { + + me.split = true; + + + me.menu = Ext.menu.Manager.get(me.menu); + + + + me.menu.ownerButton = me; + } + + + if (me.url) { + me.href = me.url; + } + + + if (me.href && !me.hasOwnProperty('preventDefault')) { + me.preventDefault = false; + } + + if (Ext.isString(me.toggleGroup) && me.toggleGroup !== '') { + me.enableToggle = true; + } + + if (me.html && !me.text) { + me.text = me.html; + delete me.html; + } + + me.glyphCls = me.baseCls + '-glyph'; + }, + + + getActionEl: function() { + return this.el; + }, + + + getFocusEl: function() { + return this.el; + }, + + + onDisable: function(){ + this.callParent(arguments); + }, + + + setComponentCls: function() { + var me = this, + cls = me.getComponentCls(); + + if (!Ext.isEmpty(me.oldCls)) { + me.removeClsWithUI(me.oldCls); + me.removeClsWithUI(me.pressedCls); + } + + me.oldCls = cls; + me.addClsWithUI(cls); + }, + + getComponentCls: function() { + var me = this, + cls; + + + if (me.iconCls || me.icon || me.glyph) { + cls = [me.text ? 'icon-text-' + me.iconAlign : 'icon']; + } else if (me.text) { + cls = ['noicon']; + } else { + cls = []; + } + + if (me.pressed) { + cls[cls.length] = me.pressedCls; + } + return cls; + }, + + beforeRender: function () { + var me = this, + autoEl = me.autoEl, + href = me.getHref(), + hrefTarget = me.hrefTarget; + + if (!me.disabled) { + autoEl.tabIndex = me.tabIndex; + } + + if (href) { + autoEl.href = href; + if (hrefTarget) { + autoEl.target = hrefTarget; + } + } + + me.callParent(); + + + me.oldCls = me.getComponentCls(); + me.addClsWithUI(me.oldCls); + + + Ext.applyIf(me.renderData, me.getTemplateArgs()); + }, + + + onRender: function() { + var me = this, + addOnclick, + btn, + btnListeners; + + me.doc = Ext.getDoc(); + me.callParent(arguments); + + + btn = me.el; + + if (me.tooltip) { + me.setTooltip(me.tooltip, true); + } + + + if (me.handleMouseEvents) { + btnListeners = { + scope: me, + mouseover: me.onMouseOver, + mouseout: me.onMouseOut, + mousedown: me.onMouseDown + }; + if (me.split) { + btnListeners.mousemove = me.onMouseMove; + } + } else { + btnListeners = { + scope: me + }; + } + + + if (me.menu) { + me.mon(me.menu, { + scope: me, + show: me.onMenuShow, + hide: me.onMenuHide + }); + + me.keyMap = new Ext.util.KeyMap({ + target: me.el, + key: Ext.EventObject.DOWN, + handler: me.onDownKey, + scope: me + }); + } + + + if (me.repeat) { + me.mon(new Ext.util.ClickRepeater(btn, Ext.isObject(me.repeat) ? me.repeat: {}), 'click', me.onRepeatClick, me); + } else { + + + if (btnListeners[me.clickEvent]) { + addOnclick = true; + } else { + btnListeners[me.clickEvent] = me.onClick; + } + } + + + me.mon(btn, btnListeners); + + + if (addOnclick) { + me.mon(btn, me.clickEvent, me.onClick, me); + } + + Ext.button.Manager.register(me); + }, + + + getTemplateArgs: function() { + var me = this, + glyph = me.glyph, + glyphFontFamily = Ext._glyphFontFamily, + glyphParts; + + if (typeof glyph === 'string') { + glyphParts = glyph.split('@'); + glyph = glyphParts[0]; + glyphFontFamily = glyphParts[1]; + } + + return { + innerCls : me.getInnerCls(), + splitCls : me.getSplitCls(), + iconUrl : me.icon, + iconCls : me.iconCls, + glyph: glyph, + glyphCls: glyph ? me.glyphCls : '', + glyphFontFamily: glyphFontFamily, + text : me.text || ' ' + }; + }, + + + setHref: function(href) { + this.href = href; + this.el.dom.href = this.getHref(); + }, + + + getHref: function() { + var me = this, + href = me.href; + + return href ? Ext.urlAppend(href, Ext.Object.toQueryString(Ext.apply({}, me.params, me.baseParams))) : false; + }, + + + setParams: function(params) { + this.params = params; + this.el.dom.href = this.getHref(); + }, + + getSplitCls: function() { + var me = this; + return me.split ? (me.baseCls + '-' + me.arrowCls) + ' ' + (me.baseCls + '-' + me.arrowCls + '-' + me.arrowAlign) : ''; + }, + + getInnerCls: function() { + return this.textAlign ? this.baseCls + '-inner-' + this.textAlign : ''; + }, + + + setIcon: function(icon) { + icon = icon || ''; + var me = this, + btnIconEl = me.btnIconEl, + oldIcon = me.icon || ''; + + me.icon = icon; + if (icon != oldIcon) { + if (btnIconEl) { + btnIconEl.setStyle('background-image', icon ? 'url(' + icon + ')': ''); + me.setComponentCls(); + if (me.didIconStateChange(oldIcon, icon)) { + me.updateLayout(); + } + } + me.fireEvent('iconchange', me, oldIcon, icon); + } + return me; + }, + + + setIconCls: function(cls) { + cls = cls || ''; + var me = this, + btnIconEl = me.btnIconEl, + oldCls = me.iconCls || ''; + + me.iconCls = cls; + if (oldCls != cls) { + if (btnIconEl) { + + btnIconEl.removeCls(oldCls); + btnIconEl.addCls(cls); + me.setComponentCls(); + if (me.didIconStateChange(oldCls, cls)) { + me.updateLayout(); + } + } + me.fireEvent('iconchange', me, oldCls, cls); + } + return me; + }, + + + setGlyph: function(glyph) { + glyph = glyph || 0; + var me = this, + btnIconEl = me.btnIconEl, + oldGlyph = me.glyph, + fontFamily, glyphParts; + + me.glyph = glyph; + + if (btnIconEl) { + if (typeof glyph === 'string') { + glyphParts = glyph.split('@'); + glyph = glyphParts[0]; + fontFamily = glyphParts[1] || Ext._glyphFontFamily; + } + + if (!glyph) { + btnIconEl.dom.innerHTML = ''; + } else if (oldGlyph != glyph) { + btnIconEl.dom.innerHTML = '&#' + glyph + ';'; + } + + if (fontFamily) { + btnIconEl.setStyle('font-family', fontFamily); + } + } + + me.fireEvent('glyphchange', me, me.glyph, oldGlyph); + + return me; + }, + + + setTooltip: function(tooltip, initial) { + var me = this; + + if (me.rendered) { + if (!initial || !tooltip) { + me.clearTip(); + } + if (tooltip) { + if (Ext.quickTipsActive && Ext.isObject(tooltip)) { + Ext.tip.QuickTipManager.register(Ext.apply({ + target: me.el.id + }, + tooltip)); + me.tooltip = tooltip; + } else { + me.el.dom.setAttribute(me.getTipAttr(), tooltip); + } + } + } else { + me.tooltip = tooltip; + } + return me; + }, + + + setTextAlign: function(align) { + var me = this, + btnEl = me.btnEl; + + if (btnEl) { + btnEl.removeCls(me.baseCls + '-inner-' + me.textAlign); + btnEl.addCls(me.baseCls + '-inner-' + align); + } + me.textAlign = align; + return me; + }, + + getTipAttr: function(){ + return this.tooltipType == 'qtip' ? 'data-qtip' : 'title'; + }, + + + getRefItems: function(deep){ + var menu = this.menu, + items; + + if (menu) { + items = menu.getRefItems(deep); + items.unshift(menu); + } + return items || []; + }, + + + clearTip: function() { + var me = this, + el = me.el; + + if (Ext.quickTipsActive && Ext.isObject(me.tooltip)) { + Ext.tip.QuickTipManager.unregister(el); + } else { + el.dom.removeAttribute(me.getTipAttr()); + } + }, + + + beforeDestroy: function() { + var me = this; + if (me.rendered) { + me.clearTip(); + } + if (me.menu && me.destroyMenu !== false) { + Ext.destroy(me.menu); + } + Ext.destroy(me.btnInnerEl, me.repeater); + me.callParent(); + }, + + + onDestroy: function() { + var me = this; + if (me.rendered) { + me.doc.un('mouseover', me.monitorMouseOver, me); + delete me.doc; + + Ext.destroy(me.keyMap); + delete me.keyMap; + } + Ext.button.Manager.unregister(me); + me.callParent(); + }, + + + setHandler: function(handler, scope) { + this.handler = handler; + this.scope = scope; + return this; + }, + + + setText: function(text) { + text = text || ''; + var me = this, + oldText = me.text || ''; + + if (text != oldText) { + me.text = text; + if (me.rendered) { + me.btnInnerEl.update(text || ' '); + me.setComponentCls(); + if (Ext.isStrict && Ext.isIE8) { + + me.el.repaint(); + } + me.updateLayout(); + } + me.fireEvent('textchange', me, oldText, text); + } + return me; + }, + + + didIconStateChange: function(old, current) { + var currentEmpty = Ext.isEmpty(current); + return Ext.isEmpty(old) ? !currentEmpty : currentEmpty; + }, + + + getText: function() { + return this.text; + }, + + + toggle: function(state, suppressEvent) { + var me = this; + state = state === undefined ? !me.pressed: !!state; + if (state !== me.pressed) { + if (me.rendered) { + me[state ? 'addClsWithUI': 'removeClsWithUI'](me.pressedCls); + } + me.pressed = state; + if (!suppressEvent) { + me.fireEvent('toggle', me, state); + Ext.callback(me.toggleHandler, me.scope || me, [me, state]); + } + } + return me; + }, + + maybeShowMenu: function(){ + var me = this; + if (me.menu && !me.hasVisibleMenu() && !me.ignoreNextClick) { + me.showMenu(true); + } + }, + + + showMenu: function( fromEvent) { + var me = this, + menu = me.menu; + + if (me.rendered) { + if (me.tooltip && Ext.quickTipsActive && me.getTipAttr() != 'title') { + Ext.tip.QuickTipManager.getQuickTip().cancelShow(me.el); + } + if (menu.isVisible()) { + menu.hide(); + } + + if (!fromEvent || me.showEmptyMenu || menu.items.getCount() > 0) { + menu.showBy(me.el, me.menuAlign); + } + } + return me; + }, + + + hideMenu: function() { + if (this.hasVisibleMenu()) { + this.menu.hide(); + } + return this; + }, + + + hasVisibleMenu: function() { + var menu = this.menu; + return menu && menu.rendered && menu.isVisible(); + }, + + + onRepeatClick: function(repeat, e) { + this.onClick(e); + }, + + + onClick: function(e) { + var me = this; + if (me.preventDefault || (me.disabled && me.getHref()) && e) { + e.preventDefault(); + } + + + + if (e.type !== 'keydown' && e.button !== 0) { + return; + } + if (!me.disabled) { + me.doToggle(); + me.maybeShowMenu(); + me.fireHandler(e); + } + }, + + fireHandler: function(e) { + var me = this, + handler = me.handler; + + if (me.fireEvent('click', me, e) !== false) { + if (handler) { + handler.call(me.scope || me, me, e); + } + } + }, + + doToggle: function() { + var me = this; + if (me.enableToggle && (me.allowDepress !== false || !me.pressed)) { + me.toggle(); + } + }, + + + onMouseOver: function(e) { + var me = this; + if (!me.disabled && !e.within(me.el, true, true)) { + me.onMouseEnter(e); + } + }, + + + onMouseOut: function(e) { + var me = this; + if (!e.within(me.el, true, true)) { + if (me.overMenuTrigger) { + me.onMenuTriggerOut(e); + } + me.onMouseLeave(e); + } + }, + + + onMouseMove: function(e) { + var me = this, + el = me.el, + over = me.overMenuTrigger, + overPosition, triggerRegion; + + if (me.split) { + overPosition = (me.arrowAlign === 'right') ? + e.getX() - me.getX() : e.getY() - el.getY(); + triggerRegion = me.getTriggerRegion(); + + if (overPosition > triggerRegion.begin && overPosition < triggerRegion.end) { + if (!over) { + me.onMenuTriggerOver(e); + } + } else { + if (over) { + me.onMenuTriggerOut(e); + } + } + } + }, + + + getTriggerRegion: function() { + var me = this, + region = me._triggerRegion, + triggerSize = me.getTriggerSize(), + btnSize = me.arrowAlign === 'right' ? me.getWidth() : me.getHeight(); + + region.begin = btnSize - triggerSize; + region.end = btnSize; + return region; + }, + + + getTriggerSize: function() { + var me = this, + size = me.triggerSize, + side, sideFirstLetter; + + if (size == null) { + side = me.arrowAlign; + sideFirstLetter = side.charAt(0); + size = me.triggerSize = me.el.getFrameWidth(sideFirstLetter) + me.getBtnWrapFrameWidth(sideFirstLetter) + if (me.frameSize) { + size = me.triggerSize += me.frameSize[side]; + } + } + return size; + }, + + + getBtnWrapFrameWidth: function(side) { + return this.btnWrap.getFrameWidth(side); + }, + + addOverCls: function() { + if (!this.disabled) { + this.addClsWithUI(this.overCls); + } + }, + removeOverCls: function() { + this.removeClsWithUI(this.overCls); + }, + + + onMouseEnter: function(e) { + + this.fireEvent('mouseover', this, e); + }, + + + onMouseLeave: function(e) { + + this.fireEvent('mouseout', this, e); + }, + + + onMenuTriggerOver: function(e) { + var me = this, + arrowTip = me.arrowTooltip; + + me.overMenuTrigger = true; + + + if (me.split && arrowTip) { + me.btnWrap.dom.setAttribute(me.getTipAttr(), arrowTip); + } + me.fireEvent('menutriggerover', me, me.menu, e); + }, + + + onMenuTriggerOut: function(e) { + var me = this; + delete me.overMenuTrigger; + + if (me.split && me.arrowTooltip) { + me.btnWrap.dom.setAttribute(me.getTipAttr(), ''); + } + me.fireEvent('menutriggerout', me, me.menu, e); + }, + + + enable: function(silent) { + var me = this; + + me.callParent(arguments); + + me.removeClsWithUI('disabled'); + if (me.rendered) { + me.el.dom.setAttribute('tabIndex', me.tabIndex); + } + + return me; + }, + + + disable: function(silent) { + var me = this; + + me.callParent(arguments); + + me.addClsWithUI('disabled'); + me.removeClsWithUI(me.overCls); + if (me.rendered) { + me.el.dom.removeAttribute('tabIndex'); + } + + + + if (me.btnInnerEl && Ext.isIE7m) { + me.btnInnerEl.repaint(); + } + + return me; + }, + + + setScale: function(scale) { + var me = this, + ui = me.ui.replace('-' + me.scale, ''); + + + if (!Ext.Array.contains(me.allowedScales, scale)) { + throw('#setScale: scale must be an allowed scale (' + me.allowedScales.join(', ') + ')'); + } + + me.scale = scale; + me.setUI(ui); + }, + + + setUI: function(ui) { + var me = this; + + + if (me.scale && !ui.match(me.scale)) { + ui = ui + '-' + me.scale; + } + + me.callParent([ui]); + + + + }, + + + + onMouseDown: function(e) { + var me = this; + + if (Ext.isIE) { + + + me.getFocusEl().focus(); + } + + if (!me.disabled && e.button === 0) { + Ext.button.Manager.onButtonMousedown(me, e); + me.addClsWithUI(me.pressedCls); + } + }, + + onMouseUp: function(e) { + var me = this; + if (e.button === 0) { + if (!me.pressed) { + me.removeClsWithUI(me.pressedCls); + } + } + }, + + onMenuShow: function(e) { + var me = this; + me.ignoreNextClick = 0; + me.addClsWithUI(me.menuActiveCls); + me.fireEvent('menushow', me, me.menu); + }, + + + onMenuHide: function(e) { + var me = this; + me.removeClsWithUI(me.menuActiveCls); + me.ignoreNextClick = Ext.defer(me.restoreClick, 250, me); + me.fireEvent('menuhide', me, me.menu); + me.focus(); + }, + + + restoreClick: function() { + this.ignoreNextClick = 0; + }, + + + onDownKey: function(k, e) { + var me = this; + + if (me.menu && !me.disabled) { + me.showMenu(); + e.stopEvent(); + return false; + } + } +}); + + +Ext.define('Ext.layout.container.boxOverflow.Menu', { + + + + extend: Ext.layout.container.boxOverflow.None , + + alternateClassName: 'Ext.layout.boxOverflow.Menu', + + + + + + + noItemsMenuText : '
(None)
', + + constructor: function(layout) { + var me = this; + + me.callParent(arguments); + + me.triggerButtonCls = me.triggerButtonCls || Ext.baseCSSPrefix + 'box-menu-after'; + + me.menuItems = []; + }, + + beginLayout: function (ownerContext) { + this.callParent(arguments); + + + + this.clearOverflow(ownerContext); + }, + + beginLayoutCycle: function (ownerContext, firstCycle) { + this.callParent(arguments); + + if (!firstCycle) { + + + this.clearOverflow(ownerContext); + + this.layout.cacheChildItems(ownerContext); + } + }, + + onRemove: function(comp){ + Ext.Array.remove(this.menuItems, comp); + }, + + + getSuffixConfig: function() { + var me = this, + layout = me.layout, + owner = layout.owner, + oid = owner.id; + + + me.menu = new Ext.menu.Menu({ + listeners: { + scope: me, + beforeshow: me.beforeMenuShow + } + }); + + + me.menuTrigger = new Ext.button.Button({ + id: oid + '-menu-trigger', + cls: Ext.layout.container.Box.prototype.innerCls + ' ' + me.triggerButtonCls + ' ' + Ext.baseCSSPrefix + 'toolbar-item', + plain: owner.usePlainButtons, + ownerCt: owner, + ownerLayout: layout, + iconCls: Ext.baseCSSPrefix + me.getOwnerType(owner) + '-more-icon', + ui: owner instanceof Ext.toolbar.Toolbar ? 'default-toolbar' : 'default', + menu: me.menu, + + showEmptyMenu: true, + getSplitCls: function() { return '';} + }); + + return me.menuTrigger.getRenderTree(); + }, + + getOverflowCls: function() { + return Ext.baseCSSPrefix + this.layout.direction + '-box-overflow-body'; + }, + + handleOverflow: function(ownerContext) { + var me = this, + layout = me.layout, + names = layout.names, + plan = ownerContext.state.boxPlan, + posArgs = [null, null]; + + me.showTrigger(ownerContext); + + + + if (me.layout.direction !== 'vertical') { + posArgs[names.heightIndex] = (plan.maxSize - me.menuTrigger[names.getHeight]()) / 2; + me.menuTrigger.setPosition.apply(me.menuTrigger, posArgs); + } + + return { + reservedSpace: me.triggerTotalWidth + }; + }, + + + captureChildElements: function() { + var me = this, + menuTrigger = me.menuTrigger, + names = me.layout.names; + + + if (menuTrigger.rendering) { + menuTrigger.finishRender(); + me.triggerTotalWidth = menuTrigger[names.getWidth]() + menuTrigger.el.getMargin(names.parallelMargins); + } + }, + + _asLayoutRoot: { isRoot: true }, + + + clearOverflow: function(ownerContext) { + var me = this, + items = me.menuItems, + item, + i = 0, + length = items.length, + owner = me.layout.owner, + asLayoutRoot = me._asLayoutRoot; + + owner.suspendLayouts(); + me.captureChildElements(); + me.hideTrigger(); + owner.resumeLayouts(); + + for (; i < length; i++) { + item = items[i]; + + + + item.suspendLayouts(); + item.show(); + item.resumeLayouts(asLayoutRoot); + } + + items.length = 0; + }, + + + showTrigger: function(ownerContext) { + var me = this, + layout = me.layout, + owner = layout.owner, + names = layout.names, + startProp = names.x, + sizeProp = names.width, + plan = ownerContext.state.boxPlan, + available = plan.targetSize[sizeProp], + childItems = ownerContext.childItems, + len = childItems.length, + menuTrigger = me.menuTrigger, + childContext, + comp, i, props; + + + + menuTrigger.suspendLayouts(); + menuTrigger.show(); + menuTrigger.resumeLayouts(me._asLayoutRoot); + + available -= me.triggerTotalWidth; + + owner.suspendLayouts(); + + + + me.menuItems.length = 0; + for (i = 0; i < len; i++) { + childContext = childItems[i]; + props = childContext.props; + if (props[startProp] + props[sizeProp] > available) { + comp = childContext.target; + me.menuItems.push(comp); + comp.hide(); + } + } + + owner.resumeLayouts(); + }, + + + hideTrigger: function() { + var menuTrigger = this.menuTrigger; + if (menuTrigger) { + menuTrigger.hide(); + } + }, + + + beforeMenuShow: function(menu) { + var me = this, + items = me.menuItems, + i = 0, + len = items.length, + item, + prev, + needsSep = function(group, prev){ + return group.isXType('buttongroup') && !(prev instanceof Ext.toolbar.Separator); + }; + + menu.suspendLayouts(); + me.clearMenu(); + menu.removeAll(); + + for (; i < len; i++) { + item = items[i]; + + + if (!i && (item instanceof Ext.toolbar.Separator)) { + continue; + } + if (prev && (needsSep(item, prev) || needsSep(prev, item))) { + menu.add('-'); + } + + me.addComponentToMenu(menu, item); + prev = item; + } + + + if (menu.items.length < 1) { + menu.add(me.noItemsMenuText); + } + menu.resumeLayouts(); + }, + + + createMenuConfig : function(component, hideOnClick) { + var me = this, + config = Ext.apply({}, component.initialConfig), + group = component.toggleGroup; + + Ext.copyTo(config, component, [ + 'iconCls', 'icon', 'itemId', 'disabled', 'handler', 'scope', 'menu', 'tabIndex' + ]); + + Ext.apply(config, { + text : component.overflowText || component.text, + hideOnClick: hideOnClick, + destroyMenu: false, + listeners : {} + }); + + + if (component.isFormField) { + config.value = component.getValue(); + + + + + + + config.listeners.change = function(c, newVal, oldVal) { + component.setValue(newVal); + } + } + + + else if (group || component.enableToggle) { + Ext.apply(config, { + hideOnClick: false, + group : group, + checked: component.pressed, + handler: function(item, e) { + component.onClick(e); + } + }); + } + + + if (component.isButton && !component.changeListenersAdded) { + component.on({ + textchange: me.onButtonAttrChange, + iconchange: me.onButtonAttrChange, + toggle: me.onButtonToggle + }); + component.changeListenersAdded = true; + } + + + + + delete config.margin; + delete config.ownerCt; + delete config.xtype; + delete config.id; + delete config.itemId; + return config; + }, + + onButtonAttrChange: function(btn) { + var clone = btn.overflowClone; + clone.suspendLayouts(); + clone.setText(btn.text); + clone.setIcon(btn.icon); + clone.setIconCls(btn.iconCls); + clone.resumeLayouts(true); + }, + + onButtonToggle: function(btn, state) { + + if (btn.overflowClone.checked !== state) { + btn.overflowClone.setChecked(state); + } + }, + + + addComponentToMenu : function(menu, component) { + var me = this, + i, items, iLen; + + if (component instanceof Ext.toolbar.Separator) { + menu.add('-'); + } else if (component.isComponent) { + if (component.isXType('splitbutton')) { + component.overflowClone = menu.add(me.createMenuConfig(component, true)); + + } else if (component.isXType('button')) { + component.overflowClone = menu.add(me.createMenuConfig(component, !component.menu)); + + } else if (component.isXType('buttongroup')) { + items = component.items.items; + iLen = items.length; + + for (i = 0; i < iLen; i++) { + me.addComponentToMenu(menu, items[i]); + } + } else { + component.overflowClone = menu.add(Ext.create(Ext.getClassName(component), me.createMenuConfig(component))); + } + } + }, + + + clearMenu : function() { + var menu = this.menu, + items, i, iLen, item; + + if (menu && menu.items) { + items = menu.items.items; + iLen = items.length; + + for (i = 0; i < iLen; i++) { + item = items[i]; + if (item.setMenu) { + item.setMenu(null); + } + } + } + }, + + + destroy: function() { + var trigger = this.menuTrigger; + + if (trigger && !this.layout.owner.items.contains(trigger)) { + + + delete trigger.ownerCt; + } + Ext.destroy(this.menu, trigger); + } +}); + + +Ext.define('Ext.layout.container.boxOverflow.Scroller', { + + + + extend: Ext.layout.container.boxOverflow.None , + + alternateClassName: 'Ext.layout.boxOverflow.Scroller', + mixins: { + observable: Ext.util.Observable + }, + + + + + animateScroll: false, + + + scrollIncrement: 20, + + + wheelIncrement: 10, + + + scrollRepeatInterval: 60, + + + scrollDuration: 400, + + + + + + + scrollerCls: Ext.baseCSSPrefix + 'box-scroller', + + + + + + constructor: function(layout, config) { + var me = this; + + me.layout = layout; + Ext.apply(me, config || {}); + + + me.mixins.observable.constructor.call(me); + + me.addEvents( + + 'scroll' + ); + me.scrollPosition = 0; + me.scrollSize = 0; + }, + + getPrefixConfig: function() { + var me = this, + layout = me.layout, + owner = layout.owner, + cls; + + me.initCSSClasses(); + cls = Ext.layout.container.Box.prototype.innerCls + ' ' + me.beforeCtCls; + if (owner.plain) { + + cls += ' ' + me.scrollerCls + '-plain'; + } + return { + cls: cls, + cn : { + id : owner.id + layout.names.beforeScrollerSuffix, + cls: me.scrollerCls + ' ' + me.beforeScrollerCls, + style: 'display:none' + } + }; + }, + + getSuffixConfig: function() { + var me = this, + layout = me.layout, + owner = layout.owner, + cls = Ext.layout.container.Box.prototype.innerCls + ' ' + me.afterCtCls; + + if (owner.plain) { + + cls += ' ' + me.scrollerCls + '-plain'; + } + return { + cls: cls, + cn : { + id : owner.id + layout.names.afterScrollerSuffix, + cls: me.scrollerCls + ' ' + me.afterScrollerCls, + style: 'display:none' + } + }; + }, + + getOverflowCls: function() { + return Ext.baseCSSPrefix + this.layout.direction + '-box-overflow-body'; + }, + + initCSSClasses: function() { + var me = this, + prefix = Ext.baseCSSPrefix, + layout = me.layout, + names = layout.names, + beforeXName = names.beforeX, + afterXName = names.afterX, + type = me.getOwnerType(layout.owner); + + me.beforeCtCls = me.beforeCtCls || prefix + 'box-scroller-' + beforeXName; + me.afterCtCls = me.afterCtCls || prefix + 'box-scroller-' + afterXName; + + me.beforeScrollerCls = me.beforeScrollerCls || prefix + type + '-scroll-' + beforeXName; + me.afterScrollerCls = me.afterScrollerCls || prefix + type + '-scroll-' + afterXName; + }, + + beginLayout: function (ownerContext) { + var layout = this.layout; + + ownerContext.innerCtScrollPos = this.getScrollPosition(); + + this.callParent(arguments); + }, + + completeLayout: function(ownerContext) { + var me = this, + plan = ownerContext.state.boxPlan, + names = me.layout.names, + last; + + + if (plan && plan.tooNarrow) { + last = ownerContext.childItems[ownerContext.childItems.length - 1]; + + + me.scrollSize = last.props[names.x] + last.props[names.width]; + me.updateScrollButtons(); + } + this.callParent(arguments); + }, + + finishedLayout: function(ownerContext) { + var me = this, + layout = me.layout, + scrollPos = Math.min(me.getMaxScrollPosition(), ownerContext.innerCtScrollPos); + + layout.innerCt[layout.names.setScrollLeft](scrollPos); + }, + + handleOverflow: function(ownerContext) { + var me = this, + methodName = me.layout.names.getWidth; + + me.showScrollers(); + return { + reservedSpace: me.beforeCt[methodName]() + me.afterCt[methodName]() + }; + }, + + + captureChildElements: function() { + var me = this, + el = me.layout.owner.el, + before, after, hoverCls, pressedSuffix, pressedCls, hoverSuffix; + + + if (!me.beforeCt) { + hoverSuffix = '-hover'; + pressedSuffix = '-pressed'; + hoverCls = me.scrollerCls + hoverSuffix; + pressedCls = me.scrollerCls + pressedSuffix; + before = me.beforeScroller = el.getById(me.layout.owner.id + '-before-scroller'); + after = me.afterScroller = el.getById(me.layout.owner.id + '-after-scroller'); + me.beforeCt = before.up(''); + me.afterCt = after.up(''); + me.createWheelListener(); + + before.addClsOnOver(hoverCls); + before.addClsOnOver(me.beforeScrollerCls + hoverSuffix); + before.addClsOnClick(pressedCls); + before.addClsOnClick(me.beforeScrollerCls + pressedSuffix); + after.addClsOnOver(hoverCls); + after.addClsOnOver(me.afterScrollerCls + hoverSuffix); + after.addClsOnClick(pressedCls); + after.addClsOnClick(me.afterScrollerCls + pressedSuffix); + + before.setVisibilityMode(Ext.Element.DISPLAY); + after.setVisibilityMode(Ext.Element.DISPLAY); + + me.beforeRepeater = new Ext.util.ClickRepeater(before, { + interval: me.scrollRepeatInterval, + handler : me.scrollLeft, + scope : me + }); + + me.afterRepeater = new Ext.util.ClickRepeater(after, { + interval: me.scrollRepeatInterval, + handler : me.scrollRight, + scope : me + }); + } + }, + + + createWheelListener: function() { + var me = this; + me.layout.innerCt.on({ + mousewheel: function(e) { + me.scrollBy(me.getWheelDelta(e) * me.wheelIncrement * -1, false); + }, + stopEvent: true + }); + }, + + getWheelDelta: function (e) { + return e.getWheelDelta(); + }, + + + clearOverflow: function () { + this.hideScrollers(); + }, + + + showScrollers: function() { + var me = this; + + me.captureChildElements(); + me.beforeScroller.show(); + me.afterScroller.show(); + me.layout.owner.addClsWithUI(me.layout.direction === 'vertical' ? 'vertical-scroller' : 'scroller'); + + }, + + + hideScrollers: function() { + var me = this; + + if (me.beforeScroller !== undefined) { + me.beforeScroller.hide(); + me.afterScroller.hide(); + me.layout.owner.removeClsWithUI(me.layout.direction === 'vertical' ? 'vertical-scroller' : 'scroller'); + + } + }, + + + destroy: function() { + var me = this; + + Ext.destroy(me.beforeRepeater, me.afterRepeater, me.beforeScroller, me.afterScroller, me.beforeCt, me.afterCt); + }, + + + scrollBy: function(delta, animate) { + this.scrollTo(this.getScrollPosition() + delta, animate); + }, + + + getScrollAnim: function() { + return { + duration: this.scrollDuration, + callback: this.updateScrollButtons, + scope : this + }; + }, + + + updateScrollButtons: function() { + var me = this, + beforeMeth, + afterMeth, + beforeCls, + afterCls, + disabledCls, + suffix = '-disabled'; + + if (me.beforeScroller == null || me.afterScroller == null) { + return; + } + + beforeMeth = me.atExtremeBefore() ? 'addCls' : 'removeCls'; + afterMeth = me.atExtremeAfter() ? 'addCls' : 'removeCls'; + disabledCls = me.scrollerCls + suffix; + beforeCls = [disabledCls, me.beforeScrollerCls + suffix]; + afterCls = [disabledCls, me.afterScrollerCls + suffix]; + + me.beforeScroller[beforeMeth](beforeCls); + me.afterScroller[afterMeth](afterCls); + me.scrolling = false; + }, + + + scrollLeft: function() { + this.scrollBy(-this.scrollIncrement, false); + }, + + + scrollRight: function() { + this.scrollBy(this.scrollIncrement, false); + }, + + + getScrollPosition: function(){ + var me = this, + layout = me.layout, + result; + + + + if (isNaN(me.scrollPosition)) { + result = layout.innerCt[layout.names.getScrollLeft](); + } else { + result = me.scrollPosition; + } + return result; + }, + + + getMaxScrollPosition: function() { + var me = this, + layout = me.layout, + maxScrollPos = me.scrollSize - layout.innerCt[layout.names.getWidth](); + + return (maxScrollPos < 0) ? 0 : maxScrollPos; + }, + + + atExtremeBefore: function() { + return !this.getScrollPosition(); + }, + + + atExtremeAfter: function() { + return this.getScrollPosition() >= this.getMaxScrollPosition(); + }, + + + scrollTo: function(position, animate) { + var me = this, + layout = me.layout, + names = layout.names, + oldPosition = me.getScrollPosition(), + newPosition = Ext.Number.constrain(position, 0, me.getMaxScrollPosition()); + + if (newPosition != oldPosition && !me.scrolling) { + me.scrollPosition = NaN; + if (animate === undefined) { + animate = me.animateScroll; + } + + layout.innerCt[names.scrollTo](names.beforeScrollX, newPosition, animate ? me.getScrollAnim() : false); + if (animate) { + me.scrolling = true; + } else { + me.updateScrollButtons(); + } + me.fireEvent('scroll', me, newPosition, animate ? me.getScrollAnim() : false); + } + }, + + + scrollToItem: function(item, animate) { + var me = this, + layout = me.layout, + owner = layout.owner, + names = layout.names, + visibility, + box, + newPos; + + item = me.getItem(item); + if (item !== undefined) { + if (item == owner.items.first()) { + newPos = 0 + } else if (item === owner.items.last()) { + newPos = me.getMaxScrollPosition(); + } else { + visibility = me.getItemVisibility(item); + if (!visibility.fullyVisible) { + box = item.getBox(false, true); + newPos = box[names.x]; + if (visibility.hiddenEnd) { + newPos -= (me.layout.innerCt[names.getWidth]() - box[names.width]); + } + } + } + if (newPos !== undefined) { + me.scrollTo(newPos, animate); + } + } + }, + + + getItemVisibility: function(item) { + var me = this, + box = me.getItem(item).getBox(true, true), + layout = me.layout, + names = layout.names, + itemStart = box[names.x], + itemEnd = itemStart + box[names.width], + scrollStart = me.getScrollPosition(), + scrollEnd = scrollStart + layout.innerCt[names.getWidth](); + + return { + hiddenStart : itemStart < scrollStart, + hiddenEnd : itemEnd > scrollEnd, + fullyVisible: itemStart > scrollStart && itemEnd < scrollEnd + }; + } +}); + + + +Ext.define('Ext.util.Offset', { + + + + statics: { + fromObject: function(obj) { + return new this(obj.x, obj.y); + } + }, + + + + constructor: function(x, y) { + this.x = (x != null && !isNaN(x)) ? x : 0; + this.y = (y != null && !isNaN(y)) ? y : 0; + + return this; + }, + + copy: function() { + return new Ext.util.Offset(this.x, this.y); + }, + + copyFrom: function(p) { + this.x = p.x; + this.y = p.y; + }, + + toString: function() { + return "Offset[" + this.x + "," + this.y + "]"; + }, + + equals: function(offset) { + + return (this.x == offset.x && this.y == offset.y); + }, + + round: function(to) { + if (!isNaN(to)) { + var factor = Math.pow(10, to); + this.x = Math.round(this.x * factor) / factor; + this.y = Math.round(this.y * factor) / factor; + } else { + this.x = Math.round(this.x); + this.y = Math.round(this.y); + } + }, + + isZero: function() { + return this.x == 0 && this.y == 0; + } +}); + + +Ext.define('Ext.util.Region', { + + + + + + statics: { + + getRegion: function(el) { + return Ext.fly(el).getRegion(); + }, + + + from: function(o) { + return new this(o.top, o.right, o.bottom, o.left); + } + }, + + + + + constructor : function(t, r, b, l) { + var me = this; + me.y = me.top = me[1] = t; + me.right = r; + me.bottom = b; + me.x = me.left = me[0] = l; + }, + + + contains : function(region) { + var me = this; + return (region.x >= me.x && + region.right <= me.right && + region.y >= me.y && + region.bottom <= me.bottom); + + }, + + + intersect : function(region) { + var me = this, + t = Math.max(me.y, region.y), + r = Math.min(me.right, region.right), + b = Math.min(me.bottom, region.bottom), + l = Math.max(me.x, region.x); + + if (b > t && r > l) { + return new this.self(t, r, b, l); + } + else { + return false; + } + }, + + + union : function(region) { + var me = this, + t = Math.min(me.y, region.y), + r = Math.max(me.right, region.right), + b = Math.max(me.bottom, region.bottom), + l = Math.min(me.x, region.x); + + return new this.self(t, r, b, l); + }, + + + constrainTo : function(r) { + var me = this, + constrain = Ext.Number.constrain; + me.top = me.y = constrain(me.top, r.y, r.bottom); + me.bottom = constrain(me.bottom, r.y, r.bottom); + me.left = me.x = constrain(me.left, r.x, r.right); + me.right = constrain(me.right, r.x, r.right); + return me; + }, + + + adjust : function(t, r, b, l) { + var me = this; + me.top = me.y += t; + me.left = me.x += l; + me.right += r; + me.bottom += b; + return me; + }, + + + getOutOfBoundOffset: function(axis, p) { + if (!Ext.isObject(axis)) { + if (axis == 'x') { + return this.getOutOfBoundOffsetX(p); + } else { + return this.getOutOfBoundOffsetY(p); + } + } else { + p = axis; + var d = new Ext.util.Offset(); + d.x = this.getOutOfBoundOffsetX(p.x); + d.y = this.getOutOfBoundOffsetY(p.y); + return d; + } + + }, + + + getOutOfBoundOffsetX: function(p) { + if (p <= this.x) { + return this.x - p; + } else if (p >= this.right) { + return this.right - p; + } + + return 0; + }, + + + getOutOfBoundOffsetY: function(p) { + if (p <= this.y) { + return this.y - p; + } else if (p >= this.bottom) { + return this.bottom - p; + } + + return 0; + }, + + + isOutOfBound: function(axis, p) { + if (!Ext.isObject(axis)) { + if (axis == 'x') { + return this.isOutOfBoundX(p); + } else { + return this.isOutOfBoundY(p); + } + } else { + p = axis; + return (this.isOutOfBoundX(p.x) || this.isOutOfBoundY(p.y)); + } + }, + + + isOutOfBoundX: function(p) { + return (p < this.x || p > this.right); + }, + + + isOutOfBoundY: function(p) { + return (p < this.y || p > this.bottom); + }, + + + restrict: function(axis, p, factor) { + if (Ext.isObject(axis)) { + var newP; + + factor = p; + p = axis; + + if (p.copy) { + newP = p.copy(); + } + else { + newP = { + x: p.x, + y: p.y + }; + } + + newP.x = this.restrictX(p.x, factor); + newP.y = this.restrictY(p.y, factor); + return newP; + } else { + if (axis == 'x') { + return this.restrictX(p, factor); + } else { + return this.restrictY(p, factor); + } + } + }, + + + restrictX : function(p, factor) { + if (!factor) { + factor = 1; + } + + if (p <= this.x) { + p -= (p - this.x) * factor; + } + else if (p >= this.right) { + p -= (p - this.right) * factor; + } + return p; + }, + + + restrictY : function(p, factor) { + if (!factor) { + factor = 1; + } + + if (p <= this.y) { + p -= (p - this.y) * factor; + } + else if (p >= this.bottom) { + p -= (p - this.bottom) * factor; + } + return p; + }, + + + getSize: function() { + return { + width: this.right - this.x, + height: this.bottom - this.y + }; + }, + + + copy: function() { + return new this.self(this.y, this.right, this.bottom, this.x); + }, + + + copyFrom: function(p) { + var me = this; + me.top = me.y = me[1] = p.y; + me.right = p.right; + me.bottom = p.bottom; + me.left = me.x = me[0] = p.x; + + return this; + }, + + + toString: function() { + return "Region[" + this.top + "," + this.right + "," + this.bottom + "," + this.left + "]"; + }, + + + translateBy: function(x, y) { + if (arguments.length == 1) { + y = x.y; + x = x.x; + } + var me = this; + me.top = me.y += y; + me.right += x; + me.bottom += y; + me.left = me.x += x; + + return me; + }, + + + round: function() { + var me = this; + me.top = me.y = Math.round(me.y); + me.right = Math.round(me.right); + me.bottom = Math.round(me.bottom); + me.left = me.x = Math.round(me.x); + + return me; + }, + + + equals: function(region) { + return (this.top == region.top && this.right == region.right && this.bottom == region.bottom && this.left == region.left); + } +}); + + + + + +Ext.define('Ext.dd.DragDropManager', { + singleton: true, + + + + + + + alternateClassName: ['Ext.dd.DragDropMgr', 'Ext.dd.DDM'], + + + ids: {}, + + + handleIds: {}, + + + dragCurrent: null, + + + dragOvers: {}, + + + deltaX: 0, + + + deltaY: 0, + + + preventDefault: true, + + + stopPropagation: true, + + + initialized: false, + + + locked: false, + + + init: function() { + this.initialized = true; + }, + + + POINT: 0, + + + INTERSECT: 1, + + + mode: 0, + + + notifyOccluded: false, + + + dragCls: Ext.baseCSSPrefix + 'dd-drag-current', + + + _execOnAll: function(sMethod, args) { + var i, j, oDD; + for (i in this.ids) { + for (j in this.ids[i]) { + oDD = this.ids[i][j]; + if (! this.isTypeOfDD(oDD)) { + continue; + } + oDD[sMethod].apply(oDD, args); + } + } + }, + + + _onLoad: function() { + + this.init(); + + var Event = Ext.EventManager; + Event.on(document, "mouseup", this.handleMouseUp, this, true); + Event.on(document, "mousemove", this.handleMouseMove, this, true); + Event.on(window, "unload", this._onUnload, this, true); + Event.on(window, "resize", this._onResize, this, true); + + + }, + + + _onResize: function(e) { + this._execOnAll("resetConstraints", []); + }, + + + lock: function() { this.locked = true; }, + + + unlock: function() { this.locked = false; }, + + + isLocked: function() { return this.locked; }, + + + locationCache: {}, + + + useCache: true, + + + clickPixelThresh: 3, + + + clickTimeThresh: 350, + + + dragThreshMet: false, + + + clickTimeout: null, + + + startX: 0, + + + startY: 0, + + + regDragDrop: function(oDD, sGroup) { + if (!this.initialized) { this.init(); } + + if (!this.ids[sGroup]) { + this.ids[sGroup] = {}; + } + this.ids[sGroup][oDD.id] = oDD; + }, + + + removeDDFromGroup: function(oDD, sGroup) { + if (!this.ids[sGroup]) { + this.ids[sGroup] = {}; + } + + var obj = this.ids[sGroup]; + if (obj && obj[oDD.id]) { + delete obj[oDD.id]; + } + }, + + + _remove: function(oDD) { + for (var g in oDD.groups) { + if (g && this.ids[g] && this.ids[g][oDD.id]) { + delete this.ids[g][oDD.id]; + } + } + delete this.handleIds[oDD.id]; + }, + + + regHandle: function(sDDId, sHandleId) { + if (!this.handleIds[sDDId]) { + this.handleIds[sDDId] = {}; + } + this.handleIds[sDDId][sHandleId] = sHandleId; + }, + + + isDragDrop: function(id) { + return ( this.getDDById(id) ) ? true : false; + }, + + + getRelated: function(p_oDD, bTargetsOnly) { + var oDDs = [], + i, j, dd; + for (i in p_oDD.groups) { + for (j in this.ids[i]) { + dd = this.ids[i][j]; + if (! this.isTypeOfDD(dd)) { + continue; + } + if (!bTargetsOnly || dd.isTarget) { + oDDs[oDDs.length] = dd; + } + } + } + + return oDDs; + }, + + + isLegalTarget: function (oDD, oTargetDD) { + var targets = this.getRelated(oDD, true), + i, len; + for (i=0, len=targets.length;i me.clickPixelThresh || diffY > me.clickPixelThresh) { + me.startDrag(me.startX, me.startY); + } + } + + if (me.dragThreshMet) { + current.b4Drag(e); + current.onDrag(e); + if (!current.moveOnly) { + me.fireEvents(e, false); + } + } + + me.stopEvent(e); + + return true; + }, + + + fireEvents: function(e, isDrop) { + var me = this, + dragCurrent = me.dragCurrent, + dragEl, + oldDragElTop, + mousePoint = e.getPoint(), + overTarget, + overTargetEl, + allTargets = [], + oldOvers = [], + outEvts = [], + overEvts = [], + dropEvts = [], + enterEvts = [], + xy, + needsSort, + i, + len, + sGroup; + + + + if (!dragCurrent || dragCurrent.isLocked()) { + return; + } + + + + + + + + if (!me.notifyOccluded && (!Ext.supports.PointerEvents || Ext.isIE10m || Ext.isOpera) && !(dragCurrent.deltaX < 0 || dragCurrent.deltaY < 0)) { + dragEl = dragCurrent.getDragEl(); + oldDragElTop = dragEl.style.top; + dragEl.style.top = '-10000px'; + xy = e.getXY(); + e.target = document.elementFromPoint(xy[0], xy[1]); + dragEl.style.top = oldDragElTop; + } + + + + for (i in me.dragOvers) { + + overTarget = me.dragOvers[i]; + + if (!me.isTypeOfDD(overTarget)) { + continue; + } + + + if (me.notifyOccluded) { + if (!this.isOverTarget(mousePoint, overTarget, me.mode)) { + outEvts.push(overTarget); + } + } + + else { + if (!e.within(overTarget.getEl())) { + outEvts.push(overTarget); + } + } + + oldOvers[i] = true; + delete me.dragOvers[i]; + } + + + + + for (sGroup in dragCurrent.groups) { + + if ("string" != typeof sGroup) { + continue; + } + + + for (i in me.ids[sGroup]) { + overTarget = me.ids[sGroup][i]; + + + + + + + + if (me.isTypeOfDD(overTarget) && + (overTargetEl = overTarget.getEl()) && + (overTarget.isTarget) && + (!overTarget.isLocked()) && + (Ext.fly(overTargetEl).isVisible(true)) && + ((overTarget != dragCurrent) || (dragCurrent.ignoreSelf === false))) { + + + if (me.notifyOccluded) { + + + if ((overTarget.zIndex = me.getZIndex(overTargetEl)) !== -1) { + needsSort = true; + } + allTargets.push(overTarget); + } + + else { + if (e.within(overTarget.getEl())) { + allTargets.push(overTarget); + break; + } + } + } + } + } + + + if (needsSort) { + Ext.Array.sort(allTargets, me.byZIndex); + } + + + + for (i = 0, len = allTargets.length; i < len; i++) { + overTarget = allTargets[i]; + + + if (me.isOverTarget(mousePoint, overTarget, me.mode)) { + + if (isDrop) { + dropEvts.push( overTarget ); + + } else { + + + if (!oldOvers[overTarget.id]) { + enterEvts.push( overTarget ); + + } else { + overEvts.push( overTarget ); + } + me.dragOvers[overTarget.id] = overTarget; + } + + + if (!me.notifyOccluded) { + break; + } + } + } + + if (me.mode) { + if (outEvts.length) { + dragCurrent.b4DragOut(e, outEvts); + dragCurrent.onDragOut(e, outEvts); + } + + if (enterEvts.length) { + dragCurrent.onDragEnter(e, enterEvts); + } + + if (overEvts.length) { + dragCurrent.b4DragOver(e, overEvts); + dragCurrent.onDragOver(e, overEvts); + } + + if (dropEvts.length) { + dragCurrent.b4DragDrop(e, dropEvts); + dragCurrent.onDragDrop(e, dropEvts); + } + + } else { + + for (i=0, len=outEvts.length; i', + '
', + '{%this.renderBody(out, values)%}', + '
', + '', + '{%if (oh.getSuffixConfig!==Ext.emptyFn) {', + 'if(oc=oh.getSuffixConfig())dh.generateMarkup(oc, out)', + '}%}', + { + disableFormats: true, + definitions: 'var dh=Ext.DomHelper;' + } + ], + + constructor: function(config) { + var me = this, + type; + + me.callParent(arguments); + + + me.flexSortFn = Ext.Function.bind(me.flexSort, me); + + me.initOverflowHandler(); + + type = typeof me.padding; + if (type == 'string' || type == 'number') { + me.padding = Ext.util.Format.parseBox(me.padding); + me.padding.height = me.padding.top + me.padding.bottom; + me.padding.width = me.padding.left + me.padding.right; + } + }, + + + + _percentageRe: /^\s*(\d+(?:\.\d*)?)\s*[%]\s*$/, + + getItemSizePolicy: function (item, ownerSizeModel) { + var me = this, + policy = me.sizePolicy, + align = me.align, + flex = item.flex, + key = align, + names = me.names, + width = item[names.width], + height = item[names.height], + percentageRe = me._percentageRe, + percentageWidth = percentageRe.test(width), + isStretch = (align == 'stretch'), + isStretchMax = (align == 'stretchmax'), + constrain = me.constrainAlign; + + + if (!ownerSizeModel && (isStretch || flex || percentageWidth || (constrain && !isStretchMax))) { + ownerSizeModel = me.owner.getSizeModel(); + } + + if (isStretch) { + + + if (!percentageRe.test(height) && ownerSizeModel[names.height].shrinkWrap) { + key = 'stretchmax'; + + + + } + } else if (!isStretchMax) { + if (percentageRe.test(height)) { + + + key = 'stretch'; + } else if (constrain && !ownerSizeModel[names.height].shrinkWrap) { + + + key = 'stretchmax'; + } else { + key = ''; + } + } + + if (flex || percentageWidth) { + + + if (!ownerSizeModel[names.width].shrinkWrap) { + policy = policy.flex; + } + } + + return policy[key]; + }, + + flexSort: function (a, b) { + + + + + + var maxWidthName = this.names.maxWidth, + minWidthName = this.names.minWidth, + infiniteValue = Infinity, + aTarget = a.target, + bTarget = b.target, + result = 0, + aMin, bMin, aMax, bMax, + hasMin, hasMax; + + aMax = aTarget[maxWidthName] || infiniteValue; + bMax = bTarget[maxWidthName] || infiniteValue; + aMin = aTarget[minWidthName] || 0; + bMin = bTarget[minWidthName] || 0; + + hasMin = isFinite(aMin) || isFinite(bMin); + hasMax = isFinite(aMax) || isFinite(bMax); + + if (hasMin || hasMax) { + if (hasMax) { + result = aMax - bMax; + } + + + + + if (result === 0 && hasMin) { + result = bMin - aMin; + } + } + return result; + }, + + isItemBoxParent: function (itemContext) { + return true; + }, + + isItemShrinkWrap: function (item) { + return true; + }, + + roundFlex: function(width) { + return Math.ceil(width); + }, + + + beginCollapse: function(child) { + var me = this; + + if (me.direction === 'vertical' && child.collapsedVertical()) { + child.collapseMemento.capture(['flex']); + delete child.flex; + } else if (me.direction === 'horizontal' && child.collapsedHorizontal()) { + child.collapseMemento.capture(['flex']); + delete child.flex; + } + }, + + + beginExpand: function(child) { + + + child.collapseMemento.restore(['flex']); + }, + + beginLayout: function (ownerContext) { + var me = this, + owner = me.owner, + smp = owner.stretchMaxPartner, + style = me.innerCt.dom.style, + names = me.names; + + ownerContext.boxNames = names; + + + + me.overflowHandler.beginLayout(ownerContext); + + + if (typeof smp === 'string') { + smp = Ext.getCmp(smp) || owner.query(smp)[0]; + } + + ownerContext.stretchMaxPartner = smp && ownerContext.context.getCmp(smp); + + me.callParent(arguments); + + ownerContext.innerCtContext = ownerContext.getEl('innerCt', me); + + + me.scrollParallel = owner.scrollFlags[names.x]; + + + me.scrollPerpendicular = owner.scrollFlags[names.y]; + + + if (me.scrollParallel) { + me.scrollPos = owner.getTargetEl().dom[names.scrollLeft]; + } + + + style.width = ''; + style.height = ''; + }, + + beginLayoutCycle: function (ownerContext, firstCycle) { + var me = this, + align = me.align, + names = ownerContext.boxNames, + pack = me.pack, + heightModelName = names.heightModel; + + + + me.overflowHandler.beginLayoutCycle(ownerContext, firstCycle); + + me.callParent(arguments); + + + + + ownerContext.parallelSizeModel = ownerContext[names.widthModel]; + ownerContext.perpendicularSizeModel = ownerContext[heightModelName]; + + ownerContext.boxOptions = { + align: align = { + stretch: align == 'stretch', + stretchmax: align == 'stretchmax', + center: align == names.center, + bottom: align == names.afterY + }, + pack: pack = { + center: pack == 'center', + end: pack == 'end' + } + }; + + + + + + + + if (align.stretch && ownerContext.perpendicularSizeModel.shrinkWrap) { + align.stretchmax = true; + align.stretch = false; + } + + + align.nostretch = !(align.stretch || align.stretchmax); + + + + + + if (ownerContext.parallelSizeModel.shrinkWrap) { + pack.center = pack.end = false; + } + + me.cacheFlexes(ownerContext); + + + + + + + + me.targetEl.setWidth(20000); + }, + + + cacheFlexes: function (ownerContext) { + var me = this, + names = ownerContext.boxNames, + widthModelName = names.widthModel, + heightModelName = names.heightModel, + nostretch = ownerContext.boxOptions.align.nostretch, + totalFlex = 0, + childItems = ownerContext.childItems, + i = childItems.length, + flexedItems = [], + minWidth = 0, + minWidthName = names.minWidth, + percentageRe = me._percentageRe, + percentageWidths = 0, + percentageHeights = 0, + child, childContext, flex, match; + + while (i--) { + childContext = childItems[i]; + child = childContext.target; + + + + + if (childContext[widthModelName].calculated) { + childContext.flex = flex = child.flex; + if (flex) { + totalFlex += flex; + flexedItems.push(childContext); + minWidth += child[minWidthName] || 0; + } else { + match = percentageRe.exec(child[names.width]); + childContext.percentageParallel = parseFloat(match[1]) / 100; + ++percentageWidths; + } + } + + + + if (nostretch && childContext[heightModelName].calculated) { + + + match = percentageRe.exec(child[names.height]); + childContext.percentagePerpendicular = parseFloat(match[1]) / 100; + ++percentageHeights; + } + } + + ownerContext.flexedItems = flexedItems; + ownerContext.flexedMinSize = minWidth; + ownerContext.totalFlex = totalFlex; + ownerContext.percentageWidths = percentageWidths; + ownerContext.percentageHeights = percentageHeights; + + + + + Ext.Array.sort(flexedItems, me.flexSortFn); + }, + + calculate: function(ownerContext) { + var me = this, + targetSize = me.getContainerSize(ownerContext), + names = ownerContext.boxNames, + state = ownerContext.state, + plan = state.boxPlan || (state.boxPlan = {}), + targetContext = ownerContext.targetContext; + + plan.targetSize = targetSize; + + + if (!ownerContext.parallelSizeModel.shrinkWrap && !targetSize[names.gotWidth]) { + me.done = false; + return; + } + + if (!state.parallelDone) { + state.parallelDone = me.calculateParallel(ownerContext, names, plan); + } + + if (!state.perpendicularDone) { + state.perpendicularDone = me.calculatePerpendicular(ownerContext, names, plan); + } + + if (state.parallelDone && state.perpendicularDone) { + + + + + if (me.owner.dock && (Ext.isIE7m || Ext.isIEQuirks) && !me.owner.width && !me.horizontal) { + plan.isIEVerticalDock = true; + plan.calculatedWidth = plan.maxSize + ownerContext.getPaddingInfo().width + ownerContext.getFrameInfo().width; + if (targetContext !== ownerContext) { + + + + plan.calculatedWidth += targetContext.getPaddingInfo().width; + } + } + + me.publishInnerCtSize(ownerContext, me.reserveOffset ? me.availableSpaceOffset : 0); + + + if (me.done && (ownerContext.childItems.length > 1 || ownerContext.stretchMaxPartner) && ownerContext.boxOptions.align.stretchmax && !state.stretchMaxDone) { + me.calculateStretchMax(ownerContext, names, plan); + state.stretchMaxDone = true; + } + me.overflowHandler.calculate(ownerContext); + } else { + me.done = false; + } + }, + + calculateParallel: function(ownerContext, names, plan) { + var me = this, + widthName = names.width, + childItems = ownerContext.childItems, + beforeXName = names.beforeX, + afterXName = names.afterX, + setWidthName = names.setWidth, + childItemsLength = childItems.length, + flexedItems = ownerContext.flexedItems, + flexedItemsLength = flexedItems.length, + pack = ownerContext.boxOptions.pack, + padding = me.padding, + containerWidth = plan.targetSize[widthName], + totalMargin = 0, + left = padding[beforeXName], + nonFlexWidth = left + padding[afterXName] + me.scrollOffset + + (me.reserveOffset ? me.availableSpaceOffset : 0), + scrollbarWidth = Ext.getScrollbarSize()[names.width], + i, childMargins, remainingWidth, remainingFlex, childContext, flex, flexedWidth, + contentWidth, mayNeedScrollbarAdjust, childWidth, percentageSpace; + + + + + + + + if (scrollbarWidth && + me.scrollPerpendicular && + ownerContext.parallelSizeModel.shrinkWrap && + !ownerContext.boxOptions.align.stretch && + !ownerContext.perpendicularSizeModel.shrinkWrap) { + + + + + if (!ownerContext.state.perpendicularDone) { + return false; + } + mayNeedScrollbarAdjust = true; + } + + + for (i = 0; i < childItemsLength; ++i) { + childContext = childItems[i]; + childMargins = childContext.marginInfo || childContext.getMarginInfo(); + + totalMargin += childMargins[widthName]; + + if (!childContext[names.widthModel].calculated) { + childWidth = childContext.getProp(widthName); + nonFlexWidth += childWidth; + if (isNaN(nonFlexWidth)) { + return false; + } + } + } + + nonFlexWidth += totalMargin; + if (ownerContext.percentageWidths) { + percentageSpace = containerWidth - totalMargin; + if (isNaN(percentageSpace)) { + return false; + } + + for (i = 0; i < childItemsLength; ++i) { + childContext = childItems[i]; + if (childContext.percentageParallel) { + childWidth = Math.ceil(percentageSpace * childContext.percentageParallel); + childWidth = childContext.setWidth(childWidth); + nonFlexWidth += childWidth; + } + } + } + + + + if (ownerContext.parallelSizeModel.shrinkWrap) { + plan.availableSpace = 0; + plan.tooNarrow = false; + } else { + plan.availableSpace = containerWidth - nonFlexWidth; + + + plan.tooNarrow = plan.availableSpace < ownerContext.flexedMinSize; + if (plan.tooNarrow && Ext.getScrollbarSize()[names.height] && me.scrollParallel && ownerContext.state.perpendicularDone) { + ownerContext.state.perpendicularDone = false; + for (i = 0; i < childItemsLength; ++i) { + childItems[i].invalidate(); + } + } + } + + contentWidth = nonFlexWidth; + remainingWidth = plan.availableSpace; + remainingFlex = ownerContext.totalFlex; + + + for (i = 0; i < flexedItemsLength; i++) { + childContext = flexedItems[i]; + flex = childContext.flex; + flexedWidth = me.roundFlex((flex / remainingFlex) * remainingWidth); + flexedWidth = childContext[setWidthName](flexedWidth); + + + + contentWidth += flexedWidth; + + remainingWidth = Math.max(0, remainingWidth - flexedWidth); + remainingFlex -= flex; + } + + if (pack.center) { + left += remainingWidth / 2; + + + if (left < 0) { + left = 0; + } + } else if (pack.end) { + left += remainingWidth; + } + + + for (i = 0; i < childItemsLength; ++i) { + childContext = childItems[i]; + childMargins = childContext.marginInfo; + + left += childMargins[beforeXName]; + + childContext.setProp(names.x, left); + + + + + + left += childMargins[afterXName] + childContext.props[widthName]; + } + + contentWidth += ownerContext.targetContext.getPaddingInfo()[widthName]; + + + ownerContext.state.contentWidth = contentWidth; + + + + if (mayNeedScrollbarAdjust && + (ownerContext.peek(names.contentHeight) > plan.targetSize[names.height])) { + contentWidth += scrollbarWidth; + ownerContext[names.hasOverflowY] = true; + + + ownerContext.target.componentLayout[names.setWidthInDom] = true; + + + + + + ownerContext[names.invalidateScrollY] = Ext.isStrict && Ext.isIE8; + } + ownerContext[names.setContentWidth](contentWidth); + + return true; + }, + + calculatePerpendicular: function(ownerContext, names, plan) { + var me = this, + heightShrinkWrap = ownerContext.perpendicularSizeModel.shrinkWrap, + targetSize = plan.targetSize, + childItems = ownerContext.childItems, + childItemsLength = childItems.length, + mmax = Math.max, + heightName = names.height, + setHeightName = names.setHeight, + beforeYName = names.beforeY, + topPositionName = names.y, + padding = me.padding, + top = padding[beforeYName], + availHeight = targetSize[heightName] - top - padding[names.afterY], + align = ownerContext.boxOptions.align, + isStretch = align.stretch, + isStretchMax = align.stretchmax, + isCenter = align.center, + isBottom = align.bottom, + constrain = me.constrainAlign, + maxHeight = 0, + hasPercentageSizes = 0, + onBeforeInvalidateChild = me.onBeforeConstrainInvalidateChild, + onAfterInvalidateChild = me.onAfterConstrainInvalidateChild, + scrollbarHeight = Ext.getScrollbarSize().height, + childTop, i, childHeight, childMargins, diff, height, childContext, + stretchMaxPartner, stretchMaxChildren, shrinkWrapParallelOverflow, + percentagePerpendicular; + + if (isStretch || ((isCenter || isBottom) && !heightShrinkWrap)) { + if (isNaN(availHeight)) { + return false; + } + } + + + + + + + + if (me.scrollParallel && plan.tooNarrow) { + if (heightShrinkWrap) { + shrinkWrapParallelOverflow = true; + } else { + availHeight -= scrollbarHeight; + plan.targetSize[heightName] -= scrollbarHeight; + } + } + + if (isStretch) { + height = availHeight; + } else { + for (i = 0; i < childItemsLength; i++) { + childContext = childItems[i]; + childMargins = (childContext.marginInfo || childContext.getMarginInfo())[heightName]; + + if (!(percentagePerpendicular = childContext.percentagePerpendicular)) { + childHeight = childContext.getProp(heightName); + } else { + ++hasPercentageSizes; + if (heightShrinkWrap) { + + + continue; + } else { + childHeight = percentagePerpendicular * availHeight - childMargins; + childHeight = childContext[names.setHeight](childHeight); + } + } + + + + + + + if (!heightShrinkWrap && constrain && childContext[names.heightModel].shrinkWrap && childHeight > availHeight) { + childContext.invalidate({ + before: onBeforeInvalidateChild, + after: onAfterInvalidateChild, + layout: me, + childHeight: availHeight, + names: names + }); + + + + ownerContext.state.parallelDone = false; + } + + + if (isNaN(maxHeight = mmax(maxHeight, childHeight + childMargins, + childContext.target[names.minHeight] || 0))) { + return false; + } + } + + + + if (shrinkWrapParallelOverflow) { + maxHeight += scrollbarHeight; + ownerContext[names.hasOverflowX] = true; + + + ownerContext.target.componentLayout[names.setHeightInDom] = true; + + + + + + ownerContext[names.invalidateScrollX] = Ext.isStrict && Ext.isIE8; + } + + + + stretchMaxPartner = ownerContext.stretchMaxPartner; + if (stretchMaxPartner) { + + ownerContext.setProp('maxChildHeight', maxHeight); + stretchMaxChildren = stretchMaxPartner.childItems; + + if (stretchMaxChildren && stretchMaxChildren.length) { + maxHeight = mmax(maxHeight, stretchMaxPartner.getProp('maxChildHeight')); + if (isNaN(maxHeight)) { + return false; + } + } + } + + ownerContext[names.setContentHeight](maxHeight + me.padding[heightName] + + ownerContext.targetContext.getPaddingInfo()[heightName]); + + + + + if (shrinkWrapParallelOverflow) { + maxHeight -= scrollbarHeight; + } + plan.maxSize = maxHeight; + + if (isStretchMax) { + height = maxHeight; + } else if (isCenter || isBottom || hasPercentageSizes) { + if (constrain) { + height = heightShrinkWrap ? maxHeight : availHeight; + } else { + height = heightShrinkWrap ? maxHeight : mmax(availHeight, maxHeight); + } + + + + + + height -= ownerContext.innerCtContext.getBorderInfo()[heightName]; + } + } + + for (i = 0; i < childItemsLength; i++) { + childContext = childItems[i]; + childMargins = childContext.marginInfo || childContext.getMarginInfo(); + + childTop = top + childMargins[beforeYName]; + + if (isStretch) { + childContext[setHeightName](height - childMargins[heightName]); + } else { + percentagePerpendicular = childContext.percentagePerpendicular; + if (heightShrinkWrap && percentagePerpendicular) { + childMargins = childContext.marginInfo || childContext.getMarginInfo(); + childHeight = percentagePerpendicular * height - childMargins[heightName]; + childHeight = childContext.setHeight(childHeight); + } + + if (isCenter) { + diff = height - childContext.props[heightName]; + if (diff > 0) { + childTop = top + Math[me.alignRoundingMethod](diff / 2); + } + } else if (isBottom) { + childTop = mmax(0, height - childTop - childContext.props[heightName]); + } + } + + childContext.setProp(topPositionName, childTop); + } + + return true; + }, + + onBeforeConstrainInvalidateChild: function(childContext, options){ + + var heightModelName = options.names.heightModel; + if (!childContext[heightModelName].constrainedMin) { + + + childContext[heightModelName] = Ext.layout.SizeModel.calculated; + } + }, + + onAfterConstrainInvalidateChild: function(childContext, options){ + + var names = options.names; + + + + + + + childContext.setProp(names.beforeY, 0); + if (childContext[names.heightModel].calculated) { + childContext[names.setHeight](options.childHeight); + } + }, + + calculateStretchMax: function (ownerContext, names, plan) { + var me = this, + heightName = names.height, + widthName = names.width, + childItems = ownerContext.childItems, + length = childItems.length, + height = plan.maxSize, + onBeforeStretchMaxInvalidateChild = me.onBeforeStretchMaxInvalidateChild, + onAfterStretchMaxInvalidateChild = me.onAfterStretchMaxInvalidateChild, + childContext, props, i, childHeight; + + for (i = 0; i < length; ++i) { + childContext = childItems[i]; + + props = childContext.props; + childHeight = height - childContext.getMarginInfo()[heightName]; + + if (childHeight != props[heightName] || + childContext[names.heightModel].constrained) { + + + + + + + + childContext.invalidate({ + before: onBeforeStretchMaxInvalidateChild, + after: onAfterStretchMaxInvalidateChild, + layout: me, + + childWidth: props[widthName], + + childHeight: childHeight, + childX: props.x, + childY: props.y, + names: names + }); + } + } + }, + + onBeforeStretchMaxInvalidateChild: function (childContext, options) { + + var heightModelName = options.names.heightModel; + + + + + + if (!childContext[heightModelName].constrainedMax) { + + + childContext[heightModelName] = Ext.layout.SizeModel.calculated; + } + }, + + onAfterStretchMaxInvalidateChild: function (childContext, options) { + + var names = options.names, + childHeight = options.childHeight, + childWidth = options.childWidth; + + childContext.setProp('x', options.childX); + childContext.setProp('y', options.childY); + + if (childContext[names.heightModel].calculated) { + + + childContext[names.setHeight](childHeight); + } + + if (childContext[names.widthModel].calculated) { + childContext[names.setWidth](childWidth); + } + }, + + completeLayout: function(ownerContext) { + var me = this, + names = ownerContext.boxNames, + invalidateScrollX = ownerContext.invalidateScrollX, + invalidateScrollY = ownerContext.invalidateScrollY, + dom, el, overflowX, overflowY, styles; + + me.overflowHandler.completeLayout(ownerContext); + + if (invalidateScrollX || invalidateScrollY) { + el = me.getTarget(); + dom = el.dom; + styles = dom.style; + + if (invalidateScrollX) { + + overflowX = el.getStyle('overflowX'); + if (overflowX == 'auto') { + + overflowX = styles.overflowX; + styles.overflowX = 'scroll'; + } else { + invalidateScrollX = false; + } + } + + if (invalidateScrollY) { + + overflowY = el.getStyle('overflowY'); + if (overflowY == 'auto') { + + overflowY = styles.overflowY; + styles.overflowY = 'scroll'; + } else { + invalidateScrollY = false; + } + } + + if (invalidateScrollX || invalidateScrollY) { + + dom.scrollWidth; + + if (invalidateScrollX) { + styles.overflowX = overflowX; + } + if (invalidateScrollY) { + styles.overflowY = overflowY; + } + } + } + + + if (me.scrollParallel) { + me.owner.getTargetEl().dom[names.scrollLeft] = me.scrollPos; + } + }, + + finishedLayout: function(ownerContext) { + this.overflowHandler.finishedLayout(ownerContext); + this.callParent(arguments); + + + + + + + + + + + this.targetEl.setWidth(ownerContext.innerCtContext.props.width); + }, + + publishInnerCtSize: function(ownerContext, reservedSpace) { + var me = this, + names = ownerContext.boxNames, + heightName = names.height, + widthName = names.width, + align = ownerContext.boxOptions.align, + dock = me.owner.dock, + padding = me.padding, + plan = ownerContext.state.boxPlan, + targetSize = plan.targetSize, + height = targetSize[heightName], + innerCtContext = ownerContext.innerCtContext, + innerCtWidth = (ownerContext.parallelSizeModel.shrinkWrap || (plan.tooNarrow && me.scrollParallel) + ? ownerContext.state.contentWidth - ownerContext.targetContext.getPaddingInfo()[widthName] + : targetSize[widthName]) - (reservedSpace || 0), + innerCtHeight; + + if (align.stretch) { + innerCtHeight = height; + } else { + innerCtHeight = plan.maxSize + padding[names.beforeY] + padding[names.afterY] + innerCtContext.getBorderInfo()[heightName]; + + if (!ownerContext.perpendicularSizeModel.shrinkWrap && (align.center || align.bottom)) { + innerCtHeight = Math.max(height, innerCtHeight); + } + } + + innerCtContext[names.setWidth](innerCtWidth); + innerCtContext[names.setHeight](innerCtHeight); + + + if (isNaN(innerCtWidth + innerCtHeight)) { + me.done = false; + } + + + + + + + + if (plan.calculatedWidth && (dock == 'left' || dock == 'right')) { + + ownerContext.setWidth(plan.calculatedWidth, true, true); + } + }, + + onRemove: function(comp){ + var me = this; + me.callParent(arguments); + if (me.overflowHandler) { + me.overflowHandler.onRemove(comp); + } + if (comp.layoutMarginCap == me.id) { + delete comp.layoutMarginCap; + } + }, + + + initOverflowHandler: function() { + var me = this, + handler = me.overflowHandler, + handlerType, + constructor; + + if (typeof handler == 'string') { + handler = { + type: handler + }; + } + + handlerType = 'None'; + if (handler && handler.type !== undefined) { + handlerType = handler.type; + } + + constructor = Ext.layout.container.boxOverflow[handlerType]; + if (constructor[me.type]) { + constructor = constructor[me.type]; + } + + me.overflowHandler = Ext.create('Ext.layout.container.boxOverflow.' + handlerType, me, handler); + }, + + + + getRenderTarget: function() { + return this.targetEl; + }, + + + + getElementTarget: function() { + return this.innerCt; + }, + + + + destroy: function() { + Ext.destroy(this.innerCt, this.overflowHandler); + this.callParent(arguments); + }, + + getRenderData: function() { + var data = this.callParent(); + + data.targetElCls = this.targetElCls; + + return data; + } +}); + + +Ext.define('Ext.layout.container.HBox', { + + + + alias: ['layout.hbox'], + extend: Ext.layout.container.Box , + alternateClassName: 'Ext.layout.HBoxLayout', + + + + + align: 'top', + + + + + constrainAlign: false, + + type : 'hbox', + + direction: 'horizontal', + + horizontal: true, + + names: { + + beforeX: 'left', + beforeScrollX: 'left', + beforeScrollerSuffix: '-before-scroller', + afterScrollerSuffix: '-after-scroller', + leftCap: 'Left', + afterX: 'right', + width: 'width', + contentWidth: 'contentWidth', + minWidth: 'minWidth', + maxWidth: 'maxWidth', + widthCap: 'Width', + widthModel: 'widthModel', + widthIndex: 0, + x: 'x', + scrollLeft: 'scrollLeft', + overflowX: 'overflowX', + hasOverflowX: 'hasOverflowX', + invalidateScrollX: 'invalidateScrollX', + parallelMargins: 'lr', + + + center: 'middle', + beforeY: 'top', + afterY: 'bottom', + height: 'height', + contentHeight: 'contentHeight', + minHeight: 'minHeight', + maxHeight: 'maxHeight', + heightCap: 'Height', + heightModel: 'heightModel', + heightIndex: 1, + y: 'y', + overflowY: 'overflowY', + hasOverflowY: 'hasOverflowY', + invalidateScrollY: 'invalidateScrollY', + perpendicularMargins: 'tb', + + + getWidth: 'getWidth', + getHeight: 'getHeight', + setWidth: 'setWidth', + setHeight: 'setHeight', + gotWidth: 'gotWidth', + gotHeight: 'gotHeight', + setContentWidth: 'setContentWidth', + setContentHeight: 'setContentHeight', + setWidthInDom: 'setWidthInDom', + setHeightInDom: 'setHeightInDom', + getScrollLeft: 'getScrollLeft', + setScrollLeft: 'setScrollLeft', + scrollTo: 'scrollTo' + }, + + sizePolicy: { + flex: { + '': { + readsWidth : 0, + readsHeight: 1, + setsWidth : 1, + setsHeight : 0 + }, + stretch: { + readsWidth : 0, + readsHeight: 0, + setsWidth : 1, + setsHeight : 1 + }, + stretchmax: { + readsWidth : 0, + readsHeight: 1, + setsWidth : 1, + setsHeight : 1 + } + }, + '': { + readsWidth : 1, + readsHeight: 1, + setsWidth : 0, + setsHeight : 0 + }, + stretch: { + readsWidth : 1, + readsHeight: 0, + setsWidth : 0, + setsHeight : 1 + }, + stretchmax: { + readsWidth : 1, + readsHeight: 1, + setsWidth : 0, + setsHeight : 1 + } + } +}); + + +Ext.define('Ext.layout.container.VBox', { + + + + alias: ['layout.vbox'], + extend: Ext.layout.container.Box , + alternateClassName: 'Ext.layout.VBoxLayout', + + + + + align : 'left', + + + + + constrainAlign: false, + + type: 'vbox', + + direction: 'vertical', + + horizontal: false, + + names: { + + beforeX: 'top', + beforeScrollX: 'top', + beforeScrollerSuffix: '-before-scroller', + afterScrollerSuffix: '-after-scroller', + leftCap: 'Top', + afterX: 'bottom', + width: 'height', + contentWidth: 'contentHeight', + minWidth: 'minHeight', + maxWidth: 'maxHeight', + widthCap: 'Height', + widthModel: 'heightModel', + widthIndex: 1, + x: 'y', + scrollLeft: 'scrollTop', + overflowX: 'overflowY', + hasOverflowX: 'hasOverflowY', + invalidateScrollX: 'invalidateScrollY', + parallelMargins: 'tb', + + + center: 'center', + beforeY: 'left', + afterY: 'right', + height: 'width', + contentHeight: 'contentWidth', + minHeight: 'minWidth', + maxHeight: 'maxWidth', + heightCap: 'Width', + heightModel: 'widthModel', + heightIndex: 0, + y: 'x', + overflowY: 'overflowX', + hasOverflowY: 'hasOverflowX', + invalidateScrollY: 'invalidateScrollX', + perpendicularMargins: 'lr', + + + getWidth: 'getHeight', + getHeight: 'getWidth', + setWidth: 'setHeight', + setHeight: 'setWidth', + gotWidth: 'gotHeight', + gotHeight: 'gotWidth', + setContentWidth: 'setContentHeight', + setContentHeight: 'setContentWidth', + setWidthInDom: 'setHeightInDom', + setHeightInDom: 'setWidthInDom', + getScrollLeft: 'getScrollTop', + setScrollLeft: 'setScrollTop', + scrollTo: 'scrollTo' + }, + + sizePolicy: { + flex: { + '': { + readsWidth : 1, + readsHeight: 0, + setsWidth : 0, + setsHeight : 1 + }, + stretch: { + readsWidth : 0, + readsHeight: 0, + setsWidth : 1, + setsHeight : 1 + }, + stretchmax: { + readsWidth : 1, + readsHeight: 0, + setsWidth : 1, + setsHeight : 1 + } + }, + '': { + readsWidth : 1, + readsHeight: 1, + setsWidth : 0, + setsHeight : 0 + }, + stretch: { + readsWidth : 0, + readsHeight: 1, + setsWidth : 1, + setsHeight : 0 + }, + stretchmax: { + readsWidth : 1, + readsHeight: 1, + setsWidth : 1, + setsHeight : 0 + } + } +}); + + +Ext.define('Ext.toolbar.Toolbar', { + extend: Ext.container.Container , + + + + + + + + + alias: 'widget.toolbar', + alternateClassName: 'Ext.Toolbar', + + + isToolbar: true, + baseCls : Ext.baseCSSPrefix + 'toolbar', + ariaRole : 'toolbar', + + defaultType: 'button', + + + vertical: false, + + + + + enableOverflow: false, + + + menuTriggerCls: Ext.baseCSSPrefix + 'toolbar-more-icon', + + + + + trackMenus: true, + + itemCls: Ext.baseCSSPrefix + 'toolbar-item', + + statics: { + shortcuts: { + '-' : 'tbseparator', + ' ' : 'tbspacer' + }, + + shortcutsHV: { + + 0: { + '->': { xtype: 'tbfill', height: 0 } + }, + + 1: { + '->': { xtype: 'tbfill', width: 0 } + } + } + }, + + initComponent: function() { + var me = this; + + + if (!me.layout && me.enableOverflow) { + me.layout = { overflowHandler: 'Menu' }; + } + + if (me.dock === 'right' || me.dock === 'left') { + me.vertical = true; + } + + me.layout = Ext.applyIf(Ext.isString(me.layout) ? { + type: me.layout + } : me.layout || {}, { + type: me.vertical ? 'vbox' : 'hbox', + align: me.vertical ? 'stretchmax' : 'middle' + }); + + if (me.vertical) { + me.addClsWithUI('vertical'); + } + + + if (me.ui === 'footer') { + me.ignoreBorderManagement = true; + } + + me.callParent(); + + + me.addEvents('overflowchange'); + }, + + getRefItems: function(deep) { + var me = this, + items = me.callParent(arguments), + layout = me.layout, + handler; + + if (deep && me.enableOverflow) { + handler = layout.overflowHandler; + if (handler && handler.menu) { + items = items.concat(handler.menu.getRefItems(deep)); + } + } + return items; + }, + + + + + + + lookupComponent: function(c) { + var args = arguments; + if (typeof c == 'string') { + var T = Ext.toolbar.Toolbar, + shortcut = T.shortcutsHV[this.vertical ? 1 : 0][c] || T.shortcuts[c]; + + if (typeof shortcut == 'string') { + c = { + xtype: shortcut + }; + } else if (shortcut) { + c = Ext.apply({}, shortcut); + } else { + c = { + xtype: 'tbtext', + text: c + }; + } + + this.applyDefaults(c); + + + args = [c]; + } + + return this.callParent(args); + }, + + + applyDefaults: function(c) { + if (!Ext.isString(c)) { + c = this.callParent(arguments); + } + return c; + }, + + + trackMenu: function(item, remove) { + if (this.trackMenus && item.menu) { + var method = remove ? 'mun' : 'mon', + me = this; + + me[method](item, 'mouseover', me.onButtonOver, me); + me[method](item, 'menushow', me.onButtonMenuShow, me); + me[method](item, 'menuhide', me.onButtonMenuHide, me); + } + }, + + + onBeforeAdd: function(component) { + var me = this, + isButton = component.isButton; + + if (isButton && me.defaultButtonUI && component.ui === 'default' && + !component.hasOwnProperty('ui')) { + component.ui = me.defaultButtonUI; + } else if ((isButton || component.isFormField) && me.ui !== 'footer') { + component.ui = component.ui + '-toolbar'; + component.addCls(component.baseCls + '-toolbar'); + } + + + if (component instanceof Ext.toolbar.Separator) { + component.setUI((me.vertical) ? 'vertical' : 'horizontal'); + } + + me.callParent(arguments); + }, + + + onAdd: function(component) { + this.callParent(arguments); + this.trackMenu(component); + }, + + + onRemove: function(c) { + this.callParent(arguments); + this.trackMenu(c, true); + }, + + getChildItemsToDisable: function() { + return this.items.getRange(); + }, + + + onButtonOver: function(btn){ + if (this.activeMenuBtn && this.activeMenuBtn != btn) { + this.activeMenuBtn.hideMenu(); + btn.showMenu(); + this.activeMenuBtn = btn; + } + }, + + + onButtonMenuShow: function(btn) { + this.activeMenuBtn = btn; + }, + + + onButtonMenuHide: function(btn) { + delete this.activeMenuBtn; + } +}); + + +Ext.define('Ext.layout.component.Dock', { + + + + extend: Ext.layout.component.Component , + + alias: 'layout.dock', + + alternateClassName: 'Ext.layout.component.AbstractDock', + + + + type: 'dock', + + horzAxisProps: { + name: 'horz', + oppositeName: 'vert', + dockBegin: 'left', + dockEnd: 'right', + horizontal: true, + marginBegin: 'margin-left', + maxSize: 'maxWidth', + minSize: 'minWidth', + pos: 'x', + setSize: 'setWidth', + shrinkWrapDock: 'shrinkWrapDockWidth', + size: 'width', + sizeModel: 'widthModel' + }, + + vertAxisProps: { + name: 'vert', + oppositeName: 'horz', + dockBegin: 'top', + dockEnd: 'bottom', + horizontal: false, + marginBegin: 'margin-top', + maxSize: 'maxHeight', + minSize: 'minHeight', + pos: 'y', + setSize: 'setHeight', + shrinkWrapDock: 'shrinkWrapDockHeight', + size: 'height', + sizeModel: 'heightModel' + }, + + initializedBorders: -1, + + horizontalCollapsePolicy: { width: true, x: true }, + + verticalCollapsePolicy: { height: true, y: true }, + + finishRender: function () { + var me = this, + target, items; + + me.callParent(); + + target = me.getRenderTarget(); + items = me.getDockedItems(); + + me.finishRenderItems(target, items); + }, + + isItemBoxParent: function (itemContext) { + return true; + }, + + isItemShrinkWrap: function (item) { + return true; + }, + + noBorderClasses: [ + Ext.baseCSSPrefix + 'docked-noborder-top', + Ext.baseCSSPrefix + 'docked-noborder-right', + Ext.baseCSSPrefix + 'docked-noborder-bottom', + Ext.baseCSSPrefix + 'docked-noborder-left' + ], + + noBorderClassesSides: { + top: Ext.baseCSSPrefix + 'docked-noborder-top', + right: Ext.baseCSSPrefix + 'docked-noborder-right', + bottom: Ext.baseCSSPrefix + 'docked-noborder-bottom', + left: Ext.baseCSSPrefix + 'docked-noborder-left' + }, + + borderWidthProps: { + top: 'border-top-width', + right: 'border-right-width', + bottom: 'border-bottom-width', + left: 'border-left-width' + }, + + handleItemBorders: function() { + var me = this, + owner = me.owner, + borders, docked, + lastItems = me.lastDockedItems, + oldBorders = me.borders, + currentGeneration = owner.dockedItems.generation, + noBorderClassesSides = me.noBorderClassesSides, + borderWidthProps = me.borderWidthProps, + i, ln, item, dock, side, + collapsed = me.collapsed; + + if (me.initializedBorders == currentGeneration || (owner.border && !owner.manageBodyBorders)) { + return; + } + + me.initializedBorders = currentGeneration; + + + me.collapsed = false; + me.lastDockedItems = docked = me.getLayoutItems(); + me.collapsed = collapsed; + + borders = { top: [], right: [], bottom: [], left: [] }; + + for (i = 0, ln = docked.length; i < ln; i++) { + item = docked[i]; + dock = item.dock; + + if (item.ignoreBorderManagement) { + continue; + } + + if (!borders[dock].satisfied) { + borders[dock].push(item); + borders[dock].satisfied = true; + } + + if (!borders.top.satisfied && dock !== 'bottom') { + borders.top.push(item); + } + if (!borders.right.satisfied && dock !== 'left') { + borders.right.push(item); + } + if (!borders.bottom.satisfied && dock !== 'top') { + borders.bottom.push(item); + } + if (!borders.left.satisfied && dock !== 'right') { + borders.left.push(item); + } + } + + if (lastItems) { + for (i = 0, ln = lastItems.length; i < ln; i++) { + item = lastItems[i]; + if (!item.isDestroyed && !item.ignoreBorderManagement && !owner.manageBodyBorders) { + item.removeCls(me.noBorderClasses); + } + } + } + + if (oldBorders) { + for (side in oldBorders) { + if (owner.manageBodyBorders && oldBorders[side].satisfied) { + owner.setBodyStyle(borderWidthProps[side], ''); + } + } + } + + for (side in borders) { + ln = borders[side].length; + if (!owner.manageBodyBorders) { + for (i = 0; i < ln; i++) { + borders[side][i].addCls(noBorderClassesSides[side]); + } + if ((!borders[side].satisfied && !owner.bodyBorder) || owner.bodyBorder === false) { + owner.addBodyCls(noBorderClassesSides[side]); + } + } + else if (borders[side].satisfied) { + owner.setBodyStyle(borderWidthProps[side], '1px'); + } + } + + me.borders = borders; + }, + + beforeLayoutCycle: function (ownerContext) { + var me = this, + owner = me.owner, + shrinkWrap = me.sizeModels.shrinkWrap, + shrinkWrapDock = owner.shrinkWrapDock, + collapsedHorz, collapsedVert; + + if (owner.collapsed) { + if (owner.collapsedVertical()) { + collapsedVert = true; + ownerContext.measureDimensions = 1; + } else { + collapsedHorz = true; + ownerContext.measureDimensions = 2; + } + } + + ownerContext.collapsedVert = collapsedVert; + ownerContext.collapsedHorz = collapsedHorz; + + + + + + if (collapsedVert) { + ownerContext.heightModel = shrinkWrap; + } else if (collapsedHorz) { + ownerContext.widthModel = shrinkWrap; + } + + shrinkWrapDock = shrinkWrapDock === true ? 3 : (shrinkWrapDock || 0); + ownerContext.shrinkWrapDockHeight = (shrinkWrapDock & 1) && ownerContext.heightModel.shrinkWrap; + ownerContext.shrinkWrapDockWidth = (shrinkWrapDock & 2) && ownerContext.widthModel.shrinkWrap; + }, + + beginLayout: function(ownerContext) { + var me = this, + owner = me.owner, + docked = me.getLayoutItems(), + layoutContext = ownerContext.context, + dockedItemCount = docked.length, + dockedItems, i, item, itemContext, offsets, + collapsed, dock; + + me.callParent(arguments); + + + + collapsed = owner.getCollapsed(); + if (collapsed !== me.lastCollapsedState && Ext.isDefined(me.lastCollapsedState)) { + + if (me.owner.collapsed) { + ownerContext.isCollapsingOrExpanding = 1; + + owner.addClsWithUI(owner.collapsedCls); + } else { + ownerContext.isCollapsingOrExpanding = 2; + + owner.removeClsWithUI(owner.collapsedCls); + ownerContext.lastCollapsedState = me.lastCollapsedState; + } + } + me.lastCollapsedState = collapsed; + + ownerContext.dockedItems = dockedItems = []; + + for (i = 0; i < dockedItemCount; i++) { + item = docked[i]; + if (item.rendered) { + dock = item.dock; + itemContext = layoutContext.getCmp(item); + itemContext.dockedAt = { x: 0, y: 0 }; + itemContext.offsets = offsets = Ext.Element.parseBox(item.offsets || 0); + itemContext.horizontal = dock == 'top' || dock == 'bottom'; + offsets.width = offsets.left + offsets.right; + offsets.height = offsets.top + offsets.bottom; + dockedItems.push(itemContext); + } + } + + ownerContext.bodyContext = ownerContext.getEl('body'); + }, + + beginLayoutCycle: function(ownerContext) { + var me = this, + docked = ownerContext.dockedItems, + len = docked.length, + owner = me.owner, + frameBody = owner.frameBody, + lastHeightModel = me.lastHeightModel, + i, item, dock; + + me.callParent(arguments); + + if (me.owner.manageHeight) { + + + if (me.lastBodyDisplay) { + owner.body.dom.style.display = me.lastBodyDisplay = ''; + } + } else { + + + + if (me.lastBodyDisplay !== 'inline-block') { + owner.body.dom.style.display = me.lastBodyDisplay = 'inline-block'; + } + + if (lastHeightModel && lastHeightModel.shrinkWrap && + !ownerContext.heightModel.shrinkWrap) { + owner.body.dom.style.marginBottom = ''; + } + } + + if (ownerContext.widthModel.auto) { + if (ownerContext.widthModel.shrinkWrap) { + owner.el.setWidth(null); + } + owner.body.setWidth(null); + if (frameBody) { + frameBody.setWidth(null); + } + } + if (ownerContext.heightModel.auto) { + owner.body.setHeight(null); + + if (frameBody) { + frameBody.setHeight(null); + } + } + + + + if (ownerContext.collapsedVert) { + ownerContext.setContentHeight(0); + } else if (ownerContext.collapsedHorz) { + ownerContext.setContentWidth(0); + } + + + + for (i = 0; i < len; i++) { + item = docked[i].target; + dock = item.dock; + + if (dock == 'right') { + item.setLocalX(0); + } else if (dock != 'left') { + continue; + } + + + } + }, + + calculate: function (ownerContext) { + var me = this, + measure = me.measureAutoDimensions(ownerContext, ownerContext.measureDimensions), + state = ownerContext.state, + horzDone = state.horzDone, + vertDone = state.vertDone, + bodyContext = ownerContext.bodyContext, + framing, horz, vert, forward, backward; + + + ownerContext.borderInfo || ownerContext.getBorderInfo(); + ownerContext.paddingInfo || ownerContext.getPaddingInfo(); + ownerContext.frameInfo || ownerContext.getFrameInfo(); + bodyContext.borderInfo || bodyContext.getBorderInfo(); + bodyContext.paddingInfo || bodyContext.getPaddingInfo(); + + + + + + + + + + + + + + + + + + + + + if (!ownerContext.frameBorder) { + if (!(framing = ownerContext.framing)) { + ownerContext.frameBorder = ownerContext.borderInfo; + ownerContext.framePadding = ownerContext.paddingInfo; + } else { + + ownerContext.frameBorder = framing.border; + ownerContext.framePadding = framing.padding; + } + } + + + + horz = !horzDone && + me.createAxis(ownerContext, measure.contentWidth, ownerContext.widthModel, + me.horzAxisProps, ownerContext.collapsedHorz); + vert = !vertDone && + me.createAxis(ownerContext, measure.contentHeight, ownerContext.heightModel, + me.vertAxisProps, ownerContext.collapsedVert); + + + + + + + + + + for (forward = 0, backward = ownerContext.dockedItems.length; backward--; ++forward) { + if (horz) { + me.dockChild(ownerContext, horz, backward, forward); + } + if (vert) { + me.dockChild(ownerContext, vert, backward, forward); + } + } + + if (horz && me.finishAxis(ownerContext, horz)) { + state.horzDone = horzDone = horz; + } + + if (vert && me.finishAxis(ownerContext, vert)) { + state.vertDone = vertDone = vert; + } + + + + if (horzDone && vertDone && me.finishConstraints(ownerContext, horzDone, vertDone)) { + + + + me.finishPositions(ownerContext, horzDone, vertDone); + } else { + me.done = false; + } + }, + + + createAxis: function (ownerContext, contentSize, sizeModel, axisProps, collapsedAxis) { + var me = this, + begin = 0, + owner = me.owner, + maxSize = owner[axisProps.maxSize], + minSize = owner[axisProps.minSize] || 0, + dockBegin = axisProps.dockBegin, + dockEnd = axisProps.dockEnd, + posProp = axisProps.pos, + sizeProp = axisProps.size, + hasMaxSize = maxSize != null, + shrinkWrap = sizeModel.shrinkWrap, + bodyContext, framing, padding, end; + + if (shrinkWrap) { + + + if (collapsedAxis) { + end = 0; + } else { + bodyContext = ownerContext.bodyContext; + end = contentSize + bodyContext.borderInfo[sizeProp]; + } + } else { + framing = ownerContext.frameBorder; + padding = ownerContext.framePadding; + + begin = framing[dockBegin] + padding[dockBegin]; + end = ownerContext.getProp(sizeProp) - (framing[dockEnd] + padding[dockEnd]); + } + + return { + shrinkWrap: sizeModel.shrinkWrap, + sizeModel: sizeModel, + + initialBegin: begin, + begin: begin, + end: end, + collapsed: collapsedAxis, + horizontal: axisProps.horizontal, + ignoreFrameBegin: null, + ignoreFrameEnd: null, + initialSize: end - begin, + maxChildSize: 0, + hasMinMaxConstraints: (minSize || hasMaxSize) && sizeModel.shrinkWrap, + minSize: minSize, + maxSize: hasMaxSize ? maxSize : 1e9, + bodyPosProp: me.owner.manageHeight ? posProp : axisProps.marginBegin, + dockBegin: dockBegin, + dockEnd: dockEnd, + posProp: posProp, + sizeProp: sizeProp, + setSize: axisProps.setSize, + shrinkWrapDock: ownerContext[axisProps.shrinkWrapDock], + sizeModelName: axisProps.sizeModel, + dockedPixelsEnd: 0 + }; + }, + + + dockChild: function (ownerContext, axis, backward, forward) { + var me = this, + itemContext = ownerContext.dockedItems[axis.shrinkWrap ? backward : forward], + item = itemContext.target, + dock = item.dock, + sizeProp = axis.sizeProp, + pos, size; + + if (item.ignoreParentFrame && ownerContext.isCollapsingOrExpanding) { + + + itemContext.clearMarginCache(); + } + + itemContext.marginInfo || itemContext.getMarginInfo(); + + if (dock == axis.dockBegin) { + if (axis.shrinkWrap) { + pos = me.dockOutwardBegin(ownerContext, itemContext, item, axis); + } else { + pos = me.dockInwardBegin(ownerContext, itemContext, item, axis); + } + } else if (dock == axis.dockEnd) { + if (axis.shrinkWrap) { + pos = me.dockOutwardEnd(ownerContext, itemContext, item, axis); + } else { + pos = me.dockInwardEnd(ownerContext, itemContext, item, axis); + } + } else { + if (axis.shrinkWrapDock) { + + + size = itemContext.getProp(sizeProp) + itemContext.marginInfo[sizeProp]; + axis.maxChildSize = Math.max(axis.maxChildSize, size); + pos = 0; + } else { + pos = me.dockStretch(ownerContext, itemContext, item, axis); + } + } + + itemContext.dockedAt[axis.posProp] = pos; + }, + + + dockInwardBegin: function (ownerContext, itemContext, item, axis) { + var pos = axis.begin, + sizeProp = axis.sizeProp, + ignoreParentFrame = item.ignoreParentFrame, + delta, + size, + dock; + + if (ignoreParentFrame) { + axis.ignoreFrameBegin = itemContext; + dock = item.dock; + + + delta = ownerContext.frameBorder[dock]; + + + pos -= delta + ownerContext.framePadding[dock]; + } + + if (!item.overlay) { + size = itemContext.getProp(sizeProp) + itemContext.marginInfo[sizeProp]; + axis.begin += size; + if (ignoreParentFrame) { + axis.begin -= delta; + } + } + + return pos; + }, + + + dockInwardEnd: function (ownerContext, itemContext, item, axis) { + var sizeProp = axis.sizeProp, + size = itemContext.getProp(sizeProp) + itemContext.marginInfo[sizeProp], + pos = axis.end - size, + frameEnd; + + if (!item.overlay) { + axis.end = pos; + } + + if (item.ignoreParentFrame) { + axis.ignoreFrameEnd = itemContext; + frameEnd = ownerContext.frameBorder[item.dock]; + pos += frameEnd + ownerContext.framePadding[item.dock]; + axis.end += frameEnd; + } + + return pos; + }, + + + dockOutwardBegin: function (ownerContext, itemContext, item, axis) { + var pos = axis.begin, + sizeProp = axis.sizeProp, + size; + + if (axis.collapsed) { + axis.ignoreFrameBegin = axis.ignoreFrameEnd = itemContext; + } else if (item.ignoreParentFrame) { + axis.ignoreFrameBegin = itemContext; + } + + + + if (!item.overlay) { + size = itemContext.getProp(sizeProp) + itemContext.marginInfo[sizeProp]; + pos -= size; + axis.begin = pos; + } + + return pos; + }, + + + dockOutwardEnd: function (ownerContext, itemContext, item, axis) { + var pos = axis.end, + sizeProp = axis.sizeProp, + size; + + size = itemContext.getProp(sizeProp) + itemContext.marginInfo[sizeProp]; + + if (axis.collapsed) { + axis.ignoreFrameBegin = axis.ignoreFrameEnd = itemContext; + } else if (item.ignoreParentFrame) { + axis.ignoreFrameEnd = itemContext; + } + + + + if (!item.overlay) { + axis.end = pos + size; + axis.dockedPixelsEnd += size; + } + + return pos; + }, + + + dockStretch: function (ownerContext, itemContext, item, axis) { + var dock = item.dock, + sizeProp = axis.sizeProp, + horizontal = dock == 'top' || dock == 'bottom', + border = ownerContext.frameBorder, + offsets = itemContext.offsets, + padding = ownerContext.framePadding, + endProp = horizontal ? 'right' : 'bottom', + startProp = horizontal ? 'left' : 'top', + pos = axis.begin + offsets[startProp], + margin, size; + + if (item.stretch !== false) { + size = axis.end - pos - offsets[endProp]; + + if (item.ignoreParentFrame) { + + + + + pos -= padding[startProp] + border[startProp]; + size += padding[sizeProp] + border[sizeProp]; + } + + margin = itemContext.marginInfo; + size -= margin[sizeProp]; + + itemContext[axis.setSize](size); + } + + return pos; + }, + + + finishAxis: function (ownerContext, axis) { + + + + if (isNaN(axis.maxChildSize)) { + return false; + } + + var axisBegin = axis.begin, + size = axis.end - axisBegin, + collapsed = axis.collapsed, + setSizeMethod = axis.setSize, + beginName = axis.dockBegin, + endName = axis.dockEnd, + padding = ownerContext.framePadding, + border = ownerContext.frameBorder, + borderBegin = border[beginName], + framing = ownerContext.framing, + framingBegin = framing && framing[beginName], + + paddingBegin = collapsed ? 0 : padding[beginName], + sizeProp = axis.sizeProp, + ignoreFrameBegin = axis.ignoreFrameBegin, + ignoreFrameEnd = axis.ignoreFrameEnd, + bodyContext = ownerContext.bodyContext, + extraPaddingBegin = Math.max(borderBegin + paddingBegin - framingBegin, 0), + bodyPos, bodySize, delta, dirty; + + if (axis.shrinkWrap) { + + + + + bodySize = axis.initialSize; + + if (framing) { + + + + + + + + + delta = -axisBegin + borderBegin + paddingBegin; + bodyPos = delta - framingBegin - extraPaddingBegin; + } else { + bodyPos = -axisBegin; + delta = bodyPos + paddingBegin; + } + + if (!collapsed) { + size += padding[sizeProp]; + } + + if (ignoreFrameBegin) { + + + + delta -= borderBegin; + bodyPos -= borderBegin; + + + + + + + + ignoreFrameBegin.dockedAt[axis.posProp] -= paddingBegin; + } else { + size += borderBegin; + } + + if (collapsed) { + + + } else if (ignoreFrameEnd) { + + + + ignoreFrameEnd.dockedAt[axis.posProp] += padding[endName]; + } else { + size += border[endName]; + } + + axis.size = size; + + if (!axis.horizontal && !this.owner.manageHeight) { + + + dirty = false; + } + } else { + + + if (framing) { + + + delta = 0; + bodyPos = axisBegin - framingBegin - extraPaddingBegin; + } else { + delta = -borderBegin; + bodyPos = axisBegin - paddingBegin - borderBegin; + } + + + bodySize = size; + } + + axis.delta = delta; + bodyContext[setSizeMethod](bodySize, dirty); + bodyContext.setProp(axis.bodyPosProp, bodyPos); + + return !isNaN(size); + }, + + beforeInvalidateShrinkWrapDock: function(itemContext, options){ + var sizeModelName = options.axis.sizeModelName; + if (!itemContext[sizeModelName].constrainedMin) { + + + itemContext[sizeModelName] = Ext.layout.SizeModel.calculated; + } + }, + + afterInvalidateShrinkWrapDock: function(itemContext, options){ + var axis = options.axis, + me = options.layout, + pos; + + if (itemContext[axis.sizeModelName].calculated) { + pos = me.dockStretch(options.ownerContext, itemContext, itemContext.target, axis); + itemContext.setProp(axis.posProp, axis.delta + pos); + } + }, + + + finishConstraints: function (ownerContext, horz, vert) { + var me = this, + sizeModels = me.sizeModels, + publishWidth = horz.shrinkWrap, + publishHeight = vert.shrinkWrap, + owner = me.owner, + dirty, height, width, heightModel, widthModel, size, + minSize, maxSize, maxChildSize, desiredSize; + + + + + + + if (publishWidth) { + size = horz.size; + minSize = horz.collapsed ? 0 : horz.minSize; + maxSize = horz.maxSize; + maxChildSize = horz.maxChildSize; + desiredSize = Math.max(size, maxChildSize); + + if (desiredSize > maxSize) { + widthModel = sizeModels.constrainedMax; + width = maxSize; + } else if (desiredSize < minSize) { + widthModel = sizeModels.constrainedMin; + width = minSize; + } else if (size < maxChildSize) { + widthModel = sizeModels.constrainedDock; + owner.dockConstrainedWidth = width = maxChildSize; + } else { + width = size; + } + } + + if (publishHeight) { + size = vert.size; + minSize = vert.collapsed ? 0 : vert.minSize; + maxSize = vert.maxSize; + maxChildSize = vert.maxChildSize; + + + desiredSize = Math.max(size, maxChildSize + size - vert.initialSize); + + if (desiredSize > maxSize) { + heightModel = sizeModels.constrainedMax; + height = maxSize; + } else if (desiredSize < minSize) { + heightModel = sizeModels.constrainedMin; + height = minSize; + } else if (size < maxChildSize) { + heightModel = sizeModels.constrainedDock; + owner.dockConstrainedHeight = height = maxChildSize; + } else { + if (!ownerContext.collapsedVert && !owner.manageHeight) { + + + dirty = false; + + + ownerContext.bodyContext.setProp('margin-bottom', vert.dockedPixelsEnd); + } + + height = size; + } + } + + + + if (widthModel || heightModel) { + + + if (widthModel && heightModel && + widthModel.constrainedMax && heightModel.constrainedByMin) { + ownerContext.invalidate({ widthModel: widthModel }); + return false; + } + + + + + if (!ownerContext.widthModel.calculatedFromShrinkWrap && + !ownerContext.heightModel.calculatedFromShrinkWrap) { + + ownerContext.invalidate({ widthModel: widthModel, heightModel: heightModel }); + return false; + } + + + + + } else { + + + me.invalidateAxes(ownerContext, horz, vert); + + } + + + + if (publishWidth) { + ownerContext.setWidth(width); + if (widthModel) { + ownerContext.widthModel = widthModel; + } + } + if (publishHeight) { + ownerContext.setHeight(height, dirty); + if (heightModel) { + ownerContext.heightModel = heightModel; + } + } + + return true; + }, + + + invalidateAxes: function(ownerContext, horz, vert){ + var before = this.beforeInvalidateShrinkWrapDock, + after = this.afterInvalidateShrinkWrapDock, + horzSize = horz.end - horz.begin, + vertSize = vert.initialSize, + invalidateHorz = horz.shrinkWrapDock && horz.maxChildSize < horzSize, + invalidateVert = vert.shrinkWrapDock && vert.maxChildSize < vertSize, + dockedItems, len, i, itemContext, itemSize, isHorz, axis, sizeProp; + + if (invalidateHorz || invalidateVert) { + if (invalidateVert) { + + + vert.begin = vert.initialBegin; + vert.end = vert.begin + vert.initialSize; + } + dockedItems = ownerContext.dockedItems; + for (i = 0, len = dockedItems.length; i < len; ++i) { + itemContext = dockedItems[i]; + isHorz = itemContext.horizontal; + axis = null; + if (invalidateHorz && isHorz) { + sizeProp = horz.sizeProp; + itemSize = horzSize; + axis = horz; + } else if (invalidateVert && !isHorz) { + sizeProp = vert.sizeProp; + itemSize = vertSize; + axis = vert; + } + + if (axis) { + + itemSize -= itemContext.getMarginInfo()[sizeProp]; + if (itemSize !== itemContext.props[sizeProp]) { + itemContext.invalidate({ + before: before, + after: after, + axis: axis, + ownerContext: ownerContext, + layout: this + }); + } + } + } + } + }, + + + finishPositions: function (ownerContext, horz, vert) { + var dockedItems = ownerContext.dockedItems, + length = dockedItems.length, + deltaX = horz.delta, + deltaY = vert.delta, + index, itemContext; + + for (index = 0; index < length; ++index) { + itemContext = dockedItems[index]; + + itemContext.setProp('x', deltaX + itemContext.dockedAt.x); + itemContext.setProp('y', deltaY + itemContext.dockedAt.y); + } + }, + + finishedLayout: function(ownerContext) { + var me = this, + target = ownerContext.target; + + me.callParent(arguments); + + if (!ownerContext.animatePolicy) { + if (ownerContext.isCollapsingOrExpanding === 1) { + target.afterCollapse(false); + } else if (ownerContext.isCollapsingOrExpanding === 2) { + target.afterExpand(false); + } + } + }, + + getAnimatePolicy: function(ownerContext) { + var me = this, + lastCollapsedState, policy; + + if (ownerContext.isCollapsingOrExpanding == 1) { + lastCollapsedState = me.lastCollapsedState; + } else if (ownerContext.isCollapsingOrExpanding == 2) { + lastCollapsedState = ownerContext.lastCollapsedState; + } + + if (lastCollapsedState == 'left' || lastCollapsedState == 'right') { + policy = me.horizontalCollapsePolicy; + } else if (lastCollapsedState == 'top' || lastCollapsedState == 'bottom') { + policy = me.verticalCollapsePolicy; + } + + return policy; + }, + + + getDockedItems: function(order, beforeBody) { + var me = this, + renderedOnly = (order === 'visual'), + all = renderedOnly ? Ext.ComponentQuery.query('[rendered]', me.owner.dockedItems.items) : me.owner.dockedItems.items, + sort = all && all.length && order !== false, + renderOrder, + dock, dockedItems, i, isBefore, length; + + if (beforeBody == null) { + dockedItems = sort && !renderedOnly ? all.slice() : all; + } else { + dockedItems = []; + + for (i = 0, length = all.length; i < length; ++i) { + dock = all[i].dock; + isBefore = (dock == 'top' || dock == 'left'); + if (beforeBody ? isBefore : !isBefore) { + dockedItems.push(all[i]); + } + } + + sort = sort && dockedItems.length; + } + + if (sort) { + renderOrder = (order = order || 'render') == 'render'; + Ext.Array.sort(dockedItems, function(a, b) { + var aw, + bw; + + + + if (renderOrder && ((aw = me.owner.dockOrder[a.dock]) !== (bw = me.owner.dockOrder[b.dock]))) { + + + if (!(aw + bw)) { + return aw - bw; + } + } + + aw = me.getItemWeight(a, order); + bw = me.getItemWeight(b, order); + if ((aw !== undefined) && (bw !== undefined)) { + return aw - bw; + } + return 0; + }); + } + + return dockedItems || []; + }, + + getItemWeight: function (item, order) { + var weight = item.weight || this.owner.defaultDockWeights[item.dock]; + return weight[order] || weight; + }, + + + getLayoutItems : function() { + var me = this, + items, + itemCount, + item, + i, + result; + + if (me.owner.collapsed) { + result = me.owner.getCollapsedDockedItems(); + } else { + items = me.getDockedItems('visual'); + itemCount = items.length; + result = []; + for (i = 0; i < itemCount; i++) { + item = items[i]; + if (!item.hidden) { + result.push(item); + } + } + } + return result; + }, + + + measureContentWidth: function (ownerContext) { + var bodyContext = ownerContext.bodyContext; + return bodyContext.el.getWidth() - bodyContext.getBorderInfo().width; + }, + + measureContentHeight: function (ownerContext) { + var bodyContext = ownerContext.bodyContext; + return bodyContext.el.getHeight() - bodyContext.getBorderInfo().height; + }, + + redoLayout: function(ownerContext) { + var me = this, + owner = me.owner; + + + if (ownerContext.isCollapsingOrExpanding == 1) { + if (owner.reExpander) { + owner.reExpander.el.show(); + } + + owner.addClsWithUI(owner.collapsedCls); + ownerContext.redo(true); + } else if (ownerContext.isCollapsingOrExpanding == 2) { + + owner.removeClsWithUI(owner.collapsedCls); + ownerContext.bodyContext.redo(); + } + }, + + + + renderChildren: function() { + var me = this, + items = me.getDockedItems(), + target = me.getRenderTarget(); + + me.handleItemBorders(); + + me.renderItems(items, target); + }, + + + renderItems: function(items, target) { + var me = this, + dockedItemCount = items.length, + itemIndex = 0, + correctPosition = 0, + staticNodeCount = 0, + targetNodes = me.getRenderTarget().dom.childNodes, + targetChildCount = targetNodes.length, + i, j, targetChildNode, item; + + + for (i = 0, j = 0; i < targetChildCount; i++) { + targetChildNode = targetNodes[i]; + if (Ext.fly(targetChildNode).hasCls(Ext.baseCSSPrefix + 'resizable-handle')) { + break; + } + for (j = 0; j < dockedItemCount; j++) { + item = items[j]; + if (item.rendered && item.el.dom === targetChildNode) { + break; + } + } + + + if (j === dockedItemCount) { + staticNodeCount++; + } + } + + + for (; itemIndex < dockedItemCount; itemIndex++, correctPosition++) { + item = items[itemIndex]; + + + + + + + + + if (itemIndex === correctPosition && (item.dock === 'right' || item.dock === 'bottom')) { + correctPosition += staticNodeCount; + } + + + if (item && !item.rendered) { + me.renderItem(item, target, correctPosition); + } + else if (!me.isValidParent(item, target, correctPosition)) { + me.moveItem(item, target, correctPosition); + } + } + }, + + undoLayout: function(ownerContext) { + var me = this, + owner = me.owner; + + + if (ownerContext.isCollapsingOrExpanding == 1) { + + + if (owner.reExpander) { + owner.reExpander.el.hide(); + } + + owner.removeClsWithUI(owner.collapsedCls); + ownerContext.undo(true); + } else if (ownerContext.isCollapsingOrExpanding == 2) { + + owner.addClsWithUI(owner.collapsedCls); + ownerContext.bodyContext.undo(); + } + }, + + sizePolicy: { + nostretch: { + setsWidth: 0, + setsHeight: 0 + }, + + horz: { + shrinkWrap: { + + + setsWidth: 1, + setsHeight: 0, + readsWidth: 1 + }, + stretch: { + setsWidth: 1, + setsHeight: 0 + } + }, + + vert: { + shrinkWrap: { + setsWidth: 0, + setsHeight: 1, + readsHeight: 1 + }, + stretch: { + setsWidth: 0, + setsHeight: 1 + } + }, + + stretchV: { + setsWidth: 0, + setsHeight: 1 + }, + + + + + + + + + + + + + + + + + + + + + + + autoStretchH: { + readsWidth: 1, + setsWidth: 1, + setsHeight: 0 + }, + autoStretchV: { + readsHeight: 1, + setsWidth: 0, + setsHeight: 1 + } + }, + + getItemSizePolicy: function (item, ownerSizeModel) { + var me = this, + policy = me.sizePolicy, + shrinkWrapDock = me.owner.shrinkWrapDock, + dock, vertical; + + if (item.stretch === false) { + return policy.nostretch; + } + + dock = item.dock; + vertical = (dock == 'left' || dock == 'right'); + + shrinkWrapDock = shrinkWrapDock === true ? 3 : (shrinkWrapDock || 0); + if (vertical) { + policy = policy.vert; + shrinkWrapDock = shrinkWrapDock & 1; + } else { + policy = policy.horz; + shrinkWrapDock = shrinkWrapDock & 2; + } + + if (shrinkWrapDock) { + + if (!ownerSizeModel) { + ownerSizeModel = me.owner.getSizeModel(); + } + if (ownerSizeModel[vertical ? 'height' : 'width'].shrinkWrap) { + return policy.shrinkWrap; + } + } + + return policy.stretch; + }, + + + configureItem : function(item, pos) { + this.callParent(arguments); + + item.addCls(Ext.baseCSSPrefix + 'docked'); + item.addClsWithUI(this.getDockCls(item.dock)); + }, + + + getDockCls: function(dock) { + return 'docked-' + dock; + }, + + afterRemove : function(item) { + this.callParent(arguments); + if (this.itemCls) { + item.el.removeCls(this.itemCls + '-' + item.dock); + } + var dom = item.el.dom; + + if (!item.destroying && dom) { + dom.parentNode.removeChild(dom); + } + this.childrenChanged = true; + }, + + + borderCollapseMap: { + + }, + + + getBorderCollapseTable: function () { + var me = this, + map = me.borderCollapseMap, + owner = me.owner, + baseCls = owner.baseCls, + ui = owner.ui, + table; + + map = map[baseCls] || (map[baseCls] = {}); + table = map[ui]; + + if (!table) { + baseCls += '-' + ui + '-outer-border-'; + map[ui] = table = [ + 0, + baseCls + 'l', + baseCls + 'b', + baseCls + 'bl', + baseCls + 'r', + baseCls + 'rl', + baseCls + 'rb', + baseCls + 'rbl', + baseCls + 't', + baseCls + 'tl', + baseCls + 'tb', + baseCls + 'tbl', + baseCls + 'tr', + baseCls + 'trl', + baseCls + 'trb', + baseCls + 'trbl' + ]; + } + + return table; + } +}); + + +Ext.define('Ext.panel.AbstractPanel', { + + + + extend: Ext.container.Container , + + mixins: { + docking: Ext.container.DockingContainer + }, + + + + + + + baseCls : Ext.baseCSSPrefix + 'panel', + + + + + + + + + + + isPanel: true, + + + + + contentPaddingProperty: 'bodyPadding', + + + shrinkWrapDock: false, + + componentLayout: 'dock', + + childEls: [ + 'body' + ], + + renderTpl: [ + + '{% this.renderDockedItems(out,values,0); %}', + + + + + + + + + + (Ext.isIE7m || Ext.isIEQuirks) ? '
' : '', + '
{bodyCls}', + ' {baseCls}-body-{ui}', + ' {parent.baseCls}-body-{parent.ui}-{.}', + '{childElCls}"', + ' style="{bodyStyle}">', + '{%this.renderContainer(out,values);%}', + '
', + '{% this.renderDockedItems(out,values,1); %}' + ], + + bodyPosProps: { + x: 'x', + y: 'y' + }, + + + + + + border: true, + + + emptyArray: [], + + initComponent : function() { + this.initBorderProps(); + this.callParent(); + }, + + initBorderProps: function() { + var me = this; + + if (me.frame && me.border && me.bodyBorder === undefined) { + me.bodyBorder = false; + } + if (me.frame && me.border && (me.bodyBorder === false || me.bodyBorder === 0)) { + me.manageBodyBorders = true; + } + }, + + beforeDestroy: function(){ + this.destroyDockedItems(); + this.callParent(); + }, + + + initItems : function() { + this.callParent(); + this.initDockingItems(); + }, + + + initRenderData: function() { + var me = this, + data = me.callParent(); + + me.initBodyStyles(); + me.protoBody.writeTo(data); + delete me.protoBody; + + return data; + }, + + + getComponent: function(comp) { + var component = this.callParent(arguments); + if (component === undefined && !Ext.isNumber(comp)) { + + component = this.getDockedComponent(comp); + } + return component; + }, + + getProtoBody: function () { + var me = this, + body = me.protoBody; + + if (!body) { + me.protoBody = body = new Ext.util.ProtoElement({ + cls: me.bodyCls, + style: me.bodyStyle, + clsProp: 'bodyCls', + styleProp: 'bodyStyle', + styleIsText: true + }); + } + + return body; + }, + + + initBodyStyles: function() { + var me = this, + body = me.getProtoBody(); + + if (me.bodyPadding !== undefined) { + if (me.layout.managePadding) { + + + + + + body.setStyle('padding', 0); + } else { + body.setStyle('padding', this.unitizeBox((me.bodyPadding === true) ? 5 : me.bodyPadding)); + } + } + me.initBodyBorder(); + }, + + initBodyBorder: function() { + var me = this; + + if (me.frame && me.bodyBorder) { + if (!Ext.isNumber(me.bodyBorder)) { + me.bodyBorder = 1; + } + me.getProtoBody().setStyle('border-width', this.unitizeBox(me.bodyBorder)); + } + }, + + getCollapsedDockedItems: function () { + var me = this; + return me.header === false || me.collapseMode == 'placeholder' ? me.emptyArray : [ me.getReExpander() ]; + }, + + + setBodyStyle: function(style, value) { + var me = this, + body = me.rendered ? me.body : me.getProtoBody(); + + if (Ext.isFunction(style)) { + style = style(); + } + if (arguments.length == 1) { + if (Ext.isString(style)) { + style = Ext.Element.parseStyles(style); + } + body.setStyle(style); + } else { + body.setStyle(style, value); + } + return me; + }, + + + addBodyCls: function(cls) { + var me = this, + body = me.rendered ? me.body : me.getProtoBody(); + + body.addCls(cls); + return me; + }, + + + removeBodyCls: function(cls) { + var me = this, + body = me.rendered ? me.body : me.getProtoBody(); + + body.removeCls(cls); + return me; + }, + + + addUIClsToElement: function(cls) { + var me = this, + result = me.callParent(arguments); + + me.addBodyCls([Ext.baseCSSPrefix + cls, me.baseCls + '-body-' + cls, me.baseCls + '-body-' + me.ui + '-' + cls]); + return result; + }, + + + removeUIClsFromElement: function(cls) { + var me = this, + result = me.callParent(arguments); + + me.removeBodyCls([Ext.baseCSSPrefix + cls, me.baseCls + '-body-' + cls, me.baseCls + '-body-' + me.ui + '-' + cls]); + return result; + }, + + + addUIToElement: function() { + var me = this; + + me.callParent(arguments); + me.addBodyCls(me.baseCls + '-body-' + me.ui); + }, + + + removeUIFromElement: function() { + var me = this; + + me.callParent(arguments); + me.removeBodyCls(me.baseCls + '-body-' + me.ui); + }, + + + getTargetEl : function() { + return this.body; + }, + + applyTargetCls: function(targetCls) { + this.getProtoBody().addCls(targetCls); + }, + + getRefItems: function(deep) { + var items = this.callParent(arguments); + + return this.getDockingRefItems(deep, items); + }, + + setupRenderTpl: function (renderTpl) { + this.callParent(arguments); + this.setupDockingRenderTpl(renderTpl); + } +}); + + +Ext.define('Ext.panel.Header', { + extend: Ext.container.Container , + + alias: 'widget.header', + + + isHeader : true, + defaultType : 'tool', + indicateDrag : false, + weight : -1, + componentLayout: 'body', + + + + childEls: [ + 'body' + ], + + renderTpl: [ + '
{parent.baseCls}-body-{parent.ui}-{.}"', + ' style="{bodyStyle}">', + '{%this.renderContainer(out,values)%}', + '
' + ], + + headingTpl: [ + + '{title}' + ], + + shrinkWrap: 3, + + + + + titlePosition: 0, + + + + + + + + + headerCls: Ext.baseCSSPrefix + 'header', + + initComponent: function() { + var me = this, + hasPosition = me.hasOwnProperty('titlePosition'), + items = me.items, + titlePosition = hasPosition ? me.titlePosition : (items ? items.length : 0), + uiClasses = [me.orientation, me.getDockName()], + ownerCt = me.ownerCt; + + me.addEvents( + + 'click', + + + 'dblclick' + ); + + me.indicateDragCls = me.headerCls + '-draggable'; + me.title = me.title || ' '; + me.tools = me.tools || []; + items = me.items = (items ? Ext.Array.slice(items) : []); + me.orientation = me.orientation || 'horizontal'; + me.dock = (me.dock) ? me.dock : (me.orientation == 'horizontal') ? 'top' : 'left'; + + if (ownerCt ? (!ownerCt.border && !ownerCt.frame) : !me.border) { + uiClasses.push(me.orientation + '-noborder'); + } + me.addClsWithUI(uiClasses); + me.addCls([me.headerCls, me.headerCls + '-' + me.orientation]); + + if (me.indicateDrag) { + me.addCls(me.indicateDragCls); + } + + + if (me.iconCls || me.icon || me.glyph) { + me.initIconCmp(); + + + if (!hasPosition && !items.length) { + ++titlePosition; + } + items.push(me.iconCmp); + } + + + me.titleCmp = new Ext.Component({ + ariaRole : 'heading', + focusable : false, + noWrap : true, + flex : 1, + rtl : me.rtl, + id : me.id + '_hd', + style : me.titleAlign ? ('text-align:' + me.titleAlign) : '', + cls : me.headerCls + '-text-container ' + + me.baseCls + '-text-container ' + + me.baseCls + '-text-container-' + me.ui, + renderTpl : me.getTpl('headingTpl'), + renderData: { + title: me.title, + cls : me.baseCls, + headerCls: me.headerCls, + ui : me.ui + }, + childEls : ['textEl'], + autoEl: { + + unselectable: 'on' + }, + listeners: { + render: me.onTitleRender, + scope: me + } + }); + me.layout = (me.orientation == 'vertical') ? { + type : 'vbox', + align: 'center', + alignRoundingMethod: 'ceil' + } : { + type : 'hbox', + align: 'middle', + alignRoundingMethod: 'floor' + }; + + + Ext.Array.push(items, me.tools); + + + me.tools.length = 0; + me.callParent(); + + if (items.length < titlePosition) { + titlePosition = items.length; + } + me.titlePosition = titlePosition; + + + me.insert(titlePosition, me.titleCmp); + + me.on({ + dblclick: me.onDblClick, + click: me.onClick, + element: 'el', + scope: me + }); + }, + + initIconCmp: function() { + var me = this, + cls = [me.headerCls + '-icon', me.baseCls + '-icon', me.iconCls], + cfg; + + if (me.glyph) { + cls.push(me.baseCls + '-glyph'); + } + + cfg = { + focusable: false, + src: Ext.BLANK_IMAGE_URL, + cls: cls, + baseCls: me.baseCls + '-icon', + id: me.id + '-iconEl', + iconCls: me.iconCls, + glyph: me.glyph + }; + + if (!Ext.isEmpty(me.icon)) { + delete cfg.iconCls; + cfg.src = me.icon; + } + + me.iconCmp = new Ext.Img(cfg); + }, + + beforeRender: function() { + this.protoEl.unselectable(); + this.callParent(); + }, + + afterLayout: function() { + var me = this, + frameBR, frameTR, frameTL, xPos; + + if (me.orientation === 'vertical') { + me.adjustTitlePosition(); + frameTR = me.frameTR; + if (frameTR) { + + + + frameBR = me.frameBR; + frameTL = me.frameTL; + xPos = (me.getWidth() - frameTR.getPadding('r') - + ((frameTL) ? frameTL.getPadding('l') : me.el.getBorderWidth('l'))) + 'px'; + frameBR.setStyle('background-position-x', xPos); + frameTR.setStyle('background-position-x', xPos); + } + if (Ext.isIE7 && Ext.isStrict && me.frame) { + + + me.el.repaint(); + } + } + }, + + beforeLayout: function () { + this.callParent(); + this.syncBeforeAfterTitleClasses(); + }, + + adjustTitlePosition: function() { + var titleCmp = this.titleCmp, + titleEl; + + if (!Ext.isIE9m && titleCmp) { + + + + + + + + + + + + + + + + titleEl = titleCmp.el; + titleEl.setStyle('left', titleEl.getWidth() + 'px'); + } + }, + + onTitleRender: function() { + if (this.orientation === 'vertical') { + this.titleCmp.el.setVertical(90); + } + }, + + + addUIClsToElement: function(cls) { + var me = this, + result = me.callParent(arguments), + classes = [me.baseCls + '-body-' + cls, me.baseCls + '-body-' + me.ui + '-' + cls], + array, i; + + if (me.bodyCls) { + array = me.bodyCls.split(' '); + + for (i = 0; i < classes.length; i++) { + if (!Ext.Array.contains(array, classes[i])) { + array.push(classes[i]); + } + } + + me.bodyCls = array.join(' '); + } else { + me.bodyCls = classes.join(' '); + } + + return result; + }, + + + removeUIClsFromElement: function(cls) { + var me = this, + result = me.callParent(arguments), + classes = [me.baseCls + '-body-' + cls, me.baseCls + '-body-' + me.ui + '-' + cls], + array, i; + + if (me.bodyCls) { + array = me.bodyCls.split(' '); + + for (i = 0; i < classes.length; i++) { + Ext.Array.remove(array, classes[i]); + } + + me.bodyCls = array.join(' '); + } + + return result; + }, + + + addUIToElement: function() { + var me = this, + array, cls; + + me.callParent(arguments); + + cls = me.baseCls + '-body-' + me.ui; + if (me.rendered) { + if (me.bodyCls) { + me.body.addCls(me.bodyCls); + } else { + me.body.addCls(cls); + } + } else { + if (me.bodyCls) { + array = me.bodyCls.split(' '); + + if (!Ext.Array.contains(array, cls)) { + array.push(cls); + } + + me.bodyCls = array.join(' '); + } else { + me.bodyCls = cls; + } + } + + if (me.titleCmp && me.titleCmp.rendered) { + me.titleCmp.addCls(me.baseCls + '-text-container-' + me.ui); + } + }, + + + removeUIFromElement: function() { + var me = this, + array, cls; + + me.callParent(arguments); + + cls = me.baseCls + '-body-' + me.ui; + if (me.rendered) { + if (me.bodyCls) { + me.body.removeCls(me.bodyCls); + } else { + me.body.removeCls(cls); + } + } else { + if (me.bodyCls) { + array = me.bodyCls.split(' '); + Ext.Array.remove(array, cls); + me.bodyCls = array.join(' '); + } else { + me.bodyCls = cls; + } + } + + if (me.titleCmp && me.titleCmp.rendered) { + me.titleCmp.removeCls(me.baseCls + '-text-container-' + me.ui); + } + }, + + onClick: function(e) { + this.fireClickEvent('click', e); + }, + + onDblClick: function(e){ + this.fireClickEvent('dblclick', e); + }, + + fireClickEvent: function(type, e){ + var toolCls = '.' + Ext.panel.Tool.prototype.baseCls; + if (!e.getTarget(toolCls)) { + this.fireEvent(type, this, e); + } + }, + + getFocusEl: function() { + return this.el; + }, + + getTargetEl: function() { + return this.body || this.frameBody || this.el; + }, + + applyTargetCls: function(targetCls) { + this.bodyTargetCls = targetCls; + }, + + + setTitle: function(title) { + var me = this, + titleCmp = me.titleCmp; + + me.title = title; + if (titleCmp.rendered) { + titleCmp.textEl.update(me.title || ' '); + titleCmp.updateLayout(); + } else { + me.titleCmp.on({ + render: function() { + me.setTitle(title); + }, + single: true + }); + } + }, + + + getMinWidth: function() { + var me = this, + textEl = me.titleCmp.textEl.dom, + result, + tools = me.tools, + l, i; + + + textEl.style.display = 'inline'; + result = textEl.offsetWidth; + textEl.style.display = ''; + + + if (tools && (l = tools.length)) { + for (i = 0; i < l; i++) { + if (tools[i].el) { + result += tools[i].el.dom.offsetWidth; + } + } + } + + + if (me.iconCmp) { + result += me.iconCmp.el.dom.offsetWidth; + } + + + return result + 10; + }, + + + setIconCls: function(cls) { + var me = this, + isEmpty = !cls || !cls.length, + iconCmp = me.iconCmp; + + me.iconCls = cls; + if (!me.iconCmp && !isEmpty) { + me.initIconCmp(); + me.insert(0, me.iconCmp); + } else if (iconCmp) { + if (isEmpty) { + me.iconCmp.destroy(); + delete me.iconCmp; + } else { + iconCmp.removeCls(iconCmp.iconCls); + iconCmp.addCls(cls); + iconCmp.iconCls = cls; + } + } + }, + + + setIcon: function(icon) { + var me = this, + isEmpty = !icon || !icon.length, + iconCmp = me.iconCmp; + + me.icon = icon; + if (!me.iconCmp && !isEmpty) { + me.initIconCmp(); + me.insert(0, me.iconCmp); + } else if (iconCmp) { + if (isEmpty) { + me.iconCmp.destroy(); + delete me.iconCmp; + } else { + iconCmp.setSrc(me.icon); + } + } + }, + + + setGlyph: function(glyph) { + var me = this, + iconCmp = me.iconCmp; + + if (!me.iconCmp) { + me.initIconCmp(); + me.insert(0, me.iconCmp); + } else if (iconCmp) { + if (glyph) { + me.iconCmp.setGlyph(glyph); + } else { + me.iconCmp.destroy(); + delete me.iconCmp; + } + } + }, + + + getTools: function(){ + return this.tools.slice(); + }, + + + addTool: function(tool) { + + + this.add(Ext.ComponentManager.create(tool, 'tool')); + }, + + syncBeforeAfterTitleClasses: function() { + var me = this, + items = me.items, + childItems = items.items, + titlePosition = me.titlePosition, + itemCount = childItems.length, + itemGeneration = items.generation, + syncGen = me.syncBeforeAfterGen, + afterCls, beforeCls, i, item; + + if (syncGen === itemGeneration) { + return; + } + me.syncBeforeAfterGen = itemGeneration; + + for (i = 0; i < itemCount; ++i) { + item = childItems[i]; + + afterCls = item.afterTitleCls || (item.afterTitleCls = item.baseCls + '-after-title') + beforeCls = item.beforeTitleCls || (item.beforeTitleCls = item.baseCls + '-before-title') + + if (!me.title || i < titlePosition) { + if (syncGen) { + item.removeCls(afterCls); + } + item.addCls(beforeCls); + } else if (i > titlePosition) { + if (syncGen) { + item.removeCls(beforeCls); + } + item.addCls(afterCls); + } + } + }, + + + onAdd: function(component, index) { + var tools = this.tools; + this.callParent(arguments); + if (component.isTool) { + tools.push(component); + tools[component.type] = component; + } + }, + + + initRenderData: function() { + return Ext.applyIf(this.callParent(), { + bodyCls: this.bodyCls, + bodyTargetCls: this.bodyTargetCls, + headerCls: this.headerCls + }); + }, + + getDockName: function() { + return this.dock; + }, + + getFramingInfoCls: function(){ + var me = this, + cls = me.callParent(), + owner = me.ownerCt; + + if (!me.expanding && (owner && owner.collapsed) || me.isCollapsedExpander) { + cls += '-' + owner.collapsedCls; + } + return cls + '-' + me.dock; + } +}); + + + + + +Ext.define('Ext.dd.DragDrop', { + + + + constructor: function(id, sGroup, config) { + if(id) { + this.init(id, sGroup, config); + } + }, + + + + + id: null, + + + config: null, + + + dragElId: null, + + + handleElId: null, + + + invalidHandleTypes: null, + + + invalidHandleIds: null, + + + invalidHandleClasses: null, + + + startPageX: 0, + + + startPageY: 0, + + + groups: null, + + + locked: false, + + + lock: function() { + this.locked = true; + }, + + + moveOnly: false, + + + unlock: function() { + this.locked = false; + }, + + + isTarget: true, + + + padding: null, + + + _domRef: null, + + + __ygDragDrop: true, + + + constrainX: false, + + + constrainY: false, + + + minX: 0, + + + maxX: 0, + + + minY: 0, + + + maxY: 0, + + + maintainOffset: false, + + + xTicks: null, + + + yTicks: null, + + + primaryButtonOnly: true, + + + available: false, + + + hasOuterHandles: false, + + + b4StartDrag: function(x, y) { }, + + + startDrag: function(x, y) { }, + + + b4Drag: function(e) { }, + + + onDrag: function(e) { }, + + + onDragEnter: function(e, id) { }, + + + b4DragOver: function(e) { }, + + + onDragOver: function(e, id) { }, + + + b4DragOut: function(e) { }, + + + onDragOut: function(e, id) { }, + + + b4DragDrop: function(e) { }, + + + onDragDrop: function(e, id) { }, + + + onInvalidDrop: function(e) { }, + + + b4EndDrag: function(e) { }, + + + endDrag: function(e) { }, + + + b4MouseDown: function(e) { }, + + + onMouseDown: function(e) { }, + + + onMouseUp: function(e) { }, + + + onAvailable: function () { + }, + + + defaultPadding: { + left: 0, + right: 0, + top: 0, + bottom: 0 + }, + + + constrainTo : function(constrainTo, pad, inContent){ + if(Ext.isNumber(pad)){ + pad = {left: pad, right:pad, top:pad, bottom:pad}; + } + pad = pad || this.defaultPadding; + var b = Ext.get(this.getEl()).getBox(), + ce = Ext.get(constrainTo), + s = ce.getScroll(), + c, + cd = ce.dom, + xy, + topSpace, + leftSpace; + if(cd == document.body){ + c = { x: s.left, y: s.top, width: Ext.Element.getViewWidth(), height: Ext.Element.getViewHeight()}; + }else{ + xy = ce.getXY(); + c = {x : xy[0], y: xy[1], width: cd.clientWidth, height: cd.clientHeight}; + } + + topSpace = b.y - c.y; + leftSpace = b.x - c.x; + + this.resetConstraints(); + this.setXConstraint(leftSpace - (pad.left||0), + c.width - leftSpace - b.width - (pad.right||0), + this.xTickSize + ); + this.setYConstraint(topSpace - (pad.top||0), + c.height - topSpace - b.height - (pad.bottom||0), + this.yTickSize + ); + }, + + + getEl: function() { + if (!this._domRef) { + this._domRef = Ext.getDom(this.id); + } + + return this._domRef; + }, + + + getDragEl: function() { + return Ext.getDom(this.dragElId); + }, + + + init: function(id, sGroup, config) { + this.initTarget(id, sGroup, config); + Ext.EventManager.on(this.id, "mousedown", this.handleMouseDown, this); + + }, + + + initTarget: function(id, sGroup, config) { + + this.config = config || {}; + + + this.DDMInstance = Ext.dd.DragDropManager; + + this.groups = {}; + + + + if (typeof id !== "string") { + id = Ext.id(id); + } + + + this.id = id; + + + this.addToGroup((sGroup) ? sGroup : "default"); + + + + this.handleElId = id; + + + this.setDragElId(id); + + + this.invalidHandleTypes = { A: "A" }; + this.invalidHandleIds = {}; + this.invalidHandleClasses = []; + + this.applyConfig(); + + this.handleOnAvailable(); + }, + + + applyConfig: function() { + + + + this.padding = this.config.padding || [0, 0, 0, 0]; + this.isTarget = (this.config.isTarget !== false); + this.maintainOffset = (this.config.maintainOffset); + this.primaryButtonOnly = (this.config.primaryButtonOnly !== false); + + }, + + + handleOnAvailable: function() { + this.available = true; + this.resetConstraints(); + this.onAvailable(); + }, + + + setPadding: function(iTop, iRight, iBot, iLeft) { + + if (!iRight && 0 !== iRight) { + this.padding = [iTop, iTop, iTop, iTop]; + } else if (!iBot && 0 !== iBot) { + this.padding = [iTop, iRight, iTop, iRight]; + } else { + this.padding = [iTop, iRight, iBot, iLeft]; + } + }, + + + setInitPosition: function(diffX, diffY) { + var el = this.getEl(), + dx, dy, p; + + if (!this.DDMInstance.verifyEl(el)) { + return; + } + + dx = diffX || 0; + dy = diffY || 0; + + p = Ext.Element.getXY( el ); + + this.initPageX = p[0] - dx; + this.initPageY = p[1] - dy; + + this.lastPageX = p[0]; + this.lastPageY = p[1]; + + this.setStartPosition(p); + }, + + + setStartPosition: function(pos) { + var p = pos || Ext.Element.getXY( this.getEl() ); + this.deltaSetXY = null; + + this.startPageX = p[0]; + this.startPageY = p[1]; + }, + + + addToGroup: function(sGroup) { + this.groups[sGroup] = true; + this.DDMInstance.regDragDrop(this, sGroup); + }, + + + removeFromGroup: function(sGroup) { + if (this.groups[sGroup]) { + delete this.groups[sGroup]; + } + + this.DDMInstance.removeDDFromGroup(this, sGroup); + }, + + + setDragElId: function(id) { + this.dragElId = id; + }, + + + setHandleElId: function(id) { + if (typeof id !== "string") { + id = Ext.id(id); + } + this.handleElId = id; + this.DDMInstance.regHandle(this.id, id); + }, + + + setOuterHandleElId: function(id) { + if (typeof id !== "string") { + id = Ext.id(id); + } + Ext.EventManager.on(id, "mousedown", this.handleMouseDown, this); + this.setHandleElId(id); + + this.hasOuterHandles = true; + }, + + + unreg: function() { + Ext.EventManager.un(this.id, "mousedown", this.handleMouseDown, this); + this._domRef = null; + this.DDMInstance._remove(this); + }, + + + destroy : function(){ + this.unreg(); + }, + + + isLocked: function() { + return (this.DDMInstance.isLocked() || this.locked); + }, + + + handleMouseDown: function(e, oDD){ + var me = this; + + if ((me.primaryButtonOnly && e.button != 0) || me.isLocked()) { + return; + } + + me.DDMInstance.refreshCache(me.groups); + + if (me.hasOuterHandles || me.DDMInstance.isOverTarget(e.getPoint(), me)) { + if (me.clickValidator(e)) { + + me.setStartPosition(); + me.b4MouseDown(e); + me.onMouseDown(e); + + me.DDMInstance.handleMouseDown(e, me); + + me.DDMInstance.stopEvent(e); + } + } + }, + + clickValidator: function(e) { + var target = e.getTarget(); + return ( this.isValidHandleChild(target) && + (this.id == this.handleElId || + this.DDMInstance.handleWasClicked(target, this.id)) ); + }, + + + addInvalidHandleType: function(tagName) { + var type = tagName.toUpperCase(); + this.invalidHandleTypes[type] = type; + }, + + + addInvalidHandleId: function(id) { + if (typeof id !== "string") { + id = Ext.id(id); + } + this.invalidHandleIds[id] = id; + }, + + + addInvalidHandleClass: function(cssClass) { + this.invalidHandleClasses.push(cssClass); + }, + + + removeInvalidHandleType: function(tagName) { + var type = tagName.toUpperCase(); + + delete this.invalidHandleTypes[type]; + }, + + + removeInvalidHandleId: function(id) { + if (typeof id !== "string") { + id = Ext.id(id); + } + delete this.invalidHandleIds[id]; + }, + + + removeInvalidHandleClass: function(cssClass) { + for (var i=0, len=this.invalidHandleClasses.length; i= this.minX; i = i - iTickSize) { + if (!tickMap[i]) { + this.xTicks[this.xTicks.length] = i; + tickMap[i] = true; + } + } + + for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) { + if (!tickMap[i]) { + this.xTicks[this.xTicks.length] = i; + tickMap[i] = true; + } + } + + Ext.Array.sort(this.xTicks, this.DDMInstance.numericSort); + }, + + + setYTicks: function(iStartY, iTickSize) { + this.yTicks = []; + this.yTickSize = iTickSize; + + var tickMap = {}, + i; + + for (i = this.initPageY; i >= this.minY; i = i - iTickSize) { + if (!tickMap[i]) { + this.yTicks[this.yTicks.length] = i; + tickMap[i] = true; + } + } + + for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) { + if (!tickMap[i]) { + this.yTicks[this.yTicks.length] = i; + tickMap[i] = true; + } + } + + Ext.Array.sort(this.yTicks, this.DDMInstance.numericSort); + }, + + + setXConstraint: function(iLeft, iRight, iTickSize) { + this.leftConstraint = iLeft; + this.rightConstraint = iRight; + + this.minX = this.initPageX - iLeft; + this.maxX = this.initPageX + iRight; + if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); } + + this.constrainX = true; + }, + + + clearConstraints: function() { + this.constrainX = false; + this.constrainY = false; + this.clearTicks(); + }, + + + clearTicks: function() { + this.xTicks = null; + this.yTicks = null; + this.xTickSize = 0; + this.yTickSize = 0; + }, + + + setYConstraint: function(iUp, iDown, iTickSize) { + this.topConstraint = iUp; + this.bottomConstraint = iDown; + + this.minY = this.initPageY - iUp; + this.maxY = this.initPageY + iDown; + if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); } + + this.constrainY = true; + + }, + + + resetConstraints: function() { + + if (this.initPageX || this.initPageX === 0) { + + var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0, + dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0; + + this.setInitPosition(dx, dy); + + + } else { + this.setInitPosition(); + } + + if (this.constrainX) { + this.setXConstraint( this.leftConstraint, + this.rightConstraint, + this.xTickSize ); + } + + if (this.constrainY) { + this.setYConstraint( this.topConstraint, + this.bottomConstraint, + this.yTickSize ); + } + }, + + + getTick: function(val, tickArray) { + if (!tickArray) { + + + return val; + } else if (tickArray[0] >= val) { + + + return tickArray[0]; + } else { + var i, len, next, diff1, diff2; + for (i=0, len=tickArray.length; i= val) { + diff1 = val - tickArray[i]; + diff2 = tickArray[next] - val; + return (diff2 > diff1) ? tickArray[i] : tickArray[next]; + } + } + + + + return tickArray[tickArray.length - 1]; + } + }, + + + toString: function() { + return ("DragDrop " + this.id); + } + +}); + + + + + +Ext.define('Ext.dd.DD', { + extend: Ext.dd.DragDrop , + + + + constructor: function(id, sGroup, config) { + if (id) { + this.init(id, sGroup, config); + } + }, + + + scroll: true, + + + autoOffset: function(iPageX, iPageY) { + var x = iPageX - this.startPageX, + y = iPageY - this.startPageY; + this.setDelta(x, y); + }, + + + setDelta: function(iDeltaX, iDeltaY) { + this.deltaX = iDeltaX; + this.deltaY = iDeltaY; + }, + + + setDragElPos: function(iPageX, iPageY) { + + + + var el = this.getDragEl(); + this.alignElWithMouse(el, iPageX, iPageY); + }, + + + alignElWithMouse: function(el, iPageX, iPageY) { + var oCoord = this.getTargetCoord(iPageX, iPageY), + fly = el.dom ? el : Ext.fly(el, '_dd'), + elSize = fly.getSize(), + EL = Ext.Element, + vpSize, + aCoord, + newLeft, + newTop; + + if (!this.deltaSetXY) { + vpSize = this.cachedViewportSize = { width: EL.getDocumentWidth(), height: EL.getDocumentHeight() }; + aCoord = [ + Math.max(0, Math.min(oCoord.x, vpSize.width - elSize.width)), + Math.max(0, Math.min(oCoord.y, vpSize.height - elSize.height)) + ]; + fly.setXY(aCoord); + newLeft = this.getLocalX(fly); + newTop = fly.getLocalY(); + this.deltaSetXY = [newLeft - oCoord.x, newTop - oCoord.y]; + } else { + vpSize = this.cachedViewportSize; + this.setLocalXY( + fly, + Math.max(0, Math.min(oCoord.x + this.deltaSetXY[0], vpSize.width - elSize.width)), + Math.max(0, Math.min(oCoord.y + this.deltaSetXY[1], vpSize.height - elSize.height)) + ); + } + + this.cachePosition(oCoord.x, oCoord.y); + this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth); + return oCoord; + }, + + + cachePosition: function(iPageX, iPageY) { + if (iPageX) { + this.lastPageX = iPageX; + this.lastPageY = iPageY; + } else { + var aCoord = Ext.Element.getXY(this.getEl()); + this.lastPageX = aCoord[0]; + this.lastPageY = aCoord[1]; + } + }, + + + autoScroll: function(x, y, h, w) { + + if (this.scroll) { + + var clientH = Ext.Element.getViewHeight(), + + clientW = Ext.Element.getViewWidth(), + + st = this.DDMInstance.getScrollTop(), + + sl = this.DDMInstance.getScrollLeft(), + + bot = h + y, + + right = w + x, + + + + toBot = (clientH + st - y - this.deltaY), + + toRight = (clientW + sl - x - this.deltaX), + + + thresh = 40, + + + + scrAmt = (document.all) ? 80 : 30; + + + + if ( bot > clientH && toBot < thresh ) { + window.scrollTo(sl, st + scrAmt); + } + + + + if ( y < st && st > 0 && y - st < thresh ) { + window.scrollTo(sl, st - scrAmt); + } + + + + if ( right > clientW && toRight < thresh ) { + window.scrollTo(sl + scrAmt, st); + } + + + + if ( x < sl && sl > 0 && x - sl < thresh ) { + window.scrollTo(sl - scrAmt, st); + } + } + }, + + + getTargetCoord: function(iPageX, iPageY) { + var x = iPageX - this.deltaX, + y = iPageY - this.deltaY; + + if (this.constrainX) { + if (x < this.minX) { + x = this.minX; + } + if (x > this.maxX) { + x = this.maxX; + } + } + + if (this.constrainY) { + if (y < this.minY) { + y = this.minY; + } + if (y > this.maxY) { + y = this.maxY; + } + } + + x = this.getTick(x, this.xTicks); + y = this.getTick(y, this.yTicks); + + + return {x: x, y: y}; + }, + + + applyConfig: function() { + this.callParent(); + this.scroll = (this.config.scroll !== false); + }, + + + b4MouseDown: function(e) { + + this.autoOffset(e.getPageX(), e.getPageY()); + }, + + + b4Drag: function(e) { + this.setDragElPos(e.getPageX(), e.getPageY()); + }, + + toString: function() { + return ("DD " + this.id); + }, + + getLocalX: function(el) { + return el.getLocalX(); + }, + + setLocalXY: function(el, x, y) { + el.setLocalXY(x, y); + } + + + + + + +}); + + + + +Ext.define('Ext.dd.DDProxy', { + extend: Ext.dd.DD , + + statics: { + + dragElId: "ygddfdiv" + }, + + + constructor: function(id, sGroup, config) { + if (id) { + this.init(id, sGroup, config); + this.initFrame(); + } + }, + + + resizeFrame: true, + + + centerFrame: false, + + + createFrame: function() { + var self = this, + body = document.body, + div, + s; + + if (!body || !body.firstChild) { + setTimeout( function() { self.createFrame(); }, 50 ); + return; + } + + div = this.getDragEl(); + + if (!div) { + div = document.createElement("div"); + div.id = this.dragElId; + s = div.style; + + s.position = "absolute"; + s.visibility = "hidden"; + s.cursor = "move"; + s.border = "2px solid #aaa"; + s.zIndex = 999; + + + + + body.insertBefore(div, body.firstChild); + } + }, + + + initFrame: function() { + this.createFrame(); + }, + + applyConfig: function() { + this.callParent(); + + this.resizeFrame = (this.config.resizeFrame !== false); + this.centerFrame = (this.config.centerFrame); + this.setDragElId(this.config.dragElId || Ext.dd.DDProxy.dragElId); + }, + + + showFrame: function(iPageX, iPageY) { + var el = this.getEl(), + dragEl = this.getDragEl(), + s = dragEl.style; + + this._resizeProxy(); + + if (this.centerFrame) { + this.setDelta( Math.round(parseInt(s.width, 10)/2), + Math.round(parseInt(s.height, 10)/2) ); + } + + this.setDragElPos(iPageX, iPageY); + + Ext.fly(dragEl).show(); + }, + + + _resizeProxy: function() { + if (this.resizeFrame) { + var el = this.getEl(); + Ext.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight); + } + }, + + + b4MouseDown: function(e) { + var x = e.getPageX(), + y = e.getPageY(); + this.autoOffset(x, y); + this.setDragElPos(x, y); + }, + + + b4StartDrag: function(x, y) { + + this.showFrame(x, y); + }, + + + b4EndDrag: function(e) { + Ext.fly(this.getDragEl()).hide(); + }, + + + + + endDrag: function(e) { + + var lel = this.getEl(), + del = this.getDragEl(); + + + del.style.visibility = ""; + + this.beforeMove(); + + + lel.style.visibility = "hidden"; + Ext.dd.DDM.moveToEl(lel, del); + del.style.visibility = "hidden"; + lel.style.visibility = ""; + + this.afterDrag(); + }, + + beforeMove : function(){ + + }, + + afterDrag : function(){ + + }, + + toString: function() { + return ("DDProxy " + this.id); + } + +}); + + +Ext.define('Ext.dd.StatusProxy', { + extend: Ext.Component , + animRepair: false, + + childEls: [ + 'ghost' + ], + + renderTpl: [ + '
' + + '
' + ], + + repairCls: Ext.baseCSSPrefix + 'dd-drag-repair', + + + constructor: function(config) { + var me = this; + + config = config || {}; + + Ext.apply(me, { + hideMode: 'visibility', + hidden: true, + floating: true, + id: me.id || Ext.id(), + cls: Ext.baseCSSPrefix + 'dd-drag-proxy ' + this.dropNotAllowed, + shadow: config.shadow || false, + renderTo: Ext.getDetachedBody() + }); + me.callParent(arguments); + this.dropStatus = this.dropNotAllowed; + }, + + + dropAllowed : Ext.baseCSSPrefix + 'dd-drop-ok', + + + dropNotAllowed : Ext.baseCSSPrefix + 'dd-drop-nodrop', + + + setStatus : function(cssClass){ + cssClass = cssClass || this.dropNotAllowed; + if (this.dropStatus != cssClass) { + this.el.replaceCls(this.dropStatus, cssClass); + this.dropStatus = cssClass; + } + }, + + + reset : function(clearGhost){ + var me = this, + clsPrefix = Ext.baseCSSPrefix + 'dd-drag-proxy '; + + me.el.replaceCls(clsPrefix + me.dropAllowed, clsPrefix + me.dropNotAllowed); + me.dropStatus = me.dropNotAllowed; + if (clearGhost) { + me.ghost.update(''); + } + }, + + + update : function(html){ + if (typeof html == "string") { + this.ghost.update(html); + } else { + this.ghost.update(""); + html.style.margin = "0"; + this.ghost.dom.appendChild(html); + } + var el = this.ghost.dom.firstChild; + if (el) { + Ext.fly(el).setStyle('float', 'none'); + } + }, + + + getGhost : function(){ + return this.ghost; + }, + + + hide : function(clear) { + this.callParent(); + if (clear) { + this.reset(true); + } + }, + + + stop : function(){ + if (this.anim && this.anim.isAnimated && this.anim.isAnimated()) { + this.anim.stop(); + } + }, + + + sync : function(){ + this.el.sync(); + }, + + + repair : function(xy, callback, scope) { + var me = this; + + me.callback = callback; + me.scope = scope; + if (xy && me.animRepair !== false) { + me.el.addCls(me.repairCls); + me.el.hideUnders(true); + me.anim = me.el.animate({ + duration: me.repairDuration || 500, + easing: 'ease-out', + to: { + x: xy[0], + y: xy[1] + }, + stopAnimation: true, + callback: me.afterRepair, + scope: me + }); + } else { + me.afterRepair(); + } + }, + + + afterRepair : function() { + var me = this; + + me.hide(true); + me.el.removeCls(me.repairCls); + if (typeof me.callback == "function") { + me.callback.call(me.scope || me); + } + delete me.callback; + delete me.scope; + } +}); + + +Ext.define('Ext.dd.DragSource', { + extend: Ext.dd.DDProxy , + + + + + + + + + + + dropAllowed : Ext.baseCSSPrefix + 'dd-drop-ok', + + dropNotAllowed : Ext.baseCSSPrefix + 'dd-drop-nodrop', + + + animRepair: true, + + + repairHighlightColor: 'c3daf9', + + + constructor: function(el, config) { + this.el = Ext.get(el); + if(!this.dragData){ + this.dragData = {}; + } + + Ext.apply(this, config); + + if(!this.proxy){ + this.proxy = new Ext.dd.StatusProxy({ + id: this.el.id + '-drag-status-proxy', + animRepair: this.animRepair + }); + } + this.callParent([this.el.dom, this.ddGroup || this.group, + {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true}]); + + this.dragging = false; + }, + + + getDragData : function(e){ + return this.dragData; + }, + + + onDragEnter : function(e, id){ + var target = Ext.dd.DragDropManager.getDDById(id), + status; + this.cachedTarget = target; + if (this.beforeDragEnter(target, e, id) !== false) { + if (target.isNotifyTarget) { + status = target.notifyEnter(this, e, this.dragData); + this.proxy.setStatus(status); + } else { + this.proxy.setStatus(this.dropAllowed); + } + + if (this.afterDragEnter) { + + this.afterDragEnter(target, e, id); + } + } + }, + + + beforeDragEnter: function(target, e, id) { + return true; + }, + + + onDragOver: function(e, id) { + var target = this.cachedTarget || Ext.dd.DragDropManager.getDDById(id), + status; + if (this.beforeDragOver(target, e, id) !== false) { + if(target.isNotifyTarget){ + status = target.notifyOver(this, e, this.dragData); + this.proxy.setStatus(status); + } + + if (this.afterDragOver) { + + this.afterDragOver(target, e, id); + } + } + }, + + + beforeDragOver: function(target, e, id) { + return true; + }, + + + onDragOut: function(e, id) { + var target = this.cachedTarget || Ext.dd.DragDropManager.getDDById(id); + if (this.beforeDragOut(target, e, id) !== false) { + if (target.isNotifyTarget) { + target.notifyOut(this, e, this.dragData); + } + this.proxy.reset(); + if (this.afterDragOut) { + + this.afterDragOut(target, e, id); + } + } + this.cachedTarget = null; + }, + + + beforeDragOut: function(target, e, id){ + return true; + }, + + + onDragDrop: function(e, id){ + var target = this.cachedTarget || Ext.dd.DragDropManager.getDDById(id); + if (this.beforeDragDrop(target, e, id) !== false) { + if (target.isNotifyTarget) { + if (target.notifyDrop(this, e, this.dragData) !== false) { + this.onValidDrop(target, e, id); + } else { + this.onInvalidDrop(target, e, id); + } + } else { + this.onValidDrop(target, e, id); + } + + if (this.afterDragDrop) { + + this.afterDragDrop(target, e, id); + } + } + delete this.cachedTarget; + }, + + + beforeDragDrop: function(target, e, id){ + return true; + }, + + + onValidDrop: function(target, e, id){ + this.hideProxy(); + if(this.afterValidDrop){ + + this.afterValidDrop(target, e, id); + } + }, + + + getRepairXY: function(e, data){ + return this.el.getXY(); + }, + + + onInvalidDrop: function(target, e, id) { + + + + var me = this; + + if (!e) { + e = target; + target = null; + id = e.getTarget().id; + } + if (me.beforeInvalidDrop(target, e, id) !== false) { + if (me.cachedTarget) { + if(me.cachedTarget.isNotifyTarget){ + me.cachedTarget.notifyOut(me, e, me.dragData); + } + me.cacheTarget = null; + } + me.proxy.repair(me.getRepairXY(e, me.dragData), me.afterRepair, me); + + if (me.afterInvalidDrop) { + + me.afterInvalidDrop(e, id); + } + } + }, + + + afterRepair: function() { + var me = this; + if (Ext.enableFx) { + me.el.highlight(me.repairHighlightColor); + } + me.dragging = false; + }, + + + beforeInvalidDrop: function(target, e, id) { + return true; + }, + + + handleMouseDown: function(e) { + if (this.dragging) { + return; + } + var data = this.getDragData(e); + if (data && this.onBeforeDrag(data, e) !== false) { + this.dragData = data; + this.proxy.stop(); + this.callParent(arguments); + } + }, + + + onBeforeDrag: function(data, e){ + return true; + }, + + + onStartDrag: Ext.emptyFn, + + alignElWithMouse: function() { + this.proxy.ensureAttachedToBody(true); + return this.callParent(arguments); + }, + + + startDrag: function(x, y) { + this.proxy.reset(); + this.proxy.hidden = false; + this.dragging = true; + this.proxy.update(""); + this.onInitDrag(x, y); + this.proxy.show(); + }, + + + onInitDrag: function(x, y) { + var clone = this.el.dom.cloneNode(true); + clone.id = Ext.id(); + this.proxy.update(clone); + this.onStartDrag(x, y); + return true; + }, + + + getProxy: function() { + return this.proxy; + }, + + + hideProxy: function() { + this.proxy.hide(); + this.proxy.reset(true); + this.dragging = false; + }, + + + triggerCacheRefresh: function() { + Ext.dd.DDM.refreshCache(this.groups); + }, + + + b4EndDrag: function(e) { + }, + + + endDrag : function(e){ + this.onEndDrag(this.dragData, e); + }, + + + onEndDrag : function(data, e){ + }, + + + autoOffset : function(x, y) { + this.setDelta(-12, -20); + }, + + destroy: function(){ + this.callParent(); + Ext.destroy(this.proxy); + } +}); + + +Ext.define('Ext.panel.Proxy', { + + alternateClassName: 'Ext.dd.PanelProxy', + + + moveOnDrag: true, + + + constructor: function(panel, config){ + var me = this; + + + me.panel = panel; + me.id = me.panel.id +'-ddproxy'; + Ext.apply(me, config); + }, + + + insertProxy: true, + + + setStatus: Ext.emptyFn, + reset: Ext.emptyFn, + update: Ext.emptyFn, + stop: Ext.emptyFn, + sync: Ext.emptyFn, + + + getEl: function(){ + return this.ghost.el; + }, + + + getGhost: function(){ + return this.ghost; + }, + + + getProxy: function(){ + return this.proxy; + }, + + + hide : function(){ + var me = this; + + if (me.ghost) { + if (me.proxy) { + me.proxy.remove(); + delete me.proxy; + } + + + me.panel.unghost(null, me.moveOnDrag); + delete me.ghost; + } + }, + + + show: function(){ + var me = this, + panelSize; + + if (!me.ghost) { + panelSize = me.panel.getSize(); + me.panel.el.setVisibilityMode(Ext.Element.DISPLAY); + me.ghost = me.panel.ghost(); + if (me.insertProxy) { + + + me.proxy = me.panel.el.insertSibling({cls: Ext.baseCSSPrefix + 'panel-dd-spacer'}); + me.proxy.setSize(panelSize); + } + } + }, + + + repair: function(xy, callback, scope) { + this.hide(); + Ext.callback(callback, scope || this); + }, + + + moveProxy : function(parentNode, before){ + if (this.proxy) { + parentNode.insertBefore(this.proxy.dom, before); + } + } +}); + + +Ext.define('Ext.panel.DD', { + extend: Ext.dd.DragSource , + + + constructor : function(panel, cfg){ + var me = this; + + me.panel = panel; + me.dragData = {panel: panel}; + me.panelProxy = new Ext.panel.Proxy(panel, cfg); + me.proxy = me.panelProxy.proxy; + + me.callParent([panel.el, cfg]); + me.setupEl(panel); + }, + + setupEl: function(panel){ + var me = this, + header = panel.header, + el = panel.body; + + if (header) { + me.setHandleElId(header.id); + el = header.el; + } + if (el) { + el.setStyle('cursor', 'move'); + me.scroll = false; + } else { + + panel.on('boxready', me.setupEl, me, {single: true}); + } + }, + + showFrame: Ext.emptyFn, + startDrag: Ext.emptyFn, + + b4StartDrag: function(x, y) { + this.panelProxy.show(); + }, + + b4MouseDown: function(e) { + var x = e.getPageX(), + y = e.getPageY(); + + this.autoOffset(x, y); + }, + + onInitDrag : function(x, y){ + this.onStartDrag(x, y); + return true; + }, + + createFrame : Ext.emptyFn, + + getDragEl : function(e){ + var ghost = this.panelProxy.ghost; + if (ghost) { + return ghost.el.dom; + } + }, + + endDrag : function(e){ + this.panelProxy.hide(); + this.panel.saveState(); + }, + + autoOffset : function(x, y) { + x -= this.startPageX; + y -= this.startPageY; + this.setDelta(x, y); + }, + + + + onInvalidDrop: function(target, e, id) { + var me = this; + + if (me.beforeInvalidDrop(target, e, id) !== false) { + if (me.cachedTarget) { + if(me.cachedTarget.isNotifyTarget){ + me.cachedTarget.notifyOut(me, e, me.dragData); + } + me.cacheTarget = null; + } + + if (me.afterInvalidDrop) { + + me.afterInvalidDrop(e, id); + } + } + } +}); + + +Ext.define('Ext.util.Memento', (function () { + + function captureOne (src, target, prop, prefix) { + src[prefix ? prefix + prop : prop] = target[prop]; + } + + function removeOne (src, target, prop) { + delete src[prop]; + } + + function restoreOne (src, target, prop, prefix) { + var name = prefix ? prefix + prop : prop, + value = src[name]; + + if (value || src.hasOwnProperty(name)) { + restoreValue(target, prop, value); + } + } + + function restoreValue (target, prop, value) { + if (Ext.isDefined(value)) { + target[prop] = value; + } else { + delete target[prop]; + } + } + + function doMany (doOne, src, target, props, prefix) { + if (src) { + if (Ext.isArray(props)) { + var p, pLen = props.length; + for (p = 0; p < pLen; p++) { + doOne(src, target, props[p], prefix); + } + } else { + doOne(src, target, props, prefix); + } + } + } + + return { + + data: null, + + + target: null, + + + constructor: function (target, props) { + if (target) { + this.target = target; + if (props) { + this.capture(props); + } + } + }, + + + capture: function (props, target, prefix) { + var me = this; + doMany(captureOne, me.data || (me.data = {}), target || me.target, props, prefix); + }, + + + remove: function (props) { + doMany(removeOne, this.data, null, props); + }, + + + restore: function (props, clear, target, prefix) { + doMany(restoreOne, this.data, target || this.target, props, prefix); + if (clear !== false) { + this.remove(props); + } + }, + + + restoreAll: function (clear, target) { + var me = this, + t = target || this.target, + data = me.data, + prop; + + for (prop in data) { + if (data.hasOwnProperty(prop)) { + restoreValue(t, prop, data[prop]); + } + } + + if (clear !== false) { + delete me.data; + } + } + }; +}())); + + +Ext.define('Ext.panel.Panel', { + extend: Ext.panel.AbstractPanel , + + + + + + + + + + alias: 'widget.panel', + alternateClassName: 'Ext.Panel', + + + collapsedCls: 'collapsed', + + + animCollapse: Ext.enableFx, + + + minButtonWidth: 75, + + + collapsed: false, + + + collapseFirst: true, + + + hideCollapseTool: false, + + + titleCollapse: undefined, + + + + + + + floatable: true, + + + + + collapsible: undefined, + + + + + closable: false, + + + closeAction: 'destroy', + + + + + placeholderCollapseHideMode: Ext.Element.VISIBILITY, + + + preventHeader: false, + + + header: undefined, + + + headerPosition: 'top', + + + frame: false, + + + frameHeader: true, + + + + + + + + + manageHeight: true, + + + + + + + + + + + constrain: false, + + + constrainHeader: false, + + + + initComponent: function() { + var me = this; + + me.addEvents( + + + 'beforeclose', + + + 'close', + + + "beforeexpand", + + + "beforecollapse", + + + "expand", + + + "collapse", + + + 'titlechange', + + + 'iconchange', + + + 'iconclschange', + + + 'glyphchange', + + + 'float', + + + 'unfloat' + ); + + if (me.collapsible) { + + this.addStateEvents(['expand', 'collapse']); + } + if (me.unstyled) { + me.setUI('plain'); + } + + if (me.frame) { + me.setUI(me.ui + '-framed'); + } + + + me.bridgeToolbars(); + + me.callParent(); + me.collapseDirection = me.collapseDirection || me.headerPosition || Ext.Component.DIRECTION_TOP; + + + me.hiddenOnCollapse = new Ext.dom.CompositeElement(); + + }, + + beforeDestroy: function() { + var me = this; + Ext.destroy( + me.placeholder, + me.ghostPanel, + me.dd + ); + me.callParent(); + }, + + initAria: function() { + this.callParent(); + this.initHeaderAria(); + }, + + getFocusEl: function() { + return this.el; + }, + + initHeaderAria: function() { + var me = this, + el = me.el, + header = me.header; + if (el && header) { + el.dom.setAttribute('aria-labelledby', header.titleCmp.id); + } + }, + + + getHeader: function() { + return this.header; + }, + + + setTitle: function(newTitle) { + var me = this, + oldTitle = me.title, + header = me.header, + reExpander = me.reExpander, + placeholder = me.placeholder; + + me.title = newTitle; + + if (header) { + if (header.isHeader) { + header.setTitle(newTitle); + } else { + header.title = newTitle; + } + } else if (me.rendered) { + me.updateHeader(); + } + + if (reExpander) { + reExpander.setTitle(newTitle); + } + + if (placeholder && placeholder.setTitle) { + placeholder.setTitle(newTitle); + } + + me.fireEvent('titlechange', me, newTitle, oldTitle); + }, + + + setIconCls: function(newIconCls) { + var me = this, + oldIconCls = me.iconCls, + header = me.header, + placeholder = me.placeholder; + + me.iconCls = newIconCls; + + if (header) { + if (header.isHeader) { + header.setIconCls(newIconCls); + } else { + header.iconCls = newIconCls; + } + } else { + me.updateHeader(); + } + + if (placeholder && placeholder.setIconCls) { + placeholder.setIconCls(newIconCls); + } + + me.fireEvent('iconclschange', me, newIconCls, oldIconCls); + }, + + + setIcon: function(newIcon) { + var me = this, + oldIcon = me.icon, + header = me.header, + placeholder = me.placeholder; + + me.icon = newIcon; + + if (header) { + if (header.isHeader) { + header.setIcon(newIcon); + } else { + header.icon = newIcon; + } + } else { + me.updateHeader(); + } + + if (placeholder && placeholder.setIcon) { + placeholder.setIcon(newIcon); + } + + me.fireEvent('iconchange', me, newIcon, oldIcon); + }, + + + setGlyph: function(newGlyph) { + var me = this, + oldGlyph = me.glyph, + header = me.header, + placeholder = me.placeholder; + + me.glyph = newGlyph; + + if (header) { + if (header.isHeader) { + header.setGlyph(newGlyph); + } else { + header.glyph = newGlyph; + } + } else { + me.updateHeader(); + } + + if (placeholder && placeholder.setGlyph) { + placeholder.setIcon(newGlyph); + } + + me.fireEvent('glyphchange', me, newGlyph, oldGlyph); + }, + + bridgeToolbars: function() { + var me = this, + docked = [], + fbar, + fbarDefaults, + minButtonWidth = me.minButtonWidth; + + function initToolbar (toolbar, pos, useButtonAlign) { + if (Ext.isArray(toolbar)) { + toolbar = { + xtype: 'toolbar', + items: toolbar + }; + } + else if (!toolbar.xtype) { + toolbar.xtype = 'toolbar'; + } + toolbar.dock = pos; + if (pos == 'left' || pos == 'right') { + toolbar.vertical = true; + } + + + if (useButtonAlign) { + toolbar.layout = Ext.applyIf(toolbar.layout || {}, { + + pack: { left:'start', center:'center' }[me.buttonAlign] || 'end' + }); + } + return toolbar; + } + + + + + + + if (me.tbar) { + docked.push(initToolbar(me.tbar, 'top')); + me.tbar = null; + } + + + if (me.bbar) { + docked.push(initToolbar(me.bbar, 'bottom')); + me.bbar = null; + } + + + if (me.buttons) { + me.fbar = me.buttons; + me.buttons = null; + } + + + if (me.fbar) { + fbar = initToolbar(me.fbar, 'bottom', true); + fbar.ui = 'footer'; + + + if (minButtonWidth) { + fbarDefaults = fbar.defaults; + fbar.defaults = function(config) { + var defaults = fbarDefaults || {}; + if ((!config.xtype || config.xtype === 'button' || (config.isComponent && config.isXType('button'))) && + !('minWidth' in defaults)) { + defaults = Ext.apply({minWidth: minButtonWidth}, defaults); + } + return defaults; + }; + } + + docked.push(fbar); + me.fbar = null; + } + + + if (me.lbar) { + docked.push(initToolbar(me.lbar, 'left')); + me.lbar = null; + } + + + if (me.rbar) { + docked.push(initToolbar(me.rbar, 'right')); + me.rbar = null; + } + + if (me.dockedItems) { + if (!Ext.isArray(me.dockedItems)) { + me.dockedItems = [me.dockedItems]; + } + me.dockedItems = me.dockedItems.concat(docked); + } else { + me.dockedItems = docked; + } + }, + + isPlaceHolderCollapse: function(){ + return this.collapseMode == 'placeholder'; + }, + + onBoxReady: function(){ + this.callParent(); + if (this.collapsed) { + this.setHiddenDocked(); + } + }, + + beforeRender: function() { + var me = this, + wasCollapsed; + + me.callParent(); + + + + me.initTools(); + + + if (!(me.preventHeader || (me.header === false))) { + me.updateHeader(); + } + + + if (me.collapsed) { + if (me.isPlaceHolderCollapse()) { + if (!me.hidden) { + me.setHiddenState(true); + + + + + + me.preventCollapseFire = true; + me.placeholderCollapse(); + delete me.preventCollapseFire; + wasCollapsed = me.collapsed; + + + + + me.collapsed = false; + } + } else { + me.beginCollapse(); + me.addClsWithUI(me.collapsedCls); + } + } + + + if (wasCollapsed) { + me.collapsed = wasCollapsed; + } + }, + + + initTools: function() { + var me = this, + tools = me.tools, + i, tool; + + me.tools = []; + for (i = tools && tools.length; i; ) { + --i; + me.tools[i] = tool = tools[i]; + tool.toolOwner = me; + } + + + + if (me.collapsible && !(me.hideCollapseTool || me.header === false || me.preventHeader)) { + me.collapseDirection = me.collapseDirection || me.headerPosition || 'top'; + me.collapseTool = me.expandTool = Ext.widget({ + xtype: 'tool', + handler: me.toggleCollapse, + scope: me + }); + + me.updateCollapseTool(); + + if (me.collapseFirst) { + me.tools.unshift(me.collapseTool); + } + } + + + me.addTools(); + + + if (me.closable) { + me.addClsWithUI('closable'); + me.addTool(Ext.widget({ + xtype : 'tool', + type: 'close', + handler: Ext.Function.bind(me.close, me, []) + })); + } + + + if (me.collapseTool && !me.collapseFirst) { + me.addTool(me.collapseTool); + } + }, + + + addTools: Ext.emptyFn, + + updateCollapseTool: function () { + var me = this, + collapseTool = me.collapseTool; + + if (collapseTool) { + if (me.collapsed && !me.isPlaceHolderCollapse()) { + collapseTool.setType('expand-' + me.getOppositeDirection(me.collapseDirection)); + } else { + collapseTool.setType('collapse-' + me.collapseDirection); + } + } + }, + + + close: function() { + if (this.fireEvent('beforeclose', this) !== false) { + this.doClose(); + } + }, + + + doClose: function() { + this.fireEvent('close', this); + this[this.closeAction](); + }, + + + updateHeader: function(force) { + var me = this, + header = me.header, + title = me.title, + tools = me.tools, + icon = me.icon || me.iconCls, + vertical = me.headerPosition === 'left' || me.headerPosition === 'right'; + + if (Ext.isObject(header) || (header !== false && (force || (title || icon) || (tools && tools.length) || (me.collapsible && !me.titleCollapse)))) { + if (header && header.isHeader) { + header.show(); + } else { + + header = me.header = Ext.widget(Ext.apply({ + xtype : 'header', + title : title, + titleAlign : me.titleAlign, + orientation : vertical ? 'vertical' : 'horizontal', + dock : me.headerPosition || 'top', + textCls : me.headerTextCls, + iconCls : me.iconCls, + icon : me.icon, + glyph : me.glyph, + baseCls : me.baseCls + '-header', + tools : tools, + ui : me.ui, + id : me.id + '_header', + overCls: me.headerOverCls, + indicateDrag: me.draggable, + frame : (me.frame || me.alwaysFramed) && me.frameHeader, + ignoreParentFrame : me.frame || me.overlapHeader, + ignoreBorderManagement: me.frame || me.ignoreHeaderBorderManagement, + ownerCt : me, + listeners : me.collapsible && me.titleCollapse ? { + click: me.toggleCollapse, + scope: me + } : null + }, me.header)); + + + + me.addDocked(header, 0); + } + me.initHeaderAria(); + } else if (header) { + header.hide(); + } + }, + + + setUI: function(ui) { + var me = this; + + me.callParent(arguments); + + if (me.header && me.header.rendered) { + me.header.setUI(ui); + } + }, + + + getDefaultContentTarget: function() { + return this.body; + }, + + getTargetEl: function() { + var me = this; + return me.body || me.protoBody || me.frameBody || me.el; + }, + + + + + isVisible: function(deep){ + var me = this; + if (me.collapsed && me.placeholder) { + return me.placeholder.isVisible(deep); + } + return me.callParent(arguments); + }, + + + onHide: function() { + var me = this; + if (me.collapsed && me.placeholder) { + me.placeholder.hide(); + } else { + me.callParent(arguments); + } + }, + + + onShow: function() { + var me = this; + if (me.collapsed && me.isPlaceHolderCollapse()) { + + me.setHiddenState(true); + me.placeholderCollapse(); + } else { + me.callParent(arguments); + } + }, + + onRemoved: function(destroying) { + var me = this; + + + + + if (me.placeholder && !destroying) { + me.ownerCt.remove(me.placeholder, false); + } + + me.callParent(arguments); + }, + + + addTool: function(tools) { + if (!Ext.isArray(tools)) { + tools = [tools]; + } + + var me = this, + header = me.header, + t, + tLen = tools.length, + tool; + + for (t = 0; t < tLen; t++) { + tool = tools[t]; + tool.toolOwner = me; + + if (header && header.isHeader) { + header.addTool(tool); + } else { + + + me.tools.push(tool); + } + } + + me.updateHeader(); + }, + + getOppositeDirection: function(d) { + var c = Ext.Component; + switch (d) { + case c.DIRECTION_TOP: + return c.DIRECTION_BOTTOM; + case c.DIRECTION_RIGHT: + return c.DIRECTION_LEFT; + case c.DIRECTION_BOTTOM: + return c.DIRECTION_TOP; + case c.DIRECTION_LEFT: + return c.DIRECTION_RIGHT; + } + }, + + getWidthAuthority: function() { + if (this.collapsed && this.collapsedHorizontal()) { + return 1; + } + + return this.callParent(); + }, + + getHeightAuthority: function() { + if (this.collapsed && this.collapsedVertical()) { + return 1; + } + + return this.callParent(); + }, + + collapsedHorizontal: function () { + var dir = this.getCollapsed(); + return dir === 'left' || dir === 'right'; + }, + + collapsedVertical: function () { + var dir = this.getCollapsed(); + return dir === 'top' || dir === 'bottom'; + }, + + restoreDimension: function(){ + var dir = this.collapseDirection; + + + return (dir === 'top' || dir === 'bottom') ? 'height' : 'width'; + }, + + + getCollapsed: function() { + var me = this; + + + if (me.collapsed === true) { + return me.collapseDirection; + } + return me.collapsed; + }, + + getState: function() { + var me = this, + state = me.callParent(), + memento; + + state = me.addPropertyToState(state, 'collapsed'); + + + if (me.collapsed) { + memento = me.collapseMemento; + memento = memento && memento.data; + + if (me.collapsedVertical()) { + if (state) { + delete state.height; + } + if (memento) { + state = me.addPropertyToState(state, 'height', memento.height); + } + } else { + if (state) { + delete state.width; + } + if (memento) { + state = me.addPropertyToState(state, 'width', memento.width); + } + } + } + + return state; + }, + + findReExpander: function (direction) { + var me = this, + c = Ext.Component, + dockedItems = me.dockedItems.items, + dockedItemCount = dockedItems.length, + comp, i; + + + if (me.collapseMode === 'mini') { + return; + } + + switch (direction) { + case c.DIRECTION_TOP: + case c.DIRECTION_BOTTOM: + + + + for (i = 0; i < dockedItemCount; i++) { + comp = dockedItems[i]; + if (!comp.hidden) { + if (comp.isHeader && (!comp.dock || comp.dock === 'top' || comp.dock === 'bottom')) { + return comp; + } + } + } + break; + + case c.DIRECTION_LEFT: + case c.DIRECTION_RIGHT: + + + + for (i = 0; i < dockedItemCount; i++) { + comp = dockedItems[i]; + if (!comp.hidden) { + if (comp.isHeader && (comp.dock === 'left' || comp.dock === 'right')) { + return comp; + } + } + } + break; + + default: + throw('Panel#findReExpander must be passed a valid collapseDirection'); + } + }, + + getReExpander: function (direction) { + var me = this, + collapseDir = direction || me.collapseDirection, + reExpander = me.reExpander || me.findReExpander(collapseDir); + + me.expandDirection = me.getOppositeDirection(collapseDir); + + if (!reExpander) { + + me.reExpander = reExpander = me.createReExpander(collapseDir, { + dock: collapseDir, + cls: Ext.baseCSSPrefix + 'docked ' + me.baseCls + '-' + me.ui + '-collapsed', + isCollapsedExpander: true + }); + + me.dockedItems.insert(0, reExpander); + } + return reExpander; + }, + + createReExpander: function(direction, defaults) { + var me = this, + isLeft = direction === 'left', + isRight = direction === 'right', + isVertical = isLeft || isRight, + result = Ext.apply({ + hideMode: 'offsets', + title: me.title || ' ', + titleAlign: me.titleAlign, + orientation: isVertical ? 'vertical' : 'horizontal', + textCls: me.headerTextCls, + icon: me.icon, + iconCls: me.iconCls, + glyph: me.glyph, + baseCls: me.self.prototype.baseCls + '-header', + ui: me.ui, + frame: me.frame && me.frameHeader, + ignoreParentFrame: me.frame || me.overlapHeader, + indicateDrag: me.draggable, + collapseImmune: true, + ownerCt: me.ownerCt, + ownerLayout: me.componentLayout, + margin: me.margin + }, defaults); + + + + if (me.collapseMode === 'mini') { + if (isVertical) { + result.width = 1; + } else { + result.height = 1; + } + } + + + + + if (!me.hideCollapseTool) { + if (isLeft || (isRight && me.isPlaceHolderCollapse())) { + + + result.titlePosition = 1; + } + result.tools = [{ + xtype: 'tool', + type: 'expand-' + me.getOppositeDirection(direction), + uiCls: ['top'], + handler: me.toggleCollapse, + scope: me + }]; + } + result = new Ext.panel.Header(result); + result.addClsWithUI(me.getHeaderCollapsedClasses(result)); + return result; + }, + + + + getHeaderCollapsedClasses: function(header) { + var me = this, + collapsedCls = me.collapsedCls, + collapsedClasses; + + collapsedClasses = [ collapsedCls, collapsedCls + '-' + header.getDockName()]; + if (me.border && (!me.frame || (me.frame && Ext.supports.CSS3BorderRadius))) { + collapsedClasses.push(collapsedCls + '-border-' + header.getDockName()); + } + return collapsedClasses; + }, + + + beginCollapse: function() { + var me = this, + lastBox = me.lastBox, + rendered = me.rendered, + collapseMemento = me.collapseMemento || (me.collapseMemento = new Ext.util.Memento(me)), + sizeModel = me.getSizeModel(), + header = me.header, + reExpander; + + + + + + + + + + + + + collapseMemento.capture(['height', 'minHeight', 'width', 'minWidth']); + if (lastBox) { + collapseMemento.capture(me.restoreDimension(), lastBox, 'last.'); + } + + + + + + if (me.collapsedVertical()) { + if (sizeModel.width.shrinkWrap) { + me.width = rendered ? me.getWidth() : me.width || me.minWidth || 100; + } + delete me.height; + me.minHeight = 0; + } else if (me.collapsedHorizontal()) { + if (sizeModel.height.shrinkWrap) { + me.height = rendered ? me.getHeight() : me.height || me.minHeight || 100; + } + delete me.width; + me.minWidth = 0; + } + + if (me.ownerCt) { + me.ownerCt.getLayout().beginCollapse(me); + } + + + + if (!me.isPlaceHolderCollapse() && header !== false) { + if (header === (reExpander = me.getReExpander())) { + header.collapseImmune = true; + header.getHierarchyState().collapseImmune = true; + header.addClsWithUI(me.getHeaderCollapsedClasses(header)); + + + if (header.rendered) { + header.updateFrame(); + } + } else if (reExpander.el) { + + reExpander.el.show(); + reExpander.hidden = false; + } + } + if (me.resizer) { + me.resizer.disable(); + } + }, + + beginExpand: function() { + var me = this, + lastBox = me.lastBox, + collapseMemento = me.collapseMemento, + restoreDimension = this.restoreDimension(), + header = me.header, + reExpander; + + if (collapseMemento) { + collapseMemento.restore(['minHeight', 'minWidth', restoreDimension]); + if (lastBox) { + collapseMemento.restore(restoreDimension, true, lastBox, 'last.'); + } + } + + if (me.ownerCt) { + me.ownerCt.getLayout().beginExpand(me); + } + + if (!me.isPlaceHolderCollapse() && header !== false) { + + if (header === (reExpander = me.getReExpander())) { + delete header.collapseImmune; + delete header.getHierarchyState().collapseImmune; + header.removeClsWithUI(me.getHeaderCollapsedClasses(header)); + + + if (header.rendered) { + header.expanding = true; + header.updateFrame(); + delete header.expanding; + } + } else { + + reExpander.hidden = true; + reExpander.el.hide(); + } + } + if (me.resizer) { + me.resizer.enable(); + } + }, + + + collapse: function(direction, animate) { + var me = this, + collapseDir = direction || me.collapseDirection, + ownerCt = me.ownerCt; + + if (me.isCollapsingOrExpanding) { + return me; + } + + if (arguments.length < 2) { + animate = me.animCollapse; + } + + if (me.collapsed || me.fireEvent('beforecollapse', me, direction, animate) === false) { + return me; + } + + if (ownerCt && me.isPlaceHolderCollapse()) { + return me.placeholderCollapse(direction, animate); + } + + me.collapsed = collapseDir; + me.beginCollapse(); + + me.getHierarchyState().collapsed = true; + me.fireHierarchyEvent('collapse'); + + return me.doCollapseExpand(1, animate); + }, + + doCollapseExpand: function (flags, animate) { + var me = this, + originalAnimCollapse = me.animCollapse, + ownerLayout = me.ownerLayout; + + + + me.animCollapse = animate; + + + + me.isCollapsingOrExpanding = flags; + + + + if (animate) { + me.addCls(Ext.baseCSSPrefix + 'animating-size'); + } + + if (ownerLayout && !animate) { + ownerLayout.onContentChange(me); + } else { + me.updateLayout({ isRoot: true }); + } + + + me.animCollapse = originalAnimCollapse; + + return me; + }, + + + afterCollapse: function(animated) { + var me = this, + ownerLayout = me.ownerLayout; + + me.isCollapsingOrExpanding = 0; + me.updateCollapseTool(); + + + + if (animated) { + me.removeCls(Ext.baseCSSPrefix + 'animating-size'); + } + + if (ownerLayout && animated) { + ownerLayout.onContentChange(me); + } + + me.setHiddenDocked(); + me.fireEvent('collapse', me); + }, + + setHiddenDocked: function(){ + + + var me = this, + toHide = me.hiddenOnCollapse, + items = me.getDockedItems(), + len = items.length, + i = 0, + item, reExpander; + + if (me.header !== false) { + reExpander = me.getReExpander(); + } + + toHide.add(me.body); + for (; i < len; i++) { + item = items[i]; + if (item && item !== reExpander && item.el) { + toHide.add(item.el); + } + } + toHide.setStyle('visibility', 'hidden'); + }, + + restoreHiddenDocked: function(){ + var toShow = this.hiddenOnCollapse; + + toShow.setStyle('visibility', ''); + toShow.clear(); + }, + + getPlaceholder: function(direction) { + var me = this, + collapseDir = direction || me.collapseDirection, + listeners = null, + placeholder = me.placeholder, + floatable = me.floatable, + titleCollapse = me.titleCollapse; + + if (!placeholder) { + if (floatable || (me.collapsible && titleCollapse)) { + listeners = { + click: { + + fn: (!titleCollapse && floatable) ? me.floatCollapsedPanel : me.toggleCollapse, + element: 'el', + scope: me + } + }; + } + + me.placeholder = placeholder = Ext.widget(me.createReExpander(collapseDir, { + id: me.id + '-placeholder', + listeners: listeners + })); + } + + + if (!placeholder.placeholderFor) { + + if (!placeholder.isComponent) { + me.placeholder = placeholder = me.lookupComponent(placeholder); + } + Ext.applyIf(placeholder, { + margins: me.margins, + placeholderFor: me + }); + + placeholder.addCls([Ext.baseCSSPrefix + 'region-collapsed-placeholder', Ext.baseCSSPrefix + 'region-collapsed-' + collapseDir + '-placeholder', me.collapsedCls]); + } + + return placeholder; + }, + + placeholderCollapse: function(direction, animate) { + var me = this, + ownerCt = me.ownerCt, + collapseDir = direction || me.collapseDirection, + floatCls = Ext.baseCSSPrefix + 'border-region-slide-in', + placeholder = me.getPlaceholder(collapseDir), + slideInDirection; + + me.isCollapsingOrExpanding = 1; + + + me.setHiddenState(true); + me.collapsed = collapseDir; + + if (placeholder.rendered) { + + if (placeholder.el.dom.parentNode !== me.el.dom.parentNode) { + me.el.dom.parentNode.insertBefore(placeholder.el.dom, me.el.dom); + } + + placeholder.hidden = false; + placeholder.el.show(); + ownerCt.updateLayout(); + } else { + ownerCt.insert(ownerCt.items.indexOf(me), placeholder); + } + + if (me.rendered) { + + me.el.setVisibilityMode(me.placeholderCollapseHideMode); + if (animate) { + me.el.addCls(floatCls); + placeholder.el.hide(); + slideInDirection = me.convertCollapseDir(collapseDir); + + me.el.slideOut(slideInDirection, { + preserveScroll: true, + duration: Ext.Number.from(animate, Ext.fx.Anim.prototype.duration), + listeners: { + afteranimate: function() { + me.el.removeCls(floatCls); + + placeholder.el.show().setStyle('display', 'none').slideIn(slideInDirection, { + easing: 'linear', + duration: 100, + listeners: { + afteranimate: function() { + placeholder.focus(); + me.isCollapsingOrExpanding = 0; + me.fireEvent('collapse', me); + } + } + }); + } + } + }); + } else { + me.el.hide(); + me.isCollapsingOrExpanding = 0; + me.fireEvent('collapse', me); + } + } else { + me.isCollapsingOrExpanding = 0; + if (!me.preventCollapseFire) { + me.fireEvent('collapse', me); + } + } + + return me; + }, + + floatCollapsedPanel: function() { + var me = this, + placeholder = me.placeholder, + ps = placeholder.getSize(), + myBox, + floatCls = Ext.baseCSSPrefix + 'border-region-slide-in', + collapsed = me.collapsed, + layoutOwner = me.ownerCt || me, + slideDirection; + + if (me.isSliding) { + return; + } + + + if (me.el.hasCls(floatCls)) { + me.slideOutFloatedPanel(); + return; + } + me.isSliding = true; + + + placeholder.el.hide(); + placeholder.hidden = true; + me.el.show(); + me.setHiddenState(false); + me.collapsed = false; + layoutOwner.updateLayout(); + myBox = me.getBox(false, true); + + + placeholder.el.show(); + placeholder.hidden = false; + me.el.hide(); + me.setHiddenState(true); + me.collapsed = collapsed; + layoutOwner.updateLayout(); + + me.slideOutTask = me.slideOutTask || new Ext.util.DelayedTask(me.slideOutFloatedPanel, me); + placeholder.el.on('mouseleave', me.onMouseLeaveFloated, me); + me.el.on('mouseleave', me.onMouseLeaveFloated, me); + placeholder.el.on('mouseenter', me.onMouseEnterFloated, me); + me.el.on('mouseenter', me.onMouseEnterFloated, me); + + me.el.addCls(floatCls); + me.floated = true; + + + if (me.collapseTool) { + me.collapseTool.el.hide(); + } + + switch (me.collapsed) { + case 'top': + me.setLocalXY(myBox.x, myBox.y + ps.height - 1); + break; + case 'right': + me.setLocalXY(myBox.x - ps.width + 1, myBox.y); + break; + case 'bottom': + me.setLocalXY(myBox.x, myBox.y - ps.height + 1); + break; + case 'left': + me.setLocalXY(myBox.x + ps.width - 1, myBox.y); + break; + } + slideDirection = me.convertCollapseDir(me.collapsed); + + + + me.floatedFromCollapse = me.collapsed; + me.collapsed = false; + me.setHiddenState(false); + + me.el.slideIn(slideDirection, { + preserveScroll: true, + duration: Ext.Number.from(me.animCollapse, Ext.fx.Anim.prototype.duration), + listeners: { + afteranimate: function() { + me.isSliding = false; + me.fireEvent('float', me); + } + } + }); + }, + + onMouseLeaveFloated: function(e) { + this.slideOutTask.delay(500); + }, + + onMouseEnterFloated: function(e) { + this.slideOutTask.cancel(); + }, + + isLayoutRoot: function() { + if (this.floatedFromCollapse) { + return true; + } + return this.callParent(); + }, + + slideOutFloatedPanel: function() { + var me = this, + compEl = this.el, + collapseDirection; + + if (me.isSliding || me.isDestroyed) { + return; + } + + me.isSliding = true; + me.floated = false; + + me.slideOutFloatedPanelBegin(); + + if (typeof me.collapsed == 'string') { + collapseDirection = me.convertCollapseDir(me.collapsed); + } + + compEl.slideOut(collapseDirection, { + preserveScroll: true, + duration: Ext.Number.from(me.animCollapse, Ext.fx.Anim.prototype.duration), + listeners: { + afteranimate: function() { + me.slideOutFloatedPanelEnd(); + + + me.el.removeCls(Ext.baseCSSPrefix + 'border-region-slide-in'); + } + } + }); + }, + + + slideOutFloatedPanelBegin: function() { + var me = this, + placeholderEl = me.placeholder.el, + el = me.el; + + me.collapsed = me.floatedFromCollapse; + me.setHiddenState(true); + me.floatedFromCollapse = null; + + + placeholderEl.un('mouseleave', me.onMouseLeaveFloated, me); + el.un('mouseleave', me.onMouseLeaveFloated, me); + placeholderEl.un('mouseenter', me.onMouseEnterFloated, me); + el.un('mouseenter', me.onMouseEnterFloated, me); + }, + + + slideOutFloatedPanelEnd: function() { + var me = this; + + if (me.collapseTool) { + me.collapseTool.el.show(); + } + me.slideOutTask.cancel(); + me.isSliding = false; + me.fireEvent('unfloat', me); + }, + + + expand: function(animate) { + var me = this; + + if (me.isCollapsingOrExpanding) { + return me; + } + + if (!arguments.length) { + animate = me.animCollapse; + } + + if (!me.collapsed && !me.floatedFromCollapse) { + return me; + } + + if (me.fireEvent('beforeexpand', me, animate) === false) { + return me; + } + + delete this.getHierarchyState().collapsed; + + if (me.isPlaceHolderCollapse()) { + return me.placeholderExpand(animate); + } + + me.restoreHiddenDocked(); + me.beginExpand(); + me.collapsed = false; + + return me.doCollapseExpand(2, animate); + }, + + placeholderExpand: function(animate) { + var me = this, + collapseDir = me.collapsed, + floatCls = Ext.baseCSSPrefix + 'border-region-slide-in', + finalPos, + floatedPos, + center = me.ownerLayout ? me.ownerLayout.centerRegion: null; + + + if (Ext.AbstractComponent.layoutSuspendCount) { + animate = false; + } + + if (me.floatedFromCollapse) { + floatedPos = me.getPosition(true); + + me.slideOutFloatedPanelBegin(); + me.slideOutFloatedPanelEnd(); + me.floated = false; + } + + if (animate) { + + + Ext.suspendLayouts(); + me.placeholder.hide(); + me.el.show(); + me.collapsed = false; + me.setHiddenState(false); + + + + if (center && !floatedPos) { + center.hidden = true; + } + + Ext.resumeLayouts(true); + center.hidden = false; + me.el.addCls(floatCls); + + + + + + + + + + + + + me.isCollapsingOrExpanding = 2; + + + if (floatedPos) { + finalPos = me.getXY(); + me.setLocalXY(floatedPos[0], floatedPos[1]); + me.setXY([finalPos[0], finalPos[1]], { + duration: Ext.Number.from(animate, Ext.fx.Anim.prototype.duration), + listeners: { + afteranimate: function() { + me.el.removeCls(floatCls); + me.isCollapsingOrExpanding = 0; + me.fireEvent('expand', me); + } + } + }); + } + + else { + me.el.hide(); + me.placeholder.el.show(); + me.placeholder.hidden = false; + + + me.setHiddenState(false); + me.el.slideIn(me.convertCollapseDir(collapseDir), { + preserveScroll: true, + duration: Ext.Number.from(animate, Ext.fx.Anim.prototype.duration), + listeners: { + afteranimate: function() { + + + + + + me.el.removeCls(floatCls); + me.placeholder.hide(); + + + me.updateLayout(); + + me.isCollapsingOrExpanding = 0; + me.fireEvent('expand', me); + } + } + }); + } + + } else { + me.floated = me.collapsed = false; + me.el.removeCls(floatCls); + Ext.suspendLayouts(); + me.placeholder.hide(); + me.show(); + Ext.resumeLayouts(true); + me.fireEvent('expand', me); + } + + return me; + }, + + + afterExpand: function(animated) { + var me = this, + ownerLayout = me.ownerLayout; + + me.isCollapsingOrExpanding = 0; + me.updateCollapseTool(); + + + + if (animated) { + me.removeCls(Ext.baseCSSPrefix + 'animating-size'); + } + + if (ownerLayout && animated) { + ownerLayout.onContentChange(me); + } + + me.fireEvent('expand', me); + me.fireHierarchyEvent('expand'); + }, + + + setBorder: function(border, targetEl) { + if (targetEl) { + + return; + } + + var me = this, + header = me.header; + + if (!border) { + border = 0; + } else if (border === true) { + border = '1px'; + } else { + border = me.unitizeBox(border); + } + + if (header) { + if (header.isHeader) { + header.setBorder(border); + } else { + header.border = border; + } + } + + if (me.rendered && me.bodyBorder !== false) { + me.body.setStyle('border-width', border); + } + me.updateLayout(); + + me.border = border; + }, + + + toggleCollapse: function() { + return (this.collapsed || this.floatedFromCollapse) ? this.expand() : this.collapse(); + }, + + + getKeyMap : function() { + return this.keyMap || (this.keyMap = new Ext.util.KeyMap(Ext.apply({ + target: this.el + }, this.keys))); + }, + + + initDraggable : function() { + + + if (this.simpleDrag) { + this.initSimpleDraggable(); + } + + else { + + this.dd = new Ext.panel.DD(this, Ext.isBoolean(this.draggable) ? null : this.draggable); + } + }, + + + initSimpleDraggable: function() { + var me = this, + ddConfig, dd; + + if (!me.header) { + me.updateHeader(true); + } + + + if (me.header) { + ddConfig = Ext.applyIf({ + el: me.el, + delegate: '#' + Ext.escapeId(me.header.id) + }, me.draggable); + + + if (me.constrain || me.constrainHeader) { + ddConfig.constrain = me.constrain; + ddConfig.constrainDelegate = me.constrainHeader; + ddConfig.constrainTo = me.constrainTo || me.container; + } + + dd = me.dd = new Ext.util.ComponentDragger(this, ddConfig); + me.relayEvents(dd, ['dragstart', 'drag', 'dragend']); + if (me.maximized) { + dd.disable(); + } + } + }, + + + + ghostTools : function() { + var tools = [], + header = this.header, + headerTools = header ? header.query('tool[hidden=false]') : [], + t, tLen, tool; + + if (headerTools.length) { + t = 0; + tLen = headerTools.length; + + for (; t < tLen; t++) { + tool = headerTools[t]; + + + + + + tools.push({ + type: tool.type + }); + } + } else { + tools = [{ + type: 'placeholder' + }]; + } + return tools; + }, + + + + ghost: function(cls) { + var me = this, + ghostPanel = me.ghostPanel, + box = me.getBox(), + header; + + if (!ghostPanel) { + ghostPanel = new Ext.panel.Panel({ + renderTo: Ext.getBody(), + floating: { + shadow: false + }, + frame: me.frame && !me.alwaysFramed, + alwaysFramed: me.alwaysFramed, + overlapHeader: me.overlapHeader, + headerPosition: me.headerPosition, + baseCls: me.baseCls, + cls: me.baseCls + '-ghost ' + (cls ||'') + }); + me.ghostPanel = ghostPanel; + } else { + ghostPanel.el.show(); + } + me.ghostPanel.hidden = false; + ghostPanel.floatParent = me.floatParent; + if (me.floating) { + ghostPanel.zIndexManager.assignZIndices(); + } else { + ghostPanel.toFront(); + } + if (!(me.preventHeader || (me.header === false))) { + header = ghostPanel.header; + + if (header) { + header.suspendLayouts(); + Ext.Array.forEach(header.query('tool'), header.remove, header); + header.resumeLayouts(); + } + ghostPanel.addTool(me.ghostTools()); + ghostPanel.setTitle(me.title); + + if (me.iconCls) { + ghostPanel.setIconCls(me.iconCls); + } else if (me.icon) { + ghostPanel.setIcon(me.icon); + } else if (me.glyph) { + ghostPanel.setGlyph(me.glyph); + } + + ghostPanel.header.addCls(Ext.baseCSSPrefix + 'header-ghost'); + } + + ghostPanel.setPagePosition(box.x, box.y); + ghostPanel.setSize(box.width, box.height); + me.el.hide(); + return ghostPanel; + }, + + + unghost: function(show, matchPosition) { + var me = this; + if (!me.ghostPanel) { + return; + } + if (show !== false) { + + + me.el.show(); + if (matchPosition !== false) { + me.setPagePosition(me.ghostPanel.getXY()); + if (me.hideMode == 'offsets') { + + delete me.el.hideModeStyles; + } + } + Ext.defer(me.focus, 10, me); + } + me.ghostPanel.el.hide(); + me.ghostPanel.hidden = true; + }, + + beginDrag: function() { + if (this.floatingDescendants) { + this.floatingDescendants.hide(); + } + }, + + endDrag: function() { + if (this.floatingDescendants) { + this.floatingDescendants.show(); + } + }, + + initResizable: function() { + this.callParent(arguments); + if (this.collapsed) { + this.resizer.disable(); + } + }, + + + convertCollapseDir: function(collapseDir) { + return collapseDir.substr(0, 1); + } +}, function() { + this.prototype.animCollapse = Ext.enableFx; +}); + + +Ext.define('Ext.tip.Tip', { + extend: Ext.panel.Panel , + + alternateClassName: 'Ext.Tip', + + + + + + + minWidth : 40, + + maxWidth : 500, + + shadow : "sides", + + + defaultAlign : "tl-bl?", + + constrainPosition : true, + + + autoRender: true, + hidden: true, + baseCls: Ext.baseCSSPrefix + 'tip', + floating: { + shadow: true, + shim: true + }, + focusOnToFront: false, + + + closeAction: 'hide', + + ariaRole: 'tooltip', + + + alwaysFramed: true, + + frameHeader: false, + + initComponent: function() { + var me = this; + + me.floating = Ext.apply( {}, { + shadow: me.shadow, + constrain: me.constrainPosition + }, me.self.prototype.floating); + me.callParent(arguments); + + + me.constrain = me.constrain || me.constrainPosition; + }, + + + showAt : function(xy){ + var me = this; + this.callParent(arguments); + + if (me.isVisible()) { + me.setPagePosition(xy[0], xy[1]); + if (me.constrainPosition || me.constrain) { + me.doConstrain(); + } + me.toFront(true); + } + }, + + + initDraggable : function(){ + var me = this; + me.draggable = { + el: me.getDragEl(), + delegate: me.header.el, + constrain: me, + constrainTo: me.el.dom.parentNode + }; + + Ext.Component.prototype.initDraggable.call(me); + }, + + + ghost: undefined, + unghost: undefined +}); + + +Ext.define('Ext.tip.ToolTip', { + extend: Ext.tip.Tip , + alias: 'widget.tooltip', + alternateClassName: 'Ext.ToolTip', + + + + autoHide: true, + + + showDelay: 500, + + hideDelay: 200, + + dismissDelay: 5000, + + + trackMouse: false, + + + anchorToTarget: true, + + anchorOffset: 0, + + + + targetCounter: 0, + quickShowInterval: 250, + + + initComponent: function() { + var me = this; + me.callParent(arguments); + me.lastActive = new Date(); + me.setTarget(me.target); + me.origAnchor = me.anchor; + }, + + + onRender: function(ct, position) { + var me = this; + me.callParent(arguments); + me.anchorCls = Ext.baseCSSPrefix + 'tip-anchor-' + me.getAnchorPosition(); + me.anchorEl = me.el.createChild({ + cls: Ext.baseCSSPrefix + 'tip-anchor ' + me.anchorCls + }); + }, + + + setTarget: function(target) { + var me = this, + t = Ext.get(target), + tg; + + if (me.target) { + tg = Ext.get(me.target); + me.mun(tg, 'mouseover', me.onTargetOver, me); + me.mun(tg, 'mouseout', me.onTargetOut, me); + me.mun(tg, 'mousemove', me.onMouseMove, me); + } + + me.target = t; + if (t) { + + me.mon(t, { + + + freezeEvent: true, + + mouseover: me.onTargetOver, + mouseout: me.onTargetOut, + mousemove: me.onMouseMove, + scope: me + }); + } + if (me.anchor) { + me.anchorTarget = me.target; + } + }, + + + onMouseMove: function(e) { + var me = this, + t = me.delegate ? e.getTarget(me.delegate) : me.triggerElement = true, + xy; + if (t) { + me.targetXY = e.getXY(); + if (t === me.triggerElement) { + if (!me.hidden && me.trackMouse) { + xy = me.getTargetXY(); + if (me.constrainPosition) { + xy = me.el.adjustForConstraints(xy, me.el.parent()); + } + me.setPagePosition(xy); + } + } else { + me.hide(); + me.lastActive = new Date(0); + me.onTargetOver(e); + } + } else if ((!me.closable && me.isVisible()) && me.autoHide !== false) { + me.hide(); + } + }, + + + getTargetXY: function() { + var me = this, + mouseOffset, + offsets, xy, dw, dh, de, bd, scrollX, scrollY, axy, sz, constrainPosition; + if (me.delegate) { + me.anchorTarget = me.triggerElement; + } + if (me.anchor) { + me.targetCounter++; + offsets = me.getOffsets(); + xy = (me.anchorToTarget && !me.trackMouse) ? me.getAlignToXY(me.anchorTarget, me.getAnchorAlign()) : me.targetXY; + dw = Ext.Element.getViewWidth() - 5; + dh = Ext.Element.getViewHeight() - 5; + de = document.documentElement; + bd = document.body; + scrollX = (de.scrollLeft || bd.scrollLeft || 0) + 5; + scrollY = (de.scrollTop || bd.scrollTop || 0) + 5; + axy = [xy[0] + offsets[0], xy[1] + offsets[1]]; + sz = me.getSize(); + constrainPosition = me.constrainPosition; + + me.anchorEl.removeCls(me.anchorCls); + + if (me.targetCounter < 2 && constrainPosition) { + if (axy[0] < scrollX) { + if (me.anchorToTarget) { + me.defaultAlign = 'l-r'; + if (me.mouseOffset) { + me.mouseOffset[0] *= -1; + } + } + me.anchor = 'left'; + return me.getTargetXY(); + } + if (axy[0] + sz.width > dw) { + if (me.anchorToTarget) { + me.defaultAlign = 'r-l'; + if (me.mouseOffset) { + me.mouseOffset[0] *= -1; + } + } + me.anchor = 'right'; + return me.getTargetXY(); + } + if (axy[1] < scrollY) { + if (me.anchorToTarget) { + me.defaultAlign = 't-b'; + if (me.mouseOffset) { + me.mouseOffset[1] *= -1; + } + } + me.anchor = 'top'; + return me.getTargetXY(); + } + if (axy[1] + sz.height > dh) { + if (me.anchorToTarget) { + me.defaultAlign = 'b-t'; + if (me.mouseOffset) { + me.mouseOffset[1] *= -1; + } + } + me.anchor = 'bottom'; + return me.getTargetXY(); + } + } + + me.anchorCls = Ext.baseCSSPrefix + 'tip-anchor-' + me.getAnchorPosition(); + me.anchorEl.addCls(me.anchorCls); + me.targetCounter = 0; + return axy; + } else { + mouseOffset = me.getMouseOffset(); + return (me.targetXY) ? [me.targetXY[0] + mouseOffset[0], me.targetXY[1] + mouseOffset[1]] : mouseOffset; + } + }, + + getMouseOffset: function() { + var me = this, + offset = me.anchor ? [0, 0] : [15, 18]; + if (me.mouseOffset) { + offset[0] += me.mouseOffset[0]; + offset[1] += me.mouseOffset[1]; + } + return offset; + }, + + + getAnchorPosition: function() { + var me = this, + m; + if (me.anchor) { + me.tipAnchor = me.anchor.charAt(0); + } else { + m = me.defaultAlign.match(/^([a-z]+)-([a-z]+)(\?)?$/); + me.tipAnchor = m[1].charAt(0); + } + + switch (me.tipAnchor) { + case 't': + return 'top'; + case 'b': + return 'bottom'; + case 'r': + return 'right'; + } + return 'left'; + }, + + + getAnchorAlign: function() { + switch (this.anchor) { + case 'top': + return 'tl-bl'; + case 'left': + return 'tl-tr'; + case 'right': + return 'tr-tl'; + default: + return 'bl-tl'; + } + }, + + + getOffsets: function() { + var me = this, + mouseOffset, + offsets, + ap = me.getAnchorPosition().charAt(0); + if (me.anchorToTarget && !me.trackMouse) { + switch (ap) { + case 't': + offsets = [0, 9]; + break; + case 'b': + offsets = [0, -13]; + break; + case 'r': + offsets = [ - 13, 0]; + break; + default: + offsets = [9, 0]; + break; + } + } else { + switch (ap) { + case 't': + offsets = [ - 15 - me.anchorOffset, 30]; + break; + case 'b': + offsets = [ - 19 - me.anchorOffset, -13 - me.el.dom.offsetHeight]; + break; + case 'r': + offsets = [ - 15 - me.el.dom.offsetWidth, -13 - me.anchorOffset]; + break; + default: + offsets = [25, -13 - me.anchorOffset]; + break; + } + } + mouseOffset = me.getMouseOffset(); + offsets[0] += mouseOffset[0]; + offsets[1] += mouseOffset[1]; + + return offsets; + }, + + + onTargetOver: function(e) { + var me = this, + delegate = me.delegate, + t; + + if (me.disabled || e.within(me.target.dom, true)) { + return; + } + t = delegate ? e.getTarget(delegate) : true; + if (t) { + me.triggerElement = t; + me.triggerEvent = e; + me.clearTimer('hide'); + me.targetXY = e.getXY(); + me.delayShow(); + } + }, + + + delayShow: function() { + var me = this; + if (me.hidden && !me.showTimer) { + if (Ext.Date.getElapsed(me.lastActive) < me.quickShowInterval) { + me.show(); + } else { + me.showTimer = Ext.defer(me.showFromDelay, me.showDelay, me); + } + } + else if (!me.hidden && me.autoHide !== false) { + me.show(); + } + }, + + showFromDelay: function(){ + this.fromDelayShow = true; + this.show(); + delete this.fromDelayShow; + }, + + onShowVeto: function(){ + this.callParent(); + delete this.triggerElement; + this.clearTimer('show'); + }, + + + onTargetOut: function(e) { + var me = this, + triggerEl = me.triggerElement, + + + target = triggerEl === true ? me.target : triggerEl; + + + + if (me.disabled || !triggerEl || e.within(target, true)) { + return; + } + if (me.showTimer) { + me.clearTimer('show'); + me.triggerElement = null; + } + if (me.autoHide !== false) { + me.delayHide(); + } + }, + + + delayHide: function() { + var me = this; + if (!me.hidden && !me.hideTimer) { + me.hideTimer = Ext.defer(me.hide, me.hideDelay, me); + } + }, + + + hide: function() { + var me = this; + me.clearTimer('dismiss'); + me.lastActive = new Date(); + if (me.anchorEl) { + me.anchorEl.hide(); + } + me.callParent(arguments); + delete me.triggerElement; + }, + + + show: function() { + var me = this; + + + + this.callParent(); + if (this.hidden === false) { + me.setPagePosition(-10000, -10000); + + if (me.anchor) { + me.anchor = me.origAnchor; + } + + if (!me.calledFromShowAt) { + me.showAt(me.getTargetXY()); + } + + if (me.anchor) { + me.syncAnchor(); + me.anchorEl.show(); + } else { + me.anchorEl.hide(); + } + } + }, + + + showAt: function(xy) { + var me = this; + me.lastActive = new Date(); + me.clearTimers(); + me.calledFromShowAt = true; + + + if (!me.isVisible()) { + this.callParent(arguments); + } + + + if (me.isVisible()) { + me.setPagePosition(xy[0], xy[1]); + if (me.constrainPosition || me.constrain) { + me.doConstrain(); + } + me.toFront(true); + me.el.sync(true); + if (me.dismissDelay && me.autoHide !== false) { + me.dismissTimer = Ext.defer(me.hide, me.dismissDelay, me); + } + if (me.anchor) { + me.syncAnchor(); + if (!me.anchorEl.isVisible()) { + me.anchorEl.show(); + } + } else { + me.anchorEl.hide(); + } + } + delete me.calledFromShowAt; + }, + + + syncAnchor: function() { + var me = this, + anchorPos, + targetPos, + offset; + switch (me.tipAnchor.charAt(0)) { + case 't': + anchorPos = 'b'; + targetPos = 'tl'; + offset = [20 + me.anchorOffset, 1]; + break; + case 'r': + anchorPos = 'l'; + targetPos = 'tr'; + offset = [ - 1, 12 + me.anchorOffset]; + break; + case 'b': + anchorPos = 't'; + targetPos = 'bl'; + offset = [20 + me.anchorOffset, -1]; + break; + default: + anchorPos = 'r'; + targetPos = 'tl'; + offset = [1, 12 + me.anchorOffset]; + break; + } + me.anchorEl.alignTo(me.el, anchorPos + '-' + targetPos, offset); + me.anchorEl.setStyle('z-index', parseInt(me.el.getZIndex(), 10) || 0 + 1).setVisibilityMode(Ext.Element.DISPLAY); + }, + + + setPagePosition: function(x, y) { + var me = this; + me.callParent(arguments); + if (me.anchor) { + me.syncAnchor(); + } + }, + + _timerNames: {}, + + clearTimer: function (name) { + var me = this, + names = me._timerNames, + propName = names[name] || (names[name] = name + 'Timer'), + timer = me[propName]; + + if (timer) { + clearTimeout(timer); + me[propName] = null; + } + }, + + + clearTimers: function() { + var me = this; + me.clearTimer('show'); + me.clearTimer('dismiss'); + me.clearTimer('hide'); + }, + + + onShow: function() { + var me = this; + me.callParent(); + me.mon(Ext.getDoc(), 'mousedown', me.onDocMouseDown, me); + }, + + + onHide: function() { + var me = this; + me.callParent(); + me.mun(Ext.getDoc(), 'mousedown', me.onDocMouseDown, me); + }, + + + onDocMouseDown: function(e) { + var me = this; + if (!me.closable && !e.within(me.el.dom)) { + me.disable(); + Ext.defer(me.doEnable, 100, me); + } + }, + + + doEnable: function() { + if (!this.isDestroyed) { + this.enable(); + } + }, + + + onDisable: function() { + this.callParent(); + this.clearTimers(); + this.hide(); + }, + + beforeDestroy: function() { + var me = this; + me.clearTimers(); + Ext.destroy(me.anchorEl); + delete me.anchorEl; + delete me.target; + delete me.anchorTarget; + delete me.triggerElement; + me.callParent(); + }, + + + onDestroy: function() { + Ext.getDoc().un('mousedown', this.onDocMouseDown, this); + this.callParent(); + } +}); + + +Ext.define('Ext.tip.QuickTip', { + extend: Ext.tip.ToolTip , + alias: 'widget.quicktip', + alternateClassName: 'Ext.QuickTip', + + + + + interceptTitles : false, + + + title: ' ', + + + tagConfig : { + namespace : 'data-', + attribute : 'qtip', + width : 'qwidth', + target : 'target', + title : 'qtitle', + hide : 'hide', + cls : 'qclass', + align : 'qalign', + anchor : 'anchor', + showDelay: 'qshowDelay' + }, + + + initComponent : function(){ + var me = this; + + me.target = me.target || Ext.getDoc(); + me.targets = me.targets || {}; + me.callParent(); + }, + + + register : function(config){ + var configs = Ext.isArray(config) ? config : arguments, + i = 0, + len = configs.length, + target, j, targetLen; + + for (; i < len; i++) { + config = configs[i]; + target = config.target; + if (target) { + if (Ext.isArray(target)) { + for (j = 0, targetLen = target.length; j < targetLen; j++) { + this.targets[Ext.id(target[j])] = config; + } + } else{ + this.targets[Ext.id(target)] = config; + } + } + } + }, + + + unregister : function(el){ + delete this.targets[Ext.id(el)]; + }, + + + cancelShow: function(el){ + var me = this, + activeTarget = me.activeTarget; + + el = Ext.get(el).dom; + if (me.isVisible()) { + if (activeTarget && activeTarget.el == el) { + me.hide(); + } + } else if (activeTarget && activeTarget.el == el) { + me.clearTimer('show'); + } + }, + + + getTipCfg: function(e) { + var t = e.getTarget(), + titleText = t.title, + cfg; + + if (this.interceptTitles && titleText && Ext.isString(titleText)) { + t.qtip = titleText; + t.removeAttribute("title"); + e.preventDefault(); + return { + text: titleText + }; + } + else { + cfg = this.tagConfig; + t = e.getTarget('[' + cfg.namespace + cfg.attribute + ']'); + if (t) { + return { + target: t, + text: t.getAttribute(cfg.namespace + cfg.attribute) + }; + } + } + }, + + + onTargetOver : function(e){ + var me = this, + target = e.getTarget(me.delegate), + hasShowDelay, + delay, + elTarget, + cfg, + ns, + tipConfig, + autoHide, + targets, targetEl, value, key; + + if (me.disabled) { + return; + } + + + + + me.targetXY = e.getXY(); + + + if(!target || target.nodeType !== 1 || target == document.documentElement || target == document.body){ + return; + } + + if (me.activeTarget && ((target == me.activeTarget.el) || Ext.fly(me.activeTarget.el).contains(target))) { + + + + + if (me.targetTextEmpty()) { + me.onShowVeto(); + delete me.activeTarget; + } else { + me.clearTimer('hide'); + me.show(); + } + return; + } + + if (target) { + targets = me.targets; + + for (key in targets) { + if (targets.hasOwnProperty(key)) { + value = targets[key]; + + targetEl = Ext.fly(value.target); + if (targetEl && (targetEl.dom === target || targetEl.contains(target))) { + elTarget = targetEl.dom; + break; + } + } + } + + if (elTarget) { + me.activeTarget = me.targets[elTarget.id]; + me.activeTarget.el = target; + me.anchor = me.activeTarget.anchor; + if (me.anchor) { + me.anchorTarget = target; + } + hasShowDelay = parseInt(me.activeTarget.showDelay, 10); + if (hasShowDelay) { + delay = me.showDelay; + me.showDelay = hasShowDelay; + } + me.delayShow(); + if (hasShowDelay) { + me.showDelay = delay; + } + return; + } + } + + + elTarget = Ext.fly(target, '_quicktip-target'); + cfg = me.tagConfig; + ns = cfg.namespace; + tipConfig = me.getTipCfg(e); + + if (tipConfig) { + + + + if (tipConfig.target) { + target = tipConfig.target; + elTarget = Ext.fly(target, '_quicktip-target'); + } + autoHide = elTarget.getAttribute(ns + cfg.hide); + + me.activeTarget = { + el: target, + text: tipConfig.text, + width: +elTarget.getAttribute(ns + cfg.width) || null, + autoHide: autoHide != "user" && autoHide !== 'false', + title: elTarget.getAttribute(ns + cfg.title), + cls: elTarget.getAttribute(ns + cfg.cls), + align: elTarget.getAttribute(ns + cfg.align), + showDelay: parseInt(elTarget.getAttribute(ns + cfg.showDelay), 10) + }; + me.anchor = elTarget.getAttribute(ns + cfg.anchor); + if (me.anchor) { + me.anchorTarget = target; + } + hasShowDelay = parseInt(me.activeTarget.showDelay, 10); + if (hasShowDelay) { + delay = me.showDelay; + me.showDelay = hasShowDelay; + } + me.delayShow(); + if (hasShowDelay) { + me.showDelay = delay; + } + } + }, + + + onTargetOut : function(e){ + var me = this, + active = me.activeTarget, + hasHideDelay, + delay; + + + + if (active && e.within(me.activeTarget.el) && !me.getTipCfg(e)) { + return; + } + + me.clearTimer('show'); + delete me.activeTarget; + if (me.autoHide !== false) { + hasHideDelay = active && parseInt(active.hideDelay, 10); + if (hasHideDelay) { + delay = me.hideDelay; + me.hideDelay = hasHideDelay; + } + me.delayHide(); + if (hasHideDelay) { + me.hideDelay = delay; + } + } + }, + + targetTextEmpty: function(){ + var me = this, + target = me.activeTarget, + cfg = me.tagConfig, + el, text; + + if (target) { + el = target.el; + if (el) { + text = el.getAttribute(cfg.namespace + cfg.attribute); + + + + if (!text && !me.targets[target.target]) { + return true; + } + } + } + return false; + }, + + show: function(){ + var me = this, + fromDelay = me.fromDelayShow; + + + + if (fromDelay && me.targetTextEmpty()) { + me.onShowVeto(); + delete me.activeTarget; + return; + } + me.callParent(arguments); + }, + + + showAt : function(xy){ + var me = this, + target = me.activeTarget, + header = me.header, + cls; + + if (target) { + if (!me.rendered) { + me.render(Ext.getBody()); + me.activeTarget = target; + } + me.suspendLayouts(); + if (target.title) { + me.setTitle(target.title); + header.show(); + } else if (header) { + header.hide(); + } + me.update(target.text); + me.autoHide = target.autoHide; + me.dismissDelay = target.dismissDelay || me.dismissDelay; + if (target.mouseOffset) { + xy[0] += target.mouseOffset[0]; + xy[1] += target.mouseOffset[1]; + } + + cls = me.lastCls; + if (cls) { + me.removeCls(cls); + delete me.lastCls; + } + + cls = target.cls; + if (cls) { + me.addCls(cls); + me.lastCls = cls; + } + + me.setWidth(target.width); + + if (me.anchor) { + me.constrainPosition = false; + } else if (target.align) { + xy = me.getAlignToXY(target.el, target.align); + me.constrainPosition = false; + }else{ + me.constrainPosition = true; + } + me.resumeLayouts(true); + } + me.callParent([xy]); + }, + + + hide: function(){ + delete this.activeTarget; + this.callParent(); + } +}); + + +Ext.define('Ext.tip.QuickTipManager', { + + singleton: true, + alternateClassName: 'Ext.QuickTips', + disabled: false, + + + init : function (autoRender, config) { + var me = this; + + if (!me.tip) { + if (!Ext.isReady) { + Ext.onReady(function(){ + Ext.tip.QuickTipManager.init(autoRender, config); + }); + return; + } + + var tipConfig = Ext.apply({ disabled: me.disabled, id: 'ext-quicktips-tip' }, config), + className = tipConfig.className, + xtype = tipConfig.xtype; + + if (className) { + delete tipConfig.className; + } else if (xtype) { + className = 'widget.' + xtype; + delete tipConfig.xtype; + } + + if (autoRender !== false) { + tipConfig.renderTo = document.body; + + } + + me.tip = Ext.create(className || 'Ext.tip.QuickTip', tipConfig); + + + + Ext.quickTipsActive = true; + } + }, + + + destroy: function() { + Ext.destroy(this.tip); + this.tip = undefined; + }, + + + ddDisable : function() { + var me = this, + tip = me.tip; + + + if (tip && !me.disabled) { + tip.disable(); + } + }, + + + ddEnable : function() { + var me = this, + tip = me.tip; + + + if (tip && !me.disabled) { + tip.enable(); + } + }, + + + enable : function(){ + var me = this, + tip = me.tip; + + if (tip) { + tip.enable(); + } + me.disabled = false; + }, + + + disable : function(){ + var me = this, + tip = me.tip; + + if(tip){ + tip.disable(); + } + me.disabled = true; + }, + + + isEnabled : function(){ + var tip = this.tip; + + return tip !== undefined && !tip.disabled; + }, + + + getQuickTip : function(){ + return this.tip; + }, + + + register : function(){ + var tip = this.tip; + + tip.register.apply(tip, arguments); + }, + + + unregister : function(){ + var tip = this.tip; + + tip.unregister.apply(tip, arguments); + }, + + + tips : function(){ + var tip = this.tip; + + tip.register.apply(tip, arguments); + } +}); + + +Ext.define('Ext.app.Application', { + extend: Ext.app.Controller , + + + + + + + + + + + scope: undefined, + + + enableQuickTips: true, + + + appFolder: 'app', + + + + appProperty: 'app', + + + namespaces: [], + + + autoCreateViewport: false, + + + paths: null, + + onClassExtended: function(cls, data, hooks) { + var Controller = Ext.app.Controller, + proto = cls.prototype, + requires = [], + onBeforeClassCreated, paths, namespace, ns, appFolder; + + + + namespace = data.name || cls.superclass.name; + appFolder = data.appFolder || cls.superclass.appFolder; + + if (namespace) { + data.$namespace = namespace; + Ext.app.addNamespaces(namespace); + } + + if (data.namespaces) { + Ext.app.addNamespaces(data.namespaces); + } + + if (!data['paths processed']) { + if (namespace && appFolder) { + Ext.Loader.setPath(namespace, appFolder); + } + + paths = data.paths; + + if (paths) { + for (ns in paths) { + if (paths.hasOwnProperty(ns)) { + Ext.Loader.setPath(ns, paths[ns]); + } + } + } + } + else { + delete data['paths processed']; + } + + if (data.autoCreateViewport) { + + Controller.processDependencies(proto, requires, namespace, 'view', ['Viewport']); + } + + + if (requires.length) { + onBeforeClassCreated = hooks.onBeforeCreated; + + hooks.onBeforeCreated = function(cls, data) { + var args = Ext.Array.clone(arguments); + + Ext.require(requires, function () { + return onBeforeClassCreated.apply(this, args); + }); + }; + } + }, + + + constructor: function(config) { + var me = this; + + + me.callParent(arguments); + + me.doInit(me); + + me.initNamespace(); + me.initControllers(); + me.onBeforeLaunch(); + + me.finishInitControllers(); + }, + + initNamespace: function() { + var me = this, + appProperty = me.appProperty, + ns; + + ns = Ext.namespace(me.name); + + if (ns) { + ns.getApplication = function() { + return me; + }; + + if (appProperty) { + if (!ns[appProperty]) { + ns[appProperty] = me; + } + } + } + }, + + initControllers: function() { + var me = this, + controllers = Ext.Array.from(me.controllers); + + me.controllers = new Ext.util.MixedCollection(); + + for (var i = 0, ln = controllers.length; i < ln; i++) { + me.getController(controllers[i]); + } + }, + + finishInitControllers: function() { + var me = this, + controllers, i, l; + + controllers = me.controllers.getRange(); + + for (i = 0, l = controllers.length; i < l; i++) { + controllers[i].finishInit(me); + } + }, + + + launch: Ext.emptyFn, + + + onBeforeLaunch: function() { + var me = this, + controllers, c, cLen, controller; + + if (me.enableQuickTips) { + me.initQuickTips(); + } + + if (me.autoCreateViewport) { + me.initViewport(); + } + + me.launch.call(me.scope || me); + me.launched = true; + me.fireEvent('launch', me); + + controllers = me.controllers.items; + cLen = controllers.length; + + for (c = 0; c < cLen; c++) { + controller = controllers[c]; + controller.onLaunch(me); + } + }, + + getModuleClassName: function(name, kind) { + return Ext.app.Controller.getFullName(name, kind, this.name).absoluteName; + }, + + initQuickTips: function() { + Ext.tip.QuickTipManager.init(); + }, + + initViewport: function() { + var viewport = this.getView('Viewport'); + + if (viewport) { + viewport.create(); + } + }, + + getController: function(name) { + var me = this, + controllers = me.controllers, + className, controller; + + controller = controllers.get(name); + + if (!controller) { + className = me.getModuleClassName(name, 'controller'); + + controller = Ext.create(className, { + application: me, + id: name + }); + + controllers.add(controller); + + if (me._initialized) { + controller.doInit(me); + } + } + + return controller; + }, + + getApplication: function() { + return this; + } +}); + + +Ext.define('Ext.app.domain.Controller', { + extend: Ext.app.EventDomain , + singleton: true, + + + + + + type: 'controller', + idProperty: 'id', + + constructor: function() { + var me = this; + + me.callParent(); + me.monitor(Ext.app.Controller); + } +}); + + +Ext.define('Ext.direct.Provider', { + alias: 'direct.provider', + + mixins: { + observable: Ext.util.Observable + }, + + isProvider: true, + + + + + + constructor: function(config) { + var me = this; + + Ext.apply(me, config); + + Ext.applyIf(me, { + id: Ext.id(null, 'provider-') + }); + + me.addEvents( + + 'connect', + + + 'disconnect', + + + 'data', + + + 'exception' + ); + + me.mixins.observable.constructor.call(me, config); + }, + + + isConnected: function() { + return false; + }, + + + connect: Ext.emptyFn, + + + disconnect: Ext.emptyFn +}); + + + +Ext.define('Ext.app.domain.Direct', { + extend: Ext.app.EventDomain , + singleton: true, + + + + + + type: 'direct', + idProperty: 'id', + + constructor: function() { + var me = this; + + me.callParent(); + me.monitor(Ext.direct.Provider); + } +}); + + +Ext.define('Ext.button.Split', { + + + alias: 'widget.splitbutton', + + extend: Ext.button.Button , + alternateClassName: 'Ext.SplitButton', + + + + + + + arrowCls : 'split', + split : true, + + + initComponent : function(){ + this.callParent(); + + this.addEvents("arrowclick"); + }, + + + setArrowHandler : function(handler, scope){ + this.arrowHandler = handler; + this.scope = scope; + }, + + + onClick : function(e, t) { + var me = this; + + e.preventDefault(); + if (!me.disabled) { + if (me.overMenuTrigger) { + me.maybeShowMenu(); + me.fireEvent("arrowclick", me, e); + if (me.arrowHandler) { + me.arrowHandler.call(me.scope || me, me, e); + } + } else { + me.doToggle(); + me.fireHandler(e); + } + } + } +}); + + +Ext.define('Ext.button.Cycle', { + + + + alias: 'widget.cycle', + + extend: Ext.button.Split , + alternateClassName: 'Ext.CycleButton', + + + + + + + + + + + + + + getButtonText: function(item) { + var me = this, + text = ''; + + if (item && me.showText === true) { + if (me.prependText) { + text += me.prependText; + } + text += item.text; + return text; + } + return me.text; + }, + + + setActiveItem: function(item, suppressEvent) { + var me = this; + + if (!Ext.isObject(item)) { + item = me.menu.getComponent(item); + } + if (item) { + if (!me.rendered) { + me.text = me.getButtonText(item); + me.iconCls = item.iconCls; + me.glyph = item.glyph; + } else { + me.setText(me.getButtonText(item)); + me.setIconCls(item.iconCls); + me.setGlyph(item.glyph); + } + me.activeItem = item; + if (!item.checked) { + item.setChecked(true, false); + } + if (me.forceIcon) { + me.setIconCls(me.forceIcon); + } + if (me.forceGlyph) { + me.setGlyph(me.forceGlyph); + } + if (!suppressEvent) { + me.fireEvent('change', me, item); + } + } + }, + + + getActiveItem: function() { + return this.activeItem; + }, + + + initComponent: function() { + var me = this, + checked = 0, + items, + i, iLen, item; + + me.addEvents( + + "change" + ); + + if (me.changeHandler) { + me.on('change', me.changeHandler, me.scope || me); + delete me.changeHandler; + } + + + + items = (me.menu.items || []).concat(me.items || []); + me.menu = Ext.applyIf({ + cls: Ext.baseCSSPrefix + 'cycle-menu', + items: [] + }, me.menu); + + iLen = items.length; + + + for (i = 0; i < iLen; i++) { + item = items[i]; + + item = Ext.applyIf({ + group : me.id, + itemIndex : i, + checkHandler : me.checkHandler, + scope : me, + checked : item.checked || false + }, item); + + me.menu.items.push(item); + + if (item.checked) { + checked = i; + } + } + + me.itemCount = me.menu.items.length; + me.callParent(arguments); + me.on('click', me.toggleSelected, me); + me.setActiveItem(checked, me); + + + if (me.width && me.showText) { + me.addCls(Ext.baseCSSPrefix + 'cycle-fixed-width'); + } + }, + + + checkHandler: function(item, pressed) { + if (pressed) { + this.setActiveItem(item); + } + }, + + + toggleSelected: function() { + var me = this, + m = me.menu, + checkItem; + + checkItem = me.activeItem.next(':not([disabled])') || m.items.getAt(0); + checkItem.setChecked(true); + } +}); + + +Ext.define('Ext.chart.Callout', { + + + + + + constructor: function(config) { + if (config.callouts) { + config.callouts.styles = Ext.applyIf(config.callouts.styles || {}, { + color: "#000", + font: "11px Helvetica, sans-serif" + }); + this.callouts = Ext.apply(this.callouts || {}, config.callouts); + this.calloutsArray = []; + } + }, + + renderCallouts: function() { + if (!this.callouts) { + return; + } + + var me = this, + items = me.items, + animate = me.chart.animate, + config = me.callouts, + styles = config.styles, + group = me.calloutsArray, + store = me.chart.getChartStore(), + len = store.getCount(), + ratio = items.length / len, + previouslyPlacedCallouts = [], + i, + count, + j, + p, + item, + label, + storeItem, + display; + + for (i = 0, count = 0; i < len; i++) { + for (j = 0; j < ratio; j++) { + item = items[count]; + label = group[count]; + storeItem = store.getAt(i); + + display = (!config.filter || config.filter(storeItem)); + + if (!display && !label) { + count++; + continue; + } + + if (!label) { + group[count] = label = me.onCreateCallout(storeItem, item, i, display, j, count); + } + for (p in label) { + if (label[p] && label[p].setAttributes) { + label[p].setAttributes(styles, true); + } + } + if (!display) { + for (p in label) { + if (label[p]) { + if (label[p].setAttributes) { + label[p].setAttributes({ + hidden: true + }, true); + } else if(label[p].setVisible) { + label[p].setVisible(false); + } + } + } + } + if (config && config.renderer) { + config.renderer(label, storeItem); + } + me.onPlaceCallout(label, storeItem, item, i, display, animate, + j, count, previouslyPlacedCallouts); + previouslyPlacedCallouts.push(label); + count++; + } + } + this.hideCallouts(count); + }, + + onCreateCallout: function(storeItem, item, i, display) { + var me = this, + group = me.calloutsGroup, + config = me.callouts, + styles = (config ? config.styles : undefined), + width = (styles ? styles.width : 0), + height = (styles ? styles.height : 0), + chart = me.chart, + surface = chart.surface, + calloutObj = { + + + lines: false + }; + + calloutObj.lines = surface.add(Ext.apply({}, + { + type: 'path', + path: 'M0,0', + stroke: me.getLegendColor() || '#555' + }, + styles)); + + if (config.items) { + calloutObj.panel = new Ext.Panel({ + style: "position: absolute;", + width: width, + height: height, + items: config.items, + renderTo: chart.el + }); + } + + return calloutObj; + }, + + hideCallouts: function(index) { + var calloutsArray = this.calloutsArray, + len = calloutsArray.length, + co, + p; + while (len-->index) { + co = calloutsArray[len]; + for (p in co) { + if (co[p]) { + co[p].hide(true); + } + } + } + } +}); + + +Ext.define('Ext.draw.CompositeSprite', { + + + + extend: Ext.util.MixedCollection , + mixins: { + animate: Ext.util.Animate + }, + autoDestroy: false, + + + isCompositeSprite: true, + constructor: function(config) { + var me = this; + + config = config || {}; + Ext.apply(me, config); + + me.addEvents( + + 'mousedown', + + 'mouseup', + + 'mouseover', + + 'mouseout', + + 'click' + ); + me.id = Ext.id(null, 'ext-sprite-group-'); + me.callParent(); + }, + + + onClick: function(e) { + this.fireEvent('click', e); + }, + + + onMouseUp: function(e) { + this.fireEvent('mouseup', e); + }, + + + onMouseDown: function(e) { + this.fireEvent('mousedown', e); + }, + + + onMouseOver: function(e) { + this.fireEvent('mouseover', e); + }, + + + onMouseOut: function(e) { + this.fireEvent('mouseout', e); + }, + + attachEvents: function(o) { + var me = this; + + o.on({ + scope: me, + mousedown: me.onMouseDown, + mouseup: me.onMouseUp, + mouseover: me.onMouseOver, + mouseout: me.onMouseOut, + click: me.onClick + }); + }, + + + add: function(key, o) { + var result = this.callParent(arguments); + this.attachEvents(result); + return result; + }, + + insert: function(index, key, o) { + return this.callParent(arguments); + }, + + + remove: function(o) { + var me = this; + + o.un({ + scope: me, + mousedown: me.onMouseDown, + mouseup: me.onMouseUp, + mouseover: me.onMouseOver, + mouseout: me.onMouseOut, + click: me.onClick + }); + return me.callParent(arguments); + }, + + + getBBox: function() { + var i = 0, + sprite, + bb, + items = this.items, + len = this.length, + infinity = Infinity, + minX = infinity, + maxHeight = -infinity, + minY = infinity, + maxWidth = -infinity, + maxWidthBBox, maxHeightBBox; + + for (; i < len; i++) { + sprite = items[i]; + if (sprite.el && ! sprite.bboxExcluded) { + bb = sprite.getBBox(); + minX = Math.min(minX, bb.x); + minY = Math.min(minY, bb.y); + maxHeight = Math.max(maxHeight, bb.height + bb.y); + maxWidth = Math.max(maxWidth, bb.width + bb.x); + } + } + + return { + x: minX, + y: minY, + height: maxHeight - minY, + width: maxWidth - minX + }; + }, + + + setAttributes: function(attrs, redraw) { + var i = 0, + items = this.items, + len = this.length; + + for (; i < len; i++) { + items[i].setAttributes(attrs, redraw); + } + return this; + }, + + + hide: function(redraw) { + var i = 0, + items = this.items, + len = this.length; + + for (; i < len; i++) { + items[i].hide(redraw); + } + return this; + }, + + + show: function(redraw) { + var i = 0, + items = this.items, + len = this.length; + + for (; i < len; i++) { + items[i].show(redraw); + } + return this; + }, + + + redraw: function() { + var me = this, + i = 0, + items = me.items, + surface = me.getSurface(), + len = me.length; + + if (surface) { + for (; i < len; i++) { + surface.renderItem(items[i]); + } + } + return me; + }, + + + setStyle: function(obj) { + var i = 0, + items = this.items, + len = this.length, + item, el; + + for (; i < len; i++) { + item = items[i]; + el = item.el; + if (el) { + el.setStyle(obj); + } + } + }, + + + addCls: function(obj) { + var i = 0, + items = this.items, + surface = this.getSurface(), + len = this.length; + + if (surface) { + for (; i < len; i++) { + surface.addCls(items[i], obj); + } + } + }, + + + removeCls: function(obj) { + var i = 0, + items = this.items, + surface = this.getSurface(), + len = this.length; + + if (surface) { + for (; i < len; i++) { + surface.removeCls(items[i], obj); + } + } + }, + + + getSurface: function(){ + var first = this.first(); + if (first) { + return first.surface; + } + return null; + }, + + + destroy: function(){ + var me = this, + surface = me.getSurface(), + destroySprites = me.autoDestroy, + item; + + if (surface) { + while (me.getCount() > 0) { + item = me.first(); + me.remove(item); + surface.remove(item, destroySprites); + } + } + me.clearListeners(); + } +}); + + +Ext.define('Ext.draw.Surface', { + + + + mixins: { + observable: Ext.util.Observable + }, + + + + + separatorRe: /[, ]+/, + + enginePriority: ['Svg', 'Vml'], + + statics: { + + create: function(config, enginePriority) { + enginePriority = enginePriority || this.prototype.enginePriority; + + var i = 0, + len = enginePriority.length; + + for (; i < len; i++) { + if (Ext.supports[enginePriority[i]]) { + return Ext.create('Ext.draw.engine.' + enginePriority[i], config); + } + } + return false; + }, + + + save: function(surface, config) { + config = config || {}; + var exportTypes = { + 'image/png': 'Image', + 'image/jpeg': 'Image', + 'image/svg+xml': 'Svg' + }, + prefix = exportTypes[config.type] || 'Svg', + exporter = Ext.draw.engine[prefix + 'Exporter']; + + return exporter.generate(surface, config); + + } + }, + + + + + availableAttrs: { + blur: 0, + "clip-rect": "0 0 1e9 1e9", + cursor: "default", + cx: 0, + cy: 0, + 'dominant-baseline': 'auto', + fill: "none", + "fill-opacity": 1, + font: '10px "Arial"', + "font-family": '"Arial"', + "font-size": "10", + "font-style": "normal", + "font-weight": 400, + gradient: "", + height: 0, + hidden: false, + href: "http://sencha.com/", + opacity: 1, + path: "M0,0", + radius: 0, + rx: 0, + ry: 0, + scale: "1 1", + src: "", + stroke: "none", + "stroke-dasharray": "", + "stroke-linecap": "butt", + "stroke-linejoin": "butt", + "stroke-miterlimit": 0, + "stroke-opacity": 1, + "stroke-width": 1, + target: "_blank", + text: "", + "text-anchor": "middle", + title: "Ext Draw", + width: 0, + x: 0, + y: 0, + zIndex: 0 + }, + + + + + container: undefined, + height: 352, + width: 512, + x: 0, + y: 0, + + + + + orderSpritesByZIndex: true, + + + + constructor: function(config) { + var me = this; + config = config || {}; + Ext.apply(me, config); + + me.domRef = Ext.getDoc().dom; + + me.customAttributes = {}; + + me.addEvents( + + 'mousedown', + + 'mouseup', + + 'mouseover', + + 'mouseout', + + 'mousemove', + + 'mouseenter', + + 'mouseleave', + + 'click', + + 'dblclick' + ); + + me.mixins.observable.constructor.call(me); + + me.getId(); + me.initGradients(); + me.initItems(); + if (me.renderTo) { + me.render(me.renderTo); + delete me.renderTo; + } + me.initBackground(config.background); + }, + + + + initSurface: Ext.emptyFn, + + + + renderItem: Ext.emptyFn, + + + renderItems: Ext.emptyFn, + + + setViewBox: function (x, y, width, height) { + if (isFinite(x) && isFinite(y) && isFinite(width) && isFinite(height)) { + this.viewBox = {x: x, y: y, width: width, height: height}; + this.applyViewBox(); + } + }, + + + addCls: Ext.emptyFn, + + + removeCls: Ext.emptyFn, + + + setStyle: Ext.emptyFn, + + + initGradients: function() { + if (this.hasOwnProperty('gradients')) { + var gradients = this.gradients, + fn = this.addGradient, + g, gLen; + + if (gradients) { + for (g = 0, gLen = gradients.length; g < gLen; g++) { + if (fn.call(this, gradients[g], g, gLen) === false) { + break; + } + } + } + } + }, + + + initItems: function() { + var items = this.items; + this.items = new Ext.draw.CompositeSprite(); + this.items.autoDestroy = true; + this.groups = new Ext.draw.CompositeSprite(); + if (items) { + this.add(items); + } + }, + + + initBackground: function(config) { + var me = this, + width = me.width, + height = me.height, + gradientId, gradient; + if (Ext.isString(config)) { + config = { + fill : config + }; + } + if (config) { + if (config.gradient) { + gradient = config.gradient; + gradientId = gradient.id; + me.addGradient(gradient); + me.background = me.add({ + type: 'rect', + x: 0, + y: 0, + width: width, + height: height, + fill: 'url(#' + gradientId + ')', + zIndex: -1 + }); + } else if (config.fill) { + me.background = me.add({ + type: 'rect', + x: 0, + y: 0, + width: width, + height: height, + fill: config.fill, + zIndex: -1 + }); + } else if (config.image) { + me.background = me.add({ + type: 'image', + x: 0, + y: 0, + width: width, + height: height, + src: config.image, + zIndex: -1 + }); + } + + me.background.bboxExcluded = true; + } + }, + + + setSize: function(w, h) { + this.applyViewBox(); + }, + + + scrubAttrs: function(sprite) { + var i, + attrs = {}, + exclude = {}, + sattr = sprite.attr; + for (i in sattr) { + + if (this.translateAttrs.hasOwnProperty(i)) { + + attrs[this.translateAttrs[i]] = sattr[i]; + exclude[this.translateAttrs[i]] = true; + } + else if (this.availableAttrs.hasOwnProperty(i) && !exclude[i]) { + + attrs[i] = sattr[i]; + } + } + return attrs; + }, + + + onClick: function(e) { + this.processEvent('click', e); + }, + + + onDblClick: function(e) { + this.processEvent('dblclick', e); + }, + + + onMouseUp: function(e) { + this.processEvent('mouseup', e); + }, + + + onMouseDown: function(e) { + this.processEvent('mousedown', e); + }, + + + onMouseOver: function(e) { + this.processEvent('mouseover', e); + }, + + + onMouseOut: function(e) { + this.processEvent('mouseout', e); + }, + + + onMouseMove: function(e) { + this.fireEvent('mousemove', e); + }, + + + onMouseEnter: Ext.emptyFn, + + + onMouseLeave: Ext.emptyFn, + + + addGradient: Ext.emptyFn, + + + add: function() { + var args = Array.prototype.slice.call(arguments), + sprite, + hasMultipleArgs = args.length > 1, + items, + results, + i, + ln, + item; + + if (hasMultipleArgs || Ext.isArray(args[0])) { + items = hasMultipleArgs ? args : args[0]; + results = []; + + for (i = 0, ln = items.length; i < ln; i++) { + item = items[i]; + item = this.add(item); + results.push(item); + } + + return results; + } + sprite = this.prepareItems(args[0], true)[0]; + this.insertByZIndex(sprite); + this.onAdd(sprite); + return sprite; + }, + + + insertByZIndex: function(sprite) { + var me = this, + sprites = me.items.items, + len = sprites.length, + ceil = Math.ceil, + zIndex = sprite.attr.zIndex, + idx = len, + high = idx - 1, + low = 0, + otherZIndex; + + if (me.orderSpritesByZIndex && len && zIndex < sprites[high].attr.zIndex) { + + while (low <= high) { + idx = ceil((low + high) / 2); + otherZIndex = sprites[idx].attr.zIndex; + if (otherZIndex > zIndex) { + high = idx - 1; + } + else if (otherZIndex < zIndex) { + low = idx + 1; + } + else { + break; + } + } + + while (idx < len && sprites[idx].attr.zIndex <= zIndex) { + idx++; + } + } + + me.items.insert(idx, sprite); + return idx; + }, + + onAdd: function(sprite) { + var group = sprite.group, + draggable = sprite.draggable, + groups, ln, i; + if (group) { + groups = [].concat(group); + ln = groups.length; + for (i = 0; i < ln; i++) { + group = groups[i]; + this.getGroup(group).add(sprite); + } + delete sprite.group; + } + if (draggable) { + sprite.initDraggable(); + } + }, + + + remove: function(sprite, destroySprite) { + if (sprite) { + this.items.remove(sprite); + + var groups = [].concat(this.groups.items), + gLen = groups.length, + g; + + for (g = 0; g < gLen; g++) { + groups[g].remove(sprite); + } + + sprite.onRemove(); + if (destroySprite === true) { + sprite.destroy(); + } + } + }, + + + removeAll: function(destroySprites) { + var items = this.items.items, + ln = items.length, + i; + for (i = ln - 1; i > -1; i--) { + this.remove(items[i], destroySprites); + } + }, + + onRemove: Ext.emptyFn, + + onDestroy: Ext.emptyFn, + + + applyViewBox: function() { + var me = this, + viewBox = me.viewBox, + width = me.width || 1, + height = me.height || 1, + viewBoxX, viewBoxY, viewBoxWidth, viewBoxHeight, + relativeHeight, relativeWidth, size; + + if (viewBox && (width || height)) { + viewBoxX = viewBox.x; + viewBoxY = viewBox.y; + viewBoxWidth = viewBox.width; + viewBoxHeight = viewBox.height; + relativeHeight = height / viewBoxHeight; + relativeWidth = width / viewBoxWidth; + size = Math.min(relativeWidth, relativeHeight); + + if (viewBoxWidth * size < width) { + viewBoxX -= (width - viewBoxWidth * size) / 2 / size; + } + if (viewBoxHeight * size < height) { + viewBoxY -= (height - viewBoxHeight * size) / 2 / size; + } + + me.viewBoxShift = { + dx: -viewBoxX, + dy: -viewBoxY, + scale: size + }; + + if (me.background) { + me.background.setAttributes(Ext.apply({}, { + x: viewBoxX, + y: viewBoxY, + width: width / size, + height: height / size + }, { hidden: false }), true); + } + } else { + if (me.background && width && height) { + me.background.setAttributes(Ext.apply({x: 0, y: 0, width: width, height: height}, { hidden: false }), true); + } + } + }, + + + getBBox: function (sprite, isWithoutTransform) { + var realPath = this["getPath" + sprite.type](sprite); + if (isWithoutTransform) { + sprite.bbox.plain = sprite.bbox.plain || Ext.draw.Draw.pathDimensions(realPath); + return sprite.bbox.plain; + } + if (sprite.dirtyTransform) { + this.applyTransformations(sprite, true); + } + sprite.bbox.transform = sprite.bbox.transform || Ext.draw.Draw.pathDimensions(Ext.draw.Draw.mapPath(realPath, sprite.matrix)); + return sprite.bbox.transform; + }, + + transformToViewBox: function (x, y) { + if (this.viewBoxShift) { + var me = this, shift = me.viewBoxShift; + return [x / shift.scale - shift.dx, y / shift.scale - shift.dy]; + } else { + return [x, y]; + } + }, + + + applyTransformations: function(sprite, onlyMatrix) { + if (sprite.type == 'text') { + + sprite.bbox.transform = 0; + this.transform(sprite, false); + } + + + sprite.dirtyTransform = false; + + var me = this, + attr = sprite.attr; + + if (attr.translation.x != null || attr.translation.y != null) { + me.translate(sprite); + } + if (attr.scaling.x != null || attr.scaling.y != null) { + me.scale(sprite); + } + if (attr.rotation.degrees != null) { + me.rotate(sprite); + } + + sprite.bbox.transform = 0; + this.transform(sprite, onlyMatrix); + sprite.transformations = []; + }, + + + rotate: function (sprite) { + var bbox, + deg = sprite.attr.rotation.degrees, + centerX = sprite.attr.rotation.x, + centerY = sprite.attr.rotation.y; + if (!Ext.isNumber(centerX) || !Ext.isNumber(centerY)) { + bbox = this.getBBox(sprite, true); + centerX = !Ext.isNumber(centerX) ? bbox.x + bbox.width / 2 : centerX; + centerY = !Ext.isNumber(centerY) ? bbox.y + bbox.height / 2 : centerY; + } + sprite.transformations.push({ + type: "rotate", + degrees: deg, + x: centerX, + y: centerY + }); + }, + + + translate: function(sprite) { + var x = sprite.attr.translation.x || 0, + y = sprite.attr.translation.y || 0; + sprite.transformations.push({ + type: "translate", + x: x, + y: y + }); + }, + + + scale: function(sprite) { + var bbox, + x = sprite.attr.scaling.x || 1, + y = sprite.attr.scaling.y || 1, + centerX = sprite.attr.scaling.centerX, + centerY = sprite.attr.scaling.centerY; + + if (!Ext.isNumber(centerX) || !Ext.isNumber(centerY)) { + bbox = this.getBBox(sprite, true); + centerX = !Ext.isNumber(centerX) ? bbox.x + bbox.width / 2 : centerX; + centerY = !Ext.isNumber(centerY) ? bbox.y + bbox.height / 2 : centerY; + } + sprite.transformations.push({ + type: "scale", + x: x, + y: y, + centerX: centerX, + centerY: centerY + }); + }, + + + rectPath: function (x, y, w, h, r) { + if (r) { + return [["M", x + r, y], ["l", w - r * 2, 0], ["a", r, r, 0, 0, 1, r, r], ["l", 0, h - r * 2], ["a", r, r, 0, 0, 1, -r, r], ["l", r * 2 - w, 0], ["a", r, r, 0, 0, 1, -r, -r], ["l", 0, r * 2 - h], ["a", r, r, 0, 0, 1, r, -r], ["z"]]; + } + return [["M", x, y], ["l", w, 0], ["l", 0, h], ["l", -w, 0], ["z"]]; + }, + + + ellipsePath: function (x, y, rx, ry) { + if (ry == null) { + ry = rx; + } + return [["M", x, y], ["m", 0, -ry], ["a", rx, ry, 0, 1, 1, 0, 2 * ry], ["a", rx, ry, 0, 1, 1, 0, -2 * ry], ["z"]]; + }, + + + getPathpath: function (el) { + return el.attr.path; + }, + + + getPathcircle: function (el) { + var a = el.attr; + return this.ellipsePath(a.x, a.y, a.radius, a.radius); + }, + + + getPathellipse: function (el) { + var a = el.attr; + return this.ellipsePath(a.x, a.y, + a.radiusX || (a.width / 2) || 0, + a.radiusY || (a.height / 2) || 0); + }, + + + getPathrect: function (el) { + var a = el.attr; + return this.rectPath(a.x || 0, a.y || 0, a.width || 0, a.height || 0, a.r || 0); + }, + + + getPathimage: function (el) { + var a = el.attr; + return this.rectPath(a.x || 0, a.y || 0, a.width, a.height); + }, + + + getPathtext: function (el) { + var bbox = this.getBBoxText(el); + return this.rectPath(bbox.x, bbox.y, bbox.width, bbox.height); + }, + + createGroup: function(id) { + var group = this.groups.get(id); + if (!group) { + group = new Ext.draw.CompositeSprite({ + surface: this + }); + group.id = id || Ext.id(null, 'ext-surface-group-'); + this.groups.add(group); + } + return group; + }, + + + getGroup: function(id) { + var group; + if (typeof id == "string") { + group = this.groups.get(id); + if (!group) { + group = this.createGroup(id); + } + } else { + group = id; + } + return group; + }, + + + prepareItems: function(items, applyDefaults) { + items = [].concat(items); + + var item, i, ln; + for (i = 0, ln = items.length; i < ln; i++) { + item = items[i]; + if (!(item instanceof Ext.draw.Sprite)) { + + item.surface = this; + items[i] = this.createItem(item); + } else { + item.surface = this; + } + } + return items; + }, + + + setText: Ext.emptyFn, + + + + createItem: Ext.emptyFn, + + + getId: function() { + return this.id || (this.id = Ext.id(null, 'ext-surface-')); + }, + + + destroy: function() { + var me = this; + delete me.domRef; + if (me.background) { + me.background.destroy(); + } + me.removeAll(true); + Ext.destroy(me.groups.items); + } +}); + + + +Ext.define('Ext.layout.component.Draw', { + + + + alias: 'layout.draw', + + extend: Ext.layout.component.Auto , + + setHeightInDom: true, + + setWidthInDom: true, + + + + type: 'draw', + + measureContentWidth : function (ownerContext) { + var target = ownerContext.target, + paddingInfo = ownerContext.getPaddingInfo(), + bbox = this.getBBox(ownerContext); + + if (!target.viewBox) { + if (target.autoSize) { + return bbox.width + paddingInfo.width; + } else { + return bbox.x + bbox.width + paddingInfo.width; + } + } else { + if (ownerContext.heightModel.shrinkWrap) { + return paddingInfo.width; + } else { + return bbox.width / bbox.height * (ownerContext.getProp('contentHeight') - paddingInfo.height) + paddingInfo.width; + } + } + }, + + measureContentHeight : function (ownerContext) { + var target = ownerContext.target, + paddingInfo = ownerContext.getPaddingInfo(), + bbox = this.getBBox(ownerContext); + + if (!ownerContext.target.viewBox) { + if (target.autoSize) { + return bbox.height + paddingInfo.height; + } else { + return bbox.y + bbox.height + paddingInfo.height; + } + } else { + if (ownerContext.widthModel.shrinkWrap) { + return paddingInfo.height; + } else { + return bbox.height / bbox.width * (ownerContext.getProp('contentWidth') - paddingInfo.width) + paddingInfo.height; + } + } + }, + + getBBox: function(ownerContext) { + var bbox = ownerContext.surfaceBBox; + if (!bbox) { + bbox = ownerContext.target.surface.items.getBBox(); + + if (bbox.width === -Infinity && bbox.height === -Infinity) { + bbox.width = bbox.height = bbox.x = bbox.y = 0; + } + ownerContext.surfaceBBox = bbox; + } + return bbox; + }, + + publishInnerWidth: function (ownerContext, width) { + ownerContext.setContentWidth(width - ownerContext.getFrameInfo().width, true); + }, + + publishInnerHeight: function (ownerContext, height) { + ownerContext.setContentHeight(height - ownerContext.getFrameInfo().height, true); + }, + + finishedLayout: function (ownerContext) { + + var props = ownerContext.props, + paddingInfo = ownerContext.getPaddingInfo(); + + + + this.owner.setSurfaceSize(props.contentWidth - paddingInfo.width, props.contentHeight - paddingInfo.height); + + + this.callParent(arguments); + } +}); + + +Ext.define('Ext.draw.Component', { + + + + alias: 'widget.draw', + + extend: Ext.Component , + + + + + + + + + + enginePriority: ['Svg', 'Vml'], + + baseCls: Ext.baseCSSPrefix + 'surface', + + componentLayout: 'draw', + + + viewBox: true, + + shrinkWrap: 3, + + + autoSize: false, + + + + + + + + initComponent: function() { + this.callParent(arguments); + + this.addEvents( + + 'mousedown', + + 'mouseup', + + 'mousemove', + + 'mouseenter', + + 'mouseleave', + + 'click', + + 'dblclick' + ); + }, + + + onRender: function() { + var me = this, + viewBox = me.viewBox, + autoSize = me.autoSize, + bbox, items, width, height, x, y; + me.callParent(arguments); + + if (me.createSurface() !== false) { + items = me.surface.items; + + if (viewBox || autoSize) { + bbox = items.getBBox(); + width = bbox.width; + height = bbox.height; + x = bbox.x; + y = bbox.y; + if (me.viewBox) { + me.surface.setViewBox(x, y, width, height); + } else { + me.autoSizeSurface(); + } + } + } + }, + + + autoSizeSurface: function() { + var bbox = this.surface.items.getBBox(); + this.setSurfaceSize(bbox.width, bbox.height); + }, + + setSurfaceSize: function (width, height) { + this.surface.setSize(width, height); + if (this.autoSize) { + var bbox = this.surface.items.getBBox(); + this.surface.setViewBox(bbox.x, bbox.y - (+Ext.isOpera), width, height); + } + }, + + + createSurface: function() { + var me = this, + cfg = Ext.applyIf({ + renderTo: me.el, + height: me.height, + width: me.width, + items: me.items + }, me.initialConfig), surface; + + + delete cfg.listeners; + if (!cfg.gradients) { + cfg.gradients = me.gradients; + } + surface = Ext.draw.Surface.create(cfg, me.enginePriority); + if (!surface) { + + return false; + } + me.surface = surface; + + + function refire(eventName) { + return function(e) { + me.fireEvent(eventName, e); + }; + } + + surface.on({ + scope: me, + mouseup: refire('mouseup'), + mousedown: refire('mousedown'), + mousemove: refire('mousemove'), + mouseenter: refire('mouseenter'), + mouseleave: refire('mouseleave'), + click: refire('click'), + dblclick: refire('dblclick') + }); + }, + + + + onDestroy: function() { + Ext.destroy(this.surface); + this.callParent(arguments); + } + +}); + + +Ext.chart = Ext.chart || {}; + +Ext.define('Ext.chart.theme.Theme', ( + + +function() { + + +(function() { + Ext.chart.theme = function(config, base) { + config = config || {}; + var i = 0, d = Ext.Date.now(), l, colors, color, + seriesThemes, markerThemes, + seriesTheme, markerTheme, + key, gradients = [], + midColor, midL; + + if (config.baseColor) { + midColor = Ext.draw.Color.fromString(config.baseColor); + midL = midColor.getHSL()[2]; + if (midL < 0.15) { + midColor = midColor.getLighter(0.3); + } else if (midL < 0.3) { + midColor = midColor.getLighter(0.15); + } else if (midL > 0.85) { + midColor = midColor.getDarker(0.3); + } else if (midL > 0.7) { + midColor = midColor.getDarker(0.15); + } + config.colors = [ midColor.getDarker(0.3).toString(), + midColor.getDarker(0.15).toString(), + midColor.toString(), + midColor.getLighter(0.15).toString(), + midColor.getLighter(0.3).toString()]; + + delete config.baseColor; + } + if (config.colors) { + colors = config.colors.slice(); + markerThemes = base.markerThemes; + seriesThemes = base.seriesThemes; + l = colors.length; + base.colors = colors; + for (; i < l; i++) { + color = colors[i]; + markerTheme = markerThemes[i] || {}; + seriesTheme = seriesThemes[i] || {}; + markerTheme.fill = seriesTheme.fill = markerTheme.stroke = seriesTheme.stroke = color; + markerThemes[i] = markerTheme; + seriesThemes[i] = seriesTheme; + } + base.markerThemes = markerThemes.slice(0, l); + base.seriesThemes = seriesThemes.slice(0, l); + + } + for (key in base) { + if (key in config) { + if (Ext.isObject(config[key]) && Ext.isObject(base[key])) { + Ext.apply(base[key], config[key]); + } else { + base[key] = config[key]; + } + } + } + if (config.useGradients) { + colors = base.colors || (function () { + var ans = []; + for (i = 0, seriesThemes = base.seriesThemes, l = seriesThemes.length; i < l; i++) { + ans.push(seriesThemes[i].fill || seriesThemes[i].stroke); + } + return ans; + }()); + for (i = 0, l = colors.length; i < l; i++) { + midColor = Ext.draw.Color.fromString(colors[i]); + if (midColor) { + color = midColor.getDarker(0.1).toString(); + midColor = midColor.toString(); + key = 'theme-' + midColor.substr(1) + '-' + color.substr(1) + '-' + d; + gradients.push({ + id: key, + angle: 45, + stops: { + 0: { + color: midColor.toString() + }, + 100: { + color: color.toString() + } + } + }); + colors[i] = 'url(#' + key + ')'; + } + } + base.gradients = gradients; + base.colors = colors; + } + + Ext.apply(this, base); + }; +}()); + +return { + + + + + + + + theme: 'Base', + themeAttrs: false, + + initTheme: function(theme) { + var me = this, + themes = Ext.chart.theme, + key, gradients; + if (theme) { + theme = theme.split(':'); + for (key in themes) { + if (key == theme[0]) { + gradients = theme[1] == 'gradients'; + me.themeAttrs = new themes[key]({ + useGradients: gradients + }); + if (gradients) { + me.gradients = me.themeAttrs.gradients; + } + if (me.themeAttrs.background) { + me.background = me.themeAttrs.background; + } + return; + } + } + } + } +}; + +})()); + + +Ext.define('Ext.chart.MaskLayer', { + extend: Ext.Component , + + constructor: function(config) { + config = Ext.apply(config || {}, { + style: 'position:absolute;background-color:#ff9;cursor:crosshair;opacity:0.5;border:1px solid #00f;' + }); + this.callParent([config]); + }, + + initComponent: function() { + var me = this; + me.callParent(arguments); + me.addEvents( + 'mousedown', + 'mouseup', + 'mousemove', + 'mouseenter', + 'mouseleave' + ); + }, + + initDraggable: function() { + this.callParent(arguments); + this.dd.onStart = function (e) { + var me = this, + comp = me.comp; + + + this.startPosition = comp.getPosition(true); + + + + if (comp.ghost && !comp.liveDrag) { + me.proxy = comp.ghost(); + me.dragTarget = me.proxy.header.el; + } + + + if (me.constrain || me.constrainDelegate) { + me.constrainTo = me.calculateConstrainRegion(); + } + }; + } +}); + + +Ext.define('Ext.chart.Mask', { + + + + + + + + constructor: function(config) { + var me = this; + + me.addEvents('select'); + + if (config) { + Ext.apply(me, config); + } + if (me.enableMask) { + me.on('afterrender', function() { + + var comp = new Ext.chart.MaskLayer({ + renderTo: me.el, + hidden: true + }); + comp.el.on({ + 'mousemove': function(e) { + me.onMouseMove(e); + }, + 'mouseup': function(e) { + me.onMouseUp(e); + } + }); + comp.initDraggable(); + me.maskType = me.mask; + me.mask = comp; + me.maskSprite = me.surface.add({ + type: 'path', + path: ['M', 0, 0], + zIndex: 1001, + opacity: 0.6, + hidden: true, + stroke: '#00f', + cursor: 'crosshair' + }); + }, me, { single: true }); + } + }, + + onMouseUp: function(e) { + var me = this, + bbox = me.bbox || me.chartBBox, + sel; + me.maskMouseDown = false; + me.mouseDown = false; + if (me.mouseMoved) { + me.handleMouseEvent(e); + me.mouseMoved = false; + sel = me.maskSelection; + me.fireEvent('select', me, { + x: sel.x - bbox.x, + y: sel.y - bbox.y, + width: sel.width, + height: sel.height + }); + } + }, + + onMouseDown: function(e) { + this.handleMouseEvent(e); + }, + + onMouseMove: function(e) { + this.handleMouseEvent(e); + }, + + handleMouseEvent: function(e) { + var me = this, + mask = me.maskType, + bbox = me.bbox || me.chartBBox, + x = bbox.x, + y = bbox.y, + math = Math, + floor = math.floor, + abs = math.abs, + min = math.min, + max = math.max, + height = floor(y + bbox.height), + width = floor(x + bbox.width), + staticX = e.getPageX() - me.el.getX(), + staticY = e.getPageY() - me.el.getY(), + maskMouseDown = me.maskMouseDown, + path; + + staticX = max(staticX, x); + staticY = max(staticY, y); + staticX = min(staticX, width); + staticY = min(staticY, height); + + if (e.type === 'mousedown') { + + me.mouseDown = true; + me.mouseMoved = false; + me.maskMouseDown = { + x: staticX, + y: staticY + }; + } + else { + + + me.mouseMoved = me.mouseDown; + if (maskMouseDown && me.mouseDown) { + if (mask == 'horizontal') { + staticY = y; + maskMouseDown.y = height; + } + else if (mask == 'vertical') { + staticX = x; + maskMouseDown.x = width; + } + width = maskMouseDown.x - staticX; + height = maskMouseDown.y - staticY; + path = ['M', staticX, staticY, 'l', width, 0, 0, height, -width, 0, 'z']; + me.maskSelection = { + x: (width > 0 ? staticX : staticX + width) + me.el.getX(), + y: (height > 0 ? staticY : staticY + height) + me.el.getY(), + width: abs(width), + height: abs(height) + }; + me.mask.updateBox(me.maskSelection); + me.mask.show(); + me.maskSprite.setAttributes({ + hidden: true + }, true); + } + else { + if (mask == 'horizontal') { + path = ['M', staticX, y, 'L', staticX, height]; + } + else if (mask == 'vertical') { + path = ['M', x, staticY, 'L', width, staticY]; + } + else { + path = ['M', staticX, y, 'L', staticX, height, 'M', x, staticY, 'L', width, staticY]; + } + me.maskSprite.setAttributes({ + path: path, + 'stroke-width': mask === true ? 1 : 1, + hidden: false + }, true); + } + } + + }, + + onMouseLeave: function(e) { + var me = this; + me.mouseMoved = false; + me.mouseDown = false; + me.maskMouseDown = false; + me.mask.hide(); + me.maskSprite.hide(true); + } +}); + + + +Ext.define('Ext.chart.Navigation', { + + + setZoom: function(zoomConfig) { + var me = this, + axesItems = me.axes.items, + i, ln, axis, + bbox = me.chartBBox, + xScale = bbox.width, + yScale = bbox.height, + zoomArea = { + x : zoomConfig.x - me.el.getX(), + y : zoomConfig.y - me.el.getY(), + width : zoomConfig.width, + height : zoomConfig.height + }, + zoomer, ends, from, to, store, count, step, length, horizontal; + + for (i = 0, ln = axesItems.length; i < ln; i++) { + axis = axesItems[i]; + horizontal = (axis.position == 'bottom' || axis.position == 'top'); + if (axis.type == 'Category') { + if (!store) { + store = me.getChartStore(); + count = store.data.items.length; + } + zoomer = zoomArea; + length = axis.length; + step = Math.round(length / count); + if (horizontal) { + from = (zoomer.x ? Math.floor(zoomer.x / step) + 1 : 0); + to = (zoomer.x + zoomer.width) / step; + } else { + from = (zoomer.y ? Math.floor(zoomer.y / step) + 1 : 0); + to = (zoomer.y + zoomer.height) / step; + } + } + else { + zoomer = { + x : zoomArea.x / xScale, + y : zoomArea.y / yScale, + width : zoomArea.width / xScale, + height : zoomArea.height / yScale + } + ends = axis.calcEnds(); + if (horizontal) { + from = (ends.to - ends.from) * zoomer.x + ends.from; + to = (ends.to - ends.from) * zoomer.width + from; + } else { + to = (ends.to - ends.from) * (1 - zoomer.y) + ends.from; + from = to - (ends.to - ends.from) * zoomer.height; + } + } + axis.minimum = from; + axis.maximum = to; + if (horizontal) { + if (axis.doConstrain && me.maskType != 'vertical') { + axis.doConstrain(); + } + } + else { + if (axis.doConstrain && me.maskType != 'horizontal') { + axis.doConstrain(); + } + } + } + me.redraw(false); + }, + + + restoreZoom: function() { + var me = this, + axesItems = me.axes.items, + i, ln, axis; + + me.setSubStore(null); + for (i = 0, ln = axesItems.length; i < ln; i++) { + axis = axesItems[i]; + delete axis.minimum; + delete axis.maximum; + } + me.redraw(false); + } + +}); + + +Ext.define('Ext.chart.Shape', { + + + + singleton: true, + + + + circle: function (surface, opts) { + return surface.add(Ext.apply({ + type: 'circle', + x: opts.x, + y: opts.y, + stroke: null, + radius: opts.radius + }, opts)); + }, + line: function (surface, opts) { + return surface.add(Ext.apply({ + type: 'rect', + x: opts.x - opts.radius, + y: opts.y - opts.radius, + height: 2 * opts.radius, + width: 2 * opts.radius / 5 + }, opts)); + }, + square: function (surface, opts) { + return surface.add(Ext.applyIf({ + type: 'rect', + x: opts.x - opts.radius, + y: opts.y - opts.radius, + height: 2 * opts.radius, + width: 2 * opts.radius, + radius: null + }, opts)); + }, + triangle: function (surface, opts) { + opts.radius *= 1.75; + return surface.add(Ext.apply({ + type: 'path', + stroke: null, + path: "M".concat(opts.x, ",", opts.y, "m0-", opts.radius * 0.58, "l", opts.radius * 0.5, ",", opts.radius * 0.87, "-", opts.radius, ",0z") + }, opts)); + }, + diamond: function (surface, opts) { + var r = opts.radius; + r *= 1.5; + return surface.add(Ext.apply({ + type: 'path', + stroke: null, + path: ["M", opts.x, opts.y - r, "l", r, r, -r, r, -r, -r, r, -r, "z"] + }, opts)); + }, + cross: function (surface, opts) { + var r = opts.radius; + r = r / 1.7; + return surface.add(Ext.apply({ + type: 'path', + stroke: null, + path: "M".concat(opts.x - r, ",", opts.y, "l", [-r, -r, r, -r, r, r, r, -r, r, r, -r, r, r, r, -r, r, -r, -r, -r, r, -r, -r, "z"]) + }, opts)); + }, + plus: function (surface, opts) { + var r = opts.radius / 1.3; + return surface.add(Ext.apply({ + type: 'path', + stroke: null, + path: "M".concat(opts.x - r / 2, ",", opts.y - r / 2, "l", [0, -r, r, 0, 0, r, r, 0, 0, r, -r, 0, 0, r, -r, 0, 0, -r, -r, 0, 0, -r, "z"]) + }, opts)); + }, + arrow: function (surface, opts) { + var r = opts.radius; + return surface.add(Ext.apply({ + type: 'path', + path: "M".concat(opts.x - r * 0.7, ",", opts.y - r * 0.4, "l", [r * 0.6, 0, 0, -r * 0.4, r, r * 0.8, -r, r * 0.8, 0, -r * 0.4, -r * 0.6, 0], "z") + }, opts)); + }, + drop: function (surface, x, y, text, size, angle) { + size = size || 30; + angle = angle || 0; + surface.add({ + type: 'path', + path: ['M', x, y, 'l', size, 0, 'A', size * 0.4, size * 0.4, 0, 1, 0, x + size * 0.7, y - size * 0.7, 'z'], + fill: '#000', + stroke: 'none', + rotate: { + degrees: 22.5 - angle, + x: x, + y: y + } + }); + angle = (angle + 90) * Math.PI / 180; + surface.add({ + type: 'text', + x: x + size * Math.sin(angle) - 10, + y: y + size * Math.cos(angle) + 5, + text: text, + 'font-size': size * 12 / 40, + stroke: 'none', + fill: '#fff' + }); + } +}); + + +Ext.define('Ext.chart.LegendItem', { + + + + extend: Ext.draw.CompositeSprite , + + + + + + + hiddenSeries: false, + + + label: undefined, + + + x: 0, + y: 0, + zIndex: 500, + + + boldRe: /bold\s\d{1,}.*/i, + + constructor: function(config) { + this.callParent(arguments); + this.createLegend(config); + }, + + + createLegend: function(config) { + var me = this, + series = me.series, + index = config.yFieldIndex; + + me.label = me.createLabel(config); + me.createSeriesMarkers(config); + + me.setAttributes({ + hidden: false + }, true); + + me.yFieldIndex = index; + + + me.on('mouseover', me.onMouseOver, me); + me.on('mouseout', me.onMouseOut, me); + me.on('mousedown', me.onMouseDown, me); + + if (!series.visibleInLegend(index)) { + me.hiddenSeries = true; + me.label.setAttributes({ + opacity: 0.5 + }, true); + }; + + + me.updatePosition({ x: 0, y: 0 }); + }, + + + getLabelText: function() { + var me = this, + series = me.series, + idx = me.yFieldIndex; + + function getSeriesProp(name) { + var val = series[name]; + return (Ext.isArray(val) ? val[idx] : val); + } + + return getSeriesProp('title') || getSeriesProp('yField'); + }, + + + createLabel: function(config) { + var me = this, + legend = me.legend; + + return me.add('label', me.surface.add({ + type: 'text', + x: 20, + y: 0, + zIndex: (me.zIndex || 0) + 2, + fill: legend.labelColor, + font: legend.labelFont, + text: me.getLabelText(), + style: { + cursor: 'pointer' + } + })); + }, + + + createSeriesMarkers: function(config) { + var me = this, + index = config.yFieldIndex, + series = me.series, + seriesType = series.type, + surface = me.surface, + z = me.zIndex; + + + if (seriesType === 'line' || seriesType === 'scatter') { + if(seriesType === 'line') { + var seriesStyle = Ext.apply(series.seriesStyle, series.style); + me.drawLine(0.5, 0.5, 16.5, 0.5, z, seriesStyle, index); + }; + + if (series.showMarkers || seriesType === 'scatter') { + var markerConfig = Ext.apply(series.markerStyle, series.markerConfig || {}, { + fill: series.getLegendColor(index) + }); + me.drawMarker(8.5, 0.5, z, markerConfig); + } + } + + else { + me.drawFilledBox(12, 12, z, index); + } + }, + + + drawLine: function(fromX, fromY, toX, toY, z, seriesStyle, index) { + var me = this, + surface = me.surface, + series = me.series; + + return me.add('line', surface.add({ + type: 'path', + path: 'M' + fromX + ',' + fromY + 'L' + toX + ',' + toY, + zIndex: (z || 0) + 2, + "stroke-width": series.lineWidth, + "stroke-linejoin": "round", + "stroke-dasharray": series.dash, + stroke: seriesStyle.stroke || series.getLegendColor(index) || '#000', + style: { + cursor: 'pointer' + } + })); + }, + + + drawMarker: function(x, y, z, markerConfig) { + var me = this, + surface = me.surface, + series = me.series; + + return me.add('marker', Ext.chart.Shape[markerConfig.type](surface, { + fill: markerConfig.fill, + x: x, + y: y, + zIndex: (z || 0) + 2, + radius: markerConfig.radius || markerConfig.size, + style: { + cursor: 'pointer' + } + })); + }, + + + drawFilledBox: function(width, height, z, index) { + var me = this, + surface = me.surface, + series = me.series; + + return me.add('box', surface.add({ + type: 'rect', + zIndex: (z || 0) + 2, + x: 0, + y: 0, + width: width, + height: height, + fill: series.getLegendColor(index), + style: { + cursor: 'pointer' + } + })); + }, + + + onMouseOver: function() { + var me = this; + + me.label.setStyle({ + 'font-weight': 'bold' + }); + me.series._index = me.yFieldIndex; + me.series.highlightItem(); + }, + + + onMouseOut: function() { + var me = this, + legend = me.legend, + boldRe = me.boldRe; + + me.label.setStyle({ + 'font-weight': legend.labelFont && boldRe.test(legend.labelFont) ? 'bold' : 'normal' + }); + me.series._index = me.yFieldIndex; + me.series.unHighlightItem(); + }, + + + onMouseDown: function() { + var me = this, + index = me.yFieldIndex; + + if (!me.hiddenSeries) { + me.series.hideAll(index); + me.label.setAttributes({ + opacity: 0.5 + }, true); + } else { + me.series.showAll(index); + me.label.setAttributes({ + opacity: 1 + }, true); + } + me.hiddenSeries = !me.hiddenSeries; + me.legend.chart.redraw(); + }, + + + updatePosition: function(relativeTo) { + var me = this, + items = me.items, + ln = items.length, + i = 0, + item; + if (!relativeTo) { + relativeTo = me.legend; + } + for (; i < ln; i++) { + item = items[i]; + switch (item.type) { + case 'text': + item.setAttributes({ + x: 20 + relativeTo.x + me.x, + y: relativeTo.y + me.y + }, true); + break; + case 'rect': + item.setAttributes({ + translate: { + x: relativeTo.x + me.x, + y: relativeTo.y + me.y - 6 + } + }, true); + break; + default: + item.setAttributes({ + translate: { + x: relativeTo.x + me.x, + y: relativeTo.y + me.y + } + }, true); + } + } + } +}); + + +Ext.define('Ext.chart.Legend', { + + + + + + + + + visible: true, + + + update: true, + + + position: 'bottom', + + + x: 0, + + + y: 0, + + + labelColor: '#000', + + + labelFont: '12px Helvetica, sans-serif', + + + boxStroke: '#000', + + + boxStrokeWidth: 1, + + + boxFill: '#FFF', + + + itemSpacing: 10, + + + padding: 5, + + + width: 0, + + height: 0, + + + boxZIndex: 100, + + + constructor: function(config) { + var me = this; + if (config) { + Ext.apply(me, config); + } + me.items = []; + + me.isVertical = ("left|right|float".indexOf(me.position) !== -1); + + + me.origX = me.x; + me.origY = me.y; + }, + + + create: function() { + var me = this, + seriesItems = me.chart.series.items, + i, ln, series; + + me.createBox(); + + if (me.rebuild !== false) { + me.createItems(); + } + + if (!me.created && me.isDisplayed()) { + me.created = true; + + + for (i = 0, ln = seriesItems.length; i < ln; i++) { + series = seriesItems[i]; + series.on('titlechange', me.redraw, me); + } + } + }, + + + redraw: function() { + var me = this; + + me.create(); + me.updatePosition(); + }, + + + isDisplayed: function() { + return this.visible && this.chart.series.findIndex('showInLegend', true) !== -1; + }, + + + createItems: function() { + var me = this, + seriesItems = me.chart.series.items, + items = me.items, + fields, i, li, j, lj, series, item; + + + me.removeItems(); + + + for (i = 0, li = seriesItems.length; i < li; i++) { + series = seriesItems[i]; + + if (series.showInLegend) { + fields = [].concat(series.yField); + + for (j = 0, lj = fields.length; j < lj; j++) { + item = me.createLegendItem(series, j); + items.push(item); + } + } + } + + me.alignItems(); + }, + + + removeItems: function() { + var me = this, + items = me.items, + len = items ? items.length : 0, + i; + + if (len) { + for (i = 0; i < len; i++) { + items[i].destroy(); + } + } + + + items.length = []; + }, + + + alignItems: function() { + var me = this, + padding = me.padding, + vertical = me.isVertical, + mfloor = Math.floor, + dim, maxWidth, maxHeight, totalWidth, totalHeight; + + dim = me.updateItemDimensions(); + + maxWidth = dim.maxWidth; + maxHeight = dim.maxHeight; + totalWidth = dim.totalWidth; + totalHeight = dim.totalHeight; + + + me.width = mfloor((vertical ? maxWidth : totalWidth) + padding * 2); + me.height = mfloor((vertical ? totalHeight : maxHeight) + padding * 2); + }, + + updateItemDimensions: function() { + var me = this, + items = me.items, + padding = me.padding, + itemSpacing = me.itemSpacing, + maxWidth = 0, + maxHeight = 0, + totalWidth = 0, + totalHeight = 0, + vertical = me.isVertical, + mfloor = Math.floor, + mmax = Math.max, + spacing = 0, + i, l, item, bbox, width, height; + + + + for (i = 0, l = items.length; i < l; i++) { + item = items[i]; + + bbox = item.getBBox(); + + + width = bbox.width; + height = bbox.height; + + spacing = (i === 0 ? 0 : itemSpacing); + + + item.x = padding + mfloor(vertical ? 0 : totalWidth + spacing); + item.y = padding + mfloor(vertical ? totalHeight + spacing : 0) + height / 2; + + + totalWidth += spacing + width; + totalHeight += spacing + height; + maxWidth = mmax(maxWidth, width); + maxHeight = mmax(maxHeight, height); + } + + return { + totalWidth: totalWidth, + totalHeight: totalHeight, + maxWidth: maxWidth, + maxHeight: maxHeight + }; + }, + + + createLegendItem: function(series, yFieldIndex) { + var me = this; + + return new Ext.chart.LegendItem({ + legend: me, + series: series, + surface: me.chart.surface, + yFieldIndex: yFieldIndex + }); + }, + + + getBBox: function() { + var me = this; + return { + x: Math.round(me.x) - me.boxStrokeWidth / 2, + y: Math.round(me.y) - me.boxStrokeWidth / 2, + width: me.width + me.boxStrokeWidth, + height: me.height + me.boxStrokeWidth + }; + }, + + + createBox: function() { + var me = this, + box, bbox; + + if (me.boxSprite) { + me.boxSprite.destroy(); + } + + bbox = me.getBBox(); + + + + + + if (isNaN(bbox.width) || isNaN(bbox.height)) { + me.boxSprite = false; + return; + } + + box = me.boxSprite = me.chart.surface.add(Ext.apply({ + type: 'rect', + stroke: me.boxStroke, + "stroke-width": me.boxStrokeWidth, + fill: me.boxFill, + zIndex: me.boxZIndex + }, bbox)); + + box.redraw(); + }, + + + calcPosition: function() { + var me = this, + x, y, + legendWidth = me.width, + legendHeight = me.height, + chart = me.chart, + chartBBox = chart.chartBBox, + insets = chart.insetPadding, + chartWidth = chartBBox.width - (insets * 2), + chartHeight = chartBBox.height - (insets * 2), + chartX = chartBBox.x + insets, + chartY = chartBBox.y + insets, + surface = chart.surface, + mfloor = Math.floor; + + + switch(me.position) { + case "left": + x = insets; + y = mfloor(chartY + chartHeight / 2 - legendHeight / 2); + break; + case "right": + x = mfloor(surface.width - legendWidth) - insets; + y = mfloor(chartY + chartHeight / 2 - legendHeight / 2); + break; + case "top": + x = mfloor(chartX + chartWidth / 2 - legendWidth / 2); + y = insets; + break; + case "bottom": + x = mfloor(chartX + chartWidth / 2 - legendWidth / 2); + y = mfloor(surface.height - legendHeight) - insets; + break; + default: + x = mfloor(me.origX) + insets; + y = mfloor(me.origY) + insets; + } + + return { x: x, y: y }; + }, + + + updatePosition: function() { + var me = this, + items = me.items, + pos, i, l, bbox; + + if (me.isDisplayed()) { + + pos = me.calcPosition(); + + me.x = pos.x; + me.y = pos.y; + + + for (i = 0, l = items.length; i < l; i++) { + items[i].updatePosition(); + } + + bbox = me.getBBox(); + + + + + + + if (isNaN(bbox.width) || isNaN(bbox.height)) { + if (me.boxSprite) { + me.boxSprite.hide(true); + } + } + else { + if (!me.boxSprite) { + me.createBox(); + } + + + me.boxSprite.setAttributes(bbox, true); + me.boxSprite.show(true); + } + } + }, + + + toggle: function(show) { + var me = this, + i = 0, + items = me.items, + len = items.length; + + if (me.boxSprite) { + if (show) { + me.boxSprite.show(true); + } else { + me.boxSprite.hide(true); + } + } + + for (; i < len; ++i) { + if (show) { + items[i].show(true); + } else { + items[i].hide(true); + } + } + + me.visible = show; + } +}); + + +Ext.define('Ext.chart.theme.Base', { + + + + + + + + constructor: function(config) { + var ident = Ext.identityFn; + Ext.chart.theme.call(this, config, { + background: false, + axis: { + stroke: '#444', + 'stroke-width': 1 + }, + axisLabelTop: { + fill: '#444', + font: '12px Arial, Helvetica, sans-serif', + spacing: 2, + padding: 5, + renderer: ident + }, + axisLabelRight: { + fill: '#444', + font: '12px Arial, Helvetica, sans-serif', + spacing: 2, + padding: 5, + renderer: ident + }, + axisLabelBottom: { + fill: '#444', + font: '12px Arial, Helvetica, sans-serif', + spacing: 2, + padding: 5, + renderer: ident + }, + axisLabelLeft: { + fill: '#444', + font: '12px Arial, Helvetica, sans-serif', + spacing: 2, + padding: 5, + renderer: ident + }, + axisTitleTop: { + font: 'bold 18px Arial', + fill: '#444' + }, + axisTitleRight: { + font: 'bold 18px Arial', + fill: '#444', + rotate: { + x:0, y:0, + degrees: 270 + } + }, + axisTitleBottom: { + font: 'bold 18px Arial', + fill: '#444' + }, + axisTitleLeft: { + font: 'bold 18px Arial', + fill: '#444', + rotate: { + x:0, y:0, + degrees: 270 + } + }, + series: { + 'stroke-width': 0 + }, + seriesLabel: { + font: '12px Arial', + fill: '#333' + }, + marker: { + stroke: '#555', + radius: 3, + size: 3 + }, + colors: [ "#94ae0a", "#115fa6","#a61120", "#ff8809", "#ffd13e", "#a61187", "#24ad9a", "#7c7474", "#a66111"], + seriesThemes: [{ + fill: "#115fa6" + }, { + fill: "#94ae0a" + }, { + fill: "#a61120" + }, { + fill: "#ff8809" + }, { + fill: "#ffd13e" + }, { + fill: "#a61187" + }, { + fill: "#24ad9a" + }, { + fill: "#7c7474" + }, { + fill: "#115fa6" + }, { + fill: "#94ae0a" + }, { + fill: "#a61120" + }, { + fill: "#ff8809" + }, { + fill: "#ffd13e" + }, { + fill: "#a61187" + }, { + fill: "#24ad9a" + }, { + fill: "#7c7474" + }, { + fill: "#a66111" + }], + markerThemes: [{ + fill: "#115fa6", + type: 'circle' + }, { + fill: "#94ae0a", + type: 'cross' + }, { + fill: "#115fa6", + type: 'plus' + }, { + fill: "#94ae0a", + type: 'circle' + }, { + fill: "#a61120", + type: 'cross' + }] + }); + } +}, function() { + var palette = ['#b1da5a', '#4ce0e7', '#e84b67', '#da5abd', '#4d7fe6', '#fec935'], + names = ['Green', 'Sky', 'Red', 'Purple', 'Blue', 'Yellow'], + i = 0, j = 0, l = palette.length, themes = Ext.chart.theme, + categories = [['#f0a50a', '#c20024', '#2044ba', '#810065', '#7eae29'], + ['#6d9824', '#87146e', '#2a9196', '#d39006', '#1e40ac'], + ['#fbbc29', '#ce2e4e', '#7e0062', '#158b90', '#57880e'], + ['#ef5773', '#fcbd2a', '#4f770d', '#1d3eaa', '#9b001f'], + ['#7eae29', '#fdbe2a', '#910019', '#27b4bc', '#d74dbc'], + ['#44dce1', '#0b2592', '#996e05', '#7fb325', '#b821a1']], + cats = categories.length; + + + for (; i < l; i++) { + themes[names[i]] = (function(color) { + return Ext.extend(themes.Base, { + constructor: function(config) { + themes.Base.prototype.constructor.call(this, Ext.apply({ + baseColor: color + }, config)); + } + }); + }(palette[i])); + } + + + for (i = 0; i < cats; i++) { + themes['Category' + (i + 1)] = (function(category) { + return Ext.extend(themes.Base, { + constructor: function(config) { + themes.Base.prototype.constructor.call(this, Ext.apply({ + colors: category + }, config)); + } + }); + }(categories[i])); + } +}); + + +Ext.define('Ext.chart.Chart', { + extend: Ext.draw.Component , + + alias: 'widget.chart', + + mixins: { + themeManager: Ext.chart.theme.Theme , + mask: Ext.chart.Mask , + navigation: Ext.chart.Navigation , + bindable: Ext.util.Bindable , + observable: Ext.util.Observable + }, + + + + + + + + + + + + + + + + + + viewBox: false, + + + + + animate: false, + + + legend: false, + + + insetPadding: 10, + + + background: false, + + + + + + + + + + constructor: function(config) { + var me = this, + defaultAnim; + + config = Ext.apply({}, config); + me.initTheme(config.theme || me.theme); + if (me.gradients) { + Ext.apply(config, { gradients: me.gradients }); + } + if (me.background) { + Ext.apply(config, { background: me.background }); + } + if (config.animate) { + defaultAnim = { + easing: 'ease', + duration: 500 + }; + if (Ext.isObject(config.animate)) { + config.animate = Ext.applyIf(config.animate, defaultAnim); + } + else { + config.animate = defaultAnim; + } + } + + me.mixins.observable.constructor.call(me, config); + if (config.enableMask) { + me.mixins.mask.constructor.call(me); + } + me.mixins.navigation.constructor.call(me); + me.callParent([config]); + }, + + getChartStore: function(){ + return this.substore || this.store; + }, + + initComponent: function() { + var me = this, + axes, + series; + me.callParent(); + me.addEvents( + 'itemmousedown', + 'itemmouseup', + 'itemmouseover', + 'itemmouseout', + 'itemclick', + 'itemdblclick', + 'itemdragstart', + 'itemdrag', + 'itemdragend', + + 'beforerefresh', + + 'refresh' + ); + Ext.applyIf(me, { + zoom: { + width: 1, + height: 1, + x: 0, + y: 0 + } + }); + me.maxGutters = { left: 0, right: 0, bottom: 0, top: 0 }; + me.store = Ext.data.StoreManager.lookup(me.store); + axes = me.axes; + me.axes = new Ext.util.MixedCollection(false, function(a) { return a.position; }); + if (axes) { + me.axes.addAll(axes); + } + series = me.series; + me.series = new Ext.util.MixedCollection(false, function(a) { return a.seriesId || (a.seriesId = Ext.id(null, 'ext-chart-series-')); }); + if (series) { + me.series.addAll(series); + } + if (me.legend !== false) { + me.legend = new Ext.chart.Legend(Ext.applyIf({chart:me}, me.legend)); + } + + me.on({ + mousemove: me.onMouseMove, + mouseleave: me.onMouseLeave, + mousedown: me.onMouseDown, + mouseup: me.onMouseUp, + click: me.onClick, + dblclick: me.onDblClick, + scope: me + }); + }, + + + afterComponentLayout: function(width, height, oldWidth, oldHeight) { + var me = this; + if (Ext.isNumber(width) && Ext.isNumber(height)) { + if (width !== oldWidth || height !== oldHeight) { + me.curWidth = width; + me.curHeight = height; + me.redraw(true); + me.needsRedraw = false; + } else if (me.needsRedraw) { + me.redraw(); + me.needsRedraw = false; + } + } + this.callParent(arguments); + }, + + + redraw: function(resize) { + var me = this, + seriesItems = me.series.items, + seriesLen = seriesItems.length, + axesItems = me.axes.items, + axesLen = axesItems.length, + themeIndex = 0, + i, item, + chartBBox = me.chartBBox = { + x: 0, + y: 0, + height: me.curHeight, + width: me.curWidth + }, + legend = me.legend, + series; + + me.surface.setSize(chartBBox.width, chartBBox.height); + + for (i = 0; i < seriesLen; i++) { + item = seriesItems[i]; + if (!item.initialized) { + series = me.initializeSeries(item, i, themeIndex); + } else { + series = item; + } + + + series.onRedraw(); + + + if (Ext.isArray(item.yField)) { + themeIndex += item.yField.length; + } else { + ++themeIndex; + } + } + for (i = 0; i < axesLen; i++) { + item = axesItems[i]; + if (!item.initialized) { + me.initializeAxis(item); + } + } + + + for (i = 0; i < axesLen; i++) { + axesItems[i].processView(); + } + for (i = 0; i < axesLen; i++) { + axesItems[i].drawAxis(true); + } + + + if (legend !== false && legend.visible) { + if (legend.update || !legend.created) { + legend.create(); + } + } + + + me.alignAxes(); + + + if (legend !== false && legend.visible) { + legend.updatePosition(); + } + + + me.getMaxGutters(); + + + me.resizing = !!resize; + + for (i = 0; i < axesLen; i++) { + axesItems[i].drawAxis(); + } + for (i = 0; i < seriesLen; i++) { + me.drawCharts(seriesItems[i]); + } + me.resizing = false; + }, + + + afterRender: function() { + var me = this; + + me.callParent(arguments); + + if (me.categoryNames) { + me.setCategoryNames(me.categoryNames); + } + + me.bindStore(me.store, true); + me.refresh(); + + if (me.surface.engine === 'Vml') { + me.on('added', me.onAddedVml, me); + me.mon(me.hierarchyEventSource, 'added', me.onContainerAddedVml, me); + } + }, + + + + + + + onAddedVml: function() { + this.needsRedraw = true; + }, + + onContainerAddedVml: function(container) { + if (this.isDescendantOf(container)) { + this.needsRedraw = true; + } + }, + + + getEventXY: function(e) { + var me = this, + box = this.surface.getRegion(), + pageXY = e.getXY(), + x = pageXY[0] - box.left, + y = pageXY[1] - box.top; + return [x, y]; + }, + + onClick: function(e) { + this.handleClick('itemclick', e); + }, + + onDblClick: function(e) { + this.handleClick('itemdblclick', e); + }, + + + handleClick: function(name, e) { + var me = this, + position = me.getEventXY(e), + seriesItems = me.series.items, + i, ln, series, + item; + + + + for (i = 0, ln = seriesItems.length; i < ln; i++) { + series = seriesItems[i]; + if (Ext.draw.Draw.withinBox(position[0], position[1], series.bbox)) { + if (series.getItemForPoint) { + item = series.getItemForPoint(position[0], position[1]); + if (item) { + series.fireEvent(name, item); + } + } + } + } + }, + + + onMouseDown: function(e) { + var me = this, + position = me.getEventXY(e), + seriesItems = me.series.items, + i, ln, series, + item; + + if (me.enableMask) { + me.mixins.mask.onMouseDown.call(me, e); + } + + + for (i = 0, ln = seriesItems.length; i < ln; i++) { + series = seriesItems[i]; + if (Ext.draw.Draw.withinBox(position[0], position[1], series.bbox)) { + if (series.getItemForPoint) { + item = series.getItemForPoint(position[0], position[1]); + if (item) { + series.fireEvent('itemmousedown', item); + } + } + } + } + }, + + + onMouseUp: function(e) { + var me = this, + position = me.getEventXY(e), + seriesItems = me.series.items, + i, ln, series, + item; + + if (me.enableMask) { + me.mixins.mask.onMouseUp.call(me, e); + } + + + for (i = 0, ln = seriesItems.length; i < ln; i++) { + series = seriesItems[i]; + if (Ext.draw.Draw.withinBox(position[0], position[1], series.bbox)) { + if (series.getItemForPoint) { + item = series.getItemForPoint(position[0], position[1]); + if (item) { + series.fireEvent('itemmouseup', item); + } + } + } + } + }, + + + onMouseMove: function(e) { + var me = this, + position = me.getEventXY(e), + seriesItems = me.series.items, + i, ln, series, + item, last, storeItem, storeField; + + + if (me.enableMask) { + me.mixins.mask.onMouseMove.call(me, e); + } + + + for (i = 0, ln = seriesItems.length; i < ln; i++) { + series = seriesItems[i]; + if (Ext.draw.Draw.withinBox(position[0], position[1], series.bbox)) { + if (series.getItemForPoint) { + item = series.getItemForPoint(position[0], position[1]); + last = series._lastItemForPoint; + storeItem = series._lastStoreItem; + storeField = series._lastStoreField; + + + if (item !== last || item && (item.storeItem != storeItem || item.storeField != storeField)) { + if (last) { + series.fireEvent('itemmouseout', last); + delete series._lastItemForPoint; + delete series._lastStoreField; + delete series._lastStoreItem; + } + if (item) { + series.fireEvent('itemmouseover', item); + series._lastItemForPoint = item; + series._lastStoreItem = item.storeItem; + series._lastStoreField = item.storeField; + } + } + } + } else { + last = series._lastItemForPoint; + if (last) { + series.fireEvent('itemmouseout', last); + delete series._lastItemForPoint; + delete series._lastStoreField; + delete series._lastStoreItem; + } + } + } + }, + + + onMouseLeave: function(e) { + var me = this, + seriesItems = me.series.items, + i, ln, series; + + if (me.enableMask) { + me.mixins.mask.onMouseLeave.call(me, e); + } + for (i = 0, ln = seriesItems.length; i < ln; i++) { + series = seriesItems[i]; + delete series._lastItemForPoint; + } + }, + + + delayRefresh: function() { + var me = this; + if (!me.refreshTask) { + me.refreshTask = new Ext.util.DelayedTask(me.refresh, me); + } + me.refreshTask.delay(me.refreshBuffer); + }, + + + refresh: function() { + var me = this; + + if (me.rendered && me.curWidth !== undefined && me.curHeight !== undefined) { + if (!me.isVisible(true)) { + if (!me.refreshPending) { + me.setShowListeners('mon'); + me.refreshPending = true; + } + return; + } + if (me.fireEvent('beforerefresh', me) !== false) { + me.redraw(); + me.fireEvent('refresh', me); + } + } + }, + + onShow: function(){ + var me = this; + me.callParent(arguments); + if (me.refreshPending) { + me.delayRefresh(); + me.setShowListeners('mun'); + } + delete me.refreshPending; + }, + + setShowListeners: function(method){ + var me = this; + me[method](me.hierarchyEventSource, { + scope: me, + single: true, + show: me.forceRefresh, + expand: me.forceRefresh + }); + }, + + doRefresh: function(){ + + this.setSubStore(null); + this.refresh(); + }, + + forceRefresh: function(container) { + var me = this; + if (me.isDescendantOf(container) && me.refreshPending) { + + + me.setShowListeners('mun'); + me.delayRefresh(); + } + delete me.refreshPending; + }, + + bindStore: function(store, initial) { + var me = this; + me.mixins.bindable.bindStore.apply(me, arguments); + if (me.store && !initial) { + me.refresh(); + } + }, + + getStoreListeners: function() { + var refresh = this.doRefresh, + delayRefresh = this.delayRefresh; + + return { + refresh: refresh, + add: delayRefresh, + bulkremove: delayRefresh, + update: delayRefresh, + clear: refresh + }; + }, + + setSubStore: function(subStore){ + this.substore = subStore; + }, + + + initializeAxis: function(axis) { + var me = this, + chartBBox = me.chartBBox, + w = chartBBox.width, + h = chartBBox.height, + x = chartBBox.x, + y = chartBBox.y, + themeAttrs = me.themeAttrs, + config = { + chart: me + }; + if (themeAttrs) { + config.axisStyle = Ext.apply({}, themeAttrs.axis); + config.axisLabelLeftStyle = Ext.apply({}, themeAttrs.axisLabelLeft); + config.axisLabelRightStyle = Ext.apply({}, themeAttrs.axisLabelRight); + config.axisLabelTopStyle = Ext.apply({}, themeAttrs.axisLabelTop); + config.axisLabelBottomStyle = Ext.apply({}, themeAttrs.axisLabelBottom); + config.axisTitleLeftStyle = Ext.apply({}, themeAttrs.axisTitleLeft); + config.axisTitleRightStyle = Ext.apply({}, themeAttrs.axisTitleRight); + config.axisTitleTopStyle = Ext.apply({}, themeAttrs.axisTitleTop); + config.axisTitleBottomStyle = Ext.apply({}, themeAttrs.axisTitleBottom); + } + switch (axis.position) { + case 'top': + Ext.apply(config, { + length: w, + width: h, + x: x, + y: y + }); + break; + case 'bottom': + Ext.apply(config, { + length: w, + width: h, + x: x, + y: h + }); + break; + case 'left': + Ext.apply(config, { + length: h, + width: w, + x: x, + y: h + }); + break; + case 'right': + Ext.apply(config, { + length: h, + width: w, + x: w, + y: h + }); + break; + } + if (!axis.chart) { + Ext.apply(config, axis); + axis = me.axes.replace(Ext.createByAlias('axis.' + axis.type.toLowerCase(), config)); + } else { + Ext.apply(axis, config); + } + axis.initialized = true; + }, + + + + getInsets: function() { + var me = this, + insetPadding = me.insetPadding; + + return { + top: insetPadding, + right: insetPadding, + bottom: insetPadding, + left: insetPadding + }; + }, + + + calculateInsets: function() { + var me = this, + legend = me.legend, + axes = me.axes, + edges = ['top', 'right', 'bottom', 'left'], + insets, i, l, edge, isVertical, axis, bbox; + + function getAxis(edge) { + var i = axes.findIndex('position', edge); + return (i < 0) ? null : axes.getAt(i); + } + + insets = me.getInsets(); + + + for (i = 0, l = edges.length; i < l; i++) { + edge = edges[i]; + + isVertical = (edge === 'left' || edge === 'right'); + axis = getAxis(edge); + + + if (legend !== false) { + if (legend.position === edge) { + bbox = legend.getBBox(); + insets[edge] += (isVertical ? bbox.width : bbox.height) + me.insetPadding; + } + } + + + + if (axis && axis.bbox) { + bbox = axis.bbox; + insets[edge] += (isVertical ? bbox.width : bbox.height); + } + }; + + return insets; + }, + + + alignAxes: function() { + var me = this, + axesItems = me.axes.items, + insets, chartBBox, i, l, axis, pos, isVertical; + + insets = me.calculateInsets(); + + + chartBBox = { + x: insets.left, + y: insets.top, + width: me.curWidth - insets.left - insets.right, + height: me.curHeight - insets.top - insets.bottom + }; + me.chartBBox = chartBBox; + + + + for (i = 0, l = axesItems.length; i < l; i++) { + axis = axesItems[i]; + pos = axis.position; + isVertical = pos === 'left' || pos === 'right'; + + axis.x = (pos === 'right' ? chartBBox.x + chartBBox.width : chartBBox.x); + axis.y = (pos === 'top' ? chartBBox.y : chartBBox.y + chartBBox.height); + axis.width = (isVertical ? chartBBox.width : chartBBox.height); + axis.length = (isVertical ? chartBBox.height : chartBBox.width); + }; + }, + + + initializeSeries: function(series, idx, themeIndex) { + var me = this, + themeAttrs = me.themeAttrs, + seriesObj, markerObj, seriesThemes, st, + markerThemes, colorArrayStyle = [], + isInstance = (series instanceof Ext.chart.series.Series). + i = 0, l, config; + + if (!series.initialized) { + config = { + chart: me, + seriesId: series.seriesId + }; + if (themeAttrs) { + seriesThemes = themeAttrs.seriesThemes; + markerThemes = themeAttrs.markerThemes; + seriesObj = Ext.apply({}, themeAttrs.series); + markerObj = Ext.apply({}, themeAttrs.marker); + config.seriesStyle = Ext.apply(seriesObj, seriesThemes[themeIndex % seriesThemes.length]); + config.seriesLabelStyle = Ext.apply({}, themeAttrs.seriesLabel); + config.markerStyle = Ext.apply(markerObj, markerThemes[themeIndex % markerThemes.length]); + if (themeAttrs.colors) { + config.colorArrayStyle = themeAttrs.colors; + } else { + colorArrayStyle = []; + for (l = seriesThemes.length; i < l; i++) { + st = seriesThemes[i]; + if (st.fill || st.stroke) { + colorArrayStyle.push(st.fill || st.stroke); + } + } + if (colorArrayStyle.length) { + config.colorArrayStyle = colorArrayStyle; + } + } + config.seriesIdx = idx; + config.themeIdx = themeIndex; + } + + if (isInstance) { + Ext.applyIf(series, config); + } + else { + Ext.applyIf(config, series); + series = me.series.replace(Ext.createByAlias('series.' + series.type.toLowerCase(), config)); + } + } + + if (series.initialize) { + series.initialize(); + } + series.initialized = true; + return series; + }, + + + getMaxGutters: function() { + var me = this, + seriesItems = me.series.items, + i, ln, series, gutters, + lowerH = 0, upperH = 0, lowerV = 0, upperV = 0; + + for (i = 0, ln = seriesItems.length; i < ln; i++) { + gutters = seriesItems[i].getGutters(); + if (gutters) { + if (gutters.verticalAxis) { + lowerV = Math.max(lowerV, gutters.lower); + upperV = Math.max(upperV, gutters.upper); + } + else { + lowerH = Math.max(lowerH, gutters.lower); + upperH = Math.max(upperH, gutters.upper); + } + } + } + me.maxGutters = { + left: lowerH, + right: upperH, + bottom: lowerV, + top: upperV + }; + }, + + + drawAxis: function(axis) { + axis.drawAxis(); + }, + + + drawCharts: function(series) { + series.triggerafterrender = false; + series.drawSeries(); + if (!this.animate) { + series.fireEvent('afterrender'); + } + }, + + save: function(config){ + return Ext.draw.Surface.save(this.surface, config); + }, + + destroy: function() { + Ext.destroy(this.surface); + this.bindStore(null); + this.callParent(arguments); + } +}); + + +Ext.define('Ext.chart.Highlight', { + + + + + + + + + highlight: false, + + + highlightCfg : { + fill: '#fdd', + "stroke-width": 5, + stroke: '#f55' + }, + + constructor: function(config) { + + if (config.highlight && (typeof config.highlight !== 'boolean')) { + this.highlightCfg = Ext.merge({}, this.highlightCfg, config.highlight); + } + }, + + + highlightItem: function(item) { + if (!item) { + return; + } + + var me = this, + sprite = item.sprite, + opts = Ext.merge({}, me.highlightCfg, me.highlight), + surface = me.chart.surface, + animate = me.chart.animate, + p, from, to, pi; + + if (!me.highlight || !sprite || sprite._highlighted) { + return; + } + if (sprite._anim) { + sprite._anim.paused = true; + } + sprite._highlighted = true; + if (!sprite._defaults) { + sprite._defaults = Ext.apply({}, sprite.attr); + from = {}; + to = {}; + + for (p in opts) { + if (! (p in sprite._defaults)) { + sprite._defaults[p] = surface.availableAttrs[p]; + } + from[p] = sprite._defaults[p]; + to[p] = opts[p]; + if (Ext.isObject(opts[p])) { + from[p] = {}; + to[p] = {}; + Ext.apply(sprite._defaults[p], sprite.attr[p]); + Ext.apply(from[p], sprite._defaults[p]); + for (pi in sprite._defaults[p]) { + if (! (pi in opts[p])) { + to[p][pi] = from[p][pi]; + } else { + to[p][pi] = opts[p][pi]; + } + } + for (pi in opts[p]) { + if (! (pi in to[p])) { + to[p][pi] = opts[p][pi]; + } + } + } + } + sprite._from = from; + sprite._to = to; + sprite._endStyle = to; + } + if (animate) { + sprite._anim = new Ext.fx.Anim({ + target: sprite, + from: sprite._from, + to: sprite._to, + duration: 150 + }); + } else { + sprite.setAttributes(sprite._to, true); + } + }, + + + unHighlightItem: function() { + if (!this.highlight || !this.items) { + return; + } + + var me = this, + items = me.items, + len = items.length, + opts = Ext.merge({}, me.highlightCfg, me.highlight), + animate = me.chart.animate, + i = 0, + obj, p, sprite; + for (; i < len; i++) { + if (!items[i]) { + continue; + } + sprite = items[i].sprite; + if (sprite && sprite._highlighted) { + if (sprite._anim) { + sprite._anim.paused = true; + } + obj = {}; + for (p in opts) { + if (Ext.isObject(sprite._defaults[p])) { + obj[p] = Ext.apply({}, sprite._defaults[p]); + } + else { + obj[p] = sprite._defaults[p]; + } + } + if (animate) { + + sprite._endStyle = obj; + sprite._anim = new Ext.fx.Anim({ + target: sprite, + to: obj, + duration: 150 + }); + } + else { + sprite.setAttributes(obj, true); + } + delete sprite._highlighted; + + } + } + }, + + cleanHighlights: function() { + if (!this.highlight) { + return; + } + + var group = this.group, + markerGroup = this.markerGroup, + i = 0, + l; + for (l = group.getCount(); i < l; i++) { + delete group.getAt(i)._defaults; + } + if (markerGroup) { + for (l = markerGroup.getCount(); i < l; i++) { + delete markerGroup.getAt(i)._defaults; + } + } + } +}); + + +Ext.define('Ext.chart.Label', { + + + + + + + + + + + + + + + colorStringRe: /url\s*\(\s*#([^\/)]+)\s*\)/, + + + constructor: function(config) { + var me = this; + me.label = Ext.applyIf(me.label || {}, + { + display: "none", + stackedDisplay: "none", + color: "#000", + field: "name", + minMargin: 50, + font: "11px Helvetica, sans-serif", + orientation: "horizontal", + renderer: Ext.identityFn + }); + + if (me.label.display !== 'none') { + me.labelsGroup = me.chart.surface.getGroup(me.seriesId + '-labels'); + } + }, + + + renderLabels: function() { + var me = this, + chart = me.chart, + gradients = chart.gradients, + items = me.items, + animate = chart.animate, + config = me.label, + display = config.display, + stackedDisplay = config.stackedDisplay, + format = config.renderer, + color = config.color, + field = [].concat(config.field), + group = me.labelsGroup, + groupLength = (group || 0) && group.length, + store = me.chart.getChartStore(), + len = store.getCount(), + itemLength = (items || 0) && items.length, + ratio = itemLength / len, + gradientsCount = (gradients || 0) && gradients.length, + Color = Ext.draw.Color, + hides = [], + gradient, i, count, groupIndex, index, j, k, colorStopTotal, colorStopIndex, colorStop, item, label, + storeItem, sprite, spriteColor, spriteBrightness, labelColor, colorString, + total, totalPositive, totalNegative, topText, bottomText; + + if (display == 'none' || !group) { + return; + } + + if(itemLength == 0){ + while(groupLength--) { + hides.push(groupLength); + } + } else { + for (i = 0, count = 0, groupIndex = 0; i < len; i++) { + index = 0; + for (j = 0; j < ratio; j++) { + item = items[count]; + label = group.getAt(groupIndex); + storeItem = store.getAt(i); + + while(this.__excludes && this.__excludes[index]) { + index++; + } + + if (!item && label) { + label.hide(true); + groupIndex++; + } + + if (item && field[j]) { + if (!label) { + label = me.onCreateLabel(storeItem, item, i, display); + if (!label) { + break; + } + } + + + label.setAttributes({ + fill: String(color) + }, true); + + + me.onPlaceLabel(label, storeItem, item, i, display, animate, index); + groupIndex++; + + + if (config.contrast && item.sprite) { + sprite = item.sprite; + + + if (animate && sprite._endStyle) { + colorString = sprite._endStyle.fill; + } else if (animate && sprite._to) { + colorString = sprite._to.fill; + } else { + colorString = sprite.attr.fill; + } + colorString = colorString || sprite.attr.fill; + + spriteColor = Color.fromString(colorString); + + if (colorString && !spriteColor) { + colorString = colorString.match(me.colorStringRe)[1]; + for (k = 0; k < gradientsCount; k++) { + gradient = gradients[k]; + if (gradient.id == colorString) { + + colorStop = 0; colorStopTotal = 0; + for (colorStopIndex in gradient.stops) { + colorStop++; + colorStopTotal += Color.fromString(gradient.stops[colorStopIndex].color).getGrayscale(); + } + spriteBrightness = (colorStopTotal / colorStop) / 255; + break; + } + } + } + else { + spriteBrightness = spriteColor.getGrayscale() / 255; + } + if (label.isOutside) { + spriteBrightness = 1; + } + labelColor = Color.fromString(label.attr.fill || label.attr.color).getHSL(); + labelColor[2] = spriteBrightness > 0.5 ? 0.2 : 0.8; + label.setAttributes({ + fill: String(Color.fromHSL.apply({}, labelColor)) + }, true); + } + + + if (me.stacked && stackedDisplay && (item.totalPositiveValues || item.totalNegativeValues)) { + totalPositive = (item.totalPositiveValues || 0); + totalNegative = (item.totalNegativeValues || 0); + total = totalPositive + totalNegative; + + if (stackedDisplay == 'total') { + topText = format(total); + } else if (stackedDisplay == 'balances') { + if (totalPositive == 0 && totalNegative == 0) { + topText = format(0); + } else { + topText = format(totalPositive); + bottomText = format(totalNegative); + } + } + + if (topText) { + label = group.getAt(groupIndex); + if (!label) { + label = me.onCreateLabel(storeItem, item, i, 'over'); + } + labelColor = Color.fromString(label.attr.color || label.attr.fill).getHSL(); + label.setAttributes({ + text: topText, + style: config.font, + fill: String(Color.fromHSL.apply({}, labelColor)) + }, true); + me.onPlaceLabel(label, storeItem, item, i, 'over', animate, index); + groupIndex ++; + } + + if (bottomText) { + label = group.getAt(groupIndex); + if (!label) { + label = me.onCreateLabel(storeItem, item, i, 'under'); + } + labelColor = Color.fromString(label.attr.color || label.attr.fill).getHSL(); + label.setAttributes({ + text: bottomText, + style: config.font, + fill: String(Color.fromHSL.apply({}, labelColor)) + }, true); + me.onPlaceLabel(label, storeItem, item, i, 'under', animate, index); + groupIndex ++; + } + } + } + count++; + index++; + } + } + groupLength = group.length; + + while(groupLength > groupIndex){ + hides.push(groupIndex); + groupIndex++; + } + } + me.hideLabels(hides); + }, + + hideLabels: function(hides){ + var labelsGroup = this.labelsGroup, + hlen = !!hides && hides.length; + + if (!labelsGroup) { + return; + } + + if (hlen === false) { + hlen = labelsGroup.getCount(); + while (hlen--) { + labelsGroup.getAt(hlen).hide(true); + } + } else { + while(hlen--) { + labelsGroup.getAt(hides[hlen]).hide(true); + } + } + } +}); + + +Ext.define('Ext.chart.TipSurface', { + + + + extend: Ext.draw.Component , + + + + spriteArray: false, + renderFirst: true, + + constructor: function(config) { + this.callParent([config]); + if (config.sprites) { + this.spriteArray = [].concat(config.sprites); + delete config.sprites; + } + }, + + onRender: function() { + var me = this, + i = 0, + l = 0, + sp, + sprites; + this.callParent(arguments); + sprites = me.spriteArray; + if (me.renderFirst && sprites) { + me.renderFirst = false; + for (l = sprites.length; i < l; i++) { + sp = me.surface.add(sprites[i]); + sp.setAttributes({ + hidden: false + }, + true); + } + } + } +}); + + +Ext.define('Ext.chart.Tip', { + + + + + + + + constructor: function(config) { + var me = this, + surface, + sprites, + tipSurface; + if (config.tips) { + me.tipTimeout = null; + me.tipConfig = Ext.apply({}, config.tips, { + renderer: Ext.emptyFn, + constrainPosition: true, + autoHide: true + }); + me.tooltip = new Ext.tip.ToolTip(me.tipConfig); + me.chart.surface.on('mousemove', me.tooltip.onMouseMove, me.tooltip); + me.chart.surface.on('mouseleave', function() { + me.hideTip(); + }); + if (me.tipConfig.surface) { + + surface = me.tipConfig.surface; + sprites = surface.sprites; + tipSurface = new Ext.chart.TipSurface({ + id: 'tipSurfaceComponent', + sprites: sprites + }); + if (surface.width && surface.height) { + tipSurface.setSize(surface.width, surface.height); + } + me.tooltip.add(tipSurface); + me.spriteTip = tipSurface; + } + } + }, + + showTip: function(item) { + var me = this, + tooltip, + spriteTip, + tipConfig, + trackMouse, + sprite, + surface, + surfaceExt, + pos, + x, + y; + if (!me.tooltip) { + return; + } + clearTimeout(me.tipTimeout); + tooltip = me.tooltip; + spriteTip = me.spriteTip; + tipConfig = me.tipConfig; + trackMouse = tooltip.trackMouse; + if (!trackMouse) { + tooltip.trackMouse = true; + sprite = item.sprite; + surface = sprite.surface; + surfaceExt = Ext.get(surface.getId()); + if (surfaceExt) { + pos = surfaceExt.getXY(); + x = pos[0] + (sprite.attr.x || 0) + (sprite.attr.translation && sprite.attr.translation.x || 0); + y = pos[1] + (sprite.attr.y || 0) + (sprite.attr.translation && sprite.attr.translation.y || 0); + tooltip.targetXY = [x, y]; + } + } + if (spriteTip) { + tipConfig.renderer.call(tooltip, item.storeItem, item, spriteTip.surface); + } else { + tipConfig.renderer.call(tooltip, item.storeItem, item); + } + tooltip.show(); + tooltip.trackMouse = trackMouse; + }, + + hideTip: function(item) { + var tooltip = this.tooltip; + if (!tooltip) { + return; + } + clearTimeout(this.tipTimeout); + this.tipTimeout = setTimeout(function() { + tooltip.hide(); + }, 0); + } +}); + + +Ext.define('Ext.chart.axis.Abstract', { + + + + + + + + + + + + + constructor: function(config) { + config = config || {}; + + var me = this, + pos = config.position || 'left'; + + pos = pos.charAt(0).toUpperCase() + pos.substring(1); + + config.label = Ext.apply(config['axisLabel' + pos + 'Style'] || {}, config.label || {}); + config.axisTitleStyle = Ext.apply(config['axisTitle' + pos + 'Style'] || {}, config.labelTitle || {}); + Ext.apply(me, config); + me.fields = Ext.Array.from(me.fields); + this.callParent(); + me.labels = []; + me.getId(); + me.labelGroup = me.chart.surface.getGroup(me.axisId + "-labels"); + }, + + alignment: null, + grid: false, + steps: 10, + x: 0, + y: 0, + minValue: 0, + maxValue: 0, + + getId: function() { + return this.axisId || (this.axisId = Ext.id(null, 'ext-axis-')); + }, + + + processView: Ext.emptyFn, + + drawAxis: Ext.emptyFn, + addDisplayAndLabels: Ext.emptyFn +}); + + +Ext.define('Ext.chart.axis.Axis', { + + + + extend: Ext.chart.axis.Abstract , + + alternateClassName: 'Ext.chart.Axis', + + + + + + + + + + + + + + + hidden: false, + + + forceMinMax: false, + + + dashSize: 3, + + + position: 'bottom', + + + skipFirst: false, + + + length: 0, + + + width: 0, + + + adjustEnd: true, + + majorTickSteps: false, + + nullGutters: { lower: 0, upper: 0, verticalAxis: undefined }, + + + applyData: Ext.emptyFn, + + getRange: function () { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + data = store.data.items, + series = chart.series.items, + position = me.position, + axes, + seriesClasses = Ext.chart.series, + aggregations = [], + min = Infinity, max = -Infinity, + vertical = me.position === 'left' || me.position === 'right' || me.position === 'radial', + i, ln, ln2, j, k, dataLength = data.length, aggregates, + countedFields = {}, + allFields = {}, + excludable = true, + fields, fieldMap, record, field, value; + + fields = me.fields; + for (j = 0, ln = fields.length; j < ln; j++) { + allFields[fields[j]] = true; + } + + for (i = 0, ln = series.length; i < ln; i++) { + if (series[i].seriesIsHidden) { + continue; + } + if (!series[i].getAxesForXAndYFields) { + continue; + } + axes = series[i].getAxesForXAndYFields(); + if (axes.xAxis && axes.xAxis !== position && axes.yAxis && axes.yAxis !== position) { + + continue; + } + + if (seriesClasses.Bar && series[i] instanceof seriesClasses.Bar && !series[i].column) { + + fields = vertical ? Ext.Array.from(series[i].xField) : Ext.Array.from(series[i].yField); + } else { + fields = vertical ? Ext.Array.from(series[i].yField) : Ext.Array.from(series[i].xField); + } + + if (me.fields.length) { + for (j = 0, ln2 = fields.length; j < ln2; j++) { + if (allFields[fields[j]]) { + break; + } + } + if (j == ln2) { + + continue; + } + } + + if (aggregates = series[i].stacked) { + + if (seriesClasses.Bar && series[i] instanceof seriesClasses.Bar) { + if (series[i].column != vertical) { + aggregates = false; + excludable = false; + } + } + + else if (!vertical) { + aggregates = false; + excludable = false; + } + } + + + if (aggregates) { + fieldMap = {}; + for (j = 0; j < fields.length; j++) { + if (excludable && series[i].__excludes && series[i].__excludes[j]) { + continue; + } + if (!allFields[fields[j]]) { + Ext.Logger.warn('Field `' + fields[j] + '` is not included in the ' + position + ' axis config.'); + } + allFields[fields[j]] = fieldMap[fields[j]] = true; + } + aggregations.push({ + fields: fieldMap, + positiveValue: 0, + negativeValue: 0 + }); + } else { + + if (!fields || fields.length == 0) { + fields = me.fields; + } + for (j = 0; j < fields.length; j++) { + if (excludable && series[i].__excludes && series[i].__excludes[j]) { + continue; + } + allFields[fields[j]] = countedFields[fields[j]] = true; + } + } + } + + for (i = 0; i < dataLength; i++) { + record = data[i]; + for (k = 0; k < aggregations.length; k++) { + aggregations[k].positiveValue = 0; + aggregations[k].negativeValue = 0; + } + for (field in allFields) { + value = record.get(field); + if (me.type == 'Time' && typeof value == "string") { + value = Date.parse(value); + } + if (isNaN(value)) { + continue; + } + if (value === undefined) { + value = 0; + } else { + value = Number(value); + } + if (countedFields[field]) { + if (min > value) { + min = value; + } + if (max < value) { + max = value; + } + } + for (k = 0; k < aggregations.length; k++) { + if (aggregations[k].fields[field]) { + + if (value >= 0) { + aggregations[k].positiveValue += value; + if (max < aggregations[k].positiveValue) { + max = aggregations[k].positiveValue; + } + + if (min > 0) { + min = 0; + } + } else { + aggregations[k].negativeValue += value; + if (min > aggregations[k].negativeValue) { + min = aggregations[k].negativeValue; + } + + if (max < 0) { + max = 0; + } + } + } + } + } + } + + if (!isFinite(max)) { + max = me.prevMax || 0; + } + if (!isFinite(min)) { + min = me.prevMin || 0; + } + + if (typeof min === 'number') { + min = Ext.Number.correctFloat(min); + } + + if (typeof max === 'number') { + max = Ext.Number.correctFloat(max); + } + + + if (min != max && (max != Math.floor(max) || min != Math.floor(min))) { + min = Math.floor(min); + max = Math.floor(max) + 1; + } + + if (!isNaN(me.minimum)) { + min = me.minimum; + } + + if (!isNaN(me.maximum)) { + max = me.maximum; + } + + if (min >= max) { + + min = Math.floor(min); + max = min + 1; + } + + return {min: min, max: max}; + }, + + + calcEnds: function () { + var me = this, + range = me.getRange(), + min = range.min, + max = range.max, + steps, prettyNumbers, out, changedRange; + + steps = (Ext.isNumber(me.majorTickSteps) ? me.majorTickSteps + 1 : me.steps); + prettyNumbers = !(Ext.isNumber(me.maximum) && Ext.isNumber(me.minimum) && Ext.isNumber(me.majorTickSteps) && me.majorTickSteps > 0); + + out = Ext.draw.Draw.snapEnds(min, max, steps, prettyNumbers); + + if (Ext.isNumber(me.maximum)) { + out.to = me.maximum; + changedRange = true; + } + if (Ext.isNumber(me.minimum)) { + out.from = me.minimum; + changedRange = true; + } + if (me.adjustMaximumByMajorUnit) { + out.to = Math.ceil(out.to / out.step) * out.step; + changedRange = true; + } + if (me.adjustMinimumByMajorUnit) { + out.from = Math.floor(out.from / out.step) * out.step; + changedRange = true; + } + + if (changedRange) { + out.steps = Math.ceil((out.to - out.from) / out.step); + } + + me.prevMin = (min == max ? 0 : min); + me.prevMax = max; + return out; + }, + + + + drawAxis: function (init) { + var me = this, + i, + x = me.x, + y = me.y, + dashSize = me.dashSize, + length = me.length, + position = me.position, + verticalAxis = (position == 'left' || position == 'right'), + inflections = [], + calcLabels = (me.isNumericAxis), + stepCalcs = me.applyData(), + step = stepCalcs.step, + steps = stepCalcs.steps, + stepsArray = Ext.isArray(steps), + from = stepCalcs.from, + to = stepCalcs.to, + + axisRange = (to - from) || 1, + trueLength, + currentX, + currentY, + path, + subDashesX = me.minorTickSteps || 0, + subDashesY = me.minorTickSteps || 0, + dashesX = Math.max(subDashesX + 1, 0), + dashesY = Math.max(subDashesY + 1, 0), + dashDirection = (position == 'left' || position == 'top' ? -1 : 1), + dashLength = dashSize * dashDirection, + series = me.chart.series.items, + firstSeries = series[0], + gutters = firstSeries ? firstSeries.nullGutters : me.nullGutters, + padding, + subDashes, + subDashValue, + delta = 0, + stepCount = 0, + tick, axes, ln, val, begin, end; + + me.from = from; + me.to = to; + + + if (me.hidden || (from > to)) { + return; + } + + + if ((stepsArray && (steps.length == 0)) || (!stepsArray && isNaN(step))) { + return; + } + + if (stepsArray) { + + + steps = Ext.Array.filter(steps, function(elem, index, array) { + return (+elem > +me.from && +elem < +me.to); + }, this); + + + steps = Ext.Array.union([me.from], steps, [me.to]); + } + else { + + steps = new Array; + for (val = +me.from; val < +me.to; val += step) { + steps.push(val); + } + steps.push(+me.to); + } + stepCount = steps.length; + + + + for (i = 0, ln = series.length; i < ln; i++) { + if (series[i].seriesIsHidden) { + continue; + } + if (!series[i].getAxesForXAndYFields) { + continue; + } + axes = series[i].getAxesForXAndYFields(); + if (!axes.xAxis || !axes.yAxis || (axes.xAxis === position) || (axes.yAxis === position)) { + gutters = series[i].getGutters(); + if ((gutters.verticalAxis !== undefined) && (gutters.verticalAxis != verticalAxis)) { + + + + + padding = series[i].getPadding(); + if (verticalAxis) { + gutters = { lower: padding.bottom, upper: padding.top, verticalAxis: true }; + } else { + gutters = { lower: padding.left, upper: padding.right, verticalAxis: false }; + } + } + break; + } + } + + + + if (calcLabels) { + me.labels = []; + } + + if (gutters) { + if (verticalAxis) { + currentX = Math.floor(x); + path = ["M", currentX + 0.5, y, "l", 0, -length]; + trueLength = length - (gutters.lower + gutters.upper); + + for (tick = 0; tick < stepCount; tick++) { + currentY = y - gutters.lower - (steps[tick] - steps[0]) * trueLength / axisRange; + path.push("M", currentX, Math.floor(currentY) + 0.5, "l", dashLength * 2, 0); + + inflections.push([ currentX, Math.floor(currentY) ]); + + if (calcLabels) { + me.labels.push(steps[tick]); + } + } + } else { + currentY = Math.floor(y); + path = ["M", x, currentY + 0.5, "l", length, 0]; + trueLength = length - (gutters.lower + gutters.upper); + + for (tick = 0; tick < stepCount; tick++) { + currentX = x + gutters.lower + (steps[tick] - steps[0]) * trueLength / axisRange; + path.push("M", Math.floor(currentX) + 0.5, currentY, "l", 0, dashLength * 2 + 1); + + inflections.push([ Math.floor(currentX), currentY ]); + + if (calcLabels) { + me.labels.push(steps[tick]); + } + } + } + } + + + + + + + + + subDashes = (verticalAxis ? subDashesY : subDashesX); + if (Ext.isArray(subDashes)) { + if (subDashes.length == 2) { + subDashValue = +Ext.Date.add(new Date(), subDashes[0], subDashes[1]) - Date.now(); + } else { + subDashValue = subDashes[0]; + } + } + else { + if (Ext.isNumber(subDashes) && subDashes > 0) { + subDashValue = step / (subDashes + 1); + } + } + + if (gutters && subDashValue) { + for (tick = 0; tick < stepCount - 1; tick++) { + begin = +steps[tick]; + end = +steps[tick+1]; + if (verticalAxis) { + for (value = begin + subDashValue; value < end; value += subDashValue) { + currentY = y - gutters.lower - (value - steps[0]) * trueLength / axisRange; + path.push("M", currentX, Math.floor(currentY) + 0.5, "l", dashLength, 0); + } + } + else { + for (value = begin + subDashValue; value < end; value += subDashValue) { + currentX = x + gutters.upper + (value - steps[0]) * trueLength / axisRange; + path.push("M", Math.floor(currentX) + 0.5, currentY, "l", 0, dashLength + 1); + } + } + } + } + + + + + if (!me.axis) { + me.axis = me.chart.surface.add(Ext.apply({ + type: 'path', + path: path + }, me.axisStyle)); + } + me.axis.setAttributes({ + path: path + }, true); + me.inflections = inflections; + if (!init && me.grid) { + me.drawGrid(); + } + me.axisBBox = me.axis.getBBox(); + me.drawLabel(); + }, + + + drawGrid: function () { + var me = this, + surface = me.chart.surface, + grid = me.grid, + odd = grid.odd, + even = grid.even, + inflections = me.inflections, + ln = inflections.length - ((odd || even) ? 0 : 1), + position = me.position, + maxGutters = me.chart.maxGutters, + width = me.width - 2, + point, prevPoint, + i = 1, + path = [], styles, lineWidth, dlineWidth, + oddPath = [], evenPath = []; + + if (((maxGutters.bottom !== 0 || maxGutters.top !== 0) && (position == 'left' || position == 'right')) || + ((maxGutters.left !== 0 || maxGutters.right !== 0) && (position == 'top' || position == 'bottom'))) { + i = 0; + ln++; + } + for (; i < ln; i++) { + point = inflections[i]; + prevPoint = inflections[i - 1]; + if (odd || even) { + path = (i % 2) ? oddPath : evenPath; + styles = ((i % 2) ? odd : even) || {}; + lineWidth = (styles.lineWidth || styles['stroke-width'] || 0) / 2; + dlineWidth = 2 * lineWidth; + if (position == 'left') { + path.push("M", prevPoint[0] + 1 + lineWidth, prevPoint[1] + 0.5 - lineWidth, + "L", prevPoint[0] + 1 + width - lineWidth, prevPoint[1] + 0.5 - lineWidth, + "L", point[0] + 1 + width - lineWidth, point[1] + 0.5 + lineWidth, + "L", point[0] + 1 + lineWidth, point[1] + 0.5 + lineWidth, "Z"); + } + else if (position == 'right') { + path.push("M", prevPoint[0] - lineWidth, prevPoint[1] + 0.5 - lineWidth, + "L", prevPoint[0] - width + lineWidth, prevPoint[1] + 0.5 - lineWidth, + "L", point[0] - width + lineWidth, point[1] + 0.5 + lineWidth, + "L", point[0] - lineWidth, point[1] + 0.5 + lineWidth, "Z"); + } + else if (position == 'top') { + path.push("M", prevPoint[0] + 0.5 + lineWidth, prevPoint[1] + 1 + lineWidth, + "L", prevPoint[0] + 0.5 + lineWidth, prevPoint[1] + 1 + width - lineWidth, + "L", point[0] + 0.5 - lineWidth, point[1] + 1 + width - lineWidth, + "L", point[0] + 0.5 - lineWidth, point[1] + 1 + lineWidth, "Z"); + } + else { + path.push("M", prevPoint[0] + 0.5 + lineWidth, prevPoint[1] - lineWidth, + "L", prevPoint[0] + 0.5 + lineWidth, prevPoint[1] - width + lineWidth, + "L", point[0] + 0.5 - lineWidth, point[1] - width + lineWidth, + "L", point[0] + 0.5 - lineWidth, point[1] - lineWidth, "Z"); + } + } else { + if (position == 'left') { + path = path.concat(["M", point[0] + 0.5, point[1] + 0.5, "l", width, 0]); + } + else if (position == 'right') { + path = path.concat(["M", point[0] - 0.5, point[1] + 0.5, "l", -width, 0]); + } + else if (position == 'top') { + path = path.concat(["M", point[0] + 0.5, point[1] + 0.5, "l", 0, width]); + } + else { + path = path.concat(["M", point[0] + 0.5, point[1] - 0.5, "l", 0, -width]); + } + } + } + if (odd || even) { + if (oddPath.length) { + if (!me.gridOdd && oddPath.length) { + me.gridOdd = surface.add({ + type: 'path', + path: oddPath + }); + } + me.gridOdd.setAttributes(Ext.apply({ + path: oddPath, + hidden: false + }, odd || {}), true); + } + if (evenPath.length) { + if (!me.gridEven) { + me.gridEven = surface.add({ + type: 'path', + path: evenPath + }); + } + me.gridEven.setAttributes(Ext.apply({ + path: evenPath, + hidden: false + }, even || {}), true); + } + } + else { + if (path.length) { + if (!me.gridLines) { + me.gridLines = me.chart.surface.add({ + type: 'path', + path: path, + "stroke-width": me.lineWidth || 1, + stroke: me.gridColor || '#ccc' + }); + } + me.gridLines.setAttributes({ + hidden: false, + path: path + }, true); + } + else if (me.gridLines) { + me.gridLines.hide(true); + } + } + }, + + + getOrCreateLabel: function (i, text) { + var me = this, + labelGroup = me.labelGroup, + textLabel = labelGroup.getAt(i), + surface = me.chart.surface; + if (textLabel) { + if (text != textLabel.attr.text) { + textLabel.setAttributes(Ext.apply({ + text: text + }, me.label), true); + textLabel._bbox = textLabel.getBBox(); + } + } + else { + textLabel = surface.add(Ext.apply({ + group: labelGroup, + type: 'text', + x: 0, + y: 0, + text: text + }, me.label)); + surface.renderItem(textLabel); + textLabel._bbox = textLabel.getBBox(); + } + + if (me.label.rotation) { + textLabel.setAttributes({ + rotation: { + degrees: 0 + } + }, true); + textLabel._ubbox = textLabel.getBBox(); + textLabel.setAttributes(me.label, true); + } else { + textLabel._ubbox = textLabel._bbox; + } + return textLabel; + }, + + rect2pointArray: function (sprite) { + var surface = this.chart.surface, + rect = surface.getBBox(sprite, true), + p1 = [rect.x, rect.y], + p1p = p1.slice(), + p2 = [rect.x + rect.width, rect.y], + p2p = p2.slice(), + p3 = [rect.x + rect.width, rect.y + rect.height], + p3p = p3.slice(), + p4 = [rect.x, rect.y + rect.height], + p4p = p4.slice(), + matrix = sprite.matrix; + + p1[0] = matrix.x.apply(matrix, p1p); + p1[1] = matrix.y.apply(matrix, p1p); + + p2[0] = matrix.x.apply(matrix, p2p); + p2[1] = matrix.y.apply(matrix, p2p); + + p3[0] = matrix.x.apply(matrix, p3p); + p3[1] = matrix.y.apply(matrix, p3p); + + p4[0] = matrix.x.apply(matrix, p4p); + p4[1] = matrix.y.apply(matrix, p4p); + return [p1, p2, p3, p4]; + }, + + intersect: function (l1, l2) { + var r1 = this.rect2pointArray(l1), + r2 = this.rect2pointArray(l2); + return !!Ext.draw.Draw.intersect(r1, r2).length; + }, + + drawHorizontalLabels: function () { + var me = this, + labelConf = me.label, + floor = Math.floor, + max = Math.max, + axes = me.chart.axes, + insetPadding = me.chart.insetPadding, + gutters = me.chart.maxGutters, + position = me.position, + inflections = me.inflections, + ln = inflections.length, + labels = me.labels, + maxHeight = 0, + ratio, + bbox, point, prevLabel, prevLabelId, + adjustEnd = me.adjustEnd, + hasLeft = axes.findIndex('position', 'left') != -1, + hasRight = axes.findIndex('position', 'right') != -1, + textLabel, text, + last, x, y, i, firstLabel; + + last = ln - 1; + + point = inflections[0]; + firstLabel = me.getOrCreateLabel(0, me.label.renderer(labels[0])); + ratio = Math.floor(Math.abs(Math.sin(labelConf.rotate && (labelConf.rotate.degrees * Math.PI / 180) || 0))); + + for (i = 0; i < ln; i++) { + point = inflections[i]; + text = me.label.renderer(labels[i]); + textLabel = me.getOrCreateLabel(i, text); + bbox = textLabel._bbox; + maxHeight = max(maxHeight, bbox.height + me.dashSize + me.label.padding); + x = floor(point[0] - (ratio ? bbox.height : bbox.width) / 2); + if (adjustEnd && gutters.left == 0 && gutters.right == 0) { + if (i == 0 && !hasLeft) { + x = point[0]; + } + else if (i == last && !hasRight) { + x = Math.min(x, point[0] - bbox.width + insetPadding); + } + } + if (position == 'top') { + y = point[1] - (me.dashSize * 2) - me.label.padding - (bbox.height / 2); + } + else { + y = point[1] + (me.dashSize * 2) + me.label.padding + (bbox.height / 2); + } + + textLabel.setAttributes({ + hidden: false, + x: x, + y: y + }, true); + + + if (i != 0 && (me.intersect(textLabel, prevLabel) + || me.intersect(textLabel, firstLabel))) { + if (i === last && prevLabelId !== 0) { + prevLabel.hide(true); + } else { + textLabel.hide(true); + continue; + } + } + + prevLabel = textLabel; + prevLabelId = i; + } + + return maxHeight; + }, + + drawVerticalLabels: function () { + var me = this, + inflections = me.inflections, + position = me.position, + ln = inflections.length, + chart = me.chart, + insetPadding = chart.insetPadding, + labels = me.labels, + maxWidth = 0, + max = Math.max, + floor = Math.floor, + ceil = Math.ceil, + axes = me.chart.axes, + gutters = me.chart.maxGutters, + bbox, point, prevLabel, prevLabelId, + hasTop = axes.findIndex('position', 'top') != -1, + hasBottom = axes.findIndex('position', 'bottom') != -1, + adjustEnd = me.adjustEnd, + textLabel, text, + last = ln - 1, x, y, i; + + for (i = 0; i < ln; i++) { + point = inflections[i]; + text = me.label.renderer(labels[i]); + textLabel = me.getOrCreateLabel(i, text); + bbox = textLabel._bbox; + + maxWidth = max(maxWidth, bbox.width + me.dashSize + me.label.padding); + y = point[1]; + if (adjustEnd && (gutters.bottom + gutters.top) < bbox.height / 2) { + if (i == last && !hasTop) { + y = Math.max(y, me.y - me.length + ceil(bbox.height / 2) - insetPadding); + } + else if (i == 0 && !hasBottom) { + y = me.y + gutters.bottom - floor(bbox.height / 2); + } + } + if (position == 'left') { + x = point[0] - bbox.width - me.dashSize - me.label.padding - 2; + } + else { + x = point[0] + me.dashSize + me.label.padding + 2; + } + textLabel.setAttributes(Ext.apply({ + hidden: false, + x: x, + y: y + }, me.label), true); + + if (i != 0 && me.intersect(textLabel, prevLabel)) { + if (i === last && prevLabelId !== 0) { + prevLabel.hide(true); + } else { + textLabel.hide(true); + continue; + } + } + prevLabel = textLabel; + prevLabelId = i; + } + + return maxWidth; + }, + + + drawLabel: function () { + var me = this, + position = me.position, + labelGroup = me.labelGroup, + inflections = me.inflections, + maxWidth = 0, + maxHeight = 0, + ln, i; + + if (position == 'left' || position == 'right') { + maxWidth = me.drawVerticalLabels(); + } else { + maxHeight = me.drawHorizontalLabels(); + } + + + ln = labelGroup.getCount(); + i = inflections.length; + for (; i < ln; i++) { + labelGroup.getAt(i).hide(true); + } + + me.bbox = {}; + Ext.apply(me.bbox, me.axisBBox); + me.bbox.height = maxHeight; + me.bbox.width = maxWidth; + if (Ext.isString(me.title)) { + me.drawTitle(maxWidth, maxHeight); + } + }, + + + setTitle: function (title) { + this.title = title; + this.drawLabel(); + }, + + + drawTitle: function (maxWidth, maxHeight) { + var me = this, + position = me.position, + surface = me.chart.surface, + displaySprite = me.displaySprite, + title = me.title, + rotate = (position == 'left' || position == 'right'), + x = me.x, + y = me.y, + base, bbox, pad; + + if (displaySprite) { + displaySprite.setAttributes({text: title}, true); + } else { + base = { + type: 'text', + x: 0, + y: 0, + text: title + }; + displaySprite = me.displaySprite = surface.add(Ext.apply(base, me.axisTitleStyle, me.labelTitle)); + surface.renderItem(displaySprite); + } + bbox = displaySprite.getBBox(); + pad = me.dashSize + me.label.padding; + + if (rotate) { + y -= ((me.length / 2) - (bbox.height / 2)); + if (position == 'left') { + x -= (maxWidth + pad + (bbox.width / 2)); + } + else { + x += (maxWidth + pad + bbox.width - (bbox.width / 2)); + } + me.bbox.width += bbox.width + 10; + } + else { + x += (me.length / 2) - (bbox.width * 0.5); + if (position == 'top') { + y -= (maxHeight + pad + (bbox.height * 0.3)); + } + else { + y += (maxHeight + pad + (bbox.height * 0.8)); + } + me.bbox.height += bbox.height + 10; + } + displaySprite.setAttributes({ + translate: { + x: x, + y: y + } + }, true); + } +}); + + +Ext.define('Ext.chart.axis.Category', { + + + + extend: Ext.chart.axis.Axis , + + alternateClassName: 'Ext.chart.CategoryAxis', + + alias: 'axis.category', + + + + + categoryNames: null, + + + calculateCategoryCount: false, + + + doConstrain: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + items = store.data.items, + series = chart.series.items, + seriesLength = series.length, + data = [], i + + for (i = 0; i < seriesLength; i++) { + if (series[i].type === 'bar' && series[i].stacked) { + + return; + } + } + + for (i = me.minimum; i < me.maximum; i++) { + data.push(items[i]); + } + + chart.setSubStore(new Ext.data.Store({ + model: store.model, + data: data + })); + }, + + + setLabels: function() { + var store = this.chart.getChartStore(), + data = store.data.items, + d, dLen, record, + fields = this.fields, + ln = fields.length, + labels, + name, + i; + + labels = this.labels = []; + for (d = 0, dLen = data.length; d < dLen; d++) { + record = data[d]; + for (i = 0; i < ln; i++) { + name = record.get(fields[i]); + labels.push(name); + } + } + }, + + + applyData: function() { + this.callParent(); + this.setLabels(); + var count = this.chart.getChartStore().getCount(); + return { + from: 0, + to: count - 1, + power: 1, + step: 1, + steps: count - 1 + }; + } +}); + + +Ext.define('Ext.chart.axis.Gauge', { + + + + extend: Ext.chart.axis.Abstract , + + + + + + + + + + + + + + position: 'gauge', + + alias: 'axis.gauge', + + drawAxis: function(init) { + var chart = this.chart, + surface = chart.surface, + bbox = chart.chartBBox, + centerX = bbox.x + (bbox.width / 2), + centerY = bbox.y + bbox.height, + margin = this.margin || 10, + rho = Math.min(bbox.width, 2 * bbox.height) /2 + margin, + sprites = [], sprite, + steps = this.steps, + i, pi = Math.PI, + cos = Math.cos, + sin = Math.sin; + + if (this.sprites && !chart.resizing) { + this.drawLabel(); + return; + } + + if (this.margin >= 0) { + if (!this.sprites) { + + for (i = 0; i <= steps; i++) { + sprite = surface.add({ + type: 'path', + path: ['M', centerX + (rho - margin) * cos(i / steps * pi - pi), + centerY + (rho - margin) * sin(i / steps * pi - pi), + 'L', centerX + rho * cos(i / steps * pi - pi), + centerY + rho * sin(i / steps * pi - pi), 'Z'], + stroke: '#ccc' + }); + sprite.setAttributes({ + hidden: false + }, true); + sprites.push(sprite); + } + } else { + sprites = this.sprites; + + for (i = 0; i <= steps; i++) { + sprites[i].setAttributes({ + path: ['M', centerX + (rho - margin) * cos(i / steps * pi - pi), + centerY + (rho - margin) * sin(i / steps * pi - pi), + 'L', centerX + rho * cos(i / steps * pi - pi), + centerY + rho * sin(i / steps * pi - pi), 'Z'], + stroke: '#ccc' + }, true); + } + } + } + this.sprites = sprites; + this.drawLabel(); + if (this.title) { + this.drawTitle(); + } + }, + + drawTitle: function() { + var me = this, + chart = me.chart, + surface = chart.surface, + bbox = chart.chartBBox, + labelSprite = me.titleSprite, + labelBBox; + + if (!labelSprite) { + me.titleSprite = labelSprite = surface.add(Ext.apply({ + type: 'text', + zIndex: 2 + }, me.axisTitleStyle, me.labelTitle)); + } + labelSprite.setAttributes(Ext.apply({ + text: me.title + }, me.label || {}), true); + labelBBox = labelSprite.getBBox(); + labelSprite.setAttributes({ + x: bbox.x + (bbox.width / 2) - (labelBBox.width / 2), + y: bbox.y + bbox.height - (labelBBox.height / 2) - 4 + }, true); + }, + + + setTitle: function(title) { + this.title = title; + this.drawTitle(); + }, + + drawLabel: function() { + var chart = this.chart, + surface = chart.surface, + bbox = chart.chartBBox, + centerX = bbox.x + (bbox.width / 2), + centerY = bbox.y + bbox.height, + margin = this.margin || 10, + rho = Math.min(bbox.width, 2 * bbox.height) /2 + 2 * margin, + round = Math.round, + labelArray = [], label, + maxValue = this.maximum || 0, + minValue = this.minimum || 0, + steps = this.steps, i = 0, + adjY, + pi = Math.PI, + cos = Math.cos, + sin = Math.sin, + labelConf = this.label, + renderer = labelConf.renderer || Ext.identityFn; + + if (!this.labelArray) { + + for (i = 0; i <= steps; i++) { + + adjY = (i === 0 || i === steps) ? 7 : 0; + label = surface.add({ + type: 'text', + text: renderer(round(minValue + i / steps * (maxValue - minValue))), + x: centerX + rho * cos(i / steps * pi - pi), + y: centerY + rho * sin(i / steps * pi - pi) - adjY, + 'text-anchor': 'middle', + 'stroke-width': 0.2, + zIndex: 10, + stroke: '#333' + }); + label.setAttributes({ + hidden: false + }, true); + labelArray.push(label); + } + } + else { + labelArray = this.labelArray; + + for (i = 0; i <= steps; i++) { + + adjY = (i === 0 || i === steps) ? 7 : 0; + labelArray[i].setAttributes({ + text: renderer(round(minValue + i / steps * (maxValue - minValue))), + x: centerX + rho * cos(i / steps * pi - pi), + y: centerY + rho * sin(i / steps * pi - pi) - adjY + }, true); + } + } + this.labelArray = labelArray; + } +}); + + +Ext.define('Ext.chart.axis.Numeric', { + + + + extend: Ext.chart.axis.Axis , + + alternateClassName: 'Ext.chart.NumericAxis', + + + + type: 'Numeric', + + + isNumericAxis: true, + + alias: 'axis.numeric', + + + + constructor: function(config) { + var me = this, + hasLabel = !!(config.label && config.label.renderer), + label; + + me.callParent([config]); + label = me.label; + + if (config.constrain == null) { + me.constrain = (config.minimum != null && config.maximum != null); + } + + if (!hasLabel) { + label.renderer = function(v) { + return me.roundToDecimal(v, me.decimals); + }; + } + }, + + roundToDecimal: function(v, dec) { + var val = Math.pow(10, dec || 0); + return Math.round(v * val) / val; + }, + + + minimum: NaN, + + + maximum: NaN, + + + constrain: true, + + + decimals: 2, + + + scale: "linear", + + + doConstrain: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + items = store.data.items, + d, dLen, record, + series = chart.series.items, + fields = me.fields, + ln = fields.length, + range = me.calcEnds(), + min = range.from, max = range.to, i, l, + useAcum = false, + value, data = [], + addRecord; + + for (d = 0, dLen = items.length; d < dLen; d++) { + addRecord = true; + record = items[d]; + for (i = 0; i < ln; i++) { + value = record.get(fields[i]); + if (me.type == 'Time' && typeof value == "string") { + value = Date.parse(value); + } + if (+value < +min) { + addRecord = false; + break; + } + if (+value > +max) { + addRecord = false; + break; + } + } + if (addRecord) { + data.push(record); + } + } + + chart.setSubStore(new Ext.data.Store({ + model: store.model, + data: data + })); + }, + + position: 'left', + + + adjustMaximumByMajorUnit: false, + + + adjustMinimumByMajorUnit: false, + + + processView: function() { + var me = this, + chart = me.chart, + series = chart.series.items, + i, l; + + for (i = 0, l = series.length; i < l; i++) { + if (series[i].stacked) { + + delete me.minimum; + delete me.maximum; + me.constrain = false; + break; + } + } + + if (me.constrain) { + me.doConstrain(); + } + }, + + + applyData: function() { + this.callParent(); + return this.calcEnds(); + } +}); + + +Ext.define('Ext.chart.axis.Radial', { + + + + extend: Ext.chart.axis.Numeric , + + + + position: 'radial', + + alias: 'axis.radial', + + + + + + drawAxis: function(init) { + var chart = this.chart, + surface = chart.surface, + bbox = chart.chartBBox, + store = chart.getChartStore(), + l = store.getCount(), + centerX = bbox.x + (bbox.width / 2), + centerY = bbox.y + (bbox.height / 2), + rho = Math.min(bbox.width, bbox.height) /2, + sprites = [], sprite, + steps = this.steps, + i, j, pi2 = Math.PI * 2, + cos = Math.cos, sin = Math.sin; + + if (this.sprites && !chart.resizing) { + this.drawLabel(); + return; + } + + if (!this.sprites) { + + for (i = 1; i <= steps; i++) { + sprite = surface.add({ + type: 'circle', + x: centerX, + y: centerY, + radius: Math.max(rho * i / steps, 0), + stroke: '#ccc' + }); + sprite.setAttributes({ + hidden: false + }, true); + sprites.push(sprite); + } + + for (i = 0; i < l; i++) { + sprite = surface.add({ + type: 'path', + path: ['M', centerX, centerY, 'L', centerX + rho * cos(i / l * pi2), centerY + rho * sin(i / l * pi2), 'Z'], + stroke: '#ccc' + }); + sprite.setAttributes({ + hidden: false + }, true); + sprites.push(sprite); + } + } else { + sprites = this.sprites; + + for (i = 0; i < steps; i++) { + sprites[i].setAttributes({ + x: centerX, + y: centerY, + radius: Math.max(rho * (i + 1) / steps, 0), + stroke: '#ccc' + }, true); + } + + for (j = 0; j < l; j++) { + sprites[i + j].setAttributes({ + path: ['M', centerX, centerY, 'L', centerX + rho * cos(j / l * pi2), centerY + rho * sin(j / l * pi2), 'Z'], + stroke: '#ccc' + }, true); + } + } + this.sprites = sprites; + + this.drawLabel(); + }, + + drawLabel: function() { + var chart = this.chart, + seriesItems = chart.series.items, + series, + surface = chart.surface, + bbox = chart.chartBBox, + store = chart.getChartStore(), + data = store.data.items, + ln, record, + centerX = bbox.x + (bbox.width / 2), + centerY = bbox.y + (bbox.height / 2), + rho = Math.min(bbox.width, bbox.height) /2, + max = Math.max, round = Math.round, + labelArray = [], label, + fields = [], nfields, + categories = [], xField, + aggregate = !this.maximum, + maxValue = this.maximum || 0, + steps = this.steps, i = 0, j, dx, dy, + pi2 = Math.PI * 2, + cos = Math.cos, sin = Math.sin, + display = this.label.display, + draw = display !== 'none', + margin = 10; + + if (!draw) { + return; + } + + + for (i = 0, ln = seriesItems.length; i < ln; i++) { + series = seriesItems[i]; + fields.push(series.yField); + xField = series.xField; + } + + + for (j = 0, ln = data.length; j < ln; j++) { + record = data[j]; + categories.push(record.get(xField)); + + if (aggregate) { + for (i = 0, nfields = fields.length; i < nfields; i++) { + maxValue = max(+record.get(fields[i]), maxValue); + } + } + } + if (!this.labelArray) { + if (display != 'categories') { + + for (i = 1; i <= steps; i++) { + label = surface.add({ + type: 'text', + text: round(i / steps * maxValue), + x: centerX, + y: centerY - rho * i / steps, + 'text-anchor': 'middle', + 'stroke-width': 0.1, + stroke: '#333' + }); + label.setAttributes({ + hidden: false + }, true); + labelArray.push(label); + } + } + if (display != 'scale') { + + for (j = 0, steps = categories.length; j < steps; j++) { + dx = cos(j / steps * pi2) * (rho + margin); + dy = sin(j / steps * pi2) * (rho + margin); + label = surface.add({ + type: 'text', + text: categories[j], + x: centerX + dx, + y: centerY + dy, + 'text-anchor': dx * dx <= 0.001? 'middle' : (dx < 0? 'end' : 'start') + }); + label.setAttributes({ + hidden: false + }, true); + labelArray.push(label); + } + } + } + else { + labelArray = this.labelArray; + if (display != 'categories') { + + for (i = 0; i < steps; i++) { + labelArray[i].setAttributes({ + text: round((i + 1) / steps * maxValue), + x: centerX, + y: centerY - rho * (i + 1) / steps, + 'text-anchor': 'middle', + 'stroke-width': 0.1, + stroke: '#333' + }, true); + } + } + if (display != 'scale') { + + for (j = 0, steps = categories.length; j < steps; j++) { + dx = cos(j / steps * pi2) * (rho + margin); + dy = sin(j / steps * pi2) * (rho + margin); + if (labelArray[i + j]) { + labelArray[i + j].setAttributes({ + type: 'text', + text: categories[j], + x: centerX + dx, + y: centerY + dy, + 'text-anchor': dx * dx <= 0.001? 'middle' : (dx < 0? 'end' : 'start') + }, true); + } + } + } + } + this.labelArray = labelArray; + }, + + getRange: function () { + var range = this.callParent(); + range.min = 0; + return range; + }, + + processView: function() { + var me = this, + seriesItems = me.chart.series.items, + i, ln, series, ends, fields = []; + + for (i = 0, ln = seriesItems.length; i < ln; i++) { + series = seriesItems[i]; + fields.push(series.yField); + } + me.fields = fields; + + ends = me.calcEnds(); + me.maximum = ends.to; + me.steps = ends.steps; + } +}); + + +Ext.define('Ext.chart.axis.Time', { + + + + extend: Ext.chart.axis.Numeric , + + alternateClassName: 'Ext.chart.TimeAxis', + + type: 'Time', + + alias: 'axis.time', + + + + + + + dateFormat: false, + + + fromDate: false, + + + toDate: false, + + + step: [Ext.Date.DAY, 1], + + + constrain: false, + + constructor: function (config) { + var me = this, label, f, df; + me.callParent([config]); + label = me.label || {}; + df = this.dateFormat; + if (df) { + if (label.renderer) { + f = label.renderer; + label.renderer = function(v) { + v = f(v); + return Ext.Date.format(new Date(f(v)), df); + }; + } else { + label.renderer = function(v) { + return Ext.Date.format(new Date(v >> 0), df); + }; + } + } + }, + + + processView: function () { + var me = this; + if (me.fromDate) { + me.minimum = +me.fromDate; + } + if (me.toDate) { + me.maximum = +me.toDate; + } + if(me.constrain){ + me.doConstrain(); + } + }, + + + calcEnds: function() { + var me = this, range, step = me.step; + if (step) { + range = me.getRange(); + range = Ext.draw.Draw.snapEndsByDateAndStep(new Date(range.min), new Date(range.max), Ext.isNumber(step) ? [Date.MILLI, step]: step); + if (me.minimum) { + range.from = me.minimum; + } + if (me.maximum) { + range.to = me.maximum; + } + return range; + } else { + return me.callParent(arguments); + } + } + }); + + + +Ext.define('Ext.chart.series.Series', { + + + + mixins: { + observable: Ext.util.Observable , + labels: Ext.chart.Label , + highlights: Ext.chart.Highlight , + tips: Ext.chart.Tip , + callouts: Ext.chart.Callout + }, + + + + + + + + + type: null, + + + title: null, + + + showInLegend: true, + + + renderer: function(sprite, record, attributes, index, store) { + return attributes; + }, + + + shadowAttributes: null, + + + animating: false, + + + nullGutters: { lower: 0, upper: 0, verticalAxis: undefined }, + + + nullPadding: { left:0, right:0, width:0, bottom:0, top:0, height:0 }, + + + + constructor: function(config) { + var me = this; + if (config) { + Ext.apply(me, config); + } + + me.shadowGroups = []; + + me.mixins.labels.constructor.call(me, config); + me.mixins.highlights.constructor.call(me, config); + me.mixins.tips.constructor.call(me, config); + me.mixins.callouts.constructor.call(me, config); + + me.addEvents({ + scope: me, + itemclick: true, + itemmouseover: true, + itemmouseout: true, + itemmousedown: true, + itemmouseup: true, + mouseleave: true, + afterdraw: true, + + + titlechange: true + }); + + me.mixins.observable.constructor.call(me, config); + + me.on({ + scope: me, + itemmouseover: me.onItemMouseOver, + itemmouseout: me.onItemMouseOut, + mouseleave: me.onMouseLeave + }); + + if (me.style) { + Ext.apply(me.seriesStyle, me.style); + } + }, + + onRedraw: Ext.emptyFn, + + + eachRecord: function(fn, scope) { + var chart = this.chart; + chart.getChartStore().each(fn, scope); + }, + + + getRecordCount: function() { + var chart = this.chart, + store = chart.getChartStore(); + return store ? store.getCount() : 0; + }, + + + isExcluded: function(index) { + var excludes = this.__excludes; + return !!(excludes && excludes[index]); + }, + + + setBBox: function(noGutter) { + var me = this, + chart = me.chart, + chartBBox = chart.chartBBox, + maxGutters = noGutter ? { left: 0, right: 0, bottom: 0, top: 0 } : chart.maxGutters, + clipBox, bbox; + + clipBox = { + x: chartBBox.x, + y: chartBBox.y, + width: chartBBox.width, + height: chartBBox.height + }; + me.clipBox = clipBox; + + bbox = { + x: (clipBox.x + maxGutters.left) - (chart.zoom.x * chart.zoom.width), + y: (clipBox.y + maxGutters.bottom) - (chart.zoom.y * chart.zoom.height), + width: (clipBox.width - (maxGutters.left + maxGutters.right)) * chart.zoom.width, + height: (clipBox.height - (maxGutters.bottom + maxGutters.top)) * chart.zoom.height + }; + me.bbox = bbox; + }, + + + onAnimate: function(sprite, attr) { + var me = this; + sprite.stopAnimation(); + if (me.animating) { + return sprite.animate(Ext.applyIf(attr, me.chart.animate)); + } else { + me.animating = true; + return sprite.animate(Ext.apply(Ext.applyIf(attr, me.chart.animate), { + + callback: function() { + me.animating = false; + me.fireEvent('afterrender'); + } + })); + } + }, + + + getGutters: function() { + return this.nullGutters; + }, + + + getPadding: function() { + return this.nullPadding; + }, + + + onItemMouseOver: function(item) { + var me = this; + if (item.series === me) { + if (me.highlight) { + me.highlightItem(item); + } + if (me.tooltip) { + me.showTip(item); + } + } + }, + + + onItemMouseOut: function(item) { + var me = this; + if (item.series === me) { + me.unHighlightItem(); + if (me.tooltip) { + me.hideTip(item); + } + } + }, + + + onMouseLeave: function() { + var me = this; + me.unHighlightItem(); + if (me.tooltip) { + me.hideTip(); + } + }, + + + getItemForPoint: function(x, y) { + + if (!this.items || !this.items.length || this.seriesIsHidden) { + return null; + } + var me = this, + items = me.items, + bbox = me.bbox, + item, i, ln; + + if (!Ext.draw.Draw.withinBox(x, y, bbox)) { + return null; + } + for (i = 0, ln = items.length; i < ln; i++) { + if (items[i] && this.isItemInPoint(x, y, items[i], i)) { + return items[i]; + } + } + + return null; + }, + + isItemInPoint: function(x, y, item, i) { + return false; + }, + + + hideAll: function() { + var me = this, + items = me.items, + item, len, i, j, l, sprite, shadows; + + me.seriesIsHidden = true; + me._prevShowMarkers = me.showMarkers; + + me.showMarkers = false; + + me.hideLabels(0); + + for (i = 0, len = items.length; i < len; i++) { + item = items[i]; + sprite = item.sprite; + if (sprite) { + sprite.setAttributes({ + hidden: true + }, true); + } + + if (sprite && sprite.shadows) { + shadows = sprite.shadows; + for (j = 0, l = shadows.length; j < l; ++j) { + shadows[j].setAttributes({ + hidden: true + }, true); + } + } + } + }, + + + showAll: function() { + var me = this, + prevAnimate = me.chart.animate; + me.chart.animate = false; + me.seriesIsHidden = false; + me.showMarkers = me._prevShowMarkers; + me.drawSeries(); + me.chart.animate = prevAnimate; + }, + + hide: function() { + if (this.items) { + var me = this, + items = me.items, + i, j, lsh, ln, shadows; + + if (items && items.length) { + for (i = 0, ln = items.length; i < ln; ++i) { + if (items[i].sprite) { + items[i].sprite.hide(true); + + shadows = items[i].shadows || items[i].sprite.shadows; + if (shadows) { + for (j = 0, lsh = shadows.length; j < lsh; ++j) { + shadows[j].hide(true); + } + } + } + } + me.hideLabels(); + } + } + }, + + + getLegendColor: function(index) { + var me = this, fill, stroke; + if (me.seriesStyle) { + fill = me.seriesStyle.fill; + stroke = me.seriesStyle.stroke; + if (fill && fill != 'none') { + return fill; + } + if(stroke){ + return stroke; + } + } + return (me.colorArrayStyle)?me.colorArrayStyle[me.themeIdx % me.colorArrayStyle.length]:'#000'; + }, + + + visibleInLegend: function(index){ + var excludes = this.__excludes; + if (excludes) { + return !excludes[index]; + } + return !this.seriesIsHidden; + }, + + + setTitle: function(index, title) { + var me = this, + oldTitle = me.title; + + if (Ext.isString(index)) { + title = index; + index = 0; + } + + if (Ext.isArray(oldTitle)) { + oldTitle[index] = title; + } else { + me.title = title; + } + + me.fireEvent('titlechange', title, index); + } +}); + + +Ext.define('Ext.chart.series.Cartesian', { + + + + extend: Ext.chart.series.Series , + + alternateClassName: ['Ext.chart.CartesianSeries', 'Ext.chart.CartesianChart'], + + + + + xField: null, + + + yField: null, + + + axis: 'left', + + getLegendLabels: function() { + var me = this, + labels = [], + fields, i, ln, + combinations = me.combinations, + title, + combo, label0, label1; + + fields = [].concat(me.yField); + for (i = 0, ln = fields.length; i < ln; i++) { + title = me.title; + + labels.push((Ext.isArray(title) ? title[i] : title) || fields[i]); + } + + + + if (combinations) { + combinations = Ext.Array.from(combinations); + for (i = 0, ln = combinations.length; i < ln; i++) { + combo = combinations[i]; + label0 = labels[combo[0]]; + label1 = labels[combo[1]]; + labels[combo[1]] = label0 + ' & ' + label1; + labels.splice(combo[0], 1); + } + } + + return labels; + }, + + + eachYValue: function(record, fn, scope) { + var me = this, + yValueAccessors = me.getYValueAccessors(), + i, ln, accessor; + + for (i = 0, ln = yValueAccessors.length; i < ln; i++) { + accessor = yValueAccessors[i]; + fn.call(scope, accessor(record), i); + } + }, + + + getYValueCount: function() { + return this.getYValueAccessors().length; + }, + + combine: function(index1, index2) { + var me = this, + accessors = me.getYValueAccessors(), + accessor1 = accessors[index1], + accessor2 = accessors[index2]; + + + accessors[index2] = function(record) { + return accessor1(record) + accessor2(record); + }; + accessors.splice(index1, 1); + + me.callParent([index1, index2]); + }, + + clearCombinations: function() { + + delete this.yValueAccessors; + this.callParent(); + }, + + + getYValueAccessors: function() { + var me = this, + accessors = me.yValueAccessors, + yFields, yField, i, ln; + if (!accessors) { + accessors = me.yValueAccessors = []; + yFields = [].concat(me.yField); + + for (i = 0, ln = yFields.length; i < ln; i++) { + yField = yFields[i]; + accessors.push(function(record) { + return record.get(yField); + }); + } + } + return accessors; + }, + + + getMinMaxXValues: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + data = store.data.items, + count = me.getRecordCount(), + i, ln, record, + min, max, + xField = me.xField, + xValue; + + if (count > 0) { + min = Infinity; + max = -min; + + for (i = 0, ln = data.length; i < ln; i++) { + record = data[i]; + xValue = record.get(xField); + if (xValue > max) { + max = xValue; + } + if (xValue < min) { + min = xValue; + } + } + + + if (min == Infinity) { + min = 0; + } + + if (max == -Infinity) { + max = count - 1; + } + } else { + min = max = 0; + } + return [min, max]; + }, + + + getMinMaxYValues: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + data = store.data.items, + count = me.getRecordCount(), + i, ln, record, + stacked = me.stacked, + min, max, + positiveTotal, negativeTotal; + + function eachYValueStacked(yValue, i) { + if (!me.isExcluded(i)) { + if (yValue < 0) { + negativeTotal += yValue; + } else { + positiveTotal += yValue; + } + } + } + + function eachYValue(yValue, i) { + if (!me.isExcluded(i)) { + if (yValue > max) { + max = yValue; + } + if (yValue < min) { + min = yValue; + } + } + } + + if (count > 0) { + min = Infinity; + max = -min; + + for (i = 0, ln = data.length; i < ln; i++) { + record = data[i]; + if (stacked) { + positiveTotal = 0; + negativeTotal = 0; + me.eachYValue(record, eachYValueStacked); + if (positiveTotal > max) { + max = positiveTotal; + } + if (negativeTotal < min) { + min = negativeTotal; + } + } else { + me.eachYValue(record, eachYValue); + } + } + + + if (min == Infinity) { + min = 0; + } + + if (max == -Infinity) { + max = count - 1; + } + } else { + min = max = 0; + } + return [min, max]; + }, + + getAxesForXAndYFields: function() { + var me = this, + axes = me.chart.axes, + axis = [].concat(me.axis), + yFields = {}, yFieldList = [].concat(me.yField), + xFields = {}, xFieldList = [].concat(me.xField), + fields, xAxis, yAxis, i, ln, flipXY; + + + flipXY = me.type === 'bar' && me.column === false; + if(flipXY) { + fields = yFieldList; + yFieldList = xFieldList; + xFieldList = fields; + } + if (Ext.Array.indexOf(axis, 'top') > -1) { + xAxis = 'top'; + } else if (Ext.Array.indexOf(axis, 'bottom') > -1) { + xAxis = 'bottom'; + } else { + if (axes.get('top') && axes.get('bottom')) { + for (i = 0, ln = xFieldList.length; i < ln; i++) { + xFields[xFieldList[i]] = true; + } + fields = [].concat(axes.get('bottom').fields); + for (i = 0, ln = fields.length; i < ln; i++) { + if (xFields[fields[i]]) { + xAxis = 'bottom'; + break + } + } + fields = [].concat(axes.get('top').fields); + for (i = 0, ln = fields.length; i < ln; i++) { + if (xFields[fields[i]]) { + xAxis = 'top'; + break + } + } + } else if (axes.get('top')) { + xAxis = 'top'; + } else if (axes.get('bottom')) { + xAxis = 'bottom'; + } + } + if (Ext.Array.indexOf(axis, 'left') > -1) { + yAxis = 'left'; + } else if (Ext.Array.indexOf(axis, 'right') > -1) { + yAxis = 'right'; + } else { + if (axes.get('left') && axes.get('right')) { + for (i = 0, ln = yFieldList.length; i < ln; i++) { + yFields[yFieldList[i]] = true; + } + fields = [].concat(axes.get('right').fields); + for (i = 0, ln = fields.length; i < ln; i++) { + if (yFields[fields[i]]) { + + break + } + } + fields = [].concat(axes.get('left').fields); + for (i = 0, ln = fields.length; i < ln; i++) { + if (yFields[fields[i]]) { + yAxis = 'left'; + break + } + } + } else if (axes.get('left')) { + yAxis = 'left'; + } else if (axes.get('right')) { + yAxis = 'right'; + } + } + + return flipXY ? { + xAxis: yAxis, + yAxis: xAxis + }: { + xAxis: xAxis, + yAxis: yAxis + }; + } + + +}); + + +Ext.define('Ext.chart.series.Area', { + + + + extend: Ext.chart.series.Cartesian , + + alias: 'series.area', + + + + + + type: 'area', + + + stacked: true, + + + style: {}, + + constructor: function(config) { + this.callParent(arguments); + var me = this, + surface = me.chart.surface, + i, l; + config.highlightCfg = Ext.Object.merge({}, { + lineWidth: 3, + stroke: '#55c', + opacity: 0.8, + color: '#f00' + }, config.highlightCfg); + + Ext.apply(me, config, { + __excludes: [] + }); + if (me.highlight) { + me.highlightSprite = surface.add({ + type: 'path', + path: ['M', 0, 0], + zIndex: 1000, + opacity: 0.3, + lineWidth: 5, + hidden: true, + stroke: '#444' + }); + } + me.group = surface.getGroup(me.seriesId); + }, + + + shrink: function(xValues, yValues, size) { + var len = xValues.length, + ratio = Math.floor(len / size), + i, j, + xSum = 0, + yCompLen = this.areas.length, + ySum = [], + xRes = [], + yRes = []; + + for (j = 0; j < yCompLen; ++j) { + ySum[j] = 0; + } + for (i = 0; i < len; ++i) { + xSum += +xValues[i]; + for (j = 0; j < yCompLen; ++j) { + ySum[j] += +yValues[i][j]; + } + if (i % ratio == 0) { + + xRes.push(xSum/ratio); + for (j = 0; j < yCompLen; ++j) { + ySum[j] /= ratio; + } + yRes.push(ySum); + + xSum = 0; + for (j = 0, ySum = []; j < yCompLen; ++j) { + ySum[j] = 0; + } + } + } + return { + x: xRes, + y: yRes + }; + }, + + + getBounds: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + data = store.data.items, + i, l, record, + areas = [].concat(me.yField), + areasLen = areas.length, + xValues = [], + yValues = [], + infinity = Infinity, + minX = infinity, + minY = infinity, + maxX = -infinity, + maxY = -infinity, + math = Math, + mmin = math.min, + mmax = math.max, + boundAxis = me.getAxesForXAndYFields(), + boundXAxis = boundAxis.xAxis, + boundYAxis = boundAxis.yAxis, + ends, allowDate, tmp, + bbox, xScale, yScale, xValue, yValue, areaIndex, acumY, ln, sumValues, clipBox, areaElem, axis, out; + + me.setBBox(); + bbox = me.bbox; + + if (axis = chart.axes.get(boundXAxis)) { + if (axis.type === 'Time') { + allowDate = true; + } + ends = axis.applyData(); + minX = ends.from; + maxX = ends.to; + } + + if (axis = chart.axes.get(boundYAxis)) { + ends = axis.applyData(); + minY = ends.from; + maxY = ends.to; + } + + + if (me.xField && !Ext.isNumber(minX)) { + axis = me.getMinMaxXValues(); + allowDate = true; + minX = axis[0]; + maxX = axis[1]; + } + + if (me.yField && !Ext.isNumber(minY)) { + axis = me.getMinMaxYValues(); + minY = axis[0]; + maxY = axis[1]; + } + + if (!Ext.isNumber(minY)) { + minY = 0; + } + if (!Ext.isNumber(maxY)) { + maxY = 0; + } + + l = data.length; + if (l > 0 && allowDate) { + tmp = data[0].get(me.xField); + if (typeof tmp != 'number') { + tmp = +tmp; + if (isNaN(tmp)) { + allowDate = false; + } + } + } + for (i = 0; i < l; i++) { + record = data[i]; + xValue = record.get(me.xField); + yValue = []; + if (typeof xValue != 'number') { + if (allowDate) { + xValue = +xValue; + } else { + xValue = i; + } + } + xValues.push(xValue); + acumY = 0; + for (areaIndex = 0; areaIndex < areasLen; areaIndex++) { + + if (me.__excludes[areaIndex]) { + continue; + } + areaElem = record.get(areas[areaIndex]); + if (typeof areaElem == 'number') { + yValue.push(areaElem); + } + } + yValues.push(yValue); + } + + xScale = bbox.width / ((maxX - minX) || 1); + yScale = bbox.height / ((maxY - minY) || 1); + + ln = xValues.length; + if ((ln > bbox.width) && me.areas) { + sumValues = me.shrink(xValues, yValues, bbox.width); + xValues = sumValues.x; + yValues = sumValues.y; + } + + return { + bbox: bbox, + minX: minX, + minY: minY, + xValues: xValues, + yValues: yValues, + xScale: xScale, + yScale: yScale, + areasLen: areasLen + }; + }, + + + getPaths: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + first = true, + bounds = me.getBounds(), + bbox = bounds.bbox, + items = me.items = [], + componentPaths = [], + componentPath, + count = 0, + paths = [], + i, ln, x, y, xValue, yValue, acumY, areaIndex, prevAreaIndex, areaElem, path, startX; + + ln = bounds.xValues.length; + + for (i = 0; i < ln; i++) { + xValue = bounds.xValues[i]; + yValue = bounds.yValues[i]; + x = bbox.x + (xValue - bounds.minX) * bounds.xScale; + if (startX === undefined) { + startX = x; + } + acumY = 0; + count = 0; + for (areaIndex = 0; areaIndex < bounds.areasLen; areaIndex++) { + + if (me.__excludes[areaIndex]) { + continue; + } + if (!componentPaths[areaIndex]) { + componentPaths[areaIndex] = []; + } + areaElem = yValue[count]; + acumY += areaElem; + y = bbox.y + bbox.height - (acumY - bounds.minY) * bounds.yScale; + if (!paths[areaIndex]) { + paths[areaIndex] = ['M', x, y]; + componentPaths[areaIndex].push(['L', x, y]); + } else { + paths[areaIndex].push('L', x, y); + componentPaths[areaIndex].push(['L', x, y]); + } + if (!items[areaIndex]) { + items[areaIndex] = { + pointsUp: [], + pointsDown: [], + series: me + }; + } + items[areaIndex].pointsUp.push([x, y]); + count++; + } + } + + + for (areaIndex = 0; areaIndex < bounds.areasLen; areaIndex++) { + + if (me.__excludes[areaIndex]) { + continue; + } + path = paths[areaIndex]; + + + if (areaIndex == 0 || first) { + first = false; + + path.push('L', x, bbox.y + bbox.height, + 'L', startX, bbox.y + bbox.height, + 'Z'); + } + + else { + componentPath = componentPaths[prevAreaIndex]; + componentPath.reverse(); + path.push('L', x, componentPath[0][2]); + for (i = 0; i < ln; i++) { + path.push(componentPath[i][0], + componentPath[i][1], + componentPath[i][2]); + items[areaIndex].pointsDown[ln -i -1] = [componentPath[i][1], componentPath[i][2]]; + } + path.push('L', startX, path[2], 'Z'); + } + prevAreaIndex = areaIndex; + } + return { + paths: paths, + areasLen: bounds.areasLen + }; + }, + + + drawSeries: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + surface = chart.surface, + animate = chart.animate, + group = me.group, + endLineStyle = Ext.apply(me.seriesStyle, me.style), + colorArrayStyle = me.colorArrayStyle, + colorArrayLength = colorArrayStyle && colorArrayStyle.length || 0, + themeIndex = me.themeIdx, + areaIndex, areaElem, paths, path, rendererAttributes, idx; + + me.unHighlightItem(); + me.cleanHighlights(); + + if (!store || !store.getCount() || me.seriesIsHidden) { + me.hide(); + me.items = []; + return; + } + + paths = me.getPaths(); + + if (!me.areas) { + me.areas = []; + } + + for (areaIndex = 0; areaIndex < paths.areasLen; areaIndex++) { + + if (me.__excludes[areaIndex]) { + continue; + } + idx = themeIndex + areaIndex; + if (!me.areas[areaIndex]) { + me.items[areaIndex].sprite = me.areas[areaIndex] = surface.add(Ext.apply({}, { + type: 'path', + group: group, + + path: paths.paths[areaIndex], + stroke: endLineStyle.stroke || colorArrayStyle[idx % colorArrayLength], + fill: colorArrayStyle[idx % colorArrayLength] + }, endLineStyle || {})); + } + areaElem = me.areas[areaIndex]; + path = paths.paths[areaIndex]; + if (animate) { + + rendererAttributes = me.renderer(areaElem, false, { + path: path, + + fill: colorArrayStyle[areaIndex % colorArrayLength], + stroke: endLineStyle.stroke || colorArrayStyle[areaIndex % colorArrayLength] + }, areaIndex, store); + + me.animation = me.onAnimate(areaElem, { + to: rendererAttributes + }); + } else { + rendererAttributes = me.renderer(areaElem, false, { + path: path, + + hidden: false, + fill: colorArrayStyle[idx % colorArrayLength], + stroke: endLineStyle.stroke || colorArrayStyle[idx % colorArrayLength] + }, areaIndex, store); + me.areas[areaIndex].setAttributes(rendererAttributes, true); + } + } + me.renderLabels(); + me.renderCallouts(); + }, + + + onAnimate: function(sprite, attr) { + sprite.show(); + return this.callParent(arguments); + }, + + + onCreateLabel: function(storeItem, item, i, display) { + + + + + + + + + + return null; + + var me = this, + group = me.labelsGroup, + config = me.label, + bbox = me.bbox, + endLabelStyle = Ext.apply({}, config, me.seriesLabelStyle || {}); + + return me.chart.surface.add(Ext.apply({ + 'type': 'text', + 'text-anchor': 'middle', + 'group': group, + 'x': Number(item.point[0]), + 'y': bbox.y + bbox.height / 2 + }, endLabelStyle || {})); + }, + + + onPlaceLabel: function(label, storeItem, item, i, display, animate, index) { + var me = this, + chart = me.chart, + resizing = chart.resizing, + config = me.label, + format = config.renderer, + field = config.field, + bbox = me.bbox, + x = Number(item.point[i][0]), + y = Number(item.point[i][1]), + labelBox, width, height; + + label.setAttributes({ + text: format(storeItem.get(field[index]), label, storeItem, item, i, display, animate, index), + hidden: true + }, true); + + labelBox = label.getBBox(); + width = labelBox.width / 2; + height = labelBox.height / 2; + + + if (x < bbox.x + width) { + x = bbox.x + width; + } else if (x + width > bbox.x + bbox.width) { + x = bbox.x + bbox.width - width; + } + + y = y - height; + if (y < bbox.y + height) { + y += 2 * height; + } else if (y + height > bbox.y + bbox.height) { + y -= 2 * height; + } + + if (me.chart.animate && !me.chart.resizing) { + label.show(true); + me.onAnimate(label, { + to: { + x: x, + y: y + } + }); + } else { + label.setAttributes({ + x: x, + y: y + }, true); + if (resizing && me.animation) { + me.animation.on('afteranimate', function() { + label.show(true); + }); + } else { + label.show(true); + } + } + }, + + + onPlaceCallout : function(callout, storeItem, item, i, display, animate, index) { + var me = this, + chart = me.chart, + surface = chart.surface, + resizing = chart.resizing, + config = me.callouts, + items = me.items, + prev = (i == 0) ? false : items[i -1].point, + next = (i == items.length -1) ? false : items[i +1].point, + cur = item.point, + dir, norm, normal, a, aprev, anext, + bbox = (callout && callout.label ? callout.label.getBBox() : {width:0,height:0}), + offsetFromViz = 30, + offsetToSide = 10, + offsetBox = 3, + boxx, boxy, boxw, boxh, + p, clipRect = me.clipRect, + x, y; + + if (!bbox.width || !bbox.height) { + return; + } + + + if (!prev) { + prev = cur; + } + if (!next) { + next = cur; + } + a = (next[1] - prev[1]) / (next[0] - prev[0]); + aprev = (cur[1] - prev[1]) / (cur[0] - prev[0]); + anext = (next[1] - cur[1]) / (next[0] - cur[0]); + + norm = Math.sqrt(1 + a * a); + dir = [1 / norm, a / norm]; + normal = [-dir[1], dir[0]]; + + + if (aprev > 0 && anext < 0 && normal[1] < 0 || aprev < 0 && anext > 0 && normal[1] > 0) { + normal[0] *= -1; + normal[1] *= -1; + } else if (Math.abs(aprev) < Math.abs(anext) && normal[0] < 0 || Math.abs(aprev) > Math.abs(anext) && normal[0] > 0) { + normal[0] *= -1; + normal[1] *= -1; + } + + + x = cur[0] + normal[0] * offsetFromViz; + y = cur[1] + normal[1] * offsetFromViz; + + + boxx = x + (normal[0] > 0? 0 : -(bbox.width + 2 * offsetBox)); + boxy = y - bbox.height /2 - offsetBox; + boxw = bbox.width + 2 * offsetBox; + boxh = bbox.height + 2 * offsetBox; + + + + if (boxx < clipRect[0] || (boxx + boxw) > (clipRect[0] + clipRect[2])) { + normal[0] *= -1; + } + if (boxy < clipRect[1] || (boxy + boxh) > (clipRect[1] + clipRect[3])) { + normal[1] *= -1; + } + + + x = cur[0] + normal[0] * offsetFromViz; + y = cur[1] + normal[1] * offsetFromViz; + + + boxx = x + (normal[0] > 0? 0 : -(bbox.width + 2 * offsetBox)); + boxy = y - bbox.height /2 - offsetBox; + boxw = bbox.width + 2 * offsetBox; + boxh = bbox.height + 2 * offsetBox; + + + callout.lines.setAttributes({ + path: ["M", cur[0], cur[1], "L", x, y, "Z"] + }, true); + + callout.box.setAttributes({ + x: boxx, + y: boxy, + width: boxw, + height: boxh + }, true); + + callout.label.setAttributes({ + x: x + (normal[0] > 0? offsetBox : -(bbox.width + offsetBox)), + y: y + }, true); + for (p in callout) { + callout[p].show(true); + } + }, + + isItemInPoint: function(x, y, item, i) { + var me = this, + pointsUp = item.pointsUp, + pointsDown = item.pointsDown, + abs = Math.abs, + distChanged = false, + last = false, + dist = Infinity, p, pln, point; + + for (p = 0, pln = pointsUp.length; p < pln; p++) { + point = [pointsUp[p][0], pointsUp[p][1]]; + + distChanged = false; + last = p == pln -1; + + if (dist > abs(x - point[0])) { + dist = abs(x - point[0]); + distChanged = true; + if (last) { + ++p; + } + } + + if (!distChanged || (distChanged && last)) { + point = pointsUp[p -1]; + if (y >= point[1] && (!pointsDown.length || y <= (pointsDown[p -1][1]))) { + item.storeIndex = p -1; + item.storeField = me.yField[i]; + item.storeItem = me.chart.getChartStore().getAt(p -1); + item._points = pointsDown.length? [point, pointsDown[p -1]] : [point]; + return true; + } else { + break; + } + } + } + return false; + }, + + + highlightSeries: function() { + var area, to, fillColor; + if (this._index !== undefined) { + area = this.areas[this._index]; + if (area.__highlightAnim) { + area.__highlightAnim.paused = true; + } + area.__highlighted = true; + area.__prevOpacity = area.__prevOpacity || area.attr.opacity || 1; + area.__prevFill = area.__prevFill || area.attr.fill; + area.__prevLineWidth = area.__prevLineWidth || area.attr.lineWidth; + fillColor = Ext.draw.Color.fromString(area.__prevFill); + to = { + lineWidth: (area.__prevLineWidth || 0) + 2 + }; + if (fillColor) { + to.fill = fillColor.getLighter(0.2).toString(); + } + else { + to.opacity = Math.max(area.__prevOpacity - 0.3, 0); + } + if (this.chart.animate) { + area.__highlightAnim = new Ext.fx.Anim(Ext.apply({ + target: area, + to: to + }, this.chart.animate)); + } + else { + area.setAttributes(to, true); + } + } + }, + + + unHighlightSeries: function() { + var area; + if (this._index !== undefined) { + area = this.areas[this._index]; + if (area.__highlightAnim) { + area.__highlightAnim.paused = true; + } + if (area.__highlighted) { + area.__highlighted = false; + area.__highlightAnim = new Ext.fx.Anim({ + target: area, + to: { + fill: area.__prevFill, + opacity: area.__prevOpacity, + lineWidth: area.__prevLineWidth + } + }); + } + } + }, + + + highlightItem: function(item) { + var me = this, + points, path; + if (!item) { + this.highlightSeries(); + return; + } + points = item._points; + path = points.length == 2? ['M', points[0][0], points[0][1], 'L', points[1][0], points[1][1]] + : ['M', points[0][0], points[0][1], 'L', points[0][0], me.bbox.y + me.bbox.height]; + me.highlightSprite.setAttributes({ + path: path, + hidden: false + }, true); + }, + + + unHighlightItem: function(item) { + if (!item) { + this.unHighlightSeries(); + } + + if (this.highlightSprite) { + this.highlightSprite.hide(true); + } + }, + + + hideAll: function(index) { + var me = this; + index = (isNaN(me._index) ? index : me._index) || 0; + me.__excludes[index] = true; + me.areas[index].hide(true); + me.redraw(); + }, + + + showAll: function(index) { + var me = this; + index = (isNaN(me._index) ? index : me._index) || 0; + me.__excludes[index] = false; + me.areas[index].show(true); + me.redraw(); + }, + + redraw: function() { + + + + var me = this, + prevLegendConfig; + prevLegendConfig = me.chart.legend.rebuild; + me.chart.legend.rebuild = false; + me.chart.redraw(); + me.chart.legend.rebuild = prevLegendConfig; + }, + + hide: function() { + if (this.areas) { + var me = this, + areas = me.areas, + i, j, l, ln, shadows; + + if (areas && areas.length) { + for (i = 0, ln = areas.length; i < ln; ++i) { + if (areas[i]) { + areas[i].hide(true); + } + } + me.hideLabels(); + } + } + }, + + + getLegendColor: function(index) { + var me = this; + index += me.themeIdx; + return me.colorArrayStyle[index % me.colorArrayStyle.length]; + } +}); + + +Ext.define('Ext.chart.series.Bar', { + + + + extend: Ext.chart.series.Cartesian , + + alternateClassName: ['Ext.chart.BarSeries', 'Ext.chart.BarChart', 'Ext.chart.StackedBarChart'], + + + + + + type: 'bar', + + alias: 'series.bar', + + column: false, + + + style: {}, + + + gutter: 38.2, + + + groupGutter: 38.2, + + + xPadding: 0, + + + yPadding: 10, + + + + constructor: function(config) { + this.callParent(arguments); + var me = this, + surface = me.chart.surface, + shadow = me.chart.shadow, + i, l; + config.highlightCfg = Ext.Object.merge({ + lineWidth: 3, + stroke: '#55c', + opacity: 0.8, + color: '#f00' + }, config.highlightCfg); + Ext.apply(me, config, { + shadowAttributes: [{ + "stroke-width": 6, + "stroke-opacity": 0.05, + stroke: 'rgb(200, 200, 200)', + translate: { + x: 1.2, + y: 1.2 + } + }, { + "stroke-width": 4, + "stroke-opacity": 0.1, + stroke: 'rgb(150, 150, 150)', + translate: { + x: 0.9, + y: 0.9 + } + }, { + "stroke-width": 2, + "stroke-opacity": 0.15, + stroke: 'rgb(100, 100, 100)', + translate: { + x: 0.6, + y: 0.6 + } + }] + }); + + me.group = surface.getGroup(me.seriesId + '-bars'); + if (shadow) { + for (i = 0, l = me.shadowAttributes.length; i < l; i++) { + me.shadowGroups.push(surface.getGroup(me.seriesId + '-shadows' + i)); + } + } + }, + + + getPadding: function() { + var me = this, + xPadding = me.xPadding, + yPadding = me.yPadding, + padding = { }; + + if (Ext.isNumber(xPadding)) { + padding.left = xPadding; + padding.right = xPadding; + } else if (Ext.isObject(xPadding)) { + padding.left = xPadding.left; + padding.right = xPadding.right; + } else { + padding.left = 0; + padding.right = 0; + } + padding.width = padding.left + padding.right; + + if (Ext.isNumber(yPadding)) { + padding.bottom = yPadding; + padding.top = yPadding; + } else if (Ext.isObject(yPadding)) { + padding.bottom = yPadding.bottom; + padding.top = yPadding.top; + } else { + padding.bottom = 0; + padding.top = 0; + } + padding.height = padding.bottom + padding.top; + + return padding; + }, + + + getBarGirth: function() { + var me = this, + store = me.chart.getChartStore(), + column = me.column, + ln = store.getCount(), + gutter = me.gutter / 100, + padding, + property; + + if (me.style && me.style.width) { + return me.style.width; + } + padding = me.getPadding(); + property = (column ? 'width' : 'height'); + return (me.chart.chartBBox[property] - padding[property]) / (ln * (gutter + 1) - gutter); + }, + + + getGutters: function() { + var me = this, + column = me.column, + padding = me.getPadding(), + halfBarGirth = me.getBarGirth() / 2, + lowerGutter = Math.ceil((column ? padding.left : padding.bottom) + halfBarGirth), + upperGutter = Math.ceil((column ? padding.right : padding.top) + halfBarGirth); + + return { + lower: lowerGutter, + upper: upperGutter, + verticalAxis: !column + }; + }, + + + getBounds: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + data = store.data.items, + i, ln, record, + bars = [].concat(me.yField), + barsLoc, + barsLen = bars.length, + groupBarsLen = barsLen, + groupGutter = me.groupGutter / 100, + column = me.column, + padding = me.getPadding(), + stacked = me.stacked, + barWidth = me.getBarGirth(), + barWidthProperty = column ? 'width' : 'height', + math = Math, + mmin = math.min, + mmax = math.max, + mabs = math.abs, + boundAxes = me.getAxesForXAndYFields(), + boundYAxis = boundAxes.yAxis, + minX, maxX, colsScale, colsZero, gutters, + ends, shrunkBarWidth, groupBarWidth, bbox, minY, maxY, axis, out, + scale, zero, total, rec, j, plus, minus; + + me.setBBox(true); + bbox = me.bbox; + + + if (me.__excludes) { + for (j = 0, total = me.__excludes.length; j < total; j++) { + if (me.__excludes[j]) { + groupBarsLen--; + } + } + } + axis = chart.axes.get(boundYAxis); + if (axis) { + ends = axis.applyData(); + minY = ends.from; + maxY = ends.to; + } + + if (me.yField && !Ext.isNumber(minY)) { + out = me.getMinMaxYValues(); + minY = out[0]; + maxY = out[1]; + } + + if (!Ext.isNumber(minY)) { + minY = 0; + } + if (!Ext.isNumber(maxY)) { + maxY = 0; + } + scale = (column ? bbox.height - padding.height : bbox.width - padding.width) / (maxY - minY); + shrunkBarWidth = barWidth; + groupBarWidth = (barWidth / ((stacked ? 1 : groupBarsLen) * (groupGutter + 1) - groupGutter)); + + if (barWidthProperty in me.style) { + groupBarWidth = mmin(groupBarWidth, me.style[barWidthProperty]); + shrunkBarWidth = groupBarWidth * ((stacked ? 1 : groupBarsLen) * (groupGutter + 1) - groupGutter); + } + zero = (column) ? bbox.y + bbox.height - padding.bottom : bbox.x + padding.left; + + if (stacked) { + total = [[], []]; + for (i = 0, ln = data.length; i < ln; i++) { + record = data[i]; + total[0][i] = total[0][i] || 0; + total[1][i] = total[1][i] || 0; + for (j = 0; j < barsLen; j++) { + if (me.__excludes && me.__excludes[j]) { + continue; + } + rec = record.get(bars[j]); + total[+(rec > 0)][i] += mabs(rec); + } + } + total[+(maxY > 0)].push(mabs(maxY)); + total[+(minY > 0)].push(mabs(minY)); + minus = mmax.apply(math, total[0]); + plus = mmax.apply(math, total[1]); + scale = (column ? bbox.height - padding.height : bbox.width - padding.width) / (plus + minus); + zero = zero + minus * scale * (column ? -1 : 1); + } + else if (minY / maxY < 0) { + zero = zero - minY * scale * (column ? -1 : 1); + } + + + if (me.boundColumn) { + axis = chart.axes.get(boundAxes.xAxis); + if (axis) { + ends = axis.applyData(); + minX = ends.from; + maxX = ends.to; + } + if (me.xField && !Ext.isNumber(minX)) { + out = me.getMinMaxYValues(); + minX = out[0]; + maxX = out[1]; + } + if (!Ext.isNumber(minX)) { + minX = 0; + } + if (!Ext.isNumber(maxX)) { + maxX = 0; + } + gutters = me.getGutters(); + colsScale = (bbox.width - (gutters.lower + gutters.upper)) / ((maxX - minX) || 1); + + colsZero = bbox.x + gutters.lower; + + barsLoc = []; + for (i = 0, ln = data.length; i < ln; i++) { + record = data[i]; + rec = record.get(me.xField); + barsLoc[i] = colsZero + (rec - minX) * colsScale - (groupBarWidth / 2); + } + } + + return { + bars: bars, + barsLoc: barsLoc, + bbox: bbox, + shrunkBarWidth: shrunkBarWidth, + barsLen: barsLen, + groupBarsLen: groupBarsLen, + barWidth: barWidth, + groupBarWidth: groupBarWidth, + scale: scale, + zero: zero, + padding: padding, + signed: minY / maxY < 0, + minY: minY, + maxY: maxY + }; + }, + + + getPaths: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + data = store.data.items, + i, total, record, + bounds = me.bounds = me.getBounds(), + items = me.items = [], + yFields = Ext.isArray(me.yField) ? me.yField : [me.yField], + gutter = me.gutter / 100, + groupGutter = me.groupGutter / 100, + animate = chart.animate, + column = me.column, + group = me.group, + enableShadows = chart.shadow, + shadowGroups = me.shadowGroups, + shadowAttributes = me.shadowAttributes, + shadowGroupsLn = shadowGroups.length, + bbox = bounds.bbox, + barWidth = bounds.barWidth, + shrunkBarWidth = bounds.shrunkBarWidth, + padding = me.getPadding(), + stacked = me.stacked, + barsLen = bounds.barsLen, + colors = me.colorArrayStyle, + colorLength = colors && colors.length || 0, + themeIndex = me.themeIdx, + math = Math, + mmax = math.max, + mmin = math.min, + mabs = math.abs, + j, yValue, height, totalDim, totalNegDim, bottom, top, hasShadow, barAttr, attrs, counter, + totalPositiveValues, totalNegativeValues, + shadowIndex, shadow, sprite, offset, floorY, idx; + + for (i = 0, total = data.length; i < total; i++) { + record = data[i]; + bottom = bounds.zero; + top = bounds.zero; + totalDim = 0; + totalNegDim = 0; + totalPositiveValues = totalNegativeValues = 0; + hasShadow = false; + for (j = 0, counter = 0; j < barsLen; j++) { + + if (me.__excludes && me.__excludes[j]) { + continue; + } + yValue = record.get(bounds.bars[j]); + if (yValue >= 0) { + totalPositiveValues += yValue; + } + else { + totalNegativeValues += yValue; + } + height = Math.round((yValue - mmax(bounds.minY, 0)) * bounds.scale); + idx = themeIndex + (barsLen > 1 ? j : 0); + barAttr = { + fill: colors[idx % colorLength] + }; + if (column) { + Ext.apply(barAttr, { + height: height, + width: mmax(bounds.groupBarWidth, 0), + x: (me.boundColumn ? bounds.barsLoc[i] + : (bbox.x + padding.left + + (barWidth - shrunkBarWidth) * 0.5 + + i * barWidth * (1 + gutter) + + counter * bounds.groupBarWidth * (1 + groupGutter) * !stacked)), + y: bottom - height + }); + } + else { + + offset = (total - 1) - i; + Ext.apply(barAttr, { + height: mmax(bounds.groupBarWidth, 0), + width: height + (bottom == bounds.zero), + x: bottom + (bottom != bounds.zero), + y: (bbox.y + padding.top + + (barWidth - shrunkBarWidth) * 0.5 + + offset * barWidth * (1 + gutter) + + counter * bounds.groupBarWidth * (1 + groupGutter) * !stacked + 1) + }); + } + if (height < 0) { + if (column) { + barAttr.y = top; + barAttr.height = mabs(height); + } else { + barAttr.x = top + height; + barAttr.width = mabs(height); + } + } + if (stacked) { + if (height < 0) { + top += height * (column ? -1 : 1); + } else { + bottom += height * (column ? -1 : 1); + } + totalDim += mabs(height); + if (height < 0) { + totalNegDim += mabs(height); + } + } + barAttr.x = Math.floor(barAttr.x) + 1; + floorY = Math.floor(barAttr.y); + if (Ext.isIE8m && barAttr.y > floorY) { + floorY--; + } + barAttr.y = floorY; + barAttr.width = Math.floor(barAttr.width); + barAttr.height = Math.floor(barAttr.height); + items.push({ + series: me, + yField: yFields[j], + storeItem: record, + value: [record.get(me.xField), yValue], + attr: barAttr, + point: column ? [barAttr.x + barAttr.width / 2, yValue >= 0 ? barAttr.y : barAttr.y + barAttr.height] : + [yValue >= 0 ? barAttr.x + barAttr.width : barAttr.x, barAttr.y + barAttr.height / 2] + }); + + if (animate && chart.resizing) { + attrs = column ? { + x: barAttr.x, + y: bounds.zero, + width: barAttr.width, + height: 0 + } : { + x: bounds.zero, + y: barAttr.y, + width: 0, + height: barAttr.height + }; + if (enableShadows && (stacked && !hasShadow || !stacked)) { + hasShadow = true; + + for (shadowIndex = 0; shadowIndex < shadowGroupsLn; shadowIndex++) { + shadow = shadowGroups[shadowIndex].getAt(stacked ? i : (i * barsLen + j)); + if (shadow) { + shadow.setAttributes(attrs, true); + } + } + } + + sprite = group.getAt(i * barsLen + j); + if (sprite) { + sprite.setAttributes(attrs, true); + } + } + counter++; + } + if (stacked && items.length) { + items[i * counter].totalDim = totalDim; + items[i * counter].totalNegDim = totalNegDim; + items[i * counter].totalPositiveValues = totalPositiveValues; + items[i * counter].totalNegativeValues = totalNegativeValues; + } + } + if (stacked && counter == 0) { + + for (i = 0, total = data.length; i < total; i++) { + for (shadowIndex = 0; shadowIndex < shadowGroupsLn; shadowIndex++) { + shadow = shadowGroups[shadowIndex].getAt(i); + if (shadow) { + shadow.hide(true); + } + } + } + } + }, + + + renderShadows: function(i, barAttr, baseAttrs, bounds) { + var me = this, + chart = me.chart, + surface = chart.surface, + animate = chart.animate, + stacked = me.stacked, + shadowGroups = me.shadowGroups, + shadowAttributes = me.shadowAttributes, + shadowGroupsLn = shadowGroups.length, + store = chart.getChartStore(), + column = me.column, + items = me.items, + shadows = [], + zero = bounds.zero, + shadowIndex, shadowBarAttr, shadow, totalDim, totalNegDim, j, rendererAttributes; + + if ((stacked && (i % bounds.groupBarsLen === 0)) || !stacked) { + j = i / bounds.groupBarsLen; + + for (shadowIndex = 0; shadowIndex < shadowGroupsLn; shadowIndex++) { + shadowBarAttr = Ext.apply({}, shadowAttributes[shadowIndex]); + shadow = shadowGroups[shadowIndex].getAt(stacked ? j : i); + Ext.copyTo(shadowBarAttr, barAttr, 'x,y,width,height'); + if (!shadow) { + shadow = surface.add(Ext.apply({ + type: 'rect', + group: shadowGroups[shadowIndex] + }, Ext.apply({}, baseAttrs, shadowBarAttr))); + } + if (stacked) { + totalDim = items[i].totalDim; + totalNegDim = items[i].totalNegDim; + if (column) { + shadowBarAttr.y = zero + totalNegDim - totalDim - 1; + shadowBarAttr.height = totalDim; + } + else { + shadowBarAttr.x = zero - totalNegDim; + shadowBarAttr.width = totalDim; + } + } + + rendererAttributes = me.renderer(shadow, store.getAt(j), shadowBarAttr, i, store); + rendererAttributes.hidden = !!barAttr.hidden; + if (animate) { + me.onAnimate(shadow, { to: rendererAttributes }); + } + else { + shadow.setAttributes(rendererAttributes, true); + } + shadows.push(shadow); + } + } + return shadows; + }, + + + drawSeries: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + surface = chart.surface, + animate = chart.animate, + stacked = me.stacked, + column = me.column, + chartAxes = chart.axes, + boundAxes = me.getAxesForXAndYFields(), + boundXAxis = boundAxes.xAxis, + boundYAxis = boundAxes.yAxis, + enableShadows = chart.shadow, + shadowGroups = me.shadowGroups, + shadowGroupsLn = shadowGroups.length, + group = me.group, + seriesStyle = me.seriesStyle, + items, ln, i, j, baseAttrs, sprite, rendererAttributes, shadowIndex, shadowGroup, + bounds, endSeriesStyle, barAttr, attrs, anim; + + if (!store || !store.getCount() || me.seriesIsHidden) { + me.hide(); + me.items = []; + return; + } + + + endSeriesStyle = Ext.apply({}, this.style, seriesStyle); + delete endSeriesStyle.fill; + delete endSeriesStyle.x; + delete endSeriesStyle.y; + delete endSeriesStyle.width; + delete endSeriesStyle.height; + + me.unHighlightItem(); + me.cleanHighlights(); + + me.boundColumn = (boundXAxis && Ext.Array.contains(me.axis,boundXAxis) + && chartAxes.get(boundXAxis) + && chartAxes.get(boundXAxis).isNumericAxis); + + me.getPaths(); + bounds = me.bounds; + items = me.items; + + baseAttrs = column ? { + y: bounds.zero, + height: 0 + } : { + x: bounds.zero, + width: 0 + }; + ln = items.length; + + + for (i = 0; i < ln; i++) { + sprite = group.getAt(i); + barAttr = items[i].attr; + + if (enableShadows) { + items[i].shadows = me.renderShadows(i, barAttr, baseAttrs, bounds); + } + + + if (!sprite) { + attrs = Ext.apply({}, baseAttrs, barAttr); + attrs = Ext.apply(attrs, endSeriesStyle || {}); + sprite = surface.add(Ext.apply({}, { + type: 'rect', + group: group + }, attrs)); + } + if (animate) { + rendererAttributes = me.renderer(sprite, store.getAt(i), barAttr, i, store); + sprite._to = rendererAttributes; + anim = me.onAnimate(sprite, { to: Ext.apply(rendererAttributes, endSeriesStyle) }); + if (enableShadows && stacked && (i % bounds.barsLen === 0)) { + j = i / bounds.barsLen; + for (shadowIndex = 0; shadowIndex < shadowGroupsLn; shadowIndex++) { + anim.on('afteranimate', function() { + this.show(true); + }, shadowGroups[shadowIndex].getAt(j)); + } + } + } + else { + rendererAttributes = me.renderer(sprite, store.getAt(i), Ext.apply(barAttr, { hidden: false }), i, store); + sprite.setAttributes(Ext.apply(rendererAttributes, endSeriesStyle), true); + } + items[i].sprite = sprite; + } + + + ln = group.getCount(); + for (j = i; j < ln; j++) { + group.getAt(j).hide(true); + } + + if (me.stacked) { + + i = store.getCount(); + } + + + if (enableShadows) { + for (shadowIndex = 0; shadowIndex < shadowGroupsLn; shadowIndex++) { + shadowGroup = shadowGroups[shadowIndex]; + ln = shadowGroup.getCount(); + for (j = i; j < ln; j++) { + shadowGroup.getAt(j).hide(true); + } + } + } + me.renderLabels(); + }, + + + onCreateLabel: function(storeItem, item, i, display) { + var me = this, + surface = me.chart.surface, + group = me.labelsGroup, + config = me.label, + endLabelStyle = Ext.apply({}, config, me.seriesLabelStyle || {}), + sprite; + + return surface.add(Ext.apply({ + type: 'text', + group: group + }, endLabelStyle || {})); + }, + + + onPlaceLabel: function(label, storeItem, item, i, display, animate, index) { + + + var me = this, + opt = me.bounds, + groupBarWidth = opt.groupBarWidth, + column = me.column, + chart = me.chart, + chartBBox = chart.chartBBox, + resizing = chart.resizing, + xValue = item.value[0], + yValue = item.value[1], + attr = item.attr, + config = me.label, + stacked = me.stacked, + stackedDisplay = config.stackedDisplay, + rotate = (config.orientation == 'vertical'), + field = [].concat(config.field), + format = config.renderer, + text, size, width, height, + zero = opt.zero, + insideStart = 'insideStart', + insideEnd = 'insideEnd', + outside = 'outside', + over = 'over', + under = 'under', + labelMarginX = 4, + labelMarginY = 2, + signed = opt.signed, + x, y, finalAttr; + + if (display == insideStart || display == insideEnd || display == outside) { + if (stacked && (display == outside)) { + + + label.hide(true); + return; + } + label.setAttributes({ + + + style: undefined + }); + text = (Ext.isNumber(index) ? format(storeItem.get(field[index]), label, storeItem, item, i, display, animate, index) : ''); + label.setAttributes({ + + text: text + }); + size = me.getLabelSize(text, label.attr.style); + width = size.width; + height = size.height; + if (column) { + + + + + + if (!width || !height || (stacked && (attr.height < height))) { + label.hide(true); + return; + } + + + x = attr.x + (rotate ? groupBarWidth/2 : (groupBarWidth - width)/2); + + + if (display == outside) { + var free = (yValue >= 0 ? (attr.y - chartBBox.y) : (chartBBox.y + chartBBox.height - attr.y - attr.height)); + if (free < height + labelMarginY) { + display = insideEnd; + } + } + + + + if (!stacked && (display != outside)) { + if (height + labelMarginY > attr.height) { + display = outside; + } + } + + + + if (!y) { + y = attr.y; + if (yValue >= 0) { + switch (display) { + case insideStart: y += attr.height + (rotate ? -labelMarginY : -height/2); break; + case insideEnd: y += (rotate ? height + labelMarginX : height/2); break; + case outside: y += (rotate ? -labelMarginY : -height/2); break; + } + } else { + switch (display) { + case insideStart: y += (rotate ? height + labelMarginY : height/2); break; + case insideEnd: y += (rotate ? attr.height - labelMarginY : attr.height - height/2); break; + case outside: y += (rotate ? attr.height + height + labelMarginY : attr.height + height/2); break; + } + } + } + } + else { + + + + + if (!width || !height || (stacked && !attr.width)) { + label.hide(true); + return; + } + + + y = attr.y + (rotate ? (groupBarWidth + height)/2 : groupBarWidth/2); + + + if (display == outside) { + var free = (yValue >= 0 ? (chartBBox.x + chartBBox.width - attr.x - attr.width) : (attr.x - chartBBox.x)); + if (free < width + labelMarginX) { + display = insideEnd; + } + } + + + + + if ((display != outside) && !rotate) { + if (width + labelMarginX > attr.width) { + if (stacked) { + if (height > attr.width) { + label.hide(true); + return; + } + x = attr.x + attr.width/2; + y = attr.y + attr.height - (attr.height - width)/2; + rotate = true; + } else { + display = outside; + } + } + } + + + + if (!x) { + x = attr.x; + if (yValue >= 0) { + switch (display) { + case insideStart: x += (rotate ? width/2 : labelMarginX); break; + case insideEnd: x += attr.width + (rotate ? -width/2 : -width - labelMarginX); break; + case outside: x += attr.width + (rotate ? width/2 : labelMarginX); break; + } + } else { + switch (display) { + case insideStart: x += attr.width + (rotate ? -width/2 : -width - labelMarginX); break; + case insideEnd: x += (rotate ? width/2 : labelMarginX); break; + case outside: x += (rotate ? -width/2 : -width - labelMarginX); break; + } + } + } + } + } else if (display == over || display == under) { + if (stacked && stackedDisplay) { + + + + text = label.attr.text; + label.setAttributes({ + + + style: Ext.applyIf((label.attr && label.attr.style) || {}, + { + 'font-weight':'bold', + 'font-size':'14px' + } + ) + }); + + size = me.getLabelSize(text, label.attr.style); + width = size.width; + height = size.height; + + switch (display) { + case over: + if (column) { + x = attr.x + (rotate ? groupBarWidth/2 : (groupBarWidth - width)/2); + y = zero - (item.totalDim - item.totalNegDim) - height/2 - labelMarginY; + } else { + x = zero + (item.totalDim - item.totalNegDim) + labelMarginX; + y = attr.y + (rotate ? (groupBarWidth + height)/2 : groupBarWidth/2); + } + break; + case under: + if (column) { + x = attr.x + (rotate ? groupBarWidth/2 : (groupBarWidth - width)/2); + y = zero + item.totalNegDim + height/2; + } else { + x = zero - item.totalNegDim - width - labelMarginX; + y = attr.y + (rotate ? (groupBarWidth + height)/2 : groupBarWidth/2); + } + break; + } + } + } + + if (x == undefined || y == undefined) { + + label.hide(true); + return; + } + + label.isOutside = (display == outside); + label.setAttributes({ + text: text + }); + + + finalAttr = { + x: x, + y: y + }; + + if (rotate) { + finalAttr.rotate = { + x: x, + y: y, + degrees: 270 + }; + } + + if (animate && resizing) { + if (column) { + x = attr.x + attr.width / 2; + y = zero; + } else { + x = zero; + y = attr.y + attr.height / 2; + } + label.setAttributes({ + x: x, + y: y + }, true); + if (rotate) { + label.setAttributes({ + rotate: { + x: x, + y: y, + degrees: 270 + } + }, true); + } + } + + if (animate) { + me.onAnimate(label, { to: finalAttr }); + } + else { + label.setAttributes(Ext.apply(finalAttr, { + hidden: false + }), true); + } + }, + + + getLabelSize: function(value, labelStyle) { + var tester = this.testerLabel, + config = this.label, + endLabelStyle = Ext.apply({}, config, labelStyle, this.seriesLabelStyle || {}), + rotated = config.orientation === 'vertical', + bbox, w, h, + undef; + if (!tester) { + tester = this.testerLabel = this.chart.surface.add(Ext.apply({ + type: 'text', + opacity: 0 + }, endLabelStyle)); + } + tester.setAttributes({ + style: labelStyle, + text: value + }, true); + + + bbox = tester.getBBox(); + w = bbox.width; + h = bbox.height; + return { + width: rotated ? h : w, + height: rotated ? w : h + }; + }, + + + onAnimate: function(sprite, attr) { + sprite.show(); + return this.callParent(arguments); + }, + + isItemInPoint: function(x, y, item) { + var bbox = item.sprite.getBBox(); + return bbox.x <= x && bbox.y <= y + && (bbox.x + bbox.width) >= x + && (bbox.y + bbox.height) >= y; + }, + + + hideAll: function(index) { + var axes = this.chart.axes, + axesItems = axes.items, + ln = axesItems.length, + i = 0; + + index = (isNaN(this._index) ? index : this._index) || 0; + + if (!this.__excludes) { + this.__excludes = []; + } + + this.__excludes[index] = true; + this.drawSeries(); + + for (i; i < ln; i++) { + axesItems[i].drawAxis(); + } + }, + + + showAll: function(index) { + var axes = this.chart.axes, + axesItems = axes.items, + ln = axesItems.length, + i = 0; + + index = (isNaN(this._index) ? index : this._index) || 0; + + if (!this.__excludes) { + this.__excludes = []; + } + + this.__excludes[index] = false; + this.drawSeries(); + + for (i; i < ln; i++) { + axesItems[i].drawAxis(); + } + }, + + + getLegendColor: function(index) { + var me = this, + colorLength = me.colorArrayStyle.length; + + if (me.style && me.style.fill) { + return me.style.fill; + } else { + return me.colorArrayStyle[index % colorLength]; + } + }, + + highlightItem: function(item) { + this.callParent(arguments); + this.renderLabels(); + }, + + unHighlightItem: function() { + this.callParent(arguments); + this.renderLabels(); + }, + + cleanHighlights: function() { + this.callParent(arguments); + this.renderLabels(); + } +}); + + +Ext.define('Ext.chart.series.Column', { + + + + alternateClassName: ['Ext.chart.ColumnSeries', 'Ext.chart.ColumnChart', 'Ext.chart.StackedColumnChart'], + + extend: Ext.chart.series.Bar , + + + + type: 'column', + alias: 'series.column', + + column: true, + + + boundColumn: false, + + + + + xPadding: 10, + + + yPadding: 0 +}); + + +Ext.define('Ext.chart.series.Gauge', { + + + + extend: Ext.chart.series.Series , + + + + type: "gauge", + alias: 'series.gauge', + + rad: Math.PI / 180, + + + highlightDuration: 150, + + + angleField: false, + + + needle: false, + + + donut: false, + + + showInLegend: false, + + + style: {}, + + constructor: function(config) { + this.callParent(arguments); + var me = this, + chart = me.chart, + surface = chart.surface, + store = chart.store, + shadow = chart.shadow, i, l, cfg; + Ext.apply(me, config, { + shadowAttributes: [{ + "stroke-width": 6, + "stroke-opacity": 1, + stroke: 'rgb(200, 200, 200)', + translate: { + x: 1.2, + y: 2 + } + }, + { + "stroke-width": 4, + "stroke-opacity": 1, + stroke: 'rgb(150, 150, 150)', + translate: { + x: 0.9, + y: 1.5 + } + }, + { + "stroke-width": 2, + "stroke-opacity": 1, + stroke: 'rgb(100, 100, 100)', + translate: { + x: 0.6, + y: 1 + } + }] + }); + me.group = surface.getGroup(me.seriesId); + if (shadow) { + for (i = 0, l = me.shadowAttributes.length; i < l; i++) { + me.shadowGroups.push(surface.getGroup(me.seriesId + '-shadows' + i)); + } + } + surface.customAttributes.segment = function(opt) { + return me.getSegment(opt); + }; + }, + + + initialize: function() { + var me = this, + store = me.chart.getChartStore(), + data = store.data.items, + label = me.label, + ln = data.length; + + me.yField = []; + if (label && label.field && ln > 0) { + me.yField.push(data[0].get(label.field)); + } + }, + + + getSegment: function(opt) { + var me = this, + rad = me.rad, + cos = Math.cos, + sin = Math.sin, + abs = Math.abs, + x = me.centerX, + y = me.centerY, + x1 = 0, x2 = 0, x3 = 0, x4 = 0, + y1 = 0, y2 = 0, y3 = 0, y4 = 0, + delta = 1e-2, + r = opt.endRho - opt.startRho, + startAngle = opt.startAngle, + endAngle = opt.endAngle, + midAngle = (startAngle + endAngle) / 2 * rad, + margin = opt.margin || 0, + flag = abs(endAngle - startAngle) > 180, + a1 = Math.min(startAngle, endAngle) * rad, + a2 = Math.max(startAngle, endAngle) * rad, + singleSlice = false; + + x += margin * cos(midAngle); + y += margin * sin(midAngle); + + x1 = x + opt.startRho * cos(a1); + y1 = y + opt.startRho * sin(a1); + + x2 = x + opt.endRho * cos(a1); + y2 = y + opt.endRho * sin(a1); + + x3 = x + opt.startRho * cos(a2); + y3 = y + opt.startRho * sin(a2); + + x4 = x + opt.endRho * cos(a2); + y4 = y + opt.endRho * sin(a2); + + if (abs(x1 - x3) <= delta && abs(y1 - y3) <= delta) { + singleSlice = true; + } + + if (singleSlice) { + return { + path: [ + ["M", x1, y1], + ["L", x2, y2], + ["A", opt.endRho, opt.endRho, 0, +flag, 1, x4, y4], + ["Z"]] + }; + } else { + return { + path: [ + ["M", x1, y1], + ["L", x2, y2], + ["A", opt.endRho, opt.endRho, 0, +flag, 1, x4, y4], + ["L", x3, y3], + ["A", opt.startRho, opt.startRho, 0, +flag, 0, x1, y1], + ["Z"]] + }; + } + }, + + + calcMiddle: function(item) { + var me = this, + rad = me.rad, + slice = item.slice, + x = me.centerX, + y = me.centerY, + startAngle = slice.startAngle, + endAngle = slice.endAngle, + radius = Math.max(('rho' in slice) ? slice.rho: me.radius, me.label.minMargin), + donut = +me.donut, + a1 = Math.min(startAngle, endAngle) * rad, + a2 = Math.max(startAngle, endAngle) * rad, + midAngle = -(a1 + (a2 - a1) / 2), + xm = x + (item.endRho + item.startRho) / 2 * Math.cos(midAngle), + ym = y - (item.endRho + item.startRho) / 2 * Math.sin(midAngle); + + item.middle = { + x: xm, + y: ym + }; + }, + + + drawSeries: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + group = me.group, + animate = me.chart.animate, + axis = me.chart.axes.get(0), + minimum = axis && axis.minimum || me.minimum || 0, + maximum = axis && axis.maximum || me.maximum || 0, + field = me.angleField || me.field || me.xField, + surface = chart.surface, + chartBBox = chart.chartBBox, + rad = me.rad, + donut = +me.donut, + values = {}, + items = [], + seriesStyle = me.seriesStyle, + seriesLabelStyle = me.seriesLabelStyle, + colorArrayStyle = me.colorArrayStyle, + colorArrayLength = colorArrayStyle && colorArrayStyle.length || 0, + cos = Math.cos, + sin = Math.sin, + rendererAttributes, centerX, centerY, slice, slices, sprite, value, + item, ln, record, i, j, startAngle, endAngle, middleAngle, sliceLength, path, + p, spriteOptions, bbox, splitAngle, sliceA, sliceB; + + Ext.apply(seriesStyle, me.style || {}); + + me.setBBox(); + bbox = me.bbox; + + + if (me.colorSet) { + colorArrayStyle = me.colorSet; + colorArrayLength = colorArrayStyle.length; + } + + + if (!store || !store.getCount() || me.seriesIsHidden) { + me.hide(); + me.items = []; + return; + } + + centerX = me.centerX = chartBBox.x + (chartBBox.width / 2); + centerY = me.centerY = chartBBox.y + chartBBox.height; + me.radius = Math.min(centerX - chartBBox.x, centerY - chartBBox.y); + me.slices = slices = []; + me.items = items = []; + + if (!me.value) { + record = store.getAt(0); + me.value = record.get(field); + } + + value = me.value; + if (me.needle) { + sliceA = { + series: me, + value: value, + startAngle: -180, + endAngle: 0, + rho: me.radius + }; + splitAngle = -180 * (1 - (value - minimum) / (maximum - minimum)); + slices.push(sliceA); + } else { + splitAngle = -180 * (1 - (value - minimum) / (maximum - minimum)); + sliceA = { + series: me, + value: value, + startAngle: -180, + endAngle: splitAngle, + rho: me.radius + }; + sliceB = { + series: me, + value: me.maximum - value, + startAngle: splitAngle, + endAngle: 0, + rho: me.radius + }; + slices.push(sliceA, sliceB); + } + + + for (i = 0, ln = slices.length; i < ln; i++) { + slice = slices[i]; + sprite = group.getAt(i); + + rendererAttributes = Ext.apply({ + segment: { + startAngle: slice.startAngle, + endAngle: slice.endAngle, + margin: 0, + rho: slice.rho, + startRho: slice.rho * +donut / 100, + endRho: slice.rho + } + }, Ext.apply(seriesStyle, colorArrayStyle && { fill: colorArrayStyle[i % colorArrayLength] } || {})); + + item = Ext.apply({}, + rendererAttributes.segment, { + slice: slice, + series: me, + storeItem: record, + index: i + }); + items[i] = item; + + if (!sprite) { + spriteOptions = Ext.apply({ + type: "path", + group: group + }, Ext.apply(seriesStyle, colorArrayStyle && { fill: colorArrayStyle[i % colorArrayLength] } || {})); + sprite = surface.add(Ext.apply(spriteOptions, rendererAttributes)); + } + slice.sprite = slice.sprite || []; + item.sprite = sprite; + slice.sprite.push(sprite); + if (animate) { + rendererAttributes = me.renderer(sprite, record, rendererAttributes, i, store); + sprite._to = rendererAttributes; + me.onAnimate(sprite, { + to: rendererAttributes + }); + } else { + rendererAttributes = me.renderer(sprite, record, Ext.apply(rendererAttributes, { + hidden: false + }), i, store); + sprite.setAttributes(rendererAttributes, true); + } + } + + if (me.needle) { + splitAngle = splitAngle * Math.PI / 180; + + if (!me.needleSprite) { + me.needleSprite = me.chart.surface.add({ + type: 'path', + path: ['M', centerX + (me.radius * +donut / 100) * cos(splitAngle), + centerY + -Math.abs((me.radius * +donut / 100) * sin(splitAngle)), + 'L', centerX + me.radius * cos(splitAngle), + centerY + -Math.abs(me.radius * sin(splitAngle))], + 'stroke-width': 4, + 'stroke': '#222' + }); + } else { + if (animate) { + me.onAnimate(me.needleSprite, { + to: { + path: ['M', centerX + (me.radius * +donut / 100) * cos(splitAngle), + centerY + -Math.abs((me.radius * +donut / 100) * sin(splitAngle)), + 'L', centerX + me.radius * cos(splitAngle), + centerY + -Math.abs(me.radius * sin(splitAngle))] + } + }); + } else { + me.needleSprite.setAttributes({ + type: 'path', + path: ['M', centerX + (me.radius * +donut / 100) * cos(splitAngle), + centerY + -Math.abs((me.radius * +donut / 100) * sin(splitAngle)), + 'L', centerX + me.radius * cos(splitAngle), + centerY + -Math.abs(me.radius * sin(splitAngle))] + }); + } + } + me.needleSprite.setAttributes({ + hidden: false + }, true); + } + + delete me.value; + }, + + + setValue: function (value) { + this.value = value; + this.drawSeries(); + }, + + + onCreateLabel: function(storeItem, item, i, display) {}, + + + onPlaceLabel: function(label, storeItem, item, i, display, animate, index) {}, + + + onPlaceCallout: function() {}, + + + onAnimate: function(sprite, attr) { + sprite.show(); + return this.callParent(arguments); + }, + + isItemInPoint: function(x, y, item, i) { + var me = this, + cx = me.centerX, + cy = me.centerY, + abs = Math.abs, + dx = abs(x - cx), + dy = abs(y - cy), + startAngle = item.startAngle, + endAngle = item.endAngle, + rho = Math.sqrt(dx * dx + dy * dy), + angle = Math.atan2(y - cy, x - cx) / me.rad; + + + return (i === 0) && (angle >= startAngle && angle < endAngle && + rho >= item.startRho && rho <= item.endRho); + }, + + + getLegendColor: function(index) { + var colors = this.colorSet || this.colorArrayStyle; + return colors[index % colors.length]; + } +}); + + + +Ext.define('Ext.chart.series.Line', { + + + + extend: Ext.chart.series.Cartesian , + + alternateClassName: ['Ext.chart.LineSeries', 'Ext.chart.LineChart'], + + + + + + type: 'line', + + alias: 'series.line', + + + selectionTolerance: 20, + + + showMarkers: true, + + + markerConfig: {}, + + + style: {}, + + + smooth: false, + + + defaultSmoothness: 3, + + + fill: false, + + constructor: function(config) { + this.callParent(arguments); + var me = this, + surface = me.chart.surface, + shadow = me.chart.shadow, + i, l; + config.highlightCfg = Ext.Object.merge({ 'stroke-width': 3 }, config.highlightCfg); + Ext.apply(me, config, { + shadowAttributes: [{ + "stroke-width": 6, + "stroke-opacity": 0.05, + stroke: 'rgb(0, 0, 0)', + translate: { + x: 1, + y: 1 + } + }, { + "stroke-width": 4, + "stroke-opacity": 0.1, + stroke: 'rgb(0, 0, 0)', + translate: { + x: 1, + y: 1 + } + }, { + "stroke-width": 2, + "stroke-opacity": 0.15, + stroke: 'rgb(0, 0, 0)', + translate: { + x: 1, + y: 1 + } + }] + }); + me.group = surface.getGroup(me.seriesId); + if (me.showMarkers) { + me.markerGroup = surface.getGroup(me.seriesId + '-markers'); + } + if (shadow) { + for (i = 0, l = me.shadowAttributes.length; i < l; i++) { + me.shadowGroups.push(surface.getGroup(me.seriesId + '-shadows' + i)); + } + } + }, + + + shrink: function(xValues, yValues, size) { + + var len = xValues.length, + ratio = Math.floor(len / size), + i = 1, + xSum = 0, + ySum = 0, + xRes = [+xValues[0]], + yRes = [+yValues[0]]; + + for (; i < len; ++i) { + xSum += +xValues[i] || 0; + ySum += +yValues[i] || 0; + if (i % ratio == 0) { + xRes.push(xSum/ratio); + yRes.push(ySum/ratio); + xSum = 0; + ySum = 0; + } + } + return { + x: xRes, + y: yRes + }; + }, + + + drawSeries: function() { + var me = this, + chart = me.chart, + chartAxes = chart.axes, + store = chart.getChartStore(), + data = store.data.items, + record, + storeCount = store.getCount(), + surface = me.chart.surface, + bbox = {}, + group = me.group, + showMarkers = me.showMarkers, + markerGroup = me.markerGroup, + enableShadows = chart.shadow, + shadowGroups = me.shadowGroups, + shadowAttributes = me.shadowAttributes, + smooth = me.smooth, + lnsh = shadowGroups.length, + dummyPath = ["M"], + path = ["M"], + renderPath = ["M"], + smoothPath = ["M"], + markerIndex = chart.markerIndex, + axes = [].concat(me.axis), + shadowBarAttr, + xValues = [], + xValueMap = {}, + yValues = [], + yValueMap = {}, + onbreak = false, + storeIndices = [], + markerStyle = Ext.apply({}, me.markerStyle), + seriesStyle = me.seriesStyle, + colorArrayStyle = me.colorArrayStyle, + colorArrayLength = colorArrayStyle && colorArrayStyle.length || 0, + isNumber = Ext.isNumber, + seriesIdx = me.seriesIdx, + boundAxes = me.getAxesForXAndYFields(), + boundXAxis = boundAxes.xAxis, + boundYAxis = boundAxes.yAxis, + xAxisType = boundXAxis ? chartAxes.get(boundXAxis).type : '', + yAxisType = boundYAxis ? chartAxes.get(boundYAxis).type : '', + shadows, shadow, shindex, fromPath, fill, fillPath, rendererAttributes, + x, y, prevX, prevY, firstX, firstY, markerCount, i, j, ln, axis, ends, marker, markerAux, item, xValue, + yValue, coords, xScale, yScale, minX, maxX, minY, maxY, line, animation, endMarkerStyle, + endLineStyle, type, count, opacity, lineOpacity, fillOpacity, fillDefaultValue; + + if (me.fireEvent('beforedraw', me) === false) { + return; + } + + + if (!storeCount || me.seriesIsHidden) { + me.hide(); + me.items = []; + if (me.line) { + me.line.hide(true); + if (me.line.shadows) { + shadows = me.line.shadows; + for (j = 0, lnsh = shadows.length; j < lnsh; j++) { + shadow = shadows[j]; + shadow.hide(true); + } + } + if (me.fillPath) { + me.fillPath.hide(true); + } + } + me.line = null; + me.fillPath = null; + return; + } + + + endMarkerStyle = Ext.apply(markerStyle || {}, me.markerConfig, { + fill: me.seriesStyle.fill || colorArrayStyle[me.themeIdx % colorArrayStyle.length] + }); + type = endMarkerStyle.type; + delete endMarkerStyle.type; + endLineStyle = seriesStyle; + + + if (!endLineStyle['stroke-width']) { + endLineStyle['stroke-width'] = 0.5; + } + + + opacity = 'opacity' in endLineStyle ? endLineStyle.opacity : 1; + fillDefaultValue = 'opacity' in endLineStyle ? endLineStyle.opacity : 0.3; + lineOpacity = 'lineOpacity' in endLineStyle ? endLineStyle.lineOpacity : opacity; + fillOpacity = 'fillOpacity' in endLineStyle ? endLineStyle.fillOpacity : fillDefaultValue; + + + + if (markerIndex && markerGroup && markerGroup.getCount()) { + for (i = 0; i < markerIndex; i++) { + marker = markerGroup.getAt(i); + markerGroup.remove(marker); + markerGroup.add(marker); + markerAux = markerGroup.getAt(markerGroup.getCount() - 2); + marker.setAttributes({ + x: 0, + y: 0, + translate: { + x: markerAux.attr.translation.x, + y: markerAux.attr.translation.y + } + }, true); + } + } + + me.unHighlightItem(); + me.cleanHighlights(); + + me.setBBox(); + bbox = me.bbox; + me.clipRect = [bbox.x, bbox.y, bbox.width, bbox.height]; + + if (axis = chartAxes.get(boundXAxis)) { + ends = axis.applyData(); + minX = ends.from; + maxX = ends.to; + } + + if (axis = chartAxes.get(boundYAxis)) { + ends = axis.applyData(); + minY = ends.from; + maxY = ends.to; + } + + + if (me.xField && !Ext.isNumber(minX)) { + axis = me.getMinMaxXValues(); + minX = axis[0]; + maxX = axis[1]; + } + + if (me.yField && !Ext.isNumber(minY)) { + axis = me.getMinMaxYValues(); + minY = axis[0]; + maxY = axis[1]; + } + + if (isNaN(minX)) { + minX = 0; + xScale = bbox.width / ((storeCount - 1) || 1); + } + else { + xScale = bbox.width / ((maxX - minX) || (storeCount -1) || 1); + } + + if (isNaN(minY)) { + minY = 0; + yScale = bbox.height / ((storeCount - 1) || 1); + } + else { + yScale = bbox.height / ((maxY - minY) || (storeCount - 1) || 1); + } + + for (i = 0, ln = data.length; i < ln; i++) { + record = data[i]; + xValue = record.get(me.xField); + if (xAxisType == 'Time' && typeof xValue == "string") { + xValue = Date.parse(xValue); + } + + if (typeof xValue == 'string' || typeof xValue == 'object' && !Ext.isDate(xValue) + + || boundXAxis && chartAxes.get(boundXAxis) && chartAxes.get(boundXAxis).type == 'Category') { + if (xValue in xValueMap) { + xValue = xValueMap[xValue]; + } else { + xValue = xValueMap[xValue] = i; + } + } + + + yValue = record.get(me.yField); + if (yAxisType == 'Time' && typeof yValue == "string") { + yValue = Date.parse(yValue); + } + + if (typeof yValue == 'undefined' || (typeof yValue == 'string' && !yValue)) { + continue; + } + + if (typeof yValue == 'string' || typeof yValue == 'object' && !Ext.isDate(yValue) + + || boundYAxis && chartAxes.get(boundYAxis) && chartAxes.get(boundYAxis).type == 'Category') { + yValue = i; + } + storeIndices.push(i); + xValues.push(xValue); + yValues.push(yValue); + } + + ln = xValues.length; + if (ln > bbox.width) { + coords = me.shrink(xValues, yValues, bbox.width); + xValues = coords.x; + yValues = coords.y; + } + + me.items = []; + + count = 0; + ln = xValues.length; + for (i = 0; i < ln; i++) { + xValue = xValues[i]; + yValue = yValues[i]; + if (yValue === false) { + if (path.length == 1) { + path = []; + } + onbreak = true; + me.items.push(false); + continue; + } else { + x = (bbox.x + (xValue - minX) * xScale).toFixed(2); + y = ((bbox.y + bbox.height) - (yValue - minY) * yScale).toFixed(2); + if (onbreak) { + onbreak = false; + path.push('M'); + } + path = path.concat([x, y]); + } + if ((typeof firstY == 'undefined') && (typeof y != 'undefined')) { + firstY = y; + firstX = x; + } + + if (!me.line || chart.resizing) { + dummyPath = dummyPath.concat([x, bbox.y + bbox.height / 2]); + } + + + if (chart.animate && chart.resizing && me.line) { + me.line.setAttributes({ + path: dummyPath, + opacity: lineOpacity + }, true); + if (me.fillPath) { + me.fillPath.setAttributes({ + path: dummyPath, + opacity: fillOpacity + }, true); + } + if (me.line.shadows) { + shadows = me.line.shadows; + for (j = 0, lnsh = shadows.length; j < lnsh; j++) { + shadow = shadows[j]; + shadow.setAttributes({ + path: dummyPath + }, true); + } + } + } + if (showMarkers) { + marker = markerGroup.getAt(count++); + if (!marker) { + marker = Ext.chart.Shape[type](surface, Ext.apply({ + group: [group, markerGroup], + x: 0, y: 0, + translate: { + x: +(prevX || x), + y: prevY || (bbox.y + bbox.height / 2) + }, + value: '"' + xValue + ', ' + yValue + '"', + zIndex: 4000 + }, endMarkerStyle)); + marker._to = { + translate: { + x: +x, + y: +y + } + }; + } else { + marker.setAttributes({ + value: '"' + xValue + ', ' + yValue + '"', + x: 0, y: 0, + hidden: false + }, true); + marker._to = { + translate: { + x: +x, + y: +y + } + }; + } + } + me.items.push({ + series: me, + value: [xValue, yValue], + point: [x, y], + sprite: marker, + storeItem: store.getAt(storeIndices[i]) + }); + prevX = x; + prevY = y; + } + + if (path.length <= 1) { + + return; + } + + if (me.smooth) { + smoothPath = Ext.draw.Draw.smooth(path, isNumber(smooth) ? smooth : me.defaultSmoothness); + } + + renderPath = smooth ? smoothPath : path; + + + if (chart.markerIndex && me.previousPath) { + fromPath = me.previousPath; + if (!smooth) { + Ext.Array.erase(fromPath, 1, 2); + } + } else { + fromPath = path; + } + + + if (!me.line) { + me.line = surface.add(Ext.apply({ + type: 'path', + group: group, + path: dummyPath, + stroke: endLineStyle.stroke || endLineStyle.fill + }, endLineStyle || {})); + me + + + me.line.setAttributes({ + opacity: lineOpacity + }, true); + + if (enableShadows) { + me.line.setAttributes(Ext.apply({}, me.shadowOptions), true); + } + + + me.line.setAttributes({ + fill: 'none', + zIndex: 3000 + }); + if (!endLineStyle.stroke && colorArrayLength) { + me.line.setAttributes({ + stroke: colorArrayStyle[me.themeIdx % colorArrayLength] + }, true); + } + if (enableShadows) { + + shadows = me.line.shadows = []; + for (shindex = 0; shindex < lnsh; shindex++) { + shadowBarAttr = shadowAttributes[shindex]; + shadowBarAttr = Ext.apply({}, shadowBarAttr, { path: dummyPath }); + shadow = surface.add(Ext.apply({}, { + type: 'path', + group: shadowGroups[shindex] + }, shadowBarAttr)); + shadows.push(shadow); + } + } + } + if (me.fill) { + fillPath = renderPath.concat([ + ["L", x, bbox.y + bbox.height], + ["L", firstX, bbox.y + bbox.height], + ["L", firstX, firstY] + ]); + if (!me.fillPath) { + me.fillPath = surface.add({ + group: group, + type: 'path', + fill: endLineStyle.fill || colorArrayStyle[me.themeIdx % colorArrayLength], + path: dummyPath + }); + } + } + markerCount = showMarkers && markerGroup.getCount(); + if (chart.animate) { + fill = me.fill; + line = me.line; + + rendererAttributes = me.renderer(line, false, { path: renderPath }, i, store); + Ext.apply(rendererAttributes, endLineStyle || {}, { + stroke: endLineStyle.stroke || endLineStyle.fill + }); + + delete rendererAttributes.fill; + line.show(true); + if (chart.markerIndex && me.previousPath) { + me.animation = animation = me.onAnimate(line, { + to: rendererAttributes, + from: { + path: fromPath + } + }); + } else { + me.animation = animation = me.onAnimate(line, { + to: rendererAttributes + }); + } + + if (enableShadows) { + shadows = line.shadows; + for(j = 0; j < lnsh; j++) { + shadows[j].show(true); + if (chart.markerIndex && me.previousPath) { + me.onAnimate(shadows[j], { + to: { path: renderPath }, + from: { path: fromPath } + }); + } else { + me.onAnimate(shadows[j], { + to: { path: renderPath } + }); + } + } + } + + if (fill) { + me.fillPath.show(true); + me.onAnimate(me.fillPath, { + to: Ext.apply({}, { + path: fillPath, + fill: endLineStyle.fill || colorArrayStyle[me.themeIdx % colorArrayLength], + 'stroke-width': 0, + opacity: fillOpacity + }, endLineStyle || {}) + }); + } + + if (showMarkers) { + count = 0; + for(i = 0; i < ln; i++) { + if (me.items[i]) { + item = markerGroup.getAt(count++); + if (item) { + rendererAttributes = me.renderer(item, store.getAt(i), item._to, i, store); + me.onAnimate(item, { + to: Ext.applyIf(rendererAttributes, endMarkerStyle || {}) + }); + item.show(true); + } + } + } + for(; count < markerCount; count++) { + item = markerGroup.getAt(count); + item.hide(true); + } + + + + + } + } else { + rendererAttributes = me.renderer(me.line, false, { path: renderPath, hidden: false }, i, store); + Ext.apply(rendererAttributes, endLineStyle || {}, { + stroke: endLineStyle.stroke || endLineStyle.fill + }); + + delete rendererAttributes.fill; + me.line.setAttributes(rendererAttributes, true); + me.line.setAttributes({ + opacity: lineOpacity + }, true); + + if (enableShadows) { + shadows = me.line.shadows; + for(j = 0; j < lnsh; j++) { + shadows[j].setAttributes({ + path: renderPath, + hidden: false + }, true); + } + } + if (me.fill) { + me.fillPath.setAttributes({ + path: fillPath, + hidden: false, + opacity: fillOpacity + }, true); + } + if (showMarkers) { + count = 0; + for(i = 0; i < ln; i++) { + if (me.items[i]) { + item = markerGroup.getAt(count++); + if (item) { + rendererAttributes = me.renderer(item, store.getAt(i), item._to, i, store); + item.setAttributes(Ext.apply(endMarkerStyle || {}, rendererAttributes || {}), true); + if (!item.attr.hidden) { + item.show(true); + } + } + } + } + for(; count < markerCount; count++) { + item = markerGroup.getAt(count); + item.hide(true); + } + } + } + + if (chart.markerIndex) { + if (me.smooth) { + Ext.Array.erase(path, 1, 2); + } else { + Ext.Array.splice(path, 1, 0, path[1], path[2]); + } + me.previousPath = path; + } + me.renderLabels(); + me.renderCallouts(); + + me.fireEvent('draw', me); + }, + + + onCreateLabel: function(storeItem, item, i, display) { + var me = this, + group = me.labelsGroup, + config = me.label, + bbox = me.bbox, + endLabelStyle = Ext.apply({}, config, me.seriesLabelStyle || {}); + + return me.chart.surface.add(Ext.apply({ + 'type': 'text', + 'text-anchor': 'middle', + 'group': group, + 'x': Number(item.point[0]), + 'y': bbox.y + bbox.height / 2 + }, endLabelStyle || {})); + }, + + + onPlaceLabel: function(label, storeItem, item, i, display, animate, index) { + var me = this, + chart = me.chart, + resizing = chart.resizing, + config = me.label, + format = config.renderer, + field = config.field, + bbox = me.bbox, + x = Number(item.point[0]), + y = Number(item.point[1]), + radius = item.sprite.attr.radius, + labelBox, markerBox, width, height, xOffset, yOffset; + + label.setAttributes({ + text: format(storeItem.get(field), label, storeItem, item, i, display, animate, index), + hidden: true + }, true); + + + markerBox = item.sprite.getBBox(); + markerBox.width = markerBox.width || (radius * 2); + markerBox.height = markerBox.height || (radius * 2); + + labelBox = label.getBBox(); + width = labelBox.width/2; + height = labelBox.height/2; + + if (display == 'rotate') { + + xOffset = markerBox.width/2 + width + height/2; + if (x + xOffset + width > bbox.x + bbox.width) { + x -= xOffset; + } else { + x += xOffset; + } + label.setAttributes({ + 'rotation': { + x: x, + y: y, + degrees: -45 + } + }, true); + } else if (display == 'under' || display == 'over') { + label.setAttributes({ + 'rotation': { + degrees: 0 + } + }, true); + + + if (x < bbox.x + width) { + x = bbox.x + width; + } else if (x + width > bbox.x + bbox.width) { + x = bbox.x + bbox.width - width; + } + + yOffset = markerBox.height/2 + height; + y = y + (display == 'over' ? -yOffset : yOffset); + if (y < bbox.y + height) { + y += 2 * yOffset; + } else if (y + height > bbox.y + bbox.height) { + y -= 2 * yOffset; + } + } + + if (me.chart.animate && !me.chart.resizing) { + label.show(true); + me.onAnimate(label, { + to: { + x: x, + y: y + } + }); + } else { + label.setAttributes({ + x: x, + y: y + }, true); + if (resizing && me.animation) { + me.animation.on('afteranimate', function() { + label.show(true); + }); + } else { + label.show(true); + } + } + }, + + + highlightItem: function() { + var me = this, + line = me.line; + + me.callParent(arguments); + if (line && !me.highlighted) { + if (!('__strokeWidth' in line)) { + line.__strokeWidth = parseFloat(line.attr['stroke-width']) || 0; + } + if (line.__anim) { + line.__anim.paused = true; + } + + line.__anim = new Ext.fx.Anim({ + target: line, + to: { + 'stroke-width': line.__strokeWidth + 3 + } + }); + me.highlighted = true; + } + }, + + + unHighlightItem: function() { + var me = this, + line = me.line, + width; + + me.callParent(arguments); + if (line && me.highlighted) { + width = line.__strokeWidth || parseFloat(line.attr['stroke-width']) || 0; + line.__anim = new Ext.fx.Anim({ + target: line, + to: { + 'stroke-width': width + } + }); + me.highlighted = false; + } + }, + + + onPlaceCallout : function(callout, storeItem, item, i, display, animate, index) { + if (!display) { + return; + } + + var me = this, + chart = me.chart, + surface = chart.surface, + resizing = chart.resizing, + config = me.callouts, + items = me.items, + prev = i == 0? false : items[i -1].point, + next = (i == items.length -1)? false : items[i +1].point, + cur = [+item.point[0], +item.point[1]], + dir, norm, normal, a, aprev, anext, + offsetFromViz = config.offsetFromViz || 30, + offsetToSide = config.offsetToSide || 10, + offsetBox = config.offsetBox || 3, + boxx, boxy, boxw, boxh, + p, clipRect = me.clipRect, + bbox = { + width: config.styles.width || 10, + height: config.styles.height || 10 + }, + x, y; + + + if (!prev) { + prev = cur; + } + if (!next) { + next = cur; + } + a = (next[1] - prev[1]) / (next[0] - prev[0]); + aprev = (cur[1] - prev[1]) / (cur[0] - prev[0]); + anext = (next[1] - cur[1]) / (next[0] - cur[0]); + + norm = Math.sqrt(1 + a * a); + dir = [1 / norm, a / norm]; + normal = [-dir[1], dir[0]]; + + + if (aprev > 0 && anext < 0 && normal[1] < 0 + || aprev < 0 && anext > 0 && normal[1] > 0) { + normal[0] *= -1; + normal[1] *= -1; + } else if (Math.abs(aprev) < Math.abs(anext) && normal[0] < 0 + || Math.abs(aprev) > Math.abs(anext) && normal[0] > 0) { + normal[0] *= -1; + normal[1] *= -1; + } + + x = cur[0] + normal[0] * offsetFromViz; + y = cur[1] + normal[1] * offsetFromViz; + + + boxx = x + (normal[0] > 0? 0 : -(bbox.width + 2 * offsetBox)); + boxy = y - bbox.height /2 - offsetBox; + boxw = bbox.width + 2 * offsetBox; + boxh = bbox.height + 2 * offsetBox; + + + + if (boxx < clipRect[0] || (boxx + boxw) > (clipRect[0] + clipRect[2])) { + normal[0] *= -1; + } + if (boxy < clipRect[1] || (boxy + boxh) > (clipRect[1] + clipRect[3])) { + normal[1] *= -1; + } + + + x = cur[0] + normal[0] * offsetFromViz; + y = cur[1] + normal[1] * offsetFromViz; + + + boxx = x + (normal[0] > 0? 0 : -(bbox.width + 2 * offsetBox)); + boxy = y - bbox.height /2 - offsetBox; + boxw = bbox.width + 2 * offsetBox; + boxh = bbox.height + 2 * offsetBox; + + if (chart.animate) { + + me.onAnimate(callout.lines, { + to: { + path: ["M", cur[0], cur[1], "L", x, y, "Z"] + } + }); + + if (callout.panel) { + callout.panel.setPosition(boxx, boxy, true); + } + } + else { + + callout.lines.setAttributes({ + path: ["M", cur[0], cur[1], "L", x, y, "Z"] + }, true); + + if (callout.panel) { + callout.panel.setPosition(boxx, boxy); + } + } + for (p in callout) { + callout[p].show(true); + } + }, + + isItemInPoint: function(x, y, item, i) { + var me = this, + items = me.items, + tolerance = me.selectionTolerance, + result = null, + prevItem, + nextItem, + prevPoint, + nextPoint, + ln, + x1, + y1, + x2, + y2, + xIntersect, + yIntersect, + dist1, dist2, dist, midx, midy, + sqrt = Math.sqrt, abs = Math.abs; + + nextItem = items[i]; + prevItem = i && items[i - 1]; + + if (i >= ln) { + prevItem = items[ln - 1]; + } + prevPoint = prevItem && prevItem.point; + nextPoint = nextItem && nextItem.point; + x1 = prevItem ? prevPoint[0] : nextPoint[0] - tolerance; + y1 = prevItem ? prevPoint[1] : nextPoint[1]; + x2 = nextItem ? nextPoint[0] : prevPoint[0] + tolerance; + y2 = nextItem ? nextPoint[1] : prevPoint[1]; + dist1 = sqrt((x - x1) * (x - x1) + (y - y1) * (y - y1)); + dist2 = sqrt((x - x2) * (x - x2) + (y - y2) * (y - y2)); + dist = Math.min(dist1, dist2); + + if (dist <= tolerance) { + return dist == dist1? prevItem : nextItem; + } + return false; + }, + + + toggleAll: function(show) { + var me = this, + i, ln, shadow, shadows; + if (!show) { + Ext.chart.series.Cartesian.prototype.hideAll.call(me); + } + else { + Ext.chart.series.Cartesian.prototype.showAll.call(me); + } + if (me.line) { + me.line.setAttributes({ + hidden: !show + }, true); + + if (me.line.shadows) { + for (i = 0, shadows = me.line.shadows, ln = shadows.length; i < ln; i++) { + shadow = shadows[i]; + shadow.setAttributes({ + hidden: !show + }, true); + } + } + } + if (me.fillPath) { + me.fillPath.setAttributes({ + hidden: !show + }, true); + } + }, + + + hideAll: function() { + this.toggleAll(false); + }, + + + showAll: function() { + this.toggleAll(true); + } +}); + + +Ext.define('Ext.chart.series.Pie', { + + + + alternateClassName: ['Ext.chart.PieSeries', 'Ext.chart.PieChart'], + + extend: Ext.chart.series.Series , + + + + type: "pie", + + alias: 'series.pie', + + accuracy: 100000, + + rad: Math.PI * 2 / 100000, + + + highlightDuration: 150, + + + angleField: false, + + + + + + + lengthField: false, + + + donut: false, + + + showInLegend: false, + + + + + style: {}, + + constructor: function(config) { + this.callParent(arguments); + var me = this, + chart = me.chart, + surface = chart.surface, + store = chart.store, + shadow = chart.shadow, i, l, cfg; + config.highlightCfg = Ext.merge({ + segment: { + margin: 20 + } + }, config.highlightCfg); + Ext.apply(me, config, { + shadowAttributes: [{ + "stroke-width": 6, + "stroke-opacity": 1, + stroke: 'rgb(200, 200, 200)', + translate: { + x: 1.2, + y: 2 + } + }, + { + "stroke-width": 4, + "stroke-opacity": 1, + stroke: 'rgb(150, 150, 150)', + translate: { + x: 0.9, + y: 1.5 + } + }, + { + "stroke-width": 2, + "stroke-opacity": 1, + stroke: 'rgb(100, 100, 100)', + translate: { + x: 0.6, + y: 1 + } + }] + }); + me.group = surface.getGroup(me.seriesId); + if (shadow) { + for (i = 0, l = me.shadowAttributes.length; i < l; i++) { + me.shadowGroups.push(surface.getGroup(me.seriesId + '-shadows' + i)); + } + } + surface.customAttributes.segment = function(opt) { + + + + var ans = me.getSegment(opt); + if (!ans.path || ans.path.length === 0) { + ans.path = ['M', 0, 0]; + } + return ans; + }; + me.__excludes = me.__excludes || []; + }, + + onRedraw: function(){ + this.initialize(); + }, + + + initialize: function() { + var me = this, + store = me.chart.getChartStore(), + data = store.data.items, + i, ln, rec; + + me.yField = []; + if (me.label.field) { + for (i = 0, ln = data.length; i < ln; i++) { + rec = data[i]; + me.yField.push(rec.get(me.label.field)); + } + } + }, + + + getSegment: function(opt) { + var me = this, + rad = me.rad, + cos = Math.cos, + sin = Math.sin, + x = me.centerX, + y = me.centerY, + x1 = 0, x2 = 0, x3 = 0, x4 = 0, + y1 = 0, y2 = 0, y3 = 0, y4 = 0, + x5 = 0, y5 = 0, x6 = 0, y6 = 0, + delta = 1e-2, + startAngle = opt.startAngle, + endAngle = opt.endAngle, + midAngle = (startAngle + endAngle) / 2 * rad, + margin = opt.margin || 0, + a1 = Math.min(startAngle, endAngle) * rad, + a2 = Math.max(startAngle, endAngle) * rad, + c1 = cos(a1), s1 = sin(a1), + c2 = cos(a2), s2 = sin(a2), + cm = cos(midAngle), sm = sin(midAngle), + flag = 0, hsqr2 = 0.7071067811865476; + + if (a2 - a1 < delta) { + return {path: ""}; + } + + if (margin !== 0) { + x += margin * cm; + y += margin * sm; + } + + x2 = x + opt.endRho * c1; + y2 = y + opt.endRho * s1; + + x4 = x + opt.endRho * c2; + y4 = y + opt.endRho * s2; + + x6 = x + opt.endRho * cm; + y6 = y + opt.endRho * sm; + + if (opt.startRho !== 0) { + x1 = x + opt.startRho * c1; + y1 = y + opt.startRho * s1; + + x3 = x + opt.startRho * c2; + y3 = y + opt.startRho * s2; + + x5 = x + opt.startRho * cm; + y5 = y + opt.startRho * sm; + + return { + path: [ + ["M", x2, y2], + ["A", opt.endRho, opt.endRho, 0, 0, 1, x6, y6], ["L", x6, y6], + ["A", opt.endRho, opt.endRho, 0, flag, 1, x4, y4], ["L", x4, y4], + ["L", x3, y3], + ["A", opt.startRho, opt.startRho, 0, flag, 0, x5, y5], ["L", x5, y5], + ["A", opt.startRho, opt.startRho, 0, 0, 0, x1, y1], ["L", x1, y1], + ["Z"] + ] + }; + } else { + return { + path: [ + ["M", x, y], + ["L", x2, y2], + ["A", opt.endRho, opt.endRho, 0, 0, 1, x6, y6], ["L", x6, y6], + ["A", opt.endRho, opt.endRho, 0, flag, 1, x4, y4], ["L", x4, y4], + ["L", x, y], + ["Z"] + ] + }; + } + }, + + + calcMiddle: function(item) { + var me = this, + rad = me.rad, + slice = item.slice, + x = me.centerX, + y = me.centerY, + startAngle = slice.startAngle, + endAngle = slice.endAngle, + donut = +me.donut, + midAngle = -(startAngle + endAngle) * rad / 2, + r = (item.endRho + item.startRho) / 2, + xm = x + r * Math.cos(midAngle), + ym = y - r * Math.sin(midAngle); + + item.middle = { + x: xm, + y: ym + }; + }, + + + drawSeries: function() { + var me = this, + store = me.chart.getChartStore(), + data = store.data.items, + record, + group = me.group, + animate = me.chart.animate, + field = me.angleField || me.field || me.xField, + lenField = [].concat(me.lengthField), + totalLenField = 0, + chart = me.chart, + surface = chart.surface, + chartBBox = chart.chartBBox, + enableShadows = chart.shadow, + shadowGroups = me.shadowGroups, + shadowAttributes = me.shadowAttributes, + lnsh = shadowGroups.length, + layers = lenField.length, + rhoAcum = 0, + donut = +me.donut, + layerTotals = [], + items = [], + totalField = 0, + maxLenField = 0, + angle = 0, + seriesStyle = me.seriesStyle, + colorArrayStyle = me.colorArrayStyle, + colorArrayLength = colorArrayStyle && colorArrayStyle.length || 0, + rendererAttributes, + shadowAttr, + shadows, + shadow, + shindex, + centerX, + centerY, + deltaRho, + first = 0, + slice, + slices, + sprite, + value, + item, + lenValue, + ln, + i, + j, + endAngle, + path, + p, + spriteOptions, bbox; + + Ext.apply(seriesStyle, me.style || {}); + + me.setBBox(); + bbox = me.bbox; + + + if (me.colorSet) { + colorArrayStyle = me.colorSet; + colorArrayLength = colorArrayStyle.length; + } + + + if (!store || !store.getCount() || me.seriesIsHidden) { + me.hide(); + me.items = []; + return; + } + + me.unHighlightItem(); + me.cleanHighlights(); + + centerX = me.centerX = chartBBox.x + (chartBBox.width / 2); + centerY = me.centerY = chartBBox.y + (chartBBox.height / 2); + me.radius = Math.min(centerX - chartBBox.x, centerY - chartBBox.y); + me.slices = slices = []; + me.items = items = []; + + for (i = 0, ln = data.length; i < ln; i++) { + record = data[i]; + if (this.__excludes && this.__excludes[i]) { + + continue; + } + totalField += +record.get(field); + if (lenField[0]) { + for (j = 0, totalLenField = 0; j < layers; j++) { + totalLenField += +record.get(lenField[j]); + } + layerTotals[i] = totalLenField; + maxLenField = Math.max(maxLenField, totalLenField); + } + } + + totalField = totalField || 1; + for (i = 0, ln = data.length; i < ln; i++) { + record = data[i]; + if (this.__excludes && this.__excludes[i]) { + value = 0; + } else { + value = record.get(field); + if (first == 0) { + first = 1; + } + } + + + if (first == 1) { + first = 2; + me.firstAngle = angle = me.accuracy * value / totalField / 2; + for (j = 0; j < i; j++) { + slices[j].startAngle = slices[j].endAngle = me.firstAngle; + } + } + + endAngle = angle - me.accuracy * value / totalField; + slice = { + series: me, + value: value, + startAngle: angle, + endAngle: endAngle, + storeItem: record + }; + if (lenField[0]) { + lenValue = +layerTotals[i]; + + slice.rho = Math.floor(me.radius / maxLenField * lenValue); + } else { + slice.rho = me.radius; + } + slices[i] = slice; + + (function () { + angle = endAngle; + })(); + } + + + if (enableShadows) { + for (i = 0, ln = slices.length; i < ln; i++) { + slice = slices[i]; + slice.shadowAttrs = []; + for (j = 0, rhoAcum = 0, shadows = []; j < layers; j++) { + sprite = group.getAt(i * layers + j); + deltaRho = lenField[j] ? store.getAt(i).get(lenField[j]) / layerTotals[i] * slice.rho: slice.rho; + + rendererAttributes = { + segment: { + startAngle: slice.startAngle, + endAngle: slice.endAngle, + margin: 0, + rho: slice.rho, + startRho: rhoAcum + (deltaRho * donut / 100), + endRho: rhoAcum + deltaRho + }, + hidden: !slice.value && (slice.startAngle % me.accuracy) == (slice.endAngle % me.accuracy) + }; + + for (shindex = 0, shadows = []; shindex < lnsh; shindex++) { + shadowAttr = shadowAttributes[shindex]; + shadow = shadowGroups[shindex].getAt(i); + if (!shadow) { + shadow = chart.surface.add(Ext.apply({}, { + type: 'path', + group: shadowGroups[shindex], + strokeLinejoin: "round" + }, rendererAttributes, shadowAttr)); + } + shadowAttr = me.renderer(shadow, store.getAt(i), Ext.apply({}, rendererAttributes, shadowAttr), i, store); + if (animate) { + me.onAnimate(shadow, { + to: shadowAttr + }); + } else { + shadow.setAttributes(shadowAttr, true); + } + shadows.push(shadow); + } + slice.shadowAttrs[j] = shadows; + } + } + } + + for (i = 0, ln = slices.length; i < ln; i++) { + slice = slices[i]; + for (j = 0, rhoAcum = 0; j < layers; j++) { + sprite = group.getAt(i * layers + j); + deltaRho = lenField[j] ? store.getAt(i).get(lenField[j]) / layerTotals[i] * slice.rho: slice.rho; + + rendererAttributes = Ext.apply({ + segment: { + startAngle: slice.startAngle, + endAngle: slice.endAngle, + margin: 0, + rho: slice.rho, + startRho: rhoAcum + (deltaRho * donut / 100), + endRho: rhoAcum + deltaRho + }, + hidden: (!slice.value && (slice.startAngle % me.accuracy) == (slice.endAngle % me.accuracy)) + }, Ext.apply(seriesStyle, colorArrayStyle && { fill: colorArrayStyle[(layers > 1? j : i) % colorArrayLength] } || {})); + item = Ext.apply({}, + rendererAttributes.segment, { + slice: slice, + series: me, + storeItem: slice.storeItem, + index: i + }); + me.calcMiddle(item); + if (enableShadows) { + item.shadows = slice.shadowAttrs[j]; + } + items[i] = item; + + if (!sprite) { + spriteOptions = Ext.apply({ + type: "path", + group: group, + middle: item.middle + }, Ext.apply(seriesStyle, colorArrayStyle && { fill: colorArrayStyle[(layers > 1? j : i) % colorArrayLength] } || {})); + sprite = surface.add(Ext.apply(spriteOptions, rendererAttributes)); + } + slice.sprite = slice.sprite || []; + item.sprite = sprite; + slice.sprite.push(sprite); + slice.point = [item.middle.x, item.middle.y]; + if (animate) { + rendererAttributes = me.renderer(sprite, store.getAt(i), rendererAttributes, i, store); + sprite._to = rendererAttributes; + sprite._animating = true; + me.onAnimate(sprite, { + to: rendererAttributes, + listeners: { + afteranimate: { + fn: function() { + this._animating = false; + }, + scope: sprite + } + } + }); + } else { + rendererAttributes = me.renderer(sprite, store.getAt(i), Ext.apply(rendererAttributes, { + hidden: false + }), i, store); + sprite.setAttributes(rendererAttributes, true); + } + rhoAcum += deltaRho; + } + } + + + ln = group.getCount(); + for (i = 0; i < ln; i++) { + if (!slices[(i / layers) >> 0] && group.getAt(i)) { + group.getAt(i).hide(true); + } + } + if (enableShadows) { + lnsh = shadowGroups.length; + for (shindex = 0; shindex < ln; shindex++) { + if (!slices[(shindex / layers) >> 0]) { + for (j = 0; j < lnsh; j++) { + if (shadowGroups[j].getAt(shindex)) { + shadowGroups[j].getAt(shindex).hide(true); + } + } + } + } + } + me.renderLabels(); + me.renderCallouts(); + }, + + + onCreateLabel: function(storeItem, item, i, display) { + var me = this, + group = me.labelsGroup, + config = me.label, + centerX = me.centerX, + centerY = me.centerY, + middle = item.middle, + endLabelStyle = Ext.apply(me.seriesLabelStyle || {}, config || {}); + + return me.chart.surface.add(Ext.apply({ + 'type': 'text', + 'text-anchor': 'middle', + 'group': group, + 'x': middle.x, + 'y': middle.y + }, endLabelStyle)); + }, + + + onPlaceLabel: function(label, storeItem, item, i, display, animate, index) { + var me = this, + chart = me.chart, + resizing = chart.resizing, + config = me.label, + format = config.renderer, + field = config.field, + centerX = me.centerX, + centerY = me.centerY, + middle = item.middle, + opt = { + x: middle.x, + y: middle.y + }, + x = middle.x - centerX, + y = middle.y - centerY, + from = {}, + rho = 1, + theta = Math.atan2(y, x || 1), + dg = theta * 180 / Math.PI, + prevDg, labelBox, width, height; + + opt.hidden = false; + + if (this.__excludes && this.__excludes[i]) { + opt.hidden = true; + } + + function fixAngle(a) { + if (a < 0) { + a += 360; + } + return a % 360; + } + + label.setAttributes({ + text: format(storeItem.get(field), label, storeItem, item, i, display, animate, index) + }, true); + + switch (display) { + case 'outside': + + rho = Math.sqrt(x * x + y * y) * 2; + + + label.setAttributes({rotation:{degrees: 0}}, true); + labelBox = label.getBBox(); + width = labelBox.width/2 * Math.cos(theta) + 4; + height = labelBox.height/2 * Math.sin(theta) + 4; + + rho += Math.sqrt(width*width + height*height); + + + opt.x = rho * Math.cos(theta) + centerX; + opt.y = rho * Math.sin(theta) + centerY; + break; + + case 'rotate': + dg = fixAngle(dg); + dg = (dg > 90 && dg < 270) ? dg + 180: dg; + + prevDg = label.attr.rotation.degrees; + if (prevDg != null && Math.abs(prevDg - dg) > 180 * 0.5) { + if (dg > prevDg) { + dg -= 360; + } else { + dg += 360; + } + dg = dg % 360; + } else { + dg = fixAngle(dg); + } + + opt.rotate = { + degrees: dg, + x: opt.x, + y: opt.y + }; + break; + + default: + break; + } + + opt.translate = { + x: 0, y: 0 + }; + if (animate && !resizing && (display != 'rotate' || prevDg != null)) { + me.onAnimate(label, { + to: opt + }); + } else { + label.setAttributes(opt, true); + } + label._from = from; + }, + + + onPlaceCallout: function(callout, storeItem, item, i, display, animate, index) { + var me = this, + chart = me.chart, + centerX = me.centerX, + centerY = me.centerY, + middle = item.middle, + opt = { + x: middle.x, + y: middle.y + }, + x = middle.x - centerX, + y = middle.y - centerY, + rho = 1, + rhoCenter, + theta = Math.atan2(y, x || 1), + bbox = (callout && callout.label ? callout.label.getBBox() : {width:0,height:0}), + offsetFromViz = 20, + offsetToSide = 10, + offsetBox = 10, + p; + + if (!bbox.width || !bbox.height) { + return; + } + + + rho = item.endRho + offsetFromViz; + rhoCenter = (item.endRho + item.startRho) / 2 + (item.endRho - item.startRho) / 3; + + opt.x = rho * Math.cos(theta) + centerX; + opt.y = rho * Math.sin(theta) + centerY; + + x = rhoCenter * Math.cos(theta); + y = rhoCenter * Math.sin(theta); + + if (chart.animate) { + + me.onAnimate(callout.lines, { + to: { + path: ["M", x + centerX, y + centerY, "L", opt.x, opt.y, "Z", "M", opt.x, opt.y, "l", x > 0 ? offsetToSide: -offsetToSide, 0, "z"] + } + }); + + me.onAnimate(callout.box, { + to: { + x: opt.x + (x > 0 ? offsetToSide: -(offsetToSide + bbox.width + 2 * offsetBox)), + y: opt.y + (y > 0 ? ( - bbox.height - offsetBox / 2) : ( - bbox.height - offsetBox / 2)), + width: bbox.width + 2 * offsetBox, + height: bbox.height + 2 * offsetBox + } + }); + + me.onAnimate(callout.label, { + to: { + x: opt.x + (x > 0 ? (offsetToSide + offsetBox) : -(offsetToSide + bbox.width + offsetBox)), + y: opt.y + (y > 0 ? -bbox.height / 4: -bbox.height / 4) + } + }); + } else { + + callout.lines.setAttributes({ + path: ["M", x + centerX, y + centerY, "L", opt.x, opt.y, "Z", "M", opt.x, opt.y, "l", x > 0 ? offsetToSide: -offsetToSide, 0, "z"] + }, + true); + + callout.box.setAttributes({ + x: opt.x + (x > 0 ? offsetToSide: -(offsetToSide + bbox.width + 2 * offsetBox)), + y: opt.y + (y > 0 ? ( - bbox.height - offsetBox / 2) : ( - bbox.height - offsetBox / 2)), + width: bbox.width + 2 * offsetBox, + height: bbox.height + 2 * offsetBox + }, + true); + + callout.label.setAttributes({ + x: opt.x + (x > 0 ? (offsetToSide + offsetBox) : -(offsetToSide + bbox.width + offsetBox)), + y: opt.y + (y > 0 ? -bbox.height / 4: -bbox.height / 4) + }, + true); + } + for (p in callout) { + callout[p].show(true); + } + }, + + + onAnimate: function(sprite, attr) { + sprite.show(); + return this.callParent(arguments); + }, + + isItemInPoint: function(x, y, item, i) { + var me = this, + cx = me.centerX, + cy = me.centerY, + abs = Math.abs, + dx = abs(x - cx), + dy = abs(y - cy), + startAngle = item.startAngle, + endAngle = item.endAngle, + rho = Math.sqrt(dx * dx + dy * dy), + angle = Math.atan2(y - cy, x - cx) / me.rad; + + + if (angle > me.firstAngle) { + angle -= me.accuracy; + } + return (angle <= startAngle && angle > endAngle + && rho >= item.startRho && rho <= item.endRho); + }, + + + hideAll: function(index) { + var i, l, shadow, shadows, sh, lsh, sprite; + index = (isNaN(this._index) ? index : this._index) || 0; + this.__excludes = this.__excludes || []; + this.__excludes[index] = true; + sprite = this.slices[index].sprite; + for (sh = 0, lsh = sprite.length; sh < lsh; sh++) { + sprite[sh].setAttributes({ + hidden: true + }, true); + } + if (this.slices[index].shadowAttrs) { + for (i = 0, shadows = this.slices[index].shadowAttrs, l = shadows.length; i < l; i++) { + shadow = shadows[i]; + for (sh = 0, lsh = shadow.length; sh < lsh; sh++) { + shadow[sh].setAttributes({ + hidden: true + }, true); + } + } + } + this.drawSeries(); + }, + + + showAll: function(index) { + index = (isNaN(this._index) ? index : this._index) || 0; + this.__excludes[index] = false; + this.drawSeries(); + }, + + + highlightItem: function(item) { + var me = this, + rad = me.rad, + highlightSegment, + animate, + attrs, + i, + shadows, + shadow, + ln, + to, + itemHighlightSegment, + prop, + group, + display, + label, + middle, + r, + x, + y; + item = item || this.items[this._index]; + + + + + + this.unHighlightItem(); + + if (!item || me.animating || (item.sprite && item.sprite._animating)) { + return; + } + me.callParent([item]); + if (!me.highlight) { + return; + } + if ('segment' in me.highlightCfg) { + highlightSegment = me.highlightCfg.segment; + animate = me.chart.animate; + + if (me.labelsGroup) { + group = me.labelsGroup; + display = me.label.display; + label = group.getAt(item.index); + middle = (item.startAngle + item.endAngle) / 2 * rad; + r = highlightSegment.margin || 0; + x = r * Math.cos(middle); + y = r * Math.sin(middle); + + + + + + + if (Math.abs(x) < 1e-10) { + x = 0; + } + if (Math.abs(y) < 1e-10) { + y = 0; + } + + if (animate) { + label.stopAnimation(); + label.animate({ + to: { + translate: { + x: x, + y: y + } + }, + duration: me.highlightDuration + }); + } + else { + label.setAttributes({ + translate: { + x: x, + y: y + } + }, true); + } + } + + if (me.chart.shadow && item.shadows) { + i = 0; + shadows = item.shadows; + ln = shadows.length; + for (; i < ln; i++) { + shadow = shadows[i]; + to = {}; + itemHighlightSegment = item.sprite._from.segment; + for (prop in itemHighlightSegment) { + if (! (prop in highlightSegment)) { + to[prop] = itemHighlightSegment[prop]; + } + } + attrs = { + segment: Ext.applyIf(to, me.highlightCfg.segment) + }; + if (animate) { + shadow.stopAnimation(); + shadow.animate({ + to: attrs, + duration: me.highlightDuration + }); + } + else { + shadow.setAttributes(attrs, true); + } + } + } + } + }, + + + unHighlightItem: function() { + var me = this, + items, + animate, + shadowsEnabled, + group, + len, + i, + j, + display, + shadowLen, + p, + to, + ihs, + hs, + sprite, + shadows, + shadow, + item, + label, + attrs; + if (!me.highlight) { + return; + } + + if (('segment' in me.highlightCfg) && me.items) { + items = me.items; + animate = me.chart.animate; + shadowsEnabled = !!me.chart.shadow; + group = me.labelsGroup; + len = items.length; + i = 0; + j = 0; + display = me.label.display; + + for (; i < len; i++) { + item = items[i]; + if (!item) { + continue; + } + sprite = item.sprite; + if (sprite && sprite._highlighted) { + + if (group) { + label = group.getAt(item.index); + attrs = Ext.apply({ + translate: { + x: 0, + y: 0 + } + }, + display == 'rotate' ? { + rotate: { + x: label.attr.x, + y: label.attr.y, + degrees: label.attr.rotation.degrees + } + }: {}); + if (animate) { + label.stopAnimation(); + label.animate({ + to: attrs, + duration: me.highlightDuration + }); + } + else { + label.setAttributes(attrs, true); + } + } + if (shadowsEnabled) { + shadows = item.shadows; + shadowLen = shadows.length; + for (; j < shadowLen; j++) { + to = {}; + ihs = item.sprite._to.segment; + hs = item.sprite._from.segment; + Ext.apply(to, hs); + for (p in ihs) { + if (! (p in hs)) { + to[p] = ihs[p]; + } + } + shadow = shadows[j]; + if (animate) { + shadow.stopAnimation(); + shadow.animate({ + to: { + segment: to + }, + duration: me.highlightDuration + }); + } + else { + shadow.setAttributes({ segment: to }, true); + } + } + } + } + } + } + me.callParent(arguments); + }, + + + getLegendColor: function(index) { + var me = this; + return (me.colorSet && me.colorSet[index % me.colorSet.length]) || me.colorArrayStyle[index % me.colorArrayStyle.length]; + } +}); + + + +Ext.define('Ext.chart.series.Radar', { + + + + extend: Ext.chart.series.Series , + + + + + + type: "radar", + alias: 'series.radar', + + + rad: Math.PI / 180, + + showInLegend: false, + + + style: {}, + + + + + + + + + + constructor: function(config) { + this.callParent(arguments); + var me = this, + surface = me.chart.surface; + me.group = surface.getGroup(me.seriesId); + if (me.showMarkers) { + me.markerGroup = surface.getGroup(me.seriesId + '-markers'); + } + }, + + + drawSeries: function() { + var me = this, + store = me.chart.getChartStore(), + data = store.data.items, + d, record, + group = me.group, + chart = me.chart, + seriesItems = chart.series.items, + s, sLen, series, + field = me.field || me.yField, + surface = chart.surface, + chartBBox = chart.chartBBox, + colorArrayStyle = me.colorArrayStyle, + centerX, centerY, + items, + radius, + maxValue = 0, + fields = [], + max = Math.max, + cos = Math.cos, + sin = Math.sin, + pi2 = Math.PI * 2, + l = store.getCount(), + startPath, path, x, y, rho, + i, nfields, + seriesStyle = me.seriesStyle, + axis = chart.axes && chart.axes.get(0), + aggregate = !(axis && axis.maximum); + + me.setBBox(); + + maxValue = aggregate? 0 : (axis.maximum || 0); + + Ext.apply(seriesStyle, me.style || {}); + + + if (!store || !store.getCount() || me.seriesIsHidden) { + me.hide(); + me.items = []; + if (me.radar) { + me.radar.hide(true); + } + me.radar = null; + return; + } + + if(!seriesStyle['stroke']){ + seriesStyle['stroke'] = colorArrayStyle[me.themeIdx % colorArrayStyle.length]; + } + + me.unHighlightItem(); + me.cleanHighlights(); + + centerX = me.centerX = chartBBox.x + (chartBBox.width / 2); + centerY = me.centerY = chartBBox.y + (chartBBox.height / 2); + me.radius = radius = Math.min(chartBBox.width, chartBBox.height) /2; + me.items = items = []; + + if (aggregate) { + + for (s = 0, sLen = seriesItems.length; s < sLen; s++) { + series = seriesItems[s]; + fields.push(series.yField); + } + + for (d = 0; d < l; d++) { + record = data[d]; + for (i = 0, nfields = fields.length; i < nfields; i++) { + maxValue = max(+record.get(fields[i]), maxValue); + } + } + } + + maxValue = maxValue || 1; + + startPath = []; path = []; + for (i = 0; i < l; i++) { + record = data[i]; + rho = radius * record.get(field) / maxValue; + x = rho * cos(i / l * pi2); + y = rho * sin(i / l * pi2); + if (i == 0) { + path.push('M', x + centerX, y + centerY); + startPath.push('M', 0.01 * x + centerX, 0.01 * y + centerY); + } else { + path.push('L', x + centerX, y + centerY); + startPath.push('L', 0.01 * x + centerX, 0.01 * y + centerY); + } + items.push({ + sprite: false, + point: [centerX + x, centerY + y], + storeItem: record, + series: me + }); + } + path.push('Z'); + + if (!me.radar) { + me.radar = surface.add(Ext.apply({ + type: 'path', + group: group, + path: startPath + }, seriesStyle || {})); + } + + if (chart.resizing) { + me.radar.setAttributes({ + path: startPath + }, true); + } + + if (chart.animate) { + me.onAnimate(me.radar, { + to: Ext.apply({ + path: path + }, seriesStyle || {}) + }); + } else { + me.radar.setAttributes(Ext.apply({ + path: path + }, seriesStyle || {}), true); + } + + if (me.showMarkers) { + me.drawMarkers(); + } + me.renderLabels(); + me.renderCallouts(); + }, + + + drawMarkers: function() { + var me = this, + chart = me.chart, + surface = chart.surface, + store = chart.getChartStore(), + markerStyle = Ext.apply({}, me.markerStyle || {}), + endMarkerStyle = Ext.apply(markerStyle, me.markerConfig, { + fill: me.colorArrayStyle[me.themeIdx % me.colorArrayStyle.length] + }), + items = me.items, + type = endMarkerStyle.type, + markerGroup = me.markerGroup, + centerX = me.centerX, + centerY = me.centerY, + item, i, l, marker, rendererAttributes; + + delete endMarkerStyle.type; + + for (i = 0, l = items.length; i < l; i++) { + item = items[i]; + marker = markerGroup.getAt(i); + if (!marker) { + marker = Ext.chart.Shape[type](surface, Ext.apply({ + group: markerGroup, + x: 0, + y: 0, + translate: { + x: centerX, + y: centerY + } + }, endMarkerStyle)); + } + else { + marker.show(); + } + + item.sprite = marker; + + if (chart.resizing) { + marker.setAttributes({ + x: 0, + y: 0, + translate: { + x: centerX, + y: centerY + } + }, true); + } + marker._to = { + translate: { + x: item.point[0], + y: item.point[1] + } + }; + + rendererAttributes = me.renderer(marker, store.getAt(i), marker._to, i, store); + rendererAttributes = Ext.applyIf(rendererAttributes || {}, endMarkerStyle || {}); + if (chart.animate) { + me.onAnimate(marker, { + to: rendererAttributes + }); + } + else { + marker.setAttributes(rendererAttributes, true); + } + } + }, + + isItemInPoint: function(x, y, item) { + var point, + tolerance = 10, + abs = Math.abs; + point = item.point; + return (abs(point[0] - x) <= tolerance && + abs(point[1] - y) <= tolerance); + }, + + + onCreateLabel: function(storeItem, item, i, display) { + var me = this, + group = me.labelsGroup, + config = me.label, + centerX = me.centerX, + centerY = me.centerY, + endLabelStyle = Ext.apply({}, config, me.seriesLabelStyle || {}); + + return me.chart.surface.add(Ext.apply({ + 'type': 'text', + 'text-anchor': 'middle', + 'group': group, + 'x': centerX, + 'y': centerY + }, endLabelStyle || {})); + }, + + + onPlaceLabel: function(label, storeItem, item, i, display, animate, index) { + var me = this, + chart = me.chart, + resizing = chart.resizing, + config = me.label, + format = config.renderer, + field = config.field, + centerX = me.centerX, + centerY = me.centerY, + opt = { + x: Number(item.point[0]), + y: Number(item.point[1]) + }, + x = opt.x - centerX, + y = opt.y - centerY, + theta = Math.atan2(y, x || 1), + deg = theta * 180 / Math.PI, + labelBox, direction; + + function fixAngle(a) { + if (a < 0) { + a += 360; + } + return a % 360; + } + + label.setAttributes({ + text: format(storeItem.get(field), label, storeItem, item, i, display, animate, index), + hidden: true + }, + true); + + + + labelBox = label.getBBox(); + deg = fixAngle(deg); + if ((deg > 45 && deg < 135) || (deg > 225 && deg < 315)) { + direction = (deg > 45 && deg < 135 ? 1 : -1); + opt.y += direction * labelBox.height/2; + } else { + direction = (deg >= 135 && deg <= 225 ? -1 : 1); + opt.x += direction * labelBox.width/2; + } + + if (resizing) { + label.setAttributes({ + x: centerX, + y: centerY + }, true); + } + + if (animate) { + label.show(true); + me.onAnimate(label, { + to: opt + }); + } else { + label.setAttributes(opt, true); + label.show(true); + } + }, + + + toggleAll: function(show) { + var me = this, + i, ln, shadow, shadows; + if (!show) { + Ext.chart.series.Radar.superclass.hideAll.call(me); + } + else { + Ext.chart.series.Radar.superclass.showAll.call(me); + } + if (me.radar) { + me.radar.setAttributes({ + hidden: !show + }, true); + + if (me.radar.shadows) { + for (i = 0, shadows = me.radar.shadows, ln = shadows.length; i < ln; i++) { + shadow = shadows[i]; + shadow.setAttributes({ + hidden: !show + }, true); + } + } + } + }, + + + hideAll: function() { + this.toggleAll(false); + this.hideMarkers(0); + }, + + + showAll: function() { + this.toggleAll(true); + }, + + + hideMarkers: function(index) { + var me = this, + count = me.markerGroup && me.markerGroup.getCount() || 0, + i = index || 0; + for (; i < count; i++) { + me.markerGroup.getAt(i).hide(true); + } + }, + + + + getAxesForXAndYFields: function() { + var me = this, + chart = me.chart, + axes = chart.axes, + axis = [].concat(axes && axes.get(0)); + + return { + yAxis: axis + }; + } +}); + + + +Ext.define('Ext.chart.series.Scatter', { + + + + extend: Ext.chart.series.Cartesian , + + + + + + type: 'scatter', + alias: 'series.scatter', + + + + + + constructor: function(config) { + this.callParent(arguments); + var me = this, + shadow = me.chart.shadow, + surface = me.chart.surface, i, l; + Ext.apply(me, config, { + style: {}, + markerConfig: {}, + shadowAttributes: [{ + "stroke-width": 6, + "stroke-opacity": 0.05, + stroke: 'rgb(0, 0, 0)' + }, { + "stroke-width": 4, + "stroke-opacity": 0.1, + stroke: 'rgb(0, 0, 0)' + }, { + "stroke-width": 2, + "stroke-opacity": 0.15, + stroke: 'rgb(0, 0, 0)' + }] + }); + me.group = surface.getGroup(me.seriesId); + if (shadow) { + for (i = 0, l = me.shadowAttributes.length; i < l; i++) { + me.shadowGroups.push(surface.getGroup(me.seriesId + '-shadows' + i)); + } + } + }, + + + getBounds: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + chartAxes = chart.axes, + boundAxes = me.getAxesForXAndYFields(), + boundXAxis = boundAxes.xAxis, + boundYAxis = boundAxes.yAxis, + bbox, xScale, yScale, ln, minX, minY, maxX, maxY, i, axis, ends; + + me.setBBox(); + bbox = me.bbox; + + if (axis = chartAxes.get(boundXAxis)) { + ends = axis.applyData(); + minX = ends.from; + maxX = ends.to; + } + + if (axis = chartAxes.get(boundYAxis)) { + ends = axis.applyData(); + minY = ends.from; + maxY = ends.to; + } + + + if (me.xField && !Ext.isNumber(minX)) { + axis = me.getMinMaxXValues(); + minX = axis[0]; + maxX = axis[1]; + } + + if (me.yField && !Ext.isNumber(minY)) { + axis = me.getMinMaxYValues(); + minY = axis[0]; + maxY = axis[1]; + } + + if (isNaN(minX)) { + minX = 0; + maxX = store.getCount() - 1; + xScale = bbox.width / (store.getCount() - 1); + } + else { + xScale = bbox.width / (maxX - minX); + } + + if (isNaN(minY)) { + minY = 0; + maxY = store.getCount() - 1; + yScale = bbox.height / (store.getCount() - 1); + } + else { + yScale = bbox.height / (maxY - minY); + } + + return { + bbox: bbox, + minX: minX, + minY: minY, + xScale: xScale, + yScale: yScale + }; + }, + + + getPaths: function() { + var me = this, + chart = me.chart, + enableShadows = chart.shadow, + store = chart.getChartStore(), + data = store.data.items, + i, ln, record, + group = me.group, + bounds = me.bounds = me.getBounds(), + bbox = me.bbox, + xScale = bounds.xScale, + yScale = bounds.yScale, + minX = bounds.minX, + minY = bounds.minY, + boxX = bbox.x, + boxY = bbox.y, + boxHeight = bbox.height, + items = me.items = [], + attrs = [], + x, y, xValue, yValue, sprite; + + for (i = 0, ln = data.length; i < ln; i++) { + record = data[i]; + xValue = record.get(me.xField); + yValue = record.get(me.yField); + + if (typeof yValue == 'undefined' || (typeof yValue == 'string' && !yValue) + || xValue == null || yValue == null) { + continue; + } + + if (typeof xValue == 'string' || typeof xValue == 'object' && !Ext.isDate(xValue)) { + xValue = i; + } + if (typeof yValue == 'string' || typeof yValue == 'object' && !Ext.isDate(yValue)) { + yValue = i; + } + x = boxX + (xValue - minX) * xScale; + y = boxY + boxHeight - (yValue - minY) * yScale; + attrs.push({ + x: x, + y: y + }); + + me.items.push({ + series: me, + value: [xValue, yValue], + point: [x, y], + storeItem: record + }); + + + if (chart.animate && chart.resizing) { + sprite = group.getAt(i); + if (sprite) { + me.resetPoint(sprite); + if (enableShadows) { + me.resetShadow(sprite); + } + } + } + } + return attrs; + }, + + + resetPoint: function(sprite) { + var bbox = this.bbox; + sprite.setAttributes({ + translate: { + x: (bbox.x + bbox.width) / 2, + y: (bbox.y + bbox.height) / 2 + } + }, true); + }, + + + resetShadow: function(sprite) { + var me = this, + shadows = sprite.shadows, + shadowAttributes = me.shadowAttributes, + ln = me.shadowGroups.length, + bbox = me.bbox, + i, attr; + for (i = 0; i < ln; i++) { + attr = Ext.apply({}, shadowAttributes[i]); + + if (attr.translate) { + attr.translate.x += (bbox.x + bbox.width) / 2; + attr.translate.y += (bbox.y + bbox.height) / 2; + } + else { + attr.translate = { + x: (bbox.x + bbox.width) / 2, + y: (bbox.y + bbox.height) / 2 + }; + } + shadows[i].setAttributes(attr, true); + } + }, + + + createPoint: function(attr, type) { + var me = this, + chart = me.chart, + group = me.group, + bbox = me.bbox; + + return Ext.chart.Shape[type](chart.surface, Ext.apply({}, { + x: 0, + y: 0, + group: group, + translate: { + x: (bbox.x + bbox.width) / 2, + y: (bbox.y + bbox.height) / 2 + } + }, attr)); + }, + + + createShadow: function(sprite, endMarkerStyle, type) { + var me = this, + chart = me.chart, + shadowGroups = me.shadowGroups, + shadowAttributes = me.shadowAttributes, + lnsh = shadowGroups.length, + bbox = me.bbox, + i, shadow, shadows, attr; + + sprite.shadows = shadows = []; + + for (i = 0; i < lnsh; i++) { + attr = Ext.apply({}, shadowAttributes[i]); + if (attr.translate) { + attr.translate.x += (bbox.x + bbox.width) / 2; + attr.translate.y += (bbox.y + bbox.height) / 2; + } + else { + Ext.apply(attr, { + translate: { + x: (bbox.x + bbox.width) / 2, + y: (bbox.y + bbox.height) / 2 + } + }); + } + Ext.apply(attr, endMarkerStyle); + shadow = Ext.chart.Shape[type](chart.surface, Ext.apply({}, { + x: 0, + y: 0, + group: shadowGroups[i] + }, attr)); + shadows.push(shadow); + } + }, + + + drawSeries: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + group = me.group, + enableShadows = chart.shadow, + shadowGroups = me.shadowGroups, + shadowAttributes = me.shadowAttributes, + lnsh = shadowGroups.length, + sprite, attrs, attr, ln, i, endMarkerStyle, shindex, type, shadows, + rendererAttributes, shadowAttribute; + + endMarkerStyle = Ext.apply(me.markerStyle, me.markerConfig); + type = endMarkerStyle.type || 'circle'; + delete endMarkerStyle.type; + + + if (!store || !store.getCount()) { + me.hide(); + me.items = []; + return; + } + + + me.unHighlightItem(); + me.cleanHighlights(); + + attrs = me.getPaths(); + ln = attrs.length; + for (i = 0; i < ln; i++) { + attr = attrs[i]; + sprite = group.getAt(i); + Ext.apply(attr, endMarkerStyle); + + + if (!sprite) { + sprite = me.createPoint(attr, type); + if (enableShadows) { + me.createShadow(sprite, endMarkerStyle, type); + } + } + + shadows = sprite.shadows; + if (chart.animate) { + rendererAttributes = me.renderer(sprite, store.getAt(i), { translate: attr }, i, store); + sprite._to = rendererAttributes; + me.onAnimate(sprite, { + to: rendererAttributes + }); + + for (shindex = 0; shindex < lnsh; shindex++) { + shadowAttribute = Ext.apply({}, shadowAttributes[shindex]); + rendererAttributes = me.renderer(shadows[shindex], store.getAt(i), Ext.apply({}, { + hidden: false, + translate: { + x: attr.x + (shadowAttribute.translate? shadowAttribute.translate.x : 0), + y: attr.y + (shadowAttribute.translate? shadowAttribute.translate.y : 0) + } + }, shadowAttribute), i, store); + me.onAnimate(shadows[shindex], { to: rendererAttributes }); + } + } + else { + rendererAttributes = me.renderer(sprite, store.getAt(i), { translate: attr }, i, store); + sprite._to = rendererAttributes; + sprite.setAttributes(rendererAttributes, true); + + for (shindex = 0; shindex < lnsh; shindex++) { + shadowAttribute = Ext.apply({}, shadowAttributes[shindex]); + rendererAttributes = me.renderer(shadows[shindex], store.getAt(i), Ext.apply({}, { + hidden: false, + translate: { + x: attr.x + (shadowAttribute.translate? shadowAttribute.translate.x : 0), + y: attr.y + (shadowAttribute.translate? shadowAttribute.translate.y : 0) + } + }, shadowAttribute), i, store); + shadows[shindex].setAttributes(rendererAttributes, true); + } + } + me.items[i].sprite = sprite; + } + + + ln = group.getCount(); + for (i = attrs.length; i < ln; i++) { + group.getAt(i).hide(true); + } + me.renderLabels(); + me.renderCallouts(); + }, + + + onCreateLabel: function(storeItem, item, i, display) { + var me = this, + group = me.labelsGroup, + config = me.label, + endLabelStyle = Ext.apply({}, config, me.seriesLabelStyle), + bbox = me.bbox; + + return me.chart.surface.add(Ext.apply({ + type: 'text', + 'text-anchor': 'middle', + group: group, + x: Number(item.point[0]), + y: bbox.y + bbox.height / 2 + }, endLabelStyle)); + }, + + + onPlaceLabel: function(label, storeItem, item, i, display, animate, index) { + var me = this, + chart = me.chart, + resizing = chart.resizing, + config = me.label, + format = config.renderer, + field = config.field, + bbox = me.bbox, + x = Number(item.point[0]), + y = Number(item.point[1]), + radius = item.sprite.attr.radius, + labelBox, markerBox, width, height, xOffset, yOffset, + anim; + + label.setAttributes({ + text: format(storeItem.get(field), label, storeItem, item, i, display, animate, index), + hidden: true + }, true); + + + + markerBox = item.sprite.getBBox(); + markerBox.width = markerBox.width || (radius * 2); + markerBox.height = markerBox.height || (radius * 2); + + labelBox = label.getBBox(); + width = labelBox.width/2; + height = labelBox.height/2; + + if (display == 'rotate') { + + xOffset = markerBox.width/2 + width + height/2; + if (x + xOffset + width > bbox.x + bbox.width) { + x -= xOffset; + } else { + x += xOffset; + } + label.setAttributes({ + 'rotation': { + x: x, + y: y, + degrees: -45 + } + }, true); + } else if (display == 'under' || display == 'over') { + label.setAttributes({ + 'rotation': { + degrees: 0 + } + }, true); + + + if (x < bbox.x + width) { + x = bbox.x + width; + } else if (x + width > bbox.x + bbox.width) { + x = bbox.x + bbox.width - width; + } + + yOffset = markerBox.height/2 + height; + y = y + (display == 'over' ? -yOffset : yOffset); + if (y < bbox.y + height) { + y += 2 * yOffset; + } else if (y + height > bbox.y + bbox.height) { + y -= 2 * yOffset; + } + } + + if (!chart.animate) { + label.setAttributes({ + x: x, + y: y + }, true); + label.show(true); + } + else { + if (resizing) { + anim = item.sprite.getActiveAnimation(); + if (anim) { + anim.on('afteranimate', function() { + label.setAttributes({ + x: x, + y: y + }, true); + label.show(true); + }); + } + else { + label.show(true); + } + } + else { + me.onAnimate(label, { + to: { + x: x, + y: y + } + }); + } + } + }, + + + onPlaceCallout: function(callout, storeItem, item, i, display, animate, index) { + var me = this, + chart = me.chart, + surface = chart.surface, + resizing = chart.resizing, + config = me.callouts, + items = me.items, + cur = item.point, + normal, + bbox = callout.label.getBBox(), + offsetFromViz = 30, + offsetToSide = 10, + offsetBox = 3, + boxx, boxy, boxw, boxh, + p, clipRect = me.bbox, + x, y; + + + normal = [Math.cos(Math.PI /4), -Math.sin(Math.PI /4)]; + x = cur[0] + normal[0] * offsetFromViz; + y = cur[1] + normal[1] * offsetFromViz; + + + boxx = x + (normal[0] > 0? 0 : -(bbox.width + 2 * offsetBox)); + boxy = y - bbox.height /2 - offsetBox; + boxw = bbox.width + 2 * offsetBox; + boxh = bbox.height + 2 * offsetBox; + + + + if (boxx < clipRect[0] || (boxx + boxw) > (clipRect[0] + clipRect[2])) { + normal[0] *= -1; + } + if (boxy < clipRect[1] || (boxy + boxh) > (clipRect[1] + clipRect[3])) { + normal[1] *= -1; + } + + + x = cur[0] + normal[0] * offsetFromViz; + y = cur[1] + normal[1] * offsetFromViz; + + + boxx = x + (normal[0] > 0? 0 : -(bbox.width + 2 * offsetBox)); + boxy = y - bbox.height /2 - offsetBox; + boxw = bbox.width + 2 * offsetBox; + boxh = bbox.height + 2 * offsetBox; + + if (chart.animate) { + + me.onAnimate(callout.lines, { + to: { + path: ["M", cur[0], cur[1], "L", x, y, "Z"] + } + }, true); + + me.onAnimate(callout.box, { + to: { + x: boxx, + y: boxy, + width: boxw, + height: boxh + } + }, true); + + me.onAnimate(callout.label, { + to: { + x: x + (normal[0] > 0? offsetBox : -(bbox.width + offsetBox)), + y: y + } + }, true); + } else { + + callout.lines.setAttributes({ + path: ["M", cur[0], cur[1], "L", x, y, "Z"] + }, true); + + callout.box.setAttributes({ + x: boxx, + y: boxy, + width: boxw, + height: boxh + }, true); + + callout.label.setAttributes({ + x: x + (normal[0] > 0? offsetBox : -(bbox.width + offsetBox)), + y: y + }, true); + } + for (p in callout) { + callout[p].show(true); + } + }, + + + onAnimate: function(sprite, attr) { + sprite.show(); + return this.callParent(arguments); + }, + + isItemInPoint: function(x, y, item) { + var point, + tolerance = 10, + abs = Math.abs; + + function dist(point) { + var dx = abs(point[0] - x), + dy = abs(point[1] - y); + return Math.sqrt(dx * dx + dy * dy); + } + point = item.point; + return (point[0] - tolerance <= x && point[0] + tolerance >= x && + point[1] - tolerance <= y && point[1] + tolerance >= y); + } +}); + + + +Ext.define('Ext.layout.container.Table', { + + + + alias: ['layout.table'], + extend: Ext.layout.container.Container , + alternateClassName: 'Ext.layout.TableLayout', + + + + + + + monitorResize:false, + + type: 'table', + + createsInnerCt: true, + + targetCls: Ext.baseCSSPrefix + 'table-layout-ct', + tableCls: Ext.baseCSSPrefix + 'table-layout', + cellCls: Ext.baseCSSPrefix + 'table-layout-cell', + + + tableAttrs: null, + + + + + + getItemSizePolicy: function (item) { + return this.autoSizePolicy; + }, + + initHierarchyState: function (hierarchyStateInner) { + hierarchyStateInner.inShrinkWrapTable = true; + }, + + getLayoutItems: function() { + var me = this, + result = [], + items = me.callParent(), + item, + len = items.length, i; + + for (i = 0; i < len; i++) { + item = items[i]; + if (!item.hidden) { + result.push(item); + } + } + return result; + }, + + getHiddenItems: function(){ + var result = [], + items = this.owner.items.items, + len = items.length, + i = 0, item; + + for (; i < len; ++i) { + item = items[i]; + if (item.rendered && item.hidden) { + result.push(item); + } + } + return result; + }, + + + renderChildren: function() { + var me = this, + items = me.getLayoutItems(), + tbody = me.owner.getTargetEl().child('table', true).tBodies[0], + rows = tbody.rows, + i = 0, + len = items.length, + hiddenItems = me.getHiddenItems(), + cells, curCell, rowIdx, cellIdx, item, trEl, tdEl, itemCt, el; + + + cells = me.calculateCells(items); + + + + + for (; i < len; i++) { + curCell = cells[i]; + rowIdx = curCell.rowIdx; + cellIdx = curCell.cellIdx; + item = items[i]; + + + trEl = rows[rowIdx]; + if (!trEl) { + trEl = tbody.insertRow(rowIdx); + if (me.trAttrs) { + trEl.set(me.trAttrs); + } + } + + + itemCt = tdEl = Ext.get(trEl.cells[cellIdx] || trEl.insertCell(cellIdx)); + if (me.needsDivWrap()) { + itemCt = tdEl.first() || tdEl.createChild({tag: 'div'}); + itemCt.setWidth(null); + } + + + if (!item.rendered) { + me.renderItem(item, itemCt, 0); + } else if (!me.isValidParent(item, itemCt, rowIdx, cellIdx, tbody)) { + me.moveItem(item, itemCt, 0); + } + + + if (me.tdAttrs) { + tdEl.set(me.tdAttrs); + } + if (item.tdAttrs) { + tdEl.set(item.tdAttrs); + } + tdEl.set({ + colSpan: item.colspan || 1, + rowSpan: item.rowspan || 1, + id: item.cellId || '', + cls: me.cellCls + ' ' + (item.cellCls || '') + }); + + + if (!cells[i + 1] || cells[i + 1].rowIdx !== rowIdx) { + cellIdx++; + while (trEl.cells[cellIdx]) { + trEl.deleteCell(cellIdx); + } + } + } + + + rowIdx++; + while (tbody.rows[rowIdx]) { + tbody.deleteRow(rowIdx); + } + + + + for (i = 0, len = hiddenItems.length; i < len; ++i) { + me.ensureInDocument(hiddenItems[i].getEl()); + } + }, + + ensureInDocument: function(el){ + var dom = el.dom.parentNode; + while (dom) { + if (dom.tagName.toUpperCase() == 'BODY') { + return; + } + dom = dom.parentNode; + } + + Ext.getDetachedBody().appendChild(el); + }, + + calculate: function (ownerContext) { + if (!ownerContext.hasDomProp('containerChildrenSizeDone')) { + this.done = false; + } else { + var targetContext = ownerContext.targetContext, + widthShrinkWrap = ownerContext.widthModel.shrinkWrap, + heightShrinkWrap = ownerContext.heightModel.shrinkWrap, + shrinkWrap = heightShrinkWrap || widthShrinkWrap, + table = shrinkWrap && targetContext.el.child('table', true), + targetPadding = shrinkWrap && targetContext.getPaddingInfo(); + + if (widthShrinkWrap) { + ownerContext.setContentWidth(table.offsetWidth + targetPadding.width, true); + } + + if (heightShrinkWrap) { + ownerContext.setContentHeight(table.offsetHeight + targetPadding.height, true); + } + } + }, + + finalizeLayout: function() { + if (this.needsDivWrap()) { + + var items = this.getLayoutItems(), + i, + iLen = items.length, + item; + + for (i = 0; i < iLen; i++) { + item = items[i]; + + Ext.fly(item.el.dom.parentNode).setWidth(item.getWidth()); + } + } + if (Ext.isIE6 || Ext.isIEQuirks) { + + this.owner.getTargetEl().child('table').repaint(); + } + }, + + + calculateCells: function(items) { + var cells = [], + rowIdx = 0, + colIdx = 0, + cellIdx = 0, + totalCols = this.columns || Infinity, + rowspans = [], + i = 0, j, + len = items.length, + item; + + for (; i < len; i++) { + item = items[i]; + + + while (colIdx >= totalCols || rowspans[colIdx] > 0) { + if (colIdx >= totalCols) { + + colIdx = 0; + cellIdx = 0; + rowIdx++; + + + for (j = 0; j < totalCols; j++) { + if (rowspans[j] > 0) { + rowspans[j]--; + } + } + } else { + colIdx++; + } + } + + + cells.push({ + rowIdx: rowIdx, + cellIdx: cellIdx + }); + + + for (j = item.colspan || 1; j; --j) { + rowspans[colIdx] = item.rowspan || 1; + ++colIdx; + } + ++cellIdx; + } + + return cells; + }, + + getRenderTree: function() { + var me = this, + items = me.getLayoutItems(), + cells, + rows = [], + result = Ext.apply({ + tag: 'table', + role: 'presentation', + cls: me.tableCls, + cellspacing: 0, + cellpadding: 0, + cn: { + tag: 'tbody', + cn: rows + } + }, me.tableAttrs), + tdAttrs = me.tdAttrs, + needsDivWrap = me.needsDivWrap(), + i, len = items.length, item, curCell, tr, rowIdx, cellIdx, cell; + + + cells = me.calculateCells(items); + + for (i = 0; i < len; i++) { + item = items[i]; + + curCell = cells[i]; + rowIdx = curCell.rowIdx; + cellIdx = curCell.cellIdx; + + + tr = rows[rowIdx]; + if (!tr) { + tr = rows[rowIdx] = { + tag: 'tr', + cn: [] + }; + if (me.trAttrs) { + Ext.apply(tr, me.trAttrs); + } + } + + + cell = tr.cn[cellIdx] = { + tag: 'td' + }; + if (tdAttrs) { + Ext.apply(cell, tdAttrs); + } + Ext.apply(cell, { + colSpan: item.colspan || 1, + rowSpan: item.rowspan || 1, + id: item.cellId || '', + cls: me.cellCls + ' ' + (item.cellCls || '') + }); + + if (needsDivWrap) { + cell = cell.cn = { + tag: 'div' + }; + } + + me.configureItem(item); + + cell.cn = item.getRenderTree(); + } + return result; + }, + + isValidParent: function(item, target, rowIdx, cellIdx) { + var tbody, + correctCell, + table; + + + if (arguments.length === 3) { + table = item.el.up('table'); + return table && table.dom.parentNode === target.dom; + } + tbody = this.owner.getTargetEl().child('table', true).tBodies[0]; + correctCell = tbody.rows[rowIdx].cells[cellIdx]; + return item.el.dom.parentNode === correctCell; + }, + + + needsDivWrap: function() { + return Ext.isOpera10_5; + } +}); + + +Ext.define('Ext.container.ButtonGroup', { + extend: Ext.panel.Panel , + alias: 'widget.buttongroup', + alternateClassName: 'Ext.ButtonGroup', + + + + + + + baseCls: Ext.baseCSSPrefix + 'btn-group', + + + layout: { + type: 'table' + }, + + defaultType: 'button', + + + frame: true, + + + + frameHeader: false, + + titleAlign: 'center', + + noTitleCls: 'notitle', + + initComponent : function() { + + var me = this, + cols = me.columns; + + if (cols) { + me.layout = Ext.apply({}, {columns: cols}, me.layout); + } + + if (!me.title) { + me.addClsWithUI(me.noTitleCls); + } + me.callParent(arguments); + }, + + + onBeforeAdd: function(component) { + if (component.isButton) { + if (this.defaultButtonUI && component.ui === 'default' && + !component.hasOwnProperty('ui')) { + component.ui = this.defaultButtonUI; + } else { + component.ui = component.ui + '-toolbar'; + } + } + this.callParent(arguments); + }, + + + applyDefaults: function(c) { + if (!Ext.isString(c)) { + c = this.callParent(arguments); + } + return c; + } + + + + + + +}); + + +Ext.define('Ext.container.Monitor', { + target: null, + selector: '', + + scope: null, + addHandler: null, + removeHandler: null, + + disabled: 0, + + constructor: function(config){ + Ext.apply(this, config); + }, + + bind: function(target){ + var me = this; + + me.target = target; + target.on('beforedestroy', me.disable, me); + me.onContainerAdd(target); + }, + + unbind: function() { + var me = this, + target = me.target; + + if (target) { + target.un('beforedestroy', me.disable, me); + } + me.items = null; + }, + + disable: function(){ + ++this.disabled; + }, + + enable: function(){ + if (this.disabled > 0) { + --this.disabled; + } + }, + + handleAdd: function(ct, comp) { + if (!this.disabled) { + if (comp.is(this.selector)) { + this.onItemAdd(comp.ownerCt, comp); + } + + if (comp.isQueryable) { + this.onContainerAdd(comp); + } + } + }, + + onItemAdd: function(ct, comp){ + var me = this, + items = me.items, + handler = me.addHandler; + + if (!me.disabled) { + if (handler) { + handler.call(me.scope || comp, comp); + } + if (items) { + items.add(comp); + } + } + }, + + onItemRemove: function(ct, comp){ + var me = this, + items = me.items, + handler = me.removeHandler; + + if (!me.disabled) { + if (handler) { + handler.call(me.scope || comp, comp); + } + if (items) { + items.remove(comp); + } + } + }, + + onContainerAdd: function(ct, preventChildren) { + var me = this, + items, len, + handleAdd = me.handleAdd, + handleRemove = me.handleRemove, + i, comp; + + if (ct.isContainer) { + ct.on('add', handleAdd, me); + ct.on('dockedadd', handleAdd, me); + ct.on('remove', handleRemove, me); + ct.on('dockedremove', handleRemove, me); + } + + + + if (preventChildren !== true) { + items = ct.query(me.selector); + for (i = 0, len = items.length; i < len; ++i) { + comp = items[i]; + me.onItemAdd(comp.ownerCt, comp); + } + } + + items = ct.query('container'); + for (i = 0, len = items.length; i < len; ++i) { + me.onContainerAdd(items[i], true); + } + + }, + + handleRemove: function(ct, comp) { + var me = this; + + + + if (!me.disabled) { + if (comp.is(me.selector)) { + me.onItemRemove(ct, comp); + } + + if (comp.isQueryable) { + me.onContainerRemove(ct, comp); + } + } + }, + + onContainerRemove: function(ct, comp){ + var me = this, + items, i, len, item; + + + + if (!comp.isDestroyed && !comp.destroying && comp.isContainer) { + me.removeCtListeners(comp); + + items = comp.query(me.selector); + for (i = 0, len = items.length; i < len; ++i) { + item = items[i]; + me.onItemRemove(item.ownerCt, item); + } + + items = comp.query('container'); + for (i = 0, len = items.length; i < len; ++i) { + me.removeCtListeners(items[i]); + } + } else { + + me.invalidateItems(); + } + }, + + removeCtListeners: function(comp){ + var me = this; + comp.un('add', me.handleAdd, me); + comp.un('dockedadd', me.handleAdd, me); + comp.un('remove', me.handleRemove, me); + comp.un('dockedremove', me.handleRemove, me); + }, + + getItems: function(){ + var me = this, + items = me.items; + + if (!items) { + items = me.items = new Ext.util.MixedCollection(); + items.addAll(me.target.query(me.selector)); + } + return items; + }, + + invalidateItems: function(){ + this.items = null; + } +}); + + +Ext.define('Ext.container.Viewport', { + extend: Ext.container.Container , + alias: 'widget.viewport', + + alternateClassName: 'Ext.Viewport', + + + + + + + + + + + + + + + + + isViewport: true, + + ariaRole: 'application', + + preserveElOnDestroy: true, + + viewportCls: Ext.baseCSSPrefix + 'viewport', + + initComponent : function() { + var me = this, + html = document.body.parentNode, + el = me.el = Ext.getBody(); + + + Ext.getScrollbarSize(); + + + me.width = me.height = undefined; + + me.callParent(arguments); + Ext.fly(html).addCls(me.viewportCls); + if (me.autoScroll) { + Ext.fly(html).setStyle(me.getOverflowStyle()); + delete me.autoScroll; + } + el.setHeight = el.setWidth = Ext.emptyFn; + el.dom.scroll = 'no'; + me.allowDomMove = false; + me.renderTo = me.el; + }, + + + applyTargetCls: function(targetCls) { + this.el.addCls(targetCls); + }, + + onRender: function() { + var me = this; + + me.callParent(arguments); + + + + me.width = Ext.Element.getViewportWidth(); + me.height = Ext.Element.getViewportHeight(); + }, + + afterFirstLayout: function() { + var me = this; + + me.callParent(arguments); + setTimeout(function() { + Ext.EventManager.onWindowResize(me.fireResize, me); + }, 1); + }, + + fireResize : function(width, height){ + + + if (width != this.width || height != this.height) { + this.setSize(width, height); + } + }, + + initHierarchyState: function(hierarchyState) { + this.callParent([this.hierarchyState = Ext.rootHierarchyState]); + }, + + beforeDestroy: function(){ + var me = this; + + me.removeUIFromElement(); + me.el.removeCls(me.baseCls); + Ext.fly(document.body.parentNode).removeCls(me.viewportCls); + me.callParent(); + } +}); + + +Ext.define('Ext.data.IdGenerator', { + + + isGenerator: true, + + + constructor: function(config) { + var me = this; + + Ext.apply(me, config); + + if (me.id) { + Ext.data.IdGenerator.all[me.id] = me; + } + }, + + + + getRecId: function (rec) { + return rec.modelName + '-' + rec.internalId; + }, + + + + statics: { + + all: {}, + + + get: function (config) { + var generator, + id, + type; + + if (typeof config == 'string') { + id = type = config; + config = null; + } else if (config.isGenerator) { + return config; + } else { + id = config.id || config.type; + type = config.type; + } + + generator = this.all[id]; + if (!generator) { + generator = Ext.create('idgen.' + type, config); + } + + return generator; + } + } +}); + + +Ext.define('Ext.data.SortTypes', { + + singleton: true, + + + none : Ext.identityFn, + + + stripTagsRE : /<\/?[^>]+>/gi, + + + asText : function(s) { + return String(s).replace(this.stripTagsRE, ""); + }, + + + asUCText : function(s) { + return String(s).toUpperCase().replace(this.stripTagsRE, ""); + }, + + + asUCString : function(s) { + return String(s).toUpperCase(); + }, + + + asDate : function(s) { + if(!s){ + return 0; + } + if(Ext.isDate(s)){ + return s.getTime(); + } + return Date.parse(String(s)); + }, + + + asFloat : function(s) { + var val = parseFloat(String(s).replace(/,/g, "")); + return isNaN(val) ? 0 : val; + }, + + + asInt : function(s) { + var val = parseInt(String(s).replace(/,/g, ""), 10); + return isNaN(val) ? 0 : val; + } +}); + + +Ext.define('Ext.data.Types', { + singleton: true + +}, function() { + var st = Ext.data.SortTypes; + + Ext.apply(Ext.data.Types, { + + stripRe: /[\$,%]/g, + + + AUTO: { + sortType: st.none, + type: 'auto' + }, + + + STRING: { + convert: function(v) { + var defaultValue = this.useNull ? null : ''; + return (v === undefined || v === null) ? defaultValue : String(v); + }, + sortType: st.asUCString, + type: 'string' + }, + + + INT: { + convert: function(v) { + + + + if (typeof v == 'number') { + return parseInt(v); + } + return v !== undefined && v !== null && v !== '' ? + parseInt(String(v).replace(Ext.data.Types.stripRe, ''), 10) : (this.useNull ? null : 0); + }, + sortType: st.none, + type: 'int' + }, + + + FLOAT: { + convert: function(v) { + if (typeof v === 'number') { + return v; + } + return v !== undefined && v !== null && v !== '' ? + parseFloat(String(v).replace(Ext.data.Types.stripRe, ''), 10) : (this.useNull ? null : 0); + }, + sortType: st.none, + type: 'float' + }, + + + BOOL: { + convert: function(v) { + if (typeof v === 'boolean') { + return v; + } + if (this.useNull && (v === undefined || v === null || v === '')) { + return null; + } + return v === 'true' || v == 1; + }, + sortType: st.none, + type: 'bool' + }, + + + DATE: { + convert: function(v) { + var df = this.dateReadFormat || this.dateFormat, + parsed; + + if (!v) { + return null; + } + + if (v instanceof Date) { + return v; + } + if (df) { + return Ext.Date.parse(v, df); + } + + parsed = Date.parse(v); + return parsed ? new Date(parsed) : null; + }, + sortType: st.asDate, + type: 'date' + } + }); + + Ext.apply(Ext.data.Types, { + + BOOLEAN: this.BOOL, + + + INTEGER: this.INT, + + + NUMBER: this.FLOAT + }); +}); + + +Ext.define('Ext.data.Field', { + + alias: 'data.field', + + isField: true, + + constructor : function(config) { + var me = this, + types = Ext.data.Types, + st; + + if (Ext.isString(config)) { + config = {name: config}; + } + Ext.apply(me, config); + + st = me.sortType; + + if (me.type) { + if (Ext.isString(me.type)) { + me.type = types[me.type.toUpperCase()] || types.AUTO; + } + } else { + me.type = types.AUTO; + } + + + if (Ext.isString(st)) { + me.sortType = Ext.data.SortTypes[st]; + } else if(Ext.isEmpty(st)) { + me.sortType = me.type.sortType; + } + + + if (!config.hasOwnProperty('convert')) { + me.convert = me.type.convert; + } else if (!me.convert && me.type.convert && !config.hasOwnProperty('defaultValue')) { + + + me.defaultValue = me.type.convert(me.defaultValue); + } + + if (config.convert) { + me.hasCustomConvert = true; + } + }, + + + + + + + + + + + dateFormat: null, + + + dateReadFormat: null, + + + dateWriteFormat: null, + + + useNull: false, + + + defaultValue: "", + + + mapping: null, + + + sortType : null, + + + sortDir : "ASC", + + + allowBlank : true, + + + persist: true +}); + + +Ext.define('Ext.data.Errors', { + extend: Ext.util.MixedCollection , + + + isValid: function() { + return this.length === 0; + }, + + + getByField: function(fieldName) { + var errors = [], + error, i; + + for (i = 0; i < this.length; i++) { + error = this.items[i]; + + if (error.field == fieldName) { + errors.push(error); + } + } + + return errors; + } +}); + + +Ext.define('Ext.data.validations', { + singleton: true, + + + presenceMessage: 'must be present', + + + lengthMessage: 'is the wrong length', + + + formatMessage: 'is the wrong format', + + + inclusionMessage: 'is not included in the list of acceptable values', + + + exclusionMessage: 'is not an acceptable value', + + + emailMessage: 'is not a valid email address', + + + emailRe: /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/, + + + presence: function(config, value) { + + if (arguments.length === 1) { + value = config; + } + + + return !!value || value === 0 || value === false; + }, + + + length: function(config, value) { + if (value === undefined || value === null) { + return false; + } + + var length = value.length, + min = config.min, + max = config.max; + + if ((min && length < min) || (max && length > max)) { + return false; + } else { + return true; + } + }, + + + email: function(config, email) { + return Ext.data.validations.emailRe.test(email); + }, + + + format: function(config, value) { + return !!(config.matcher && config.matcher.test(value)); + }, + + + inclusion: function(config, value) { + return config.list && Ext.Array.indexOf(config.list,value) != -1; + }, + + + exclusion: function(config, value) { + return config.list && Ext.Array.indexOf(config.list,value) == -1; + } +}); + + +Ext.define('Ext.data.Model', { + alternateClassName: 'Ext.data.Record', + + mixins: { + observable: Ext.util.Observable + }, + + + + + + + + + + + + compareConvertFields: function(f1, f2) { + var f1SpecialConvert = f1.convert && f1.type && f1.convert !== f1.type.convert, + f2SpecialConvert = f2.convert && f2.type && f2.convert !== f2.type.convert; + + if (f1SpecialConvert && !f2SpecialConvert) { + return 1; + } + + if (!f1SpecialConvert && f2SpecialConvert) { + return -1; + } + return 0; + }, + + itemNameFn: function(item) { + return item.name; + }, + + onClassExtended: function(cls, data, hooks) { + var onBeforeClassCreated = hooks.onBeforeCreated; + + hooks.onBeforeCreated = function(cls, data) { + var me = this, + name = Ext.getClassName(cls), + prototype = cls.prototype, + superCls = cls.prototype.superclass, + + validations = data.validations || [], + fields = data.fields || [], + field, + associationsConfigs = data.associations || [], + addAssociations = function(items, type) { + var i = 0, + len, + item; + + if (items) { + items = Ext.Array.from(items); + + for (len = items.length; i < len; ++i) { + item = items[i]; + + if (!Ext.isObject(item)) { + item = {model: item}; + } + + item.type = type; + associationsConfigs.push(item); + } + } + }, + idgen = data.idgen, + + fieldsMixedCollection = new Ext.util.MixedCollection(false, prototype.itemNameFn), + + associationsMixedCollection = new Ext.util.MixedCollection(false, prototype.itemNameFn), + + superValidations = superCls.validations, + superFields = superCls.fields, + superAssociations = superCls.associations, + + associationConfig, i, ln, + dependencies = [], + + + idProperty = 'idProperty' in data ? data.idProperty : prototype.idProperty, + + + idField = idProperty ? (idProperty.isField ? idProperty : new Ext.data.Field(idProperty)) : null, + + + idFieldDefined = false, + + + onFieldAddReplace = function(arg0, arg1, arg2) { + var newField, + pos; + + if (fieldsMixedCollection.events.add.firing) { + + pos = arg0; + newField = arg1; + } else { + + newField = arg2; + pos = arg1.originalIndex; + } + + + + newField.originalIndex = pos; + + + + + if (idField && ((newField.mapping && (newField.mapping === idField.mapping)) || (newField.name === idField.name))) { + prototype.idField = newField; + idFieldDefined = true; + newField.defaultValue = undefined; + } + }, + + + clsProxy = data.proxy, + + + fieldConvertSortFn = function() { + fieldsMixedCollection.sortBy(prototype.compareConvertFields); + }; + + + cls.modelName = name; + prototype.modelName = name; + + + if (superValidations) { + validations = superValidations.concat(validations); + } + + data.validations = validations; + + + if (superFields) { + fields = superFields.items.concat(fields); + } + + fieldsMixedCollection.on({ + add: onFieldAddReplace, + replace: onFieldAddReplace + }); + + for (i = 0, ln = fields.length; i < ln; ++i) { + field = fields[i]; + fieldsMixedCollection.add(field.isField ? field : new Ext.data.Field(field)); + } + + + + + if (idField && !idFieldDefined) { + prototype.idField = idField; + idField.defaultValue = undefined; + fieldsMixedCollection.add(idField); + } + + + fieldConvertSortFn(); + fieldsMixedCollection.on({ + add: fieldConvertSortFn, + replace: fieldConvertSortFn + }); + + data.fields = fieldsMixedCollection; + + if (idgen) { + data.idgen = Ext.data.IdGenerator.get(idgen); + } + + + + addAssociations(data.belongsTo, 'belongsTo'); + delete data.belongsTo; + addAssociations(data.hasMany, 'hasMany'); + delete data.hasMany; + addAssociations(data.hasOne, 'hasOne'); + delete data.hasOne; + + if (superAssociations) { + associationsConfigs = superAssociations.items.concat(associationsConfigs); + } + + for (i = 0, ln = associationsConfigs.length; i < ln; ++i) { + dependencies.push('association.' + associationsConfigs[i].type.toLowerCase()); + } + + + if (clsProxy) { + if (!clsProxy.isProxy) { + dependencies.push('proxy.' + (clsProxy.type || clsProxy)); + } + } + + + else if (!cls.prototype.proxy) { + cls.prototype.proxy = cls.prototype.defaultProxyType; + dependencies.push('proxy.' + cls.prototype.defaultProxyType); + } + + Ext.require(dependencies, function() { + Ext.ModelManager.registerType(name, cls); + + for (i = 0, ln = associationsConfigs.length; i < ln; ++i) { + associationConfig = associationsConfigs[i]; + if (associationConfig.isAssociation) { + associationConfig = Ext.applyIf({ + ownerModel: name, + associatedModel: associationConfig.model + }, associationConfig.initialConfig); + } else { + Ext.apply(associationConfig, { + ownerModel: name, + associatedModel: associationConfig.model + }); + } + + if (Ext.ModelManager.getModel(associationConfig.model) === undefined) { + Ext.ModelManager.registerDeferredAssociation(associationConfig); + } else { + associationsMixedCollection.add(Ext.data.association.Association.create(associationConfig)); + } + } + + data.associations = associationsMixedCollection; + + + + + + + onBeforeClassCreated.call(me, cls, data, hooks); + + + if (clsProxy && clsProxy.isProxy) { + cls.setProxy(clsProxy); + } + + + Ext.ModelManager.onModelDefined(cls); + }); + }; + }, + + inheritableStatics: { + + setProxy: function(proxy) { + + if (!proxy.isProxy) { + if (typeof proxy == "string") { + proxy = { + type: proxy + }; + } + proxy = Ext.createByAlias("proxy." + proxy.type, proxy); + } + proxy.setModel(this); + this.proxy = this.prototype.proxy = proxy; + + return proxy; + }, + + + getProxy: function() { + + var proxy = this.proxy; + + + if (!proxy) { + proxy = this.prototype.proxy; + + + if (proxy.isProxy) { + proxy = proxy.clone() + } + + return this.setProxy(proxy); + } + + return proxy; + }, + + + setFields: function(fields, idProperty, clientIdProperty) { + var me = this, + newField, + idField, + idFieldDefined = false, + proto = me.prototype, + prototypeFields = proto.fields, + superFields = proto.superclass.fields, + len, + i; + + if (idProperty) { + proto.idProperty = idProperty; + idField = idProperty.isField ? idProperty : new Ext.data.Field(idProperty); + + } + if (clientIdProperty) { + proto.clientIdProperty = clientIdProperty; + } + + if (prototypeFields) { + prototypeFields.clear(); + } + else { + prototypeFields = me.prototype.fields = new Ext.util.MixedCollection(false, function(field) { + return field.name; + }); + } + + + if (superFields) { + fields = superFields.items.concat(fields); + } + + for (i = 0, len = fields.length; i < len; i++) { + newField = new Ext.data.Field(fields[i]); + + + + + if (idField && ((newField.mapping && (newField.mapping === idField.mapping)) || (newField.name === idField.name))) { + idFieldDefined = true; + newField.defaultValue = undefined; + } + prototypeFields.add(newField); + } + + + + + if (idField && !idFieldDefined) { + idField.defaultValue = undefined; + prototypeFields.add(idField); + } + + me.fields = prototypeFields; + + return prototypeFields; + }, + + + getFields: function() { + return this.prototype.fields.items; + }, + + + load: function(id, config) { + config = Ext.apply({}, config); + config = Ext.applyIf(config, { + action: 'read', + id : id + }); + + var operation = new Ext.data.Operation(config), + scope = config.scope || this, + callback; + + callback = function(operation) { + var record = null, + success = operation.wasSuccessful(); + + if (success) { + record = operation.getRecords()[0]; + + if (!record.hasId()) { + record.setId(id); + } + Ext.callback(config.success, scope, [record, operation]); + } else { + Ext.callback(config.failure, scope, [record, operation]); + } + Ext.callback(config.callback, scope, [record, operation, success]); + }; + + this.getProxy().read(operation, callback, this); + } + }, + + statics: { + + PREFIX : 'ext-record', + + AUTO_ID: 1, + + EDIT : 'edit', + + REJECT : 'reject', + + COMMIT : 'commit', + + + id: function(rec) { + var id = [this.PREFIX, '-', this.AUTO_ID++].join(''); + rec.phantom = true; + rec.internalId = id; + return id; + } + }, + + + idgen: { + isGenerator: true, + type: 'default', + + generate: function () { + return null; + }, + getRecId: function (rec) { + return rec.modelName + '-' + rec.internalId; + } + }, + + + editing : false, + + + dirty : false, + + + persistenceProperty: 'data', + + evented: false, + + + isModel: true, + + + phantom : false, + + + idProperty: 'id', + + + clientIdProperty: null, + + + defaultProxyType: 'ajax', + + + emptyData: [], + + + + + + + + + + + + + + + + + constructor: function(data, id, raw, convertedData) { + + + + + + + + + var me = this, + passedId = (id || id === 0), + hasId, + fields, + length, + field, + name, + value, + newId, + persistenceProperty, + idProperty = me.idProperty, + idField = me.idField, + i; + + + me.raw = raw || data; + + + me.modified = {}; + + persistenceProperty = me[me.persistenceProperty] = convertedData || {}; + + + me.data = me[me.persistenceProperty]; + + me.mixins.observable.constructor.call(me); + + if (!convertedData) { + + if (data) { + + if (!passedId && idProperty) { + id = data[idProperty]; + hasId = (id || id === 0); + } + } + + else { + data = me.emptyData; + } + + + fields = me.fields.items; + length = fields.length; + i = 0; + + if (Ext.isArray(data)) { + for (; i < length; i++) { + field = fields[i]; + name = field.name; + + + + value = data[field.originalIndex]; + + if (value === undefined) { + value = field.defaultValue; + } + + + if (field.convert) { + value = field.convert(value, me); + } + + if (value !== undefined) { + persistenceProperty[name] = value; + } + } + + } else { + for (; i < length; i++) { + field = fields[i]; + name = field.name; + value = data[name]; + if (value === undefined) { + value = field.defaultValue; + } + if (field.convert) { + value = field.convert(value, me); + } + + if (value !== undefined) { + persistenceProperty[name] = value; + } + } + } + } + + + me.stores = []; + + + + if (passedId) { + hasId = true; + persistenceProperty[idProperty] = idField && idField.convert ? idField.convert(id) : id; + } + + + else if (!hasId) { + + newId = me.idgen.generate(); + if (newId != null) { + me.preventInternalUpdate = true; + me.setId(newId); + delete me.preventInternalUpdate; + } + } + + + me.internalId = hasId ? id : Ext.data.Model.id(me); + + + if (typeof me.init == 'function') { + me.init(); + } + + + me.id = me.idgen.getRecId(me); + }, + + + get: function(field) { + return this[this.persistenceProperty][field]; + }, + + + + + _singleProp: {}, + + + set: function (fieldName, newValue) { + var me = this, + data = me[me.persistenceProperty], + fields = me.fields, + modified = me.modified, + single = (typeof fieldName == 'string'), + currentValue, field, idChanged, key, modifiedFieldNames, name, oldId, + newId, value, values; + + if (single) { + values = me._singleProp; + values[fieldName] = newValue; + } else { + values = fieldName; + } + + for (name in values) { + if (values.hasOwnProperty(name)) { + value = values[name]; + + if (fields && (field = fields.get(name)) && field.convert) { + value = field.convert(value, me); + } + + currentValue = data[name]; + if (me.isEqual(currentValue, value)) { + continue; + } + + data[name] = value; + (modifiedFieldNames || (modifiedFieldNames = [])).push(name); + + if (field && field.persist) { + if (modified.hasOwnProperty(name)) { + if (me.isEqual(modified[name], value)) { + + + delete modified[name]; + + + + + me.dirty = false; + for (key in modified) { + if (modified.hasOwnProperty(key)){ + me.dirty = true; + break; + } + } + } + } else { + me.dirty = true; + modified[name] = currentValue; + } + } + + if (name == me.idProperty) { + idChanged = true; + oldId = currentValue; + newId = value; + } + } + } + + if (single) { + + + delete values[fieldName]; + } + + if (idChanged) { + me.changeId(oldId, newId); + } + + if (!me.editing && modifiedFieldNames) { + me.afterEdit(modifiedFieldNames); + } + + return modifiedFieldNames || null; + }, + + + copyFrom: function(sourceRecord) { + var me = this, + fields = me.fields.items, + fieldCount = fields.length, + modifiedFieldNames = [], + field, i = 0, + myData, + sourceData, + idProperty = me.idProperty, + name, + value; + + if (sourceRecord) { + myData = me[me.persistenceProperty]; + sourceData = sourceRecord[sourceRecord.persistenceProperty]; + for (; i < fieldCount; i++) { + field = fields[i]; + name = field.name; + + + + + + + + if (name != idProperty) { + value = sourceData[name]; + + + + if (value !== undefined && !me.isEqual(myData[name], value)) { + myData[name] = value; + modifiedFieldNames.push(name); + } + } + } + + + if (me.phantom && !sourceRecord.phantom) { + + + me.beginEdit(); + me.setId(sourceRecord.getId()); + me.endEdit(true); + me.commit(true); + } + } + return modifiedFieldNames; + }, + + + isEqual: function(a, b) { + + if (a instanceof Date && b instanceof Date) { + return a.getTime() === b.getTime(); + } + return a === b; + }, + + + beginEdit : function(){ + var me = this, + key, + data, + o; + + if (!me.editing) { + me.editing = true; + me.dirtySave = me.dirty; + + o = me[me.persistenceProperty]; + data = me.dataSave = {}; + for (key in o) { + if (o.hasOwnProperty(key)) { + data[key] = o[key]; + } + } + + o = me.modified; + data = me.modifiedSave = {}; + for (key in o) { + if (o.hasOwnProperty(key)) { + data[key] = o[key]; + } + } + } + }, + + + cancelEdit : function(){ + var me = this; + if (me.editing) { + me.editing = false; + + me.modified = me.modifiedSave; + me[me.persistenceProperty] = me.dataSave; + me.dirty = me.dirtySave; + me.modifiedSave = me.dataSave = me.dirtySave = null; + } + }, + + + endEdit : function(silent, modifiedFieldNames){ + var me = this, + dataSave, + changed; + + silent = silent === true; + if (me.editing) { + me.editing = false; + dataSave = me.dataSave; + me.modifiedSave = me.dataSave = me.dirtySave = null; + if (!silent) { + if (!modifiedFieldNames) { + modifiedFieldNames = me.getModifiedFieldNames(dataSave); + } + changed = me.dirty || modifiedFieldNames.length > 0; + if (changed) { + me.afterEdit(modifiedFieldNames); + } + } + } + }, + + + getModifiedFieldNames: function(saved){ + var me = this, + data = me[me.persistenceProperty], + modified = [], + key; + + saved = saved || me.dataSave; + for (key in data) { + if (data.hasOwnProperty(key)) { + if (!me.isEqual(data[key], saved[key])) { + modified.push(key); + } + } + } + return modified; + }, + + + getChanges : function(){ + var modified = this.modified, + changes = {}, + field; + + for (field in modified) { + if (modified.hasOwnProperty(field)){ + changes[field] = this.get(field); + } + } + + return changes; + }, + + + isModified : function(fieldName) { + return this.modified.hasOwnProperty(fieldName); + }, + + + setDirty : function() { + var me = this, + fields = me.fields.items, + fLen = fields.length, + field, name, f; + + me.dirty = true; + + for (f = 0; f < fLen; f++) { + field = fields[f]; + + if (field.persist) { + name = field.name; + me.modified[name] = me.get(name); + } + } + }, + + + + reject : function(silent) { + var me = this, + modified = me.modified, + field; + + for (field in modified) { + if (modified.hasOwnProperty(field)) { + if (typeof modified[field] != "function") { + me[me.persistenceProperty][field] = modified[field]; + } + } + } + + me.dirty = false; + me.editing = false; + me.modified = {}; + + if (silent !== true) { + me.afterReject(); + } + }, + + + commit : function(silent, modifiedFieldNames) { + var me = this; + + me.phantom = me.dirty = me.editing = false; + me.modified = {}; + + if (silent !== true) { + me.afterCommit(modifiedFieldNames); + } + }, + + + copy : function(newId) { + var me = this; + return new me.self(me.raw, newId, null, Ext.apply({}, me[me.persistenceProperty])); + }, + + + setProxy: function(proxy) { + + if (!proxy.isProxy) { + if (typeof proxy === "string") { + proxy = { + type: proxy + }; + } + proxy = Ext.createByAlias("proxy." + proxy.type, proxy); + } + proxy.setModel(this.self); + this.proxy = proxy; + + return proxy; + }, + + + getProxy: function() { + return this.hasOwnProperty('proxy') ? this.proxy : this.self.getProxy(); + }, + + + validate: function() { + var errors = new Ext.data.Errors(), + validations = this.validations, + validators = Ext.data.validations, + length, validation, field, valid, type, i; + + if (validations) { + length = validations.length; + + for (i = 0; i < length; i++) { + validation = validations[i]; + field = validation.field || validation.name; + type = validation.type; + valid = validators[type](validation, this.get(field)); + + if (!valid) { + errors.add({ + field : field, + message: validation.message || validators[type + 'Message'] + }); + } + } + } + + return errors; + }, + + + isValid: function(){ + return this.validate().isValid(); + }, + + + save: function(options) { + options = Ext.apply({}, options); + + var me = this, + action = me.phantom ? 'create' : 'update', + scope = options.scope || me, + stores = me.stores, + i = 0, + storeCount, + store, + operation, + callback; + + Ext.apply(options, { + records: [me], + action : action + }); + + operation = new Ext.data.Operation(options); + + callback = function(operation) { + var success = operation.wasSuccessful(); + + if (success) { + for(storeCount = stores.length; i < storeCount; i++) { + store = stores[i]; + store.fireEvent('write', store, operation); + store.fireEvent('datachanged', store); + + } + Ext.callback(options.success, scope, [me, operation]); + } + else { + Ext.callback(options.failure, scope, [me, operation]); + } + + Ext.callback(options.callback, scope, [me, operation, success]); + }; + + me.getProxy()[action](operation, callback, me); + + return me; + }, + + + destroy: function(options) { + options = Ext.apply({ + records: [this], + action : 'destroy' + }, options); + + var me = this, + isNotPhantom = me.phantom !== true, + scope = options.scope || me, + stores, + i = 0, + storeCount, + store, + args, + operation, + callback; + + operation = new Ext.data.Operation(options); + + callback = function(operation) { + args = [me, operation]; + + + stores = Ext.Array.clone(me.stores); + if (operation.wasSuccessful()) { + for (storeCount = stores.length; i < storeCount; i++) { + store = stores[i]; + + + + if (store.remove) { + store.remove(me, true); + } + + + + store.fireEvent('bulkremove', store, [me], [store.indexOf(me)], false); + if (isNotPhantom) { + store.fireEvent('write', store, operation); + } + } + me.clearListeners(); + Ext.callback(options.success, scope, args); + } else { + Ext.callback(options.failure, scope, args); + } + Ext.callback(options.callback, scope, args); + }; + + + + if (isNotPhantom) { + me.getProxy().destroy(operation, callback, me); + } + + else { + operation.complete = operation.success = true; + operation.resultSet = me.getProxy().reader.nullResultSet; + callback(operation); + } + return me; + }, + + + getId: function() { + return this.get(this.idField.name); + }, + + + getObservableId: function() { + return this.id; + }, + + + setId: function(id) { + this.set(this.idProperty, id); + }, + + changeId: function(oldId, newId) { + var me = this, + hasOldId, hasId, oldInternalId; + + if (!me.preventInternalUpdate) { + hasOldId = me.hasId(oldId); + hasId = me.hasId(newId); + oldInternalId = me.internalId; + me.phantom = !hasId; + + + + + if (hasId !== hasOldId || (hasId && hasOldId)) { + me.internalId = hasId ? newId : Ext.data.Model.id(me); + } + + me.fireEvent('idchanged', me, oldId, newId, oldInternalId); + me.callStore('onIdChanged', oldId, newId, oldInternalId); + } + }, + + + hasId: function(id) { + if (arguments.length === 0) { + id = this.getId(); + } + return !!(id || id === 0); + }, + + + join : function(store) { + var me = this; + + + if (!me.stores.length) { + me.stores[0] = store; + } else { + Ext.Array.include(this.stores, store); + } + + + this.store = this.stores[0]; + }, + + + unjoin: function(store) { + Ext.Array.remove(this.stores, store); + this.store = this.stores[0] || null; + }, + + + afterEdit : function(modifiedFieldNames) { + this.callStore('afterEdit', modifiedFieldNames); + }, + + + afterReject : function() { + this.callStore('afterReject'); + }, + + + afterCommit: function(modifiedFieldNames) { + this.callStore('afterCommit', modifiedFieldNames); + }, + + + callStore: function(fn) { + var args = Ext.Array.clone(arguments), + stores = this.stores, + i = 0, + len = stores.length, + store; + + args[0] = this; + for (; i < len; ++i) { + store = stores[i]; + if (store && Ext.isFunction(store[fn])) { + store[fn].apply(store, args); + } + } + }, + + + getData: function(includeAssociated){ + var me = this, + fields = me.fields.items, + fLen = fields.length, + data = {}, + name, f; + + for (f = 0; f < fLen; f++) { + name = fields[f].name; + data[name] = me.get(name); + } + + if (includeAssociated === true) { + Ext.apply(data, me.getAssociatedData()); + } + return data; + }, + + + getAssociatedData: function(){ + return this.prepareAssociatedData({}, 1); + }, + + + prepareAssociatedData: function(seenKeys, depth) { + + var me = this, + associations = me.associations.items, + associationCount = associations.length, + associationData = {}, + + + + toRead = [], + toReadKey = [], + toReadIndex = [], + associatedStore, associatedRecords, associatedRecord, o, index, result, seenDepth, + associationId, associatedRecordCount, association, i, j, type, name; + + for (i = 0; i < associationCount; i++) { + association = associations[i]; + associationId = association.associationId; + + seenDepth = seenKeys[associationId]; + if (seenDepth && seenDepth !== depth) { + continue; + } + seenKeys[associationId] = depth; + + type = association.type; + name = association.name; + if (type == 'hasMany') { + + associatedStore = me[association.storeName]; + + + associationData[name] = []; + + + if (associatedStore && associatedStore.getCount() > 0) { + associatedRecords = associatedStore.data.items; + associatedRecordCount = associatedRecords.length; + + + + for (j = 0; j < associatedRecordCount; j++) { + associatedRecord = associatedRecords[j]; + associationData[name][j] = associatedRecord.getData(); + toRead.push(associatedRecord); + toReadKey.push(name); + toReadIndex.push(j); + } + } + } else if (type == 'belongsTo' || type == 'hasOne') { + associatedRecord = me[association.instanceName]; + + if (associatedRecord !== undefined) { + associationData[name] = associatedRecord.getData(); + toRead.push(associatedRecord); + toReadKey.push(name); + toReadIndex.push(-1); + } + } + } + + for (i = 0, associatedRecordCount = toRead.length; i < associatedRecordCount; ++i) { + associatedRecord = toRead[i]; + o = associationData[toReadKey[i]]; + index = toReadIndex[i]; + result = associatedRecord.prepareAssociatedData(seenKeys, depth + 1); + if (index === -1) { + Ext.apply(o, result); + } else { + Ext.apply(o[index], result); + } + } + + return associationData; + } +}); + + +Ext.define('Ext.data.proxy.Server', { + extend: Ext.data.proxy.Proxy , + alias : 'proxy.server', + alternateClassName: 'Ext.data.ServerProxy', + + + + + + pageParam: 'page', + + + startParam: 'start', + + + limitParam: 'limit', + + + groupParam: 'group', + + + groupDirectionParam: 'groupDir', + + + sortParam: 'sort', + + + filterParam: 'filter', + + + directionParam: 'dir', + + + idParam: 'id', + + + simpleSortMode: false, + + + simpleGroupMode: false, + + + noCache : true, + + + cacheString: "_dc", + + + timeout : 30000, + + + + constructor: function(config) { + var me = this; + + config = config || {}; + + me.callParent([config]); + + + me.extraParams = config.extraParams || {}; + + me.api = Ext.apply({}, config.api || me.api); + + + + me.nocache = me.noCache; + }, + + + create: function() { + return this.doRequest.apply(this, arguments); + }, + + read: function() { + return this.doRequest.apply(this, arguments); + }, + + update: function() { + return this.doRequest.apply(this, arguments); + }, + + destroy: function() { + return this.doRequest.apply(this, arguments); + }, + + + setExtraParam: function(name, value) { + this.extraParams[name] = value; + }, + + + buildRequest: function(operation) { + var me = this, + + params = operation.params = Ext.apply({}, operation.params, me.extraParams), + request; + + + Ext.applyIf(params, me.getParams(operation)); + + + + + if (operation.id !== undefined && params[me.idParam] === undefined) { + params[me.idParam] = operation.id; + } + + request = new Ext.data.Request({ + params : params, + action : operation.action, + records : operation.records, + operation: operation, + url : operation.url, + + + + proxy: me + }); + + request.url = me.buildUrl(request); + + + operation.request = request; + + return request; + }, + + + processResponse: function(success, operation, request, response, callback, scope) { + var me = this, + reader, + result; + + if (success === true) { + reader = me.getReader(); + + + + + reader.applyDefaults = operation.action === 'read'; + + result = reader.read(me.extractResponseData(response)); + + if (result.success !== false) { + + Ext.apply(operation, { + response: response, + resultSet: result + }); + + operation.commitRecords(result.records); + operation.setCompleted(); + operation.setSuccessful(); + } else { + operation.setException(result.message); + me.fireEvent('exception', this, response, operation); + } + } else { + me.setException(operation, response); + me.fireEvent('exception', this, response, operation); + } + + + if (typeof callback == 'function') { + callback.call(scope || me, operation); + } + + me.afterRequest(request, success); + }, + + + setException: function(operation, response) { + operation.setException({ + status: response.status, + statusText: response.statusText + }); + }, + + + extractResponseData: Ext.identityFn, + + + applyEncoding: function(value) { + return Ext.encode(value); + }, + + + encodeSorters: function(sorters) { + var min = [], + length = sorters.length, + i = 0; + + for (; i < length; i++) { + min[i] = { + property : sorters[i].property, + direction: sorters[i].direction + }; + } + return this.applyEncoding(min); + + }, + + + encodeFilters: function(filters) { + var min = [], + length = filters.length, + i = 0; + + for (; i < length; i++) { + min[i] = { + property: filters[i].property, + value : filters[i].value + }; + } + return this.applyEncoding(min); + }, + + + getParams: function(operation) { + var me = this, + params = {}, + isDef = Ext.isDefined, + groupers = operation.groupers, + sorters = operation.sorters, + filters = operation.filters, + page = operation.page, + start = operation.start, + limit = operation.limit, + simpleSortMode = me.simpleSortMode, + simpleGroupMode = me.simpleGroupMode, + pageParam = me.pageParam, + startParam = me.startParam, + limitParam = me.limitParam, + groupParam = me.groupParam, + groupDirectionParam = me.groupDirectionParam, + sortParam = me.sortParam, + filterParam = me.filterParam, + directionParam = me.directionParam, + hasGroups, index; + + if (pageParam && isDef(page)) { + params[pageParam] = page; + } + + if (startParam && isDef(start)) { + params[startParam] = start; + } + + if (limitParam && isDef(limit)) { + params[limitParam] = limit; + } + + hasGroups = groupParam && groupers && groupers.length > 0; + if (hasGroups) { + + if (simpleGroupMode) { + params[groupParam] = groupers[0].property; + params[groupDirectionParam] = groupers[0].direction || 'ASC'; + } else { + params[groupParam] = me.encodeSorters(groupers); + } + } + + if (sortParam && sorters && sorters.length > 0) { + if (simpleSortMode) { + index = 0; + + if (sorters.length > 1 && hasGroups) { + index = 1; + } + params[sortParam] = sorters[index].property; + params[directionParam] = sorters[index].direction; + } else { + params[sortParam] = me.encodeSorters(sorters); + } + + } + + if (filterParam && filters && filters.length > 0) { + params[filterParam] = me.encodeFilters(filters); + } + + return params; + }, + + + buildUrl: function(request) { + var me = this, + url = me.getUrl(request); + + + if (me.noCache) { + url = Ext.urlAppend(url, Ext.String.format("{0}={1}", me.cacheString, Ext.Date.now())); + } + + return url; + }, + + + getUrl: function(request) { + return request.url || this.api[request.action] || this.url; + }, + + + doRequest: function(operation, callback, scope) { + }, + + + afterRequest: Ext.emptyFn, + + onDestroy: function() { + Ext.destroy(this.reader, this.writer); + } +}); + + +Ext.define('Ext.data.proxy.Ajax', { + + extend: Ext.data.proxy.Server , + alias: 'proxy.ajax', + alternateClassName: ['Ext.data.HttpProxy', 'Ext.data.AjaxProxy'], + + + actionMethods: { + create : 'POST', + read : 'GET', + update : 'POST', + destroy: 'POST' + }, + + + binary: false, + + + + doRequest: function(operation, callback, scope) { + var writer = this.getWriter(), + request = this.buildRequest(operation); + + if (operation.allowWrite()) { + request = writer.write(request); + } + + Ext.apply(request, { + binary : this.binary, + headers : this.headers, + timeout : this.timeout, + scope : this, + callback : this.createRequestCallback(request, operation, callback, scope), + method : this.getMethod(request), + disableCaching: false + }); + + Ext.Ajax.request(request); + + return request; + }, + + + getMethod: function(request) { + return this.actionMethods[request.action]; + }, + + + createRequestCallback: function(request, operation, callback, scope) { + var me = this; + + return function(options, success, response) { + me.processResponse(success, operation, request, response, callback, scope); + }; + } +}, function() { + + Ext.data.HttpProxy = this; +}); + + +Ext.define('Ext.data.proxy.Client', { + extend: Ext.data.proxy.Proxy , + alternateClassName: 'Ext.data.ClientProxy', + + + isSynchronous: true, + + + clear: function() { + } +}); + + +Ext.define('Ext.data.proxy.Memory', { + extend: Ext.data.proxy.Client , + alias: 'proxy.memory', + alternateClassName: 'Ext.data.MemoryProxy', + + + + + + constructor: function(config) { + this.callParent([config]); + + + this.setReader(this.reader); + }, + + + updateOperation: function(operation, callback, scope) { + var i = 0, + recs = operation.getRecords(), + len = recs.length; + + for (i; i < len; i++) { + recs[i].commit(); + } + operation.setCompleted(); + operation.setSuccessful(); + + Ext.callback(callback, scope || this, [operation]); + }, + + + create: function() { + this.updateOperation.apply(this, arguments); + }, + + + update: function() { + this.updateOperation.apply(this, arguments); + }, + + + destroy: function() { + this.updateOperation.apply(this, arguments); + }, + + + read: function(operation, callback, scope) { + var me = this, + resultSet = operation.resultSet = me.getReader().read(me.data), + records = resultSet.records, + sorters = operation.sorters, + groupers = operation.groupers, + filters = operation.filters; + + operation.setCompleted(); + + + if (resultSet.success) { + + + if (filters && filters.length) { + records = resultSet.records = Ext.Array.filter(records, Ext.util.Filter.createFilterFn(filters)); + } + + + if (groupers && groupers.length) { + + sorters = sorters ? sorters.concat(groupers) : sorters; + } + + + if (sorters && sorters.length) { + resultSet.records = Ext.Array.sort(records, Ext.util.Sortable.createComparator(sorters)); + } + + + + if (me.enablePaging && operation.start !== undefined && operation.limit !== undefined) { + + + if (operation.start >= resultSet.total) { + resultSet.success = false; + resultSet.count = 0; + resultSet.records = []; + } + + else { + resultSet.records = Ext.Array.slice(resultSet.records, operation.start, operation.start + operation.limit); + resultSet.count = resultSet.records.length; + } + } + } + + if (resultSet.success) { + operation.setSuccessful(); + } else { + me.fireEvent('exception', me, null, operation); + } + Ext.callback(callback, scope || me, [operation]); + }, + + clear: Ext.emptyFn +}); + + +Ext.define('Ext.util.LruCache', { + extend: Ext.util.HashMap , + + + + constructor: function(config) { + Ext.apply(this, config); + this.callParent([config]); + }, + + + add: function(key, newValue) { + var me = this, + existingKey = me.findKey(newValue), + entry; + + + if (existingKey) { + me.unlinkEntry(entry = me.map[existingKey]); + entry.prev = me.last; + entry.next = null; + } + + else { + entry = { + prev: me.last, + next: null, + key: key, + value: newValue + }; + } + + + if (me.last) { + me.last.next = entry; + } + + else { + me.first = entry; + } + me.last = entry; + me.callParent([key, entry]); + me.prune(); + return newValue; + }, + + + insertBefore: function(key, newValue, sibling) { + var me = this, + existingKey, + entry; + + + + if (sibling = this.map[this.findKey(sibling)]) { + existingKey = me.findKey(newValue); + + + if (existingKey) { + me.unlinkEntry(entry = me.map[existingKey]); + } + + else { + entry = { + prev: sibling.prev, + next: sibling, + key: key, + value: newValue + }; + } + + if (sibling.prev) { + entry.prev.next = entry; + } else { + me.first = entry; + } + entry.next = sibling; + sibling.prev = entry; + me.prune(); + return newValue; + } + + else { + return me.add(key, newValue); + } + }, + + + get: function(key) { + var entry = this.map[key]; + if (entry) { + + + if (entry.next) { + this.moveToEnd(entry); + } + return entry.value; + } + }, + + + removeAtKey: function(key) { + this.unlinkEntry(this.map[key]); + return this.callParent(arguments); + }, + + + clear: function( initial) { + this.first = this.last = null; + return this.callParent(arguments); + }, + + + unlinkEntry: function(entry) { + + if (entry) { + if (entry.next) { + entry.next.prev = entry.prev; + } else { + this.last = entry.prev; + } + if (entry.prev) { + entry.prev.next = entry.next; + } else { + this.first = entry.next; + } + entry.prev = entry.next = null; + } + }, + + + moveToEnd: function(entry) { + this.unlinkEntry(entry); + + + + if (entry.prev = this.last) { + this.last.next = entry; + } + + else { + this.first = entry; + } + this.last = entry; + }, + + + getArray: function(isKey) { + var arr = [], + entry = this.first; + + while (entry) { + arr.push(isKey ? entry.key: entry.value); + entry = entry.next; + } + return arr; + }, + + + each: function(fn, scope, reverse) { + var me = this, + entry = reverse ? me.last : me.first, + length = me.length; + + scope = scope || me; + while (entry) { + if (fn.call(scope, entry.key, entry.value, length) === false) { + break; + } + entry = reverse ? entry.prev : entry.next; + } + return me; + }, + + + findKey: function(value) { + var key, + map = this.map; + + for (key in map) { + + + if (map.hasOwnProperty(key) && map[key].value === value) { + return key; + } + } + return undefined; + }, + + + clone: function() { + var newCache = new this.self(this.initialConfig), + map = this.map, + key; + + newCache.suspendEvents(); + for (key in map) { + if (map.hasOwnProperty(key)) { + newCache.add(key, map[key].value); + } + } + newCache.resumeEvents(); + return newCache; + }, + + + prune: function() { + var me = this, + purgeCount = me.maxSize ? (me.length - me.maxSize) : 0; + + if (purgeCount > 0) { + for (; me.first && purgeCount; purgeCount--) { + me.removeAtKey(me.first.key); + } + } + } + + + + + +}); + + +Ext.define('Ext.data.PageMap', { + extend: Ext.util.LruCache , + + + clear: function(initial) { + var me = this; + me.pageMapGeneration = (me.pageMapGeneration || 0) + 1; + me.callParent(arguments); + }, + + forEach: function(fn, scope) { + var me = this, + pageNumbers = Ext.Object.getKeys(me.map), + pageCount = pageNumbers.length, + i, j, + pageNumber, + page, + pageSize; + + for (i = 0; i < pageCount; i++) { + pageNumbers[i] = Number(pageNumbers[i]); + } + Ext.Array.sort(pageNumbers); + scope = scope || me; + for (i = 0; i < pageCount; i++) { + pageNumber = pageNumbers[i]; + page = me.getPage(pageNumber); + pageSize = page.length; + for (j = 0; j < pageSize; j++) { + if (fn.call(scope, page[j], (pageNumber - 1) * me.pageSize + j) === false) { + return; + } + } + } + }, + + + findBy: function(fn, scope) { + var me = this, + result = null; + + scope = scope || me; + me.forEach(function(rec, index) { + if (fn.call(scope, rec, index)) { + result = rec; + return false; + } + }); + return result; + }, + + + findIndexBy: function(fn, scope) { + var me = this, + result = -1; + + scope = scope || me; + me.forEach(function(rec, index) { + if (fn.call(scope, rec)) { + result = index; + return false; + } + }); + return result; + }, + + getPageFromRecordIndex: function() { + return Ext.data.Store.prototype.getPageFromRecordIndex.apply(this, arguments); + }, + + addAll: function(records) { + this.addPage(1, records); + }, + + addPage: function(pageNumber, records) { + var me = this, + lastPage = pageNumber + Math.floor((records.length - 1) / me.pageSize), + startIdx, + page; + + + + for (startIdx = 0; pageNumber <= lastPage; pageNumber++, startIdx += me.pageSize) { + page = Ext.Array.slice(records, startIdx, startIdx + me.pageSize); + me.add(pageNumber, page); + me.fireEvent('pageAdded', pageNumber, page); + } + }, + + getCount: function() { + var result = this.callParent(); + if (result) { + result = (result - 1) * this.pageSize + this.last.value.length; + } + return result; + }, + + indexOf: function(record) { + return record ? record.index : -1; + }, + + insert: function() { + }, + + remove: function() { + }, + + removeAt: function() { + }, + + getPage: function(pageNumber) { + return this.get(pageNumber); + }, + + hasRange: function(start, end) { + var pageNumber = this.getPageFromRecordIndex(start), + endPageNumber = this.getPageFromRecordIndex(end); + + for (; pageNumber <= endPageNumber; pageNumber++) { + if (!this.hasPage(pageNumber)) { + return false; + } + } + return true; + }, + + hasPage: function(pageNumber) { + + return !!this.get(pageNumber); + }, + + getAt: function(index) { + return this.getRange(index, index)[0]; + }, + + getRange: function(start, end) { + if (!this.hasRange(start, end)) { + Ext.Error.raise('PageMap asked for range which it does not have'); + } + var me = this, + startPageNumber = me.getPageFromRecordIndex(start), + endPageNumber = me.getPageFromRecordIndex(end), + dataStart = (startPageNumber - 1) * me.pageSize, + dataEnd = (endPageNumber * me.pageSize) - 1, + pageNumber = startPageNumber, + result = [], + sliceBegin, sliceEnd, doSlice, + i = 0, len; + + for (; pageNumber <= endPageNumber; pageNumber++) { + + + if (pageNumber == startPageNumber) { + sliceBegin = start - dataStart; + doSlice = true; + } else { + sliceBegin = 0; + doSlice = false; + } + if (pageNumber == endPageNumber) { + sliceEnd = me.pageSize - (dataEnd - end); + doSlice = true; + } + + + if (doSlice) { + Ext.Array.push(result, Ext.Array.slice(me.getPage(pageNumber), sliceBegin, sliceEnd)); + } else { + Ext.Array.push(result, me.getPage(pageNumber)); + } + } + + + for (len = result.length; i < len; i++) { + result[i].index = start++; + } + return result; + } +}); + + +Ext.define('Ext.data.Group', { + + extend: Ext.util.Observable , + + key: undefined, + + dirty: true, + + constructor: function(){ + this.callParent(arguments); + this.records = []; + }, + + contains: function(record){ + return Ext.Array.indexOf(this.records, record) !== -1; + }, + + add: function(records) { + Ext.Array.push(this.records, records); + this.dirty = true; + }, + + remove: function(records) { + if (!Ext.isArray(records)) { + records = [records]; + } + + var len = records.length, + i; + + for (i = 0; i < len; ++i) { + Ext.Array.remove(this.records, records[i]); + } + this.dirty = true; + }, + + isDirty: function(){ + return this.dirty; + }, + + hasAggregate: function(){ + return !!this.aggregate; + }, + + setDirty: function(){ + this.dirty = true; + }, + + commit: function(){ + this.dirty = false; + }, + + isCollapsed: function(){ + return this.collapsed; + }, + + getAggregateRecord: function(forceNew){ + var me = this, + Model; + + if (forceNew === true || me.dirty || !me.aggregate) { + Model = me.store.model; + me.aggregate = new Model(); + me.aggregate.isSummary = true; + } + return me.aggregate; + } + +}); + + +Ext.define('Ext.data.Store', { + extend: Ext.data.AbstractStore , + + alias: 'store.store', + + + + + + + + + + + + + + + + + + + + + + remoteSort: false, + + + remoteFilter: false, + + + remoteGroup : false, + + + + + + + + + groupField: undefined, + + + groupDir: "ASC", + + + trailingBufferZone: 25, + + + leadingBufferZone: 200, + + + pageSize: undefined, + + + currentPage: 1, + + + clearOnPageLoad: true, + + + loading: false, + + + sortOnFilter: true, + + + buffered: false, + + + purgePageCount: 5, + + + clearRemovedOnLoad: true, + + defaultPageSize: 25, + + + defaultViewSize: 100, + + + addRecordsOptions: { + addRecords: true + }, + + statics: { + recordIdFn: function(record) { + return record.internalId; + }, + recordIndexFn: function(record) { + return record.index; + }, + grouperIdFn: function(grouper) { + return grouper.id || grouper.property; + }, + groupIdFn: function(group) { + return group.key; + } + }, + + + constructor: function(config) { + + config = Ext.apply({}, config); + + var me = this, + groupers = config.groupers || me.groupers, + groupField = config.groupField || me.groupField, + proxy, + data; + + + + + + data = config.data || me.data; + + if (data) { + me.inlineData = data; + delete config.data; + } + + if (!groupers && groupField) { + groupers = [{ + property : groupField, + direction: config.groupDir || me.groupDir + }]; + + + if (config.getGroupString || (me.getGroupString !== Ext.data.Store.prototype.getGroupString)) { + groupers[0].getGroupString = function(record) { + return me.getGroupString(record); + } + } + } + delete config.groupers; + + + me.groupers = new Ext.util.MixedCollection(false, Ext.data.Store.grouperIdFn); + me.groupers.addAll(me.decodeGroupers(groupers)); + + me.groups = new Ext.util.MixedCollection(false, Ext.data.Store.groupIdFn); + + + me.callParent([config]); + + + if (me.buffered) { + me.data = new Ext.data.PageMap({ + store: me, + keyFn: Ext.data.Store.recordIdFn, + pageSize: me.pageSize, + maxSize: me.purgePageCount, + listeners: { + + + clear: me.onPageMapClear, + scope: me + } + }); + me.pageRequests = {}; + + + me.remoteSort = me.remoteGroup = me.remoteFilter = true; + + me.sortOnLoad = false; + me.filterOnLoad = false; + } else { + + me.data = new Ext.util.MixedCollection({ + getKey: Ext.data.Store.recordIdFn, + maintainIndices: true + }); + me.data.pageSize = me.pageSize; + } + + + if (me.remoteGroup) { + me.remoteSort = true; + } + + + me.sorters.insert(0, me.groupers.getRange()); + + proxy = me.proxy; + data = me.inlineData; + + + + if (!me.buffered && !me.pageSize) { + me.pageSize = me.defaultPageSize; + } + + + if (data) { + if (proxy instanceof Ext.data.proxy.Memory) { + proxy.data = data; + me.read(); + } else { + me.add.apply(me, [data]); + } + + + + if (me.sorters.items.length && !me.remoteSort) { + me.group(null, null, true); + } + + delete me.inlineData; + } + else if (me.autoLoad) { + + Ext.defer(me.load, 1, me, [ typeof me.autoLoad === 'object' ? me.autoLoad : undefined ]); + } + }, + + onBeforeSort: function() { + var groupers = this.groupers; + if (groupers.getCount() > 0) { + this.sort(groupers.items, 'prepend', false); + } + }, + + + decodeGroupers: function(groupers) { + if (!Ext.isArray(groupers)) { + if (groupers === undefined) { + groupers = []; + } else { + groupers = [groupers]; + } + } + + var length = groupers.length, + Grouper = Ext.util.Grouper, + config, i, result = []; + + for (i = 0; i < length; i++) { + config = groupers[i]; + + if (!(config instanceof Grouper)) { + if (Ext.isString(config)) { + config = { + property: config + }; + } + + config = Ext.apply({ + root : 'data', + direction: "ASC" + }, config); + + + if (config.fn) { + config.sorterFn = config.fn; + } + + + if (typeof config == 'function') { + config = { + sorterFn: config + }; + } + + + result.push(new Grouper(config)); + } else { + result.push(config); + } + } + return result; + }, + + + group: function(groupers, direction, suppressEvent) { + var me = this, + grouper, + newGroupers; + + + if (groupers) { + + + me.sorters.removeAll(me.groupers.items); + + if (Ext.isArray(groupers)) { + newGroupers = groupers; + } else if (Ext.isObject(groupers)) { + newGroupers = [groupers]; + } else if (Ext.isString(groupers)) { + grouper = me.groupers.get(groupers); + + if (!grouper) { + grouper = { + property : groupers, + direction: direction || 'ASC' + }; + newGroupers = [grouper]; + } else if (direction === undefined) { + grouper.toggle(); + } else { + grouper.setDirection(direction); + } + } + + + if (newGroupers && newGroupers.length) { + me.groupers.clear(); + me.groupers.addAll(me.decodeGroupers(newGroupers)); + } + + + me.sorters.insert(0, me.groupers.items); + } + + if (me.remoteGroup) { + if (me.buffered) { + me.data.clear(); + me.loadPage(1, { groupChange: true }); + } else { + me.load({ + scope: me, + callback: suppressEvent ? null : me.fireGroupChange + }); + } + } else { + me.doSort(me.generateComparator()); + me.constructGroups(); + if (!suppressEvent) { + me.fireGroupChange(); + } + } + }, + + getGroupField: function(){ + var first = this.groupers.first(), + group; + + if (first) { + group = first.property; + } + return group; + }, + + constructGroups: function(){ + var me = this, + data = this.data.items, + len = data.length, + groups = me.groups, + groupValue, i, group, rec; + + groups.clear(); + + if (me.isGrouped()) { + for (i = 0; i < len; ++i) { + rec = data[i]; + groupValue = me.getGroupString(rec); + group = groups.get(groupValue); + if (!group) { + group = new Ext.data.Group({ + key: groupValue, + store: me + }); + groups.add(groupValue, group); + } + group.add(rec); + } + } + }, + + + clearGrouping: function() { + var me = this, + groupers = me.groupers.items, + gLen = groupers.length, + g; + + + for (g = 0; g < gLen; g++) { + me.sorters.remove(groupers[g]); + } + me.groupers.clear(); + if (me.remoteGroup) { + if (me.buffered) { + me.data.clear(); + me.loadPage(1, { groupChange: true }); + } else { + me.load({ + scope: me, + callback: me.fireGroupChange + }); + } + } else { + me.groups.clear(); + if (me.sorters.length) { + me.sort(); + } else { + me.fireEvent('datachanged', me); + me.fireEvent('refresh', me); + } + me.fireGroupChange(); + } + }, + + + isGrouped: function() { + return this.groupers.getCount() > 0; + }, + + + fireGroupChange: function() { + this.fireEvent('groupchange', this, this.groupers); + }, + + + getGroups: function(requestGroupString) { + var records = this.data.items, + length = records.length, + groups = [], + pointers = {}, + record, + groupStr, + group, + i; + + for (i = 0; i < length; i++) { + record = records[i]; + groupStr = this.getGroupString(record); + group = pointers[groupStr]; + + if (group === undefined) { + group = { + name: groupStr, + children: [] + }; + + groups.push(group); + pointers[groupStr] = group; + } + + group.children.push(record); + } + + return requestGroupString ? pointers[requestGroupString] : groups; + }, + + + getGroupsForGrouper: function(records, grouper) { + var length = records.length, + groups = [], + oldValue, + newValue, + record, + group, + i; + + for (i = 0; i < length; i++) { + record = records[i]; + newValue = grouper.getGroupString(record); + + if (newValue !== oldValue) { + group = { + name: newValue, + grouper: grouper, + records: [] + }; + groups.push(group); + } + + group.records.push(record); + + oldValue = newValue; + } + + return groups; + }, + + + getGroupsForGrouperIndex: function(records, grouperIndex) { + var me = this, + groupers = me.groupers, + grouper = groupers.getAt(grouperIndex), + groups = me.getGroupsForGrouper(records, grouper), + length = groups.length, + i; + + if (grouperIndex + 1 < groupers.length) { + for (i = 0; i < length; i++) { + groups[i].children = me.getGroupsForGrouperIndex(groups[i].records, grouperIndex + 1); + } + } + + for (i = 0; i < length; i++) { + groups[i].depth = grouperIndex; + } + + return groups; + }, + + + getGroupData: function(sort) { + var me = this; + if (sort !== false) { + me.sort(); + } + + return me.getGroupsForGrouperIndex(me.data.items, 0); + }, + + + getGroupString: function(instance) { + var group = this.groupers.first(); + if (group) { + return group.getGroupString(instance); + } + return ''; + }, + + + insert: function(index, records) { + var me = this, + sync = false, + i, len, record, + defaults = me.modelDefaults, + out; + + + if (!Ext.isIterable(records)) { + out = records = [records]; + } else { + out = []; + } + len = records.length; + + if (len) { + for (i = 0; i < len; i++) { + record = records[i]; + if (!record.isModel) { + record = me.createModel(record); + } + out[i] = record; + if (defaults) { + record.set(defaults); + } + + record.join(me); + sync = sync || record.phantom === true; + } + + me.data.insert(index, out); + + if (me.snapshot) { + me.snapshot.addAll(out); + } + + if (me.requireSort) { + + me.suspendEvents(); + me.sort(); + me.resumeEvents(); + } + + if (me.isGrouped()) { + me.updateGroupsOnAdd(out); + } + + me.fireEvent('add', me, out, index); + me.fireEvent('datachanged', me); + if (me.autoSync && sync && !me.autoSyncSuspended) { + me.sync(); + } + } + return out; + }, + + updateGroupsOnAdd: function(records) { + var me = this, + groups = me.groups, + len = records.length, + i, groupName, group, rec; + + for (i = 0; i < len; ++i) { + rec = records[i]; + groupName = me.getGroupString(rec); + group = groups.getByKey(groupName); + if (!group) { + group = groups.add(new Ext.data.Group({ + key: groupName, + store: me + })); + } + group.add(rec); + } + }, + + updateGroupsOnRemove: function(records) { + var me = this, + groups = me.groups, + len = records.length, + i, groupName, group, rec; + + for (i = 0; i < len; ++i) { + rec = records[i]; + groupName = me.getGroupString(rec); + group = groups.getByKey(groupName); + + if (group) { + group.remove(rec); + if (group.records.length === 0) { + groups.remove(group); + } + } + } + }, + + updateGroupsOnUpdate: function(record, modifiedFieldNames){ + var me = this, + groupField = me.getGroupField(), + groupName = me.getGroupString(record), + groups = me.groups, + len, i, items, group; + + if (modifiedFieldNames && Ext.Array.indexOf(modifiedFieldNames, groupField) !== -1) { + + + if (me.buffered) { + Ext.Error.raise({ + msg: 'Cannot move records between groups in a buffered store record' + }); + } + + + items = groups.items; + for (i = 0, len = items.length; i < len; ++i) { + group = items[i]; + if (group.contains(record)) { + group.remove(record); + break; + } + } + group = groups.getByKey(groupName); + if (!group) { + group = groups.add(new Ext.data.Group({ + key: groupName, + store: me + })); + } + group.add(record); + + + + me.data.remove(record); + me.data.insert(me.data.findInsertionIndex(record, me.generateComparator()), record); + + + for (i = 0, len = this.getCount(); i < len; i++) { + me.data.items[i].index = i; + } + + } else { + + groups.getByKey(groupName).setDirty(); + } + }, + + + add: function(arg) { + var me = this, + records, + length, isSorted; + + + + if (Ext.isArray(arg)) { + records = arg; + } else { + records = arguments; + } + + length = records.length; + isSorted = !me.remoteSort && me.sorters && me.sorters.items.length; + + + + if (isSorted && length === 1) { + return [ me.addSorted(me.createModel(records[0])) ]; + } + + + + if (isSorted) { + me.requireSort = true; + } + + records = me.insert(me.data.length, records); + delete me.requireSort; + + return records; + }, + + + addSorted: function(record) { + var me = this, + index = me.data.findInsertionIndex(record, me.generateComparator()); + + me.insert(index, record); + return record; + }, + + + createModel: function(record) { + if (!record.isModel) { + record = Ext.ModelManager.create(record, this.model); + } + + return record; + }, + + onUpdate: function(record, type, modifiedFieldNames){ + if (this.isGrouped()) { + this.updateGroupsOnUpdate(record, modifiedFieldNames); + } + }, + + + each: function(fn, scope) { + var data = this.data.items, + dLen = data.length, + record, d; + + for (d = 0; d < dLen; d++) { + record = data[d]; + if (fn.call(scope || record, record, d, dLen) === false) { + break; + } + } + }, + + + remove: function(records, isMove, silent) { + + isMove = isMove === true; + + var me = this, + sync = false, + snapshot = me.snapshot, + data = me.data, + i = 0, + length, + info = [], + allRecords = [], + indexes = [], + item, + isNotPhantom, + index, + record, + removeRange, + removeCount, + fireRemoveEvent = !silent && me.hasListeners.remove; + + + if (records.isModel) { + records = [records]; + length = 1; + } + + + else if (Ext.isIterable(records)) { + length = records.length; + } + + + + else if (typeof records === 'object') { + removeRange = true; + i = records.start; + length = records.end + 1; + removeCount = length - i; + } + + + + if (!removeRange) { + for (i = 0; i < length; ++i) { + + record = records[i]; + + + if (typeof record == 'number') { + index = record; + record = data.getAt(index); + } + + else { + index = me.indexOf(record); + } + + + if (record && index > -1) { + info.push({ + record: record, + index: index + }); + } + + + if (snapshot) { + snapshot.remove(record); + } + } + + + info = Ext.Array.sort(info, function(o1, o2) { + var index1 = o1.index, + index2 = o2.index; + + return index1 === o2.index2 ? 0 : (index1 < index2 ? -1 : 1); + }); + + + i = 0; + length = info.length; + } + + + + + for (; i < length; i++) { + if (removeRange) { + record = data.getAt(i); + index = i; + } else { + item = info[i]; + record = item.record; + index = item.index; + } + + allRecords.push(record); + indexes.push(index); + + isNotPhantom = record.phantom !== true; + + if (!isMove && isNotPhantom) { + + + + record.removedFrom = index; + me.removed.push(record); + } + + record.unjoin(me); + + + + index -= i; + sync = sync || isNotPhantom; + + + + if (!removeRange) { + data.removeAt(index); + + + if (fireRemoveEvent) { + me.fireEvent('remove', me, record, index, !!isMove); + } + } + } + + + + if (removeRange) { + data.removeRange(records.start, removeCount); + } + + if (!silent) { + me.fireEvent('bulkremove', me, allRecords, indexes, !!isMove); + me.fireEvent('datachanged', me); + } + if (!isMove && me.autoSync && sync && !me.autoSyncSuspended) { + me.sync(); + } + }, + + + removeAt: function(index, count) { + var me = this, + storeCount = me.getCount(); + + if (index <= storeCount) { + if (arguments.length === 1) { + me.remove([ index ]); + } else if (count) { + me.remove({ + start: index, + end: Math.min(index + count, storeCount) - 1 + }); + } + } + }, + + + removeAll: function(silent) { + var me = this, + snapshot = me.snapshot, + data = me.data; + + if (snapshot) { + snapshot.removeAll(data.getRange()); + } + + if (me.buffered) { + if (data) { + if (silent) { + me.suspendEvent('clear'); + } + data.clear(); + if (silent) { + me.resumeEvent('clear'); + } + } + } + + else { + + + me.remove({ + start: 0, + end: me.getCount() - 1 + }, false, silent); + if (silent !== true) { + me.fireEvent('clear', me); + } + } + }, + + + load: function(options) { + var me = this; + + options = options || {}; + + if (typeof options == 'function') { + options = { + callback: options + }; + } + + options.groupers = options.groupers || me.groupers.items; + options.page = options.page || me.currentPage; + options.start = (options.start !== undefined) ? options.start : (options.page - 1) * me.pageSize; + options.limit = options.limit || me.pageSize; + options.addRecords = options.addRecords || false; + + if (me.buffered) { + options.limit = me.viewSize || me.defaultViewSize; + return me.loadToPrefetch(options); + } + return me.callParent([options]); + }, + + reload: function(options) { + var me = this, + startIdx, + endIdx, + startPage, + endPage, + i, + waitForReload, + bufferZone, + records, + count = me.getCount(); + + if (!options) { + options = {}; + } + + + + if (me.buffered) { + + + delete me.totalCount; + + waitForReload = function() { + if (me.rangeCached(startIdx, endIdx)) { + me.loading = false; + me.data.un('pageAdded', waitForReload); + records = me.data.getRange(startIdx, endIdx); + me.fireEvent('load', me, records, true); + } + }; + bufferZone = Math.ceil((me.leadingBufferZone + me.trailingBufferZone) / 2); + + + startIdx = options.start || (count ? me.getAt(0).index : 0); + endIdx = startIdx + (options.count || (count ? count : me.pageSize)) - 1; + + + startPage = me.getPageFromRecordIndex(Math.max(startIdx - bufferZone, 0)); + endPage = me.getPageFromRecordIndex(endIdx + bufferZone); + + + me.data.clear(true); + + if (me.fireEvent('beforeload', me, options) !== false) { + me.loading = true; + + + + me.data.on('pageAdded', waitForReload); + + + for (i = startPage; i <= endPage; i++) { + me.prefetchPage(i, options); + } + } + } else { + return me.callParent(arguments); + } + }, + + + onProxyLoad: function(operation) { + var me = this, + resultSet = operation.getResultSet(), + records = operation.getRecords(), + successful = operation.wasSuccessful(); + + if (me.isDestroyed) { + return; + } + + if (resultSet) { + me.totalCount = resultSet.total; + } + + + + + me.loading = false; + if (successful) { + me.loadRecords(records, operation); + } + + if (me.hasListeners.load) { + me.fireEvent('load', me, records, successful); + } + + + + if (me.hasListeners.read) { + me.fireEvent('read', me, records, successful); + } + + + Ext.callback(operation.callback, operation.scope || me, [records, operation, successful]); + }, + + + getNewRecords: function() { + return this.data.filterBy(this.filterNew).items; + }, + + + getUpdatedRecords: function() { + return this.data.filterBy(this.filterUpdated).items; + }, + + + filter: function(filters, value) { + if (Ext.isString(filters)) { + filters = { + property: filters, + value: value + }; + } + + var me = this, + decoded = me.decodeFilters(filters), + i, + doLocalSort = me.sorters.length && me.sortOnFilter && !me.remoteSort, + length = decoded.length; + + + for (i = 0; i < length; i++) { + me.filters.replace(decoded[i]); + } + + filters = me.filters.items; + + + + + if (filters.length) { + if (me.remoteFilter) { + + delete me.totalCount; + + + + + if (me.buffered) { + me.data.clear(); + me.loadPage(1); + } else { + + me.currentPage = 1; + + me.load(); + } + } else { + + me.snapshot = me.snapshot || me.data.clone(); + + + me.data = me.snapshot.filter(filters); + + + me.constructGroups(); + + if (doLocalSort) { + me.sort(); + } else { + + me.fireEvent('datachanged', me); + me.fireEvent('refresh', me); + } + } + me.fireEvent('filterchange', me, filters); + } + }, + + + clearFilter: function(suppressEvent) { + var me = this; + + me.filters.clear(); + + if (me.remoteFilter) { + + + if (suppressEvent) { + return; + } + + + delete me.totalCount; + + + + + if (me.buffered) { + me.data.clear(); + me.loadPage(1); + } else { + + me.currentPage = 1; + me.load(); + } + } else if (me.isFiltered()) { + me.data = me.snapshot; + delete me.snapshot; + + + me.constructGroups(); + + if (suppressEvent !== true) { + me.fireEvent('datachanged', me); + me.fireEvent('refresh', me); + } + } + me.fireEvent('filterchange', me, me.filters.items); + }, + + + removeFilter: function(toRemove, applyFilters) { + var me = this; + + if (!me.remoteFilter && me.isFiltered()) { + if (toRemove instanceof Ext.util.Filter) { + me.filters.remove(toRemove); + } else { + me.filters.removeAtKey(toRemove); + } + + if (applyFilters !== false) { + + + if (me.filters.length) { + me.filter(); + } + + + else { + me.clearFilter(); + } + } else { + me.fireEvent('filterchange', me, me.filters.items); + } + } + }, + + + addFilter: function(filters, applyFilters) { + var me = this, + decoded, + i, + length; + + + decoded = me.decodeFilters(filters); + length = decoded.length; + for (i = 0; i < length; i++) { + me.filters.replace(decoded[i]); + } + + if (applyFilters !== false && me.filters.length) { + me.filter(); + } else { + me.fireEvent('filterchange', me, me.filters.items); + } + }, + + + isFiltered: function() { + var snapshot = this.snapshot; + return !!(snapshot && snapshot !== this.data); + }, + + + filterBy: function(fn, scope) { + var me = this; + + me.snapshot = me.snapshot || me.data.clone(); + me.data = me.queryBy(fn, scope || me); + me.fireEvent('datachanged', me); + me.fireEvent('refresh', me); + }, + + + queryBy: function(fn, scope) { + var me = this; + return (me.snapshot || me.data).filterBy(fn, scope || me); + }, + + + query: function(property, value, anyMatch, caseSensitive, exactMatch) { + var me = this, + queryFn = me.createFilterFn(property, value, anyMatch, caseSensitive, exactMatch), + results = me.queryBy(queryFn); + + + if(!results) { + results = new Ext.util.MixedCollection(); + } + + return results; + }, + + + loadData: function(data, append) { + var length = data.length, + newData = [], + i; + + + for (i = 0; i < length; i++) { + newData.push(this.createModel(data[i])); + } + + this.loadRecords(newData, append ? this.addRecordsOptions : undefined); + }, + + + loadRawData : function(data, append) { + var me = this, + result = me.proxy.reader.read(data), + records = result.records; + + if (result.success) { + me.totalCount = result.total; + me.loadRecords(records, append ? me.addRecordsOptions : undefined); + } + }, + + + loadRecords: function(records, options) { + var me = this, + i = 0, + length = records.length, + start, + addRecords, + snapshot = me.snapshot; + + if (options) { + start = options.start; + addRecords = options.addRecords; + } + + if (!addRecords) { + delete me.snapshot; + me.clearData(true); + } else if (snapshot) { + snapshot.addAll(records); + } + + me.data.addAll(records); + + if (start !== undefined) { + for (; i < length; i++) { + records[i].index = start + i; + records[i].join(me); + } + } else { + for (; i < length; i++) { + records[i].join(me); + } + } + + + me.suspendEvents(); + + if (me.filterOnLoad && !me.remoteFilter) { + me.filter(); + } + + if (me.sortOnLoad && !me.remoteSort) { + me.sort(undefined, undefined, undefined, true); + } + + me.resumeEvents(); + if (me.isGrouped()) { + me.constructGroups(); + } + me.fireEvent('datachanged', me); + me.fireEvent('refresh', me); + }, + + + + loadPage: function(page, options) { + var me = this; + + me.currentPage = page; + + + options = Ext.apply({ + page: page, + start: (page - 1) * me.pageSize, + limit: me.pageSize, + addRecords: !me.clearOnPageLoad + }, options); + + if (me.buffered) { + options.limit = me.viewSize || me.defaultViewSize; + return me.loadToPrefetch(options); + } + me.read(options); + }, + + + nextPage: function(options) { + this.loadPage(this.currentPage + 1, options); + }, + + + previousPage: function(options) { + this.loadPage(this.currentPage - 1, options); + }, + + + clearData: function(isLoad) { + var me = this, + records, + i; + + + + + + + if (!me.buffered && me.data) { + records = me.data.items; + i = records.length; + while (i--) { + records[i].unjoin(me); + } + } + + + if (me.data) { + me.data.clear(); + } + + if (isLoad !== true || me.clearRemovedOnLoad) { + me.removed.length = 0; + } + }, + + loadToPrefetch: function(options) { + var me = this, + i, + records, + dataSetSize, + prefetchOptions = options, + + + startIdx = options.start, + endIdx = options.start + options.limit - 1, + + + loadEndIdx = Math.min(endIdx, options.start + (me.viewSize || options.limit) - 1), + + + + startPage = me.getPageFromRecordIndex(Math.max(startIdx - me.trailingBufferZone, 0)), + endPage = me.getPageFromRecordIndex(endIdx + me.leadingBufferZone), + + + waitForRequestedRange = function() { + if (me.rangeCached(startIdx, loadEndIdx)) { + me.loading = false; + records = me.data.getRange(startIdx, loadEndIdx); + me.data.un('pageAdded', waitForRequestedRange); + + + if (me.hasListeners.guaranteedrange) { + me.guaranteeRange(startIdx, loadEndIdx, options.callback, options.scope); + } + if (options.callback) { + options.callback.call(options.scope||me, records, startIdx, endIdx, options); + } + me.fireEvent('datachanged', me); + me.fireEvent('refresh', me); + me.fireEvent('load', me, records, true); + if (options.groupChange) { + me.fireGroupChange(); + } + } + }; + + if (me.fireEvent('beforeload', me, options) !== false) { + + + delete me.totalCount; + + me.loading = true; + + + + if (options.callback) { + prefetchOptions = Ext.apply({}, options); + delete prefetchOptions.callback; + } + + + + + + me.on('prefetch', function(store, records, successful, operation) { + + if (successful) { + + + if ((dataSetSize = me.getTotalCount())) { + + + me.data.on('pageAdded', waitForRequestedRange); + + + loadEndIdx = Math.min(loadEndIdx, dataSetSize - 1); + + + endPage = me.getPageFromRecordIndex(Math.min(loadEndIdx + me.leadingBufferZone, dataSetSize - 1)); + + for (i = startPage + 1; i <= endPage; ++i) { + me.prefetchPage(i, prefetchOptions); + } + } else { + me.fireEvent('datachanged', me); + me.fireEvent('refresh', me); + me.fireEvent('load', me, records, true); + } + } + + else { + me.fireEvent('load', me, records, false); + } + }, null, {single: true}); + + me.prefetchPage(startPage, prefetchOptions); + } + }, + + + + prefetch: function(options) { + var me = this, + pageSize = me.pageSize, + proxy, + operation; + + + if (pageSize) { + if (me.lastPageSize && pageSize != me.lastPageSize) { + Ext.Error.raise("pageSize cannot be dynamically altered"); + } + if (!me.data.pageSize) { + me.data.pageSize = pageSize; + } + } + + + else { + me.pageSize = me.data.pageSize = pageSize = options.limit; + } + + + me.lastPageSize = pageSize; + + + if (!options.page) { + options.page = me.getPageFromRecordIndex(options.start); + options.start = (options.page - 1) * pageSize; + options.limit = Math.ceil(options.limit / pageSize) * pageSize; + } + + + if (!me.pageRequests[options.page]) { + + + options = Ext.apply({ + action : 'read', + filters: me.filters.items, + sorters: me.sorters.items, + groupers: me.groupers.items, + + + + pageMapGeneration: me.data.pageMapGeneration + }, options); + + operation = new Ext.data.Operation(options); + + if (me.fireEvent('beforeprefetch', me, operation) !== false) { + proxy = me.proxy; + me.pageRequests[options.page] = proxy.read(operation, me.onProxyPrefetch, me); + if (proxy.isSynchronous) { + delete me.pageRequests[options.page]; + } + } + } + + return me; + }, + + + onPageMapClear: function() { + var me = this, + loadingFlag = me.wasLoading, + reqs = me.pageRequests, + req, + page; + + + if (me.data.events.pageadded) { + me.data.events.pageadded.clearListeners(); + } + + + + + me.loading = true; + me.totalCount = 0; + + + for (page in reqs) { + if (reqs.hasOwnProperty(page)) { + req = reqs[page]; + delete reqs[page]; + delete req.callback; + } + } + + + me.fireEvent('clear', me); + + + + me.loading = loadingFlag; + }, + + + prefetchPage: function(page, options) { + var me = this, + pageSize = me.pageSize || me.defaultPageSize, + start = (page - 1) * me.pageSize, + total = me.totalCount; + + + if (total !== undefined && me.getCount() === total) { + return; + } + + + me.prefetch(Ext.applyIf({ + page : page, + start : start, + limit : pageSize + }, options)); + }, + + + onProxyPrefetch: function(operation) { + var me = this, + resultSet = operation.getResultSet(), + records = operation.getRecords(), + successful = operation.wasSuccessful(), + page = operation.page; + + + + if (operation.pageMapGeneration === me.data.pageMapGeneration) { + + if (resultSet) { + me.totalCount = resultSet.total; + me.fireEvent('totalcountchange', me.totalCount); + } + + + if (page !== undefined) { + delete me.pageRequests[page]; + } + + + me.loading = false; + me.fireEvent('prefetch', me, records, successful, operation); + + + + if (successful) { + me.cachePage(records, operation.page); + } + + + Ext.callback(operation.callback, operation.scope || me, [records, operation, successful]); + } + }, + + + cachePage: function(records, page) { + var me = this, + len = records.length, i; + + if (!Ext.isDefined(me.totalCount)) { + me.totalCount = records.length; + me.fireEvent('totalcountchange', me.totalCount); + } + + + for (i = 0; i < len; i++) { + records[i].join(me); + } + me.data.addPage(page, records); + }, + + + rangeCached: function(start, end) { + return this.data && this.data.hasRange(start, end); + }, + + + pageCached: function(page) { + return this.data && this.data.hasPage(page); + }, + + + pagePending: function(page) { + return !!this.pageRequests[page]; + }, + + + rangeSatisfied: function(start, end) { + return this.rangeCached(start, end); + }, + + + getPageFromRecordIndex: function(index) { + return Math.floor(index / this.pageSize) + 1; + }, + + + onGuaranteedRange: function(options) { + var me = this, + totalCount = me.getTotalCount(), + start = options.prefetchStart, + end = (options.prefetchEnd > totalCount - 1) ? totalCount - 1 : options.prefetchEnd, + range; + + end = Math.max(0, end); + + + range = me.data.getRange(start, end); + if (options.fireEvent !== false) { + me.fireEvent('guaranteedrange', range, start, end, options); + } + if (options.callback) { + options.callback.call(options.scope || me, range, start, end, options); + } + }, + + + guaranteeRange: function(start, end, callback, scope, options) { + options = Ext.apply({ + callback: callback, + scope: scope + }, options); + this.getRange(start, end, options) + }, + + + prefetchRange: function(start, end) { + var me = this, + startPage, endPage, page; + if (!me.rangeCached(start, end)) { + startPage = me.getPageFromRecordIndex(start); + endPage = me.getPageFromRecordIndex(end); + + + + + me.data.maxSize = me.purgePageCount ? (endPage - startPage + 1) + me.purgePageCount : 0; + + + for (page = startPage; page <= endPage; page++) { + if (!me.pageCached(page)) { + me.prefetchPage(page); + } + } + } + }, + + primeCache: function(start, end, direction) { + var me = this; + + + if (direction === -1) { + start = Math.max(start - me.leadingBufferZone, 0); + end = Math.min(end + me.trailingBufferZone, me.totalCount - 1); + } + + else if (direction === 1) { + start = Math.max(Math.min(start - me.trailingBufferZone, me.totalCount - me.pageSize), 0); + end = Math.min(end + me.leadingBufferZone, me.totalCount - 1); + } + + else { + start = Math.min(Math.max(Math.floor(start - ((me.leadingBufferZone + me.trailingBufferZone) / 2)), 0), me.totalCount - me.pageSize); + end = Math.min(Math.max(Math.ceil (end + ((me.leadingBufferZone + me.trailingBufferZone) / 2)), 0), me.totalCount - 1); + } + me.prefetchRange(start, end); + }, + + + + sort: function() { + var me = this; + + if (me.buffered && me.remoteSort) { + me.data.clear(); + } + return me.callParent(arguments); + }, + + + + + doSort: function(sorterFn) { + var me = this, + range, + ln, + i; + + if (me.remoteSort) { + + + + + if (me.buffered) { + me.data.clear(); + me.loadPage(1); + } else { + + me.load(); + } + } else { + me.data.sortBy(sorterFn); + if (!me.buffered) { + range = me.getRange(); + ln = range.length; + for (i = 0; i < ln; i++) { + range[i].index = i; + } + } + me.fireEvent('datachanged', me); + me.fireEvent('refresh', me); + } + }, + + + find: function(property, value, start, anyMatch, caseSensitive, exactMatch) { + var fn = this.createFilterFn(property, value, anyMatch, caseSensitive, exactMatch); + return fn ? this.data.findIndexBy(fn, null, start) : -1; + }, + + + findRecord: function() { + var me = this, + index = me.find.apply(me, arguments); + return index !== -1 ? me.getAt(index) : null; + }, + + + createFilterFn: function(property, value, anyMatch, caseSensitive, exactMatch) { + if (Ext.isEmpty(value)) { + return false; + } + value = this.data.createValueMatcher(value, anyMatch, caseSensitive, exactMatch); + return function(r) { + return value.test(r.data[property]); + }; + }, + + + findExact: function(property, value, start) { + return this.data.findIndexBy(function(rec) { + return rec.isEqual(rec.get(property), value); + }, + this, start); + }, + + + findBy: function(fn, scope, start) { + return this.data.findIndexBy(fn, scope, start); + }, + + + collect: function(dataIndex, allowNull, bypassFilter) { + var me = this, + data = (bypassFilter === true && me.snapshot) ? me.snapshot : me.data; + + return data.collect(dataIndex, 'data', allowNull); + }, + + + getCount: function() { + return this.data.getCount(); + }, + + + getTotalCount: function() { + return this.totalCount || 0; + }, + + + getAt: function(index) { + return this.data.getAt(index); + }, + + + getRange: function(start, end, options) { + + var me = this, + requiredStart, + requiredEnd, + maxIndex = me.totalCount - 1, + lastRequestStart = me.lastRequestStart, + pageAddHandler, + result; + + options = Ext.apply({ + prefetchStart: start, + prefetchEnd: end + }, options); + + if (me.buffered) { + + end = (end >= me.totalCount) ? maxIndex : end; + + + + + + requiredStart = start === 0 ? 0 : start - 1; + requiredEnd = end === maxIndex ? end : end + 1; + + + me.lastRequestStart = start; + + + if (me.rangeCached(requiredStart, requiredEnd)) { + me.onGuaranteedRange(options); + result = me.data.getRange(start, end); + } + + else { + + me.fireEvent('cachemiss', me, start, end); + + + pageAddHandler = function(page, records) { + if (me.rangeCached(requiredStart, requiredEnd)) { + + me.fireEvent('cachefilled', me, start, end); + me.data.un('pageAdded', pageAddHandler); + me.onGuaranteedRange(options); + } + }; + me.data.on('pageAdded', pageAddHandler); + + + + + me.prefetchRange(start, end); + + } + + me.primeCache(start, end, start < lastRequestStart ? -1 : 1); + } else { + result = me.data.getRange(start, end); + + + if (options.callback) { + options.callback.call(options.scope || me, result, start, end, options) + } + } + + return result; + }, + + + getById: function(id) { + var result = (this.snapshot || this.data).findBy(function(record) { + return record.getId() === id; + }); + return result; + }, + + + indexOf: function(record) { + return this.data.indexOf(record); + }, + + + indexOfTotal: function(record) { + var index = record.index; + if (index || index === 0) { + return index; + } + return this.indexOf(record); + }, + + + indexOfId: function(id) { + return this.indexOf(this.getById(id)); + }, + + + + + first: function(grouped) { + var me = this; + + if (grouped && me.isGrouped()) { + return me.aggregate(function(records) { + return records.length ? records[0] : undefined; + }, me, true); + } else { + return me.data.first(); + } + }, + + + last: function(grouped) { + var me = this; + + if (grouped && me.isGrouped()) { + return me.aggregate(function(records) { + var len = records.length; + return len ? records[len - 1] : undefined; + }, me, true); + } else { + return me.data.last(); + } + }, + + + sum: function(field, grouped) { + var me = this; + + if (grouped && me.isGrouped()) { + return me.aggregate(me.getSum, me, true, [field]); + } else { + return me.getSum(me.data.items, field); + } + }, + + + getSum: function(records, field) { + var total = 0, + i = 0, + len = records.length; + + for (; i < len; ++i) { + total += records[i].get(field); + } + + return total; + }, + + + count: function(grouped) { + var me = this; + + if (grouped && me.isGrouped()) { + return me.aggregate(function(records) { + return records.length; + }, me, true); + } else { + return me.getCount(); + } + }, + + + min: function(field, grouped) { + var me = this; + + if (grouped && me.isGrouped()) { + return me.aggregate(me.getMin, me, true, [field]); + } else { + return me.getMin(me.data.items, field); + } + }, + + + getMin: function(records, field) { + var i = 1, + len = records.length, + value, min; + + if (len > 0) { + min = records[0].get(field); + } + + for (; i < len; ++i) { + value = records[i].get(field); + if (value < min) { + min = value; + } + } + return min; + }, + + + max: function(field, grouped) { + var me = this; + + if (grouped && me.isGrouped()) { + return me.aggregate(me.getMax, me, true, [field]); + } else { + return me.getMax(me.data.items, field); + } + }, + + + getMax: function(records, field) { + var i = 1, + len = records.length, + value, + max; + + if (len > 0) { + max = records[0].get(field); + } + + for (; i < len; ++i) { + value = records[i].get(field); + if (value > max) { + max = value; + } + } + return max; + }, + + + average: function(field, grouped) { + var me = this; + if (grouped && me.isGrouped()) { + return me.aggregate(me.getAverage, me, true, [field]); + } else { + return me.getAverage(me.data.items, field); + } + }, + + + getAverage: function(records, field) { + var i = 0, + len = records.length, + sum = 0; + + if (records.length > 0) { + for (; i < len; ++i) { + sum += records[i].get(field); + } + return sum / len; + } + return 0; + }, + + + aggregate: function(fn, scope, grouped, args) { + args = args || []; + if (grouped && this.isGrouped()) { + var groups = this.getGroups(), + len = groups.length, + out = {}, + group, i; + + for (i = 0; i < len; ++i) { + group = groups[i]; + out[group.name] = this.getAggregate(fn, scope || this, group.children, args); + } + return out; + } else { + return this.getAggregate(fn, scope, this.data.items, args); + } + }, + + getAggregate: function(fn, scope, records, args){ + args = args || []; + return fn.apply(scope || this, [records].concat(args)); + }, + + onIdChanged: function(rec, oldId, newId, oldInternalId){ + var snapshot = this.snapshot; + if (snapshot) { + snapshot.updateKey(oldInternalId, newId); + } + this.data.updateKey(oldInternalId, newId); + this.callParent(arguments); + }, + + + commitChanges : function(){ + var me = this, + recs = me.getModifiedRecords(), + len = recs.length, + i = 0; + + for (; i < len; i++){ + recs[i].commit(); + } + + + + me.removed.length = 0; + }, + + filterNewOnly: function(item){ + return item.phantom === true; + }, + + + + + getRejectRecords: function() { + + return Ext.Array.push(this.data.filterBy(this.filterNewOnly).items, this.getUpdatedRecords()); + }, + + + rejectChanges : function() { + var me = this, + recs = me.getRejectRecords(), + len = recs.length, + i = 0, + rec; + + for (; i < len; i++) { + rec = recs[i]; + rec.reject(); + if (rec.phantom) { + me.remove(rec); + } + } + + + recs = me.removed; + len = recs.length; + for (i = 0; i < len; i++) { + rec = recs[i]; + me.insert(rec.removedFrom || 0, rec); + rec.reject(); + } + + + + me.removed.length = 0; + } +}, function() { + + + + Ext.regStore('ext-empty-store', {fields: [], proxy: 'memory'}); +}); + + +Ext.define('Ext.data.reader.Array', { + extend: Ext.data.reader.Json , + alternateClassName: 'Ext.data.ArrayReader', + alias : 'reader.array', + + + totalProperty: undefined, + successProperty: undefined, + + + createFieldAccessExpression: function(field, fieldVarName, dataName) { + + + var index = (field.mapping == null) ? field.originalIndex : field.mapping, + result; + + if (typeof index === 'function') { + result = fieldVarName + '.mapping(' + dataName + ', this)'; + } else { + if (isNaN(index)) { + index = '"' + index + '"'; + } + result = dataName + "[" + index + "]"; + } + return result; + } +}); + + +Ext.define('Ext.data.ArrayStore', { + extend: Ext.data.Store , + alias: 'store.array', + + + + + + constructor: function(config) { + config = Ext.apply({ + proxy: { + type: 'memory', + reader: 'array' + } + }, config); + this.callParent([config]); + }, + + loadData: function(data, append) { + if (this.expandData === true) { + var r = [], + i = 0, + ln = data.length; + + for (; i < ln; i++) { + r[r.length] = [data[i]]; + } + + data = r; + } + + this.callParent([data, append]); + } +}, function() { + + Ext.data.SimpleStore = Ext.data.ArrayStore; + +}); + + +Ext.define('Ext.data.Batch', { + mixins: { + observable: Ext.util.Observable + }, + + + autoStart: false, + + + pauseOnException: false, + + + current: -1, + + + total: 0, + + + isRunning: false, + + + isComplete: false, + + + hasException: false, + + + constructor: function(config) { + var me = this; + + + + + + + + me.mixins.observable.constructor.call(me, config); + + + me.operations = []; + + + me.exceptions = []; + }, + + + add: function(operation) { + this.total++; + + operation.setBatch(this); + + this.operations.push(operation); + + return this; + }, + + + start: function( index) { + var me = this; + + if (me.isRunning) { + return me; + } + + me.exceptions.length = 0; + me.hasException = false; + me.isRunning = true; + + return me.runOperation(Ext.isDefined(index) ? index : me.current + 1); + }, + + + retry: function() { + return this.start(this.current); + }, + + + runNextOperation: function() { + return this.runOperation(this.current + 1); + }, + + + pause: function() { + this.isRunning = false; + return this; + }, + + + runOperation: function(index) { + var me = this, + operations = me.operations, + operation = operations[index], + onProxyReturn; + + if (operation === undefined) { + me.isRunning = false; + me.isComplete = true; + me.fireEvent('complete', me, operations[operations.length - 1]); + } else { + me.current = index; + + onProxyReturn = function(operation) { + var hasException = operation.hasException(); + + if (hasException) { + me.hasException = true; + me.exceptions.push(operation); + me.fireEvent('exception', me, operation); + } + + if (hasException && me.pauseOnException) { + me.pause(); + } else { + operation.setCompleted(); + me.fireEvent('operationcomplete', me, operation); + me.runNextOperation(); + } + }; + + operation.setStarted(); + + me.proxy[operation.action](operation, onProxyReturn, me); + } + + return me; + } +}); + + +Ext.define('Ext.data.BufferStore', { + extend: Ext.data.Store , + alias: 'store.buffer', + sortOnLoad: false, + filterOnLoad: false, + + constructor: function() { + Ext.Error.raise('The BufferStore class has been deprecated. Instead, specify the buffered config option on Ext.data.Store'); + } +}); + + + +Ext.define('Ext.direct.Manager', { + singleton: true, + + + + + + + mixins: { + observable: Ext.util.Observable + }, + + + exceptions: { + TRANSPORT: 'xhr', + PARSE: 'parse', + DATA: 'data', + LOGIN: 'login', + SERVER: 'exception' + }, + + constructor: function() { + var me = this; + + me.addEvents( + + 'event', + + + 'exception' + ); + + me.transactions = new Ext.util.MixedCollection(); + me.providers = new Ext.util.MixedCollection(); + + me.mixins.observable.constructor.call(me); + }, + + + addProvider: function(provider) { + var me = this, + args = arguments, + relayers = me.relayers || (me.relayers = {}), + i, len; + + if (args.length > 1) { + for (i = 0, len = args.length; i < len; ++i) { + me.addProvider(args[i]); + } + + return; + } + + + if (!provider.isProvider) { + provider = Ext.create('direct.' + provider.type + 'provider', provider); + } + + me.providers.add(provider); + provider.on('data', me.onProviderData, me); + + if (provider.relayedEvents) { + relayers[provider.id] = me.relayEvents(provider, provider.relayedEvents); + } + + if (!provider.isConnected()) { + provider.connect(); + } + + return provider; + }, + + + getProvider: function(id) { + return id.isProvider ? id : this.providers.get(id); + }, + + + removeProvider: function(provider) { + var me = this, + providers = me.providers, + relayers = me.relayers, + id; + + provider = provider.isProvider ? provider : providers.get(provider); + + if (provider) { + provider.un('data', me.onProviderData, me); + + id = provider.id; + + if (relayers[id]) { + relayers[id].destroy(); + delete relayers[id]; + } + + providers.remove(provider); + + return provider; + } + + return null; + }, + + + addTransaction: function(transaction) { + this.transactions.add(transaction); + + return transaction; + }, + + + removeTransaction: function(transaction) { + var me = this; + + transaction = me.getTransaction(transaction); + me.transactions.remove(transaction); + + return transaction; + }, + + + getTransaction: function(transaction) { + return typeof transaction === 'object' ? transaction : this.transactions.get(transaction); + }, + + onProviderData: function(provider, event) { + var me = this, + i, len; + + if (Ext.isArray(event)) { + for (i = 0, len = event.length; i < len; ++i) { + me.onProviderData(provider, event[i]); + } + + return; + } + + if (event.name && event.name != 'event' && event.name != 'exception') { + me.fireEvent(event.name, event); + } + else if (event.status === false) { + me.fireEvent('exception', event); + } + + me.fireEvent('event', event, provider); + }, + + + parseMethod: function(fn) { + if (Ext.isString(fn)) { + var parts = fn.split('.'), + i = 0, + len = parts.length, + current = Ext.global; + + while (current && i < len) { + current = current[parts[i]]; + ++i; + } + + fn = Ext.isFunction(current) ? current : null; + } + + return fn || null; + } + +}, function() { + + Ext.Direct = Ext.direct.Manager; +}); + + +Ext.define('Ext.data.proxy.Direct', { + + + extend: Ext.data.proxy.Server , + alternateClassName: 'Ext.data.DirectProxy', + + alias: 'proxy.direct', + + + + + + + paramOrder: undefined, + + + paramsAsHash: true, + + + directFn : undefined, + + + + + + + paramOrderRe: /[\s,|]/, + + constructor: function(config){ + var me = this, + paramOrder; + + me.callParent(arguments); + + paramOrder = me.paramOrder; + if (Ext.isString(paramOrder)) { + me.paramOrder = paramOrder.split(me.paramOrderRe); + } + }, + + resolveMethods: function() { + var me = this, + fn = me.directFn, + api = me.api, + Manager = Ext.direct.Manager, + method; + + if (fn) { + method = me.directFn = Manager.parseMethod(fn); + + if (!Ext.isFunction(method)) { + Ext.Error.raise('Cannot resolve directFn ' + fn); + } + } + else if (api) { + for (fn in api) { + if (api.hasOwnProperty(fn)) { + method = api[fn]; + api[fn] = Manager.parseMethod(method); + + if (!Ext.isFunction(api[fn])) { + Ext.Error.raise('Cannot resolve Direct api ' + fn + ' method ' + method); + } + } + } + } + + me.methodsResolved = true; + }, + + doRequest: function(operation, callback, scope) { + var me = this, + writer = me.getWriter(), + request = me.buildRequest(operation), + params = request.params, + args = [], + fn, method; + + if (!me.methodsResolved) { + me.resolveMethods(); + } + + fn = me.api[request.action] || me.directFn; + + + if (operation.allowWrite()) { + request = writer.write(request); + } + + if (operation.action == 'read') { + + method = fn.directCfg.method; + args = method.getArgs(params, me.paramOrder, me.paramsAsHash); + } else { + args.push(request.jsonData); + } + + Ext.apply(request, { + args: args, + directFn: fn + }); + args.push(me.createRequestCallback(request, operation, callback, scope), me); + fn.apply(window, args); + }, + + + applyEncoding: Ext.identityFn, + + createRequestCallback: function(request, operation, callback, scope){ + var me = this; + + return function(data, event){ + me.processResponse(event.status, operation, request, event, callback, scope); + }; + }, + + + extractResponseData: function(response){ + return Ext.isDefined(response.result) ? response.result : response.data; + }, + + + setException: function(operation, response) { + operation.setException(response.message); + }, + + + buildUrl: function(){ + return ''; + } +}); + + +Ext.define('Ext.data.DirectStore', { + + + extend: Ext.data.Store , + + alias: 'store.direct', + + + + + + constructor : function(config){ + config = Ext.apply({}, config); + if (!config.proxy) { + var proxy = { + type: 'direct', + reader: { + type: 'json' + } + }; + Ext.copyTo(proxy, config, 'paramOrder,paramsAsHash,directFn,api,simpleSortMode'); + Ext.copyTo(proxy.reader, config, 'totalProperty,root,idProperty'); + config.proxy = proxy; + } + this.callParent([config]); + } +}); + + +Ext.define('Ext.data.JsonP', { + + + + singleton: true, + + + + + requestCount: 0, + + + requests: {}, + + + timeout: 30000, + + + disableCaching: true, + + + disableCachingParam: '_dc', + + + callbackKey: 'callback', + + + request: function(options) { + options = Ext.apply({}, options); + + + var me = this, + disableCaching = Ext.isDefined(options.disableCaching) ? options.disableCaching : me.disableCaching, + cacheParam = options.disableCachingParam || me.disableCachingParam, + id = ++me.requestCount, + callbackName = options.callbackName || 'callback' + id, + callbackKey = options.callbackKey || me.callbackKey, + timeout = Ext.isDefined(options.timeout) ? options.timeout : me.timeout, + params = Ext.apply({}, options.params), + url = options.url, + name = Ext.name, + request, + script; + + + + if (disableCaching && !params[cacheParam]) { + params[cacheParam] = Ext.Date.now(); + } + options.params = params; + + params[callbackKey] = name + '.data.JsonP.' + callbackName; + script = me.createScript(url, params, options); + + me.requests[id] = request = { + url: url, + params: params, + script: script, + id: id, + scope: options.scope, + success: options.success, + failure: options.failure, + callback: options.callback, + callbackKey: callbackKey, + callbackName: callbackName + }; + + if (timeout > 0) { + request.timeout = setTimeout(Ext.bind(me.handleTimeout, me, [request]), timeout); + } + + me.setupErrorHandling(request); + me[callbackName] = Ext.bind(me.handleResponse, me, [request], true); + me.loadScript(request); + return request; + }, + + + abort: function(request){ + var me = this, + requests = me.requests, + key; + + if (request) { + if (!request.id) { + request = requests[request]; + } + me.handleAbort(request); + } else { + for (key in requests) { + if (requests.hasOwnProperty(key)) { + me.abort(requests[key]); + } + } + } + }, + + + setupErrorHandling: function(request){ + request.script.onerror = Ext.bind(this.handleError, this, [request]); + }, + + + handleAbort: function(request){ + request.errorType = 'abort'; + this.handleResponse(null, request); + }, + + + handleError: function(request){ + request.errorType = 'error'; + this.handleResponse(null, request); + }, + + + cleanupErrorHandling: function(request){ + request.script.onerror = null; + }, + + + handleTimeout: function(request){ + request.errorType = 'timeout'; + this.handleResponse(null, request); + }, + + + handleResponse: function(result, request){ + + var success = true; + + if (request.timeout) { + clearTimeout(request.timeout); + } + delete this[request.callbackName]; + delete this.requests[request.id]; + this.cleanupErrorHandling(request); + Ext.fly(request.script).remove(); + + if (request.errorType) { + success = false; + Ext.callback(request.failure, request.scope, [request.errorType]); + } else { + Ext.callback(request.success, request.scope, [result]); + } + Ext.callback(request.callback, request.scope, [success, result, request.errorType]); + Ext.EventManager.idleEvent.fire(); + }, + + + createScript: function(url, params, options) { + var script = document.createElement('script'); + script.setAttribute("src", Ext.urlAppend(url, Ext.Object.toQueryString(params))); + script.setAttribute("async", true); + script.setAttribute("type", "text/javascript"); + return script; + }, + + + loadScript: function (request) { + Ext.getHead().appendChild(request.script); + } +}); + + +Ext.define('Ext.data.proxy.JsonP', { + extend: Ext.data.proxy.Server , + alternateClassName: 'Ext.data.ScriptTagProxy', + alias: ['proxy.jsonp', 'proxy.scripttag'], + + + defaultWriterType: 'base', + + + callbackKey : 'callback', + + + recordParam: 'records', + + + autoAppendParams: true, + + constructor: function() { + this.addEvents( + + 'exception' + ); + this.callParent(arguments); + }, + + + doRequest: function(operation, callback, scope) { + + var me = this, + request = me.buildRequest(operation), + params = request.params; + + + Ext.apply(request, { + callbackKey: me.callbackKey, + timeout: me.timeout, + scope: me, + disableCaching: false, + callback: me.createRequestCallback(request, operation, callback, scope) + }); + + + + if (me.autoAppendParams) { + request.params = {}; + } + + request.jsonp = Ext.data.JsonP.request(request); + + request.params = params; + operation.setStarted(); + me.lastRequest = request; + + return request; + }, + + + createRequestCallback: function(request, operation, callback, scope) { + var me = this; + + return function(success, response, errorType) { + delete me.lastRequest; + me.processResponse(success, operation, request, response, callback, scope); + }; + }, + + + setException: function(operation, response) { + operation.setException(operation.request.jsonp.errorType); + }, + + + + buildUrl: function(request) { + var me = this, + url = me.callParent(arguments), + records = request.records, + writer = me.getWriter(), + params, + filters, + filter, i; + + + + if (writer && request.operation.allowWrite()) { + request = writer.write(request); + } + + + params = request.params; + filters = params.filters, + delete params.filters; + if (filters && filters.length) { + for (i = 0; i < filters.length; i++) { + filter = filters[i]; + + if (filter.value) { + params[filter.property] = filter.value; + } + } + } + + + if ((!writer || !writer.encode) && Ext.isArray(records) && records.length > 0) { + params[me.recordParam] = me.encodeRecords(records); + } + + + + if (me.autoAppendParams) { + url = Ext.urlAppend(url, Ext.Object.toQueryString(params)); + } + + return url; + }, + + + abort: function() { + var lastRequest = this.lastRequest; + if (lastRequest) { + Ext.data.JsonP.abort(lastRequest.jsonp); + } + }, + + + encodeRecords: function(records) { + var encoded = [], + i = 0, + len = records.length; + + for (; i < len; i++) { + encoded.push(Ext.encode(records[i].getData())); + } + + return encoded; + } +}); + + +Ext.define('Ext.data.JsonPStore', { + extend: Ext.data.Store , + alias : 'store.jsonp', + + + + + + constructor: function(config) { + config = Ext.apply({ + proxy: { + type: 'jsonp', + reader: 'json' + } + }, config); + this.callParent([config]); + } +}); + + +Ext.define('Ext.data.JsonStore', { + extend: Ext.data.Store , + alias: 'store.json', + + + + + + + constructor: function(config) { + config = Ext.apply({ + proxy: { + type : 'ajax', + reader: 'json', + writer: 'json' + } + }, config); + this.callParent([config]); + } +}); + + +Ext.define('Ext.data.NodeInterface', { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + statics: { + + decorate: function(modelClass) { + var idName, idField, idType; + + + if (typeof modelClass == 'string') { + modelClass = Ext.ModelManager.getModel(modelClass); + } else if (modelClass.isModel) { + modelClass = Ext.ModelManager.getModel(modelClass.modelName); + } + + + if (modelClass.prototype.isNode) { + return; + } + + idName = modelClass.prototype.idProperty; + idField = modelClass.prototype.fields.get(idName); + idType = modelClass.prototype.fields.get(idName).type.type; + + modelClass.override(this.getPrototypeBody()); + this.applyFields(modelClass, [ + { name : 'parentId', type : idType, defaultValue : null, useNull : idField.useNull }, + { name : 'index', type : 'int', defaultValue : 0, persist : false , convert: null }, + { name : 'depth', type : 'int', defaultValue : 0, persist : false , convert: null }, + { name : 'expanded', type : 'bool', defaultValue : false, persist : false , convert: null }, + { name : 'expandable', type : 'bool', defaultValue : true, persist : false , convert: null }, + { name : 'checked', type : 'auto', defaultValue : null, persist : false , convert: null }, + { name : 'leaf', type : 'bool', defaultValue : false }, + { name : 'cls', type : 'string', defaultValue : '', persist : false , convert: null }, + { name : 'iconCls', type : 'string', defaultValue : '', persist : false , convert: null }, + { name : 'icon', type : 'string', defaultValue : '', persist : false , convert: null }, + { name : 'root', type : 'boolean', defaultValue : false, persist : false , convert: null }, + { name : 'isLast', type : 'boolean', defaultValue : false, persist : false , convert: null }, + { name : 'isFirst', type : 'boolean', defaultValue : false, persist : false , convert: null }, + { name : 'allowDrop', type : 'boolean', defaultValue : true, persist : false , convert: null }, + { name : 'allowDrag', type : 'boolean', defaultValue : true, persist : false , convert: null }, + { name : 'loaded', type : 'boolean', defaultValue : false, persist : false , convert: null }, + { name : 'loading', type : 'boolean', defaultValue : false, persist : false , convert: null }, + { name : 'href', type : 'string', defaultValue : '', persist : false , convert: null }, + { name : 'hrefTarget', type : 'string', defaultValue : '', persist : false , convert: null }, + { name : 'qtip', type : 'string', defaultValue : '', persist : false , convert: null }, + { name : 'qtitle', type : 'string', defaultValue : '', persist : false , convert: null }, + { name : 'qshowDelay', type : 'int', defaultValue : 0, persist : false , convert: null }, + { name : 'children', type : 'auto', defaultValue : null, persist : false , convert: null } + ]); + }, + + applyFields: function(modelClass, addFields) { + var modelPrototype = modelClass.prototype, + fields = modelPrototype.fields, + keys = fields.keys, + ln = addFields.length, + addField, i; + + for (i = 0; i < ln; i++) { + addField = addFields[i]; + if (!Ext.Array.contains(keys, addField.name)) { + fields.add(new Ext.data.Field(addField)); + } + } + + }, + + getPrototypeBody: function() { + var bubbledEvents = { + idchanged : true, + append : true, + remove : true, + move : true, + insert : true, + beforeappend : true, + beforeremove : true, + beforemove : true, + beforeinsert : true, + expand : true, + collapse : true, + beforeexpand : true, + beforecollapse: true, + sort : true, + rootchange : true + }; + return { + + isNode: true, + + constructor: function() { + var me = this; + me.callParent(arguments); + me.firstChild = me.lastChild = me.parentNode = me.previousSibling = me.nextSibling = null; + me.childNodes = []; + + + + + + + + + + + + + + + + + return me; + }, + + createNode: function(node) { + if (!node.isModel) { + node = Ext.ModelManager.create(node, this.modelName); + } + + + + if (!node.childNodes) { + node.firstChild = node.lastChild = node.parentNode = node.previousSibling = node.nextSibling = null; + node.childNodes = []; + } + return node; + }, + + + isLeaf : function() { + return this.get('leaf') === true; + }, + + + setFirstChild : function(node) { + this.firstChild = node; + }, + + + setLastChild : function(node) { + this.lastChild = node; + }, + + + updateInfo: function(commit, info) { + var me = this, + oldDepth = me.data.depth, + childInfo = {}, + children = me.childNodes, + childCount = children.length, + i, + phantom = me.phantom, + dataObject = me[me.persistenceProperty], + propName, newValue, + field; + + if (!info) { + Ext.Error.raise('NodeInterface expects update info to be passed'); + } + + + + + for (propName in info) { + field = me.fields.get(propName); + newValue = info[propName]; + + + if (field && field.persist) { + me.dirty = me.dirty || !me.isEqual(dataObject[propName], newValue); + } + dataObject[propName] = newValue; + } + if (commit) { + me.commit(); + me.phantom = phantom; + } + + + if (me.data.depth !== oldDepth) { + childInfo = { + depth: me.data.depth + 1 + }; + for (i = 0; i < childCount; i++) { + children[i].updateInfo(commit, childInfo); + } + } + }, + + + isLast : function() { + return this.get('isLast'); + }, + + + isFirst : function() { + return this.get('isFirst'); + }, + + + hasChildNodes : function() { + return !this.isLeaf() && this.childNodes.length > 0; + }, + + + isExpandable : function() { + var me = this; + + if (me.get('expandable')) { + return !(me.isLeaf() || (me.isLoaded() && !me.hasChildNodes())); + } + return false; + }, + + triggerUIUpdate: function() { + + + this.afterEdit([]); + }, + + + appendChild : function(node, suppressEvents, commit) { + var me = this, + i, ln, + index, + oldParent, + previousSibling, + childInfo = { + isLast: true, + parentId: me.getId(), + depth: (me.data.depth||0) + 1 + }; + + + if (Ext.isArray(node)) { + + me.callStore('suspendAutoSync'); + for (i = 0, ln = node.length - 1; i < ln; i++) { + me.appendChild(node[i], suppressEvents, commit); + } + + me.callStore('resumeAutoSync'); + me.appendChild(node[ln], suppressEvents, commit); + } else { + + node = me.createNode(node); + + if (suppressEvents !== true && me.fireEventArgs("beforeappend", [me, node]) === false) { + return false; + } + + index = me.childNodes.length; + oldParent = node.parentNode; + + + if (oldParent) { + if (suppressEvents !== true && node.fireEventArgs("beforemove", [node, oldParent, me, index]) === false) { + return false; + } + oldParent.removeChild(node, false, false, true); + } + + + Ext.suspendLayouts(); + + index = me.childNodes.length; + if (index === 0) { + me.setFirstChild(node); + } + + me.childNodes[index] = node; + node.parentNode = me; + node.nextSibling = null; + + me.setLastChild(node); + + previousSibling = me.childNodes[index - 1]; + if (previousSibling) { + node.previousSibling = previousSibling; + previousSibling.nextSibling = node; + previousSibling.updateInfo(commit, { + isLast: false + }); + previousSibling.triggerUIUpdate(); + } else { + node.previousSibling = null; + } + + + childInfo.isFirst = index === 0; + childInfo.index = index; + node.updateInfo(commit, childInfo); + + + if (!me.isLoaded()) { + me.set('loaded', true); + } else if (me.childNodes.length === 1) { + me.triggerUIUpdate(); + } + + + if (index && me.childNodes[index - 1].isExpanded()) { + me.childNodes[index - 1].cascadeBy(me.triggerUIUpdate); + } + + if(!node.isLeaf() && node.phantom) { + node.set('loaded', true); + } + + + Ext.resumeLayouts(true); + + if (suppressEvents !== true) { + me.fireEventArgs("append", [me, node, index]); + + if (oldParent) { + node.fireEventArgs("move", [node, oldParent, me, index]); + } + } + + return node; + } + }, + + + getOwnerTree: function() { + var node = this, + store; + + while (node.parentNode) { + node = node.parentNode; + } + store = node.store; + if (store) { + if (store.treeStore) { + store = store.treeStore; + } + + if (store.tree) { + return store.ownerTree; + } + } + return undefined; + }, + + + removeChild : function(node, destroy, suppressEvents, isMove) { + var me = this, + index = me.indexOf(node), + i, childCount, + previousSibling; + + if (index === -1 || (suppressEvents !== true && me.fireEventArgs("beforeremove", [me, node, !!isMove]) === false)) { + return false; + } + + + Ext.suspendLayouts(); + + + Ext.Array.erase(me.childNodes, index, 1); + + + if (me.firstChild === node) { + me.setFirstChild(node.nextSibling); + } + if (me.lastChild === node) { + me.setLastChild(node.previousSibling); + } + + + + if (previousSibling = node.previousSibling) { + node.previousSibling.nextSibling = node.nextSibling; + } + + + if (node.nextSibling) { + node.nextSibling.previousSibling = node.previousSibling; + + + if (index === 0) { + node.nextSibling.updateInfo(false, { + isFirst: true + }); + } + + + for (i = index, childCount = me.childNodes.length; i < childCount; i++) { + me.childNodes[i].updateInfo(false, { + index: i + }); + } + } + + + + else if (previousSibling) { + previousSibling.updateInfo(false, { + isLast: true + }); + + + + if (previousSibling.isExpanded()) { + previousSibling.cascadeBy(me.triggerUIUpdate); + } + + else { + previousSibling.triggerUIUpdate(); + } + } + + + if (!me.childNodes.length) { + me.triggerUIUpdate(); + } + + + Ext.resumeLayouts(true); + + if (suppressEvents !== true) { + + node.removeContext = { + parentNode: node.parentNode, + previousSibling: node.previousSibling, + nextSibling: node.nextSibling + }; + + node.previousSibling = node.nextSibling = node.parentNode = null; + me.fireEventArgs('remove', [me, node, !!isMove]); + + + node.removeContext = null; + } + + + + if (destroy) { + node.destroy(true); + } else { + node.clear(); + } + + return node; + }, + + + copy: function(newId, deep) { + var me = this, + result = me.callParent(arguments), + len = me.childNodes ? me.childNodes.length : 0, + i; + + + if (deep) { + for (i = 0; i < len; i++) { + result.appendChild(me.childNodes[i].copy(undefined, true)); + } + } + return result; + }, + + + clear : function(destroy) { + var me = this; + + + me.parentNode = me.previousSibling = me.nextSibling = null; + if (destroy) { + me.firstChild = me.lastChild = null; + } + }, + + + destroy : function(silent) { + + var me = this, + options = me.destroyOptions, + nodes = me.childNodes, + nLen = nodes.length, + n; + + if (silent === true) { + me.clear(true); + + for (n = 0; n < nLen; n++) { + nodes[n].destroy(true); + } + + me.childNodes = null; + delete me.destroyOptions; + me.callParent([options]); + } else { + me.destroyOptions = silent; + + me.remove(true); + } + }, + + + insertBefore : function(node, refNode, suppressEvents) { + var me = this, + index = me.indexOf(refNode), + oldParent = node.parentNode, + refIndex = index, + childCount, previousSibling, i; + + if (!refNode) { + return me.appendChild(node); + } + + + if (node === refNode) { + return false; + } + + + node = me.createNode(node); + + if (suppressEvents !== true && me.fireEventArgs("beforeinsert", [me, node, refNode]) === false) { + return false; + } + + + if (oldParent === me && me.indexOf(node) < index) { + refIndex--; + } + + + if (oldParent) { + if (suppressEvents !== true && node.fireEventArgs("beforemove", [node, oldParent, me, index, refNode]) === false) { + return false; + } + oldParent.removeChild(node, false, false, true); + } + + if (refIndex === 0) { + me.setFirstChild(node); + } + + Ext.Array.splice(me.childNodes, refIndex, 0, node); + node.parentNode = me; + + node.nextSibling = refNode; + refNode.previousSibling = node; + + previousSibling = me.childNodes[refIndex - 1]; + if (previousSibling) { + node.previousSibling = previousSibling; + previousSibling.nextSibling = node; + } else { + node.previousSibling = null; + } + + + node.updateInfo(false, { + parentId: me.getId(), + index: refIndex, + isFirst: refIndex === 0, + isLast: false, + depth: (me.data.depth||0) + 1 + }); + + + for (i = refIndex + 1, childCount = me.childNodes.length; i < childCount; i++) { + me.childNodes[i].updateInfo(false, { + index: i + }); + } + + if (!me.isLoaded()) { + me.set('loaded', true); + } + + else if (me.childNodes.length === 1) { + me.triggerUIUpdate(); + } + + if(!node.isLeaf() && node.phantom) { + node.set('loaded', true); + } + + if (suppressEvents !== true) { + me.fireEventArgs("insert", [me, node, refNode]); + + if (oldParent) { + node.fireEventArgs("move", [node, oldParent, me, refIndex, refNode]); + } + } + + return node; + }, + + + insertChild: function(index, node) { + var sibling = this.childNodes[index]; + if (sibling) { + return this.insertBefore(node, sibling); + } + else { + return this.appendChild(node); + } + }, + + + remove : function(destroy, suppressEvents) { + var me = this, + parentNode = me.parentNode; + + if (parentNode) { + parentNode.removeChild(me, destroy, suppressEvents); + } else if (destroy) { + + me.destroy(true); + } + return me; + }, + + + removeAll : function(destroy, suppressEvents, fromParent) { + + + + var me = this, + childNodes = me.childNodes, + i = 0, + len = childNodes.length, + node; + + + if (!len) { + return; + } + + + + me.fireEventArgs('bulkremove', [me, childNodes, false]); + + for (; i < len; ++i) { + node = childNodes[i]; + + + node.removeContext = { + parentNode: node.parentNode, + previousSibling: node.previousSibling, + nextSibling: node.nextSibling + }; + + node.previousSibling = node.nextSibling = node.parentNode = null; + me.fireEventArgs('remove', [me, node, false]); + + + node.removeContext = null; + + + if (destroy) { + node.destroy(true); + } + + else { + node.removeAll(false, suppressEvents, true); + } + } + + me.firstChild = me.lastChild = null; + + + if (fromParent) { + + me.childNodes = null; + } else { + + me.childNodes.length = 0; + me.triggerUIUpdate(); + } + + return me; + }, + + + getChildAt : function(index) { + return this.childNodes[index]; + }, + + + replaceChild : function(newChild, oldChild, suppressEvents) { + var s = oldChild ? oldChild.nextSibling : null; + + this.removeChild(oldChild, false, suppressEvents); + this.insertBefore(newChild, s, suppressEvents); + return oldChild; + }, + + + indexOf : function(child) { + return Ext.Array.indexOf(this.childNodes, child); + }, + + + indexOfId: function(id) { + var childNodes = this.childNodes, + len = childNodes.length, + i = 0; + + for (; i < len; ++i) { + if (childNodes[i].getId() === id) { + return i; + } + } + return -1; + }, + + + getPath: function(field, separator) { + field = field || this.idProperty; + separator = separator || '/'; + + var path = [this.get(field)], + parent = this.parentNode; + + while (parent) { + path.unshift(parent.get(field)); + parent = parent.parentNode; + } + return separator + path.join(separator); + }, + + + getDepth : function() { + return this.get('depth'); + }, + + + bubble : function(fn, scope, args) { + var p = this; + while (p) { + if (fn.apply(scope || p, args || [p]) === false) { + break; + } + p = p.parentNode; + } + }, + + cascade: function() { + if (Ext.isDefined(Ext.global.console)) { + Ext.global.console.warn('Ext.data.Node: cascade has been deprecated. Please use cascadeBy instead.'); + } + return this.cascadeBy.apply(this, arguments); + }, + + + cascadeBy : function(fn, scope, args) { + if (fn.apply(scope || this, args || [this]) !== false) { + var childNodes = this.childNodes, + length = childNodes.length, + i; + + for (i = 0; i < length; i++) { + childNodes[i].cascadeBy(fn, scope, args); + } + } + }, + + + eachChild : function(fn, scope, args) { + var childNodes = this.childNodes, + length = childNodes.length, + i; + + for (i = 0; i < length; i++) { + if (fn.apply(scope || this, args || [childNodes[i]]) === false) { + break; + } + } + }, + + + findChild : function(attribute, value, deep) { + return this.findChildBy(function() { + return this.get(attribute) == value; + }, null, deep); + }, + + + findChildBy : function(fn, scope, deep) { + var cs = this.childNodes, + len = cs.length, + i = 0, n, res; + + for (; i < len; i++) { + n = cs[i]; + if (fn.call(scope || n, n) === true) { + return n; + } + else if (deep) { + res = n.findChildBy(fn, scope, deep); + if (res !== null) { + return res; + } + } + } + + return null; + }, + + + contains : function(node) { + return node.isAncestor(this); + }, + + + isAncestor : function(node) { + var p = this.parentNode; + while (p) { + if (p === node) { + return true; + } + p = p.parentNode; + } + return false; + }, + + + sort : function(sortFn, recursive, suppressEvent) { + var cs = this.childNodes, + ln = cs.length, + i, n, info = { + isFirst: true + }; + + if (ln > 0) { + Ext.Array.sort(cs, sortFn); + this.setFirstChild(cs[0]); + this.setLastChild(cs[ln - 1]); + + for (i = 0; i < ln; i++) { + n = cs[i]; + n.previousSibling = cs[i-1]; + n.nextSibling = cs[i+1]; + + + info.isLast = (i === ln - 1); + info.index = i; + n.updateInfo(false, info); + info.isFirst = false; + + if (recursive && !n.isLeaf()) { + n.sort(sortFn, true, true); + } + } + + if (suppressEvent !== true) { + this.fireEventArgs('sort', [this, cs]); + } + } + }, + + + isExpanded: function() { + return this.get('expanded'); + }, + + + isLoaded: function() { + return this.get('loaded'); + }, + + + isLoading: function() { + return this.get('loading'); + }, + + + isRoot: function() { + return !this.parentNode; + }, + + + isVisible: function() { + var parent = this.parentNode; + while (parent) { + if (!parent.isExpanded()) { + return false; + } + parent = parent.parentNode; + } + return true; + }, + + + expand: function(recursive, callback, scope) { + var me = this, + owner; + + + + + + if (!me.isLeaf()) { + + if (me.isLoading()) { + me.on('expand', function() { + me.expand(recursive, callback, scope); + }, me, {single: true}); + } else { + + if (!me.isExpanded()) { + + + + + + me.fireEventArgs('beforeexpand', [me, me.onChildNodesAvailable, me, [recursive, callback, scope]]); + } else if (recursive) { + + owner = me.getOwnerTree(); + me.expandChildren(true, owner ? owner.singleExpand : false, callback, scope); + } else { + Ext.callback(callback, scope || me, [me.childNodes]); + } + } + } else { + + Ext.callback(callback, scope || me); + } + }, + + + onChildNodesAvailable: function(records, recursive, callback, scope) { + var me = this, + owner; + + + + Ext.suspendLayouts(); + + + me.set('expanded', true); + + + me.fireEventArgs('expand', [me, me.childNodes, false]); + + + if (recursive) { + owner = me.getOwnerTree(); + me.expandChildren(true, owner ? owner.singleExpand : false, callback, scope); + } else { + Ext.callback(callback, scope || me, [me.childNodes]); + } + + Ext.resumeLayouts(true); + }, + + + expandChildren: function(recursive, singleExpand, callback, scope) { + var me = this, + i, + allNodes = me.childNodes, + expandNodes = [], + ln = singleExpand ? Math.min(allNodes.length, 1) : allNodes.length, + node; + + for (i = 0; i < ln; ++i) { + node = allNodes[i]; + if (!node.isLeaf()) { + expandNodes[expandNodes.length] = node; + } + } + ln = expandNodes.length; + + for (i = 0; i < ln; ++i) { + expandNodes[i].expand(recursive); + } + + if (callback) { + Ext.callback(callback, scope || me, [me.childNodes]); + } + }, + + + collapse: function(recursive, callback, scope) { + var me = this, + expanded = me.isExpanded(), + len = me.childNodes.length, + i, collapseChildren; + + + + + + if (!me.isLeaf() && ((!expanded && recursive) || me.fireEventArgs('beforecollapse', [me]) !== false)) { + + + + Ext.suspendLayouts(); + + + if (me.isExpanded()) { + + + + + + + if (recursive) { + collapseChildren = function() { + for (i = 0; i < len; i++) { + me.childNodes[i].setCollapsed(true); + } + }; + if (callback) { + callback = Ext.Function.createSequence(collapseChildren, callback); + } else { + callback = collapseChildren; + } + } + + + me.set('expanded', false); + + + + + me.fireEventArgs('collapse', [me, me.childNodes, false, callback ? Ext.Function.bind(callback, scope, [me.childNodes]) : null, null]); + + + callback = null; + } + + + + + + else if (recursive) { + for (i = 0; i < len; i++) { + me.childNodes[i].setCollapsed(true); + } + } + + Ext.resumeLayouts(true); + } + + + Ext.callback(callback, scope || me, [me.childNodes]); + }, + + + setCollapsed: function(recursive) { + var me = this, + len = me.childNodes.length, + i; + + + if (!me.isLeaf() && me.fireEventArgs('beforecollapse', [me, Ext.emptyFn]) !== false) { + + + me.data.expanded = false; + + + + + me.fireEventArgs('collapse', [me, me.childNodes, false, null, null]); + + if (recursive) { + for (i = 0; i < len; i++) { + me.childNodes[i].setCollapsed(true); + } + } + } + }, + + + collapseChildren: function(recursive, callback, scope) { + var me = this, + i, + allNodes = me.childNodes, + ln = allNodes.length, + collapseNodes = [], + node; + + + for (i = 0; i < ln; ++i) { + node = allNodes[i]; + if (!node.isLeaf() && node.isLoaded() && node.isExpanded()) { + collapseNodes.push(node); + } + } + ln = collapseNodes.length; + + + + for (i = 0; i < ln; ++i) { + node = collapseNodes[i]; + if (i === ln - 1) { + node.collapse(recursive, callback, scope); + } else { + node.collapse(recursive); + } + } + }, + + + + + fireEventArgs: function(eventName, args) { + + + + var fireEventArgs = Ext.data.Model.prototype.fireEventArgs, + result, eventSource, tree, treeStore, rootNode; + + + if (bubbledEvents[eventName]) { + for (eventSource = this; result !== false && eventSource; eventSource = (rootNode = eventSource).parentNode) { + if (eventSource.hasListeners[eventName]) { + result = fireEventArgs.call(eventSource, eventName, args); + } + } + + + tree = rootNode.rootOf; + if (result !== false && tree) { + treeStore = tree.treeStore; + if (treeStore && treeStore.hasListeners[eventName]) { + result = treeStore.fireEventArgs.call(treeStore, eventName, args); + } + if (result !== false && tree.hasListeners[eventName]) { + result = tree.fireEventArgs.call(tree, eventName, args); + } + } + return result; + } + + else { + return fireEventArgs.apply(this, arguments) + } + }, + + + serialize: function() { + var result = Ext.data.writer.Json.prototype.getRecordData(this), + childNodes = this.childNodes, + len = childNodes.length, + children, i; + + if (len > 0) { + children = []; + for (i = 0; i < len; i++) { + children.push(childNodes[i].serialize()); + } + result.children = children; + } + return result; + } + }; + } + } +}); + + +Ext.define('Ext.data.NodeStore', { + extend: Ext.data.Store , + alias: 'store.node', + + + + isNodeStore: true, + + + node: null, + + + recursive: false, + + + rootVisible: false, + + + + + isExpandingOrCollapsing: 0, + + constructor: function(config) { + var me = this, + node; + + config = config || {}; + Ext.apply(me, config); + + + config.proxy = {type: 'proxy'}; + me.callParent([config]); + + node = me.node; + if (node) { + me.node = null; + me.setNode(node); + } + }, + + + + + getTotalCount: function() { + return this.getCount(); + }, + + setNode: function(node) { + var me = this; + if (me.node && me.node != node) { + + me.mun(me.node, { + expand: me.onNodeExpand, + collapse: me.onNodeCollapse, + append: me.onNodeAppend, + insert: me.onNodeInsert, + bulkremove: me.onBulkRemove, + remove: me.onNodeRemove, + sort: me.onNodeSort, + scope: me + }); + me.node = null; + } + + if (node) { + Ext.data.NodeInterface.decorate(node.self); + me.removeAll(); + if (me.rootVisible) { + me.add(node); + } else if (!node.isExpanded() && me.treeStore.autoLoad !== false) { + node.expand(); + } + + me.mon(node, { + expand: me.onNodeExpand, + collapse: me.onNodeCollapse, + append: me.onNodeAppend, + insert: me.onNodeInsert, + bulkremove: me.onBulkRemove, + remove: me.onNodeRemove, + sort: me.onNodeSort, + scope: me + }); + me.node = node; + if (node.isExpanded() && node.isLoaded()) { + me.onNodeExpand(node, node.childNodes, true); + } + } + }, + + onNodeSort: function(node, childNodes) { + var me = this; + + if ((me.indexOf(node) !== -1 || (node === me.node && !me.rootVisible) && node.isExpanded())) { + Ext.suspendLayouts(); + me.onNodeCollapse(node, childNodes, true); + me.onNodeExpand(node, childNodes, true); + Ext.resumeLayouts(true); + } + }, + + + onNodeExpand: function(parent, records, suppressEvent) { + var me = this, + insertIndex = me.indexOf(parent) + 1, + toAdd = []; + + + + + if (!suppressEvent) { + me.fireEvent('beforeexpand', parent, records, insertIndex); + } + + me.handleNodeExpand(parent, records, toAdd); + + + + + me.insert(insertIndex, toAdd); + + + + if (!suppressEvent) { + me.fireEvent('expand', parent, records); + } + }, + + + + handleNodeExpand: function(parent, records, toAdd) { + var me = this, + ln = records ? records.length : 0, + i, record; + + + if (!me.recursive && parent !== me.node) { + return; + } + + if (parent !== this.node && !me.isVisible(parent)) { + return; + } + + if (ln) { + + + for (i = 0; i < ln; i++) { + record = records[i]; + + + + + toAdd.push(record); + + if (record.isExpanded()) { + if (record.isLoaded()) { + + me.handleNodeExpand(record, record.childNodes, toAdd); + } + else { + + record.set('expanded', false); + record.expand(); + } + } + } + } + }, + + + onBulkRemove: function(parent, childNodes, isMove) { + this.onNodeCollapse(parent, childNodes, true); + }, + + + onNodeCollapse: function(parent, records, suppressEvent, callback, scope) { + var me = this, + collapseIndex = me.indexOf(parent) + 1, + node, lastNodeIndexPlus, sibling, found; + + if (!me.recursive && parent !== me.node) { + return; + } + + + + + + if (!suppressEvent) { + me.fireEvent('beforecollapse', parent, records, collapseIndex, callback, scope); + } + + + + + + if (records.length && me.data.contains(records[0])) { + + + + + node = parent; + while (node.parentNode) { + sibling = node.nextSibling; + if (sibling) { + found = true; + lastNodeIndexPlus = me.indexOf(sibling); + break; + } else { + node = node.parentNode; + } + } + if (!found) { + lastNodeIndexPlus = me.getCount(); + } + + + me.removeAt(collapseIndex, lastNodeIndexPlus - collapseIndex); + } + + + + if (!suppressEvent) { + me.fireEvent('collapse', parent, records, collapseIndex); + } + }, + + onNodeAppend: function(parent, node, index) { + var me = this, + refNode, sibling; + + + if (me.isVisible(node)) { + if (index === 0) { + refNode = parent; + } else { + sibling = node.previousSibling; + while (sibling.isExpanded() && sibling.lastChild) { + sibling = sibling.lastChild; + } + refNode = sibling; + } + me.insert(me.indexOf(refNode) + 1, node); + if (!node.isLeaf() && node.isExpanded()) { + if (node.isLoaded()) { + + me.onNodeExpand(node, node.childNodes, true); + } else if (!me.treeStore.fillCount ) { + + + + + node.set('expanded', false); + node.expand(); + } + } + } + }, + + onNodeInsert: function(parent, node, refNode) { + var me = this, + index = this.indexOf(refNode); + + if (index != -1 && me.isVisible(node)) { + me.insert(index, node); + if (!node.isLeaf() && node.isExpanded()) { + if (node.isLoaded()) { + + me.onNodeExpand(node, node.childNodes, true); + } + else { + node.set('expanded', false); + node.expand(); + } + } + } + }, + + onNodeRemove: function(parent, node, isMove) { + var me = this; + if (me.indexOf(node) != -1) { + + + + if (!node.isLeaf() && node.isExpanded()) { + + + + + + node.parentNode = node.removeContext.parentNode; + node.nextSibling = node.removeContext.nextSibling; + me.onNodeCollapse(node, node.childNodes, true); + node.parentNode = node.nextSibling = null; + } + me.remove(node); + } + }, + + isVisible: function(node) { + var parent = node.parentNode; + while (parent) { + + if (parent === this.node && parent.data.expanded) { + return true; + } + + + if (!parent.data.expanded) { + return false; + } + + parent = parent.parentNode; + } + + return false; + } +}); + + +Ext.define('Ext.data.Request', { + + action: undefined, + + + params: undefined, + + + method: 'GET', + + + url: undefined, + + + constructor: function(config) { + Ext.apply(this, config); + } +}); + + +Ext.define('Ext.data.SequentialIdGenerator', { + extend: Ext.data.IdGenerator , + alias: 'idgen.sequential', + + constructor: function() { + var me = this; + + me.callParent(arguments); + + me.parts = [ me.prefix, '']; + }, + + + prefix: '', + + + seed: 1, + + + generate: function () { + var me = this, + parts = me.parts; + + parts[1] = me.seed++; + return parts.join(''); + } +}); + + +Ext.define('Ext.data.Tree', { + alias: 'data.tree', + + mixins: { + observable: Ext.util.Observable + }, + + + root: null, + + + constructor: function(root) { + var me = this; + + me.mixins.observable.constructor.call(me); + + if (root) { + me.setRootNode(root); + } + + + me.on({ + scope: me, + idchanged: me.onNodeIdChanged, + insert: me.onNodeInsert, + append: me.onNodeAppend, + remove: me.onNodeRemove + }); + }, + + + getRootNode : function() { + return this.root; + }, + + + setRootNode : function(node) { + var me = this; + + me.root = node; + + + if (node.rootOf) { + node.rootOf.removeRootNode(); + } + + + else if (node.parentNode) { + node.parentNode.removeChild(node); + } + + + node.rootOf = me; + + if (node.fireEventArgs('beforeappend', [null, node]) !== false) { + node.set('root', true); + + node.updateInfo(true, { + isFirst: true, + isLast: true, + depth: 0, + index: 0, + parentId: null + }); + + + + + + + + + + + + + + + + + + me.nodeHash = {}; + node.fireEvent('append', null, node); + node.fireEvent('rootchange', node); + } + + return node; + }, + + + removeRootNode: function() { + var me = this, + root = me.root; + + root.set('root', false); + root.fireEvent('remove', null, root, false); + root.fireEvent('rootchange', null); + + + + root.rootOf = me.root = null; + return root; + }, + + + flatten: function(){ + return Ext.Object.getValues(this.nodeHash); + }, + + + onNodeInsert: function(parent, node) { + this.registerNode(node, true); + }, + + + onNodeAppend: function(parent, node) { + this.registerNode(node, true); + }, + + + onNodeRemove: function(parent, node) { + this.unregisterNode(node, true); + }, + + + onNodeIdChanged: function(node, oldId, newId, oldInternalId) { + var nodeHash = this.nodeHash; + + nodeHash[node.internalId] = node; + delete nodeHash[oldInternalId]; + }, + + + getNodeById : function(id) { + return this.nodeHash[id]; + }, + + + registerNode : function(node, includeChildren) { + var me = this, + children, length, i; + + me.nodeHash[node.internalId] = node; + if (includeChildren === true) { + children = node.childNodes; + length = children.length; + for (i = 0; i < length; i++) { + me.registerNode(children[i], true); + } + } + }, + + + unregisterNode : function(node, includeChildren) { + var me = this, + children, length, i; + + delete me.nodeHash[node.internalId]; + if (includeChildren === true) { + children = node.childNodes; + length = children.length; + for (i = 0; i < length; i++) { + me.unregisterNode(children[i], true); + } + } + }, + + + sort: function(sorterFn, recursive) { + this.getRootNode().sort(sorterFn, recursive); + }, + + + filter: function(filters, recursive) { + this.getRootNode().filter(filters, recursive); + } +}); + + +Ext.define('Ext.data.TreeModel', { + extend: Ext.data.Model + + + +}, +function () { + Ext.data.NodeInterface.decorate(this); +}); + + +Ext.define('Ext.data.TreeStore', { + extend: Ext.data.AbstractStore , + alias: 'store.tree', + + + + + + + + + + clearOnLoad : true, + + + clearRemovedOnLoad: true, + + + nodeParam: 'node', + + + defaultRootId: 'root', + + + defaultRootText: 'Root', + + + defaultRootProperty: 'children', + + + rootProperty: 'children', + + fillCount: 0, + + + folderSort: false, + + constructor: function(config) { + var me = this, + root, + fields, + defaultRoot; + + config = Ext.apply({}, config); + + + fields = config.fields || me.fields; + if (!fields) { + config.fields = [ + {name: 'text', type: 'string'} + ]; + defaultRoot = config.defaultRootProperty || me.defaultRootProperty; + if (defaultRoot !== me.defaultRootProperty) { + config.fields.push({ + name: defaultRoot, + type: 'auto', + defaultValue: null, + persist: false + }); + } + } + + me.callParent([config]); + + + me.tree = new Ext.data.Tree(); + + + me.tree.treeStore = me; + + + + + + + + + + + + + + + + + me.tree.on({ + scope: me, + remove: me.onNodeRemove, + + + beforeexpand: me.onBeforeNodeExpand, + append: me.onNodeAdded, + insert: me.onNodeAdded, + sort: me.onNodeSort + }); + + me.onBeforeSort(); + + root = me.root; + if (root) { + delete me.root; + me.setRootNode(root); + } + + if (Ext.isDefined(me.nodeParameter)) { + if (Ext.isDefined(Ext.global.console)) { + Ext.global.console.warn('Ext.data.TreeStore: nodeParameter has been deprecated. Please use nodeParam instead.'); + } + me.nodeParam = me.nodeParameter; + delete me.nodeParameter; + } + }, + + + setProxy: function(proxy) { + var reader, + needsRoot; + + if (proxy instanceof Ext.data.proxy.Proxy) { + + needsRoot = Ext.isEmpty(proxy.getReader().root); + } else if (Ext.isString(proxy)) { + + needsRoot = true; + } else { + + reader = proxy.reader; + needsRoot = !(reader && !Ext.isEmpty(reader.root)); + } + proxy = this.callParent(arguments); + + + + + proxy.idParam = this.nodeParam; + + if (needsRoot) { + reader = proxy.getReader(); + reader.root = this.defaultRootProperty; + + reader.buildExtractors(true); + } + return proxy; + }, + + + onBeforeSort: function() { + if (this.folderSort) { + this.sort({ + property: 'leaf', + direction: 'ASC' + }, 'prepend', false); + } + }, + + + onBeforeNodeExpand: function(node, callback, scope, args) { + var me = this, + reader, dataRoot, data, + callbackArgs; + + + if (node.isLoaded()) { + callbackArgs = [node.childNodes]; + if (args) { + callbackArgs.push.apply(callbackArgs, args); + } + Ext.callback(callback, scope || node, callbackArgs); + } + + else if (dataRoot = (data = (node.raw || node[node.persistenceProperty])[(reader = me.getProxy().getReader()).root])) { + me.fillNode(node, reader.extractData(dataRoot)); + delete data[reader.root]; + callbackArgs = [node.childNodes]; + if (args) { + callbackArgs.push.apply(callbackArgs, args); + } + Ext.callback(callback, scope || node, callbackArgs); + } + + else if (node.isLoading()) { + me.on('load', function() { + callbackArgs = [node.childNodes]; + if (args) { + callbackArgs.push.apply(callbackArgs, args); + } + Ext.callback(callback, scope || node, callbackArgs); + }, me, {single: true}); + } + + else { + me.read({ + node: node, + callback: function() { + + + delete me.lastOptions.callback; + callbackArgs = [node.childNodes]; + if (args) { + callbackArgs.push.apply(callbackArgs, args); + } + Ext.callback(callback, scope || node, callbackArgs); + } + }); + } + }, + + + getNewRecords: function() { + return Ext.Array.filter(this.tree.flatten(), this.filterNew); + }, + + + getUpdatedRecords: function() { + return Ext.Array.filter(this.tree.flatten(), this.filterUpdated); + }, + + onNodeRemove: function(parent, node, isMove) { + var me = this; + + node.unjoin(me); + + + + if (!node.phantom && !isMove) { + Ext.Array.include(me.removed, node); + } + + if (me.autoSync && !me.autoSyncSuspended && !isMove) { + me.sync(); + } + }, + + onNodeAdded: function(parent, node) { + var me = this, + proxy = me.getProxy(), + reader = proxy.getReader(), + data = node.raw || node[node.persistenceProperty], + dataRoot; + + Ext.Array.remove(me.removed, node); + node.join(me); + + + if (!node.isLeaf() && !me.lazyFill) { + dataRoot = reader.getRoot(data); + if (dataRoot) { + me.fillNode(node, reader.extractData(dataRoot)); + delete data[reader.root]; + } + } + + if (me.autoSync && !me.autoSyncSuspended && (node.phantom || node.dirty)) { + me.sync(); + } + }, + + onNodeSort: function() { + if (this.autoSync && !this.autoSyncSuspended) { + this.sync(); + } + }, + + + setRootNode: function(root, preventLoad) { + var me = this, + model = me.model, + idProperty = model.prototype.idProperty + + root = root || {}; + if (!root.isModel) { + root = Ext.apply({}, root); + + Ext.applyIf(root, { + id: me.defaultRootId, + text: me.defaultRootText, + allowDrag: false + }); + if (root[idProperty] === undefined) { + root[idProperty] = me.defaultRootId; + } + Ext.data.NodeInterface.decorate(model); + root = Ext.ModelManager.create(root, model); + } else if (root.isModel && !root.isNode) { + Ext.data.NodeInterface.decorate(model); + } + + + + + me.getProxy().getReader().buildExtractors(true); + + + me.tree.setRootNode(root); + + + + + + + if (preventLoad !== true && !root.isLoaded() && (me.autoLoad === true || root.isExpanded())) { + root.data.expanded = false; + root.expand(); + } + + return root; + }, + + + getRootNode: function() { + return this.tree.getRootNode(); + }, + + + getNodeById: function(id) { + return this.tree.getNodeById(id); + }, + + + getById: function(id) { + return this.getNodeById(id); + }, + + + load: function(options) { + options = options || {}; + options.params = options.params || {}; + + var me = this, + node = options.node || me.tree.getRootNode(); + + + + if (!node) { + node = me.setRootNode({ + expanded: true + }, true); + } + + + + options.id = node.getId(); + + if (me.clearOnLoad) { + if(me.clearRemovedOnLoad) { + + me.clearRemoved(node); + } + + me.tree.un('remove', me.onNodeRemove, me); + + node.removeAll(false); + + me.tree.on('remove', me.onNodeRemove, me); + } + + Ext.applyIf(options, { + node: node + }); + + me.callParent([options]); + + if (me.loading && node) { + node.set('loading', true); + } + + return me; + }, + + + clearRemoved: function(node) { + var me = this, + removed = me.removed, + id = node.getId(), + removedLength = removed.length, + i = removedLength, + recordsToClear = {}, + newRemoved = [], + removedHash = {}, + removedNode, + targetNode, + targetId; + + if(node === me.getRootNode()) { + + me.removed = []; + return; + } + + + for(; i--;) { + removedNode = removed[i]; + removedHash[removedNode.getId()] = removedNode; + } + + for(i = removedLength; i--;) { + removedNode = removed[i]; + targetNode = removedNode; + while(targetNode && targetNode.getId() !== id) { + + targetId = targetNode.get('parentId'); + targetNode = targetNode.parentNode || me.getNodeById(targetId) || removedHash[targetId]; + } + if(targetNode) { + + recordsToClear[removedNode.getId()] = removedNode; + } + } + + + for(i = 0; i < removedLength; i++) { + removedNode = removed[i]; + if(!recordsToClear[removedNode.getId()]) { + newRemoved.push(removedNode); + } + } + + me.removed = newRemoved; + }, + + + fillNode: function(node, newNodes) { + var me = this, + ln = newNodes ? newNodes.length : 0, + sorters = me.sorters, + i, sortCollection, + needsIndexSort = false, + performLocalSort = ln && me.sortOnLoad && !me.remoteSort && sorters && sorters.items && sorters.items.length, + node1, node2, rootFill; + + + for (i = 1; i < ln; i++) { + node1 = newNodes[i]; + node2 = newNodes[i - 1]; + needsIndexSort = node1[node1.persistenceProperty].index != node2[node2.persistenceProperty].index; + if (needsIndexSort) { + break; + } + } + + + if (performLocalSort) { + + if (needsIndexSort) { + me.sorters.insert(0, me.indexSorter); + } + sortCollection = new Ext.util.MixedCollection(); + sortCollection.addAll(newNodes); + sortCollection.sort(me.sorters.items); + newNodes = sortCollection.items; + + + me.sorters.remove(me.indexSorter); + } else if (needsIndexSort) { + Ext.Array.sort(newNodes, me.sortByIndex); + } + + node.set('loaded', true); + + + + + + rootFill = me.fillCount === 0; + if (rootFill) { + + me.fireEvent('beforefill', me, node, newNodes); + } + ++me.fillCount; + + if (newNodes.length) { + node.appendChild(newNodes, undefined, true); + } + + if (rootFill) { + + me.fireEvent('fillcomplete', me, node, newNodes); + } + --me.fillCount; + + return newNodes; + }, + + + sortByIndex: function(node1, node2) { + return node1[node1.persistenceProperty].index - node2[node2.persistenceProperty].index; + }, + + onIdChanged: function(model, oldId, newId, oldInternalId){ + this.tree.onNodeIdChanged(model, oldId, newId, oldInternalId); + this.callParent(arguments); + }, + + + onProxyLoad: function(operation) { + var me = this, + successful = operation.wasSuccessful(), + records = operation.getRecords(), + node = operation.node; + + me.loading = false; + node.set('loading', false); + if (successful) { + if (!me.clearOnLoad) { + records = me.cleanRecords(node, records); + } + records = me.fillNode(node, records); + } + + + + + me.fireEvent('read', me, operation.node, records, successful); + me.fireEvent('load', me, operation.node, records, successful); + + Ext.callback(operation.callback, operation.scope || me, [records, operation, successful]); + }, + + cleanRecords: function(node, records){ + var nodeHash = {}, + childNodes = node.childNodes, + i = 0, + len = childNodes.length, + out = [], + rec; + + + for (; i < len; ++i) { + nodeHash[childNodes[i].getId()] = true; + } + + for (i = 0, len = records.length; i < len; ++i) { + rec = records[i]; + if (!nodeHash[rec.getId()]) { + out.push(rec); + } + } + + return out; + }, + + + removeAll: function() { + var root = this.getRootNode(); + if (root) { + root.destroy(true); + } + this.fireEvent('clear', this); + }, + + + doSort: function(sorterFn) { + var me = this; + if (me.remoteSort) { + + me.load(); + } else { + me.tree.sort(sorterFn, true); + me.fireEvent('datachanged', me); + me.fireEvent('refresh', me); + } + me.fireEvent('sort', me, me.sorters.getRange()); + } +}, function() { + var proto = this.prototype; + proto.indexSorter = new Ext.util.Sorter({ + sorterFn: proto.sortByIndex + }); +}); + + +Ext.define('Ext.data.UuidGenerator', (function () { + var twoPow14 = Math.pow(2, 14), + twoPow16 = Math.pow(2, 16), + twoPow28 = Math.pow(2, 28), + twoPow32 = Math.pow(2, 32); + + function toHex (value, length) { + var ret = value.toString(16); + if (ret.length > length) { + ret = ret.substring(ret.length - length); + } else if (ret.length < length) { + ret = Ext.String.leftPad(ret, length, '0'); + } + return ret; + } + + function rand (lo, hi) { + var v = Math.random() * (hi - lo + 1); + return Math.floor(v) + lo; + } + + function split (bignum) { + if (typeof(bignum) == 'number') { + var hi = Math.floor(bignum / twoPow32); + return { + lo: Math.floor(bignum - hi * twoPow32), + hi: hi + }; + } + return bignum; + } + + return { + extend: Ext.data.IdGenerator , + + alias: 'idgen.uuid', + + id: 'uuid', + + + + + + + version: 4, + + constructor: function() { + var me = this; + + me.callParent(arguments); + + me.parts = []; + me.init(); + }, + + generate: function () { + var me = this, + parts = me.parts, + ts = me.timestamp; + + + parts[0] = toHex(ts.lo, 8); + parts[1] = toHex(ts.hi & 0xFFFF, 4); + parts[2] = toHex(((ts.hi >>> 16) & 0xFFF) | (me.version << 12), 4); + parts[3] = toHex(0x80 | ((me.clockSeq >>> 8) & 0x3F), 2) + + toHex(me.clockSeq & 0xFF, 2); + parts[4] = toHex(me.salt.hi, 4) + toHex(me.salt.lo, 8); + + if (me.version == 4) { + me.init(); + } else { + + ++ts.lo; + if (ts.lo >= twoPow32) { + ts.lo = 0; + ++ts.hi; + } + } + + return parts.join('-').toLowerCase(); + }, + + getRecId: function (rec) { + return rec.getId(); + }, + + + init: function () { + var me = this, + salt, time; + + if (me.version == 4) { + + + + + me.clockSeq = rand(0, twoPow14-1); + + + salt = me.salt || (me.salt = {}); + time = me.timestamp || (me.timestamp = {}); + + + salt.lo = rand(0, twoPow32-1); + salt.hi = rand(0, twoPow16-1); + time.lo = rand(0, twoPow32-1); + time.hi = rand(0, twoPow28-1); + } else { + + me.salt = split(me.salt); + me.timestamp = split(me.timestamp); + + + + me.salt.hi |= 0x100; + } + }, + + + reconfigure: function (config) { + Ext.apply(this, config); + this.init(); + } + }; +}())); + + +Ext.define('Ext.data.reader.Xml', { + extend: Ext.data.reader.Reader , + alternateClassName: 'Ext.data.XmlReader', + alias : 'reader.xml', + + + + + + + createAccessor: function(expr) { + var me = this; + + if (Ext.isEmpty(expr)) { + return Ext.emptyFn; + } + + if (Ext.isFunction(expr)) { + return expr; + } + + return function(root) { + return me.getNodeValue(Ext.DomQuery.selectNode(expr, root)); + }; + }, + + getNodeValue: function(node) { + if (node) { + + + + if (typeof node.normalize === 'function') { + node.normalize(); + } + node = node.firstChild; + if (node) { + return node.nodeValue; + } + } + return undefined; + }, + + + getResponseData: function(response) { + var xml = response.responseXML, + error, + msg; + + if (!xml) { + msg = 'XML data not found in the response'; + + error = new Ext.data.ResultSet({ + total : 0, + count : 0, + records: [], + success: false, + message: msg + }); + + this.fireEvent('exception', this, response, error); + + Ext.Logger.warn(msg); + + return error; + } + + return this.readRecords(xml); + }, + + + getData: function(data) { + return data.documentElement || data; + }, + + + getRoot: function(data) { + var nodeName = data.nodeName, + root = this.root; + + if (!root || (nodeName && nodeName == root)) { + return data; + } else if (Ext.DomQuery.isXml(data)) { + + + + return Ext.DomQuery.selectNode(root, data); + } + }, + + + extractData: function(root) { + var recordName = this.record; + + + if (recordName != root.nodeName) { + root = Ext.DomQuery.select(recordName, root); + } else { + root = [root]; + } + return this.callParent([root]); + }, + + + getAssociatedDataRoot: function(data, associationName) { + return Ext.DomQuery.select(associationName, data)[0]; + }, + + + readRecords: function(doc) { + + + if (Ext.isArray(doc)) { + doc = doc[0]; + } + + + this.xmlData = doc; + return this.callParent([doc]); + }, + + + createFieldAccessExpression: function(field, fieldVarName, dataName) { + var namespace = this.namespace, + selector, result; + + selector = field.mapping || ((namespace ? namespace + '|' : '') + field.name); + + if (typeof selector === 'function') { + result = fieldVarName + '.mapping(' + dataName + ', this)'; + } else { + result = 'me.getNodeValue(Ext.DomQuery.selectNode("' + selector + '", ' + dataName + '))'; + } + return result; + } +}); + + +Ext.define('Ext.data.writer.Xml', { + + + + extend: Ext.data.writer.Writer , + alternateClassName: 'Ext.data.XmlWriter', + + alias: 'writer.xml', + + + + + documentRoot: 'xmlData', + + + defaultDocumentRoot: 'xmlData', + + + header: '', + + + record: 'record', + + + writeRecords: function(request, data) { + var me = this, + xml = [], + i = 0, + len = data.length, + root = me.documentRoot, + record = me.record, + needsRoot = data.length !== 1, + item, + key; + + + xml.push(me.header || ''); + + if (!root && needsRoot) { + root = me.defaultDocumentRoot; + } + + if (root) { + xml.push('<', root, '>'); + } + + for (; i < len; ++i) { + item = data[i]; + xml.push('<', record, '>'); + for (key in item) { + if (item.hasOwnProperty(key)) { + xml.push('<', key, '>', item[key], ''); + } + } + xml.push(''); + } + + if (root) { + xml.push(''); + } + + request.xmlData = xml.join(''); + return request; + } +}); + + +Ext.define('Ext.data.XmlStore', { + extend: Ext.data.Store , + alias: 'store.xml', + + + + + + + + constructor: function(config){ + config = Ext.apply({ + proxy: { + type: 'ajax', + reader: 'xml', + writer: 'xml' + } + }, config); + + this.callParent([config]); + } +}); + + +Ext.define('Ext.data.association.BelongsTo', { + extend: Ext.data.association.Association , + alternateClassName: 'Ext.data.BelongsToAssociation', + alias: 'association.belongsto', + + + + + + + + + constructor: function(config) { + this.callParent(arguments); + + var me = this, + ownerProto = me.ownerModel.prototype, + associatedName = me.associatedName, + getterName = me.getterName || 'get' + associatedName, + setterName = me.setterName || 'set' + associatedName; + + Ext.applyIf(me, { + name : associatedName, + foreignKey : associatedName.toLowerCase() + "_id", + instanceName: associatedName + 'BelongsToInstance', + associationKey: associatedName.toLowerCase() + }); + + ownerProto[getterName] = me.createGetter(); + ownerProto[setterName] = me.createSetter(); + }, + + + createSetter: function() { + var me = this, + foreignKey = me.foreignKey, + instanceName = me.instanceName; + + + return function(value, options, scope) { + + var setByRecord = value && value.isModel, + valueToSet = setByRecord ? value.getId() : value; + + + if (setByRecord) { + this[instanceName] = value; + } + + + else if (this[instanceName] instanceof Ext.data.Model && !this.isEqual(this.get(foreignKey), valueToSet)) { + delete this[instanceName]; + } + + + this.set(foreignKey, valueToSet); + + if (Ext.isFunction(options)) { + options = { + callback: options, + scope: scope || this + }; + } + + if (Ext.isObject(options)) { + return this.save(options); + } + }; + }, + + + createGetter: function() { + var me = this, + associatedName = me.associatedName, + associatedModel = me.associatedModel, + foreignKey = me.foreignKey, + primaryKey = me.primaryKey, + instanceName = me.instanceName; + + + return function(options, scope) { + options = options || {}; + + var model = this, + foreignKeyId = model.get(foreignKey), + success, + instance, + args; + + if (options.reload === true || model[instanceName] === undefined) { + instance = Ext.ModelManager.create({}, associatedName); + instance.set(primaryKey, foreignKeyId); + + if (typeof options == 'function') { + options = { + callback: options, + scope: scope || model + }; + } + + + success = options.success; + options.success = function(rec){ + model[instanceName] = rec; + if (success) { + success.apply(this, arguments); + } + }; + + associatedModel.load(foreignKeyId, options); + + model[instanceName] = instance; + return instance; + } else { + instance = model[instanceName]; + args = [instance]; + scope = scope || options.scope || model; + + + + + Ext.callback(options, scope, args); + Ext.callback(options.success, scope, args); + Ext.callback(options.failure, scope, args); + Ext.callback(options.callback, scope, args); + + return instance; + } + }; + }, + + + read: function(record, reader, associationData){ + record[this.instanceName] = reader.read([associationData]).records[0]; + } +}); + + +Ext.define('Ext.util.Inflector', { + + + + singleton: true, + + + + + plurals: [ + [(/(quiz)$/i), "$1zes" ], + [(/^(ox)$/i), "$1en" ], + [(/([m|l])ouse$/i), "$1ice" ], + [(/(matr|vert|ind)ix|ex$/i), "$1ices" ], + [(/(x|ch|ss|sh)$/i), "$1es" ], + [(/([^aeiouy]|qu)y$/i), "$1ies" ], + [(/(hive)$/i), "$1s" ], + [(/(?:([^f])fe|([lr])f)$/i), "$1$2ves"], + [(/sis$/i), "ses" ], + [(/([ti])um$/i), "$1a" ], + [(/(buffal|tomat|potat)o$/i), "$1oes" ], + [(/(bu)s$/i), "$1ses" ], + [(/(alias|status|sex)$/i), "$1es" ], + [(/(octop|vir)us$/i), "$1i" ], + [(/(ax|test)is$/i), "$1es" ], + [(/^person$/), "people" ], + [(/^man$/), "men" ], + [(/^(child)$/), "$1ren" ], + [(/s$/i), "s" ], + [(/$/), "s" ] + ], + + + singulars: [ + [(/(quiz)zes$/i), "$1" ], + [(/(matr)ices$/i), "$1ix" ], + [(/(vert|ind)ices$/i), "$1ex" ], + [(/^(ox)en/i), "$1" ], + [(/(alias|status)es$/i), "$1" ], + [(/(octop|vir)i$/i), "$1us" ], + [(/(cris|ax|test)es$/i), "$1is" ], + [(/(shoe)s$/i), "$1" ], + [(/(o)es$/i), "$1" ], + [(/(bus)es$/i), "$1" ], + [(/([m|l])ice$/i), "$1ouse" ], + [(/(x|ch|ss|sh)es$/i), "$1" ], + [(/(m)ovies$/i), "$1ovie" ], + [(/(s)eries$/i), "$1eries"], + [(/([^aeiouy]|qu)ies$/i), "$1y" ], + [(/([lr])ves$/i), "$1f" ], + [(/(tive)s$/i), "$1" ], + [(/(hive)s$/i), "$1" ], + [(/([^f])ves$/i), "$1fe" ], + [(/(^analy)ses$/i), "$1sis" ], + [(/((a)naly|(b)a|(d)iagno|(p)arenthe|(p)rogno|(s)ynop|(t)he)ses$/i), "$1$2sis"], + [(/([ti])a$/i), "$1um" ], + [(/(n)ews$/i), "$1ews" ], + [(/people$/i), "person" ], + [(/s$/i), "" ] + ], + + + uncountable: [ + "sheep", + "fish", + "series", + "species", + "money", + "rice", + "information", + "equipment", + "grass", + "mud", + "offspring", + "deer", + "means" + ], + + + singular: function(matcher, replacer) { + this.singulars.unshift([matcher, replacer]); + }, + + + plural: function(matcher, replacer) { + this.plurals.unshift([matcher, replacer]); + }, + + + clearSingulars: function() { + this.singulars = []; + }, + + + clearPlurals: function() { + this.plurals = []; + }, + + + isTransnumeral: function(word) { + return Ext.Array.indexOf(this.uncountable, word) != -1; + }, + + + pluralize: function(word) { + if (this.isTransnumeral(word)) { + return word; + } + + var plurals = this.plurals, + length = plurals.length, + tuple, regex, i; + + for (i = 0; i < length; i++) { + tuple = plurals[i]; + regex = tuple[0]; + + if (regex == word || (regex.test && regex.test(word))) { + return word.replace(regex, tuple[1]); + } + } + + return word; + }, + + + singularize: function(word) { + if (this.isTransnumeral(word)) { + return word; + } + + var singulars = this.singulars, + length = singulars.length, + tuple, regex, i; + + for (i = 0; i < length; i++) { + tuple = singulars[i]; + regex = tuple[0]; + + if (regex == word || (regex.test && regex.test(word))) { + return word.replace(regex, tuple[1]); + } + } + + return word; + }, + + + classify: function(word) { + return Ext.String.capitalize(this.singularize(word)); + }, + + + ordinalize: function(number) { + var parsed = parseInt(number, 10), + mod10 = parsed % 10, + mod100 = parsed % 100; + + + if (11 <= mod100 && mod100 <= 13) { + return number + "th"; + } else { + switch(mod10) { + case 1 : return number + "st"; + case 2 : return number + "nd"; + case 3 : return number + "rd"; + default: return number + "th"; + } + } + } +}, function() { + + var irregulars = { + alumnus: 'alumni', + cactus : 'cacti', + focus : 'foci', + nucleus: 'nuclei', + radius: 'radii', + stimulus: 'stimuli', + ellipsis: 'ellipses', + paralysis: 'paralyses', + oasis: 'oases', + appendix: 'appendices', + index: 'indexes', + beau: 'beaux', + bureau: 'bureaux', + tableau: 'tableaux', + woman: 'women', + child: 'children', + man: 'men', + corpus: 'corpora', + criterion: 'criteria', + curriculum: 'curricula', + genus: 'genera', + memorandum: 'memoranda', + phenomenon: 'phenomena', + foot: 'feet', + goose: 'geese', + tooth: 'teeth', + antenna: 'antennae', + formula: 'formulae', + nebula: 'nebulae', + vertebra: 'vertebrae', + vita: 'vitae' + }, + singular; + + for (singular in irregulars) { + this.plural(singular, irregulars[singular]); + this.singular(irregulars[singular], singular); + } +}); + + +Ext.define('Ext.data.association.HasMany', { + extend: Ext.data.association.Association , + alternateClassName: 'Ext.data.HasManyAssociation', + + + alias: 'association.hasmany', + + + + + + + + + + + + + + constructor: function(config) { + var me = this, + ownerProto, + name; + + me.callParent(arguments); + + me.name = me.name || Ext.util.Inflector.pluralize(me.associatedName.toLowerCase()); + + ownerProto = me.ownerModel.prototype; + name = me.name; + + Ext.applyIf(me, { + storeName : name + "Store", + foreignKey: me.ownerName.toLowerCase() + "_id" + }); + + ownerProto[name] = me.createStore(); + }, + + + createStore: function() { + var that = this, + associatedModel = that.associatedModel, + storeName = that.storeName, + foreignKey = that.foreignKey, + primaryKey = that.primaryKey, + filterProperty = that.filterProperty, + autoLoad = that.autoLoad, + storeConfig = that.storeConfig || {}; + + return function() { + var me = this, + config, filter, + modelDefaults = {}; + + if (me[storeName] === undefined) { + if (filterProperty) { + filter = { + property : filterProperty, + value : me.get(filterProperty), + exactMatch: true + }; + } else { + filter = { + property : foreignKey, + value : me.get(primaryKey), + exactMatch: true + }; + } + + modelDefaults[foreignKey] = me.get(primaryKey); + + config = Ext.apply({}, storeConfig, { + model : associatedModel, + filters : [filter], + remoteFilter : false, + modelDefaults: modelDefaults, + disableMetaChangeEvent: true + }); + + me[storeName] = Ext.data.AbstractStore.create(config); + if (autoLoad) { + me[storeName].load(); + } + } + + return me[storeName]; + }; + }, + + + read: function(record, reader, associationData){ + var store = record[this.name](), + inverse, + items, iLen, i; + + store.add(reader.read(associationData).records); + + + + inverse = this.associatedModel.prototype.associations.findBy(function(assoc){ + return assoc.type === 'belongsTo' && assoc.associatedName === record.$className; + }); + + + if (inverse) { + items = store.data.items; + iLen = items.length; + + for (i = 0; i < iLen; i++) { + items[i][inverse.instanceName] = record; + } + } + } +}); + + +Ext.define('Ext.data.association.HasOne', { + extend: Ext.data.association.Association , + alternateClassName: 'Ext.data.HasOneAssociation', + + alias: 'association.hasone', + + + + + + + + + + constructor: function(config) { + this.callParent(arguments); + + var me = this, + ownerProto = me.ownerModel.prototype, + associatedName = me.associatedName, + getterName = me.getterName || 'get' + associatedName, + setterName = me.setterName || 'set' + associatedName; + + Ext.applyIf(me, { + name : associatedName, + foreignKey : associatedName.toLowerCase() + "_id", + instanceName: associatedName + 'HasOneInstance', + associationKey: associatedName.toLowerCase() + }); + + ownerProto[getterName] = me.createGetter(); + ownerProto[setterName] = me.createSetter(); + }, + + + createSetter: function() { + var me = this, + foreignKey = me.foreignKey, + instanceName = me.instanceName; + + + return function(value, options, scope) { + + var setByRecord = value && value.isModel, + valueToSet = setByRecord ? value.getId() : value; + + + if (setByRecord) { + this[instanceName] = value; + } + + + else if (this[instanceName] instanceof Ext.data.Model && !this.isEqual(this.get(foreignKey), valueToSet)) { + delete this[instanceName]; + } + + + this.set(foreignKey, valueToSet); + + if (Ext.isFunction(options)) { + options = { + callback: options, + scope: scope || this + }; + } + + if (Ext.isObject(options)) { + return this.save(options); + } + }; + }, + + + createGetter: function() { + var me = this, + ownerModel = me.ownerModel, + associatedName = me.associatedName, + associatedModel = me.associatedModel, + foreignKey = me.foreignKey, + primaryKey = me.primaryKey, + instanceName = me.instanceName; + + + return function(options, scope) { + options = options || {}; + + var model = this, + foreignKeyId = model.get(foreignKey), + success, + instance, + args; + + if (options.reload === true || model[instanceName] === undefined) { + instance = Ext.ModelManager.create({}, associatedName); + instance.set(primaryKey, foreignKeyId); + + if (typeof options == 'function') { + options = { + callback: options, + scope: scope || model + }; + } + + + success = options.success; + options.success = function(rec){ + model[instanceName] = rec; + if (success) { + success.apply(this, arguments); + } + }; + + associatedModel.load(foreignKeyId, options); + + model[instanceName] = instance; + return instance; + } else { + instance = model[instanceName]; + args = [instance]; + scope = scope || options.scope || model; + + + + + Ext.callback(options, scope, args); + Ext.callback(options.success, scope, args); + Ext.callback(options.failure, scope, args); + Ext.callback(options.callback, scope, args); + + return instance; + } + }; + }, + + + read: function(record, reader, associationData){ + var inverse = this.associatedModel.prototype.associations.findBy(function(assoc){ + return assoc.type === 'belongsTo' && assoc.associatedName === record.$className; + }), newRecord = reader.read([associationData]).records[0]; + + record[this.instanceName] = newRecord; + + + if (inverse) { + newRecord[inverse.instanceName] = record; + } + } +}); + + +Ext.define('Ext.data.proxy.WebStorage', { + extend: Ext.data.proxy.Client , + alternateClassName: 'Ext.data.WebStorageProxy', + + + + + + id: undefined, + + + + + + + constructor: function(config) { + this.callParent(arguments); + + + this.cache = {}; + + + + this.id = this.id || (this.store ? this.store.storeId : undefined); + + + this.initialize(); + }, + + + create: function(operation, callback, scope) { + var me = this, + records = operation.records, + length = records.length, + ids = me.getIds(), + id, record, i; + + operation.setStarted(); + + if(me.isHierarchical === undefined) { + + + me.isHierarchical = !!records[0].isNode; + if(me.isHierarchical) { + me.getStorageObject().setItem(me.getTreeKey(), true); + } + } + + for (i = 0; i < length; i++) { + record = records[i]; + + if (record.phantom) { + record.phantom = false; + id = me.getNextId(); + } else { + id = record.getId(); + } + + me.setRecord(record, id); + record.commit(); + ids.push(id); + } + + me.setIds(ids); + + operation.setCompleted(); + operation.setSuccessful(); + + if (typeof callback == 'function') { + callback.call(scope || me, operation); + } + }, + + + read: function(operation, callback, scope) { + + + var me = this, + records = [], + i = 0, + success = true, + Model = me.model, + ids, length, record, data, id; + + operation.setStarted(); + + if(me.isHierarchical) { + records = me.getTreeData(); + } else { + ids = me.getIds(); + length = ids.length; + id = operation.id; + + if (id) { + data = me.getRecord(id); + if (data !== null) { + record = new Model(data, id, data); + } + + if (record) { + records.push(record); + } else { + success = false; + } + } else { + for (; i < length; i++) { + id = ids[i]; + data = me.getRecord(id); + records.push(new Model(data, id, data)); + } + } + + } + + if(success) { + operation.setSuccessful(); + } + operation.setCompleted(); + + operation.resultSet = Ext.create('Ext.data.ResultSet', { + records: records, + total : records.length, + loaded : true + }); + + if (typeof callback == 'function') { + callback.call(scope || me, operation); + } + }, + + + update: function(operation, callback, scope) { + var records = operation.records, + length = records.length, + ids = this.getIds(), + record, id, i; + + operation.setStarted(); + + for (i = 0; i < length; i++) { + record = records[i]; + this.setRecord(record); + record.commit(); + + + + id = record.getId(); + if (id !== undefined && Ext.Array.indexOf(ids, id) == -1) { + ids.push(id); + } + } + this.setIds(ids); + + operation.setCompleted(); + operation.setSuccessful(); + + if (typeof callback == 'function') { + callback.call(scope || this, operation); + } + }, + + + destroy: function(operation, callback, scope) { + var me = this, + records = operation.records, + ids = me.getIds(), + idLength = ids.length, + newIds = [], + removedHash = {}, + i = records.length, + id; + + operation.setStarted(); + + for (; i--;) { + Ext.apply(removedHash, me.removeRecord(records[i])); + } + + for(i = 0; i < idLength; i++) { + id = ids[i]; + if(!removedHash[id]) { + newIds.push(id); + } + } + + me.setIds(newIds); + + operation.setCompleted(); + operation.setSuccessful(); + + if (typeof callback == 'function') { + callback.call(scope || me, operation); + } + }, + + + getRecord: function(id) { + var me = this, + cache = me.cache, + data = !cache[id] ? Ext.decode(me.getStorageObject().getItem(me.getRecordKey(id))) : cache[id]; + + if(!data) { + return null; + } + + cache[id] = data; + data[me.model.prototype.idProperty] = id; + + return data; + }, + + + setRecord: function(record, id) { + if (id) { + record.setId(id); + } else { + id = record.getId(); + } + + var me = this, + rawData = record.data, + data = {}, + model = me.model, + fields = model.prototype.fields.items, + length = fields.length, + i = 0, + field, name, obj, key; + + for (; i < length; i++) { + field = fields[i]; + name = field.name; + + if(field.persist) { + data[name] = rawData[name]; + } + } + + + delete data[me.model.prototype.idProperty]; + + + if(record.isNode && record.get('depth') === 1) { + delete data.parentId; + } + + obj = me.getStorageObject(); + key = me.getRecordKey(id); + + + me.cache[id] = data; + + + obj.removeItem(key); + obj.setItem(key, Ext.encode(data)); + }, + + + removeRecord: function(record) { + var me = this, + id = record.getId(), + records = {}, + i, childNodes; + + records[id] = record; + me.getStorageObject().removeItem(me.getRecordKey(id)); + delete me.cache[id]; + + if(record.childNodes) { + childNodes = record.childNodes; + for(i = childNodes.length; i--;) { + Ext.apply(records, me.removeRecord(childNodes[i])); + } + } + + return records; + }, + + + getRecordKey: function(id) { + if (id.isModel) { + id = id.getId(); + } + + return Ext.String.format("{0}-{1}", this.id, id); + }, + + + getRecordCounterKey: function() { + return Ext.String.format("{0}-counter", this.id); + }, + + + getTreeKey: function() { + return Ext.String.format("{0}-tree", this.id); + }, + + + getIds: function() { + var me = this, + ids = (me.getStorageObject().getItem(me.id) || "").split(","), + model = me.model, + length = ids.length, + isString = model.prototype.fields.get(model.prototype.idProperty).type.type === 'string', + i; + + if (length == 1 && ids[0] === "") { + ids = []; + } else { + for (i = 0; i < length; i++) { + ids[i] = isString ? ids[i] : +ids[i]; + } + } + + return ids; + }, + + + setIds: function(ids) { + var obj = this.getStorageObject(), + str = ids.join(","); + + obj.removeItem(this.id); + + if (!Ext.isEmpty(str)) { + obj.setItem(this.id, str); + } + }, + + + getNextId: function() { + var me = this, + obj = me.getStorageObject(), + key = me.getRecordCounterKey(), + model = me.model, + isString = model.prototype.fields.get(model.prototype.idProperty).type.type === 'string', + id; + + id = me.idGenerator.generate(); + + obj.setItem(key, id); + + if(!isString) { + id = +id; + } + + return id; + }, + + + getTreeData: function() { + var me = this, + ids = me.getIds(), + length = ids.length, + records = [], + recordHash = {}, + root = [], + i = 0, + Model = me.model, + idProperty = Model.prototype.idProperty, + rootLength, record, parent, parentId, children, id; + + for(; i < length; i++) { + id = ids[i]; + + record = me.getRecord(id); + + records.push(record); + + recordHash[id] = record; + if(!record.parentId) { + + root.push(record); + } + } + + rootLength = root.length; + + + Ext.Array.sort(records, me.sortByParentId); + + + for(i = rootLength; i < length; i++) { + record = records[i]; + parentId = record.parentId; + if(!parent || parent[idProperty] !== parentId) { + + parent = recordHash[parentId]; + parent.children = children = []; + } + + + children.push(record); + } + + for(i = length; i--;) { + record = records[i]; + if(!record.children && !record.leaf) { + + record.loaded = true; + } + } + + + for(i = rootLength; i--;) { + record = root[i]; + root[i] = new Model(record, record[idProperty], record); + } + + return root; + }, + + + sortByParentId: function(node1, node2) { + return (node1.parentId || 0) - (node2.parentId || 0); + }, + + + initialize: function() { + var me = this, + storageObject = me.getStorageObject(), + lastId = +storageObject.getItem(me.getRecordCounterKey()); + + storageObject.setItem(me.id, storageObject.getItem(me.id) || ""); + if(storageObject.getItem(me.getTreeKey())) { + me.isHierarchical = true; + } + + me.idGenerator = new Ext.data.SequentialIdGenerator({ + seed: lastId ? lastId + 1 : 1 + }); + }, + + + clear: function() { + var me = this, + obj = me.getStorageObject(), + ids = me.getIds(), + len = ids.length, + i; + + + for (i = 0; i < len; i++) { + obj.removeItem(me.getRecordKey(ids[i])); + } + + + obj.removeItem(me.getRecordCounterKey()); + obj.removeItem(me.getTreeKey()); + obj.removeItem(me.id); + + + me.cache = {}; + }, + + + getStorageObject: function() { + } +}); + + +Ext.define('Ext.data.proxy.LocalStorage', { + extend: Ext.data.proxy.WebStorage , + alias: 'proxy.localstorage', + alternateClassName: 'Ext.data.LocalStorageProxy', + + + getStorageObject: function() { + return window.localStorage; + } +}); + + +Ext.define('Ext.data.proxy.Rest', { + extend: Ext.data.proxy.Ajax , + alternateClassName: 'Ext.data.RestProxy', + alias : 'proxy.rest', + + + actionMethods: { + create : 'POST', + read : 'GET', + update : 'PUT', + destroy: 'DELETE' + }, + + + appendId: true, + + + + + batchActions: false, + + + buildUrl: function(request) { + var me = this, + operation = request.operation, + records = operation.records || [], + record = records[0], + format = me.format, + url = me.getUrl(request), + id = record ? record.getId() : operation.id; + + if (me.appendId && me.isValidId(id)) { + if (!url.match(/\/$/)) { + url += '/'; + } + + url += id; + } + + if (format) { + if (!url.match(/\.$/)) { + url += '.'; + } + + url += format; + } + + request.url = url; + + return me.callParent(arguments); + }, + + isValidId: function(id) { + return id || id === 0; + } +}); + + +Ext.define('Ext.data.proxy.SessionStorage', { + extend: Ext.data.proxy.WebStorage , + alias: 'proxy.sessionstorage', + alternateClassName: 'Ext.data.SessionStorageProxy', + + + getStorageObject: function() { + return window.sessionStorage; + } +}); + + + + + +Ext.define('Ext.dd.DDTarget', { + extend: Ext.dd.DragDrop , + + + constructor: function(id, sGroup, config) { + if (id) { + this.initTarget(id, sGroup, config); + } + }, + + + getDragEl: Ext.emptyFn, + + isValidHandleChild: Ext.emptyFn, + + startDrag: Ext.emptyFn, + + endDrag: Ext.emptyFn, + + onDrag: Ext.emptyFn, + + onDragDrop: Ext.emptyFn, + + onDragEnter: Ext.emptyFn, + + onDragOut: Ext.emptyFn, + + onDragOver: Ext.emptyFn, + + onInvalidDrop: Ext.emptyFn, + + onMouseDown: Ext.emptyFn, + + onMouseUp: Ext.emptyFn, + + setXConstraint: Ext.emptyFn, + + setYConstraint: Ext.emptyFn, + + resetConstraints: Ext.emptyFn, + + clearConstraints: Ext.emptyFn, + + clearTicks: Ext.emptyFn, + + setInitPosition: Ext.emptyFn, + + setDragElId: Ext.emptyFn, + + setHandleElId: Ext.emptyFn, + + setOuterHandleElId: Ext.emptyFn, + + addInvalidHandleClass: Ext.emptyFn, + + addInvalidHandleId: Ext.emptyFn, + + addInvalidHandleType: Ext.emptyFn, + + removeInvalidHandleClass: Ext.emptyFn, + + removeInvalidHandleId: Ext.emptyFn, + + removeInvalidHandleType: Ext.emptyFn, + + toString: function() { + return ("DDTarget " + this.id); + } +}); + + +Ext.define('Ext.dd.DragTracker', { + + + + mixins: { + observable: Ext.util.Observable + }, + + + active: false, + + + + + trackOver: false, + + + + + + + tolerance: 5, + + + autoStart: false, + + + + + + + + constructor : function(config){ + var me = this; + Ext.apply(me, config); + me.addEvents( + + 'mouseover', + + + 'mouseout', + + + 'mousedown', + + + 'mouseup', + + + 'mousemove', + + + 'beforedragstart', + + + 'dragstart', + + + 'dragend', + + + 'drag' + ); + + me.dragRegion = new Ext.util.Region(0,0,0,0); + + if (me.el) { + me.initEl(me.el); + } + + + me.mixins.observable.constructor.call(me); + if (me.disabled) { + me.disable(); + } + + }, + + + initEl: function(el) { + var me = this; + + me.el = Ext.get(el); + + + me.handle = Ext.get(me.delegate); + + + me.delegate = me.handle ? undefined : me.delegate; + + if (!me.handle) { + me.handle = me.el; + } + + + + me.handleListeners = { + scope: me, + delegate: me.delegate, + mousedown: me.onMouseDown + }; + + + + + if (me.trackOver || me.overCls) { + Ext.apply(me.handleListeners, { + mouseover: me.onMouseOver, + mouseout: me.onMouseOut + }); + } + me.mon(me.handle, me.handleListeners); + }, + + disable: function() { + this.disabled = true; + }, + + enable: function() { + this.disabled = false; + }, + + destroy : function() { + var me = this; + + if (me.active) { + + me.endDrag({}); + } + me.clearListeners(); + me.mun(me.handle, me.handleListeners); + me.el = me.handle = null; + }, + + + + onMouseOver: function(e, target) { + var me = this; + if (!me.disabled) { + if (Ext.EventManager.contains(e) || me.delegate) { + me.mouseIsOut = false; + if (me.overCls) { + me.el.addCls(me.overCls); + } + me.fireEvent('mouseover', me, e, me.delegate ? e.getTarget(me.delegate, target) : me.handle); + } + } + }, + + + + onMouseOut: function(e) { + var me = this; + + if (me.mouseIsDown) { + me.mouseIsOut = true; + } else { + if (me.overCls) { + me.el.removeCls(me.overCls); + } + me.fireEvent('mouseout', me, e); + } + }, + + onMouseDown: function(e, target){ + var me = this, + el; + + + if (me.disabled ||e.dragTracked) { + return; + } + + + me.dragTarget = me.delegate ? target : me.handle.dom; + me.startXY = me.lastXY = e.getXY(); + me.startRegion = Ext.fly(me.dragTarget).getRegion(); + + if (me.fireEvent('mousedown', me, e) === false || + me.fireEvent('beforedragstart', me, e) === false || + me.onBeforeStart(e) === false) { + return; + } + + + + me.mouseIsDown = true; + + + e.dragTracked = true; + + + el = me.el.dom; + if (Ext.isIE && el.setCapture) { + el.setCapture(); + } + + if (me.preventDefault !== false) { + e.preventDefault(); + } + Ext.getDoc().on({ + scope: me, + mouseup: me.onMouseUp, + mousemove: me.onMouseMove, + selectstart: me.stopSelect + }); + if (me.autoStart) { + me.timer = Ext.defer(me.triggerStart, me.autoStart === true ? 1000 : me.autoStart, me, [e]); + } + }, + + onMouseMove: function(e, target){ + var me = this, + xy = e.getXY(), + s = me.startXY; + + e.preventDefault(); + + me.lastXY = xy; + if (!me.active) { + if (Math.max(Math.abs(s[0]-xy[0]), Math.abs(s[1]-xy[1])) > me.tolerance) { + me.triggerStart(e); + } else { + return; + } + } + + + if (me.fireEvent('mousemove', me, e) === false) { + me.onMouseUp(e); + } else { + me.onDrag(e); + me.fireEvent('drag', me, e); + } + }, + + onMouseUp: function(e) { + var me = this; + + + me.mouseIsDown = false; + + + if (me.mouseIsOut) { + me.mouseIsOut = false; + me.onMouseOut(e); + } + e.preventDefault(); + + + if (Ext.isIE && document.releaseCapture) { + document.releaseCapture(); + } + + me.fireEvent('mouseup', me, e); + me.endDrag(e); + }, + + + endDrag: function(e) { + var me = this, + wasActive = me.active; + + Ext.getDoc().un({ + mousemove: me.onMouseMove, + mouseup: me.onMouseUp, + selectstart: me.stopSelect, + scope: me + }); + me.clearStart(); + me.active = false; + if (wasActive) { + me.onEnd(e); + me.fireEvent('dragend', me, e); + } + + + me._constrainRegion = Ext.EventObject.dragTracked = null + }, + + triggerStart: function(e) { + var me = this; + me.clearStart(); + me.active = true; + me.onStart(e); + me.fireEvent('dragstart', me, e); + }, + + clearStart : function() { + var timer = this.timer; + if (timer) { + clearTimeout(timer); + this.timer = null; + } + }, + + stopSelect : function(e) { + e.stopEvent(); + return false; + }, + + + onBeforeStart : function(e) { + + }, + + + onStart : function(xy) { + + }, + + + onDrag : function(e) { + + }, + + + onEnd : function(e) { + + }, + + + getDragTarget : function(){ + return this.dragTarget; + }, + + + getDragCt : function(){ + return this.el; + }, + + + getConstrainRegion: function() { + var me = this; + + if (me.constrainTo) { + if (me.constrainTo instanceof Ext.util.Region) { + return me.constrainTo; + } + if (!me._constrainRegion) { + me._constrainRegion = Ext.fly(me.constrainTo).getViewRegion(); + } + } else { + if (!me._constrainRegion) { + me._constrainRegion = me.getDragCt().getViewRegion(); + } + } + return me._constrainRegion; + }, + + getXY : function(constrain){ + return constrain ? this.constrainModes[constrain](this, this.lastXY) : this.lastXY; + }, + + + getOffset : function(constrain){ + var xy = this.getXY(constrain), + s = this.startXY; + + return [xy[0]-s[0], xy[1]-s[1]]; + }, + + constrainModes: { + + point: function(me, xy) { + var dr = me.dragRegion, + constrainTo = me.getConstrainRegion(); + + + if (!constrainTo) { + return xy; + } + + dr.x = dr.left = dr[0] = dr.right = xy[0]; + dr.y = dr.top = dr[1] = dr.bottom = xy[1]; + dr.constrainTo(constrainTo); + + return [dr.left, dr.top]; + }, + + + dragTarget: function(me, xy) { + var s = me.startXY, + dr = me.startRegion.copy(), + constrainTo = me.getConstrainRegion(), + adjust; + + + if (!constrainTo) { + return xy; + } + + + + + dr.translateBy(xy[0]-s[0], xy[1]-s[1]); + + + if (dr.right > constrainTo.right) { + xy[0] += adjust = (constrainTo.right - dr.right); + dr.left += adjust; + } + if (dr.left < constrainTo.left) { + xy[0] += (constrainTo.left - dr.left); + } + + + if (dr.bottom > constrainTo.bottom) { + xy[1] += adjust = (constrainTo.bottom - dr.bottom); + dr.top += adjust; + } + if (dr.top < constrainTo.top) { + xy[1] += (constrainTo.top - dr.top); + } + return xy; + } + } +}); + + +Ext.define('Ext.dd.DragZone', { + extend: Ext.dd.DragSource , + + + constructor : function(el, config){ + var me = this, + scroll = me.containerScroll; + + me.callParent([el, config]); + if (scroll) { + el = me.scrollEl || el; + el = Ext.get(el); + if (Ext.isObject(scroll)) { + el.ddScrollConfig = scroll; + } + Ext.dd.ScrollManager.register(el); + } + }, + + + + + + + getDragData : function(e){ + return Ext.dd.Registry.getHandleFromEvent(e); + }, + + + onInitDrag : function(x, y){ + this.proxy.update(this.dragData.ddel.cloneNode(true)); + this.onStartDrag(x, y); + return true; + }, + + + getRepairXY : function(e){ + return Ext.fly(this.dragData.ddel).getXY(); + }, + + destroy : function(){ + this.callParent(); + if (this.containerScroll) { + Ext.dd.ScrollManager.unregister(this.scrollEl || this.el); + } + } +}); + + +Ext.define('Ext.dd.ScrollManager', { + singleton: true, + + + + + constructor: function() { + var ddm = Ext.dd.DragDropManager; + ddm.fireEvents = Ext.Function.createSequence(ddm.fireEvents, this.onFire, this); + ddm.stopDrag = Ext.Function.createSequence(ddm.stopDrag, this.onStop, this); + this.doScroll = Ext.Function.bind(this.doScroll, this); + this.ddmInstance = ddm; + this.els = {}; + this.dragEl = null; + this.proc = {}; + }, + + onStop: function(e){ + var sm = Ext.dd.ScrollManager; + sm.dragEl = null; + sm.clearProc(); + }, + + triggerRefresh: function() { + if (this.ddmInstance.dragCurrent) { + this.ddmInstance.refreshCache(this.ddmInstance.dragCurrent.groups); + } + }, + + doScroll: function() { + if (this.ddmInstance.dragCurrent) { + var proc = this.proc, + procEl = proc.el, + ddScrollConfig = proc.el.ddScrollConfig, + inc = ddScrollConfig ? ddScrollConfig.increment : this.increment; + + if (!this.animate) { + if (procEl.scroll(proc.dir, inc)) { + this.triggerRefresh(); + } + } else { + procEl.scroll(proc.dir, inc, true, this.animDuration, this.triggerRefresh); + } + } + }, + + clearProc: function() { + var proc = this.proc; + if (proc.id) { + clearInterval(proc.id); + } + proc.id = 0; + proc.el = null; + proc.dir = ""; + }, + + startProc: function(el, dir) { + this.clearProc(); + this.proc.el = el; + this.proc.dir = dir; + var group = el.ddScrollConfig ? el.ddScrollConfig.ddGroup : undefined, + freq = (el.ddScrollConfig && el.ddScrollConfig.frequency) + ? el.ddScrollConfig.frequency + : this.frequency; + + if (group === undefined || this.ddmInstance.dragCurrent.ddGroup == group) { + this.proc.id = setInterval(this.doScroll, freq); + } + }, + + onFire: function(e, isDrop) { + if (isDrop || !this.ddmInstance.dragCurrent) { + return; + } + if (!this.dragEl || this.dragEl != this.ddmInstance.dragCurrent) { + this.dragEl = this.ddmInstance.dragCurrent; + + this.refreshCache(); + } + + var xy = e.getXY(), + pt = e.getPoint(), + proc = this.proc, + els = this.els, + id, el, r, c; + + for (id in els) { + el = els[id]; + r = el._region; + c = el.ddScrollConfig ? el.ddScrollConfig : this; + if (r && r.contains(pt) && el.isScrollable()) { + if (r.bottom - pt.y <= c.vthresh) { + if(proc.el != el){ + this.startProc(el, "down"); + } + return; + }else if (r.right - pt.x <= c.hthresh) { + if (proc.el != el) { + this.startProc(el, "left"); + } + return; + } else if(pt.y - r.top <= c.vthresh) { + if (proc.el != el) { + this.startProc(el, "up"); + } + return; + } else if(pt.x - r.left <= c.hthresh) { + if (proc.el != el) { + this.startProc(el, "right"); + } + return; + } + } + } + this.clearProc(); + }, + + + register : function(el){ + if (Ext.isArray(el)) { + for(var i = 0, len = el.length; i < len; i++) { + this.register(el[i]); + } + } else { + el = Ext.get(el); + this.els[el.id] = el; + } + }, + + + unregister : function(el){ + if(Ext.isArray(el)){ + for (var i = 0, len = el.length; i < len; i++) { + this.unregister(el[i]); + } + }else{ + el = Ext.get(el); + delete this.els[el.id]; + } + }, + + + vthresh : 25, + + + hthresh : 25, + + + increment : 100, + + + frequency : 500, + + + animate: true, + + + animDuration: 0.4, + + + ddGroup: undefined, + + + refreshCache : function(){ + var els = this.els, + id; + for (id in els) { + if(typeof els[id] == 'object'){ + els[id]._region = els[id].getRegion(); + } + } + } +}); + + +Ext.define('Ext.dd.DropTarget', { + extend: Ext.dd.DDTarget , + + + + constructor : function(el, config){ + this.el = Ext.get(el); + + Ext.apply(this, config); + + if(this.containerScroll){ + Ext.dd.ScrollManager.register(this.el); + } + + this.callParent([this.el.dom, this.ddGroup || this.group, + {isTarget: true}]); + }, + + + + + dropAllowed : Ext.baseCSSPrefix + 'dd-drop-ok', + + dropNotAllowed : Ext.baseCSSPrefix + 'dd-drop-nodrop', + + + isTarget : true, + + + isNotifyTarget : true, + + + notifyEnter : function(dd, e, data){ + if(this.overClass){ + this.el.addCls(this.overClass); + } + return this.dropAllowed; + }, + + + notifyOver : function(dd, e, data){ + return this.dropAllowed; + }, + + + notifyOut : function(dd, e, data){ + if(this.overClass){ + this.el.removeCls(this.overClass); + } + }, + + + notifyDrop : function(dd, e, data){ + return false; + }, + + destroy : function(){ + this.callParent(); + if(this.containerScroll){ + Ext.dd.ScrollManager.unregister(this.el); + } + } +}); + + +Ext.define('Ext.dd.Registry', { + singleton: true, + constructor: function() { + this.elements = {}; + this.handles = {}; + this.autoIdSeed = 0; + }, + + getId: function(el, autogen){ + if(typeof el == "string"){ + return el; + } + var id = el.id; + if(!id && autogen !== false){ + id = "extdd-" + (++this.autoIdSeed); + el.id = id; + } + return id; + }, + + + register : function(el, data){ + data = data || {}; + if (typeof el == "string") { + el = document.getElementById(el); + } + data.ddel = el; + this.elements[this.getId(el)] = data; + if (data.isHandle !== false) { + this.handles[data.ddel.id] = data; + } + if (data.handles) { + var hs = data.handles, + i, len; + for (i = 0, len = hs.length; i < len; i++) { + this.handles[this.getId(hs[i])] = data; + } + } + }, + + + unregister : function(el){ + var id = this.getId(el, false), + data = this.elements[id], + hs, i, len; + if(data){ + delete this.elements[id]; + if(data.handles){ + hs = data.handles; + for (i = 0, len = hs.length; i < len; i++) { + delete this.handles[this.getId(hs[i], false)]; + } + } + } + }, + + + getHandle : function(id){ + if(typeof id != "string"){ + id = id.id; + } + return this.handles[id]; + }, + + + getHandleFromEvent : function(e){ + var t = e.getTarget(); + return t ? this.handles[t.id] : null; + }, + + + getTarget : function(id){ + if(typeof id != "string"){ + id = id.id; + } + return this.elements[id]; + }, + + + getTargetFromEvent : function(e){ + var t = e.getTarget(); + return t ? this.elements[t.id] || this.handles[t.id] : null; + } +}); + + +Ext.define('Ext.dd.DropZone', { + extend: Ext.dd.DropTarget , + + + + getTargetFromEvent : function(e){ + return Ext.dd.Registry.getTargetFromEvent(e); + }, + + + onNodeEnter : function(n, dd, e, data){ + + }, + + + onNodeOver : function(n, dd, e, data){ + return this.dropAllowed; + }, + + + onNodeOut : function(n, dd, e, data){ + + }, + + + onNodeDrop : function(n, dd, e, data){ + return false; + }, + + + onContainerOver : function(dd, e, data){ + return this.dropNotAllowed; + }, + + + onContainerDrop : function(dd, e, data){ + return false; + }, + + + notifyEnter : function(dd, e, data){ + return this.dropNotAllowed; + }, + + + notifyOver : function(dd, e, data){ + var n = this.getTargetFromEvent(e); + if(!n) { + if(this.lastOverNode){ + this.onNodeOut(this.lastOverNode, dd, e, data); + this.lastOverNode = null; + } + return this.onContainerOver(dd, e, data); + } + if(this.lastOverNode != n){ + if(this.lastOverNode){ + this.onNodeOut(this.lastOverNode, dd, e, data); + } + this.onNodeEnter(n, dd, e, data); + this.lastOverNode = n; + } + return this.onNodeOver(n, dd, e, data); + }, + + + notifyOut : function(dd, e, data){ + if(this.lastOverNode){ + this.onNodeOut(this.lastOverNode, dd, e, data); + this.lastOverNode = null; + } + }, + + + notifyDrop : function(dd, e, data){ + var me = this, + n = me.getTargetFromEvent(e), + result = n ? + me.onNodeDrop(n, dd, e, data) : + me.onContainerDrop(dd, e, data); + + + + if (me.lastOverNode) { + me.onNodeOut(me.lastOverNode, dd, e, data); + me.lastOverNode = null; + } + return result; + }, + + + triggerCacheRefresh : function() { + Ext.dd.DDM.refreshCache(this.groups); + } +}); + + +Ext.define('Ext.direct.Event', { + alias: 'direct.event', + + status: true, + + + constructor: function(config) { + Ext.apply(this, config); + }, + + + getName: function() { + return this.name; + }, + + + getData: function() { + return this.data; + } +}); + + +Ext.define('Ext.direct.RemotingEvent', { + extend: Ext.direct.Event , + alias: 'direct.rpc', + + + getTransaction: function() { + var me = this; + + return me.transaction || Ext.direct.Manager.getTransaction(me.tid); + } +}); + + +Ext.define('Ext.direct.ExceptionEvent', { + extend: Ext.direct.RemotingEvent , + alias: 'direct.exception', + + status: false +}); + + + +Ext.define('Ext.direct.JsonProvider', { + extend: Ext.direct.Provider , + alias: 'direct.jsonprovider', + + + + + + + + parseResponse: function(response) { + if (!Ext.isEmpty(response.responseText)) { + if (Ext.isObject(response.responseText)) { + return response.responseText; + } + + return Ext.decode(response.responseText); + } + + return null; + }, + + + createEvents: function(response) { + var me = this, + data = null, + events = [], + event, i, len; + + try { + data = me.parseResponse(response); + } + catch (e) { + event = new Ext.direct.ExceptionEvent({ + data: e, + xhr: response, + code: Ext.direct.Manager.exceptions.PARSE, + message: 'Error parsing json response: \n\n ' + e + }); + + return [event]; + } + + if (Ext.isArray(data)) { + for (i = 0, len = data.length; i < len; ++i) { + events.push(me.createEvent(data[i])); + } + } + else if (Ext.isObject(data)) { + events.push(me.createEvent(data)); + } + + return events; + }, + + + createEvent: function(response) { + if (typeof response !== 'object'|| !('type' in response)) { + return new Ext.direct.ExceptionEvent({ + data: response, + code: Ext.direct.Manager.exceptions.DATA, + message: 'Invalid data: event type is not specified' + }); + } + + return Ext.create('direct.' + response.type, response); + } +}); + + +Ext.define('Ext.direct.PollingProvider', { + extend: Ext.direct.JsonProvider , + alias: 'direct.pollingprovider', + + + + + + + + + + + + + interval: 3000, + + + + + + constructor: function(config) { + var me = this; + + me.callParent(arguments); + + me.addEvents( + + 'beforepoll', + + + 'poll' + ); + }, + + + isConnected: function() { + return !!this.pollTask; + }, + + + connect: function() { + var me = this, + url = me.url; + + if (url && !me.pollTask) { + me.pollTask = Ext.TaskManager.start({ + run: me.runPoll, + interval: me.interval, + scope: me + }); + + me.fireEvent('connect', me); + } + }, + + + disconnect: function() { + var me = this; + + if (me.pollTask) { + Ext.TaskManager.stop(me.pollTask); + delete me.pollTask; + me.fireEvent('disconnect', me); + } + }, + + + runPoll: function() { + var me = this, + url = me.url; + + if (me.fireEvent('beforepoll', me) !== false) { + if (Ext.isFunction(url)) { + url(me.baseParams); + } + else { + Ext.Ajax.request({ + url: url, + callback: me.onData, + scope: me, + params: me.baseParams + }); + } + + me.fireEvent('poll', me); + } + }, + + + onData: function(opt, success, response) { + var me = this, + i, len, events; + + if (success) { + events = me.createEvents(response); + + for (i = 0, len = events.length; i < len; ++i) { + me.fireEvent('data', me, events[i]); + } + } + else { + events = new Ext.direct.ExceptionEvent({ + data: null, + code: Ext.direct.Manager.exceptions.TRANSPORT, + message: 'Unable to connect to the server.', + xhr: response + }); + + me.fireEvent('data', me, events); + } + } +}); + + +Ext.define('Ext.direct.RemotingMethod', { + + constructor: function(config) { + var me = this, + params = Ext.isDefined(config.params) ? config.params : config.len, + name, pLen, p, param; + + me.name = config.name; + me.formHandler = config.formHandler; + + if (Ext.isNumeric(params)) { + + me.len = params; + me.ordered = true; + } + else { + + me.params = {}; + pLen = params.length; + + for (p = 0; p < pLen; p++) { + param = params[p]; + name = Ext.isObject(param) ? param.name : param; + me.params[name] = true; + } + } + }, + + getArgs: function(params, paramOrder, paramsAsHash) { + var me = this, + args = [], + i, len; + + if (me.ordered) { + if (me.len > 0) { + + if (paramOrder) { + for (i = 0, len = paramOrder.length; i < len; i++) { + args.push(params[paramOrder[i]]); + } + } + else if (paramsAsHash) { + + args.push(params); + } + } + } + else { + args.push(params); + } + + return args; + }, + + + getCallData: function(args) { + var me = this, + data = null, + len = me.len, + params = me.params, + callback, scope, name, options; + + if (me.ordered) { + callback = args[len]; + scope = args[len + 1]; + options = args[len + 2]; + + if (len !== 0) { + data = args.slice(0, len); + } + } + else { + data = Ext.apply({}, args[0]); + callback = args[1]; + scope = args[2]; + options = args[3]; + + + for (name in data) { + if (data.hasOwnProperty(name) && !params[name]) { + delete data[name]; + } + } + } + + return { + data: data, + callback: callback, + scope: scope, + options: options + }; + } +}); + + +Ext.define('Ext.direct.Transaction', { + alias: 'direct.transaction', + alternateClassName: 'Ext.Direct.Transaction', + + statics: { + TRANSACTION_ID: 0 + }, + + + + + constructor: function(config) { + var me = this; + + Ext.apply(me, config); + + me.id = me.tid = ++me.self.TRANSACTION_ID; + me.retryCount = 0; + }, + + send: function() { + var me = this; + + me.provider.queueTransaction(me); + }, + + retry: function() { + var me = this; + + me.retryCount++; + me.send(); + }, + + getProvider: function() { + return this.provider; + } +}); + + +Ext.define('Ext.direct.RemotingProvider', { + extend: Ext.direct.JsonProvider , + alias: 'direct.remotingprovider', + + + + + + + + + + + + + + + + + + + + enableBuffer: 10, + + + maxRetries: 1, + + + + constructor: function(config) { + var me = this; + + me.callParent(arguments); + + me.addEvents( + + 'beforecall', + + + 'call', + + + 'beforecallback' + ); + + me.namespace = (Ext.isString(me.namespace)) ? Ext.ns(me.namespace) : me.namespace || Ext.global; + me.transactions = new Ext.util.MixedCollection(); + me.callBuffer = []; + }, + + + getNamespace: function(root, action) { + var parts, ns, i, l; + + root = root || Ext.global; + parts = action.toString().split('.'); + + for (i = 0, l = parts.length; i < l; i++) { + ns = parts[i]; + root = root[ns]; + + if (typeof root === 'undefined') { + return root; + } + } + + return root; + }, + + + createNamespaces: function(root, action) { + var parts, ns; + + root = root || Ext.global; + parts = action.toString().split('.'); + + for ( var i = 0, l = parts.length; i < l; i++ ) { + ns = parts[i]; + + root[ns] = root[ns] || {}; + root = root[ns]; + }; + + return root; + }, + + + initAPI: function() { + var me = this, + actions = me.actions, + namespace = me.namespace, + action, cls, methods, i, len, method; + + for (action in actions) { + if (actions.hasOwnProperty(action)) { + if (me.disableNestedActions) { + cls = namespace[action]; + + if (!cls) { + cls = namespace[action] = {}; + } + } + else { + cls = me.getNamespace(namespace, action); + + if (!cls) { + cls = me.createNamespaces(namespace, action); + } + } + + methods = actions[action]; + + for (i = 0, len = methods.length; i < len; ++i) { + method = new Ext.direct.RemotingMethod(methods[i]); + cls[method.name] = me.createHandler(action, method); + } + } + } + }, + + + createHandler: function(action, method) { + var me = this, + slice = Array.prototype.slice, + handler; + + if (!method.formHandler) { + handler = function() { + me.configureRequest(action, method, slice.call(arguments, 0)); + }; + } + else { + handler = function(form, callback, scope) { + me.configureFormRequest(action, method, form, callback, scope); + }; + } + + handler.directCfg = { + action: action, + method: method + }; + + return handler; + }, + + + isConnected: function() { + return !!this.connected; + }, + + + connect: function() { + var me = this; + + if (me.url) { + me.initAPI(); + me.connected = true; + me.fireEvent('connect', me); + } + }, + + + disconnect: function() { + var me = this; + + if (me.connected) { + me.connected = false; + me.fireEvent('disconnect', me); + } + }, + + + runCallback: function(transaction, event) { + var success = !!event.status, + funcName = success ? 'success' : 'failure', + callback, options, result; + + if (transaction && transaction.callback) { + callback = transaction.callback; + options = transaction.callbackOptions; + result = typeof event.result !== 'undefined' ? event.result : event.data; + + if (Ext.isFunction(callback)) { + callback(result, event, success, options); + } + else { + Ext.callback(callback[funcName], callback.scope, [result, event, success, options]); + Ext.callback(callback.callback, callback.scope, [result, event, success, options]); + } + } + }, + + + onData: function(options, success, response) { + var me = this, + i, len, events, event, transaction, transactions; + + if (success) { + events = me.createEvents(response); + + for (i = 0, len = events.length; i < len; ++i) { + event = events[i]; + transaction = me.getTransaction(event); + me.fireEvent('data', me, event); + + if (transaction && me.fireEvent('beforecallback', me, event, transaction) !== false) { + me.runCallback(transaction, event, true); + Ext.direct.Manager.removeTransaction(transaction); + } + } + } + else { + transactions = [].concat(options.transaction); + + for (i = 0, len = transactions.length; i < len; ++i) { + transaction = me.getTransaction(transactions[i]); + + if (transaction && transaction.retryCount < me.maxRetries) { + transaction.retry(); + } + else { + event = new Ext.direct.ExceptionEvent({ + data: null, + transaction: transaction, + code: Ext.direct.Manager.exceptions.TRANSPORT, + message: 'Unable to connect to the server.', + xhr: response + }); + + me.fireEvent('data', me, event); + + if (transaction && me.fireEvent('beforecallback', me, transaction) !== false) { + me.runCallback(transaction, event, false); + Ext.direct.Manager.removeTransaction(transaction); + } + } + } + } + }, + + + getTransaction: function(options) { + return options && options.tid ? Ext.direct.Manager.getTransaction(options.tid) : null; + }, + + + configureRequest: function(action, method, args) { + var me = this, + callData, data, callback, scope, opts, transaction, params; + + callData = method.getCallData(args); + data = callData.data; + callback = callData.callback; + scope = callData.scope; + opts = callData.options || {}; + + params = Ext.apply({}, { + provider: me, + args: args, + action: action, + method: method.name, + data: data, + callbackOptions: opts, + callback: scope && Ext.isFunction(callback) ? Ext.Function.bind(callback, scope) : callback + }); + + if (opts.timeout) { + Ext.applyIf(params, { + timeout: opts.timeout + }); + }; + + transaction = new Ext.direct.Transaction(params); + + if (me.fireEvent('beforecall', me, transaction, method) !== false) { + Ext.direct.Manager.addTransaction(transaction); + me.queueTransaction(transaction); + me.fireEvent('call', me, transaction, method); + } + }, + + + getCallData: function(transaction) { + return { + action: transaction.action, + method: transaction.method, + data: transaction.data, + type: 'rpc', + tid: transaction.id + }; + }, + + + sendRequest: function(data) { + var me = this, + request, callData, params, + enableUrlEncode = me.enableUrlEncode, + i, len; + + request = { + url: me.url, + callback: me.onData, + scope: me, + transaction: data, + timeout: me.timeout + }; + + + if (data.timeout) { + request.timeout = data.timeout; + } + + if (Ext.isArray(data)) { + callData = []; + + for (i = 0, len = data.length; i < len; ++i) { + callData.push(me.getCallData(data[i])); + } + } + else { + callData = me.getCallData(data); + } + + if (enableUrlEncode) { + params = {}; + params[Ext.isString(enableUrlEncode) ? enableUrlEncode : 'data'] = Ext.encode(callData); + request.params = params; + } + else { + request.jsonData = callData; + } + + Ext.Ajax.request(request); + }, + + + queueTransaction: function(transaction) { + var me = this, + enableBuffer = me.enableBuffer; + + if (transaction.form) { + me.sendFormRequest(transaction); + return; + } + + if (enableBuffer === false || typeof transaction.timeout !== 'undefined') { + me.sendRequest(transaction); + return; + } + + me.callBuffer.push(transaction); + + if (enableBuffer) { + if (!me.callTask) { + me.callTask = new Ext.util.DelayedTask(me.combineAndSend, me); + } + + me.callTask.delay(Ext.isNumber(enableBuffer) ? enableBuffer : 10); + } + else { + me.combineAndSend(); + } + }, + + + combineAndSend : function() { + var me = this, + buffer = me.callBuffer, + len = buffer.length; + + if (len > 0) { + me.sendRequest(len == 1 ? buffer[0] : buffer); + me.callBuffer = []; + } + }, + + + configureFormRequest: function(action, method, form, callback, scope) { + var me = this, + transaction, isUpload, params; + + transaction = new Ext.direct.Transaction({ + provider: me, + action: action, + method: method.name, + args: [form, callback, scope], + callback: scope && Ext.isFunction(callback) ? Ext.Function.bind(callback, scope) : callback, + isForm: true + }); + + if (me.fireEvent('beforecall', me, transaction, method) !== false) { + Ext.direct.Manager.addTransaction(transaction); + isUpload = String(form.getAttribute("enctype")).toLowerCase() == 'multipart/form-data'; + + params = { + extTID: transaction.id, + extAction: action, + extMethod: method.name, + extType: 'rpc', + extUpload: String(isUpload) + }; + + + + Ext.apply(transaction, { + form: Ext.getDom(form), + isUpload: isUpload, + params: callback && Ext.isObject(callback.params) ? Ext.apply(params, callback.params) : params + }); + + me.fireEvent('call', me, transaction, method); + me.sendFormRequest(transaction); + } + }, + + + sendFormRequest: function(transaction) { + var me = this; + + Ext.Ajax.request({ + url: me.url, + params: transaction.params, + callback: me.onData, + scope: me, + form: transaction.form, + isUpload: transaction.isUpload, + transaction: transaction + }); + } +}); + + +Ext.define('Ext.dom.Layer', { + extend: Ext.Element , + + alternateClassName: 'Ext.Layer', + + + + + + + + + + + + + + + + + + + + + + + statics: { + shims: [] + }, + + isLayer: true, + + localXYNames: { + get: 'getLocalXY', + set: 'setLocalXY' + }, + + + constructor: function(config, existingEl) { + config = config || {}; + var me = this, + dh = Ext.DomHelper, + cp = config.parentEl, + pel = cp ? Ext.getDom(cp) : document.body, + hm = config.hideMode, + cls = Ext.baseCSSPrefix + (config.fixed && !(Ext.isIE6 || Ext.isIEQuirks) ? 'fixed-layer' : 'layer'); + + + + + me.el = me; + + if (existingEl) { + me.dom = Ext.getDom(existingEl); + } + if (!me.dom) { + me.dom = dh.append(pel, config.dh || { + tag: 'div', + cls: cls + }); + } else { + me.addCls(cls); + if (!me.dom.parentNode) { + pel.appendChild(me.dom); + } + } + + if (config.preventSync) { + me.preventSync = true; + } + + if (config.id) { + me.id = me.dom.id = config.id; + } else { + me.id = Ext.id(me.dom); + } + + Ext.Element.addToCache(me); + + if (config.cls) { + me.addCls(config.cls); + } + me.constrain = config.constrain !== false; + + + + + if (hm) { + me.setVisibilityMode(Ext.Element[hm.toUpperCase()]); + if (me.visibilityMode == Ext.Element.ASCLASS) { + me.visibilityCls = config.visibilityCls; + } + } else if (config.useDisplay) { + me.setVisibilityMode(Ext.Element.DISPLAY); + } else { + me.setVisibilityMode(Ext.Element.VISIBILITY); + } + + if (config.shadow) { + me.shadowOffset = config.shadowOffset || 4; + me.shadow = new Ext.Shadow({ + offset: me.shadowOffset, + mode: config.shadow, + fixed: config.fixed + }); + me.disableShadow(); + } else { + me.shadowOffset = 0; + } + me.useShim = config.shim !== false && Ext.useShims; + if (config.hidden === true) { + me.hide(); + } else { + me.show(); + } + }, + + getZIndex: function() { + return parseInt((this.getShim() || this).getStyle('z-index'), 10); + }, + + getShim: function() { + var me = this, + shim, pn; + + if (!me.useShim) { + return null; + } + if (!me.shim) { + shim = me.self.shims.shift(); + if (!shim) { + shim = me.createShim(); + shim.enableDisplayMode('block'); + shim.hide(); + } + pn = me.dom.parentNode; + if (shim.dom.parentNode != pn) { + pn.insertBefore(shim.dom, me.dom); + } + me.shim = shim; + } + return me.shim; + }, + + hideShim: function() { + var me = this; + + if (me.shim) { + me.shim.setDisplayed(false); + me.self.shims.push(me.shim); + delete me.shim; + } + }, + + disableShadow: function() { + var me = this; + + if (me.shadow && !me.shadowDisabled) { + me.shadowDisabled = true; + me.shadow.hide(); + me.lastShadowOffset = me.shadowOffset; + me.shadowOffset = 0; + } + }, + + enableShadow: function(show) { + var me = this; + + if (me.shadow && me.shadowDisabled) { + me.shadowDisabled = false; + me.shadowOffset = me.lastShadowOffset; + delete me.lastShadowOffset; + if (show) { + me.sync(true); + } + } + }, + + + sync: function(doShow) { + var me = this, + shadow = me.shadow, + shadowPos, shimStyle, shadowSize, + shim, xy, x, y, w, h, shimIndex; + + if (me.preventSync) { + return; + } + + if (!me.updating && me.isVisible() && (shadow || me.useShim)) { + shim = me.getShim(); + xy = me[me.localXYNames.get](); + x = xy[0]; + y = xy[1]; + w = me.dom.offsetWidth; + h = me.dom.offsetHeight; + + if (shadow && !me.shadowDisabled) { + if (doShow && !shadow.isVisible()) { + shadow.show(me); + } else { + shadow.realign(x, y, w, h); + } + if (shim) { + + shimIndex = shim.getStyle('z-index'); + if (shimIndex > me.zindex) { + me.shim.setStyle('z-index', me.zindex - 2); + } + shim.show(); + + if (shadow.isVisible()) { + shadowPos = shadow.el.getXY(); + shimStyle = shim.dom.style; + shadowSize = shadow.el.getSize(); + if (Ext.supports.CSS3BoxShadow) { + shadowSize.height += 6; + shadowSize.width += 4; + shadowPos[0] -= 2; + shadowPos[1] -= 4; + } + shimStyle.left = (shadowPos[0]) + 'px'; + shimStyle.top = (shadowPos[1]) + 'px'; + shimStyle.width = (shadowSize.width) + 'px'; + shimStyle.height = (shadowSize.height) + 'px'; + } else { + shim.setSize(w, h); + shim[me.localXYNames.set](x, y); + } + } + } else if (shim) { + + shimIndex = shim.getStyle('z-index'); + if (shimIndex > me.zindex) { + me.shim.setStyle('z-index', me.zindex - 2); + } + shim.show(); + shim.setSize(w, h); + shim[me.localXYNames.set](x, y); + } + } + return me; + }, + + remove: function() { + this.hideUnders(); + this.callParent(); + }, + + + beginUpdate: function() { + this.updating = true; + }, + + + endUpdate: function() { + this.updating = false; + this.sync(true); + }, + + + hideUnders: function() { + if (this.shadow) { + this.shadow.hide(); + } + this.hideShim(); + }, + + + constrainXY: function() { + if (this.constrain) { + var vw = Ext.Element.getViewWidth(), + vh = Ext.Element.getViewHeight(), + s = Ext.getDoc().getScroll(), + xy = this.getXY(), + x = xy[0], + y = xy[1], + so = this.shadowOffset, + w = this.dom.offsetWidth + so, + h = this.dom.offsetHeight + so, + moved = false; + + if ((x + w) > vw + s.left) { + x = vw - w - so; + moved = true; + } + if ((y + h) > vh + s.top) { + y = vh - h - so; + moved = true; + } + + if (x < s.left) { + x = s.left; + moved = true; + } + if (y < s.top) { + y = s.top; + moved = true; + } + if (moved) { + Ext.Layer.superclass.setXY.call(this, [x, y]); + this.sync(); + } + } + return this; + }, + + getConstrainOffset: function() { + return this.shadowOffset; + }, + + + setVisible: function(visible, animate, duration, callback, easing) { + var me = this, + cb; + + + cb = function() { + if (visible) { + me.sync(true); + } + if (callback) { + callback(); + } + }; + + + if (!visible) { + me.hideUnders(true); + } + me.callParent([visible, animate, duration, callback, easing]); + if (!animate) { + cb(); + } + return me; + }, + + + beforeFx: function() { + this.beforeAction(); + return this.callParent(arguments); + }, + + + afterFx: function() { + this.callParent(arguments); + this.sync(this.isVisible()); + }, + + + beforeAction: function() { + if (!this.updating && this.shadow) { + this.shadow.hide(); + } + }, + + + setLeft: function(left) { + this.callParent(arguments); + return this.sync(); + }, + + setTop: function(top) { + this.callParent(arguments); + return this.sync(); + }, + + setLeftTop: function(left, top) { + this.callParent(arguments); + return this.sync(); + }, + + setLocalX: function() { + this.callParent(arguments); + return this.sync(); + }, + + setLocalXY: function() { + this.callParent(arguments); + return this.sync(); + }, + + setLocalY: function() { + this.callParent(arguments); + return this.sync(); + }, + + setXY: function(xy, animate, duration, callback, easing) { + var me = this; + + + callback = me.createCB(callback); + + me.fixDisplay(); + me.beforeAction(); + me.callParent([xy, animate, duration, callback, easing]); + if (!animate) { + callback(); + } + return me; + }, + + + createCB: function(callback) { + var me = this, + showShadow = me.shadow && me.shadow.isVisible(); + + return function() { + me.constrainXY(); + me.sync(showShadow); + if (callback) { + callback(); + } + }; + }, + + + setX: function(x, animate, duration, callback, easing) { + this.setXY([x, this.getY()], animate, duration, callback, easing); + return this; + }, + + + setY: function(y, animate, duration, callback, easing) { + this.setXY([this.getX(), y], animate, duration, callback, easing); + return this; + }, + + + setSize: function(w, h, animate, duration, callback, easing) { + var me = this; + + + callback = me.createCB(callback); + + me.beforeAction(); + me.callParent([w, h, animate, duration, callback, easing]); + if (!animate) { + callback(); + } + return me; + }, + + + setWidth: function(w, animate, duration, callback, easing) { + var me = this; + + + callback = me.createCB(callback); + + me.beforeAction(); + me.callParent([w, animate, duration, callback, easing]); + if (!animate) { + callback(); + } + return me; + }, + + + setHeight: function(h, animate, duration, callback, easing) { + var me = this; + + + callback = me.createCB(callback); + + me.beforeAction(); + me.callParent([h, animate, duration, callback, easing]); + if (!animate) { + callback(); + } + return me; + }, + + + setBounds: function(x, y, width, height, animate, duration, callback, easing) { + var me = this; + + + callback = me.createCB(callback); + + me.beforeAction(); + if (!animate) { + Ext.Layer.superclass.setXY.call(me, [x, y]); + Ext.Layer.superclass.setSize.call(me, width, height); + callback(); + } else { + me.callParent([x, y, width, height, animate, duration, callback, easing]); + } + return me; + }, + + + setZIndex: function(zindex) { + var me = this; + + me.zindex = zindex; + if (me.getShim()) { + me.shim.setStyle('z-index', zindex++); + } + if (me.shadow) { + me.shadow.setZIndex(zindex++); + } + return me.setStyle('z-index', zindex); + }, + + onOpacitySet: function(opacity){ + var shadow = this.shadow; + if (shadow) { + shadow.setOpacity(opacity); + } + } +}); + + +Ext.define('Ext.draw.Matrix', { + + + + + + + + constructor: function(a, b, c, d, e, f) { + if (a != null) { + this.matrix = [[a, c, e], [b, d, f], [0, 0, 1]]; + } + else { + this.matrix = [[1, 0, 0], [0, 1, 0], [0, 0, 1]]; + } + }, + + add: function(a, b, c, d, e, f) { + var me = this, + out = [[], [], []], + matrix = [[a, c, e], [b, d, f], [0, 0, 1]], + x, + y, + z, + res; + + for (x = 0; x < 3; x++) { + for (y = 0; y < 3; y++) { + res = 0; + for (z = 0; z < 3; z++) { + res += me.matrix[x][z] * matrix[z][y]; + } + out[x][y] = res; + } + } + me.matrix = out; + }, + + prepend: function(a, b, c, d, e, f) { + var me = this, + out = [[], [], []], + matrix = [[a, c, e], [b, d, f], [0, 0, 1]], + x, + y, + z, + res; + + for (x = 0; x < 3; x++) { + for (y = 0; y < 3; y++) { + res = 0; + for (z = 0; z < 3; z++) { + res += matrix[x][z] * me.matrix[z][y]; + } + out[x][y] = res; + } + } + me.matrix = out; + }, + + invert: function() { + var matrix = this.matrix, + a = matrix[0][0], + b = matrix[1][0], + c = matrix[0][1], + d = matrix[1][1], + e = matrix[0][2], + f = matrix[1][2], + x = a * d - b * c; + return new Ext.draw.Matrix(d / x, -b / x, -c / x, a / x, (c * f - d * e) / x, (b * e - a * f) / x); + }, + + clone: function() { + var matrix = this.matrix, + a = matrix[0][0], + b = matrix[1][0], + c = matrix[0][1], + d = matrix[1][1], + e = matrix[0][2], + f = matrix[1][2]; + return new Ext.draw.Matrix(a, b, c, d, e, f); + }, + + translate: function(x, y) { + this.prepend(1, 0, 0, 1, x, y); + }, + + scale: function(x, y, cx, cy) { + var me = this; + if (y == null) { + y = x; + } + me.add(x, 0, 0, y, cx * (1 - x), cy * (1 - y)); + }, + + rotate: function(a, x, y) { + a = Ext.draw.Draw.rad(a); + var me = this, + cos = +Math.cos(a).toFixed(9), + sin = +Math.sin(a).toFixed(9); + me.add(cos, sin, -sin, cos, x - cos * x + sin * y, -(sin * x) + y - cos * y); + }, + + x: function(x, y) { + var matrix = this.matrix; + return x * matrix[0][0] + y * matrix[0][1] + matrix[0][2]; + }, + + y: function(x, y) { + var matrix = this.matrix; + return x * matrix[1][0] + y * matrix[1][1] + matrix[1][2]; + }, + + get: function(i, j) { + return + this.matrix[i][j].toFixed(4); + }, + + toString: function() { + var me = this; + return [me.get(0, 0), me.get(0, 1), me.get(1, 0), me.get(1, 1), 0, 0].join(); + }, + + toSvg: function() { + var me = this; + return "matrix(" + [me.get(0, 0), me.get(1, 0), me.get(0, 1), me.get(1, 1), me.get(0, 2), me.get(1, 2)].join() + ")"; + }, + + toFilter: function(dx, dy) { + var me = this; + dx = dx || 0; + dy = dy || 0; + return "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', filterType='bilinear', M11=" + me.get(0, 0) + + ", M12=" + me.get(0, 1) + ", M21=" + me.get(1, 0) + ", M22=" + me.get(1, 1) + + ", Dx=" + (me.get(0, 2) + dx) + ", Dy=" + (me.get(1, 2) + dy) + ")"; + }, + + offset: function() { + var matrix = this.matrix; + return [(matrix[0][2] || 0).toFixed(4), (matrix[1][2] || 0).toFixed(4)]; + }, + + + split: function () { + function norm(a) { + return a[0] * a[0] + a[1] * a[1]; + } + function normalize(a) { + var mag = Math.sqrt(norm(a)); + a[0] /= mag; + a[1] /= mag; + } + var matrix = this.matrix, + out = { + translateX: matrix[0][2], + translateY: matrix[1][2] + }, + row; + + + row = [[matrix[0][0], matrix[0][1]], [matrix[1][1], matrix[1][1]]]; + out.scaleX = Math.sqrt(norm(row[0])); + normalize(row[0]); + + out.shear = row[0][0] * row[1][0] + row[0][1] * row[1][1]; + row[1] = [row[1][0] - row[0][0] * out.shear, row[1][1] - row[0][1] * out.shear]; + + out.scaleY = Math.sqrt(norm(row[1])); + normalize(row[1]); + out.shear /= out.scaleY; + + + out.rotate = Math.asin(-row[0][1]); + + out.isSimple = !+out.shear.toFixed(9) && (out.scaleX.toFixed(9) == out.scaleY.toFixed(9) || !out.rotate); + + return out; + } +}); + + +Ext.define('Ext.draw.SpriteDD', { + extend: Ext.dd.DragSource , + + constructor : function(sprite, cfg){ + var me = this, + el = sprite.el; + me.sprite = sprite; + me.el = el; + me.dragData = {el: el, sprite: sprite}; + me.callParent([el, cfg]); + me.sprite.setStyle('cursor', 'move'); + }, + + showFrame: Ext.emptyFn, + createFrame : Ext.emptyFn, + + getDragEl : function(e){ + return this.el; + }, + + getRegion: function() { + var me = this, + el = me.el, + pos, x1, x2, y1, y2, t, r, b, l, bbox, sprite; + + sprite = me.sprite; + bbox = sprite.getBBox(); + + try { + pos = Ext.Element.getXY(el); + } catch (e) { } + + if (!pos) { + return null; + } + + x1 = pos[0]; + x2 = x1 + bbox.width; + y1 = pos[1]; + y2 = y1 + bbox.height; + + return new Ext.util.Region(y1, x2, y2, x1); + }, + + + + startDrag: function(x, y) { + var me = this, + attr = me.sprite.attr; + me.prev = me.sprite.surface.transformToViewBox(x, y); + }, + + onDrag: function(e) { + var xy = e.getXY(), + me = this, + sprite = me.sprite, + attr = sprite.attr, dx, dy; + xy = me.sprite.surface.transformToViewBox(xy[0], xy[1]); + dx = xy[0] - me.prev[0]; + dy = xy[1] - me.prev[1]; + sprite.setAttributes({ + translate: { + x: attr.translation.x + dx, + y: attr.translation.y + dy + } + }, true); + me.prev = xy; + }, + + setDragElPos: function () { + + return false; + } +}); + + +Ext.define('Ext.draw.Sprite', { + + + + mixins: { + observable: Ext.util.Observable , + animate: Ext.util.Animate + }, + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + dirty: false, + dirtyHidden: false, + dirtyTransform: false, + dirtyPath: true, + dirtyFont: true, + zIndexDirty: true, + + + isSprite: true, + zIndex: 0, + fontProperties: [ + 'font', + 'font-size', + 'font-weight', + 'font-style', + 'font-family', + 'text-anchor', + 'text' + ], + pathProperties: [ + 'x', + 'y', + 'd', + 'path', + 'height', + 'width', + 'radius', + 'r', + 'rx', + 'ry', + 'cx', + 'cy' + ], + constructor: function(config) { + var me = this; + config = Ext.merge({}, config || {}); + me.id = Ext.id(null, 'ext-sprite-'); + me.transformations = []; + Ext.copyTo(this, config, 'surface,group,type,draggable'); + + me.bbox = {}; + me.attr = { + zIndex: 0, + translation: { + x: null, + y: null + }, + rotation: { + degrees: null, + x: null, + y: null + }, + scaling: { + x: null, + y: null, + cx: null, + cy: null + } + }; + + delete config.surface; + delete config.group; + delete config.type; + delete config.draggable; + me.setAttributes(config); + me.addEvents( + + 'beforedestroy', + + 'destroy', + + 'render', + + 'mousedown', + + 'mouseup', + + 'mouseover', + + 'mouseout', + + 'mousemove', + + 'click' + ); + me.mixins.observable.constructor.apply(this, arguments); + }, + + + + initDraggable: function() { + var me = this; + + if (!me.el) { + me.surface.createSpriteElement(me); + } + me.dd = new Ext.draw.SpriteDD(me, Ext.isBoolean(me.draggable) ? null : me.draggable); + me.on('beforedestroy', me.dd.destroy, me.dd); + }, + + + setAttributes: function(attrs, redraw) { + var me = this, + fontProps = me.fontProperties, + fontPropsLength = fontProps.length, + pathProps = me.pathProperties, + pathPropsLength = pathProps.length, + hasSurface = !!me.surface, + custom = hasSurface && me.surface.customAttributes || {}, + spriteAttrs = me.attr, + dirtyBBox = false, + attr, i, newTranslation, translation, newRotate, rotation, newScaling, scaling; + + attrs = Ext.apply({}, attrs); + for (attr in custom) { + if (attrs.hasOwnProperty(attr) && typeof custom[attr] == "function") { + Ext.apply(attrs, custom[attr].apply(me, [].concat(attrs[attr]))); + } + } + + + if (!!attrs.hidden !== !!spriteAttrs.hidden) { + me.dirtyHidden = true; + } + + + for (i = 0; i < pathPropsLength; i++) { + attr = pathProps[i]; + if (attr in attrs && attrs[attr] !== spriteAttrs[attr]) { + me.dirtyPath = true; + dirtyBBox = true; + break; + } + } + + + if ('zIndex' in attrs) { + me.zIndexDirty = true; + } + + + if ('text' in attrs) { + me.dirtyFont = true; + dirtyBBox = true; + } + + for (i = 0; i < fontPropsLength; i++) { + attr = fontProps[i]; + if (attr in attrs && attrs[attr] !== spriteAttrs[attr]) { + me.dirtyFont = true; + dirtyBBox = true; + break; + } + } + + newTranslation = attrs.translation || attrs.translate; + delete attrs.translate; + delete attrs.translation; + translation = spriteAttrs.translation; + if (newTranslation) { + if (('x' in newTranslation && newTranslation.x !== translation.x) || + ('y' in newTranslation && newTranslation.y !== translation.y)) { + me.dirtyTransform = true; + translation.x = newTranslation.x; + translation.y = newTranslation.y; + } + } + + newRotate = attrs.rotation || attrs.rotate; + rotation = spriteAttrs.rotation; + delete attrs.rotate; + delete attrs.rotation; + if (newRotate) { + if (('x' in newRotate && newRotate.x !== rotation.x) || + ('y' in newRotate && newRotate.y !== rotation.y) || + ('degrees' in newRotate && newRotate.degrees !== rotation.degrees)) { + me.dirtyTransform = true; + rotation.x = newRotate.x; + rotation.y = newRotate.y; + rotation.degrees = newRotate.degrees; + } + } + + newScaling = attrs.scaling || attrs.scale; + scaling = spriteAttrs.scaling; + delete attrs.scale; + delete attrs.scaling; + if (newScaling) { + if (('x' in newScaling && newScaling.x !== scaling.x) || + ('y' in newScaling && newScaling.y !== scaling.y) || + ('cx' in newScaling && newScaling.cx !== scaling.cx) || + ('cy' in newScaling && newScaling.cy !== scaling.cy)) { + me.dirtyTransform = true; + scaling.x = newScaling.x; + scaling.y = newScaling.y; + scaling.cx = newScaling.cx; + scaling.cy = newScaling.cy; + } + } + + + if (!me.dirtyTransform && dirtyBBox) { + if (spriteAttrs.scaling.x === null || + spriteAttrs.scaling.y === null || + spriteAttrs.rotation.y === null || + spriteAttrs.rotation.y === null) { + me.dirtyTransform = true; + } + } + + Ext.apply(spriteAttrs, attrs); + me.dirty = true; + + if (redraw === true && hasSurface) { + me.redraw(); + } + return this; + }, + + + getBBox: function() { + return this.surface.getBBox(this); + }, + + setText: function(text) { + return this.surface.setText(this, text); + }, + + + hide: function(redraw) { + this.setAttributes({ + hidden: true + }, redraw); + return this; + }, + + + show: function(redraw) { + this.setAttributes({ + hidden: false + }, redraw); + return this; + }, + + + remove: function() { + if (this.surface) { + this.surface.remove(this); + return true; + } + return false; + }, + + onRemove: function() { + this.surface.onRemove(this); + }, + + + destroy: function() { + var me = this; + if (me.fireEvent('beforedestroy', me) !== false) { + me.remove(); + me.surface.onDestroy(me); + me.clearListeners(); + me.fireEvent('destroy'); + } + }, + + + redraw: function() { + this.surface.renderItem(this); + return this; + }, + + + setStyle: function() { + this.el.setStyle.apply(this.el, arguments); + return this; + }, + + + addCls: function(obj) { + this.surface.addCls(this, obj); + return this; + }, + + + removeCls: function(obj) { + this.surface.removeCls(this, obj); + return this; + } +}); + + +Ext.define('Ext.draw.Text', { + extend: Ext.draw.Component , + + alias: 'widget.text', + + + text: '', + + + + + + focusable: false, + viewBox: false, + autoSize: true, + baseCls: Ext.baseCSSPrefix + 'surface ' + Ext.baseCSSPrefix + 'draw-text', + + initComponent: function() { + var me = this; + + me.textConfig = Ext.apply({ + type: 'text', + text: me.text, + rotate: { + degrees: me.degrees || 0 + } + }, me.textStyle); + Ext.apply(me.textConfig, me.getStyles(me.styleSelectors || me.styleSelector)); + + + + me.initialConfig.items = [me.textConfig]; + me.callParent(arguments); + }, + + + getStyles: function(selectors) { + selectors = Ext.Array.from(selectors); + var i = 0, + len = selectors.length, + rule, + style, + prop, + result = {}; + + for (; i < len; i++) { + + rule = Ext.util.CSS.getRule(selectors[i]); + if (rule) { + style = rule.style; + if (style) { + Ext.apply(result, { + 'font-family': style.fontFamily, + 'font-weight': style.fontWeight, + 'line-height': style.lineHeight, + 'font-size': style.fontSize, + fill: style.color + }); + } + } + } + return result; + }, + + + setAngle: function(degrees) { + var me = this, + surface, + sprite; + + if (me.rendered) { + surface = me.surface; + sprite = surface.items.items[0]; + + me.degrees = degrees; + sprite.setAttributes({ + rotate: { + degrees: degrees + } + }, true); + if (me.autoSize || me.viewBox) { + me.updateLayout(); + } + } else { + me.degrees = degrees; + } + }, + + + setText: function(text) { + var me = this, + surface, + sprite; + + if (me.rendered) { + surface = me.surface; + sprite = surface.items.items[0]; + + me.text = text || ''; + surface.remove(sprite); + me.textConfig.type = 'text'; + me.textConfig.text = me.text; + sprite = surface.add(me.textConfig); + sprite.setAttributes({ + rotate: { + degrees: me.degrees + } + }, true); + if (me.autoSize || me.viewBox) { + me.updateLayout(); + } + } else { + me.on({ + render: function() { + me.setText(text); + }, + single: true + }); + } + } +}); + + +Ext.define('Ext.draw.engine.ImageExporter', { + singleton: true, + + + defaultUrl: 'http://svg.sencha.io', + + + supportedTypes: ['image/png', 'image/jpeg'], + + + widthParam: 'width', + + + heightParam: 'height', + + + typeParam: 'type', + + + svgParam: 'svg', + + formCls: Ext.baseCSSPrefix + 'hide-display', + + + generate: function(surface, config) { + config = config || {}; + var me = this, + type = config.type, + form; + + if (Ext.Array.indexOf(me.supportedTypes, type) === -1) { + return false; + } + + form = Ext.getBody().createChild({ + tag: 'form', + method: 'POST', + action: config.url || me.defaultUrl, + cls: me.formCls, + children: [{ + tag: 'input', + type: 'hidden', + name: config.widthParam || me.widthParam, + value: config.width || surface.width + }, { + tag: 'input', + type: 'hidden', + name: config.heightParam || me.heightParam, + value: config.height || surface.height + }, { + tag: 'input', + type: 'hidden', + name: config.typeParam || me.typeParam, + value: type + }, { + tag: 'input', + type: 'hidden', + name: config.svgParam || me.svgParam + }] + }); + + + form.last(null, true).value = Ext.draw.engine.SvgExporter.generate(surface); + + form.dom.submit(); + form.remove(); + return true; + } + +}); + + +Ext.define('Ext.draw.engine.Svg', { + + + + extend: Ext.draw.Surface , + + + + + + engine: 'Svg', + + trimRe: /^\s+|\s+$/g, + spacesRe: /\s+/, + xlink: "http:/" + "/www.w3.org/1999/xlink", + + translateAttrs: { + radius: "r", + radiusX: "rx", + radiusY: "ry", + path: "d", + lineWidth: "stroke-width", + fillOpacity: "fill-opacity", + strokeOpacity: "stroke-opacity", + strokeLinejoin: "stroke-linejoin" + }, + + parsers: {}, + + minDefaults: { + circle: { + cx: 0, + cy: 0, + r: 0, + fill: "none", + stroke: null, + "stroke-width": null, + opacity: null, + "fill-opacity": null, + "stroke-opacity": null + }, + ellipse: { + cx: 0, + cy: 0, + rx: 0, + ry: 0, + fill: "none", + stroke: null, + "stroke-width": null, + opacity: null, + "fill-opacity": null, + "stroke-opacity": null + }, + rect: { + x: 0, + y: 0, + width: 0, + height: 0, + rx: 0, + ry: 0, + fill: "none", + stroke: null, + "stroke-width": null, + opacity: null, + "fill-opacity": null, + "stroke-opacity": null + }, + text: { + x: 0, + y: 0, + "text-anchor": "start", + "font-family": null, + "font-size": null, + "font-weight": null, + "font-style": null, + fill: "#000", + stroke: null, + "stroke-width": null, + opacity: null, + "fill-opacity": null, + "stroke-opacity": null + }, + path: { + d: "M0,0", + fill: "none", + stroke: null, + "stroke-width": null, + opacity: null, + "fill-opacity": null, + "stroke-opacity": null + }, + image: { + x: 0, + y: 0, + width: 0, + height: 0, + preserveAspectRatio: "none", + opacity: null + } + }, + + createSvgElement: function(type, attrs) { + var el = this.domRef.createElementNS("http:/" + "/www.w3.org/2000/svg", type), + key; + if (attrs) { + for (key in attrs) { + el.setAttribute(key, String(attrs[key])); + } + } + return el; + }, + + createSpriteElement: function(sprite) { + + var el = this.createSvgElement(sprite.type); + el.id = sprite.id; + if (el.style) { + el.style.webkitTapHighlightColor = "rgba(0,0,0,0)"; + } + sprite.el = Ext.get(el); + this.applyZIndex(sprite); + sprite.matrix = new Ext.draw.Matrix(); + sprite.bbox = { + plain: 0, + transform: 0 + }; + this.applyAttrs(sprite); + this.applyTransformations(sprite); + sprite.fireEvent("render", sprite); + return el; + }, + + getBBoxText: function (sprite) { + var bbox = {}, + bb, height, width, i, ln, el; + + if (sprite && sprite.el) { + el = sprite.el.dom; + try { + bbox = el.getBBox(); + return bbox; + } catch(e) { + + } + bbox = {x: bbox.x, y: Infinity, width: 0, height: 0}; + ln = el.getNumberOfChars(); + for (i = 0; i < ln; i++) { + bb = el.getExtentOfChar(i); + bbox.y = Math.min(bb.y, bbox.y); + height = bb.y + bb.height - bbox.y; + bbox.height = Math.max(bbox.height, height); + width = bb.x + bb.width - bbox.x; + bbox.width = Math.max(bbox.width, width); + } + return bbox; + } + }, + + hide: function() { + Ext.get(this.el).hide(); + }, + + show: function() { + Ext.get(this.el).show(); + }, + + hidePrim: function(sprite) { + this.addCls(sprite, Ext.baseCSSPrefix + 'hide-visibility'); + }, + + showPrim: function(sprite) { + this.removeCls(sprite, Ext.baseCSSPrefix + 'hide-visibility'); + }, + + getDefs: function() { + return this._defs || (this._defs = this.createSvgElement("defs")); + }, + + transform: function(sprite, matrixOnly) { + var me = this, + matrix = new Ext.draw.Matrix(), + transforms = sprite.transformations, + transformsLength = transforms.length, + i = 0, + transform, type; + + for (; i < transformsLength; i++) { + transform = transforms[i]; + type = transform.type; + if (type == "translate") { + matrix.translate(transform.x, transform.y); + } + else if (type == "rotate") { + matrix.rotate(transform.degrees, transform.x, transform.y); + } + else if (type == "scale") { + matrix.scale(transform.x, transform.y, transform.centerX, transform.centerY); + } + } + sprite.matrix = matrix; + if (!matrixOnly) { + sprite.el.set({transform: matrix.toSvg()}); + } + }, + + setSize: function(width, height) { + var me = this, + el = me.el; + + width = +width || me.width; + height = +height || me.height; + me.width = width; + me.height = height; + + el.setSize(width, height); + el.set({ + width: width, + height: height + }); + me.callParent([width, height]); + }, + + + getRegion: function() { + + + var svgXY = this.el.getXY(), + rectXY = this.bgRect.getXY(), + max = Math.max, + x = max(svgXY[0], rectXY[0]), + y = max(svgXY[1], rectXY[1]); + return { + left: x, + top: y, + right: x + this.width, + bottom: y + this.height + }; + }, + + onRemove: function(sprite) { + if (sprite.el) { + sprite.el.destroy(); + delete sprite.el; + } + this.callParent(arguments); + }, + + setViewBox: function(x, y, width, height) { + if (isFinite(x) && isFinite(y) && isFinite(width) && isFinite(height)) { + this.callParent(arguments); + this.el.dom.setAttribute("viewBox", [x, y, width, height].join(" ")); + } + }, + + render: function (container) { + var me = this, + width, + height, + el, + defs, + bgRect, + webkitRect; + if (!me.el) { + width = me.width || 0; + height = me.height || 0; + el = me.createSvgElement('svg', { + xmlns: "http:/" + "/www.w3.org/2000/svg", + version: 1.1, + width: width, + height: height + }); + defs = me.getDefs(); + + + + + + bgRect = me.createSvgElement("rect", { + width: "100%", + height: "100%", + fill: "#000", + stroke: "none", + opacity: 0 + }); + + if (Ext.isSafari3) { + + webkitRect = me.createSvgElement("rect", { + x: -10, + y: -10, + width: "110%", + height: "110%", + fill: "none", + stroke: "#000" + }); + } + el.appendChild(defs); + if (Ext.isSafari3) { + el.appendChild(webkitRect); + } + el.appendChild(bgRect); + container.appendChild(el); + me.el = Ext.get(el); + me.bgRect = Ext.get(bgRect); + if (Ext.isSafari3) { + me.webkitRect = Ext.get(webkitRect); + me.webkitRect.hide(); + } + me.el.on({ + scope: me, + mouseup: me.onMouseUp, + mousedown: me.onMouseDown, + mouseover: me.onMouseOver, + mouseout: me.onMouseOut, + mousemove: me.onMouseMove, + mouseenter: me.onMouseEnter, + mouseleave: me.onMouseLeave, + click: me.onClick, + dblclick: me.onDblClick + }); + } + me.renderAll(); + }, + + + onMouseEnter: function(e) { + if (this.el.parent().getRegion().contains(e.getPoint())) { + this.fireEvent('mouseenter', e); + } + }, + + + onMouseLeave: function(e) { + if (!this.el.parent().getRegion().contains(e.getPoint())) { + this.fireEvent('mouseleave', e); + } + }, + + processEvent: function(name, e) { + var target = e.getTarget(), + surface = this.surface, + sprite; + + this.fireEvent(name, e); + + if (target.nodeName == "tspan" && target.parentNode) { + target = target.parentNode; + } + sprite = this.items.get(target.id); + if (sprite) { + sprite.fireEvent(name, sprite, e); + } + }, + + + tuneText: function (sprite, attrs) { + var el = sprite.el.dom, + tspans = [], + height, tspan, text, i, ln, texts, factor, x; + + if (attrs.hasOwnProperty("text")) { + + + + + + text = sprite.tspans && Ext.Array.map(sprite.tspans, function(t) { return t.textContent; }).join(''); + + if (!sprite.tspans || attrs.text != text) { + tspans = this.setText(sprite, attrs.text); + sprite.tspans = tspans; + + } else { + tspans = sprite.tspans || []; + } + } + + if (tspans.length) { + height = this.getBBoxText(sprite).height; + x = sprite.el.dom.getAttribute("x"); + for (i = 0, ln = tspans.length; i < ln; i++) { + + + factor = (Ext.isFF3_0 || Ext.isFF3_5) ? 2 : 4; + tspans[i].setAttribute("x", x); + tspans[i].setAttribute("dy", i ? height * 1.2 : height / factor); + } + sprite.dirty = true; + } + }, + + setText: function(sprite, textString) { + var me = this, + el = sprite.el.dom, + tspans = [], + height, tspan, text, i, ln, texts; + + while (el.firstChild) { + el.removeChild(el.firstChild); + } + + texts = String(textString).split("\n"); + for (i = 0, ln = texts.length; i < ln; i++) { + text = texts[i]; + if (text) { + tspan = me.createSvgElement("tspan"); + tspan.appendChild(document.createTextNode(Ext.htmlDecode(text))); + el.appendChild(tspan); + tspans[i] = tspan; + } + } + return tspans; + }, + + renderAll: function() { + this.items.each(this.renderItem, this); + }, + + renderItem: function (sprite) { + if (!this.el) { + return; + } + if (!sprite.el) { + this.createSpriteElement(sprite); + } + if (sprite.zIndexDirty) { + this.applyZIndex(sprite); + } + if (sprite.dirty) { + this.applyAttrs(sprite); + if (sprite.dirtyTransform) { + this.applyTransformations(sprite); + } + } + }, + + redraw: function(sprite) { + sprite.dirty = sprite.zIndexDirty = true; + this.renderItem(sprite); + }, + + applyAttrs: function (sprite) { + var me = this, + el = sprite.el, + group = sprite.group, + sattr = sprite.attr, + parsers = me.parsers, + + + + gradientsMap = me.gradientsMap || {}, + safariFix = Ext.isSafari && !Ext.isStrict, + groups, i, ln, attrs, font, key, style, name, rect; + + if (group) { + groups = [].concat(group); + ln = groups.length; + for (i = 0; i < ln; i++) { + group = groups[i]; + me.getGroup(group).add(sprite); + } + delete sprite.group; + } + attrs = me.scrubAttrs(sprite) || {}; + + + sprite.bbox.plain = 0; + sprite.bbox.transform = 0; + if (sprite.type == "circle" || sprite.type == "ellipse") { + attrs.cx = attrs.cx || attrs.x; + attrs.cy = attrs.cy || attrs.y; + } + else if (sprite.type == "rect") { + attrs.rx = attrs.ry = attrs.r; + } + else if (sprite.type == "path" && attrs.d) { + attrs.d = Ext.draw.Draw.pathToString(Ext.draw.Draw.pathToAbsolute(attrs.d)); + } + sprite.dirtyPath = false; + + + + + + if (attrs['clip-rect']) { + me.setClip(sprite, attrs); + delete attrs['clip-rect']; + } + if (sprite.type == 'text' && attrs.font && sprite.dirtyFont) { + el.set({ style: "font: " + attrs.font}); + } + if (sprite.type == "image") { + el.dom.setAttributeNS(me.xlink, "href", attrs.src); + } + Ext.applyIf(attrs, me.minDefaults[sprite.type]); + + if (sprite.dirtyHidden) { + (sattr.hidden) ? me.hidePrim(sprite) : me.showPrim(sprite); + sprite.dirtyHidden = false; + } + for (key in attrs) { + if (attrs.hasOwnProperty(key) && attrs[key] != null) { + + + + + + if (safariFix && ('color|stroke|fill'.indexOf(key) > -1) && (attrs[key] in gradientsMap)) { + attrs[key] = gradientsMap[attrs[key]]; + } + + if (key == 'hidden' && sprite.type == 'text') { + continue; + } + if (key in parsers) { + el.dom.setAttribute(key, parsers[key](attrs[key], sprite, me)); + } else { + el.dom.setAttribute(key, attrs[key]); + } + } + } + + if (sprite.type == 'text') { + me.tuneText(sprite, attrs); + } + sprite.dirtyFont = false; + + + style = sattr.style; + if (style) { + el.setStyle(style); + } + + sprite.dirty = false; + + if (Ext.isSafari3) { + + me.webkitRect.show(); + setTimeout(function () { + me.webkitRect.hide(); + }); + } + }, + + setClip: function(sprite, params) { + var me = this, + rect = params["clip-rect"], + clipEl, clipPath; + if (rect) { + if (sprite.clip) { + sprite.clip.parentNode.parentNode.removeChild(sprite.clip.parentNode); + } + clipEl = me.createSvgElement('clipPath'); + clipPath = me.createSvgElement('rect'); + clipEl.id = Ext.id(null, 'ext-clip-'); + clipPath.setAttribute("x", rect.x); + clipPath.setAttribute("y", rect.y); + clipPath.setAttribute("width", rect.width); + clipPath.setAttribute("height", rect.height); + clipEl.appendChild(clipPath); + me.getDefs().appendChild(clipEl); + sprite.el.dom.setAttribute("clip-path", "url(#" + clipEl.id + ")"); + sprite.clip = clipPath; + } + + + + + + + }, + + + applyZIndex: function(sprite) { + var me = this, + items = me.items, + idx = items.indexOf(sprite), + el = sprite.el, + prevEl; + if (me.el.dom.childNodes[idx + 2] !== el.dom) { + if (idx > 0) { + + do { + prevEl = items.getAt(--idx).el; + } while (!prevEl && idx > 0); + } + el.insertAfter(prevEl || me.bgRect); + } + sprite.zIndexDirty = false; + }, + + createItem: function (config) { + var sprite = new Ext.draw.Sprite(config); + sprite.surface = this; + return sprite; + }, + + addGradient: function(gradient) { + gradient = Ext.draw.Draw.parseGradient(gradient); + var me = this, + ln = gradient.stops.length, + vector = gradient.vector, + + + + usePlain = Ext.isSafari && !Ext.isStrict, + gradientEl, stop, stopEl, i, gradientsMap; + + gradientsMap = me.gradientsMap || {}; + + if (!usePlain) { + if (gradient.type == "linear") { + gradientEl = me.createSvgElement("linearGradient"); + gradientEl.setAttribute("x1", vector[0]); + gradientEl.setAttribute("y1", vector[1]); + gradientEl.setAttribute("x2", vector[2]); + gradientEl.setAttribute("y2", vector[3]); + } + else { + gradientEl = me.createSvgElement("radialGradient"); + gradientEl.setAttribute("cx", gradient.centerX); + gradientEl.setAttribute("cy", gradient.centerY); + gradientEl.setAttribute("r", gradient.radius); + if (Ext.isNumber(gradient.focalX) && Ext.isNumber(gradient.focalY)) { + gradientEl.setAttribute("fx", gradient.focalX); + gradientEl.setAttribute("fy", gradient.focalY); + } + } + gradientEl.id = gradient.id; + me.getDefs().appendChild(gradientEl); + for (i = 0; i < ln; i++) { + stop = gradient.stops[i]; + stopEl = me.createSvgElement("stop"); + stopEl.setAttribute("offset", stop.offset + "%"); + stopEl.setAttribute("stop-color", stop.color); + stopEl.setAttribute("stop-opacity",stop.opacity); + gradientEl.appendChild(stopEl); + } + } else { + gradientsMap['url(#' + gradient.id + ')'] = gradient.stops[0].color; + } + me.gradientsMap = gradientsMap; + }, + + + hasCls: function(sprite, className) { + return className && (' ' + (sprite.el.dom.getAttribute('class') || '') + ' ').indexOf(' ' + className + ' ') != -1; + }, + + addCls: function(sprite, className) { + var el = sprite.el, + i, + len, + v, + cls = [], + curCls = el.getAttribute('class') || ''; + + if (!Ext.isArray(className)) { + if (typeof className == 'string' && !this.hasCls(sprite, className)) { + el.set({ 'class': curCls + ' ' + className }); + } + } + else { + for (i = 0, len = className.length; i < len; i++) { + v = className[i]; + if (typeof v == 'string' && (' ' + curCls + ' ').indexOf(' ' + v + ' ') == -1) { + cls.push(v); + } + } + if (cls.length) { + el.set({ 'class': ' ' + cls.join(' ') }); + } + } + }, + + removeCls: function(sprite, className) { + var me = this, + el = sprite.el, + curCls = el.getAttribute('class') || '', + i, idx, len, cls, elClasses; + if (!Ext.isArray(className)){ + className = [className]; + } + if (curCls) { + elClasses = curCls.replace(me.trimRe, ' ').split(me.spacesRe); + for (i = 0, len = className.length; i < len; i++) { + cls = className[i]; + if (typeof cls == 'string') { + cls = cls.replace(me.trimRe, ''); + idx = Ext.Array.indexOf(elClasses, cls); + if (idx != -1) { + Ext.Array.erase(elClasses, idx, 1); + } + } + } + el.set({ 'class': elClasses.join(' ') }); + } + }, + + destroy: function() { + var me = this; + + me.callParent(); + if (me.el) { + me.el.remove(); + } + if (me._defs) { + Ext.get(me._defs).destroy(); + } + if (me.bgRect) { + Ext.get(me.bgRect).destroy(); + } + if (me.webkitRect) { + Ext.get(me.webkitRect).destroy(); + } + delete me.el; + } +}); + + +Ext.define('Ext.draw.engine.SvgExporter', function(){ + var commaRe = /,/g, + fontRegex = /(-?\d*\.?\d*){1}(em|ex|px|in|cm|mm|pt|pc|%)\s('*.*'*)/, + rgbColorRe = /rgb\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*\)/g, + rgbaColorRe = /rgba\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,([\d\.]+)\)/g, + surface, len, width, height, + + init = function(s){ + surface = s; + len = surface.length; + width = surface.width; + height = surface.height; + }, + spriteProcessor = { + path: function(sprite){ + + var attr = sprite.attr, + path = attr.path, + pathString = '', + props, p, pLen; + + if (Ext.isArray(path[0])) { + pLen = path.length; + for (p = 0; p < pLen; p++) { + pathString += path[p].join(' '); + } + } else if (Ext.isArray(path)) { + pathString = path.join(' '); + } else { + pathString = path.replace(commaRe,' '); + } + + props = toPropertyString({ + d: pathString, + fill: attr.fill || 'none', + stroke: attr.stroke, + 'fill-opacity': attr.opacity, + 'stroke-width': attr['stroke-width'], + 'stroke-opacity': attr['stroke-opacity'], + "z-index": attr.zIndex, + transform: sprite.matrix.toSvg() + }); + + return ''; + }, + text: function(sprite){ + + + + + var attr = sprite.attr, + match = fontRegex.exec(attr.font), + size = (match && match[1]) || "12", + + family = (match && match[3]) || 'Arial', + text = attr.text, + factor = (Ext.isFF3_0 || Ext.isFF3_5) ? 2 : 4, + tspanString = '', + props; + + sprite.getBBox(); + tspanString += ''; + tspanString += Ext.htmlEncode(text) + ''; + + + props = toPropertyString({ + x: attr.x, + y: attr.y, + 'font-size': size, + 'font-family': family, + 'font-weight': attr['font-weight'], + 'text-anchor': attr['text-anchor'], + + fill: attr.fill || '#000', + 'fill-opacity': attr.opacity, + transform: sprite.matrix.toSvg() + }); + + + + return '' + tspanString + ''; + }, + rect: function(sprite){ + + var attr = sprite.attr, + props = toPropertyString({ + x: attr.x, + y: attr.y, + rx: attr.rx, + ry: attr.ry, + width: attr.width, + height: attr.height, + fill: attr.fill || 'none', + 'fill-opacity': attr.opacity, + stroke: attr.stroke, + 'stroke-opacity': attr['stroke-opacity'], + 'stroke-width':attr['stroke-width'], + transform: sprite.matrix && sprite.matrix.toSvg() + }); + + return ''; + }, + circle: function(sprite){ + + var attr = sprite.attr, + props = toPropertyString({ + cx: attr.x, + cy: attr.y, + r: attr.radius, + fill: attr.translation.fill || attr.fill || 'none', + 'fill-opacity': attr.opacity, + stroke: attr.stroke, + 'stroke-opacity': attr['stroke-opacity'], + 'stroke-width':attr['stroke-width'], + transform: sprite.matrix.toSvg() + }); + + return ''; + }, + image: function(sprite){ + + var attr = sprite.attr, + props = toPropertyString({ + x: attr.x - (attr.width/2 >> 0), + y: attr.y - (attr.height/2 >> 0), + width: attr.width, + height: attr.height, + 'xlink:href': attr.src, + transform: sprite.matrix.toSvg() + }); + + return ''; + } + }, + svgHeader = function(){ + var svg = ''; + svg += ''; + return svg; + }, + svgContent = function(){ + var svg = '', + defs = '', item, itemsLen, items, gradient, + getSvgString, colorstops, stop, + coll, keys, colls, k, kLen, key, collI, i, j, stopsLen, sortedItems, za, zb; + + items = surface.items.items; + itemsLen = items.length; + + + getSvgString = function(node){ + + var childs = node.childNodes, + childLength = childs.length, + i = 0, + attrLength, + j, + svgString = '', child, attr, tagName, attrItem; + + for(; i < childLength; i++){ + child = childs[i]; + attr = child.attributes; + tagName = child.tagName; + + svgString += '<' +tagName; + + for(j = 0, attrLength = attr.length; j < attrLength; j++){ + attrItem = attr.item(j); + svgString += ' '+attrItem.name+'="'+attrItem.value+'"'; + } + + svgString += '>'; + + if(child.childNodes.length > 0){ + svgString += getSvgString(child); + } + + svgString += ''; + + } + return svgString; + }; + + + if(surface.getDefs){ + defs = getSvgString(surface.getDefs()); + }else{ + + coll = surface.gradientsColl; + if (coll) { + keys = coll.keys; + colls = coll.items; + k = 0; + kLen = keys.length; + } + + for (; k < kLen; k++) { + key = keys[k]; + collI = colls[k]; + + gradient = surface.gradientsColl.getByKey(key); + defs += ''; + + var color = gradient.colors.replace(rgbColorRe, 'rgb($1|$2|$3)'); + color = color.replace(rgbaColorRe, 'rgba($1|$2|$3|$4)') + colorstops = color.split(','); + for(i=0, stopsLen = colorstops.length; i < stopsLen; i++){ + stop = colorstops[i].split(' '); + color = Ext.draw.Color.fromString(stop[1].replace(/\|/g,',')); + defs += ''; + } + defs += ''; + } + } + + svg += '' + defs + ''; + + + svg += spriteProcessor.rect({ + attr: { + width: '100%', + height: '100%', + fill: '#fff', + stroke: 'none', + opacity: '0' + } + }); + + + sortedItems = new Array(itemsLen); + for(i = 0; i < itemsLen; i++){ + sortedItems[i] = i; + } + sortedItems.sort(function (a, b) { + za = items[a].attr.zIndex || 0; + zb = items[b].attr.zIndex || 0; + if (za == zb) { + return a - b; + } + return za - zb; + }); + + for(i = 0; i < itemsLen; i++){ + item = items[sortedItems[i]]; + if(!item.attr.hidden){ + svg += spriteProcessor[item.type](item); + } + } + + svg += ''; + + return svg; + }, + toPropertyString = function(obj){ + var propString = '', + key; + + for(key in obj){ + + if(obj.hasOwnProperty(key) && obj[key] != null){ + propString += key +'="'+ obj[key]+'" '; + } + + } + + return propString; + }; + + return { + singleton: true, + + + generate: function(surface, config){ + config = config || {}; + init(surface); + return svgHeader() + svgContent(); + } + }; +}); + + +Ext.define('Ext.draw.engine.Vml', { + + + + extend: Ext.draw.Surface , + + + + + + engine: 'Vml', + + map: {M: "m", L: "l", C: "c", Z: "x", m: "t", l: "r", c: "v", z: "x"}, + bitesRe: /([clmz]),?([^clmz]*)/gi, + valRe: /-?[^,\s\-]+/g, + fillUrlRe: /^url\(\s*['"]?([^\)]+?)['"]?\s*\)$/i, + pathlike: /^(path|rect)$/, + NonVmlPathRe: /[ahqstv]/ig, // Non-VML Pathing ops + partialPathRe: /[clmz]/g, + fontFamilyRe: /^['"]+|['"]+$/g, + baseVmlCls: Ext.baseCSSPrefix + 'vml-base', + vmlGroupCls: Ext.baseCSSPrefix + 'vml-group', + spriteCls: Ext.baseCSSPrefix + 'vml-sprite', + measureSpanCls: Ext.baseCSSPrefix + 'vml-measure-span', + zoom: 21600, + coordsize: 1000, + coordorigin: '0 0', + zIndexShift: 0, + // VML uses CSS z-index and therefore doesn't need sprites to be kept in zIndex order + orderSpritesByZIndex: false, + + + + path2vml: function (path) { + var me = this, + nonVML = me.NonVmlPathRe, + map = me.map, + val = me.valRe, + zoom = me.zoom, + bites = me.bitesRe, + command = Ext.Function.bind(Ext.draw.Draw.pathToAbsolute, Ext.draw.Draw), + res, pa, p, r, i, ii, j, jj; + if (String(path).match(nonVML)) { + command = Ext.Function.bind(Ext.draw.Draw.path2curve, Ext.draw.Draw); + } else if (!String(path).match(me.partialPathRe)) { + res = String(path).replace(bites, function (all, command, args) { + var vals = [], + isMove = command.toLowerCase() == "m", + res = map[command]; + args.replace(val, function (value) { + if (isMove && vals.length === 2) { + res += vals + map[command == "m" ? "l" : "L"]; + vals = []; + } + vals.push(Math.round(value * zoom)); + }); + return res + vals; + }); + return res; + } + pa = command(path); + res = []; + for (i = 0, ii = pa.length; i < ii; i++) { + p = pa[i]; + r = pa[i][0].toLowerCase(); + if (r == "z") { + r = "x"; + } + for (j = 1, jj = p.length; j < jj; j++) { + r += Math.round(p[j] * me.zoom) + (j != jj - 1 ? "," : ""); + } + res.push(r); + } + return res.join(" "); + }, + + + translateAttrs: { + radius: "r", + radiusX: "rx", + radiusY: "ry", + lineWidth: "stroke-width", + fillOpacity: "fill-opacity", + strokeOpacity: "stroke-opacity", + strokeLinejoin: "stroke-linejoin" + }, + + + minDefaults: { + circle: { + fill: "none", + stroke: null, + "stroke-width": null, + opacity: null, + "fill-opacity": null, + "stroke-opacity": null + }, + ellipse: { + cx: 0, + cy: 0, + rx: 0, + ry: 0, + fill: "none", + stroke: null, + "stroke-width": null, + opacity: null, + "fill-opacity": null, + "stroke-opacity": null + }, + rect: { + x: 0, + y: 0, + width: 0, + height: 0, + rx: 0, + ry: 0, + fill: "none", + stroke: null, + "stroke-width": null, + opacity: null, + "fill-opacity": null, + "stroke-opacity": null + }, + text: { + x: 0, + y: 0, + "text-anchor": "start", + font: '10px "Arial"', + fill: "#000", + stroke: null, + "stroke-width": null, + opacity: null, + "fill-opacity": null, + "stroke-opacity": null + }, + path: { + d: "M0,0", + fill: "none", + stroke: null, + "stroke-width": null, + opacity: null, + "fill-opacity": null, + "stroke-opacity": null + }, + image: { + x: 0, + y: 0, + width: 0, + height: 0, + preserveAspectRatio: "none", + opacity: null + } + }, + + + onMouseEnter: function (e) { + this.fireEvent("mouseenter", e); + }, + + + onMouseLeave: function (e) { + this.fireEvent("mouseleave", e); + }, + + + processEvent: function (name, e) { + var target = e.getTarget(), + surface = this.surface, + sprite; + this.fireEvent(name, e); + sprite = this.items.get(target.id); + if (sprite) { + sprite.fireEvent(name, sprite, e); + } + }, + + + createSpriteElement: function (sprite) { + var me = this, + attr = sprite.attr, + type = sprite.type, + zoom = me.zoom, + vml = sprite.vml || (sprite.vml = {}), + round = Math.round, + el = (type === 'image') ? me.createNode('image') : me.createNode('shape'), + path, skew, textPath; + + el.coordsize = zoom + ' ' + zoom; + el.coordorigin = attr.coordorigin || "0 0"; + Ext.get(el).addCls(me.spriteCls); + if (type == "text") { + vml.path = path = me.createNode("path"); + path.textpathok = true; + vml.textpath = textPath = me.createNode("textpath"); + textPath.on = true; + el.appendChild(textPath); + el.appendChild(path); + } + el.id = sprite.id; + sprite.el = Ext.get(el); + sprite.el.setStyle('zIndex', -me.zIndexShift); + me.el.appendChild(el); + if (type !== 'image') { + skew = me.createNode("skew"); + skew.on = true; + el.appendChild(skew); + sprite.skew = skew; + } + sprite.matrix = new Ext.draw.Matrix(); + sprite.bbox = { + plain: null, + transform: null + }; + + this.applyAttrs(sprite); + this.applyTransformations(sprite); + sprite.fireEvent("render", sprite); + return sprite.el; + }, + + getBBoxText: function (sprite) { + var vml = sprite.vml; + return { + x: vml.X + (vml.bbx || 0) - vml.W / 2, + y: vml.Y - vml.H / 2, + width: vml.W, + height: vml.H + }; + }, + + applyAttrs: function (sprite) { + var me = this, + vml = sprite.vml, + group = sprite.group, + spriteAttr = sprite.attr, + el = sprite.el, + dom = el.dom, + style, name, groups, i, ln, scrubbedAttrs, font, key, + cx, cy, rx, ry; + + if (group) { + groups = [].concat(group); + ln = groups.length; + for (i = 0; i < ln; i++) { + group = groups[i]; + me.getGroup(group).add(sprite); + } + delete sprite.group; + } + scrubbedAttrs = me.scrubAttrs(sprite) || {}; + + if (sprite.zIndexDirty) { + me.setZIndex(sprite); + } + + + Ext.applyIf(scrubbedAttrs, me.minDefaults[sprite.type]); + + if (sprite.type == 'image') { + Ext.apply(sprite.attr, { + x: scrubbedAttrs.x, + y: scrubbedAttrs.y, + width: scrubbedAttrs.width, + height: scrubbedAttrs.height + }); + el.setStyle({ + width: scrubbedAttrs.width + 'px', + height: scrubbedAttrs.height + 'px' + }); + dom.src = scrubbedAttrs.src; + } + + if (dom.href) { + dom.href = scrubbedAttrs.href; + } + if (dom.title) { + dom.title = scrubbedAttrs.title; + } + if (dom.target) { + dom.target = scrubbedAttrs.target; + } + if (dom.cursor) { + dom.cursor = scrubbedAttrs.cursor; + } + + + if (sprite.dirtyHidden) { + (scrubbedAttrs.hidden) ? me.hidePrim(sprite) : me.showPrim(sprite); + sprite.dirtyHidden = false; + } + + + if (sprite.dirtyPath) { + if (sprite.type == "circle" || sprite.type == "ellipse") { + cx = scrubbedAttrs.x; + cy = scrubbedAttrs.y; + rx = scrubbedAttrs.rx || scrubbedAttrs.r || 0; + ry = scrubbedAttrs.ry || scrubbedAttrs.r || 0; + dom.path = Ext.String.format("ar{0},{1},{2},{3},{4},{1},{4},{1}", + Math.round((cx - rx) * me.zoom), + Math.round((cy - ry) * me.zoom), + Math.round((cx + rx) * me.zoom), + Math.round((cy + ry) * me.zoom), + Math.round(cx * me.zoom)); + sprite.dirtyPath = false; + } + else if (sprite.type !== "text" && sprite.type !== 'image') { + sprite.attr.path = scrubbedAttrs.path = me.setPaths(sprite, scrubbedAttrs) || scrubbedAttrs.path; + dom.path = me.path2vml(scrubbedAttrs.path); + sprite.dirtyPath = false; + } + } + + + if ("clip-rect" in scrubbedAttrs) { + me.setClip(sprite, scrubbedAttrs); + } + + + if (sprite.type == "text") { + me.setTextAttributes(sprite, scrubbedAttrs); + } + + + if (scrubbedAttrs.opacity || scrubbedAttrs['stroke-opacity'] || scrubbedAttrs.fill) { + me.setFill(sprite, scrubbedAttrs); + } + + + if (scrubbedAttrs.stroke || scrubbedAttrs['stroke-opacity'] || scrubbedAttrs.fill) { + me.setStroke(sprite, scrubbedAttrs); + } + + + style = spriteAttr.style; + if (style) { + el.setStyle(style); + } + + sprite.dirty = false; + }, + + setZIndex: function (sprite) { + var me = this, + zIndex = sprite.attr.zIndex, + shift = me.zIndexShift, + items, iLen, item, i; + + if (zIndex < shift) { + + + items = me.items.items; + iLen = items.length; + + for (i = 0; i < iLen; i++) { + if ((zIndex = items[i].attr.zIndex) && zIndex < shift) { + shift = zIndex; + } + } + + me.zIndexShift = shift; + for (i = 0; i < iLen; i++) { + item = items[i]; + if (item.el) { + item.el.setStyle('zIndex', item.attr.zIndex - shift); + } + item.zIndexDirty = false; + } + } else if (sprite.el) { + sprite.el.setStyle('zIndex', zIndex - shift); + sprite.zIndexDirty = false; + } + }, + + + setPaths: function (sprite, params) { + var spriteAttr = sprite.attr, thickness = sprite.attr['stroke-width'] || 1; + + sprite.bbox.plain = null; + sprite.bbox.transform = null; + if (sprite.type == 'circle') { + spriteAttr.rx = spriteAttr.ry = params.r; + return Ext.draw.Draw.ellipsePath(sprite); + } + else if (sprite.type == 'ellipse') { + spriteAttr.rx = params.rx; + spriteAttr.ry = params.ry; + return Ext.draw.Draw.ellipsePath(sprite); + } + else if (sprite.type == 'rect') { + spriteAttr.rx = spriteAttr.ry = params.r; + return Ext.draw.Draw.rectPath(sprite); + } + else if (sprite.type == 'path' && spriteAttr.path) { + return Ext.draw.Draw.pathToAbsolute(spriteAttr.path); + } + return false; + }, + + setFill: function (sprite, params) { + var me = this, + el = sprite.el.dom, + fillEl = el.fill, + newfill = false, + opacity, gradient, fillUrl, rotation, angle; + + if (!fillEl) { + + fillEl = el.fill = me.createNode("fill"); + newfill = true; + } + if (Ext.isArray(params.fill)) { + params.fill = params.fill[0]; + } + if (params.fill == "none") { + fillEl.on = false; + } + else { + if (typeof params.opacity == "number") { + fillEl.opacity = params.opacity; + } + if (typeof params["fill-opacity"] == "number") { + fillEl.opacity = params["fill-opacity"]; + } + fillEl.on = true; + if (typeof params.fill == "string") { + fillUrl = params.fill.match(me.fillUrlRe); + if (fillUrl) { + fillUrl = fillUrl[1]; + + if (fillUrl.charAt(0) == "#") { + gradient = me.gradientsColl.getByKey(fillUrl.substring(1)); + } + if (gradient) { + + rotation = params.rotation; + angle = -(gradient.angle + 270 + (rotation ? rotation.degrees : 0)) % 360; + + if (angle === 0) { + angle = 180; + } + fillEl.angle = angle; + fillEl.type = "gradient"; + fillEl.method = "sigma"; + if (fillEl.colors) { + fillEl.colors.value = gradient.colors; + } else { + fillEl.colors = gradient.colors; + } + } + + else { + fillEl.src = fillUrl; + fillEl.type = "tile"; + } + } + else { + fillEl.color = Ext.draw.Color.toHex(params.fill); + fillEl.src = ""; + fillEl.type = "solid"; + } + } + } + if (newfill) { + el.appendChild(fillEl); + } + }, + + setStroke: function (sprite, params) { + var me = this, + el = sprite.el.dom, + strokeEl = sprite.strokeEl, + newStroke = false, + width, opacity; + + if (!strokeEl) { + strokeEl = sprite.strokeEl = me.createNode("stroke"); + newStroke = true; + } + if (Ext.isArray(params.stroke)) { + params.stroke = params.stroke[0]; + } + if (!params.stroke || params.stroke == "none" || params.stroke == 0 || params["stroke-width"] == 0) { + strokeEl.on = false; + } + else { + strokeEl.on = true; + if (params.stroke && !params.stroke.match(me.fillUrlRe)) { + + strokeEl.color = Ext.draw.Color.toHex(params.stroke); + } + strokeEl.dashstyle = params["stroke-dasharray"] ? "dash" : "solid"; + strokeEl.joinstyle = params["stroke-linejoin"]; + strokeEl.endcap = params["stroke-linecap"] || "round"; + strokeEl.miterlimit = params["stroke-miterlimit"] || 8; + width = parseFloat(params["stroke-width"] || 1) * 0.75; + opacity = params["stroke-opacity"] || 1; + + if (Ext.isNumber(width) && width < 1) { + strokeEl.weight = 1; + strokeEl.opacity = opacity * width; + } + else { + strokeEl.weight = width; + strokeEl.opacity = opacity; + } + } + if (newStroke) { + el.appendChild(strokeEl); + } + }, + + setClip: function (sprite, params) { + var me = this, + el = sprite.el, + clipEl = sprite.clipEl, + rect = String(params["clip-rect"]).split(me.separatorRe); + if (!clipEl) { + clipEl = sprite.clipEl = me.el.insertFirst(Ext.getDoc().dom.createElement("div")); + clipEl.addCls(Ext.baseCSSPrefix + 'vml-sprite'); + } + if (rect.length == 4) { + rect[2] = +rect[2] + (+rect[0]); + rect[3] = +rect[3] + (+rect[1]); + clipEl.setStyle("clip", Ext.String.format("rect({1}px {2}px {3}px {0}px)", rect[0], rect[1], rect[2], rect[3])); + clipEl.setSize(me.el.width, me.el.height); + } + else { + clipEl.setStyle("clip", ""); + } + }, + + setTextAttributes: function (sprite, params) { + var me = this, + vml = sprite.vml, + textStyle = vml.textpath.style, + spanCacheStyle = me.span.style, + zoom = me.zoom, + round = Math.round, + fontObj = { + fontSize: "font-size", + fontWeight: "font-weight", + fontStyle: "font-style" + }, + fontProp, + paramProp; + if (sprite.dirtyFont) { + if (params.font) { + textStyle.font = spanCacheStyle.font = params.font; + } + if (params["font-family"]) { + textStyle.fontFamily = '"' + params["font-family"].split(",")[0].replace(me.fontFamilyRe, "") + '"'; + spanCacheStyle.fontFamily = params["font-family"]; + } + + for (fontProp in fontObj) { + paramProp = params[fontObj[fontProp]]; + if (paramProp) { + textStyle[fontProp] = spanCacheStyle[fontProp] = paramProp; + } + } + + me.setText(sprite, params.text); + + if (vml.textpath.string) { + me.span.innerHTML = String(vml.textpath.string).replace(/"); + } + vml.W = me.span.offsetWidth; + vml.H = me.span.offsetHeight + 2; + + + if (params["text-anchor"] == "middle") { + textStyle["v-text-align"] = "center"; + } + else if (params["text-anchor"] == "end") { + textStyle["v-text-align"] = "right"; + vml.bbx = -Math.round(vml.W / 2); + } + else { + textStyle["v-text-align"] = "left"; + vml.bbx = Math.round(vml.W / 2); + } + } + vml.X = params.x; + vml.Y = params.y; + vml.path.v = Ext.String.format("m{0},{1}l{2},{1}", Math.round(vml.X * zoom), Math.round(vml.Y * zoom), Math.round(vml.X * zoom) + 1); + + sprite.bbox.plain = null; + sprite.bbox.transform = null; + sprite.dirtyFont = false; + }, + + setText: function (sprite, text) { + sprite.vml.textpath.string = Ext.htmlDecode(text); + }, + + hide: function () { + this.el.hide(); + }, + + show: function () { + this.el.show(); + }, + + hidePrim: function (sprite) { + sprite.el.addCls(Ext.baseCSSPrefix + 'hide-visibility'); + }, + + showPrim: function (sprite) { + sprite.el.removeCls(Ext.baseCSSPrefix + 'hide-visibility'); + }, + + setSize: function (width, height) { + var me = this; + width = width || me.width; + height = height || me.height; + me.width = width; + me.height = height; + + if (me.el) { + + if (width != undefined) { + me.el.setWidth(width); + } + if (height != undefined) { + me.el.setHeight(height); + } + } + + me.callParent(arguments); + }, + + + applyViewBox: function () { + var me = this, + viewBox = me.viewBox, + width = me.width, + height = me.height, + items, + iLen, + i; + + me.callParent(); + + if (viewBox && (width || height)) { + items = me.items.items; + iLen = items.length; + + for (i = 0; i < iLen; i++) { + me.applyTransformations(items[i]); + } + } + }, + + onAdd: function (item) { + this.callParent(arguments); + if (this.el) { + this.renderItem(item); + } + }, + + onRemove: function (sprite) { + if (sprite.el) { + sprite.el.remove(); + delete sprite.el; + } + this.callParent(arguments); + }, + + render: function (container) { + var me = this, + doc = Ext.getDoc().dom, + el; + + if (!me.createNode) { + try { + if (!doc.namespaces.rvml) { + doc.namespaces.add("rvml", "urn:schemas-microsoft-com:vml"); + } + me.createNode = function (tagName) { + return doc.createElement("'); + }; + } catch (e) { + me.createNode = function (tagName) { + return doc.createElement("<" + tagName + ' xmlns="urn:schemas-microsoft.com:vml" class="rvml">'); + }; + } + } + + if (!me.el) { + el = doc.createElement("div"); + me.el = Ext.get(el); + me.el.addCls(me.baseVmlCls); + + + me.span = doc.createElement("span"); + Ext.get(me.span).addCls(me.measureSpanCls); + el.appendChild(me.span); + me.el.setSize(me.width || 0, me.height || 0); + container.appendChild(el); + me.el.on({ + scope: me, + mouseup: me.onMouseUp, + mousedown: me.onMouseDown, + mouseover: me.onMouseOver, + mouseout: me.onMouseOut, + mousemove: me.onMouseMove, + mouseenter: me.onMouseEnter, + mouseleave: me.onMouseLeave, + click: me.onClick, + dblclick: me.onDblClick + }); + } + me.renderAll(); + }, + + renderAll: function () { + this.items.each(this.renderItem, this); + }, + + redraw: function (sprite) { + sprite.dirty = true; + this.renderItem(sprite); + }, + + renderItem: function (sprite) { + + if (!this.el) { + return; + } + + + if (!sprite.el) { + this.createSpriteElement(sprite); + } + + if (sprite.dirty) { + this.applyAttrs(sprite); + if (sprite.dirtyTransform) { + this.applyTransformations(sprite); + } + } + }, + + rotationCompensation: function (deg, dx, dy) { + var matrix = new Ext.draw.Matrix(); + matrix.rotate(-deg, 0.5, 0.5); + return { + x: matrix.x(dx, dy), + y: matrix.y(dx, dy) + }; + }, + + transform: function (sprite, matrixOnly) { + var me = this, + bbox = me.getBBox(sprite, true), + cx = bbox.x + bbox.width * 0.5, + cy = bbox.y + bbox.height * 0.5, + matrix = new Ext.draw.Matrix(), + transforms = sprite.transformations, + transformsLength = transforms.length, + i = 0, + deltaDegrees = 0, + deltaScaleX = 1, + deltaScaleY = 1, + flip = "", + el = sprite.el, + dom = el.dom, + domStyle = dom.style, + zoom = me.zoom, + skew = sprite.skew, + shift = me.viewBoxShift, + deltaX, deltaY, transform, type, compensate, y, fill, newAngle, zoomScaleX, zoomScaleY, newOrigin, offset; + + + for (; i < transformsLength; i++) { + transform = transforms[i]; + type = transform.type; + if (type == "translate") { + matrix.translate(transform.x, transform.y); + } + else if (type == "rotate") { + matrix.rotate(transform.degrees, transform.x, transform.y); + deltaDegrees += transform.degrees; + } + else if (type == "scale") { + matrix.scale(transform.x, transform.y, transform.centerX, transform.centerY); + deltaScaleX *= transform.x; + deltaScaleY *= transform.y; + } + } + + sprite.matrix = matrix.clone(); + + if (matrixOnly) { + return; + } + + if (shift) { + matrix.prepend(shift.scale, 0, 0, shift.scale, shift.dx * shift.scale, shift.dy * shift.scale); + } + + + if (sprite.type != "image" && skew) { + skew.origin = "0,0"; + + skew.matrix = matrix.toString(); + + + + offset = matrix.offset(); + if (offset[0] > 32767) { + offset[0] = 32767; + } else if (offset[0] < -32768) { + offset[0] = -32768; + } + if (offset[1] > 32767) { + offset[1] = 32767; + } else if (offset[1] < -32768) { + offset[1] = -32768; + } + skew.offset = offset; + } + else { + domStyle.filter = matrix.toFilter(); + domStyle.left = Math.min( + matrix.x(bbox.x, bbox.y), + matrix.x(bbox.x + bbox.width, bbox.y), + matrix.x(bbox.x, bbox.y + bbox.height), + matrix.x(bbox.x + bbox.width, bbox.y + bbox.height)) + 'px'; + domStyle.top = Math.min( + matrix.y(bbox.x, bbox.y), + matrix.y(bbox.x + bbox.width, bbox.y), + matrix.y(bbox.x, bbox.y + bbox.height), + matrix.y(bbox.x + bbox.width, bbox.y + bbox.height)) + 'px'; + } + }, + + createItem: function (config) { + return Ext.create('Ext.draw.Sprite', config); + }, + + getRegion: function () { + return this.el.getRegion(); + }, + + addCls: function (sprite, className) { + if (sprite && sprite.el) { + sprite.el.addCls(className); + } + }, + + removeCls: function (sprite, className) { + if (sprite && sprite.el) { + sprite.el.removeCls(className); + } + }, + + + addGradient: function (gradient) { + var gradients = this.gradientsColl || (this.gradientsColl = Ext.create('Ext.util.MixedCollection')), + colors = [], + stops = Ext.create('Ext.util.MixedCollection'), + keys, + items, + iLen, + key, + item, + i; + + + stops.addAll(gradient.stops); + stops.sortByKey("ASC", function (a, b) { + a = parseInt(a, 10); + b = parseInt(b, 10); + return a > b ? 1 : (a < b ? -1 : 0); + }); + + keys = stops.keys; + items = stops.items; + iLen = keys.length; + + for (i = 0; i < iLen; i++) { + key = keys[i]; + item = items[i]; + colors.push(key + '% ' + item.color); + } + + gradients.add(gradient.id, { + colors: colors.join(","), + angle: gradient.angle + }); + }, + + destroy: function () { + var me = this; + + me.callParent(arguments); + if (me.el) { + me.el.remove(); + } + delete me.el; + } +}); + + + + + + + + + + + + + + + +Ext.define('Ext.flash.Component', { + extend: Ext.Component , + alternateClassName: 'Ext.FlashComponent', + alias: 'widget.flash', + + + flashVersion : '9.0.115', + + + backgroundColor: '#ffffff', + + + wmode: 'opaque', + + + + + + + + + + + swfWidth: '100%', + + + swfHeight: '100%', + + + expressInstall: false, + + + + + renderTpl: ['
'], + + initComponent: function() { + + this.callParent(); + this.addEvents( + + 'success', + + + 'failure' + ); + }, + + beforeRender: function(){ + this.callParent(); + + Ext.applyIf(this.renderData, { + swfId: this.getSwfId() + }); + }, + + afterRender: function() { + var me = this, + flashParams = Ext.apply({}, me.flashParams), + flashVars = Ext.apply({}, me.flashVars); + + me.callParent(); + + flashParams = Ext.apply({ + allowScriptAccess: 'always', + bgcolor: me.backgroundColor, + wmode: me.wmode + }, flashParams); + + flashVars = Ext.apply({ + allowedDomain: document.location.hostname + }, flashVars); + + new swfobject.embedSWF( + me.url, + me.getSwfId(), + me.swfWidth, + me.swfHeight, + me.flashVersion, + me.expressInstall ? me.statics.EXPRESS_INSTALL_URL : undefined, + flashVars, + flashParams, + me.flashAttributes, + Ext.bind(me.swfCallback, me) + ); + }, + + + swfCallback: function(e) { + var me = this; + if (e.success) { + me.swf = Ext.get(e.ref); + me.onSuccess(); + me.fireEvent('success', me); + } else { + me.onFailure(); + me.fireEvent('failure', me); + } + }, + + + getSwfId: function() { + return this.swfId || (this.swfId = "extswf" + this.getAutoId()); + }, + + onSuccess: function() { + + + this.swf.setStyle('visibility', 'inherit'); + }, + + onFailure: Ext.emptyFn, + + beforeDestroy: function() { + var me = this, + swf = me.swf; + if (swf) { + swfobject.removeSWF(me.getSwfId()); + Ext.destroy(swf); + delete me.swf; + } + me.callParent(); + }, + + statics: { + + EXPRESS_INSTALL_URL: 'http:/' + '/swfobject.googlecode.com/svn/trunk/swfobject/expressInstall.swf' + } +}); + + +Ext.define('Ext.form.action.Action', { + alternateClassName: 'Ext.form.Action', + + + + + + + + + + + + + + + + + + + + + + + + + + + submitEmptyText : true, + + + + + + + + + + + constructor: function(config) { + if (config) { + Ext.apply(this, config); + } + + + var params = config.params; + if (Ext.isString(params)) { + this.params = Ext.Object.fromQueryString(params); + } + }, + + + run: Ext.emptyFn, + + + + + + + onFailure : function(response){ + this.response = response; + this.failureType = Ext.form.action.Action.CONNECT_FAILURE; + this.form.afterAction(this, false); + }, + + + processResponse : function(response){ + this.response = response; + if (!response.responseText && !response.responseXML) { + return true; + } + return (this.result = this.handleResponse(response)); + }, + + + getUrl: function() { + return this.url || this.form.url; + }, + + + getMethod: function() { + return (this.method || this.form.method || 'POST').toUpperCase(); + }, + + + getParams: function() { + return Ext.apply({}, this.params, this.form.baseParams); + }, + + + createCallback: function() { + var me = this, + undef, + form = me.form; + return { + success: me.onSuccess, + failure: me.onFailure, + scope: me, + timeout: (this.timeout * 1000) || (form.timeout * 1000), + upload: form.fileUpload ? me.onSuccess : undef + }; + }, + + statics: { + + CLIENT_INVALID: 'client', + + + SERVER_INVALID: 'server', + + + CONNECT_FAILURE: 'connect', + + + LOAD_FAILURE: 'load' + + + } +}); + + +Ext.define('Ext.form.action.Load', { + extend: Ext.form.action.Action , + + alternateClassName: 'Ext.form.Action.Load', + alias: 'formaction.load', + + type: 'load', + + + run: function() { + Ext.Ajax.request(Ext.apply( + this.createCallback(), + { + method: this.getMethod(), + url: this.getUrl(), + headers: this.headers, + params: this.getParams() + } + )); + }, + + + onSuccess: function(response){ + var result = this.processResponse(response), + form = this.form; + if (result === true || !result.success || !result.data) { + this.failureType = Ext.form.action.Action.LOAD_FAILURE; + form.afterAction(this, false); + return; + } + form.clearInvalid(); + form.setValues(result.data); + form.afterAction(this, true); + }, + + + handleResponse: function(response) { + var reader = this.form.reader, + rs, data; + if (reader) { + rs = reader.read(response); + data = rs.records && rs.records[0] ? rs.records[0].data : null; + return { + success : rs.success, + data : data + }; + } + return Ext.decode(response.responseText); + } +}); + + + +Ext.define('Ext.form.action.Submit', { + extend: Ext.form.action.Action , + alternateClassName: 'Ext.form.Action.Submit', + alias: 'formaction.submit', + + type: 'submit', + + + + + run : function(){ + var me = this, + form = me.form; + + if (me.clientValidation === false || form.isValid()) { + me.doSubmit(); + } else { + + me.failureType = Ext.form.action.Action.CLIENT_INVALID; + form.afterAction(me, false); + } + }, + + + doSubmit: function() { + var me = this, + ajaxOptions = Ext.apply(me.createCallback(), { + url: me.getUrl(), + method: me.getMethod(), + headers: me.headers + }), + form = me.form, + jsonSubmit = me.jsonSubmit || form.jsonSubmit, + paramsProp = jsonSubmit ? 'jsonData' : 'params', + formEl, formInfo; + + + + if (form.hasUpload()) { + formInfo = me.buildForm(); + ajaxOptions.form = formInfo.formEl; + ajaxOptions.isUpload = true; + } else { + ajaxOptions[paramsProp] = me.getParams(jsonSubmit); + } + + Ext.Ajax.request(ajaxOptions); + if (formInfo) { + me.cleanup(formInfo); + } + }, + + cleanup: function(formInfo) { + var formEl = formInfo.formEl, + uploadEls = formInfo.uploadEls, + uploadFields = formInfo.uploadFields, + len = uploadFields.length, + i, field; + + for (i = 0; i < len; ++i) { + field = uploadFields[i]; + if (!field.clearOnSubmit) { + field.restoreInput(uploadEls[i]); + } + } + + if (formEl) { + Ext.removeNode(formEl); + } + }, + + + getParams: function(useModelValues) { + var falseVal = false, + configParams = this.callParent(), + fieldParams = this.form.getValues(falseVal, falseVal, this.submitEmptyText !== falseVal, useModelValues); + return Ext.apply({}, fieldParams, configParams); + }, + + + buildForm: function() { + var me = this, + fieldsSpec = [], + formSpec, + formEl, + basicForm = me.form, + params = me.getParams(), + uploadFields = [], + uploadEls = [], + fields = basicForm.getFields().items, + i, + len = fields.length, + field, key, value, v, vLen, + el; + + for (i = 0; i < len; ++i) { + field = fields[i]; + + + if (field.rendered && field.isFileUpload()) { + uploadFields.push(field); + } + } + + for (key in params) { + if (params.hasOwnProperty(key)) { + value = params[key]; + + if (Ext.isArray(value)) { + vLen = value.length; + for (v = 0; v < vLen; v++) { + fieldsSpec.push(me.getFieldConfig(key, value[v])); + } + } else { + fieldsSpec.push(me.getFieldConfig(key, value)); + } + } + } + + formSpec = { + tag: 'form', + action: me.getUrl(), + method: me.getMethod(), + target: me.target || '_self', + style: 'display:none', + cn: fieldsSpec + }; + + + if (uploadFields.length) { + formSpec.encoding = formSpec.enctype = 'multipart/form-data'; + } + + + formEl = Ext.DomHelper.append(Ext.getBody(), formSpec); + + + + + len = uploadFields.length; + + for (i = 0; i < len; ++i) { + el = uploadFields[i].extractFileInput(); + formEl.appendChild(el); + uploadEls.push(el); + } + + return { + formEl: formEl, + uploadFields: uploadFields, + uploadEls: uploadEls + }; + }, + + getFieldConfig: function(name, value) { + return { + tag: 'input', + type: 'hidden', + name: name, + value: Ext.String.htmlEncode(value) + }; + }, + + + onSuccess: function(response) { + var form = this.form, + success = true, + result = this.processResponse(response); + if (result !== true && !result.success) { + if (result.errors) { + form.markInvalid(result.errors); + } + this.failureType = Ext.form.action.Action.SERVER_INVALID; + success = false; + } + form.afterAction(this, success); + }, + + + handleResponse: function(response) { + var form = this.form, + errorReader = form.errorReader, + rs, errors, i, len, records, result; + + if (errorReader) { + rs = errorReader.read(response); + records = rs.records; + errors = []; + if (records) { + for(i = 0, len = records.length; i < len; i++) { + errors[i] = records[i].data; + } + } + if (errors.length < 1) { + errors = null; + } + result = { + success : rs.success, + errors : errors + }; + } else { + try { + result = Ext.decode(response.responseText); + } catch (e) { + result = { + success: false, + errors: [] + }; + } + + } + return result; + } +}); + + +Ext.define('Ext.util.ComponentDragger', { + extend: Ext.dd.DragTracker , + + + + + + + + autoStart: 500, + + + constructor: function(comp, config) { + this.comp = comp; + this.initialConstrainTo = config.constrainTo; + this.callParent([ config ]); + }, + + onStart: function(e) { + var me = this, + comp = me.comp; + + + me.startPosition = comp.getXY(); + + + + if (comp.ghost && !comp.liveDrag) { + me.proxy = comp.ghost(); + me.dragTarget = me.proxy.header.el; + } + + + if (me.constrain || me.constrainDelegate) { + me.constrainTo = me.calculateConstrainRegion(); + } + + if (comp.beginDrag) { + comp.beginDrag(); + } + }, + + calculateConstrainRegion: function() { + var me = this, + comp = me.comp, + constrainTo = me.initialConstrainTo, + constraintInsets = comp.constraintInsets, + constrainEl, + delegateRegion, + elRegion, + dragEl = me.proxy ? me.proxy.el : comp.el, + shadowSize = (!me.constrainDelegate && dragEl.shadow && comp.constrainShadow && !dragEl.shadowDisabled) ? dragEl.shadow.getShadowSize() : 0; + + + if (!(constrainTo instanceof Ext.util.Region)) { + constrainEl = Ext.fly(constrainTo); + constrainTo = constrainEl.getViewRegion(); + + + constrainTo.right = constrainTo.left + constrainEl.dom.clientWidth; + } else { + + constrainTo = constrainTo.copy(); + } + + + if (constraintInsets) { + constraintInsets = Ext.isObject(constraintInsets) ? constraintInsets : Ext.Element.parseBox(constraintInsets); + constrainTo.adjust(constraintInsets.top, constraintInsets.right, constraintInsets.bottom, constraintInsets.length); + } + + + if (shadowSize) { + constrainTo.adjust(shadowSize[0], -shadowSize[1], -shadowSize[2], shadowSize[3]); + } + + + + + if (!me.constrainDelegate) { + delegateRegion = Ext.fly(me.dragTarget).getRegion(); + elRegion = dragEl.getRegion(); + + constrainTo.adjust( + delegateRegion.top - elRegion.top, + delegateRegion.right - elRegion.right, + delegateRegion.bottom - elRegion.bottom, + delegateRegion.left - elRegion.left + ); + } + return constrainTo; + }, + + + onDrag: function(e) { + var me = this, + comp = (me.proxy && !me.comp.liveDrag) ? me.proxy : me.comp, + offset = me.getOffset(me.constrain || me.constrainDelegate ? 'dragTarget' : null); + + comp.setPagePosition(me.startPosition[0] + offset[0], me.startPosition[1] + offset[1]); + }, + + onEnd: function(e) { + var comp = this.comp; + if (comp.isDestroyed || comp.destroying) { + return; + } + + if (this.proxy && !comp.liveDrag) { + comp.unghost(); + } + if (comp.endDrag) { + comp.endDrag(); + } + } +}); + + +Ext.define('Ext.window.Window', { + extend: Ext.panel.Panel , + + alternateClassName: 'Ext.Window', + + + + alias: 'widget.window', + + + + + + + + + + + + + + + + + + + + + + + baseCls: Ext.baseCSSPrefix + 'window', + + + resizable: true, + + + draggable: true, + + + constrain: false, + + + constrainHeader: false, + + + + + plain: false, + + + minimizable: false, + + + maximizable: false, + + + minHeight: 50, + + + minWidth: 50, + + + expandOnShow: true, + + + collapsible: false, + + + closable: true, + + + hidden: true, + + + autoRender: true, + + + hideMode: 'offsets', + + + floating: true, + + itemCls: Ext.baseCSSPrefix + 'window-item', + + initialAlphaNum: /^[a-z0-9]/, + + overlapHeader: true, + + ignoreHeaderBorderManagement: true, + + + alwaysFramed: true, + + + isRootCfg: { + isRoot: true + }, + + + isWindow: true, + + + initComponent: function() { + var me = this; + + + me.frame = false; + me.callParent(); + me.addEvents( + + + + + + 'resize', + + + 'maximize', + + + 'minimize', + + + 'restore' + ); + + if (me.plain) { + me.addClsWithUI('plain'); + } + + if (me.modal) { + me.ariaRole = 'dialog'; + } + + me.addStateEvents(['maximize', 'restore', 'resize', 'dragend']); + }, + + getElConfig: function () { + var me = this, + elConfig; + + elConfig = me.callParent(); + elConfig.tabIndex = -1; + return elConfig; + }, + + + + + getState: function() { + var me = this, + state = me.callParent() || {}, + maximized = !!me.maximized, + ghostBox = me.ghostBox, + pos; + + + state.maximized = maximized; + if (maximized) { + pos = me.restorePos; + } else if (ghostBox) { + + + pos = [ghostBox.x, ghostBox.y]; + } else { + pos = me.getPosition(); + } + Ext.apply(state, { + size: maximized ? me.restoreSize : me.getSize(), + pos: pos + }); + return state; + }, + + applyState: function(state){ + var me = this; + + if (state) { + me.maximized = state.maximized; + if (me.maximized) { + me.hasSavedRestore = true; + me.restoreSize = state.size; + me.restorePos = state.pos; + } else { + Ext.apply(me, { + width: state.size.width, + height: state.size.height, + x: state.pos[0], + y: state.pos[1] + }); + } + } + }, + + + onRender: function(ct, position) { + var me = this; + me.callParent(arguments); + me.focusEl = me.el; + + + if (me.maximizable) { + me.header.on({ + scope: me, + dblclick: me.toggleMaximize + }); + } + }, + + + afterRender: function() { + var me = this, + header = me.header, + keyMap; + + me.callParent(); + + + if (me.maximized) { + me.maximized = false; + me.maximize(); + if (header) { + header.removeCls(header.indicateDragCls) + } + } + + if (me.closable) { + keyMap = me.getKeyMap(); + keyMap.on(27, me.onEsc, me); + } else { + keyMap = me.keyMap; + } + if (keyMap && me.hidden) { + keyMap.disable(); + } + }, + + + + initDraggable: function() { + + this.initSimpleDraggable(); + }, + + initResizable: function(){ + this.callParent(arguments); + if (this.maximized) { + this.resizer.disable(); + } + }, + + + onEsc: function(k, e) { + + if (!Ext.FocusManager || !Ext.FocusManager.enabled || Ext.FocusManager.focusedCmp === this) { + e.stopEvent(); + this.close(); + } + }, + + + beforeDestroy: function() { + var me = this; + if (me.rendered) { + delete this.animateTarget; + me.hide(); + Ext.destroy( + me.keyMap + ); + } + me.callParent(); + }, + + + addTools: function() { + var me = this; + + + me.callParent(); + + if (me.minimizable) { + me.addTool({ + type: 'minimize', + handler: Ext.Function.bind(me.minimize, me, []) + }); + } + if (me.maximizable) { + me.addTool({ + type: 'maximize', + handler: Ext.Function.bind(me.maximize, me, []) + }); + me.addTool({ + type: 'restore', + handler: Ext.Function.bind(me.restore, me, []), + hidden: true + }); + } + }, + + + getFocusEl: function() { + return this.getDefaultFocus(); + }, + + + getDefaultFocus: function() { + var me = this, + result, + defaultComp = me.defaultButton || me.defaultFocus, + selector; + + if (defaultComp !== undefined) { + + if (Ext.isNumber(defaultComp)) { + result = me.query('button')[defaultComp]; + } + + else if (Ext.isString(defaultComp)) { + selector = defaultComp; + + + if (selector.match(me.initialAlphaNum)) { + result = me.down('#' + selector); + } + + if (!result) { + result = me.down(selector); + } + } + + else if (defaultComp.focus) { + result = defaultComp; + } + } + return result || me.el; + }, + + + onFocus: function() { + var me = this, + focusDescendant; + + + if ((Ext.FocusManager && Ext.FocusManager.enabled) || ((focusDescendant = me.getDefaultFocus()) === me)) { + me.callParent(arguments); + } else { + focusDescendant.focus(); + } + }, + + onShow: function() { + var me = this; + + me.callParent(arguments); + if (me.expandOnShow) { + me.expand(false); + } + me.syncMonitorWindowResize(); + + if (me.keyMap) { + me.keyMap.enable(); + } + }, + + + doClose: function() { + var me = this; + + + if (me.hidden) { + me.fireEvent('close', me); + if (me.closeAction == 'destroy') { + this.destroy(); + } + } else { + + me.hide(me.animateTarget, me.doClose, me); + } + }, + + + afterHide: function() { + var me = this; + + + me.syncMonitorWindowResize(); + + + if (me.keyMap) { + me.keyMap.disable(); + } + + + me.callParent(arguments); + }, + + + onWindowResize: function() { + var me = this, + sizeModel; + + if (me.maximized) { + me.fitContainer(); + } else { + sizeModel = me.getSizeModel(); + if (sizeModel.width.natural || sizeModel.height.natural) { + me.updateLayout(); + } + me.doConstrain(); + } + + }, + + + minimize: function() { + this.fireEvent('minimize', this); + return this; + }, + + resumeHeaderLayout: function(changed) { + this.header.resumeLayouts(changed ? this.isRootCfg : null); + }, + + afterCollapse: function() { + var me = this, + header = me.header, + tools = me.tools; + + if (header && me.maximizable) { + header.suspendLayouts(); + tools.maximize.hide(); + tools.restore.hide(); + this.resumeHeaderLayout(true); + } + if (me.resizer) { + me.resizer.disable(); + } + me.callParent(arguments); + }, + + afterExpand: function() { + var me = this, + header = me.header, + tools = me.tools, + changed; + + + if (header) { + header.suspendLayouts(); + if (me.maximized) { + tools.restore.show(); + changed = true; + } else if (me.maximizable) { + tools.maximize.show(); + changed = true; + } + this.resumeHeaderLayout(changed); + } + if (me.resizer) { + me.resizer.enable(); + } + me.callParent(arguments); + }, + + + maximize: function(animate) { + var me = this, + header = me.header, + tools = me.tools, + changed; + + if (!me.maximized) { + me.expand(false); + if (!me.hasSavedRestore) { + me.restoreSize = me.getSize(); + me.restorePos = me.getPosition(true); + } + + + if (header) { + header.suspendLayouts(); + if (tools.maximize) { + tools.maximize.hide(); + changed = true; + } + if (tools.restore) { + tools.restore.show(); + changed = true; + } + if (me.collapseTool) { + me.collapseTool.hide(); + changed = true; + } + me.resumeHeaderLayout(changed); + } + + me.maximized = true; + me.el.disableShadow(); + + if (me.dd) { + me.dd.disable(); + if (header) { + header.removeCls(header.indicateDragCls) + } + } + if (me.resizer) { + me.resizer.disable(); + } + + me.el.addCls(Ext.baseCSSPrefix + 'window-maximized'); + me.container.addCls(Ext.baseCSSPrefix + 'window-maximized-ct'); + + me.syncMonitorWindowResize(); + me.fitContainer(animate = (animate || !!me.animateTarget) ? { + callback: function() { + me.fireEvent('maximize', me); + } + } : null); + if (!animate) { + me.fireEvent('maximize', me); + } + } + return me; + }, + + + restore: function(animate) { + var me = this, + tools = me.tools, + header = me.header, + newBox = me.restoreSize, + changed; + + if (me.maximized) { + me.hasSavedRestore = null; + me.removeCls(Ext.baseCSSPrefix + 'window-maximized'); + + + if (header) { + header.suspendLayouts(); + if (tools.restore) { + tools.restore.hide(); + changed = true; + } + if (tools.maximize) { + tools.maximize.show(); + changed = true; + } + if (me.collapseTool) { + me.collapseTool.show(); + changed = true; + } + me.resumeHeaderLayout(changed); + } + + me.maximized = false; + + + newBox.x = me.restorePos[0]; + newBox.y = me.restorePos[1]; + me.setBox(newBox, animate = (animate || !!me.animateTarget) ? { + callback: function() { + me.el.enableShadow(true); + me.fireEvent('restore', me); + } + } : null); + + + me.restorePos = me.restoreSize = null; + + + if (me.dd) { + me.dd.enable(); + if (header) { + header.addCls(header.indicateDragCls) + } + } + + if (me.resizer) { + me.resizer.enable(); + } + + me.container.removeCls(Ext.baseCSSPrefix + 'window-maximized-ct'); + + me.syncMonitorWindowResize(); + + if (!animate) { + me.el.enableShadow(true); + me.fireEvent('restore', me); + } + } + return me; + }, + + + syncMonitorWindowResize: function () { + var me = this, + currentlyMonitoring = me._monitoringResize, + + yes = me.monitorResize || me.constrain || me.constrainHeader || me.maximized, + + veto = me.hidden || me.destroying || me.isDestroyed; + + if (yes && !veto) { + + if (!currentlyMonitoring) { + + + Ext.EventManager.onWindowResize(me.onWindowResize, me, {delay: 1}); + me._monitoringResize = true; + } + } else if (currentlyMonitoring) { + + Ext.EventManager.removeResizeListener(me.onWindowResize, me); + me._monitoringResize = false; + } + }, + + + toggleMaximize: function() { + return this[this.maximized ? 'restore': 'maximize'](); + } + +}); + + +Ext.define("Ext.form.Labelable", { + + + autoEl: { + tag: 'table', + cellpadding: 0 + }, + + childEls: [ + + 'labelCell', + + + 'labelEl', + + + 'bodyEl', + + + 'sideErrorCell', + + + 'errorEl', + + 'inputRow' + ], + + + labelableRenderTpl: [ + + + 'id="{id}"
class="{inputRowCls}">', + + + '', + '', + '{beforeLabelTpl}', + ' class="{labelCls}"', + ' style="{labelStyle}"', + + ' unselectable="on"', + '>', + '{beforeLabelTextTpl}', + '{fieldLabel}{labelSeparator}', + '{afterLabelTextTpl}', + '', + '{afterLabelTpl}', + '', + '
', + + + '', + '{beforeBodyEl}', + + + '', + '{beforeLabelTpl}', + '', + '{afterLabelTpl}', + '', + + '{beforeSubTpl}', + '{[values.$comp.getSubTplMarkup(values)]}', + '{afterSubTpl}', + + + '', + '{afterBodyEl}', + '', + '', + '', + '', + '', + '', + '{afterBodyEl}', + '', + '', + '', + { + disableFormats: true + } + ], + + + activeErrorsTpl: undefined, + + htmlActiveErrorsTpl: [ + '', + '
  • {.}
', + '
' + ], + + plaintextActiveErrorsTpl: [ + '', + '\n{.}', + '' + ], + + + isFieldLabelable: true, + + + formItemCls: Ext.baseCSSPrefix + 'form-item', + + + labelCls: Ext.baseCSSPrefix + 'form-item-label', + + + + + errorMsgCls: Ext.baseCSSPrefix + 'form-error-msg', + + + baseBodyCls: Ext.baseCSSPrefix + 'form-item-body', + + + inputRowCls: Ext.baseCSSPrefix + 'form-item-input-row', + + + fieldBodyCls: '', + + + clearCls: Ext.baseCSSPrefix + 'clear', + + + invalidCls : Ext.baseCSSPrefix + 'form-invalid', + + + fieldLabel: undefined, + + + labelAlign : 'left', + + + labelWidth: 100, + + + labelPad : 5, + + + + labelSeparator : ':', + + + + + + hideLabel: false, + + + hideEmptyLabel: true, + + + preventMark: false, + + + autoFitErrors: true, + + + msgTarget: 'qtip', + + + + + noWrap: true, + + labelableInsertions: [ + + + 'beforeBodyEl', + + + 'afterBodyEl', + + + 'beforeLabelTpl', + + + 'afterLabelTpl', + + + 'beforeSubTpl', + + + 'afterSubTpl', + + + 'beforeLabelTextTpl', + + + 'afterLabelTextTpl', + + + 'labelAttrTpl' + ], + + + labelableRenderProps: ['allowBlank', 'id', 'labelAlign', 'fieldBodyCls', 'extraFieldBodyCls', + 'baseBodyCls', 'clearCls', 'labelSeparator', 'msgTarget', 'inputRowCls'], + + + initLabelable: function() { + var me = this, + padding = me.padding; + + + + + if (padding) { + me.padding = undefined; + me.extraMargins = Ext.Element.parseBox(padding); + } + + if (!me.activeErrorsTpl) { + if (me.msgTarget == 'title') { + me.activeErrorsTpl = me.plaintextActiveErrorsTpl; + } else { + me.activeErrorsTpl = me.htmlActiveErrorsTpl; + } + } + + me.addCls(Ext.plainTableCls); + me.addCls(me.formItemCls); + + + me.lastActiveError = ''; + + me.addEvents( + + 'errorchange' + ); + + + me.enableBubble('errorchange'); + }, + + + trimLabelSeparator: function() { + var me = this, + separator = me.labelSeparator, + label = me.fieldLabel || '', + lastChar = label.substr(label.length - 1); + + + return lastChar === separator ? label.slice(0, -1) : label; + }, + + + getFieldLabel: function() { + return this.trimLabelSeparator(); + }, + + + setFieldLabel: function(label){ + label = label || ''; + + var me = this, + separator = me.labelSeparator, + labelEl = me.labelEl; + + me.fieldLabel = label; + if (me.rendered) { + if (Ext.isEmpty(label) && me.hideEmptyLabel) { + labelEl.parent().setDisplayed('none'); + } else { + if (separator) { + label = me.trimLabelSeparator() + separator; + } + labelEl.update(label); + labelEl.parent().setDisplayed(''); + } + me.updateLayout(); + } + }, + + getInsertionRenderData: function (data, names) { + var i = names.length, + name, value; + + while (i--) { + name = names[i]; + value = this[name]; + + if (value) { + if (typeof value != 'string') { + if (!value.isTemplate) { + value = Ext.XTemplate.getTpl(this, name); + } + value = value.apply(data); + } + } + + data[name] = value || ''; + } + + return data; + }, + + + getLabelableRenderData: function() { + var me = this, + data, + tempEl, + topLabel = me.labelAlign === 'top'; + + if (!Ext.form.Labelable.errorIconWidth) { + tempEl = Ext.getBody().createChild({style: 'position:absolute', cls: Ext.baseCSSPrefix + 'form-invalid-icon'}); + Ext.form.Labelable.errorIconWidth = tempEl.getWidth() + tempEl.getMargin('l'); + tempEl.remove(); + } + + data = Ext.copyTo({ + inFormLayout : me.ownerLayout && me.ownerLayout.type === 'form', + inputId : me.getInputId(), + labelOnLeft : !topLabel, + hideLabel : !me.hasVisibleLabel(), + fieldLabel : me.getFieldLabel(), + labelCellStyle : me.getLabelCellStyle(), + labelCellAttrs : me.getLabelCellAttrs(), + labelCls : me.getLabelCls(), + labelStyle : me.getLabelStyle(), + bodyColspan : me.getBodyColspan(), + externalError : !me.autoFitErrors, + errorMsgCls : me.getErrorMsgCls(), + errorIconWidth : Ext.form.Labelable.errorIconWidth + }, + me, me.labelableRenderProps, true); + + me.getInsertionRenderData(data, me.labelableInsertions); + + return data; + }, + + xhooks: { + beforeRender: function() { + var me = this; + me.setFieldDefaults(me.getHierarchyState().fieldDefaults); + if (me.ownerLayout) { + me.addCls(Ext.baseCSSPrefix + me.ownerLayout.type + '-form-item'); + } + }, + + onRender: function() { + var me = this, + margins, + side, + style = {}; + + if (me.extraMargins) { + margins = me.el.getMargin(); + for (side in margins) { + if (margins.hasOwnProperty(side)) { + style['margin-' + side] = (margins[side] + me.extraMargins[side]) + 'px'; + } + } + me.el.setStyle(style); + } + } + }, + + + hasVisibleLabel: function(){ + if (this.hideLabel) { + return false; + } + return !(this.hideEmptyLabel && !this.getFieldLabel()); + }, + + + getLabelWidth: function(){ + var me = this; + if (!me.hasVisibleLabel()) { + return 0; + } + return me.labelWidth + me.labelPad; + }, + + + getBodyColspan: function() { + var me = this, + result; + + if (me.msgTarget === 'side' && (!me.autoFitErrors || me.hasActiveError())) { + result = 1; + } else { + result = 2; + } + if (me.labelAlign !== 'top' && !me.hasVisibleLabel()) { + result++; + } + return result; + }, + + getLabelCls: function() { + var labelCls = this.labelCls + ' ' + Ext.dom.Element.unselectableCls, + labelClsExtra = this.labelClsExtra; + + return labelClsExtra ? labelCls + ' ' + labelClsExtra : labelCls; + }, + + getLabelCellStyle: function() { + var me = this, + hideLabelCell = me.hideLabel || (!me.getFieldLabel() && me.hideEmptyLabel); + + return hideLabelCell ? 'display:none;' : ''; + }, + + getErrorMsgCls: function() { + var me = this, + hideLabelCell = (me.hideLabel || (!me.fieldLabel && me.hideEmptyLabel)); + + return me.errorMsgCls + (!hideLabelCell && me.labelAlign === 'top' ? ' ' + Ext.baseCSSPrefix + 'lbl-top-err-icon' : ''); + }, + + getLabelCellAttrs: function() { + var me = this, + labelAlign = me.labelAlign, + result = ''; + + if (labelAlign !== 'top') { + result = 'valign="top" halign="' + labelAlign + '" width="' + (me.labelWidth + me.labelPad) + '"'; + } + return result + ' class="' + Ext.baseCSSPrefix + 'field-label-cell"'; + }, + + + getLabelStyle: function(){ + var me = this, + labelPad = me.labelPad, + labelStyle = ''; + + + + if (me.labelAlign !== 'top') { + if (me.labelWidth) { + labelStyle = 'width:' + me.labelWidth + 'px;'; + } + if (labelPad) { + labelStyle += 'margin-right:' + labelPad + 'px;'; + } + } + + return labelStyle + (me.labelStyle || ''); + }, + + + getSubTplMarkup: function() { + return ''; + }, + + + getInputId: function() { + return ''; + }, + + + getActiveError : function() { + return this.activeError || ''; + }, + + + hasActiveError: function() { + return !!this.getActiveError(); + }, + + + setActiveError: function(msg) { + this.setActiveErrors(msg); + }, + + + getActiveErrors: function() { + return this.activeErrors || []; + }, + + + setActiveErrors: function(errors) { + errors = Ext.Array.from(errors); + this.activeError = errors[0]; + this.activeErrors = errors; + this.activeError = this.getTpl('activeErrorsTpl').apply({ + errors: errors, + listCls: Ext.plainListCls + }); + this.renderActiveError(); + }, + + + unsetActiveError: function() { + delete this.activeError; + delete this.activeErrors; + this.renderActiveError(); + }, + + + renderActiveError: function() { + var me = this, + activeError = me.getActiveError(), + hasError = !!activeError; + + if (activeError !== me.lastActiveError) { + me.fireEvent('errorchange', me, activeError); + me.lastActiveError = activeError; + } + + if (me.rendered && !me.isDestroyed && !me.preventMark) { + + me.el[hasError ? 'addCls' : 'removeCls'](me.invalidCls); + + + me.getActionEl().dom.setAttribute('aria-invalid', hasError); + + + if (me.errorEl) { + me.errorEl.dom.innerHTML = activeError; + } + } + }, + + + setFieldDefaults: function(defaults) { + var key; + + for (key in defaults) { + if (!this.hasOwnProperty(key)) { + this[key] = defaults[key]; + } + } + } +}); + + +Ext.define('Ext.form.field.Field', { + + isFormField : true, + + + + + + + disabled : false, + + + submitValue: true, + + + validateOnChange: true, + + + suspendCheckChange: 0, + + + initField: function() { + this.addEvents( + + 'change', + + 'validitychange', + + 'dirtychange' + ); + + this.initValue(); + + }, + + + initValue: function() { + var me = this; + + me.value = me.transformOriginalValue(me.value); + + me.originalValue = me.lastValue = me.value; + + + me.suspendCheckChange++; + me.setValue(me.value); + me.suspendCheckChange--; + }, + + + transformOriginalValue: Ext.identityFn, + + + getName: function() { + return this.name; + }, + + + getValue: function() { + return this.value; + }, + + + setValue: function(value) { + var me = this; + me.value = value; + me.checkChange(); + return me; + }, + + + isEqual: function(value1, value2) { + return String(value1) === String(value2); + }, + + + isEqualAsString: function(value1, value2){ + return String(Ext.value(value1, '')) === String(Ext.value(value2, '')); + }, + + + getSubmitData: function() { + var me = this, + data = null; + if (!me.disabled && me.submitValue && !me.isFileUpload()) { + data = {}; + data[me.getName()] = '' + me.getValue(); + } + return data; + }, + + + getModelData: function() { + var me = this, + data = null; + if (!me.disabled && !me.isFileUpload()) { + data = {}; + data[me.getName()] = me.getValue(); + } + return data; + }, + + + reset : function(){ + var me = this; + + me.beforeReset(); + me.setValue(me.originalValue); + me.clearInvalid(); + + delete me.wasValid; + }, + + + beforeReset: Ext.emptyFn, + + + resetOriginalValue: function() { + this.originalValue = this.getValue(); + this.checkDirty(); + }, + + + checkChange: function() { + if (!this.suspendCheckChange) { + var me = this, + newVal = me.getValue(), + oldVal = me.lastValue; + if (!me.isEqual(newVal, oldVal) && !me.isDestroyed) { + me.lastValue = newVal; + me.fireEvent('change', me, newVal, oldVal); + me.onChange(newVal, oldVal); + } + } + }, + + + onChange: function(newVal, oldVal) { + if (this.validateOnChange) { + this.validate(); + } + this.checkDirty(); + }, + + + isDirty : function() { + var me = this; + return !me.disabled && !me.isEqual(me.getValue(), me.originalValue); + }, + + + checkDirty: function() { + var me = this, + isDirty = me.isDirty(); + if (isDirty !== me.wasDirty) { + me.fireEvent('dirtychange', me, isDirty); + me.onDirtyChange(isDirty); + me.wasDirty = isDirty; + } + }, + + + onDirtyChange: Ext.emptyFn, + + + getErrors: function(value) { + return []; + }, + + + isValid : function() { + var me = this; + return me.disabled || Ext.isEmpty(me.getErrors()); + }, + + + validate : function() { + var me = this, + isValid = me.isValid(); + if (isValid !== me.wasValid) { + me.wasValid = isValid; + me.fireEvent('validitychange', me, isValid); + } + return isValid; + }, + + + batchChanges: function(fn) { + try { + this.suspendCheckChange++; + fn(); + } catch(e){ + throw e; + } finally { + this.suspendCheckChange--; + } + this.checkChange(); + }, + + + isFileUpload: function() { + return false; + }, + + + extractFileInput: function() { + return null; + }, + + + markInvalid: Ext.emptyFn, + + + clearInvalid: Ext.emptyFn + +}); + + +Ext.define('Ext.layout.component.field.Field', { + + + + extend: Ext.layout.component.Auto , + + alias: 'layout.field', + + + + + + type: 'field', + + naturalSizingProp: 'size', + + beginLayout: function(ownerContext) { + var me = this, + owner = me.owner; + + me.callParent(arguments); + + ownerContext.labelStrategy = me.getLabelStrategy(); + ownerContext.errorStrategy = me.getErrorStrategy(); + + ownerContext.labelContext = ownerContext.getEl('labelEl'); + ownerContext.bodyCellContext = ownerContext.getEl('bodyEl'); + ownerContext.inputContext = ownerContext.getEl('inputEl'); + ownerContext.errorContext = ownerContext.getEl('errorEl'); + + + + if (Ext.isIE7m && Ext.isStrict && ownerContext.inputContext) { + me.ieInputWidthAdjustment = ownerContext.inputContext.getPaddingInfo().width + ownerContext.inputContext.getBorderInfo().width; + } + + + ownerContext.labelStrategy.prepare(ownerContext, owner); + ownerContext.errorStrategy.prepare(ownerContext, owner); + }, + + beginLayoutCycle: function(ownerContext){ + var me = this, + owner = me.owner, + widthModel = ownerContext.widthModel, + ownerNaturalSize = owner[me.naturalSizingProp], + width; + + me.callParent(arguments); + + if (widthModel.shrinkWrap) { + + me.beginLayoutShrinkWrap(ownerContext); + } else if (widthModel.natural) { + + + if (typeof ownerNaturalSize == 'number' && !owner.inputWidth) { + me.beginLayoutFixed(ownerContext, (width = ownerNaturalSize * 6.5 + 20), 'px'); + } + + + else { + me.beginLayoutShrinkWrap(ownerContext); + } + ownerContext.setWidth(width, false); + } else { + me.beginLayoutFixed(ownerContext, '100', '%'); + } + }, + + beginLayoutFixed: function (ownerContext, width, suffix) { + var owner = ownerContext.target, + inputEl = owner.inputEl, + inputWidth = owner.inputWidth; + + owner.el.setStyle('table-layout', 'fixed'); + owner.bodyEl.setStyle('width', width + suffix); + if (inputEl) { + if (inputWidth) { + inputEl.setStyle('width', inputWidth + 'px'); + } else { + inputEl.setStyle('width', owner.stretchInputElFixed ? '100%' : ''); + } + } + ownerContext.isFixed = true; + }, + + beginLayoutShrinkWrap: function (ownerContext) { + var owner = ownerContext.target, + inputEl = owner.inputEl, + inputWidth = owner.inputWidth; + + if (inputEl && inputEl.dom) { + inputEl.dom.removeAttribute('size'); + if (inputWidth) { + inputEl.setStyle('width', inputWidth + 'px'); + } else { + inputEl.setStyle('width', ''); + } + } + owner.el.setStyle('table-layout', 'auto'); + owner.bodyEl.setStyle('width', ''); + }, + + finishedLayout: function(ownerContext){ + var owner = this.owner; + + this.callParent(arguments); + ownerContext.labelStrategy.finishedLayout(ownerContext, owner); + ownerContext.errorStrategy.finishedLayout(ownerContext, owner); + }, + + calculateOwnerHeightFromContentHeight: function(ownerContext, contentHeight) { + return contentHeight; + }, + + measureContentHeight: function (ownerContext) { + return ownerContext.el.getHeight(); + }, + + measureContentWidth: function (ownerContext) { + return ownerContext.el.getWidth(); + }, + + measureLabelErrorHeight: function (ownerContext) { + return ownerContext.labelStrategy.getHeight(ownerContext) + + ownerContext.errorStrategy.getHeight(ownerContext); + }, + + onFocus: function() { + this.getErrorStrategy().onFocus(this.owner); + }, + + + getLabelStrategy: function() { + var me = this, + strategies = me.labelStrategies, + labelAlign = me.owner.labelAlign; + return strategies[labelAlign] || strategies.base; + }, + + + getErrorStrategy: function() { + var me = this, + owner = me.owner, + strategies = me.errorStrategies, + msgTarget = owner.msgTarget; + return !owner.preventMark && Ext.isString(msgTarget) ? + (strategies[msgTarget] || strategies.elementId) : + strategies.none; + }, + + + labelStrategies: (function() { + var base = { + prepare: function(ownerContext, owner) { + var cls = owner.labelCls + '-' + owner.labelAlign, + labelEl = owner.labelEl; + + if (labelEl) { + labelEl.addCls(cls); + } + }, + + getHeight: function () { + return 0; + }, + + finishedLayout: Ext.emptyFn + }; + + return { + base: base, + + + top: Ext.applyIf({ + + getHeight: function (ownerContext) { + var labelContext = ownerContext.labelContext, + props = labelContext.props, + height = props.height; + + if (height === undefined) { + props.height = height = labelContext.el.getHeight(); + } + + return height; + } + }, base), + + + left: base, + + + right: base + }; + }()), + + + errorStrategies: (function() { + function showTip(owner) { + var tip = Ext.layout.component.field.Field.tip, + target; + + if (tip && tip.isVisible()) { + target = tip.activeTarget; + if (target && target.el === owner.getActionEl().dom) { + tip.toFront(true); + } + } + } + + var applyIf = Ext.applyIf, + emptyFn = Ext.emptyFn, + iconCls = Ext.baseCSSPrefix + 'form-invalid-icon', + iconWidth, + base = { + prepare: function(ownerContext, owner) { + var el = owner.errorEl; + if (el) { + el.setDisplayed(false); + } + }, + getHeight: function () { + return 0; + }, + onFocus: emptyFn, + finishedLayout: emptyFn + }; + + return { + none: base, + + + side: applyIf({ + prepare: function(ownerContext, owner) { + var errorEl = owner.errorEl, + sideErrorCell = owner.sideErrorCell, + displayError = owner.hasActiveError(), + tempEl; + + + if (!iconWidth) { + iconWidth = (tempEl = Ext.getBody().createChild({style: 'position:absolute', cls: iconCls})).getWidth(); + tempEl.remove(); + } + + errorEl.addCls(iconCls); + errorEl.set({'data-errorqtip': owner.getActiveError() || ''}); + if (owner.autoFitErrors) { + errorEl.setDisplayed(displayError); + } + + else { + errorEl.setVisible(displayError); + } + + + if (sideErrorCell && owner.autoFitErrors) { + sideErrorCell.setDisplayed(displayError); + } + owner.bodyEl.dom.colSpan = owner.getBodyColspan(); + + + Ext.layout.component.field.Field.initTip(); + }, + onFocus: showTip + }, base), + + + under: applyIf({ + prepare: function(ownerContext, owner) { + var errorEl = owner.errorEl, + cls = Ext.baseCSSPrefix + 'form-invalid-under'; + + errorEl.addCls(cls); + errorEl.setDisplayed(owner.hasActiveError()); + }, + getHeight: function (ownerContext) { + var height = 0, + errorContext, props; + + if (ownerContext.target.hasActiveError()) { + errorContext = ownerContext.errorContext; + props = errorContext.props; + height = props.height; + + if (height === undefined) { + props.height = height = errorContext.el.getHeight(); + } + } + + return height; + } + }, base), + + + qtip: applyIf({ + prepare: function(ownerContext, owner) { + Ext.layout.component.field.Field.initTip(); + owner.getActionEl().dom.setAttribute('data-errorqtip', owner.getActiveError() || ''); + }, + onFocus: showTip + }, base), + + + title: applyIf({ + prepare: function(ownerContext, owner) { + owner.getActionEl().dom.setAttribute('title', owner.getActiveError() || ''); + } + }, base), + + + elementId: applyIf({ + prepare: function(ownerContext, owner) { + var targetEl = Ext.fly(owner.msgTarget); + if (targetEl) { + targetEl.dom.innerHTML = owner.getActiveError() || ''; + targetEl.setDisplayed(owner.hasActiveError()); + } + } + }, base) + }; + }()), + + statics: { + + initTip: function() { + var tip = this.tip; + if (!tip) { + tip = this.tip = Ext.create('Ext.tip.QuickTip', { + ui: 'form-invalid' + }); + tip.tagConfig = Ext.apply({}, {attribute: 'errorqtip'}, tip.tagConfig); + } + }, + + + destroyTip: function() { + var tip = this.tip; + if (tip) { + tip.destroy(); + delete this.tip; + } + } + } +}); + + +Ext.define('Ext.form.field.Base', { + extend: Ext.Component , + mixins: { + labelable: Ext.form.Labelable , + field: Ext.form.field.Field + }, + alias: 'widget.field', + alternateClassName: ['Ext.form.Field', 'Ext.form.BaseField'], + + + + fieldSubTpl: [ + ' name="{name}"
', + ' value="{[Ext.util.Format.htmlEncode(values.value)]}"', + ' placeholder="{placeholder}"', + '{%if (values.maxLength !== undefined){%} maxlength="{maxLength}"{%}%}', + ' readonly="readonly"', + ' disabled="disabled"', + ' tabIndex="{tabIdx}"', + ' style="{fieldStyle}"', + ' class="{fieldCls} {typeCls} {editableCls} {inputCls}" autocomplete="off"/>', + { + disableFormats: true + } + ], + + subTplInsertions: [ + + 'inputAttrTpl' + ], + + + + + inputType: 'text', + + + + + + invalidText : 'The value in this field is invalid', + + + + fieldCls : Ext.baseCSSPrefix + 'form-field', + + + + + focusCls : 'form-focus', + + + dirtyCls : Ext.baseCSSPrefix + 'form-dirty', + + + checkChangeEvents: Ext.isIE && (!document.documentMode || document.documentMode < 9) ? + ['change', 'propertychange', 'keyup'] : + ['change', 'input', 'textInput', 'keyup', 'dragdrop'], + + + checkChangeBuffer: 50, + + componentLayout: 'field', + + + readOnly : false, + + + readOnlyCls: Ext.baseCSSPrefix + 'form-readonly', + + + + + validateOnBlur: true, + + + hasFocus : false, + + baseCls: Ext.baseCSSPrefix + 'field', + + maskOnDisable: false, + + + + + stretchInputElFixed: true, + + + initComponent : function() { + var me = this; + + me.callParent(); + + me.subTplData = me.subTplData || {}; + + me.addEvents( + + 'specialkey', + + + 'writeablechange' + ); + + + me.initLabelable(); + me.initField(); + + + if (!me.name) { + me.name = me.getInputId(); + } + + if (me.readOnly) { + me.addCls(me.readOnlyCls); + } + + me.addCls(Ext.baseCSSPrefix + 'form-type-' + me.inputType); + }, + + + getInputId: function() { + return this.inputId || (this.inputId = this.id + '-inputEl'); + }, + + + getSubTplData: function() { + var me = this, + type = me.inputType, + inputId = me.getInputId(), + data; + + data = Ext.apply({ + id : inputId, + cmpId : me.id, + name : me.name || inputId, + disabled : me.disabled, + readOnly : me.readOnly, + value : me.getRawValue(), + type : type, + fieldCls : me.fieldCls, + fieldStyle : me.getFieldStyle(), + tabIdx : me.tabIndex, + inputCls : me.inputCls, + typeCls : Ext.baseCSSPrefix + 'form-' + (type === 'password' ? 'text' : type) + }, me.subTplData); + + me.getInsertionRenderData(data, me.subTplInsertions); + + return data; + }, + + applyRenderSelectors: function() { + var me = this; + + me.callParent(); + + + + me.addChildEls('inputEl'); + + + me.inputEl = me.el.getById(me.getInputId()); + }, + + + getSubTplMarkup: function() { + return this.getTpl('fieldSubTpl').apply(this.getSubTplData()); + }, + + initRenderTpl: function() { + var me = this; + if (!me.hasOwnProperty('renderTpl')) { + me.renderTpl = me.getTpl('labelableRenderTpl'); + } + return me.callParent(); + }, + + initRenderData: function() { + return Ext.applyIf(this.callParent(), this.getLabelableRenderData()); + }, + + + setFieldStyle: function(style) { + var me = this, + inputEl = me.inputEl; + if (inputEl) { + inputEl.applyStyles(style); + } + me.fieldStyle = style; + }, + + getFieldStyle: function() { + return Ext.isObject(this.fieldStyle) ? Ext.DomHelper.generateStyles(this.fieldStyle) : this.fieldStyle ||''; + }, + + + onRender : function() { + this.callParent(arguments); + this.renderActiveError(); + }, + + getFocusEl: function() { + return this.inputEl; + }, + + isFileUpload: function() { + return this.inputType === 'file'; + }, + + + getSubmitData: function() { + var me = this, + data = null, + val; + if (!me.disabled && me.submitValue && !me.isFileUpload()) { + val = me.getSubmitValue(); + if (val !== null) { + data = {}; + data[me.getName()] = val; + } + } + return data; + }, + + + getSubmitValue: function() { + return this.processRawValue(this.getRawValue()); + }, + + + getRawValue: function() { + var me = this, + v = (me.inputEl ? me.inputEl.getValue() : Ext.value(me.rawValue, '')); + me.rawValue = v; + return v; + }, + + + setRawValue: function(value) { + var me = this; + value = Ext.value(me.transformRawValue(value), ''); + me.rawValue = value; + + + if (me.inputEl) { + me.inputEl.dom.value = value; + } + return value; + }, + + + transformRawValue: Ext.identityFn, + + + valueToRaw: function(value) { + return '' + Ext.value(value, ''); + }, + + + rawToValue: Ext.identityFn, + + + processRawValue: Ext.identityFn, + + + getValue: function() { + var me = this, + val = me.rawToValue(me.processRawValue(me.getRawValue())); + me.value = val; + return val; + }, + + + setValue: function(value) { + var me = this; + me.setRawValue(me.valueToRaw(value)); + return me.mixins.field.setValue.call(me, value); + }, + + onBoxReady: function() { + var me = this; + me.callParent(); + + if (me.setReadOnlyOnBoxReady) { + me.setReadOnly(me.readOnly); + } + + }, + + + onDisable: function() { + var me = this, + inputEl = me.inputEl; + + me.callParent(); + if (inputEl) { + inputEl.dom.disabled = true; + if (me.hasActiveError()) { + + me.clearInvalid(); + me.needsValidateOnEnable = true; + } + } + }, + + + onEnable: function() { + var me = this, + inputEl = me.inputEl; + + me.callParent(); + if (inputEl) { + inputEl.dom.disabled = false; + if (me.needsValidateOnEnable) { + delete me.needsValidateOnEnable; + + me.forceValidation = true; + me.isValid(); + delete me.forceValidation; + } + } + }, + + + setReadOnly: function(readOnly) { + var me = this, + inputEl = me.inputEl; + readOnly = !!readOnly; + me[readOnly ? 'addCls' : 'removeCls'](me.readOnlyCls); + me.readOnly = readOnly; + if (inputEl) { + inputEl.dom.readOnly = readOnly; + } else if (me.rendering) { + me.setReadOnlyOnBoxReady = true; + } + me.fireEvent('writeablechange', me, readOnly); + }, + + + fireKey: function(e){ + if(e.isSpecialKey()){ + this.fireEvent('specialkey', this, new Ext.EventObjectImpl(e)); + } + }, + + + initEvents : function(){ + var me = this, + inputEl = me.inputEl, + onChangeTask, + onChangeEvent, + events = me.checkChangeEvents, + e, + eLen = events.length, + event; + + if (inputEl) { + me.mon(inputEl, Ext.EventManager.getKeyEvent(), me.fireKey, me); + + + onChangeTask = new Ext.util.DelayedTask(me.checkChange, me); + me.onChangeEvent = onChangeEvent = function() { + onChangeTask.delay(me.checkChangeBuffer); + }; + + for (e = 0; e < eLen; e++) { + event = events[e]; + + if (event === 'propertychange') { + me.usesPropertychange = true; + } + + me.mon(inputEl, event, onChangeEvent); + } + } + me.callParent(); + }, + + doComponentLayout: function() { + var me = this, + inputEl = me.inputEl, + usesPropertychange = me.usesPropertychange, + ename = 'propertychange', + onChangeEvent = me.onChangeEvent; + + + + + if (usesPropertychange) { + me.mun(inputEl, ename, onChangeEvent); + } + me.callParent(arguments); + if (usesPropertychange) { + me.mon(inputEl, ename, onChangeEvent); + } + }, + + + onDirtyChange: function(isDirty) { + this[isDirty ? 'addCls' : 'removeCls'](this.dirtyCls); + }, + + + + isValid : function() { + var me = this, + disabled = me.disabled, + validate = me.forceValidation || !disabled; + + + return validate ? me.validateValue(me.processRawValue(me.getRawValue())) : disabled; + }, + + + + validateValue: function(value) { + var me = this, + errors = me.getErrors(value), + isValid = Ext.isEmpty(errors); + if (!me.preventMark) { + if (isValid) { + me.clearInvalid(); + } else { + me.markInvalid(errors); + } + } + + return isValid; + }, + + + markInvalid : function(errors) { + + var me = this, + oldMsg = me.getActiveError(), + active; + + me.setActiveErrors(Ext.Array.from(errors)); + active = me.getActiveError(); + if (oldMsg !== active) { + me.setError(active); + } + }, + + + clearInvalid : function() { + + var me = this, + hadError = me.hasActiveError(); + + delete me.needsValidateOnEnable; + me.unsetActiveError(); + if (hadError) { + me.setError(''); + } + }, + + + setError: function(active){ + var me = this, + msgTarget = me.msgTarget, + prop; + + if (me.rendered) { + if (msgTarget == 'title' || msgTarget == 'qtip') { + if (me.rendered) { + prop = msgTarget == 'qtip' ? 'data-errorqtip' : 'title'; + } + me.getActionEl().dom.setAttribute(prop, active || ''); + } else { + me.updateLayout(); + } + } + }, + + + renderActiveError: function() { + var me = this, + hasError = me.hasActiveError(); + if (me.inputEl) { + + me.inputEl[hasError ? 'addCls' : 'removeCls'](me.invalidCls + '-field'); + } + me.mixins.labelable.renderActiveError.call(me); + }, + + + getActionEl: function() { + return this.inputEl || this.el; + } + +}); + + +Ext.define('Ext.form.field.VTypes', (function(){ + + var alpha = /^[a-zA-Z_]+$/, + alphanum = /^[a-zA-Z0-9_]+$/, + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + email = /^(")?(?:[^\."])(?:(?:[\.])?(?:[\w\-!#$%&'*+/=?^_`{|}~]))*\1@(\w[\-\w]*\.){1,5}([A-Za-z]){2,6}$/, + url = /(((^https?)|(^ftp)):\/\/((([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*)|(localhost|LOCALHOST))\/?)/i; + + + return { + singleton: true, + alternateClassName: 'Ext.form.VTypes', + + + 'email' : function(v){ + return email.test(v); + }, + + + 'emailText' : 'This field should be an e-mail address in the format "user@example.com"', + + + 'emailMask' : /[\w.\-@'"!#$%&'*+/=?^_`{|}~]/i, + + + 'url' : function(v){ + return url.test(v); + }, + + + 'urlText' : 'This field should be a URL in the format "http:/'+'/www.example.com"', + + + + 'alpha' : function(v){ + return alpha.test(v); + }, + + + 'alphaText' : 'This field should only contain letters and _', + + + 'alphaMask' : /[a-z_]/i, + + + 'alphanum' : function(v){ + return alphanum.test(v); + }, + + + 'alphanumText' : 'This field should only contain letters, numbers and _', + + + 'alphanumMask' : /[a-z0-9_]/i + }; +}())); + + +Ext.define('Ext.layout.component.field.Text', { + extend: Ext.layout.component.field.Field , + alias: 'layout.textfield', + + + type: 'textfield', + + canGrowWidth: true, + + beginLayoutCycle: function(ownerContext) { + this.callParent(arguments); + + + if (ownerContext.heightModel.shrinkWrap) { + ownerContext.inputContext.el.setStyle('height', ''); + } + }, + + measureContentWidth: function (ownerContext) { + var me = this, + owner = me.owner, + width = me.callParent(arguments), + inputContext = ownerContext.inputContext, + inputEl, value, calcWidth, max, min; + + if (owner.grow && me.canGrowWidth && !ownerContext.state.growHandled) { + inputEl = owner.inputEl; + + + value = Ext.util.Format.htmlEncode(inputEl.dom.value || (owner.hasFocus ? '' : owner.emptyText) || ''); + value += owner.growAppend; + calcWidth = inputEl.getTextWidth(value) + inputContext.getFrameInfo().width; + + max = owner.growMax; + min = Math.min(max, width); + max = Math.max(owner.growMin, max, min); + + + calcWidth = Ext.Number.constrain(calcWidth, owner.growMin, max); + inputContext.setWidth(calcWidth); + ownerContext.state.growHandled = true; + + + inputContext.domBlock(me, 'width'); + width = NaN; + } + return width; + }, + + publishInnerHeight: function(ownerContext, height) { + ownerContext.inputContext.setHeight(height - this.measureLabelErrorHeight(ownerContext)); + }, + + beginLayoutFixed: function(ownerContext, width, suffix) { + var me = this, + ieInputWidthAdjustment = me.ieInputWidthAdjustment; + + if (ieInputWidthAdjustment) { + me.adjustIEInputPadding(ownerContext); + if(suffix === 'px') { + width -= ieInputWidthAdjustment; + } + } + + me.callParent(arguments); + }, + + adjustIEInputPadding: function(ownerContext) { + + this.owner.bodyEl.setStyle('padding-right', this.ieInputWidthAdjustment + 'px'); + } +}); + + +Ext.define('Ext.form.field.Text', { + extend: Ext.form.field.Base , + alias: 'widget.textfield', + + alternateClassName: ['Ext.form.TextField', 'Ext.form.Text'], + + + + + + + size: 20, + + + + + growMin : 30, + + + growMax : 800, + + + + growAppend: 'W', + + + + + + + + + + allowBlank : true, + + + validateBlank: false, + + + allowOnlyWhitespace: true, + + + minLength : 0, + + + maxLength : Number.MAX_VALUE, + + + + + + minLengthText : 'The minimum length for this field is {0}', + + + + + maxLengthText : 'The maximum length for this field is {0}', + + + + + + + blankText : 'This field is required', + + + + + + + + regexText : '', + + + + + emptyCls : Ext.baseCSSPrefix + 'form-empty-field', + + + requiredCls : Ext.baseCSSPrefix + 'form-required-field', + + + + componentLayout: 'textfield', + + + valueContainsPlaceholder : false, + + + initComponent: function () { + var me = this; + + if (me.allowOnlyWhitespace === false) { + me.allowBlank = false; + } + + me.callParent(); + + me.addEvents( + + 'autosize', + + + 'keydown', + + 'keyup', + + 'keypress' + ); + me.addStateEvents('change'); + me.setGrowSizePolicy(); + }, + + + setGrowSizePolicy: function(){ + if (this.grow) { + this.shrinkWrap |= 1; + } + }, + + + initEvents : function(){ + var me = this, + el = me.inputEl; + + me.callParent(); + if(me.selectOnFocus || me.emptyText){ + me.mon(el, 'mousedown', me.onMouseDown, me); + } + if(me.maskRe || (me.vtype && me.disableKeyFilter !== true && (me.maskRe = Ext.form.field.VTypes[me.vtype+'Mask']))){ + me.mon(el, 'keypress', me.filterKeys, me); + } + + if (me.enableKeyEvents) { + me.mon(el, { + scope: me, + keyup: me.onKeyUp, + keydown: me.onKeyDown, + keypress: me.onKeyPress + }); + } + }, + + + isEqual: function(value1, value2) { + return this.isEqualAsString(value1, value2); + }, + + + onChange: function(newVal, oldVal) { + this.callParent(arguments); + this.autoSize(); + }, + + getSubTplData: function() { + var me = this, + value = me.getRawValue(), + isEmpty = me.emptyText && value.length < 1, + maxLength = me.maxLength, + placeholder; + + + + + if (me.enforceMaxLength) { + if (maxLength === Number.MAX_VALUE) { + maxLength = undefined; + } + } else { + maxLength = undefined; + } + + if (isEmpty) { + if (Ext.supports.Placeholder) { + placeholder = me.emptyText; + } else { + value = me.emptyText; + me.valueContainsPlaceholder = true; + } + } + + return Ext.apply(me.callParent(), { + maxLength : maxLength, + readOnly : me.readOnly, + placeholder : placeholder, + value : value, + fieldCls : me.fieldCls + ((isEmpty && (placeholder || value)) ? ' ' + me.emptyCls : '') + (me.allowBlank ? '' : ' ' + me.requiredCls) + }); + }, + + afterRender: function(){ + this.autoSize(); + this.callParent(); + }, + + onMouseDown: function(e){ + var me = this; + if(!me.hasFocus){ + me.mon(me.inputEl, 'mouseup', Ext.emptyFn, me, { single: true, preventDefault: true }); + } + }, + + + processRawValue: function(value) { + var me = this, + stripRe = me.stripCharsRe, + newValue; + + if (stripRe) { + newValue = value.replace(stripRe, ''); + if (newValue !== value) { + me.setRawValue(newValue); + value = newValue; + } + } + return value; + }, + + + onDisable: function(){ + this.callParent(); + if (Ext.isIE) { + this.inputEl.dom.unselectable = 'on'; + } + }, + + + onEnable: function(){ + this.callParent(); + if (Ext.isIE) { + this.inputEl.dom.unselectable = ''; + } + }, + + onKeyDown: function(e) { + this.fireEvent('keydown', this, e); + }, + + onKeyUp: function(e) { + this.fireEvent('keyup', this, e); + }, + + onKeyPress: function(e) { + this.fireEvent('keypress', this, e); + }, + + + reset : function(){ + this.callParent(); + this.applyEmptyText(); + }, + + applyEmptyText : function(){ + var me = this, + emptyText = me.emptyText, + isEmpty; + + if (me.rendered && emptyText) { + isEmpty = me.getRawValue().length < 1 && !me.hasFocus; + + if (Ext.supports.Placeholder) { + me.inputEl.dom.placeholder = emptyText; + } else if (isEmpty) { + me.setRawValue(emptyText); + me.valueContainsPlaceholder = true; + } + + + + if (isEmpty) { + me.inputEl.addCls(me.emptyCls); + } + + me.autoSize(); + } + }, + + afterFirstLayout: function() { + this.callParent(); + if (Ext.isIE && this.disabled) { + var el = this.inputEl; + if (el) { + el.dom.unselectable = 'on'; + } + } + }, + + + beforeFocus : function(){ + var me = this, + inputEl = me.inputEl, + emptyText = me.emptyText, + isEmpty; + + me.callParent(arguments); + if ((emptyText && !Ext.supports.Placeholder) && (inputEl.dom.value === me.emptyText && me.valueContainsPlaceholder)) { + me.setRawValue(''); + isEmpty = true; + inputEl.removeCls(me.emptyCls); + me.valueContainsPlaceholder = false; + } else if (Ext.supports.Placeholder) { + me.inputEl.removeCls(me.emptyCls); + } + if (me.selectOnFocus || isEmpty) { + + if (Ext.isWebKit) { + if (!me.inputFocusTask) { + me.inputFocusTask = new Ext.util.DelayedTask(me.focusInput, me); + } + me.inputFocusTask.delay(1); + } else { + inputEl.dom.select(); + } + } + }, + + focusInput: function(){ + var input = this.inputEl; + if (input) { + input = input.dom; + if (input) { + input.select(); + } + } + }, + + onFocus: function() { + var me = this; + me.callParent(arguments); + if (me.emptyText) { + me.autoSize(); + } + }, + + + postBlur : function(){ + this.callParent(arguments); + this.applyEmptyText(); + }, + + + filterKeys : function(e){ + + if (e.ctrlKey && !e.altKey) { + return; + } + var key = e.getKey(), + charCode = String.fromCharCode(e.getCharCode()); + + if((Ext.isGecko || Ext.isOpera) && (e.isNavKeyPress() || key === e.BACKSPACE || (key === e.DELETE && e.button === -1))){ + return; + } + + if((!Ext.isGecko && !Ext.isOpera) && e.isSpecialKey() && !charCode){ + return; + } + if(!this.maskRe.test(charCode)){ + e.stopEvent(); + } + }, + + getState: function() { + return this.addPropertyToState(this.callParent(), 'value'); + }, + + applyState: function(state) { + this.callParent(arguments); + if(state.hasOwnProperty('value')) { + this.setValue(state.value); + } + }, + + + getRawValue: function() { + var me = this, + v = me.callParent(); + if (v === me.emptyText && me.valueContainsPlaceholder) { + v = ''; + } + return v; + }, + + + setValue: function(value) { + var me = this, + inputEl = me.inputEl; + + if (inputEl && me.emptyText && !Ext.isEmpty(value)) { + inputEl.removeCls(me.emptyCls); + me.valueContainsPlaceholder = false; + } + + me.callParent(arguments); + + me.applyEmptyText(); + return me; + }, + + + getErrors: function(value) { + var me = this, + errors = me.callParent(arguments), + validator = me.validator, + vtype = me.vtype, + vtypes = Ext.form.field.VTypes, + regex = me.regex, + format = Ext.String.format, + msg, trimmed, isBlank; + + value = value || me.processRawValue(me.getRawValue()); + + if (Ext.isFunction(validator)) { + msg = validator.call(me, value); + if (msg !== true) { + errors.push(msg); + } + } + + trimmed = me.allowOnlyWhitespace ? value : Ext.String.trim(value); + + if (trimmed.length < 1 || (value === me.emptyText && me.valueContainsPlaceholder)) { + if (!me.allowBlank) { + errors.push(me.blankText); + } + + if (!me.validateBlank) { + return errors; + } + isBlank = true; + } + + + + if (!isBlank && value.length < me.minLength) { + errors.push(format(me.minLengthText, me.minLength)); + } + + if (value.length > me.maxLength) { + errors.push(format(me.maxLengthText, me.maxLength)); + } + + if (vtype) { + if (!vtypes[vtype](value, me)) { + errors.push(me.vtypeText || vtypes[vtype +'Text']); + } + } + + if (regex && !regex.test(value)) { + errors.push(me.regexText || me.invalidText); + } + + return errors; + }, + + + selectText : function(start, end){ + var me = this, + v = me.getRawValue(), + doFocus = true, + el = me.inputEl.dom, + undef, + range; + + if (v.length > 0) { + start = start === undef ? 0 : start; + end = end === undef ? v.length : end; + if (el.setSelectionRange) { + el.setSelectionRange(start, end); + } + else if(el.createTextRange) { + range = el.createTextRange(); + range.moveStart('character', start); + range.moveEnd('character', end - v.length); + range.select(); + } + doFocus = Ext.isGecko || Ext.isOpera; + } + if (doFocus) { + me.focus(); + } + }, + + + autoSize: function() { + var me = this; + if (me.grow && me.rendered) { + me.autoSizing = true; + me.updateLayout(); + } + }, + + afterComponentLayout: function() { + var me = this, + width; + + me.callParent(arguments); + if (me.autoSizing) { + width = me.inputEl.getWidth(); + if (width !== me.lastInputWidth) { + me.fireEvent('autosize', me, width); + me.lastInputWidth = width; + delete me.autoSizing; + } + } + }, + + onDestroy: function(){ + var me = this; + me.callParent(); + + if (me.inputFocusTask) { + me.inputFocusTask.cancel(); + me.inputFocusTask = null; + } + } +}); + + +Ext.define('Ext.layout.component.field.TextArea', { + extend: Ext.layout.component.field.Text , + alias: 'layout.textareafield', + + type: 'textareafield', + + canGrowWidth: false, + + naturalSizingProp: 'cols', + + beginLayout: function(ownerContext){ + this.callParent(arguments); + ownerContext.target.inputEl.setStyle('height', ''); + }, + + measureContentHeight: function (ownerContext) { + var me = this, + owner = me.owner, + height = me.callParent(arguments), + inputContext, inputEl, value, max, curWidth, calcHeight; + + if (owner.grow && !ownerContext.state.growHandled) { + inputContext = ownerContext.inputContext; + inputEl = owner.inputEl; + curWidth = inputEl.getWidth(true); + + + value = Ext.util.Format.htmlEncode(inputEl.dom.value) || ' '; + value += owner.growAppend; + + + value = value.replace(/\n/g, '
'); + + + calcHeight = Ext.util.TextMetrics.measure(inputEl, value, curWidth).height + + inputContext.getBorderInfo().height + inputContext.getPaddingInfo().height; + + + calcHeight = Ext.Number.constrain(calcHeight, owner.growMin, owner.growMax); + inputContext.setHeight(calcHeight); + ownerContext.state.growHandled = true; + + + inputContext.domBlock(me, 'height'); + height = NaN; + } + return height; + } +}); + + +Ext.define('Ext.form.field.TextArea', { + extend: Ext.form.field.Text , + alias: ['widget.textareafield', 'widget.textarea'], + alternateClassName: 'Ext.form.TextArea', + + + + + + + + + + + + + + + + + fieldSubTpl: [ + '', + { + disableFormats: true + } + ], + + + growMin: 60, + + + growMax: 1000, + + + growAppend: '\n-', + + + cols: 20, + + + rows: 4, + + + enterIsSpecial: false, + + + preventScrollbars: false, + + + componentLayout: 'textareafield', + + setGrowSizePolicy: Ext.emptyFn, + + returnRe: /\r/g, + + inputCls: Ext.baseCSSPrefix + 'form-textarea', + + + getSubTplData: function() { + var me = this, + fieldStyle = me.getFieldStyle(), + ret = me.callParent(); + + if (me.grow) { + if (me.preventScrollbars) { + ret.fieldStyle = (fieldStyle||'') + ';overflow:hidden;height:' + me.growMin + 'px'; + } + } + + Ext.applyIf(ret, { + cols: me.cols, + rows: me.rows + }); + + return ret; + }, + + afterRender: function () { + var me = this; + + me.callParent(arguments); + + me.needsMaxCheck = me.enforceMaxLength && me.maxLength !== Number.MAX_VALUE && !Ext.supports.TextAreaMaxLength; + if (me.needsMaxCheck) { + me.inputEl.on('paste', me.onPaste, me); + } + }, + + + + + + + + transformRawValue: function(value){ + return this.stripReturns(value); + }, + + transformOriginalValue: function(value){ + return this.stripReturns(value); + }, + + getValue: function(){ + return this.stripReturns(this.callParent()); + }, + + valueToRaw: function(value){ + value = this.stripReturns(value); + return this.callParent([value]); + }, + + stripReturns: function(value){ + if (value && typeof value === 'string') { + value = value.replace(this.returnRe, ''); + } + return value; + }, + + onPaste: function(e){ + var me = this; + if (!me.pasteTask) { + me.pasteTask = new Ext.util.DelayedTask(me.pasteCheck, me); + } + + me.pasteTask.delay(1); + }, + + pasteCheck: function(){ + var me = this, + value = me.getValue(), + max = me.maxLength; + + if (value.length > max) { + value = value.substr(0, max); + me.setValue(value); + } + }, + + + fireKey: function(e) { + var me = this, + key = e.getKey(), + value; + + if (e.isSpecialKey() && (me.enterIsSpecial || (key !== e.ENTER || e.hasModifier()))) { + me.fireEvent('specialkey', me, e); + } + + if (me.needsMaxCheck && key !== e.BACKSPACE && key !== e.DELETE && !e.isNavKeyPress() && !me.isCutCopyPasteSelectAll(e, key)) { + value = me.getValue(); + if (value.length >= me.maxLength) { + e.stopEvent(); + } + } + }, + + isCutCopyPasteSelectAll: function(e, key) { + if (e.ctrlKey) { + return key === e.A || key === e.C || key === e.V || key === e.X; + } + return false; + }, + + + autoSize: function() { + var me = this, + height; + + if (me.grow && me.rendered) { + me.updateLayout(); + height = me.inputEl.getHeight(); + if (height !== me.lastInputHeight) { + + me.fireEvent('autosize', me, height); + me.lastInputHeight = height; + } + } + }, + + + initAria: function() { + this.callParent(arguments); + this.getActionEl().dom.setAttribute('aria-multiline', true); + }, + + beforeDestroy: function(){ + var task = this.pasteTask; + if (task) { + task.cancel(); + this.pasteTask = null; + } + this.callParent(); + } +}); + + +Ext.define('Ext.form.field.Display', { + extend: Ext.form.field.Base , + alias: 'widget.displayfield', + + alternateClassName: ['Ext.form.DisplayField', 'Ext.form.Display'], + fieldSubTpl: [ + '
style="{fieldStyle}"', + ' class="{fieldCls}">{value}
', + { + compiled: true, + disableFormats: true + } + ], + + + readOnly: true, + + + fieldCls: Ext.baseCSSPrefix + 'form-display-field', + + fieldBodyCls: Ext.baseCSSPrefix + 'form-display-field-body', + + + htmlEncode: false, + + + + + + noWrap: false, + + + validateOnChange: false, + + initEvents: Ext.emptyFn, + + submitValue: false, + + isDirty: function(){ + return false; + }, + + isValid: function() { + return true; + }, + + validate: function() { + return true; + }, + + getRawValue: function() { + return this.rawValue; + }, + + setRawValue: function(value) { + var me = this; + + value = Ext.value(value, ''); + me.rawValue = value; + if (me.rendered) { + me.inputEl.dom.innerHTML = me.getDisplayValue(); + me.updateLayout(); + } + return value; + }, + + + getDisplayValue: function() { + var me = this, + value = this.getRawValue(), + display; + if (me.renderer) { + display = me.renderer.call(me.scope || me, value, me); + } else { + display = me.htmlEncode ? Ext.util.Format.htmlEncode(value) : value; + } + return display; + }, + + getSubTplData: function() { + var ret = this.callParent(arguments); + + ret.value = this.getDisplayValue(); + + return ret; + } + + + + + +}); + + +Ext.define('Ext.layout.container.Anchor', { + + + + alias: 'layout.anchor', + extend: Ext.layout.container.Auto , + alternateClassName: 'Ext.layout.AnchorLayout', + + + + type: 'anchor', + + + + + defaultAnchor: '100%', + + parseAnchorRE: /^(r|right|b|bottom)$/i, + + manageOverflow: true, + + beginLayoutCycle: function (ownerContext) { + var me = this, + dimensions = 0, + anchorSpec, childContext, childItems, i, length, target; + + me.callParent(arguments); + + childItems = ownerContext.childItems; + length = childItems.length; + + for (i = 0; i < length; ++i) { + childContext = childItems[i]; + anchorSpec = childContext.target.anchorSpec; + + if (anchorSpec) { + if (childContext.widthModel.calculated && anchorSpec.right) { + dimensions |= 1; + } + if (childContext.heightModel.calculated && anchorSpec.bottom) { + dimensions |= 2; + } + + if (dimensions == 3) { + break; + } + } + } + + ownerContext.anchorDimensions = dimensions; + + }, + + calculateItems: function (ownerContext, containerSize) { + var me = this, + childItems = ownerContext.childItems, + length = childItems.length, + gotHeight = containerSize.gotHeight, + gotWidth = containerSize.gotWidth, + ownerHeight = containerSize.height, + ownerWidth = containerSize.width, + knownDimensions = (gotWidth ? 1 : 0) | (gotHeight ? 2 : 0), + anchorDimensions = ownerContext.anchorDimensions, + anchorSpec, childContext, childMargins, height, i, width; + + if (!anchorDimensions) { + return true; + } + + for (i = 0; i < length; i++) { + childContext = childItems[i]; + childMargins = childContext.getMarginInfo(); + anchorSpec = childContext.target.anchorSpec; + + + + + + if (gotWidth && childContext.widthModel.calculated) { + width = anchorSpec.right(ownerWidth) - childMargins.width; + width = me.adjustWidthAnchor(width, childContext); + + childContext.setWidth(width); + } + + + if (gotHeight && childContext.heightModel.calculated) { + height = anchorSpec.bottom(ownerHeight) - childMargins.height; + height = me.adjustHeightAnchor(height, childContext); + + childContext.setHeight(height); + } + } + + + return (knownDimensions & anchorDimensions) === anchorDimensions; + }, + + + + anchorFactory: { + offset: function (delta) { + return function(v) { + return v + delta; + }; + }, + ratio: function (ratio) { + return function(v) { + return Math.floor(v * ratio); + }; + }, + standard: function (diff) { + return function(v) { + return v - diff; + }; + } + }, + + parseAnchor: function(a, start, cstart) { + if (a && a != 'none') { + var factory = this.anchorFactory, + delta; + + if (this.parseAnchorRE.test(a)) { + return factory.standard(cstart - start); + } + if (a.indexOf('%') != -1) { + return factory.ratio(parseFloat(a.replace('%', '')) * 0.01); + } + delta = parseInt(a, 10); + if (!isNaN(delta)) { + return factory.offset(delta); + } + } + return null; + }, + + + adjustWidthAnchor: function(value, childContext) { + return value; + }, + + + adjustHeightAnchor: function(value, childContext) { + return value; + }, + + configureItem: function(item) { + var me = this, + owner = me.owner, + anchor= item.anchor, + anchorsArray, + anchorWidth, + anchorHeight; + + me.callParent(arguments); + + if (!item.anchor && item.items && !Ext.isNumber(item.width) && !(Ext.isIE6 && Ext.isStrict)) { + item.anchor = anchor = me.defaultAnchor; + } + + + if (owner.anchorSize) { + if (typeof owner.anchorSize == 'number') { + anchorWidth = owner.anchorSize; + } else { + anchorWidth = owner.anchorSize.width; + anchorHeight = owner.anchorSize.height; + } + } else { + anchorWidth = owner.initialConfig.width; + anchorHeight = owner.initialConfig.height; + } + + if (anchor) { + + anchorsArray = anchor.split(' '); + item.anchorSpec = { + right: me.parseAnchor(anchorsArray[0], item.initialConfig.width, anchorWidth), + bottom: me.parseAnchor(anchorsArray[1], item.initialConfig.height, anchorHeight) + }; + } + }, + + sizePolicy: { + $: { + readsWidth: 1, + readsHeight: 1, + setsWidth: 0, + setsHeight: 0 + }, + b: { + readsWidth: 1, + readsHeight: 0, + setsWidth: 0, + setsHeight: 1 + }, + r: { + $: { + readsWidth: 0, + readsHeight: 1, + setsWidth: 1, + setsHeight: 0 + }, + b: { + readsWidth: 0, + readsHeight: 0, + setsWidth: 1, + setsHeight: 1 + } + } + }, + + getItemSizePolicy: function (item) { + var anchorSpec = item.anchorSpec, + key = '$', + policy = this.sizePolicy, + sizeModel; + + if (anchorSpec) { + sizeModel = this.owner.getSizeModel(); + if (anchorSpec.right && !sizeModel.width.shrinkWrap) { + policy = policy.r; + } + if (anchorSpec.bottom && !sizeModel.height.shrinkWrap) { + key = 'b'; + } + } + + return policy[key]; + } +}); + + + + +Ext.define('Ext.window.MessageBox', { + extend: Ext.window.Window , + + + + + + + + + + + + + alias: 'widget.messagebox', + + + OK : 1, + + YES : 2, + + NO : 4, + + CANCEL : 8, + + OKCANCEL : 9, + + YESNO : 6, + + YESNOCANCEL : 14, + + INFO : Ext.baseCSSPrefix + 'message-box-info', + + WARNING : Ext.baseCSSPrefix + 'message-box-warning', + + QUESTION : Ext.baseCSSPrefix + 'message-box-question', + + ERROR : Ext.baseCSSPrefix + 'message-box-error', + + + hideMode: 'offsets', + closeAction: 'hide', + resizable: false, + title: ' ', + + defaultMinWidth: 250, + defaultMaxWidth: 600, + defaultMinHeight: 110, + defaultMaxHeight: 500, + + + + minWidth: null, + maxWidth: null, + minHeight: null, + maxHeight: null, + constrain: true, + + cls: [Ext.baseCSSPrefix + 'message-box', Ext.baseCSSPrefix + 'hide-offsets'], + + layout: { + type: 'vbox', + align: 'stretch' + }, + + + shrinkWrapDock: true, + + + defaultTextHeight : 75, + + minProgressWidth : 250, + + minPromptWidth: 250, + + + buttonText: { + ok: 'OK', + yes: 'Yes', + no: 'No', + cancel: 'Cancel' + }, + + + buttonIds: [ + 'ok', 'yes', 'no', 'cancel' + ], + + + titleText: { + confirm: 'Confirm', + prompt: 'Prompt', + wait: 'Loading...', + alert: 'Attention' + }, + + + iconHeight: 35, + iconWidth: 50, + + makeButton: function(btnIdx) { + var btnId = this.buttonIds[btnIdx]; + return new Ext.button.Button({ + handler: this.btnCallback, + itemId: btnId, + scope: this, + text: this.buttonText[btnId], + minWidth: 75 + }); + }, + + btnCallback: function(btn) { + var me = this, + value, + field; + + if (me.cfg.prompt || me.cfg.multiline) { + if (me.cfg.multiline) { + field = me.textArea; + } else { + field = me.textField; + } + value = field.getValue(); + field.reset(); + } + + + me.hide(); + me.userCallback(btn.itemId, value, me.cfg); + }, + + hide: function() { + var me = this, + cls = me.cfg.cls; + + me.dd.endDrag(); + me.progressBar.reset(); + if (cls) { + me.removeCls(cls); + } + me.callParent(arguments); + }, + + constructor: function(cfg) { + var me = this; + + me.callParent(arguments); + + + + me.minWidth = me.defaultMinWidth = (me.minWidth || me.defaultMinWidth); + me.maxWidth = me.defaultMaxWidth = (me.maxWidth || me.defaultMaxWidth); + me.minHeight = me.defaultMinHeight = (me.minHeight || me.defaultMinHeight); + me.maxHeight = me.defaultMaxHeight = (me.maxHeight || me.defaultMaxHeight); + }, + + initComponent: function(cfg) { + var me = this, + baseId = me.id, + i, button; + + me.title = ' '; + + me.topContainer = new Ext.container.Container({ + layout: 'hbox', + padding: 10, + style: { + overflow: 'hidden' + }, + items: [ + me.iconComponent = new Ext.Component({ + width: me.iconWidth, + height: me.iconHeight + }), + me.promptContainer = new Ext.container.Container({ + flex: 1, + layout: 'anchor', + items: [ + me.msg = new Ext.form.field.Display({ + id: baseId + '-displayfield', + cls: me.baseCls + '-text' + }), + me.textField = new Ext.form.field.Text({ + id: baseId + '-textfield', + anchor: '100%', + enableKeyEvents: true, + listeners: { + keydown: me.onPromptKey, + scope: me + } + }), + me.textArea = new Ext.form.field.TextArea({ + id: baseId + '-textarea', + anchor: '100%', + height: 75 + }) + ] + }) + ] + }); + me.progressBar = new Ext.ProgressBar({ + id: baseId + '-progressbar', + margins: '0 10 10 10' + }); + + me.items = [me.topContainer, me.progressBar]; + + + me.msgButtons = []; + for (i = 0; i < 4; i++) { + button = me.makeButton(i); + me.msgButtons[button.itemId] = button; + me.msgButtons.push(button); + } + me.bottomTb = new Ext.toolbar.Toolbar({ + id: baseId + '-toolbar', + ui: 'footer', + dock: 'bottom', + layout: { + pack: 'center' + }, + items: [ + me.msgButtons[0], + me.msgButtons[1], + me.msgButtons[2], + me.msgButtons[3] + ] + }); + me.dockedItems = [me.bottomTb]; + me.on('close', me.onClose, me); + me.callParent(); + }, + + onClose: function(){ + var btn = this.header.child('[type=close]'); + + btn.itemId = 'cancel'; + this.btnCallback(btn); + delete btn.itemId; + }, + + onPromptKey: function(textField, e) { + var me = this; + + if (e.keyCode === e.RETURN || e.keyCode === 10) { + if (me.msgButtons.ok.isVisible()) { + me.msgButtons.ok.handler.call(me, me.msgButtons.ok); + } else if (me.msgButtons.yes.isVisible()) { + me.msgButtons.yes.handler.call(me, me.msgButtons.yes); + } + } + }, + + reconfigure: function(cfg) { + var me = this, + buttons = 0, + hideToolbar = true, + oldButtonText = me.buttonText, + resizer = me.resizer, + resizeTracker, width, height, i, textArea, textField, + msg, progressBar, msgButtons; + + + me.updateButtonText(); + + cfg = cfg || {}; + me.cfg = cfg; + if (cfg.width) { + width = cfg.width; + } + + if (cfg.height) { + height = cfg.height; + } + + me.minWidth = cfg.minWidth || me.defaultMinWidth; + me.maxWidth = cfg.maxWidth || me.defaultMaxWidth; + me.minHeight = cfg.minHeight || me.defaultMinHeight; + me.maxHeight = cfg.maxHeight || me.defaultMaxHeight; + + if (resizer) { + resizeTracker = resizer.resizeTracker; + resizer.minWidth = resizeTracker.minWidth = me.minWidth; + resizer.maxWidth = resizeTracker.maxWidth = me.maxWidth; + resizer.minHeight = resizeTracker.minHeight = me.minHeight; + resizer.maxHeight = resizeTracker.maxHeight = me.maxHeight; + } + + + delete me.defaultFocus; + if (cfg.defaultFocus) { + me.defaultFocus = cfg.defaultFocus; + } + + + me.animateTarget = cfg.animateTarget || undefined; + + + me.modal = cfg.modal !== false; + + + me.setTitle(cfg.title || ''); + me.setIconCls(cfg.iconCls || ''); + + + if (Ext.isObject(cfg.buttons)) { + me.buttonText = cfg.buttons; + buttons = 0; + } else { + me.buttonText = cfg.buttonText || me.buttonText; + buttons = Ext.isNumber(cfg.buttons) ? cfg.buttons : 0; + } + + + + buttons = buttons | me.updateButtonText(); + + + me.buttonText = oldButtonText; + + + + Ext.suspendLayouts(); + delete me.width; + delete me.height; + if (width || height) { + if (width) { + me.setWidth(width); + } + + if (height) { + me.setHeight(height); + } + } + me.hidden = false; + if (!me.rendered) { + me.render(Ext.getBody()); + } + + + me.closable = cfg.closable !== false && !cfg.wait; + me.header.child('[type=close]').setVisible(me.closable); + + + if (!cfg.title && !me.closable && !cfg.iconCls) { + me.header.hide(); + } else { + me.header.show(); + } + + + me.liveDrag = !cfg.proxyDrag; + + + me.userCallback = Ext.Function.bind(cfg.callback ||cfg.fn || Ext.emptyFn, cfg.scope || Ext.global); + + + me.setIcon(cfg.icon, cfg.iconWidth, cfg.iconHeight); + + + msg = me.msg; + if (cfg.msg) { + msg.setValue(cfg.msg); + msg.show(); + } else { + msg.hide(); + } + + + textArea = me.textArea; + textField = me.textField; + if (cfg.prompt || cfg.multiline) { + me.multiline = cfg.multiline; + if (cfg.multiline) { + textArea.setValue(cfg.value); + textArea.setHeight(cfg.defaultTextHeight || me.defaultTextHeight); + textArea.show(); + textField.hide(); + me.defaultFocus = textArea; + } else { + textField.setValue(cfg.value); + textArea.hide(); + textField.show(); + me.defaultFocus = textField; + } + } else { + textArea.hide(); + textField.hide(); + } + + + progressBar = me.progressBar; + if (cfg.progress || cfg.wait) { + progressBar.show(); + me.updateProgress(0, cfg.progressText); + if(cfg.wait === true){ + progressBar.wait(cfg.waitConfig); + } + } else { + progressBar.hide(); + } + + + msgButtons = me.msgButtons; + for (i = 0; i < 4; i++) { + if (buttons & Math.pow(2, i)) { + + + if (!me.defaultFocus) { + me.defaultFocus = msgButtons[i]; + } + msgButtons[i].show(); + hideToolbar = false; + } else { + msgButtons[i].hide(); + } + } + + + if (hideToolbar) { + me.bottomTb.hide(); + } else { + me.bottomTb.show(); + } + Ext.resumeLayouts(true); + }, + + + updateButtonText: function() { + var me = this, + buttonText = me.buttonText, + buttons = 0, + btnId, + btn; + + for (btnId in buttonText) { + if (buttonText.hasOwnProperty(btnId)) { + btn = me.msgButtons[btnId]; + if (btn) { + if (me.cfg && me.cfg.buttonText) { + buttons = buttons | Math.pow(2, Ext.Array.indexOf(me.buttonIds, btnId)); + } + if (btn.text != buttonText[btnId]) { + btn.setText(buttonText[btnId]); + } + } + } + } + return buttons; + }, + + + show: function(cfg) { + var me = this, + visibleFocusables; + + + if (Ext.AbstractComponent.layoutSuspendCount) { + Ext.on({ + resumelayouts: function() { + me.show(cfg); + }, + single: true + }); + return me; + } + + me.reconfigure(cfg); + if (cfg.cls) { + me.addCls(cfg.cls); + } + + + + visibleFocusables = me.query('textfield:not([hidden]),textarea:not([hidden]),button:not([hidden])'); + me.preventFocusOnActivate = !visibleFocusables.length; + + + + me.hidden = true; + me.callParent(); + return me; + }, + + onShow: function() { + this.callParent(arguments); + this.center(); + }, + + updateText: function(text) { + this.msg.setValue(text); + }, + + + setIcon : function(icon, width, height) { + var me = this, + iconCmp = me.iconComponent, + cls = me.messageIconCls; + + if (cls) { + iconCmp.removeCls(cls); + } + + if (icon) { + iconCmp.show(); + iconCmp.setSize(width || me.iconWidth, height || me.iconHeight); + iconCmp.addCls(Ext.baseCSSPrefix + 'dlg-icon'); + iconCmp.addCls(me.messageIconCls = icon); + } else { + iconCmp.removeCls(Ext.baseCSSPrefix + 'dlg-icon'); + iconCmp.hide(); + } + return me; + }, + + + updateProgress : function(value, progressText, msg){ + this.progressBar.updateProgress(value, progressText); + if (msg){ + this.updateText(msg); + } + return this; + }, + + onEsc: function() { + if (this.closable !== false) { + this.callParent(arguments); + } + }, + + + confirm: function(cfg, msg, fn, scope) { + if (Ext.isString(cfg)) { + cfg = { + title: cfg, + icon: this.QUESTION, + msg: msg, + buttons: this.YESNO, + callback: fn, + scope: scope + }; + } + return this.show(cfg); + }, + + + prompt : function(cfg, msg, fn, scope, multiline, value){ + if (Ext.isString(cfg)) { + cfg = { + prompt: true, + title: cfg, + minWidth: this.minPromptWidth, + msg: msg, + buttons: this.OKCANCEL, + callback: fn, + scope: scope, + multiline: multiline, + value: value + }; + } + return this.show(cfg); + }, + + + wait : function(cfg, title, config){ + if (Ext.isString(cfg)) { + cfg = { + title : title, + msg : cfg, + closable: false, + wait: true, + modal: true, + minWidth: this.minProgressWidth, + waitConfig: config + }; + } + return this.show(cfg); + }, + + + alert: function(cfg, msg, fn, scope) { + if (Ext.isString(cfg)) { + cfg = { + title : cfg, + msg : msg, + buttons: this.OK, + fn: fn, + scope : scope, + minWidth: this.minWidth + }; + } + return this.show(cfg); + }, + + + progress : function(cfg, msg, progressText){ + if (Ext.isString(cfg)) { + cfg = { + title: cfg, + msg: msg, + progress: true, + progressText: progressText + }; + } + return this.show(cfg); + } +}, function() { + + Ext.MessageBox = Ext.Msg = new this(); +}); + + +Ext.define('Ext.form.Basic', { + extend: Ext.util.Observable , + alternateClassName: 'Ext.form.BasicForm', + + + + + constructor: function(owner, config) { + var me = this, + reader; + + + me.owner = owner; + + me.checkValidityTask = new Ext.util.DelayedTask(me.checkValidity, me); + me.checkDirtyTask = new Ext.util.DelayedTask(me.checkDirty, me); + + + + + me.monitor = new Ext.container.Monitor({ + selector: '[isFormField]', + scope: me, + addHandler: me.onFieldAdd, + removeHandler: me.onFieldRemove + }); + me.monitor.bind(owner); + + Ext.apply(me, config); + + + if (Ext.isString(me.paramOrder)) { + me.paramOrder = me.paramOrder.split(/[\s,|]/); + } + + reader = me.reader; + if (reader && !reader.isReader) { + if (typeof reader === 'string') { + reader = { + type: reader + }; + } + me.reader = Ext.createByAlias('reader.' + reader.type, reader); + } + + reader = me.errorReader; + if (reader && !reader.isReader) { + if (typeof reader === 'string') { + reader = { + type: reader + }; + } + me.errorReader = Ext.createByAlias('reader.' + reader.type, reader); + } + + me.addEvents( + + 'beforeaction', + + 'actionfailed', + + 'actioncomplete', + + 'validitychange', + + 'dirtychange' + ); + me.callParent(); + }, + + + initialize : function() { + this.initialized = true; + this.onValidityChange(!this.hasInvalidField()); + }, + + + + + + + + + + + + + + timeout: 30, + + + + + + + paramsAsHash: false, + + + + waitTitle: 'Please Wait...', + + + + trackResetOnLoad: false, + + + + + + + + + + wasDirty: false, + + + + destroy: function() { + var me = this, + mon = me.monitor; + + if (mon) { + mon.unbind(); + me.monitor = null; + } + me.clearListeners(); + me.checkValidityTask.cancel(); + me.checkDirtyTask.cancel(); + }, + + onFieldAdd: function(field){ + var me = this; + + me.mon(field, 'validitychange', me.checkValidityDelay, me); + me.mon(field, 'dirtychange', me.checkDirtyDelay, me); + if (me.initialized) { + me.checkValidityDelay(); + } + }, + + onFieldRemove: function(field){ + var me = this; + + me.mun(field, 'validitychange', me.checkValidityDelay, me); + me.mun(field, 'dirtychange', me.checkDirtyDelay, me); + if (me.initialized) { + me.checkValidityDelay(); + } + }, + + + getFields: function() { + return this.monitor.getItems(); + }, + + + getBoundItems: function() { + var boundItems = this._boundItems; + + if (!boundItems || boundItems.getCount() === 0) { + boundItems = this._boundItems = new Ext.util.MixedCollection(); + boundItems.addAll(this.owner.query('[formBind]')); + } + + return boundItems; + }, + + + hasInvalidField: function() { + return !!this.getFields().findBy(function(field) { + var preventMark = field.preventMark, + isValid; + field.preventMark = true; + isValid = field.isValid(); + field.preventMark = preventMark; + return !isValid; + }); + }, + + + isValid: function() { + var me = this, + invalid; + Ext.suspendLayouts(); + invalid = me.getFields().filterBy(function(field) { + return !field.validate(); + }); + Ext.resumeLayouts(true); + return invalid.length < 1; + }, + + + checkValidity: function() { + var me = this, + valid = !me.hasInvalidField(); + if (valid !== me.wasValid) { + me.onValidityChange(valid); + me.fireEvent('validitychange', me, valid); + me.wasValid = valid; + } + }, + + checkValidityDelay: function(){ + this.checkValidityTask.delay(10); + }, + + + onValidityChange: function(valid) { + var boundItems = this.getBoundItems(), + items, i, iLen, cmp; + + if (boundItems) { + items = boundItems.items; + iLen = items.length; + + for (i = 0; i < iLen; i++) { + cmp = items[i]; + + if (cmp.disabled === valid) { + cmp.setDisabled(!valid); + } + } + } + }, + + + isDirty: function() { + return !!this.getFields().findBy(function(f) { + return f.isDirty(); + }); + }, + + checkDirtyDelay: function(){ + this.checkDirtyTask.delay(10); + }, + + + checkDirty: function() { + var dirty = this.isDirty(); + if (dirty !== this.wasDirty) { + this.fireEvent('dirtychange', this, dirty); + this.wasDirty = dirty; + } + }, + + + hasUpload: function() { + return !!this.getFields().findBy(function(f) { + return f.isFileUpload(); + }); + }, + + + doAction: function(action, options) { + if (Ext.isString(action)) { + action = Ext.ClassManager.instantiateByAlias('formaction.' + action, Ext.apply({}, options, {form: this})); + } + if (this.fireEvent('beforeaction', this, action) !== false) { + this.beforeAction(action); + Ext.defer(action.run, 100, action); + } + return this; + }, + + + submit: function(options) { + options = options || {}; + var me = this, + action; + + if (options.standardSubmit || me.standardSubmit) { + action = 'standardsubmit'; + } else { + action = me.api ? 'directsubmit' : 'submit'; + } + + return me.doAction(action, options); + }, + + + load: function(options) { + return this.doAction(this.api ? 'directload' : 'load', options); + }, + + + updateRecord: function(record) { + record = record || this._record; + if (!record) { + return this; + } + + var fields = record.fields.items, + values = this.getFieldValues(), + obj = {}, + i = 0, + len = fields.length, + name; + + for (; i < len; ++i) { + name = fields[i].name; + + if (values.hasOwnProperty(name)) { + obj[name] = values[name]; + } + } + + record.beginEdit(); + record.set(obj); + record.endEdit(); + + return this; + }, + + + loadRecord: function(record) { + this._record = record; + return this.setValues(record.getData()); + }, + + + getRecord: function() { + return this._record; + }, + + + beforeAction: function(action) { + var me = this, + waitMsg = action.waitMsg, + maskCls = Ext.baseCSSPrefix + 'mask-loading', + fields = me.getFields().items, + f, + fLen = fields.length, + field, waitMsgTarget; + + + for (f = 0; f < fLen; f++) { + field = fields[f]; + + if (field.isFormField && field.syncValue) { + field.syncValue(); + } + } + + if (waitMsg) { + waitMsgTarget = me.waitMsgTarget; + if (waitMsgTarget === true) { + me.owner.el.mask(waitMsg, maskCls); + } else if (waitMsgTarget) { + waitMsgTarget = me.waitMsgTarget = Ext.get(waitMsgTarget); + waitMsgTarget.mask(waitMsg, maskCls); + } else { + me.floatingAncestor = me.owner.up('[floating]'); + + + + + + + + + if (me.floatingAncestor) { + me.savePreventFocusOnActivate = me.floatingAncestor.preventFocusOnActivate; + me.floatingAncestor.preventFocusOnActivate = true; + } + Ext.MessageBox.wait(waitMsg, action.waitTitle || me.waitTitle); + } + } + }, + + + afterAction: function(action, success) { + var me = this; + if (action.waitMsg) { + var messageBox = Ext.MessageBox, + waitMsgTarget = me.waitMsgTarget; + if (waitMsgTarget === true) { + me.owner.el.unmask(); + } else if (waitMsgTarget) { + waitMsgTarget.unmask(); + } else { + messageBox.hide(); + } + } + + if (me.floatingAncestor) { + me.floatingAncestor.preventFocusOnActivate = me.savePreventFocusOnActivate; + } + if (success) { + if (action.reset) { + me.reset(); + } + Ext.callback(action.success, action.scope || action, [me, action]); + me.fireEvent('actioncomplete', me, action); + } else { + Ext.callback(action.failure, action.scope || action, [me, action]); + me.fireEvent('actionfailed', me, action); + } + }, + + + + findField: function(id) { + return this.getFields().findBy(function(f) { + return f.id === id || f.getName() === id; + }); + }, + + + + markInvalid: function(errors) { + var me = this, + e, eLen, error, value, + key; + + function mark(fieldId, msg) { + var field = me.findField(fieldId); + if (field) { + field.markInvalid(msg); + } + } + + if (Ext.isArray(errors)) { + eLen = errors.length; + + for (e = 0; e < eLen; e++) { + error = errors[e]; + mark(error.id, error.msg); + } + } else if (errors instanceof Ext.data.Errors) { + eLen = errors.items.length; + for (e = 0; e < eLen; e++) { + error = errors.items[e]; + + mark(error.field, error.message); + } + } else { + for (key in errors) { + if (errors.hasOwnProperty(key)) { + value = errors[key]; + mark(key, value, errors); + } + } + } + return this; + }, + + + setValues: function(values) { + var me = this, + v, vLen, val, field; + + function setVal(fieldId, val) { + var field = me.findField(fieldId); + if (field) { + field.setValue(val); + if (me.trackResetOnLoad) { + field.resetOriginalValue(); + } + } + } + + + + Ext.suspendLayouts(); + if (Ext.isArray(values)) { + + vLen = values.length; + + for (v = 0; v < vLen; v++) { + val = values[v]; + + setVal(val.id, val.value); + } + } else { + + Ext.iterate(values, setVal); + } + Ext.resumeLayouts(true); + return this; + }, + + + getValues: function(asString, dirtyOnly, includeEmptyText, useDataValues) { + var values = {}, + fields = this.getFields().items, + f, + fLen = fields.length, + isArray = Ext.isArray, + field, data, val, bucket, name; + + for (f = 0; f < fLen; f++) { + field = fields[f]; + + if (!dirtyOnly || field.isDirty()) { + data = field[useDataValues ? 'getModelData' : 'getSubmitData'](includeEmptyText); + + if (Ext.isObject(data)) { + for (name in data) { + if (data.hasOwnProperty(name)) { + val = data[name]; + + if (includeEmptyText && val === '') { + val = field.emptyText || ''; + } + + if (values.hasOwnProperty(name)) { + bucket = values[name]; + + if (!isArray(bucket)) { + bucket = values[name] = [bucket]; + } + + if (isArray(val)) { + values[name] = bucket.concat(val); + } else { + bucket.push(val); + } + } else { + values[name] = val; + } + } + } + } + } + } + + if (asString) { + values = Ext.Object.toQueryString(values); + } + return values; + }, + + + getFieldValues: function(dirtyOnly) { + return this.getValues(false, dirtyOnly, false, true); + }, + + + clearInvalid: function() { + Ext.suspendLayouts(); + + var me = this, + fields = me.getFields().items, + f, + fLen = fields.length; + + for (f = 0; f < fLen; f++) { + fields[f].clearInvalid(); + } + + Ext.resumeLayouts(true); + return me; + }, + + + reset: function(resetRecord) { + Ext.suspendLayouts(); + + var me = this, + fields = me.getFields().items, + f, + fLen = fields.length; + + for (f = 0; f < fLen; f++) { + fields[f].reset(); + } + + Ext.resumeLayouts(true); + + if (resetRecord === true) { + delete me._record; + } + return me; + }, + + + applyToFields: function(obj) { + var fields = this.getFields().items, + f, + fLen = fields.length; + + for (f = 0; f < fLen; f++) { + Ext.apply(fields[f], obj); + } + + return this; + }, + + + applyIfToFields: function(obj) { + var fields = this.getFields().items, + f, + fLen = fields.length; + + for (f = 0; f < fLen; f++) { + Ext.applyIf(fields[f], obj); + } + + return this; + } +}); + + +Ext.define('Ext.form.FieldAncestor', { + + + + + + + + + xhooks: { + initHierarchyState: function(hierarchyState) { + if (this.fieldDefaults) { + if (hierarchyState.fieldDefaults) { + hierarchyState.fieldDefaults = Ext.apply(Ext.Object.chain(hierarchyState.fieldDefaults), this.fieldDefaults); + } else { + hierarchyState.fieldDefaults = this.fieldDefaults; + } + } + } + }, + + + initFieldAncestor: function() { + var me = this; + + me.addEvents( + + 'fieldvaliditychange', + + + 'fielderrorchange' + ); + + + + + me.monitor = new Ext.container.Monitor({ + scope: me, + selector: '[isFormField]', + addHandler: me.onChildFieldAdd, + removeHandler: me.onChildFieldRemove + }); + me.initFieldDefaults(); + }, + + initMonitor: function() { + this.monitor.bind(this); + }, + + onChildFieldAdd: function(field) { + var me = this; + me.mon(field, 'errorchange', me.handleFieldErrorChange, me); + me.mon(field, 'validitychange', me.handleFieldValidityChange, me); + }, + + onChildFieldRemove: function(field) { + var me = this; + me.mun(field, 'errorchange', me.handleFieldErrorChange, me); + me.mun(field, 'validitychange', me.handleFieldValidityChange, me); + }, + + + initFieldDefaults: function() { + if (!this.fieldDefaults) { + this.fieldDefaults = {}; + } + }, + + + handleFieldValidityChange: function(field, isValid) { + var me = this; + if (field !== me) { + me.fireEvent('fieldvaliditychange', me, field, isValid); + me.onFieldValidityChange(field, isValid); + } + }, + + + handleFieldErrorChange: function(labelable, activeError) { + var me = this; + if (labelable !== me) { + me.fireEvent('fielderrorchange', me, labelable, activeError); + me.onFieldErrorChange(labelable, activeError); + } + }, + + + onFieldValidityChange: Ext.emptyFn, + + + onFieldErrorChange: Ext.emptyFn, + + beforeDestroy: function(){ + this.monitor.unbind(); + this.callParent(); + } + +}); + + +Ext.define('Ext.layout.component.field.FieldContainer', { + + + + extend: Ext.layout.component.field.Field , + + alias: 'layout.fieldcontainer', + + + + type: 'fieldcontainer', + + waitForOuterHeightInDom: true, + waitForOuterWidthInDom: true, + + beginLayout: function(ownerContext) { + var owner = this.owner; + this.callParent(arguments); + + + ownerContext.hasRawContent = true; + owner.bodyEl.setStyle('height', ''); + owner.containerEl.setStyle('height', ''); + ownerContext.containerElContext = ownerContext.getEl('containerEl'); + }, + + measureContentHeight: function (ownerContext) { + + + + return ownerContext.hasDomProp('containerLayoutDone') ? this.callParent(arguments) : NaN; + }, + + measureContentWidth: function (ownerContext) { + + return ownerContext.hasDomProp('containerLayoutDone') ? this.callParent(arguments) : NaN; + }, + + publishInnerWidth: function (ownerContext, width) { + var bodyContext = ownerContext.bodyCellContext, + innerWidth = bodyContext.el.getWidth(); + + bodyContext.setWidth(innerWidth, false); + ownerContext.containerElContext.setWidth(innerWidth, false); + }, + + publishInnerHeight: function (ownerContext, height) { + var bodyContext = ownerContext.bodyCellContext, + containerElContext = ownerContext.containerElContext; + + height -= this.measureLabelErrorHeight(ownerContext); + bodyContext.setHeight(height); + containerElContext.setHeight(height); + } +}); + + +Ext.define('Ext.form.FieldContainer', { + extend: Ext.container.Container , + mixins: { + labelable: Ext.form.Labelable , + fieldAncestor: Ext.form.FieldAncestor + }, + + + alias: 'widget.fieldcontainer', + + componentLayout: 'fieldcontainer', + + componentCls: Ext.baseCSSPrefix + 'form-fieldcontainer', + + + + customOverflowEl: 'containerEl', + + childEls: [ + 'containerEl' + ], + + + + + combineLabels: false, + + + + labelConnector: ', ', + + + + combineErrors: false, + + maskOnDisable: false, + + + invalidCls: '', + + fieldSubTpl: '
{%this.renderContainer(out,values)%}
', + + initComponent: function() { + var me = this; + + + me.initLabelable(); + me.initFieldAncestor(); + + me.callParent(); + me.initMonitor(); + }, + + getOverflowEl: function(){ + return this.containerEl; + }, + + + onAdd: function(labelable) { + var me = this; + + + + + if (Ext.isGecko && me.layout.type === 'absolute' && !me.hideLabel && me.labelAlign !== 'top') { + labelable.x += (me.labelWidth + me.labelPad); + } + me.callParent(arguments); + if (me.combineLabels) { + labelable.oldHideLabel = labelable.hideLabel; + labelable.hideLabel = true; + } + me.updateLabel(); + }, + + + onRemove: function(labelable, isDestroying) { + var me = this; + me.callParent(arguments); + if (!isDestroying) { + if (me.combineLabels) { + labelable.hideLabel = labelable.oldHideLabel; + } + me.updateLabel(); + } + }, + + initRenderTpl: function() { + var me = this; + if (!me.hasOwnProperty('renderTpl')) { + me.renderTpl = me.getTpl('labelableRenderTpl'); + } + return me.callParent(); + }, + + initRenderData: function() { + var me = this, + data = me.callParent(); + + data.containerElCls = me.containerElCls; + return Ext.applyIf(data, me.getLabelableRenderData()); + }, + + + getFieldLabel: function() { + var label = this.fieldLabel || ''; + if (!label && this.combineLabels) { + label = Ext.Array.map(this.query('[isFieldLabelable]'), function(field) { + return field.getFieldLabel(); + }).join(this.labelConnector); + } + return label; + }, + + getSubTplData: function() { + var ret = this.initRenderData(); + + Ext.apply(ret, this.subTplData); + return ret; + }, + + getSubTplMarkup: function() { + var me = this, + tpl = me.getTpl('fieldSubTpl'), + html; + + if (!tpl.renderContent) { + me.setupRenderTpl(tpl); + } + + html = tpl.apply(me.getSubTplData()); + return html; + }, + + + updateLabel: function() { + var me = this, + label = me.labelEl; + + if (label) { + me.setFieldLabel(me.getFieldLabel()); + } + }, + + + + onFieldErrorChange: function(field, activeError) { + if (this.combineErrors) { + var me = this, + oldError = me.getActiveError(), + invalidFields = Ext.Array.filter(me.query('[isFormField]'), function(field) { + return field.hasActiveError(); + }), + newErrors = me.getCombinedErrors(invalidFields); + + if (newErrors) { + me.setActiveErrors(newErrors); + } else { + me.unsetActiveError(); + } + + if (oldError !== me.getActiveError()) { + me.doComponentLayout(); + } + } + }, + + + getCombinedErrors: function(invalidFields) { + var errors = [], + f, + fLen = invalidFields.length, + field, + activeErrors, a, aLen, + error, label; + + for (f = 0; f < fLen; f++) { + field = invalidFields[f]; + activeErrors = field.getActiveErrors(); + aLen = activeErrors.length; + + for (a = 0; a < aLen; a++) { + error = activeErrors[a]; + label = field.getFieldLabel(); + + errors.push((label ? label + ': ' : '') + error); + } + } + + return errors; + }, + + getTargetEl: function() { + return this.containerEl; + }, + + applyTargetCls: function(targetCls) { + var containerElCls = this.containerElCls; + + this.containerElCls = containerElCls ? containerElCls + ' ' + targetCls : targetCls; + } +}); + + +Ext.define('Ext.layout.container.CheckboxGroup', { + extend: Ext.layout.container.Container , + alias: ['layout.checkboxgroup'], + + + autoFlex: true, + + type: 'checkboxgroup', + + createsInnerCt: true, + + childEls: [ + 'innerCt' + ], + + renderTpl: [ + '', + '', + '', + '', + '
', + '{% this.renderColumn(out,parent,xindex-1) %}', + '
' + ], + + lastOwnerItemsGeneration : null, + + beginLayout: function(ownerContext) { + var me = this, + columns, + numCols, + i, width, cwidth, + totalFlex = 0, flexedCols = 0, + autoFlex = me.autoFlex, + innerCtStyle = me.innerCt.dom.style; + + me.callParent(arguments); + + columns = me.columnNodes; + ownerContext.innerCtContext = ownerContext.getEl('innerCt', me); + + + if (!ownerContext.widthModel.shrinkWrap) { + numCols = columns.length; + + + if (me.columnsArray) { + + + for (i = 0; i < numCols; i++) { + width = me.owner.columns[i]; + if (width < 1) { + totalFlex += width; + flexedCols++; + } + } + + + for (i = 0; i < numCols; i++) { + width = me.owner.columns[i]; + if (width < 1) { + cwidth = ((width / totalFlex) * 100) + '%'; + } else { + cwidth = width + 'px'; + } + columns[i].style.width = cwidth; + } + } + + + else { + for (i = 0; i < numCols; i++) { + + + + cwidth = autoFlex + ? (1 / numCols * 100) + '%' + : ''; + columns[i].style.width = cwidth; + flexedCols++; + } + } + + + if (!flexedCols) { + innerCtStyle.tableLayout = 'fixed'; + innerCtStyle.width = ''; + + } else if (flexedCols < numCols) { + innerCtStyle.tableLayout = 'fixed'; + innerCtStyle.width = '100%'; + + } else { + innerCtStyle.tableLayout = 'auto'; + + if (autoFlex) { + innerCtStyle.width = '100%'; + } else { + innerCtStyle.width = ''; + } + } + + } else { + innerCtStyle.tableLayout = 'auto'; + innerCtStyle.width = ''; + } + }, + + cacheElements: function () { + var me = this; + + + me.callParent(); + + me.rowEl = me.innerCt.down('tr'); + + + me.columnNodes = me.rowEl.dom.childNodes; + }, + + + calculate: function(ownerContext) { + var me = this, + targetContext, widthShrinkWrap, heightShrinkWrap, shrinkWrap, table, targetPadding; + + + + if (!ownerContext.getDomProp('containerChildrenSizeDone')) { + me.done = false; + } else { + targetContext = ownerContext.innerCtContext; + widthShrinkWrap = ownerContext.widthModel.shrinkWrap; + heightShrinkWrap = ownerContext.heightModel.shrinkWrap; + shrinkWrap = heightShrinkWrap || widthShrinkWrap; + table = targetContext.el.dom; + targetPadding = shrinkWrap && targetContext.getPaddingInfo(); + + if (widthShrinkWrap) { + ownerContext.setContentWidth(table.offsetWidth + targetPadding.width, true); + } + + if (heightShrinkWrap) { + ownerContext.setContentHeight(table.offsetHeight + targetPadding.height, true); + } + } + }, + + doRenderColumn: function (out, renderData, columnIndex) { + + + + var me = renderData.$layout, + owner = me.owner, + columnCount = renderData.columnCount, + items = owner.items.items, + itemCount = items.length, + item, itemIndex, rowCount, increment, tree; + + + + + + if (owner.vertical) { + + + + + + + + + + + + rowCount = Math.ceil(itemCount / columnCount); + itemIndex = columnIndex * rowCount; + itemCount = Math.min(itemCount, itemIndex + rowCount); + increment = 1; + } else { + + + + + + + + + + + + itemIndex = columnIndex; + increment = columnCount; + } + + for ( ; itemIndex < itemCount; itemIndex += increment) { + item = items[itemIndex]; + me.configureItem(item); + tree = item.getRenderTree(); + Ext.DomHelper.generateMarkup(tree, out); + } + }, + + + getColumnCount: function() { + var me = this, + owner = me.owner, + ownerColumns = owner.columns; + + + + if (me.columnsArray) { + return ownerColumns.length; + } + + if (Ext.isNumber(ownerColumns)) { + return ownerColumns; + } + return owner.items.length; + }, + + getItemSizePolicy: function (item) { + return this.autoSizePolicy; + }, + + getRenderData: function () { + var me = this, + data = me.callParent(), + owner = me.owner, + i, columns = me.getColumnCount(), + width, column, cwidth, + autoFlex = me.autoFlex, + totalFlex = 0, flexedCols = 0; + + + if (me.columnsArray) { + for (i=0; i < columns; i++) { + width = me.owner.columns[i]; + if (width < 1) { + totalFlex += width; + flexedCols++; + } + } + } + + data.colCls = owner.groupCls; + data.columnCount = columns; + + data.columns = []; + for (i = 0; i < columns; i++) { + column = (data.columns[i] = {}); + + if (me.columnsArray) { + width = me.owner.columns[i]; + if (width < 1) { + cwidth = ((width / totalFlex) * 100) + '%'; + } else { + cwidth = width + 'px'; + } + column.style = 'width:' + cwidth; + } else { + column.style = 'width:' + (1 / columns * 100) + '%'; + flexedCols++; + } + } + + + data.tableStyle = + !flexedCols ? 'table-layout:fixed;' : + (flexedCols < columns) ? 'table-layout:fixed;width:100%' : + (autoFlex) ? 'table-layout:auto;width:100%' : 'table-layout:auto;'; + + return data; + }, + + initLayout: function () { + var me = this, + owner = me.owner; + + me.columnsArray = Ext.isArray(owner.columns); + me.autoColumns = !owner.columns || owner.columns === 'auto'; + me.vertical = owner.vertical; + + me.callParent(); + }, + + + isValidParent: function() { + return true; + }, + + setupRenderTpl: function (renderTpl) { + this.callParent(arguments); + + renderTpl.renderColumn = this.doRenderColumn; + }, + + renderChildren: function () { + var me = this, + generation = me.owner.items.generation; + + if (me.lastOwnerItemsGeneration !== generation) { + me.lastOwnerItemsGeneration = generation; + me.renderItems(me.getLayoutItems()); + } + }, + + + renderItems : function(items) { + var me = this, + itemCount = items.length, + i, + item, + rowCount, + columnCount, + rowIndex, + columnIndex; + + if (itemCount) { + Ext.suspendLayouts(); + + if (me.autoColumns) { + me.addMissingColumns(itemCount); + } + + columnCount = me.columnNodes.length; + rowCount = Math.ceil(itemCount / columnCount); + + for (i = 0; i < itemCount; i++) { + item = items[i]; + rowIndex = me.getRenderRowIndex(i, rowCount, columnCount); + columnIndex = me.getRenderColumnIndex(i, rowCount, columnCount); + + if (!item.rendered) { + me.renderItem(item, rowIndex, columnIndex); + } else if (!me.isItemAtPosition(item, rowIndex, columnIndex)) { + me.moveItem(item, rowIndex, columnIndex); + } + } + + if (me.autoColumns) { + me.removeExceedingColumns(itemCount); + } + + Ext.resumeLayouts(true); + } + }, + + isItemAtPosition : function(item, rowIndex, columnIndex) { + return item.el.dom === this.getNodeAt(rowIndex, columnIndex); + }, + + getRenderColumnIndex : function(itemIndex, rowCount, columnCount) { + if (this.vertical) { + return Math.floor(itemIndex / rowCount); + } else { + return itemIndex % columnCount; + } + }, + + getRenderRowIndex : function(itemIndex, rowCount, columnCount) { + var me = this; + if (me.vertical) { + return itemIndex % rowCount; + } else { + return Math.floor(itemIndex / columnCount); + } + }, + + getNodeAt : function(rowIndex, columnIndex) { + return this.columnNodes[columnIndex].childNodes[rowIndex]; + }, + + addMissingColumns : function(itemsCount) { + var me = this, + existingColumnsCount = me.columnNodes.length, + missingColumnsCount, + row, + cls, + i; + if (existingColumnsCount < itemsCount) { + missingColumnsCount = itemsCount - existingColumnsCount; + row = me.rowEl; + cls = me.owner.groupCls; + for (i = 0; i < missingColumnsCount; i++) { + row.createChild({ + cls: cls, + tag: 'td', + vAlign: 'top' + }); + } + } + }, + + removeExceedingColumns : function(itemsCount) { + var me = this, + existingColumnsCount = me.columnNodes.length, + exceedingColumnsCount, + row, + i; + if (existingColumnsCount > itemsCount) { + exceedingColumnsCount = existingColumnsCount - itemsCount; + row = me.rowEl; + for (i = 0; i < exceedingColumnsCount; i++) { + row.last().remove(); + } + } + }, + + + renderItem : function(item, rowIndex, columnIndex) { + var me = this; + + me.configureItem(item); + item.render(Ext.get(me.columnNodes[columnIndex]), rowIndex); + me.afterRenderItem(item); + }, + + + moveItem : function(item, rowIndex, columnIndex) { + var me = this, + column = me.columnNodes[columnIndex], + targetNode = column.childNodes[rowIndex]; + column.insertBefore(item.el.dom, targetNode || null); + } + +}); + + +Ext.define('Ext.form.CheckboxManager', { + extend: Ext.util.MixedCollection , + singleton: true, + + getByName: function(name, formId) { + return this.filterBy(function(item) { + return item.name == name && item.getFormId() == formId; + }); + } +}); + + +Ext.define('Ext.form.field.Checkbox', { + extend: Ext.form.field.Base , + alias: ['widget.checkboxfield', 'widget.checkbox'], + alternateClassName: 'Ext.form.Checkbox', + + + componentLayout: 'field', + + + stretchInputElFixed: false, + + childEls: [ + + 'boxLabelEl' + ], + + + fieldSubTpl: [ + '', + '{beforeBoxLabelTpl}', + '', + '{afterBoxLabelTpl}', + '', + + + ' tabIndex="{tabIdx}"
', + ' disabled="disabled"', + ' style="{fieldStyle}"', + ' {ariaAttrs}', + ' class="{fieldCls} {typeCls} {inputCls} {childElCls}" autocomplete="off" hidefocus="true" />', + '', + '{beforeBoxLabelTpl}', + '', + '{afterBoxLabelTpl}', + '', + { + disableFormats: true, + compiled: true + } + ], + + subTplInsertions: [ + + 'beforeBoxLabelTpl', + + + 'afterBoxLabelTpl', + + + 'beforeBoxLabelTextTpl', + + + 'afterBoxLabelTextTpl', + + + 'boxLabelAttrTpl', + + + 'inputAttrTpl' + ], + + + isCheckbox: true, + + + focusCls: 'form-checkbox-focus', + + + + + extraFieldBodyCls: Ext.baseCSSPrefix + 'form-cb-wrap', + + + checked: false, + + + checkedCls: Ext.baseCSSPrefix + 'form-cb-checked', + + + + + boxLabelCls: Ext.baseCSSPrefix + 'form-cb-label', + + + boxLabelAlign: 'after', + + + inputValue: 'on', + + + + + + + + + checkChangeEvents: [], + inputType: 'checkbox', + + + inputTypeAttr: 'button', + + + + onRe: /^on$/i, + + + inputCls: Ext.baseCSSPrefix + 'form-cb', + + initComponent: function() { + this.callParent(arguments); + this.getManager().add(this); + }, + + initValue: function() { + var me = this, + checked = !!me.checked; + + + me.originalValue = me.lastValue = checked; + + + me.setValue(checked); + }, + + getElConfig: function() { + var me = this; + + + if (me.isChecked(me.rawValue, me.inputValue)) { + me.addCls(me.checkedCls); + } + return me.callParent(); + }, + + getFieldStyle: function() { + return Ext.isObject(this.fieldStyle) ? Ext.DomHelper.generateStyles(this.fieldStyle) : this.fieldStyle ||''; + }, + + getSubTplData: function() { + var me = this; + return Ext.apply(me.callParent(), { + disabled : me.readOnly || me.disabled, + boxLabel : me.boxLabel, + boxLabelCls : me.boxLabelCls, + boxLabelAlign : me.boxLabelAlign, + inputTypeAttr : me.inputTypeAttr + }); + }, + + initEvents: function() { + var me = this; + me.callParent(); + me.mon(me.inputEl, 'click', me.onBoxClick, me); + }, + + + setBoxLabel: function(boxLabel){ + var me = this; + + me.boxLabel = boxLabel; + if (me.rendered) { + me.boxLabelEl.update(boxLabel); + } + }, + + + onBoxClick: function(e) { + var me = this; + if (!me.disabled && !me.readOnly) { + this.setValue(!this.checked); + } + }, + + + getRawValue: function() { + return this.checked; + }, + + + getValue: function() { + return this.checked; + }, + + + getSubmitValue: function() { + var unchecked = this.uncheckedValue, + uncheckedVal = Ext.isDefined(unchecked) ? unchecked : null; + return this.checked ? this.inputValue : uncheckedVal; + }, + + isChecked: function(rawValue, inputValue) { + return (rawValue === true || rawValue === 'true' || rawValue === '1' || rawValue === 1 || + (((Ext.isString(rawValue) || Ext.isNumber(rawValue)) && inputValue) ? rawValue == inputValue : this.onRe.test(rawValue))); + }, + + + setRawValue: function(value) { + var me = this, + inputEl = me.inputEl, + checked = me.isChecked(value, me.inputValue); + + if (inputEl) { + me[checked ? 'addCls' : 'removeCls'](me.checkedCls); + } + + me.checked = me.rawValue = checked; + return checked; + }, + + + setValue: function(checked) { + var me = this, + boxes, i, len, box; + + + + + + if (Ext.isArray(checked)) { + boxes = me.getManager().getByName(me.name, me.getFormId()).items; + len = boxes.length; + + for (i = 0; i < len; ++i) { + box = boxes[i]; + box.setValue(Ext.Array.contains(checked, box.inputValue)); + } + } else { + me.callParent(arguments); + } + + return me; + }, + + + valueToRaw: function(value) { + + return value; + }, + + + onChange: function(newVal, oldVal) { + var me = this, + handler = me.handler; + if (handler) { + handler.call(me.scope || me, me, newVal); + } + me.callParent(arguments); + }, + + resetOriginalValue: function( fromBoxInGroup){ + var me = this, + boxes, + box, + len, + i; + + + if (!fromBoxInGroup) { + boxes = me.getManager().getByName(me.name, me.getFormId()).items; + len = boxes.length; + + for (i = 0; i < len; ++i) { + box = boxes[i]; + if (box !== me) { + boxes[i].resetOriginalValue(true); + } + } + } + me.callParent(); + }, + + + beforeDestroy: function(){ + this.callParent(); + this.getManager().removeAtKey(this.id); + }, + + + getManager: function() { + return Ext.form.CheckboxManager; + }, + + onEnable: function() { + var me = this, + inputEl = me.inputEl; + me.callParent(); + if (inputEl) { + + inputEl.dom.disabled = me.readOnly; + } + }, + + setReadOnly: function(readOnly) { + var me = this, + inputEl = me.inputEl; + if (inputEl) { + + inputEl.dom.disabled = !!readOnly || me.disabled; + } + me.callParent(arguments); + }, + + getFormId: function(){ + var me = this, + form; + + if (!me.formId) { + form = me.up('form'); + if (form) { + me.formId = form.id; + } + } + return me.formId; + } +}); + + +Ext.define('Ext.form.CheckboxGroup', { + extend: Ext.form.FieldContainer , + mixins: { + field: Ext.form.field.Field + }, + alias: 'widget.checkboxgroup', + + + + + + + + + + + + columns : 'auto', + + + vertical : false, + + + allowBlank : true, + + + + blankText : "You must select at least one item in this group", + + + + defaultType : 'checkboxfield', + + + groupCls : Ext.baseCSSPrefix + 'form-check-group', + + + extraFieldBodyCls: Ext.baseCSSPrefix + 'form-checkboxgroup-body', + + + layout: 'checkboxgroup', + + componentCls: Ext.baseCSSPrefix + 'form-checkboxgroup', + + initComponent: function() { + var me = this; + me.callParent(); + me.initField(); + }, + + + initValue: function() { + var me = this, + valueCfg = me.value; + me.originalValue = me.lastValue = valueCfg || me.getValue(); + if (valueCfg) { + me.setValue(valueCfg); + } + }, + + + onAdd: function(item) { + var me = this, + items, + len, i; + + if (item.isCheckbox) { + me.mon(item, 'change', me.checkChange, me); + } else if (item.isContainer) { + items = item.items.items; + for (i = 0, len = items.length; i < len; i++) { + me.onAdd(items[i]); + } + } + me.callParent(arguments); + }, + + onRemove: function(item) { + var me = this, + items, + len, i; + + if (item.isCheckbox) { + me.mun(item, 'change', me.checkChange, me); + } else if (item.isContainer) { + items = item.items.items; + for (i = 0, len = items.length; i < len; i++) { + me.onRemove(items[i]); + } + } + me.callParent(arguments); + }, + + + isEqual: function(value1, value2) { + var toQueryString = Ext.Object.toQueryString; + return toQueryString(value1) === toQueryString(value2); + }, + + + getErrors: function() { + var errors = []; + if (!this.allowBlank && Ext.isEmpty(this.getChecked())) { + errors.push(this.blankText); + } + return errors; + }, + + + getBoxes: function(query) { + return this.query('[isCheckbox]' + (query||'')); + }, + + + eachBox: function(fn, scope) { + Ext.Array.forEach(this.getBoxes(), fn, scope || this); + }, + + + getChecked: function() { + return this.getBoxes('[checked]'); + }, + + + isDirty: function(){ + var boxes = this.getBoxes(), + b , + bLen = boxes.length; + + for (b = 0; b < bLen; b++) { + if (boxes[b].isDirty()) { + return true; + } + } + }, + + + setReadOnly: function(readOnly) { + var boxes = this.getBoxes(), + b, + bLen = boxes.length; + + for (b = 0; b < bLen; b++) { + boxes[b].setReadOnly(readOnly); + } + + this.readOnly = readOnly; + }, + + + reset: function() { + var me = this, + hadError = me.hasActiveError(), + preventMark = me.preventMark; + me.preventMark = true; + me.batchChanges(function() { + var boxes = me.getBoxes(), + b, + bLen = boxes.length; + + for (b = 0; b < bLen; b++) { + boxes[b].reset(); + } + }); + me.preventMark = preventMark; + me.unsetActiveError(); + if (hadError) { + me.updateLayout(); + } + }, + + resetOriginalValue: function(){ + var me = this, + boxes = me.getBoxes(), + b, + bLen = boxes.length; + + for (b = 0; b < bLen; b++) { + boxes[b].resetOriginalValue(); + } + + me.originalValue = me.getValue(); + me.checkDirty(); + }, + + + + setValue: function(value) { + var me = this, + boxes = me.getBoxes(), + b, + bLen = boxes.length, + box, name, + cbValue; + + me.batchChanges(function() { + for (b = 0; b < bLen; b++) { + box = boxes[b]; + name = box.getName(); + cbValue = false; + + if (value && value.hasOwnProperty(name)) { + if (Ext.isArray(value[name])) { + cbValue = Ext.Array.contains(value[name], box.inputValue); + } else { + + cbValue = value[name]; + } + } + + box.setValue(cbValue); + } + }); + return me; + }, + + + + getValue: function() { + var values = {}, + boxes = this.getBoxes(), + b, + bLen = boxes.length, + box, name, inputValue, bucket; + + for (b = 0; b < bLen; b++) { + box = boxes[b]; + name = box.getName(); + inputValue = box.inputValue; + + if (box.getValue()) { + if (values.hasOwnProperty(name)) { + bucket = values[name]; + if (!Ext.isArray(bucket)) { + bucket = values[name] = [bucket]; + } + bucket.push(inputValue); + } else { + values[name] = inputValue; + } + } + } + + return values; + }, + + + getSubmitData: function() { + return null; + }, + + + getModelData: function() { + return null; + }, + + validate: function() { + var me = this, + errors, + isValid, + wasValid; + + if (me.disabled) { + isValid = true; + } else { + errors = me.getErrors(); + isValid = Ext.isEmpty(errors); + wasValid = me.wasValid; + if (isValid) { + me.unsetActiveError(); + } else { + me.setActiveError(errors); + } + } + if (isValid !== wasValid) { + me.wasValid = isValid; + me.fireEvent('validitychange', me, isValid); + me.updateLayout(); + } + + return isValid; + } + +}, function() { + + this.borrow(Ext.form.field.Base, ['markInvalid', 'clearInvalid', 'setError']); + +}); + + + +Ext.define('Ext.form.FieldSet', { + extend: Ext.container.Container , + mixins: { + fieldAncestor: Ext.form.FieldAncestor + }, + alias: 'widget.fieldset', + + + + + + + + + + + + collapsed: false, + + + toggleOnTitleClick : true, + + + + + baseCls: Ext.baseCSSPrefix + 'fieldset', + + + layout: 'anchor', + + componentLayout: 'fieldset', + + autoEl: 'fieldset', + + childEls: [ + 'body' + ], + + renderTpl: [ + '{%this.renderLegend(out,values);%}', + '
style="{bodyStyle}">', + '{%this.renderContainer(out,values);%}', + '
' + ], + + stateEvents : [ 'collapse', 'expand' ], + + maskOnDisable: false, + + beforeDestroy: function(){ + var me = this, + legend = me.legend; + + if (legend) { + + delete legend.ownerCt; + legend.destroy(); + me.legend = null; + } + me.callParent(); + }, + + initComponent: function() { + var me = this, + baseCls = me.baseCls; + + me.initFieldAncestor(); + + me.callParent(); + + + + + + + + + + + + me.layout.managePadding = me.layout.manageOverflow = false; + + me.addEvents( + + + "beforeexpand", + + + "beforecollapse", + + + "expand", + + + "collapse" + ); + + if (me.collapsed) { + me.addCls(baseCls + '-collapsed'); + me.collapse(); + } + if (me.title || me.checkboxToggle || me.collapsible) { + me.addTitleClasses(); + me.legend = Ext.widget(me.createLegendCt()); + } + me.initMonitor(); + }, + + initPadding: function(targetEl) { + var me = this, + body = me.getProtoBody(), + padding = me.padding, + bodyPadding; + + if (padding !== undefined) { + if (Ext.isIEQuirks || Ext.isIE8m) { + + + padding = me.parseBox(padding); + bodyPadding = Ext.Element.parseBox(0); + bodyPadding.top = padding.top; + padding.top = 0; + body.setStyle('padding', me.unitizeBox(bodyPadding)); + } + + targetEl.setStyle('padding', me.unitizeBox(padding)); + } + }, + + getProtoBody: function () { + var me = this, + body = me.protoBody; + + if (!body) { + me.protoBody = body = new Ext.util.ProtoElement({ + styleProp: 'bodyStyle', + styleIsText: true + }); + } + + return body; + }, + + + initRenderData: function() { + var me = this, + data = me.callParent(); + + data.bodyTargetCls = me.bodyTargetCls; + me.protoBody.writeTo(data); + delete me.protoBody; + + return data; + }, + + getState: function () { + var state = this.callParent(); + + state = this.addPropertyToState(state, 'collapsed'); + + return state; + }, + + afterCollapse: Ext.emptyFn, + afterExpand: Ext.emptyFn, + + collapsedHorizontal: function () { + return true; + }, + + collapsedVertical: function () { + return true; + }, + + createLegendCt: function () { + var me = this, + items = [], + legend = { + xtype: 'container', + baseCls: me.baseCls + '-header', + id: me.id + '-legend', + autoEl: 'legend', + items: items, + ownerCt: me, + shrinkWrap: true, + ownerLayout: me.componentLayout + }; + + + if (me.checkboxToggle) { + items.push(me.createCheckboxCmp()); + } else if (me.collapsible) { + + items.push(me.createToggleCmp()); + } + + + items.push(me.createTitleCmp()); + + return legend; + }, + + + createTitleCmp: function() { + var me = this, + cfg = { + xtype : 'component', + html : me.title, + cls : me.baseCls + '-header-text', + id : me.id + '-legendTitle' + }; + + if (me.collapsible && me.toggleOnTitleClick) { + cfg.listeners = { + click : { + element: 'el', + scope : me, + fn : me.toggle + } + }; + cfg.cls += ' ' + me.baseCls + '-header-text-collapsible'; + } + + return (me.titleCmp = Ext.widget(cfg)); + }, + + + + + createCheckboxCmp: function() { + var me = this, + suffix = '-checkbox'; + + me.checkboxCmp = Ext.widget({ + xtype: 'checkbox', + hideEmptyLabel: true, + name: me.checkboxName || me.id + suffix, + cls: me.baseCls + '-header' + suffix, + id: me.id + '-legendChk', + checked: !me.collapsed, + listeners: { + change: me.onCheckChange, + scope: me + } + }); + return me.checkboxCmp; + }, + + + + + createToggleCmp: function() { + var me = this; + me.toggleCmp = Ext.widget({ + xtype: 'tool', + height: 15, + width: 15, + type: 'toggle', + handler: me.toggle, + id: me.id + '-legendToggle', + scope: me + }); + return me.toggleCmp; + }, + + doRenderLegend: function (out, renderData) { + + + + var me = renderData.$comp, + legend = me.legend, + tree; + + + if (legend) { + legend.ownerLayout.configureItem(legend); + tree = legend.getRenderTree(); + Ext.DomHelper.generateMarkup(tree, out); + } + }, + + finishRender: function () { + var legend = this.legend; + + this.callParent(); + + if (legend) { + legend.finishRender(); + } + }, + + getCollapsed: function () { + return this.collapsed ? 'top' : false; + }, + + getCollapsedDockedItems: function () { + var legend = this.legend; + + return legend ? [ legend ] : []; + }, + + + setTitle: function(title) { + var me = this, + legend = me.legend, + baseCls = me.baseCls; + + me.title = title; + if (me.rendered) { + if (!legend) { + me.legend = legend = Ext.widget(me.createLegendCt()); + me.addTitleClasses(); + legend.ownerLayout.configureItem(legend); + legend.render(me.el, 0); + } + me.titleCmp.update(title); + } else if (legend) { + me.titleCmp.update(title); + } else { + me.addTitleClasses(); + me.legend = Ext.widget(me.createLegendCt()); + } + return me; + }, + + addTitleClasses: function(){ + var me = this, + title = me.title, + baseCls = me.baseCls; + + if (title) { + me.addCls(baseCls + '-with-title'); + } + + if (title || me.checkboxToggle || me.collapsible) { + me.addCls(baseCls + '-with-header'); + } + }, + + applyTargetCls: function(targetCls) { + this.bodyTargetCls = targetCls; + }, + + getTargetEl : function() { + return this.body || this.frameBody || this.el; + }, + + getDefaultContentTarget: function() { + return this.body; + }, + + + expand : function(){ + return this.setExpanded(true); + }, + + + collapse : function() { + return this.setExpanded(false); + }, + + + setExpanded: function(expanded) { + var me = this, + checkboxCmp = me.checkboxCmp, + operation = expanded ? 'expand' : 'collapse'; + + if (!me.rendered || me.fireEvent('before' + operation, me) !== false) { + expanded = !!expanded; + + if (checkboxCmp) { + checkboxCmp.setValue(expanded); + } + + if (expanded) { + me.removeCls(me.baseCls + '-collapsed'); + } else { + me.addCls(me.baseCls + '-collapsed'); + } + me.collapsed = !expanded; + if (expanded) { + delete me.getHierarchyState().collapsed; + } else { + me.getHierarchyState().collapsed = true; + } + if (me.rendered) { + + + + me.updateLayout({ isRoot: false }); + me.fireEvent(operation, me); + } + } + return me; + }, + + getRefItems: function(deep) { + var refItems = this.callParent(arguments), + legend = this.legend; + + + if (legend) { + refItems.unshift(legend); + if (deep) { + refItems.unshift.apply(refItems, legend.getRefItems(true)); + } + } + return refItems; + }, + + + toggle: function() { + this.setExpanded(!!this.collapsed); + }, + + + onCheckChange: function(cmp, checked) { + this.setExpanded(checked); + }, + + setupRenderTpl: function (renderTpl) { + this.callParent(arguments); + + renderTpl.renderLegend = this.doRenderLegend; + } +}); + + +Ext.define('Ext.form.Label', { + extend: Ext.Component , + alias: 'widget.label', + + + autoEl: 'label', + + + + + + maskOnDisable: false, + + getElConfig: function(){ + var me = this; + + me.html = me.text ? Ext.util.Format.htmlEncode(me.text) : (me.html || ''); + return Ext.apply(me.callParent(), { + htmlFor: me.forId || '' + }); + }, + + + setText : function(text, encode){ + var me = this; + + encode = encode !== false; + if(encode) { + me.text = text; + delete me.html; + } else { + me.html = text; + delete me.text; + } + + if(me.rendered){ + me.el.dom.innerHTML = encode !== false ? Ext.util.Format.htmlEncode(text) : text; + me.updateLayout(); + } + return me; + } +}); + + + +Ext.define('Ext.form.Panel', { + extend: Ext.panel.Panel , + mixins: { + fieldAncestor: Ext.form.FieldAncestor + }, + alias: 'widget.form', + alternateClassName: ['Ext.FormPanel', 'Ext.form.FormPanel'], + + + + + + + + layout: 'anchor', + + ariaRole: 'form', + + basicFormConfigs: [ + 'api', + 'baseParams', + 'errorReader', + 'jsonSubmit', + 'method', + 'paramOrder', + 'paramsAsHash', + 'reader', + 'standardSubmit', + 'timeout', + 'trackResetOnLoad', + 'url', + 'waitMsgTarget', + 'waitTitle' + ], + + initComponent: function() { + var me = this; + + if (me.frame) { + me.border = false; + } + + me.initFieldAncestor(); + me.callParent(); + + me.relayEvents(me.form, [ + + 'beforeaction', + + 'actionfailed', + + 'actioncomplete', + + 'validitychange', + + 'dirtychange' + ]); + + + if (me.pollForChanges) { + me.startPolling(me.pollInterval || 500); + } + }, + + initItems: function() { + + this.callParent(); + this.initMonitor(); + this.form = this.createForm(); + }, + + + afterFirstLayout: function() { + this.callParent(arguments); + this.form.initialize(); + }, + + + createForm: function() { + var cfg = {}, + props = this.basicFormConfigs, + len = props.length, + i = 0, + prop; + + for (; i < len; ++i) { + prop = props[i]; + cfg[prop] = this[prop]; + } + return new Ext.form.Basic(this, cfg); + }, + + + getForm: function() { + return this.form; + }, + + + loadRecord: function(record) { + return this.getForm().loadRecord(record); + }, + + + getRecord: function() { + return this.getForm().getRecord(); + }, + + + updateRecord: function(record) { + return this.getForm().updateRecord(record); + }, + + + getValues: function(asString, dirtyOnly, includeEmptyText, useDataValues) { + return this.getForm().getValues(asString, dirtyOnly, includeEmptyText, useDataValues); + }, + + + isDirty: function () { + return this.form.isDirty(); + }, + + + isValid: function () { + return this.form.isValid(); + }, + + + hasInvalidField: function () { + return this.form.hasInvalidField(); + }, + + beforeDestroy: function() { + this.stopPolling(); + this.form.destroy(); + this.callParent(); + }, + + + load: function(options) { + this.form.load(options); + }, + + + submit: function(options) { + this.form.submit(options); + }, + + + startPolling: function(interval) { + this.stopPolling(); + var task = new Ext.util.TaskRunner(interval); + task.start({ + interval: 0, + run: this.checkChange, + scope: this + }); + this.pollTask = task; + }, + + + stopPolling: function() { + var task = this.pollTask; + if (task) { + task.stopAll(); + delete this.pollTask; + } + }, + + + checkChange: function() { + var fields = this.form.getFields().items, + f, + fLen = fields.length; + + for (f = 0; f < fLen; f++) { + fields[f].checkChange(); + } + } +}); + + +Ext.define('Ext.form.RadioManager', { + extend: Ext.util.MixedCollection , + singleton: true, + + getByName: function(name, formId) { + return this.filterBy(function(item) { + return item.name == name && item.getFormId() == formId; + }); + }, + + getWithValue: function(name, value, formId) { + return this.filterBy(function(item) { + return item.name == name && item.inputValue == value && item.getFormId() == formId; + }); + }, + + getChecked: function(name, formId) { + return this.findBy(function(item) { + return item.name == name && item.checked && item.getFormId() == formId; + }); + } +}); + + +Ext.define('Ext.form.field.Radio', { + extend: Ext.form.field.Checkbox , + alias: ['widget.radiofield', 'widget.radio'], + alternateClassName: 'Ext.form.Radio', + + + + isRadio: true, + + + focusCls: 'form-radio-focus', + + + + + inputType: 'radio', + ariaRole: 'radio', + + formId: null, + + + getGroupValue: function() { + var selected = this.getManager().getChecked(this.name, this.getFormId()); + return selected ? selected.inputValue : null; + }, + + + onBoxClick: function(e) { + var me = this; + if (!me.disabled && !me.readOnly) { + this.setValue(true); + } + }, + + onRemoved: function(){ + this.callParent(arguments); + this.formId = null; + }, + + + setValue: function(v) { + var me = this, + active; + + if (Ext.isBoolean(v)) { + me.callParent(arguments); + } else { + active = me.getManager().getWithValue(me.name, v, me.getFormId()).getAt(0); + if (active) { + active.setValue(true); + } + } + return me; + }, + + + getSubmitValue: function() { + return this.checked ? this.inputValue : null; + }, + + getModelData: function() { + return this.getSubmitData(); + }, + + + onChange: function(newVal, oldVal) { + var me = this, + r, rLen, radio, radios; + + me.callParent(arguments); + + if (newVal) { + radios = me.getManager().getByName(me.name, me.getFormId()).items; + rLen = radios.length; + + for (r = 0; r < rLen; r++) { + radio = radios[r]; + + if (radio !== me) { + radio.setValue(false); + } + } + } + }, + + + getManager: function() { + return Ext.form.RadioManager; + } +}); + + +Ext.define('Ext.form.RadioGroup', { + extend: Ext.form.CheckboxGroup , + alias: 'widget.radiogroup', + + + + + + + + allowBlank : true, + + + blankText : 'You must select one item in this group', + + + + defaultType : 'radiofield', + + + groupCls : Ext.baseCSSPrefix + 'form-radio-group', + + getBoxes: function(query) { + return this.query('[isRadio]' + (query||'')); + }, + + checkChange: function() { + var value = this.getValue(), + key = Ext.Object.getKeys(value)[0]; + + + + if (Ext.isArray(value[key])) { + return; + } + this.callParent(arguments); + }, + + + setValue: function(value) { + var cbValue, first, formId, radios, + i, len, name; + + if (Ext.isObject(value)) { + for (name in value) { + if (value.hasOwnProperty(name)) { + cbValue = value[name]; + first = this.items.first(); + formId = first ? first.getFormId() : null; + radios = Ext.form.RadioManager.getWithValue(name, cbValue, formId).items; + len = radios.length; + + for (i = 0; i < len; ++i) { + radios[i].setValue(true); + } + } + } + } + return this; + } +}); + + +Ext.define('Ext.form.action.DirectLoad', { + extend: Ext.form.action.Load , + + alternateClassName: 'Ext.form.Action.DirectLoad', + alias: 'formaction.directload', + + type: 'directload', + + run: function() { + var me = this, + form = me.form, + api = form.api, + fn = api.load, + method, args; + + if (typeof fn !== 'function') { + + api.load = fn = Ext.direct.Manager.parseMethod(fn); + + } + + method = fn.directCfg.method; + args = method.getArgs(me.getParams(), form.paramOrder, form.paramsAsHash); + + args.push(me.onComplete, me); + fn.apply(window, args); + }, + + + + + processResponse: function(result) { + return (this.result = result); + }, + + onComplete: function(data, response) { + if (data) { + this.onSuccess(data); + } else { + this.onFailure(null); + } + } +}); + + + + +Ext.define('Ext.form.action.DirectSubmit', { + extend: Ext.form.action.Submit , + + alternateClassName: 'Ext.form.Action.DirectSubmit', + alias: 'formaction.directsubmit', + + type: 'directsubmit', + + doSubmit: function() { + var me = this, + form = me.form, + api = form.api, + fn = api.submit, + callback = Ext.Function.bind(me.onComplete, me), + formInfo = me.buildForm(), + options; + + if (typeof fn !== 'function') { + + api.submit = fn = Ext.direct.Manager.parseMethod(fn); + + } + + if (me.timeout || form.timeout) { + options = { + timeout: me.timeout * 1000 || form.timeout * 1000 + }; + } + + fn.call(window, formInfo.formEl, callback, me, options); + me.cleanup(formInfo); + }, + + + + + processResponse: function(result) { + return (this.result = result); + }, + + onComplete: function(data, response){ + if (data) { + this.onSuccess(data); + } else { + this.onFailure(null); + } + } +}); + + +Ext.define('Ext.form.action.StandardSubmit', { + extend: Ext.form.action.Submit , + alias: 'formaction.standardsubmit', + + + + + doSubmit: function() { + var formInfo = this.buildForm(); + formInfo.formEl.submit(); + this.cleanup(formInfo); + } + +}); + + +Ext.define('Ext.layout.component.field.Trigger', { + + + + alias: 'layout.triggerfield', + + extend: Ext.layout.component.field.Field , + + + + type: 'triggerfield', + + + borderWidths: {}, + + beginLayout: function(ownerContext) { + var me = this, + owner = me.owner, + flags; + + ownerContext.triggerWrap = ownerContext.getEl('triggerWrap'); + + me.callParent(arguments); + + + flags = owner.getTriggerStateFlags(); + if (flags != owner.lastTriggerStateFlags) { + owner.lastTriggerStateFlags = flags; + me.updateEditState(); + } + }, + + beginLayoutCycle: function(ownerContext){ + this.callParent(arguments); + + + if (ownerContext.widthModel.shrinkWrap && !this.owner.inputWidth) { + ownerContext.inputContext.el.setStyle('width', ''); + } + }, + + beginLayoutFixed: function (ownerContext, width, suffix) { + var me = this, + owner = ownerContext.target, + ieInputWidthAdjustment = me.ieInputWidthAdjustment || 0, + inputWidth = '100%', + triggerWrap = owner.triggerWrap; + + me.callParent(arguments); + + owner.inputCell.setStyle('width', '100%'); + if(ieInputWidthAdjustment) { + me.adjustIEInputPadding(ownerContext); + if(suffix === 'px') { + if (owner.inputWidth) { + inputWidth = owner.inputWidth - me.getExtraWidth(ownerContext); + } else { + inputWidth = width - ieInputWidthAdjustment - me.getExtraWidth(ownerContext); + } + inputWidth += 'px'; + } + } + owner.inputEl.setStyle('width', inputWidth); + inputWidth = owner.inputWidth; + if (inputWidth) { + triggerWrap.setStyle('width', inputWidth + (ieInputWidthAdjustment) + 'px'); + } else { + triggerWrap.setStyle('width', width + suffix); + } + triggerWrap.setStyle('table-layout', 'fixed'); + }, + + adjustIEInputPadding: function(ownerContext) { + + this.owner.inputCell.setStyle('padding-right', this.ieInputWidthAdjustment + 'px'); + }, + + + getExtraWidth: function(ownerContext) { + var me = this, + owner = me.owner, + borderWidths = me.borderWidths, + ui = owner.ui + owner.triggerEl.getCount(); + + if (!(ui in borderWidths)) { + borderWidths[ui] = ownerContext.triggerWrap.getBorderInfo().width + } + return borderWidths[ui] + owner.getTriggerWidth(); + }, + + beginLayoutShrinkWrap: function (ownerContext) { + var owner = ownerContext.target, + emptyString = '', + inputWidth = owner.inputWidth, + triggerWrap = owner.triggerWrap; + + this.callParent(arguments); + + if (inputWidth) { + triggerWrap.setStyle('width', inputWidth + 'px'); + inputWidth = (inputWidth - this.getExtraWidth(ownerContext)) + 'px'; + owner.inputEl.setStyle('width', inputWidth); + owner.inputCell.setStyle('width', inputWidth); + } else { + owner.inputCell.setStyle('width', emptyString); + owner.inputEl.setStyle('width', emptyString); + triggerWrap.setStyle('width', emptyString); + triggerWrap.setStyle('table-layout', 'auto'); + } + }, + + getTextWidth: function () { + var me = this, + owner = me.owner, + inputEl = owner.inputEl, + value; + + + value = (inputEl.dom.value || (owner.hasFocus ? '' : owner.emptyText) || '') + owner.growAppend; + return inputEl.getTextWidth(value); + }, + + publishOwnerWidth: function(ownerContext, width) { + var owner = this.owner; + this.callParent(arguments); + if (!owner.grow && !owner.inputWidth) { + width -= this.getExtraWidth(ownerContext); + if (owner.labelAlign != 'top') { + width -= owner.getLabelWidth(); + } + ownerContext.inputContext.setWidth(width); + } + }, + + publishInnerHeight: function(ownerContext, height) { + ownerContext.inputContext.setHeight(height - this.measureLabelErrorHeight(ownerContext)); + }, + + measureContentWidth: function (ownerContext) { + var me = this, + owner = me.owner, + width = me.callParent(arguments), + inputContext = ownerContext.inputContext, + calcWidth, max, min; + + if (owner.grow && !ownerContext.state.growHandled) { + calcWidth = me.getTextWidth() + ownerContext.inputContext.getFrameInfo().width; + + max = owner.growMax; + min = Math.min(max, width); + max = Math.max(owner.growMin, max, min); + + + calcWidth = Ext.Number.constrain(calcWidth, owner.growMin, max); + inputContext.setWidth(calcWidth); + ownerContext.state.growHandled = true; + + + inputContext.domBlock(me, 'width'); + width = NaN; + } else if (!owner.inputWidth) { + width -= me.getExtraWidth(ownerContext); + } + return width; + }, + + updateEditState: function() { + var me = this, + owner = me.owner, + inputEl = owner.inputEl, + noeditCls = Ext.baseCSSPrefix + 'trigger-noedit', + displayed, + readOnly; + + if (me.owner.readOnly) { + inputEl.addCls(noeditCls); + readOnly = true; + displayed = false; + } else { + if (me.owner.editable) { + inputEl.removeCls(noeditCls); + readOnly = false; + } else { + inputEl.addCls(noeditCls); + readOnly = true; + } + displayed = !me.owner.hideTrigger; + } + + owner.triggerCell.setDisplayed(displayed); + inputEl.dom.readOnly = readOnly; + } +}); + + +Ext.define('Ext.form.field.Trigger', { + extend: Ext.form.field.Text , + alias: ['widget.triggerfield', 'widget.trigger'], + + alternateClassName: ['Ext.form.TriggerField', 'Ext.form.TwinTriggerField', 'Ext.form.Trigger'], + + childEls: [ + + { name: 'triggerCell', select: '.' + Ext.baseCSSPrefix + 'trigger-cell' }, + { name: 'triggerEl', select: '.' + Ext.baseCSSPrefix + 'form-trigger' }, + + + 'triggerWrap', + + + 'inputCell' + ], + + + + + triggerBaseCls: Ext.baseCSSPrefix + 'form-trigger', + + + triggerWrapCls: Ext.baseCSSPrefix + 'form-trigger-wrap', + + + triggerNoEditCls: Ext.baseCSSPrefix + 'trigger-noedit', + + + hideTrigger: false, + + + editable: true, + + + readOnly: false, + + + + + repeatTriggerClick: false, + + + + autoSize: Ext.emptyFn, + + monitorTab: true, + + mimicing: false, + + triggerIndexRe: /trigger-index-(\d+)/, + + extraTriggerCls: '', + + componentLayout: 'triggerfield', + + initComponent: function() { + this.wrapFocusCls = this.triggerWrapCls + '-focus'; + this.callParent(arguments); + }, + + getSubTplMarkup: function(values) { + var me = this, + childElCls = values.childElCls, + field = me.callParent(arguments); + + return '' + + '' + + me.getTriggerMarkup() + + '
' + field + '
'; + }, + + getSubTplData: function(){ + var me = this, + data = me.callParent(), + readOnly = me.readOnly === true, + editable = me.editable !== false; + + return Ext.apply(data, { + editableCls: (readOnly || !editable) ? ' ' + me.triggerNoEditCls : '', + readOnly: !editable || readOnly + }); + }, + + getLabelableRenderData: function() { + var me = this, + triggerWrapCls = me.triggerWrapCls, + result = me.callParent(arguments); + + return Ext.applyIf(result, { + triggerWrapCls: triggerWrapCls, + triggerMarkup: me.getTriggerMarkup() + }); + }, + + getTriggerMarkup: function() { + var me = this, + i = 0, + hideTrigger = (me.readOnly || me.hideTrigger), + triggerCls, + triggerBaseCls = me.triggerBaseCls, + triggerConfigs = [], + unselectableCls = Ext.dom.Element.unselectableCls, + style = 'width:' + me.triggerWidth + 'px;' + (hideTrigger ? 'display:none;' : ''), + cls = me.extraTriggerCls + ' ' + Ext.baseCSSPrefix + 'trigger-cell ' + unselectableCls; + + + + + + if (!me.trigger1Cls) { + me.trigger1Cls = me.triggerCls; + } + + + for (i = 0; (triggerCls = me['trigger' + (i + 1) + 'Cls']) || i < 1; i++) { + triggerConfigs.push({ + tag: 'td', + valign: 'top', + cls: cls, + style: style, + cn: { + cls: [Ext.baseCSSPrefix + 'trigger-index-' + i, triggerBaseCls, triggerCls].join(' '), + role: 'button' + } + }); + } + triggerConfigs[0].cn.cls += ' ' + triggerBaseCls + '-first'; + + return Ext.DomHelper.markup(triggerConfigs); + }, + + disableCheck: function() { + return !this.disabled; + }, + + + beforeRender: function() { + var me = this, + triggerBaseCls = me.triggerBaseCls, + tempEl; + + + if (!me.triggerWidth) { + tempEl = Ext.getBody().createChild({ + style: 'position: absolute;', + cls: Ext.baseCSSPrefix + 'form-trigger' + }); + Ext.form.field.Trigger.prototype.triggerWidth = tempEl.getWidth(); + tempEl.remove(); + } + + me.callParent(); + + if (triggerBaseCls != Ext.baseCSSPrefix + 'form-trigger') { + + + me.addChildEls({ name: 'triggerEl', select: '.' + triggerBaseCls }); + } + + + me.lastTriggerStateFlags = me.getTriggerStateFlags(); + }, + + onRender: function() { + var me = this; + + me.callParent(arguments); + + me.doc = Ext.getDoc(); + me.initTrigger(); + }, + + + getTriggerWidth: function() { + var me = this, + totalTriggerWidth = 0; + + if (me.triggerWrap && !me.hideTrigger && !me.readOnly) { + totalTriggerWidth = me.triggerEl.getCount() * me.triggerWidth; + } + return totalTriggerWidth; + }, + + setHideTrigger: function(hideTrigger) { + if (hideTrigger != this.hideTrigger) { + this.hideTrigger = hideTrigger; + this.updateLayout(); + } + }, + + + setEditable: function(editable) { + if (editable != this.editable) { + this.editable = editable; + this.updateLayout(); + } + }, + + + setReadOnly: function(readOnly) { + var me = this, + old = me.readOnly; + + me.callParent(arguments); + if (readOnly != old) { + me.updateLayout(); + } + }, + + + initTrigger: function() { + var me = this, + triggerWrap = me.triggerWrap, + triggerEl = me.triggerEl, + disableCheck = me.disableCheck, + els, eLen, el, e, idx; + + if (me.repeatTriggerClick) { + me.triggerRepeater = new Ext.util.ClickRepeater(triggerWrap, { + preventDefault: true, + handler: me.onTriggerWrapClick, + listeners: { + mouseup: me.onTriggerWrapMouseup, + scope: me + }, + scope: me + }); + } else { + me.mon(triggerWrap, { + click: me.onTriggerWrapClick, + mouseup: me.onTriggerWrapMouseup, + scope: me + }); + } + + triggerEl.setVisibilityMode(Ext.Element.DISPLAY); + triggerEl.addClsOnOver(me.triggerBaseCls + '-over', disableCheck, me); + + els = triggerEl.elements; + eLen = els.length; + + for (e = 0; e < eLen; e++) { + el = els[e]; + idx = e+1; + el.addClsOnOver(me['trigger' + (idx) + 'Cls'] + '-over', disableCheck, me); + el.addClsOnClick(me['trigger' + (idx) + 'Cls'] + '-click', disableCheck, me); + } + + triggerEl.addClsOnClick(me.triggerBaseCls + '-click', disableCheck, me); + + }, + + + onDestroy: function() { + var me = this; + Ext.destroyMembers(me, 'triggerRepeater', 'triggerWrap', 'triggerEl'); + delete me.doc; + me.callParent(); + }, + + + onFocus: function() { + var me = this; + me.callParent(arguments); + if (!me.mimicing) { + me.bodyEl.addCls(me.wrapFocusCls); + me.mimicing = true; + me.mon(me.doc, 'mousedown', me.mimicBlur, me, { + delay: 10 + }); + if (me.monitorTab) { + me.on('specialkey', me.checkTab, me); + } + } + }, + + + checkTab: function(me, e) { + if (!this.ignoreMonitorTab && e.getKey() == e.TAB) { + this.triggerBlur(); + } + }, + + + getTriggerStateFlags: function () { + var me = this, + state = 0; + + if (me.readOnly) { + state += 1; + } + if (me.editable) { + state += 2; + } + if (me.hideTrigger) { + state += 4; + } + return state; + }, + + + onBlur: Ext.emptyFn, + + + mimicBlur: function(e) { + if (!this.isDestroyed && !this.bodyEl.contains(e.target) && this.validateBlur(e)) { + this.triggerBlur(e); + } + }, + + + triggerBlur: function(e) { + var me = this; + me.mimicing = false; + me.mun(me.doc, 'mousedown', me.mimicBlur, me); + if (me.monitorTab && me.inputEl) { + me.un('specialkey', me.checkTab, me); + } + Ext.form.field.Trigger.superclass.onBlur.call(me, e); + if (me.bodyEl) { + me.bodyEl.removeCls(me.wrapFocusCls); + } + }, + + + + validateBlur: function(e) { + return true; + }, + + + + + onTriggerWrapClick: function() { + var me = this, + targetEl, match, + triggerClickMethod, + event; + + event = arguments[me.triggerRepeater ? 1 : 0]; + if (event && !me.readOnly && !me.disabled) { + targetEl = event.getTarget('.' + me.triggerBaseCls, null); + match = targetEl && targetEl.className.match(me.triggerIndexRe); + + if (match) { + triggerClickMethod = me['onTrigger' + (parseInt(match[1], 10) + 1) + 'Click'] || me.onTriggerClick; + if (triggerClickMethod) { + triggerClickMethod.call(me, event); + } + } + } + }, + + + + + onTriggerWrapMouseup: Ext.emptyFn, + + + onTriggerClick: Ext.emptyFn + + + + +}); + + +Ext.define('Ext.form.field.Picker', { + extend: Ext.form.field.Trigger , + alias: 'widget.pickerfield', + alternateClassName: 'Ext.form.Picker', + + + + matchFieldWidth: true, + + + pickerAlign: 'tl-bl?', + + + + + openCls: Ext.baseCSSPrefix + 'pickerfield-open', + + + + + editable: true, + + + initComponent: function() { + this.callParent(); + + + this.addEvents( + + 'expand', + + 'collapse', + + 'select' + ); + }, + + + initEvents: function() { + var me = this; + me.callParent(); + + + me.keyNav = new Ext.util.KeyNav(me.inputEl, { + down: me.onDownArrow, + esc: { + handler: me.onEsc, + scope: me, + defaultEventAction: false + }, + scope: me, + forceKeyDown: true + }); + + + if (!me.editable) { + me.mon(me.inputEl, 'click', me.onTriggerClick, me); + } + + + if (Ext.isGecko) { + me.inputEl.dom.setAttribute('autocomplete', 'off'); + } + }, + + + onEsc: function(e) { + if (Ext.isIE) { + + + + + e.preventDefault(); + } + + if (this.isExpanded) { + this.collapse(); + e.stopEvent(); + } + }, + + onDownArrow: function(e) { + if (!this.isExpanded) { + + + this.onTriggerClick(); + } + }, + + + expand: function() { + var me = this, + bodyEl, picker, collapseIf; + + if (me.rendered && !me.isExpanded && !me.isDestroyed) { + me.expanding = true; + bodyEl = me.bodyEl; + picker = me.getPicker(); + collapseIf = me.collapseIf; + + + picker.show(); + me.isExpanded = true; + me.alignPicker(); + bodyEl.addCls(me.openCls); + + + me.mon(Ext.getDoc(), { + mousewheel: collapseIf, + mousedown: collapseIf, + scope: me + }); + Ext.EventManager.onWindowResize(me.alignPicker, me); + me.fireEvent('expand', me); + me.onExpand(); + delete me.expanding; + } + }, + + onExpand: Ext.emptyFn, + + + alignPicker: function() { + var me = this, + picker = me.getPicker(); + + if (me.isExpanded) { + if (me.matchFieldWidth) { + + picker.setWidth(me.bodyEl.getWidth()); + } + if (picker.isFloating()) { + me.doAlign(); + } + } + }, + + + doAlign: function(){ + var me = this, + picker = me.picker, + aboveSfx = '-above', + isAbove; + + + + me.picker.alignTo(me.triggerWrap, me.pickerAlign, me.pickerOffset); + + + isAbove = picker.el.getY() < me.inputEl.getY(); + me.bodyEl[isAbove ? 'addCls' : 'removeCls'](me.openCls + aboveSfx); + picker[isAbove ? 'addCls' : 'removeCls'](picker.baseCls + aboveSfx); + }, + + + collapse: function() { + if (this.isExpanded && !this.isDestroyed) { + var me = this, + openCls = me.openCls, + picker = me.picker, + doc = Ext.getDoc(), + collapseIf = me.collapseIf, + aboveSfx = '-above'; + + + picker.hide(); + me.isExpanded = false; + + + me.bodyEl.removeCls([openCls, openCls + aboveSfx]); + picker.el.removeCls(picker.baseCls + aboveSfx); + + + doc.un('mousewheel', collapseIf, me); + doc.un('mousedown', collapseIf, me); + Ext.EventManager.removeResizeListener(me.alignPicker, me); + me.fireEvent('collapse', me); + me.onCollapse(); + } + }, + + onCollapse: Ext.emptyFn, + + + + collapseIf: function(e) { + var me = this; + + if (!me.isDestroyed && !e.within(me.bodyEl, false, true) && !e.within(me.picker.el, false, true) && !me.isEventWithinPickerLoadMask(e)) { + me.collapse(); + } + }, + + + getPicker: function() { + var me = this; + return me.picker || (me.picker = me.createPicker()); + }, + + + createPicker: Ext.emptyFn, + + + onTriggerClick: function() { + var me = this; + if (!me.readOnly && !me.disabled) { + if (me.isExpanded) { + me.collapse(); + } else { + me.expand(); + } + me.inputEl.focus(); + } + }, + + triggerBlur: function() { + var picker = this.picker; + + this.callParent(arguments); + if (picker && picker.isVisible()) { + picker.hide(); + } + }, + + mimicBlur: function(e) { + var me = this, + picker = me.picker; + + if (!picker || !e.within(picker.el, false, true) && !me.isEventWithinPickerLoadMask(e)) { + me.callParent(arguments); + } + }, + + onDestroy : function(){ + var me = this, + picker = me.picker; + + Ext.EventManager.removeResizeListener(me.alignPicker, me); + Ext.destroy(me.keyNav); + if (picker) { + delete picker.pickerField; + picker.destroy(); + } + me.callParent(); + }, + + + isEventWithinPickerLoadMask: function(e) { + var loadMask = this.picker.loadMask; + + return loadMask ? e.within(loadMask.maskEl, false, true) || e.within(loadMask.el, false, true) : false; + } + +}); + + + +Ext.define('Ext.selection.Model', { + extend: Ext.util.Observable , + alternateClassName: 'Ext.AbstractSelectionModel', + + mixins: { + bindable: Ext.util.Bindable + }, + + + + + + allowDeselect: undefined, + + + toggleOnClick: true, + + + selected: null, + + + pruneRemoved: true, + + suspendChange: 0, + + constructor: function(cfg) { + var me = this; + + cfg = cfg || {}; + Ext.apply(me, cfg); + + me.addEvents( + + 'selectionchange', + + 'focuschange' + ); + + me.modes = { + SINGLE: true, + SIMPLE: true, + MULTI: true + }; + + + me.setSelectionMode(cfg.mode || me.mode); + + + me.selected = new Ext.util.MixedCollection(null, me.getSelectionId); + + me.callParent(arguments); + }, + + + bindStore: function(store, initial){ + var me = this; + me.mixins.bindable.bindStore.apply(me, arguments); + if(me.store && !initial) { + me.refresh(); + } + }, + + getStoreListeners: function() { + var me = this; + return { + add: me.onStoreAdd, + clear: me.onStoreClear, + bulkremove: me.onStoreRemove, + update: me.onStoreUpdate, + load: me.onStoreLoad, + idchanged: me.onModelIdChanged, + refresh: me.onStoreRefresh + }; + }, + + suspendChanges: function(){ + ++this.suspendChange; + }, + + resumeChanges: function(){ + if (this.suspendChange) { + --this.suspendChange; + } + }, + + + selectAll: function(suppressEvent) { + var me = this, + selections = me.store.getRange(), + i = 0, + len = selections.length, + start = me.getSelection().length; + + me.suspendChanges(); + for (; i < len; i++) { + me.doSelect(selections[i], true, suppressEvent); + } + me.resumeChanges(); + + if (!suppressEvent) { + me.maybeFireSelectionChange(me.getSelection().length !== start); + } + }, + + + deselectAll: function(suppressEvent) { + var me = this, + selections = me.getSelection(), + selIndexes = {}, + store = me.store, + start = selections.length, + i, l, rec; + + + + + + + + for (i = 0, l = selections.length; i < l; i++) { + rec = selections[i]; + + selIndexes[rec.internalId] = store.indexOf(rec); + } + + + + selections = Ext.Array.sort(selections, function(r1, r2){ + var idx1 = selIndexes[r1.internalId], + idx2 = selIndexes[r2.internalId]; + + + return idx1 < idx2 ? -1 : 1; + }); + + me.suspendChanges(); + me.doDeselect(selections, suppressEvent); + me.resumeChanges(); + + if (!suppressEvent) { + me.maybeFireSelectionChange(me.getSelection().length !== start); + } + }, + + + + + selectWithEvent: function(record, e) { + var me = this, + isSelected = me.isSelected(record), + shift = e.shiftKey, + ctrl = e.ctrlKey, + start = me.selectionStart, + selected = me.getSelection(), + len = selected.length, + allowDeselect = me.allowDeselect, + toDeselect, i, item; + + switch (me.selectionMode) { + case 'MULTI': + if (shift && start) { + me.selectRange(start, record, ctrl); + } else if (ctrl && isSelected) { + me.doDeselect(record, false); + } else if (ctrl) { + me.doSelect(record, true, false); + } else if (isSelected && !shift && !ctrl && len > 1) { + toDeselect = []; + + for (i = 0; i < len; ++i) { + item = selected[i]; + if (item !== record) { + toDeselect.push(item); + } + } + + me.doDeselect(toDeselect); + } else if (!isSelected) { + me.doSelect(record, false); + } + break; + case 'SIMPLE': + if (isSelected) { + me.doDeselect(record); + } else { + me.doSelect(record, true); + } + break; + case 'SINGLE': + if (allowDeselect && !ctrl) { + allowDeselect = me.toggleOnClick; + } + if (allowDeselect && isSelected) { + me.doDeselect(record); + } else { + me.doSelect(record, false); + } + break; + } + + + + + + if (!shift) { + if (me.isSelected(record)) { + me.selectionStart = record; + } else { + me.selectionStart = null; + } + } + }, + + + + + afterKeyNavigate: function(e, record) { + var me = this, + recIdx, + fromIdx, + isSelected = me.isSelected(record), + from = (me.selectionStart && me.isSelected(me.lastFocused)) ? me.selectionStart : (me.selectionStart = me.lastFocused), + key = e.getCharCode(), + isSpace = key === e.SPACE, + direction = key === e.UP || key === e.PAGE_UP ? 'up' : (key === e.DOWN || key === e.DOWN ? 'down' : null); + + switch (me.selectionMode) { + case 'MULTI': + + if (isSpace) { + + if (e.shiftKey) { + me.selectRange(from, record, e.ctrlKey); + } else { + + + if (isSelected) { + me.doDeselect(record, e.ctrlKey); + + + + me.setLastFocused(null); + me.setLastFocused(record); + } + + else { + me.doSelect(record, e.ctrlKey); + } + } + } + + + else if (e.shiftKey && from) { + + + fromIdx = me.store.indexOf(from); + recIdx = me.store.indexOf(record); + + + if (direction === 'up' && fromIdx <= recIdx) { + me.deselectRange(me.lastFocused, recIdx + 1); + } + else if (direction === 'down' && fromIdx >= recIdx) { + me.deselectRange(me.lastFocused, recIdx - 1); + } + + + else if (from !== record) { + me.selectRange(from, record, e.ctrlKey); + } + me.lastSelected = record; + me.setLastFocused(record); + } + + + else if (e.ctrlKey && isSelected) { + me.setLastFocused(record); + } + + + else if (e.ctrlKey) { + me.setLastFocused(record); + } + + + else { + me.doSelect(record, false); + } + break; + case 'SIMPLE': + if (isSelected) { + me.doDeselect(record); + } else { + me.doSelect(record, true); + } + break; + case 'SINGLE': + + if (isSpace) { + if (isSelected) { + me.doDeselect(record); + me.setLastFocused(record); + } else { + me.doSelect(record); + } + } + + + else if (e.ctrlKey) { + me.setLastFocused(record); + } + + + else if (me.allowDeselect && isSelected) { + me.doDeselect(record); + } + + + else { + me.doSelect(record, false); + } + break; + } + + + + + + if (!e.shiftKey) { + if (me.isSelected(record)) { + me.selectionStart = record; + } + } + }, + + + selectRange : function(startRow, endRow, keepExisting) { + var me = this, + store = me.store, + selected = me.selected.items, + result, i, len, toSelect, toDeselect, idx, rec; + + if (me.isLocked()){ + return; + } + + result = me.normalizeRowRange(startRow, endRow); + startRow = result[0]; + endRow = result[1]; + + toSelect = []; + for (i = startRow; i <= endRow; i++){ + if (!me.isSelected(store.getAt(i))) { + toSelect.push(store.getAt(i)); + } + } + + if (!keepExisting) { + + toDeselect = []; + me.suspendChanges(); + + for (i = 0, len = selected.length; i < len; ++i) { + rec = selected[i]; + idx = store.indexOf(rec); + if (idx < startRow || idx > endRow) { + toDeselect.push(rec) + } + } + + for (i = 0, len = toDeselect.length; i < len; ++i) { + me.doDeselect(toDeselect[i]); + } + me.resumeChanges(); + } + + me.doMultiSelect(toSelect, true); + }, + + + deselectRange : function(startRow, endRow) { + var me = this, + store = me.store, + result, i, toDeselect, record; + + if (me.isLocked()){ + return; + } + + result = me.normalizeRowRange(startRow, endRow); + startRow = result[0]; + endRow = result[1]; + + toDeselect = []; + for (i = startRow; i <= endRow; i++) { + record = store.getAt(i); + if (me.isSelected(record)) { + toDeselect.push(record); + } + } + me.doDeselect(toDeselect); + }, + + normalizeRowRange: function(startRow, endRow) { + var store = this.store, + tmp; + + if (!Ext.isNumber(startRow)) { + startRow = store.indexOf(startRow); + } + startRow = Math.max(0, startRow); + + if (!Ext.isNumber(endRow)) { + endRow = store.indexOf(endRow); + } + endRow = Math.min(endRow, store.getCount() - 1); + + + if (startRow > endRow){ + tmp = endRow; + endRow = startRow; + startRow = tmp; + } + + return [startRow, endRow]; + }, + + onModelIdChanged: function(store, model, oldId, newId, oldInternalId) { + this.selected.updateKey(oldInternalId, newId); + }, + + + select: function(records, keepExisting, suppressEvent) { + + if (Ext.isDefined(records)) { + this.doSelect(records, keepExisting, suppressEvent); + } + }, + + + deselect: function(records, suppressEvent) { + this.doDeselect(records, suppressEvent); + }, + + doSelect: function(records, keepExisting, suppressEvent) { + var me = this, + record; + + if (me.locked || !me.store) { + return; + } + if (typeof records === "number") { + record = me.store.getAt(records); + + if (!record) { + return; + } + records = [record]; + } + if (me.selectionMode == "SINGLE" && records) { + record = records.length ? records[0] : records; + me.doSingleSelect(record, suppressEvent); + } else { + me.doMultiSelect(records, keepExisting, suppressEvent); + } + }, + + doMultiSelect: function(records, keepExisting, suppressEvent) { + var me = this, + selected = me.selected, + change = false, + result, i, len, record, commit; + + if (me.locked) { + return; + } + + records = !Ext.isArray(records) ? [records] : records; + len = records.length; + if (!keepExisting && selected.getCount() > 0) { + result = me.deselectDuringSelect(records, selected.getRange(), suppressEvent); + if (result[0]) { + + + me.maybeFireSelectionChange(result[1] > 0 && !suppressEvent); + return; + } + } + + commit = function() { + selected.add(record); + change = true; + }; + + for (i = 0; i < len; i++) { + record = records[i]; + if (me.isSelected(record)) { + continue; + } + me.lastSelected = record; + + me.onSelectChange(record, true, suppressEvent, commit); + } + if (!me.preventFocus) { + me.setLastFocused(record, suppressEvent); + } + + me.maybeFireSelectionChange(change && !suppressEvent); + }, + + deselectDuringSelect: function(toSelect, selected, suppressEvent) { + var me = this, + len = selected.length, + changed = 0, + failed = false, + item, i; + + + me.suspendChanges(); + for (i = 0; i < len; ++i) { + item = selected[i]; + if (!Ext.Array.contains(toSelect, item)) { + if (me.doDeselect(item, suppressEvent)) { + ++changed; + } else { + failed = true; + } + } + } + me.resumeChanges(); + + return [failed, changed]; + }, + + + doDeselect: function(records, suppressEvent) { + var me = this, + selected = me.selected, + i = 0, + len, record, + attempted = 0, + accepted = 0, + commit; + + if (me.locked || !me.store) { + return false; + } + + if (typeof records === "number") { + + record = me.store.getAt(records); + if (!record) { + return false; + } + records = [record]; + } else if (!Ext.isArray(records)) { + records = [records]; + } + + commit = function() { + ++accepted; + selected.remove(record); + }; + + len = records.length; + + me.suspendChanges(); + for (; i < len; i++) { + record = records[i]; + if (me.isSelected(record)) { + if (me.lastSelected === record) { + me.lastSelected = selected.last(); + if (me.lastFocused === record) { + me.setLastFocused(null); + } + } + ++attempted; + me.onSelectChange(record, false, suppressEvent, commit); + } + } + me.resumeChanges(); + + + me.maybeFireSelectionChange(accepted > 0 && !suppressEvent); + return accepted === attempted; + }, + + doSingleSelect: function(record, suppressEvent) { + var me = this, + changed = false, + selected = me.selected, + commit; + + if (me.locked) { + return; + } + + + if (me.isSelected(record)) { + return; + } + + if (selected.getCount()) { + me.suspendChanges(); + if (!me.doDeselect(me.lastSelected, suppressEvent)) { + me.resumeChanges(); + return; + } + me.resumeChanges(); + } + + commit = function() { + selected.add(record); + me.lastSelected = record; + changed = true; + }; + + me.onSelectChange(record, true, suppressEvent, commit); + + if (changed) { + if (!suppressEvent && !me.preventFocus) { + me.setLastFocused(record); + } + me.maybeFireSelectionChange(!suppressEvent); + } + }, + + + setLastFocused: function(record, supressFocus) { + var me = this, + recordBeforeLast = me.lastFocused; + + + if (record !== recordBeforeLast) { + me.lastFocused = record; + me.onLastFocusChanged(recordBeforeLast, record, supressFocus); + } + }, + + + isFocused: function(record) { + return record === this.getLastFocused(); + }, + + + + maybeFireSelectionChange: function(fireEvent) { + var me = this; + if (fireEvent && !me.suspendChange) { + me.fireEvent('selectionchange', me, me.getSelection()); + } + }, + + + getLastSelected: function() { + return this.lastSelected; + }, + + getLastFocused: function() { + return this.lastFocused; + }, + + + getSelection: function() { + return this.selected.getRange(); + }, + + + getSelectionMode: function() { + return this.selectionMode; + }, + + + setSelectionMode: function(selMode) { + selMode = selMode ? selMode.toUpperCase() : 'SINGLE'; + + + this.selectionMode = this.modes[selMode] ? selMode : 'SINGLE'; + }, + + + isLocked: function() { + return this.locked; + }, + + + setLocked: function(locked) { + this.locked = !!locked; + }, + + + isRangeSelected: function(startRow, endRow) { + var me = this, + store = me.store, + i, result; + + result = me.normalizeRowRange(startRow, endRow); + startRow = result[0]; + endRow = result[1]; + + + for (i = startRow; i <= endRow; i++) { + if (!me.isSelected(store.getAt(i))) { + return false; + } + } + return true; + }, + + + isSelected: function(record) { + record = Ext.isNumber(record) ? this.store.getAt(record) : record; + return this.selected.contains(record); + }, + + + hasSelection: function() { + return this.selected.getCount() > 0; + }, + + getSelectionId: function(record){ + return record.internalId; + }, + + pruneIf: function() { + var me = this, + selected = me.selected, + toRemove = [], + len = selected.length, + i, item; + + if (me.pruneRemoved) { + for (i = 0; i < len; i++) { + item = selected.getAt(i); + if (!this.storeHasSelected(item)) { + toRemove.push(item); + } + } + if (toRemove.length) { + for (i = 0, len = toRemove.length; i < len; i++) { + selected.remove(toRemove[i]); + } + me.maybeFireSelectionChange(true); + } + } + }, + + + + + storeHasSelected: function(record) { + var store = this.store, + records, + len, id, i; + + if (record.hasId() && store.getById(record)) { + return true; + } else { + records = store.data.items; + len = records.length; + id = record.internalId; + + for (i = 0; i < len; ++i) { + if (id === records[i].internalId) { + return true; + } + } + } + return false; + }, + + refresh: function() { + var me = this, + store = me.store, + rec, + toBeSelected = [], + toBeReAdded = [], + oldSelections = me.getSelection(), + len = oldSelections.length, + selection, + change, + i = 0, + lastFocused = me.getLastFocused(); + + + if (!store) { + return; + } + + + + for (; i < len; i++) { + selection = oldSelections[i]; + if (store.indexOf(selection) !== -1) { + toBeSelected.push(selection); + } + + + else if (!me.pruneRemoved) { + + rec = store.getById(selection.getId()); + if (rec) { + toBeSelected.push(rec); + } + + else { + toBeReAdded.push(selection) + } + } + + + if (me.mode === 'SINGLE' && toBeReAdded.length) { + break; + } + } + + + + if (me.selected.getCount() != (toBeSelected.length + toBeReAdded.length)) { + change = true; + } + + me.clearSelections(); + + if (store.indexOf(lastFocused) !== -1) { + + me.setLastFocused(lastFocused, true); + } + + if (toBeSelected.length) { + + me.doSelect(toBeSelected, false, true); + } + + + if (toBeReAdded.length) { + me.selected.addAll(toBeReAdded); + + + if (!me.lastSelected) { + me.lastSelected = toBeReAdded[toBeReAdded.length - 1]; + } + } + + me.maybeFireSelectionChange(change); + }, + + + clearSelections: function() { + + this.selected.clear(); + this.lastSelected = null; + this.setLastFocused(null); + }, + + + onStoreAdd: Ext.emptyFn, + + + + onStoreClear: function() { + if (this.selected.getCount() > 0) { + this.clearSelections(); + this.maybeFireSelectionChange(true); + } + }, + + + + + onStoreRemove: function(store, records, indexes, isMove) { + var me = this; + + + if (me.selectionStart && Ext.Array.contains(records, me.selectionStart)) { + me.selectionStart = null; + } + + if (isMove || me.locked || !me.pruneRemoved) { + return; + } + me.deselectDeletedRecords(records); + }, + + + + deselectDeletedRecords: function(records) { + var me = this, + selected = me.selected, + i, length = records.length, + removed = 0, + record; + + + for (i = 0; i < length; i++) { + record = records[i]; + if (selected.remove(record)) { + if (me.lastSelected == record) { + me.lastSelected = null; + } + if (me.getLastFocused() == record) { + me.setLastFocused(null); + } + ++removed; + } + } + if (removed) { + me.maybeFireSelectionChange(true); + } + }, + + + getCount: function() { + return this.selected.getCount(); + }, + + + onUpdate: Ext.emptyFn, + + + destroy: function(){ + this.clearListeners(); + }, + + + onStoreUpdate: Ext.emptyFn, + + onStoreRefresh: Ext.emptyFn, + + + onStoreLoad: Ext.emptyFn, + + + onSelectChange: function(record, isSelected, suppressEvent, commitFn) { + var me = this, + eventName = isSelected ? 'select' : 'deselect'; + + if ((suppressEvent || me.fireEvent('before' + eventName, me, record)) !== false && + commitFn() !== false) { + + if (!suppressEvent) { + me.fireEvent(eventName, me, record); + } + } + }, + + + onLastFocusChanged: function(oldFocused, newFocused) { + this.fireEvent('focuschange', this, oldFocused, newFocused); + }, + + + onEditorKey: Ext.emptyFn, + + + beforeViewRender: function(view) { + this.views = this.views || []; + this.views.push(view); + this.bindStore(view.getStore(), true); + }, + + + bindComponent: Ext.emptyFn +}); + + +Ext.define('Ext.selection.DataViewModel', { + extend: Ext.selection.Model , + + + + deselectOnContainerClick: true, + + + enableKeyNav: true, + + constructor: function(cfg){ + this.addEvents( + + 'beforedeselect', + + + 'beforeselect', + + + 'deselect', + + + 'select' + ); + this.callParent(arguments); + }, + + bindComponent: function(view) { + var me = this, + eventListeners = { + refresh: me.refresh, + scope: me + }; + + me.view = view; + me.bindStore(view.getStore()); + + eventListeners[view.triggerEvent] = me.onItemClick; + eventListeners[view.triggerCtEvent] = me.onContainerClick; + + view.on(eventListeners); + + if (me.enableKeyNav) { + me.initKeyNav(view); + } + }, + + onUpdate: function(record){ + var view = this.view; + if (view && this.isSelected(record)) { + view.onItemSelect(record); + } + }, + + onItemClick: function(view, record, item, index, e) { + this.selectWithEvent(record, e); + }, + + onContainerClick: function() { + if (this.deselectOnContainerClick) { + this.deselectAll(); + } + }, + + initKeyNav: function(view) { + var me = this; + + if (!view.rendered) { + view.on({ + render: Ext.Function.bind(me.initKeyNav, me, [view]), + single: true + }); + return; + } + + view.el.set({ + tabIndex: -1 + }); + me.keyNav = new Ext.util.KeyNav({ + target: view.el, + ignoreInputFields: true, + down: Ext.pass(me.onNavKey, [1], me), + right: Ext.pass(me.onNavKey, [1], me), + left: Ext.pass(me.onNavKey, [-1], me), + up: Ext.pass(me.onNavKey, [-1], me), + scope: me + }); + }, + + onNavKey: function(step) { + step = step || 1; + var me = this, + view = me.view, + selected = me.getSelection()[0], + numRecords = me.view.store.getCount(), + idx; + + if (selected) { + idx = view.indexOf(view.getNode(selected)) + step; + } else { + idx = 0; + } + + if (idx < 0) { + idx = numRecords - 1; + } else if (idx >= numRecords) { + idx = 0; + } + + me.select(idx); + }, + + + onSelectChange: function(record, isSelected, suppressEvent, commitFn) { + var me = this, + view = me.view, + eventName = isSelected ? 'select' : 'deselect'; + + if ((suppressEvent || me.fireEvent('before' + eventName, me, record)) !== false && + commitFn() !== false) { + + if (view) { + if (isSelected) { + view.onItemSelect(record); + } else { + view.onItemDeselect(record); + } + } + + if (!suppressEvent) { + me.fireEvent(eventName, me, record); + } + } + }, + + onLastFocusChanged: function(oldFocus, newFocus, suppressFocus){ + var view = this.view; + if (view && !suppressFocus && newFocus) { + view.focusNode(newFocus); + this.fireEvent('focuschange', this, oldFocus, newFocus); + } + }, + + destroy: function(){ + Ext.destroy(this.keyNav); + this.callParent(); + } +}); + + +Ext.define('Ext.view.AbstractView', { + extend: Ext.Component , + + + + + + + + mixins: { + bindable: Ext.util.Bindable + }, + + inheritableStatics: { + getRecord: function(node) { + return this.getBoundView(node).getRecord(node); + }, + + getBoundView: function(node) { + return Ext.getCmp(node.boundView); + } + }, + + + + + + deferInitialRefresh: true, + + + + + itemCls: Ext.baseCSSPrefix + 'dataview-item', + + + + + + + + loadingText: 'Loading...', + + + + loadMask: true, + + + + + loadingUseMsg: true, + + + + + + selectedItemCls: Ext.baseCSSPrefix + 'item-selected', + + + + emptyText: "", + + + + deferEmptyText: true, + + + trackOver: false, + + + blockRefresh: false, + + + + + preserveScrollOnRefresh: false, + + + last: false, + + triggerEvent: 'itemclick', + triggerCtEvent: 'containerclick', + + addCmpEvents: function() { + + }, + + + initComponent : function(){ + var me = this, + isDef = Ext.isDefined, + itemTpl = me.itemTpl, + memberFn = {}; + + if (itemTpl) { + if (Ext.isArray(itemTpl)) { + + itemTpl = itemTpl.join(''); + } else if (Ext.isObject(itemTpl)) { + + memberFn = Ext.apply(memberFn, itemTpl.initialConfig); + itemTpl = itemTpl.html; + } + + if (!me.itemSelector) { + me.itemSelector = '.' + me.itemCls; + } + + itemTpl = Ext.String.format('
{1}
', me.itemCls, itemTpl); + me.tpl = new Ext.XTemplate(itemTpl, memberFn); + } + + + me.callParent(); + me.tpl = me.getTpl('tpl'); + + + if (me.overItemCls) { + me.trackOver = true; + } + + me.addEvents( + + 'beforerefresh', + + 'refresh', + + 'viewready', + + 'itemupdate', + + 'itemadd', + + 'itemremove' + ); + + me.addCmpEvents(); + + + me.store = Ext.data.StoreManager.lookup(me.store || 'ext-empty-store'); + + + if (!me.dataSource) { + me.dataSource = me.store; + } + + + me.bindStore(me.dataSource, true, 'dataSource'); + if (!me.all) { + me.all = new Ext.CompositeElementLite(); + } + + + me.scrollState = { + top: 0, + left: 0 + }; + me.on({ + scroll: me.onViewScroll, + element: 'el', + scope: me + }); + }, + + onRender: function() { + var me = this, + mask = me.loadMask, + maskStore = me.getMaskStore(), + cfg = { + target: me, + msg: me.loadingText, + msgCls: me.loadingCls, + useMsg: me.loadingUseMsg, + + + store: maskStore + }; + + me.callParent(arguments); + + if (mask && !maskStore.proxy.isSynchronous) { + + if (Ext.isObject(mask)) { + cfg = Ext.apply(cfg, mask); + } + + + + + me.loadMask = new Ext.LoadMask(cfg); + me.loadMask.on({ + scope: me, + beforeshow: me.onMaskBeforeShow, + hide: me.onMaskHide + }); + } + }, + + finishRender: function() { + var me = this; + me.callParent(arguments); + + + if (!me.up('[collapsed],[hidden]')) { + me.doFirstRefresh(me.dataSource); + } + }, + + onBoxReady: function() { + var me = this; + + me.callParent(arguments); + + + + if (!me.firstRefreshDone) { + me.doFirstRefresh(me.dataSource); + } + }, + + getMaskStore: function(){ + return this.store; + }, + + onMaskBeforeShow: function(){ + var me = this, + loadingHeight = me.loadingHeight; + + if (loadingHeight && loadingHeight > me.getHeight()) { + me.hasLoadingHeight = true; + me.oldMinHeight = me.minHeight; + me.minHeight = loadingHeight; + me.updateLayout(); + } + }, + + onMaskHide: function(){ + var me = this; + + if (!me.destroying && me.hasLoadingHeight) { + me.minHeight = me.oldMinHeight; + me.updateLayout(); + delete me.hasLoadingHeight; + } + }, + + beforeRender: function() { + this.callParent(arguments); + this.getSelectionModel().beforeViewRender(this); + }, + + afterRender: function() { + this.callParent(arguments); + + + + + this.getSelectionModel().bindComponent(this); + }, + + + getSelectionModel: function(){ + var me = this, + mode = 'SINGLE'; + + if (me.simpleSelect) { + mode = 'SIMPLE'; + } else if (me.multiSelect) { + mode = 'MULTI'; + } + + + if (!me.selModel || !me.selModel.events) { + me.selModel = new Ext.selection.DataViewModel(Ext.apply({ + allowDeselect: me.allowDeselect, + mode: mode + }, me.selModel)); + } + + if (!me.selModel.hasRelaySetup) { + me.relayEvents(me.selModel, [ + 'selectionchange', 'beforeselect', 'beforedeselect', 'select', 'deselect', 'focuschange' + ]); + me.selModel.hasRelaySetup = true; + } + + + + if (me.disableSelection) { + me.selModel.locked = true; + } + + return me.selModel; + }, + + + refresh: function() { + var me = this, + targetEl, + targetParent, + oldDisplay, + nextSibling, + dom, + records; + + if (!me.rendered || me.isDestroyed) { + return; + } + + if (!me.hasListeners.beforerefresh || me.fireEvent('beforerefresh', me) !== false) { + targetEl = me.getTargetEl(); + records = me.getViewRange(); + dom = targetEl.dom; + + + + if (!me.preserveScrollOnRefresh) { + targetParent = dom.parentNode; + oldDisplay = dom.style.display; + dom.style.display = 'none'; + nextSibling = dom.nextSibling; + targetParent.removeChild(dom); + } + + if (me.refreshCounter) { + me.clearViewEl(); + } else { + me.fixedNodes = targetEl.dom.childNodes.length; + me.refreshCounter = 1; + } + + + + + + me.tpl.append(targetEl, me.collectData(records, me.all.startIndex)); + + + + if (records.length < 1) { + + if (!this.store.loading && (!me.deferEmptyText || me.hasFirstRefresh)) { + Ext.core.DomHelper.insertHtml('beforeEnd', targetEl.dom, me.emptyText); + } + me.all.clear(); + } else { + me.collectNodes(targetEl.dom); + me.updateIndexes(0); + } + + + if (me.hasFirstRefresh) { + + if (me.refreshSelmodelOnRefresh !== false) { + me.selModel.refresh(); + } else { + + me.selModel.pruneIf(); + } + } + + me.hasFirstRefresh = true; + + if (!me.preserveScrollOnRefresh) { + targetParent.insertBefore(dom, nextSibling); + dom.style.display = oldDisplay; + } + + + this.refreshSize(); + + me.fireEvent('refresh', me); + + + + if (!me.viewReady) { + + + me.viewReady = true; + me.fireEvent('viewready', me); + } + } + }, + + + + collectNodes: function(targetEl) { + this.all.fill(Ext.query(this.getItemSelector(), Ext.getDom(targetEl)), this.all.startIndex); + }, + + getViewRange: function() { + return this.dataSource.getRange(); + }, + + + refreshSize: function() { + var sizeModel = this.getSizeModel(); + if (sizeModel.height.shrinkWrap || sizeModel.width.shrinkWrap) { + this.updateLayout(); + } + }, + + clearViewEl: function(){ + + + + + + + + + var me = this, + el = me.getTargetEl(); + + if (me.fixedNodes) { + while (el.dom.childNodes[me.fixedNodes]) { + el.dom.removeChild(el.dom.childNodes[me.fixedNodes]); + } + } else { + el.update(''); + } + me.refreshCounter++; + }, + + + onViewScroll: Ext.emptyFn, + + onIdChanged: Ext.emptyFn, + + + saveScrollState: function() { + if (this.rendered) { + var dom = this.el.dom, + state = this.scrollState; + + state.left = dom.scrollLeft; + state.top = dom.scrollTop; + } + }, + + + restoreScrollState: function() { + if (this.rendered) { + var dom = this.el.dom, + state = this.scrollState; + + dom.scrollLeft = state.left; + dom.scrollTop = state.top; + } + }, + + + prepareData: function(data, index, record) { + var associatedData, attr, hasCopied; + if (record) { + associatedData = record.getAssociatedData(); + for (attr in associatedData) { + if (associatedData.hasOwnProperty(attr)) { + + + + + if (!hasCopied) { + data = Ext.Object.chain(data); + hasCopied = true; + } + data[attr] = associatedData[attr]; + } + } + } + return data; + }, + + + collectData: function(records, startIndex){ + var data = [], + i = 0, + len = records.length, + record; + + for (; i < len; i++) { + record = records[i]; + data[i] = this.prepareData(record.data, startIndex + i, record); + } + return data; + }, + + + bufferRender : function(records, index) { + var me = this, + div = me.renderBuffer || (me.renderBuffer = document.createElement('div')); + + me.tpl.overwrite(div, me.collectData(records, index)); + return Ext.DomQuery.select(me.getItemSelector(), div); + }, + + getNodeContainer: function() { + return this.getTargetEl(); + }, + + + onUpdate : function(ds, record){ + var me = this, + index, + node; + + if (me.viewReady) { + index = me.dataSource.indexOf(record); + if (index > -1) { + node = me.bufferRender([record], index)[0]; + + if (me.getNode(record)) { + me.all.replaceElement(index, node, true); + me.updateIndexes(index, index); + + me.selModel.onUpdate(record); + if (me.hasListeners.itemupdate) { + me.fireEvent('itemupdate', record, index, node); + } + return node; + } + } + } + + }, + + + onAdd : function(store, records, index) { + var me = this, + nodes; + + if (me.rendered) { + + + if (me.all.getCount() === 0) { + me.refresh(); + nodes = me.all.slice(); + } else { + nodes = me.doAdd(records, index); + + if (me.refreshSelmodelOnRefresh !== false) { + me.selModel.refresh(); + } + me.updateIndexes(index); + + + me.refreshSize(); + } + + if (me.hasListeners.itemadd) { + me.fireEvent('itemadd', records, index, nodes); + } + } + + }, + + doAdd: function(records, index) { + var me = this, + nodes = me.bufferRender(records, index, true), + all = me.all, + count = all.getCount(), + i, l; + + if (count === 0) { + for (i = 0, l = nodes.length; i < l; i++) { + this.getNodeContainer().appendChild(nodes[i]); + } + } else if (index < count) { + if (index === 0) { + all.item(index).insertSibling(nodes, 'before', true); + } else { + all.item(index - 1).insertSibling(nodes, 'after', true); + } + } else { + all.last().insertSibling(nodes, 'after', true); + } + + all.insert(index, nodes); + return nodes; + }, + + + onRemove : function(ds, records, indexes) { + var me = this, + fireItemRemove = me.hasListeners.itemremove, + i, + record, + index; + + if (me.all.getCount()) { + if (me.dataSource.getCount() === 0) { + + if (fireItemRemove) { + for (i = indexes.length - 1; i >= 0; --i) { + me.fireEvent('itemremove', records[i], indexes[i]); + } + } + me.refresh(); + } else { + + + for (i = indexes.length - 1; i >= 0; --i) { + record = records[i]; + index = indexes[i]; + me.doRemove(record, index); + if (fireItemRemove) { + me.fireEvent('itemremove', record, index); + } + } + me.updateIndexes(indexes[0]); + } + + + this.refreshSize(); + } + }, + + + doRemove: function(record, index) { + this.all.removeElement(index, true); + }, + + + refreshNode : function(index) { + this.onUpdate(this.dataSource, this.dataSource.getAt(index)); + }, + + + updateIndexes : function(startIndex, endIndex) { + var nodes = this.all.elements, + records = this.getViewRange(), + i; + + startIndex = startIndex || 0; + endIndex = endIndex || ((endIndex === 0) ? 0 : (nodes.length - 1)); + for (i = startIndex; i <= endIndex; i++) { + nodes[i].viewIndex = i; + nodes[i].viewRecordId = records[i].internalId; + if (!nodes[i].boundView) { + nodes[i].boundView = this.id; + } + } + }, + + + getStore : function() { + return this.store; + }, + + + bindStore : function(store, initial, propName) { + var me = this; + me.mixins.bindable.bindStore.apply(me, arguments); + + + + if (!initial) { + me.getSelectionModel().bindStore(store); + } + + + + + if (me.componentLayoutCounter) { + me.doFirstRefresh(store); + } + }, + + + doFirstRefresh: function(store) { + var me = this; + + + me.firstRefreshDone = true; + + + + + + + if (store && !store.loading) { + if (me.deferInitialRefresh) { + me.applyFirstRefresh(); + } else { + me.refresh(); + } + } + }, + + applyFirstRefresh: function(){ + var me = this; + if (me.isDestroyed) { + return; + } + + + + + + + + + + if (me.up('[isCollapsingOrExpanding]')) { + Ext.Function.defer(me.applyFirstRefresh, 100, me); + } else { + Ext.Function.defer(function () { + if (!me.isDestroyed) { + me.refresh(); + } + }, 1); + } + }, + + onUnbindStore: function(store) { + this.setMaskBind(null); + }, + + onBindStore: function(store, initial, propName) { + this.setMaskBind(store); + if (!initial && propName === 'store') { + this.bindStore(store, false, 'dataSource'); + } + }, + + setMaskBind: function(store) { + var mask = this.loadMask; + if (mask && mask.bindStore) { + mask.bindStore(store); + } + }, + + getStoreListeners: function() { + var me = this; + return { + idchanged: me.onIdChanged, + refresh: me.onDataRefresh, + add: me.onAdd, + bulkremove: me.onRemove, + update: me.onUpdate, + clear: me.refresh + }; + }, + + + onDataRefresh: function() { + this.refreshView(); + }, + + refreshView: function() { + var me = this, + + + blockedByAncestor = !me.firstRefreshDone && (!me.rendered || me.up('[collapsed],[isCollapsingOrExpanding],[hidden]')); + + + + + + if (blockedByAncestor) { + me.deferInitialRefresh = false; + } else if (me.blockRefresh !== true) { + me.firstRefreshDone = true; + me.refresh(); + } + }, + + + findItemByChild: function(node){ + return Ext.fly(node).findParent(this.getItemSelector(), this.getTargetEl()); + }, + + + findTargetByEvent: function(e) { + return e.getTarget(this.getItemSelector(), this.getTargetEl()); + }, + + + + getSelectedNodes: function(){ + var nodes = [], + records = this.selModel.getSelection(), + ln = records.length, + i = 0; + + for (; i < ln; i++) { + nodes.push(this.getNode(records[i])); + } + + return nodes; + }, + + + getRecords: function(nodes) { + var records = [], + i = 0, + len = nodes.length, + data = this.dataSource.data; + + for (; i < len; i++) { + records[records.length] = data.getByKey(nodes[i].viewRecordId); + } + + return records; + }, + + + getRecord: function(node){ + return this.dataSource.data.getByKey(Ext.getDom(node).viewRecordId); + }, + + + + isSelected : function(node) { + + var r = this.getRecord(node); + return this.selModel.isSelected(r); + }, + + + select: function(records, keepExisting, suppressEvent) { + this.selModel.select(records, keepExisting, suppressEvent); + }, + + + deselect: function(records, suppressEvent) { + this.selModel.deselect(records, suppressEvent); + }, + + + getNode : function(nodeInfo) { + if ((!nodeInfo && nodeInfo !== 0) || !this.rendered) { + return null; + } + + if (Ext.isString(nodeInfo)) { + return document.getElementById(nodeInfo); + } + if (Ext.isNumber(nodeInfo)) { + return this.all.elements[nodeInfo]; + } + if (nodeInfo.isModel) { + return this.getNodeByRecord(nodeInfo); + } + return nodeInfo; + }, + + + getNodeByRecord: function(record) { + var ns = this.all.elements, + ln = ns.length, + i = 0; + + for (; i < ln; i++) { + if (ns[i].viewRecordId === record.internalId) { + return ns[i]; + } + } + + return null; + }, + + + getNodes: function(start, end) { + var all = this.all; + + if (end === undefined) { + end = all.getCount(); + } else { + end++; + } + return all.slice(start||0, end); + }, + + + indexOf: function(node) { + node = this.getNode(node); + if (!node && node !== 0) { + return -1; + } + if (Ext.isNumber(node.viewIndex)) { + return node.viewIndex; + } + return this.all.indexOf(node); + }, + + onDestroy : function() { + var me = this; + + me.all.clear(); + me.callParent(); + me.bindStore(null); + me.selModel.destroy(); + }, + + + onItemSelect: function(record) { + var node = this.getNode(record); + + if (node) { + Ext.fly(node).addCls(this.selectedItemCls); + } + }, + + + onItemDeselect: function(record) { + var node = this.getNode(record); + + if (node) { + Ext.fly(node).removeCls(this.selectedItemCls); + } + }, + + getItemSelector: function() { + return this.itemSelector; + } +}, function() { + + + + + Ext.deprecate('extjs', '4.0', function() { + Ext.view.AbstractView.override({ + + + + + + getSelectionCount : function(){ + if (Ext.global.console) { + Ext.global.console.warn("DataView: getSelectionCount will be removed, please interact with the Ext.selection.DataViewModel"); + } + return this.selModel.getSelection().length; + }, + + + getSelectedRecords : function(){ + if (Ext.global.console) { + Ext.global.console.warn("DataView: getSelectedRecords will be removed, please interact with the Ext.selection.DataViewModel"); + } + return this.selModel.getSelection(); + }, + + + + select: function(records, keepExisting, supressEvents) { + if (Ext.global.console) { + Ext.global.console.warn("DataView: select will be removed, please access select through a DataView's SelectionModel, ie: view.getSelectionModel().select()"); + } + var sm = this.getSelectionModel(); + return sm.select.apply(sm, arguments); + }, + + + clearSelections: function() { + if (Ext.global.console) { + Ext.global.console.warn("DataView: clearSelections will be removed, please access deselectAll through DataView's SelectionModel, ie: view.getSelectionModel().deselectAll()"); + } + var sm = this.getSelectionModel(); + return sm.deselectAll(); + } + }); + }); +}); + + +Ext.define('Ext.view.View', { + extend: Ext.view.AbstractView , + alternateClassName: 'Ext.DataView', + alias: 'widget.dataview', + + + + deferHighlight: Ext.isIE7m ? 100 : 0, + + + mouseOverOutBuffer: 20, + + inputTagRe: /^textarea$|^input$/i, + + inheritableStatics: { + EventMap: { + mousedown: 'MouseDown', + mouseup: 'MouseUp', + click: 'Click', + dblclick: 'DblClick', + contextmenu: 'ContextMenu', + mouseover: 'MouseOver', + mouseout: 'MouseOut', + mouseenter: 'MouseEnter', + mouseleave: 'MouseLeave', + keydown: 'KeyDown', + focus: 'Focus' + } + }, + + initComponent: function() { + var me = this; + me.callParent(); + + + if (me.mouseOverOutBuffer) { + me.handleMouseOverOrOut = + Ext.Function.createBuffered(me.handleMouseOverOrOut, me.mouseOverOutBuffer, me); + me.lastMouseOverOutEvent = new Ext.EventObjectImpl(); + } + + + else if (me.deferHighlight){ + me.setHighlightedItem = + Ext.Function.createBuffered(me.setHighlightedItem, me.deferHighlight, me); + } + }, + + addCmpEvents: function() { + this.addEvents( + + 'beforeitemmousedown', + + 'beforeitemmouseup', + + 'beforeitemmouseenter', + + 'beforeitemmouseleave', + + 'beforeitemclick', + + 'beforeitemdblclick', + + 'beforeitemcontextmenu', + + 'beforeitemkeydown', + + 'itemmousedown', + + 'itemmouseup', + + 'itemmouseenter', + + 'itemmouseleave', + + 'itemclick', + + 'itemdblclick', + + 'itemcontextmenu', + + 'itemkeydown', + + 'beforecontainermousedown', + + 'beforecontainermouseup', + + 'beforecontainermouseover', + + 'beforecontainermouseout', + + 'beforecontainerclick', + + 'beforecontainerdblclick', + + 'beforecontainercontextmenu', + + 'beforecontainerkeydown', + + 'containermouseup', + + 'containermouseover', + + 'containermouseout', + + 'containerclick', + + 'containerdblclick', + + 'containercontextmenu', + + 'containerkeydown', + + + 'selectionchange', + + 'beforeselect', + + 'beforedeselect', + + 'select', + + 'deselect', + + 'focuschange', + + + 'highlightitem', + + + 'unhighlightitem' + ); + }, + + getFocusEl: function() { + return this.getTargetEl(); + }, + + + afterRender: function(){ + var me = this, + onMouseOverOut = me.mouseOverOutBuffer ? me.onMouseOverOut : me.handleMouseOverOrOut; + + me.callParent(); + me.mon(me.getTargetEl(), { + scope: me, + + freezeEvent: true, + click: me.handleEvent, + mousedown: me.handleEvent, + mouseup: me.handleEvent, + dblclick: me.handleEvent, + contextmenu: me.handleEvent, + keydown: me.handleEvent, + mouseover: onMouseOverOut, + mouseout: onMouseOverOut + }); + }, + + onMouseOverOut: function(e) { + var me = this; + + + + me.lastMouseOverOutEvent.setEvent(e.browserEvent, true); + me.handleMouseOverOrOut(me.lastMouseOverOutEvent); + }, + + handleMouseOverOrOut: function(e) { + var me = this, + isMouseout = e.type === 'mouseout', + method = isMouseout ? e.getRelatedTarget : e.getTarget, + nowOverItem = method.call(e, me.itemSelector) || method.call(e, me.dataRowSelector); + + + if (!me.mouseOverItem || nowOverItem !== me.mouseOverItem) { + + + if (me.mouseOverItem) { + e.item = me.mouseOverItem; + e.newType = 'mouseleave'; + me.handleEvent(e); + } + + + me.mouseOverItem = nowOverItem; + if (me.mouseOverItem) { + e.item = me.mouseOverItem; + e.newType = 'mouseenter'; + me.handleEvent(e); + } + } + }, + + handleEvent: function(e) { + var me = this, + key = e.type == 'keydown' && e.getKey(); + + if (me.processUIEvent(e) !== false) { + me.processSpecialEvent(e); + } + + + + + if (key === e.SPACE) { + if (!me.inputTagRe.test(e.getTarget().tagName)) { + e.stopEvent(); + } + } + }, + + + processItemEvent: Ext.emptyFn, + processContainerEvent: Ext.emptyFn, + processSpecialEvent: Ext.emptyFn, + + processUIEvent: function(e) { + + + + if (!Ext.getBody().isAncestor(e.target)) { + return; + } + + var me = this, + item = e.getTarget(me.getItemSelector(), me.getTargetEl()), + map = this.statics().EventMap, + index, record, + type = e.type, + newType = e.type, + sm; + + + + if (e.newType) { + newType = e.newType; + item = e.item; + } + + + + if (!item && type == 'keydown') { + sm = me.getSelectionModel(); + record = sm.lastFocused || sm.getLastSelected(); + if (record) { + item = me.getNode(record, true); + } + } + + if (item) { + if (!record) { + record = me.getRecord(item); + } + index = me.indexInStore ? me.indexInStore(record) : me.indexOf(item); + + + + + if (!record || me.processItemEvent(record, item, index, e) === false) { + return false; + } + + if ( + (me['onBeforeItem' + map[newType]](record, item, index, e) === false) || + (me.fireEvent('beforeitem' + newType, me, record, item, index, e) === false) || + (me['onItem' + map[newType]](record, item, index, e) === false) + ) { + return false; + } + + me.fireEvent('item' + newType, me, record, item, index, e); + } + else { + if ( + (me.processContainerEvent(e) === false) || + (me['onBeforeContainer' + map[type]](e) === false) || + (me.fireEvent('beforecontainer' + type, me, e) === false) || + (me['onContainer' + map[type]](e) === false) + ) { + return false; + } + + me.fireEvent('container' + type, me, e); + } + + return true; + }, + + + onItemMouseEnter: function(record, item, index, e) { + if (this.trackOver) { + this.highlightItem(item); + } + }, + + + onItemMouseLeave : function(record, item, index, e) { + if (this.trackOver) { + this.clearHighlight(); + } + }, + + + onItemMouseDown: Ext.emptyFn, + onItemMouseUp: Ext.emptyFn, + onItemFocus: Ext.emptyFn, + onItemClick: Ext.emptyFn, + onItemDblClick: Ext.emptyFn, + onItemContextMenu: Ext.emptyFn, + onItemKeyDown: Ext.emptyFn, + onBeforeItemMouseDown: Ext.emptyFn, + onBeforeItemMouseUp: Ext.emptyFn, + onBeforeItemFocus: Ext.emptyFn, + onBeforeItemMouseEnter: Ext.emptyFn, + onBeforeItemMouseLeave: Ext.emptyFn, + onBeforeItemClick: Ext.emptyFn, + onBeforeItemDblClick: Ext.emptyFn, + onBeforeItemContextMenu: Ext.emptyFn, + onBeforeItemKeyDown: Ext.emptyFn, + + + onContainerMouseDown: Ext.emptyFn, + onContainerMouseUp: Ext.emptyFn, + onContainerMouseOver: Ext.emptyFn, + onContainerMouseOut: Ext.emptyFn, + onContainerClick: Ext.emptyFn, + onContainerDblClick: Ext.emptyFn, + onContainerContextMenu: Ext.emptyFn, + onContainerKeyDown: Ext.emptyFn, + onBeforeContainerMouseDown: Ext.emptyFn, + onBeforeContainerMouseUp: Ext.emptyFn, + onBeforeContainerMouseOver: Ext.emptyFn, + onBeforeContainerMouseOut: Ext.emptyFn, + onBeforeContainerClick: Ext.emptyFn, + onBeforeContainerDblClick: Ext.emptyFn, + onBeforeContainerContextMenu: Ext.emptyFn, + onBeforeContainerKeyDown: Ext.emptyFn, + + + setHighlightedItem: function(item){ + var me = this, + highlighted = me.highlightedItem, + overItemCls = me.overItemCls, + beforeOverItemCls = me.beforeOverItemCls, + previous; + + if (highlighted != item){ + if (highlighted) { + Ext.fly(highlighted).removeCls(overItemCls); + previous = highlighted.previousSibling; + if (beforeOverItemCls && previous) { + Ext.fly(previous).removeCls(beforeOverItemCls); + } + me.fireEvent('unhighlightitem', me, highlighted); + } + + me.highlightedItem = item; + + if (item) { + Ext.fly(item).addCls(me.overItemCls); + previous = item.previousSibling; + if (beforeOverItemCls && previous) { + Ext.fly(previous).addCls(beforeOverItemCls); + } + me.fireEvent('highlightitem', me, item); + } + } + }, + + + highlightItem: function(item) { + this.setHighlightedItem(item); + }, + + + clearHighlight: function() { + this.setHighlightedItem(undefined); + }, + + onUpdate: function(store, record){ + var me = this, + node, + newNode, + highlighted; + + if (me.viewReady) { + node = me.getNode(record); + newNode = me.callParent(arguments); + highlighted = me.highlightedItem; + + if (highlighted && highlighted === node) { + delete me.highlightedItem; + if (newNode) { + me.highlightItem(newNode); + } + } + } + }, + + refresh: function() { + this.clearHighlight(); + this.callParent(arguments); + }, + + + focusNode: function(rec){ + var me = this, + node = me.getNode(rec, true), + el = me.el, + adjustmentY = 0, + adjustmentX = 0, + elRegion = el.getRegion(), + nodeRegion; + + + + elRegion.bottom = elRegion.top + el.dom.clientHeight; + elRegion.right = elRegion.left + el.dom.clientWidth; + if (node) { + nodeRegion = Ext.fly(node).getRegion(); + + if (nodeRegion.top < elRegion.top) { + adjustmentY = nodeRegion.top - elRegion.top; + + } else if (nodeRegion.bottom > elRegion.bottom) { + adjustmentY = nodeRegion.bottom - elRegion.bottom; + } + + + if (nodeRegion.left < elRegion.left) { + adjustmentX = nodeRegion.left - elRegion.left; + + } else if (nodeRegion.right > elRegion.right) { + adjustmentX = nodeRegion.right - elRegion.right; + } + + if (adjustmentX || adjustmentY) { + me.scrollBy(adjustmentX, adjustmentY, false); + } + el.focus(); + } + } +}); + + +Ext.define('Ext.layout.component.BoundList', { + extend: Ext.layout.component.Auto , + alias: 'layout.boundlist', + + type: 'component', + + beginLayout: function(ownerContext) { + var me = this, + owner = me.owner, + toolbar = owner.pagingToolbar; + + me.callParent(arguments); + + if (owner.floating) { + ownerContext.savedXY = owner.getXY(); + + + owner.setXY([0, -9999]); + } + + if (toolbar) { + ownerContext.toolbarContext = ownerContext.context.getCmp(toolbar); + } + ownerContext.listContext = ownerContext.getEl('listEl'); + }, + + beginLayoutCycle: function(ownerContext){ + var owner = this.owner; + + this.callParent(arguments); + if (ownerContext.heightModel.auto) { + + + + owner.el.setHeight('auto'); + owner.listEl.setHeight('auto'); + } + }, + + getLayoutItems: function() { + var toolbar = this.owner.pagingToolbar; + return toolbar ? [toolbar] : []; + }, + + isValidParent: function() { + + + return true; + }, + + finishedLayout: function(ownerContext) { + var xy = ownerContext.savedXY; + + this.callParent(arguments); + if (xy) { + this.owner.setXY(xy); + } + }, + + measureContentWidth: function(ownerContext) { + return this.owner.listEl.getWidth(); + }, + + measureContentHeight: function(ownerContext) { + return this.owner.listEl.getHeight(); + }, + + publishInnerHeight: function(ownerContext, height) { + var toolbar = ownerContext.toolbarContext, + toolbarHeight = 0; + + if (toolbar) { + toolbarHeight = toolbar.getProp('height'); + } + + if (toolbarHeight === undefined) { + this.done = false; + } else { + ownerContext.listContext.setHeight(height - ownerContext.getFrameInfo().height - toolbarHeight); + } + }, + + calculateOwnerHeightFromContentHeight: function(ownerContext){ + var height = this.callParent(arguments), + toolbar = ownerContext.toolbarContext; + + if (toolbar) { + height += toolbar.getProp('height'); + } + return height; + } +}); + + +Ext.define('Ext.toolbar.TextItem', { + extend: Ext.toolbar.Item , + + alias: 'widget.tbtext', + alternateClassName: 'Ext.Toolbar.TextItem', + + + text: '', + + renderTpl: '{text}', + + baseCls: Ext.baseCSSPrefix + 'toolbar-text', + + beforeRender : function() { + var me = this; + + me.callParent(); + + Ext.apply(me.renderData, { + text: me.text + }); + }, + + + setText : function(text) { + var me = this; + me.text = text; + if (me.rendered) { + me.el.update(text); + me.updateLayout(); + } + } +}); + + +Ext.define('Ext.form.field.Spinner', { + extend: Ext.form.field.Trigger , + alias: 'widget.spinnerfield', + alternateClassName: 'Ext.form.Spinner', + + + trigger1Cls: Ext.baseCSSPrefix + 'form-spinner-up', + trigger2Cls: Ext.baseCSSPrefix + 'form-spinner-down', + + + spinUpEnabled: true, + + + spinDownEnabled: true, + + + keyNavEnabled: true, + + + mouseWheelEnabled: true, + + + repeatTriggerClick: true, + + + onSpinUp: Ext.emptyFn, + + + onSpinDown: Ext.emptyFn, + + triggerTpl: '' + + '
' + + '
' + + '' + + '', + + initComponent: function() { + this.callParent(); + + this.addEvents( + + 'spin', + + + 'spinup', + + + 'spindown' + ); + }, + + + onRender: function() { + var me = this, + triggers; + + me.callParent(arguments); + triggers = me.triggerEl; + + + me.spinUpEl = triggers.item(0); + + me.spinDownEl = triggers.item(1); + + me.triggerCell = me.spinUpEl.parent(); + + + if (me.keyNavEnabled) { + me.spinnerKeyNav = new Ext.util.KeyNav(me.inputEl, { + scope: me, + up: me.spinUp, + down: me.spinDown + }); + } + + + if (me.mouseWheelEnabled) { + me.mon(me.bodyEl, 'mousewheel', me.onMouseWheel, me); + } + }, + + getSubTplMarkup: function(values) { + var me = this, + childElCls = values.childElCls, + field = Ext.form.field.Base.prototype.getSubTplMarkup.apply(me, arguments); + + return '' + + '' + + '' + + me.getTriggerMarkup() + + '
' + field + '
'; + }, + + getTriggerMarkup: function() { + return this.getTpl('triggerTpl').apply(this.getTriggerData()); + }, + + getTriggerData: function(){ + var me = this, + hideTrigger = (me.readOnly || me.hideTrigger); + + return { + triggerCls: Ext.baseCSSPrefix + 'trigger-cell', + triggerStyle: hideTrigger ? 'display:none' : '', + spinnerUpCls: !me.spinUpEnabled ? me.trigger1Cls + '-disabled': '', + spinnerDownCls: !me.spinDownEnabled ? me.trigger2Cls + '-disabled': '' + }; + }, + + + getTriggerWidth: function() { + var me = this, + totalTriggerWidth = 0; + + if (me.triggerWrap && !me.hideTrigger && !me.readOnly) { + totalTriggerWidth = me.triggerWidth; + } + return totalTriggerWidth; + }, + + + onTrigger1Click: function() { + this.spinUp(); + }, + + + onTrigger2Click: function() { + this.spinDown(); + }, + + + + onTriggerWrapMouseup: function() { + this.inputEl.focus(); + }, + + + spinUp: function() { + var me = this; + if (me.spinUpEnabled && !me.disabled) { + me.fireEvent('spin', me, 'up'); + me.fireEvent('spinup', me); + me.onSpinUp(); + } + }, + + + spinDown: function() { + var me = this; + if (me.spinDownEnabled && !me.disabled) { + me.fireEvent('spin', me, 'down'); + me.fireEvent('spindown', me); + me.onSpinDown(); + } + }, + + + setSpinUpEnabled: function(enabled) { + var me = this, + wasEnabled = me.spinUpEnabled; + me.spinUpEnabled = enabled; + if (wasEnabled !== enabled && me.rendered) { + me.spinUpEl[enabled ? 'removeCls' : 'addCls'](me.trigger1Cls + '-disabled'); + } + }, + + + setSpinDownEnabled: function(enabled) { + var me = this, + wasEnabled = me.spinDownEnabled; + me.spinDownEnabled = enabled; + if (wasEnabled !== enabled && me.rendered) { + me.spinDownEl[enabled ? 'removeCls' : 'addCls'](me.trigger2Cls + '-disabled'); + } + }, + + + onMouseWheel: function(e) { + var me = this, + delta; + if (me.hasFocus) { + delta = e.getWheelDelta(); + if (delta > 0) { + me.spinUp(); + } else if (delta < 0) { + me.spinDown(); + } + e.stopEvent(); + } + }, + + onDestroy: function() { + Ext.destroyMembers(this, 'spinnerKeyNav', 'spinUpEl', 'spinDownEl'); + this.callParent(); + } + +}); + + +Ext.define('Ext.form.field.Number', { + extend: Ext.form.field.Spinner , + alias: 'widget.numberfield', + alternateClassName: ['Ext.form.NumberField', 'Ext.form.Number'], + + + + + + allowExponential: true, + + + allowDecimals : true, + + + + decimalSeparator : '.', + + + + + submitLocaleSeparator: true, + + + + + decimalPrecision : 2, + + + + minValue: Number.NEGATIVE_INFINITY, + + + maxValue: Number.MAX_VALUE, + + + step: 1, + + + + minText : 'The minimum value for this field is {0}', + + + + + maxText : 'The maximum value for this field is {0}', + + + + + nanText : '{0} is not a valid number', + + + + + negativeText : 'The value cannot be negative', + + + + baseChars : '0123456789', + + + autoStripChars: false, + + initComponent: function() { + var me = this; + me.callParent(); + + me.setMinValue(me.minValue); + me.setMaxValue(me.maxValue); + }, + + + getErrors: function(value) { + var me = this, + errors = me.callParent(arguments), + format = Ext.String.format, + num; + + value = Ext.isDefined(value) ? value : this.processRawValue(this.getRawValue()); + + if (value.length < 1) { + return errors; + } + + value = String(value).replace(me.decimalSeparator, '.'); + + if(isNaN(value)){ + errors.push(format(me.nanText, value)); + } + + num = me.parseValue(value); + + if (me.minValue === 0 && num < 0) { + errors.push(this.negativeText); + } + else if (num < me.minValue) { + errors.push(format(me.minText, me.minValue)); + } + + if (num > me.maxValue) { + errors.push(format(me.maxText, me.maxValue)); + } + + + return errors; + }, + + rawToValue: function(rawValue) { + var value = this.fixPrecision(this.parseValue(rawValue)); + if (value === null) { + value = rawValue || null; + } + return value; + }, + + valueToRaw: function(value) { + var me = this, + decimalSeparator = me.decimalSeparator; + value = me.parseValue(value); + value = me.fixPrecision(value); + value = Ext.isNumber(value) ? value : parseFloat(String(value).replace(decimalSeparator, '.')); + value = isNaN(value) ? '' : String(value).replace('.', decimalSeparator); + return value; + }, + + getSubmitValue: function() { + var me = this, + value = me.callParent(); + + if (!me.submitLocaleSeparator) { + value = value.replace(me.decimalSeparator, '.'); + } + return value; + }, + + onChange: function() { + this.toggleSpinners(); + this.callParent(arguments); + }, + + toggleSpinners: function(){ + var me = this, + value = me.getValue(), + valueIsNull = value === null, + enabled; + + + + if (me.spinUpEnabled || me.spinUpDisabledByToggle) { + enabled = valueIsNull || value < me.maxValue; + me.setSpinUpEnabled(enabled, true); + } + + + if (me.spinDownEnabled || me.spinDownDisabledByToggle) { + enabled = valueIsNull || value > me.minValue; + me.setSpinDownEnabled(enabled, true); + } + }, + + + setMinValue : function(value) { + var me = this, + allowed; + + me.minValue = Ext.Number.from(value, Number.NEGATIVE_INFINITY); + me.toggleSpinners(); + + + if (me.disableKeyFilter !== true) { + allowed = me.baseChars + ''; + + if (me.allowExponential) { + allowed += me.decimalSeparator + 'e+-'; + } + else { + if (me.allowDecimals) { + allowed += me.decimalSeparator; + } + if (me.minValue < 0) { + allowed += '-'; + } + } + + allowed = Ext.String.escapeRegex(allowed); + me.maskRe = new RegExp('[' + allowed + ']'); + if (me.autoStripChars) { + me.stripCharsRe = new RegExp('[^' + allowed + ']', 'gi'); + } + } + }, + + + setMaxValue: function(value) { + this.maxValue = Ext.Number.from(value, Number.MAX_VALUE); + this.toggleSpinners(); + }, + + + parseValue : function(value) { + value = parseFloat(String(value).replace(this.decimalSeparator, '.')); + return isNaN(value) ? null : value; + }, + + + fixPrecision : function(value) { + var me = this, + nan = isNaN(value), + precision = me.decimalPrecision; + + if (nan || !value) { + return nan ? '' : value; + } else if (!me.allowDecimals || precision <= 0) { + precision = 0; + } + + return parseFloat(Ext.Number.toFixed(parseFloat(value), precision)); + }, + + beforeBlur : function() { + var me = this, + v = me.parseValue(me.getRawValue()); + + if (!Ext.isEmpty(v)) { + me.setValue(v); + } + }, + + setSpinUpEnabled: function(enabled, internal){ + this.callParent(arguments); + if (!internal) { + delete this.spinUpDisabledByToggle; + } else { + this.spinUpDisabledByToggle = !enabled; + } + }, + + onSpinUp: function() { + var me = this; + + if (!me.readOnly) { + me.setSpinValue(Ext.Number.constrain(me.getValue() + me.step, me.minValue, me.maxValue)); + } + }, + + setSpinDownEnabled: function(enabled, internal){ + this.callParent(arguments); + if (!internal) { + delete this.spinDownDisabledByToggle; + } else { + this.spinDownDisabledByToggle = !enabled; + } + }, + + onSpinDown: function() { + var me = this; + + if (!me.readOnly) { + me.setSpinValue(Ext.Number.constrain(me.getValue() - me.step, me.minValue, me.maxValue)); + } + }, + + setSpinValue: function(value) { + var me = this, + len; + + if (me.enforceMaxLength) { + + + if (me.fixPrecision(value).toString().length > me.maxLength) { + return; + } + } + me.setValue(value); + } +}); + + +Ext.define('Ext.toolbar.Paging', { + extend: Ext.toolbar.Toolbar , + alias: 'widget.pagingtoolbar', + alternateClassName: 'Ext.PagingToolbar', + + mixins: { + bindable: Ext.util.Bindable + }, + + + + displayInfo: false, + + + prependButtons: false, + + + + displayMsg : 'Displaying {0} - {1} of {2}', + + + + + emptyMsg : 'No data to display', + + + + + beforePageText : 'Page', + + + + + afterPageText : 'of {0}', + + + + + firstText : 'First Page', + + + + + prevText : 'Previous Page', + + + + + nextText : 'Next Page', + + + + + lastText : 'Last Page', + + + + + refreshText : 'Refresh', + + + + inputItemWidth : 30, + + + getPagingItems: function() { + var me = this; + + return [{ + itemId: 'first', + tooltip: me.firstText, + overflowText: me.firstText, + iconCls: Ext.baseCSSPrefix + 'tbar-page-first', + disabled: true, + handler: me.moveFirst, + scope: me + },{ + itemId: 'prev', + tooltip: me.prevText, + overflowText: me.prevText, + iconCls: Ext.baseCSSPrefix + 'tbar-page-prev', + disabled: true, + handler: me.movePrevious, + scope: me + }, + '-', + me.beforePageText, + { + xtype: 'numberfield', + itemId: 'inputItem', + name: 'inputItem', + cls: Ext.baseCSSPrefix + 'tbar-page-number', + allowDecimals: false, + minValue: 1, + hideTrigger: true, + enableKeyEvents: true, + keyNavEnabled: false, + selectOnFocus: true, + submitValue: false, + + isFormField: false, + width: me.inputItemWidth, + margins: '-1 2 3 2', + listeners: { + scope: me, + keydown: me.onPagingKeyDown, + blur: me.onPagingBlur + } + },{ + xtype: 'tbtext', + itemId: 'afterTextItem', + text: Ext.String.format(me.afterPageText, 1) + }, + '-', + { + itemId: 'next', + tooltip: me.nextText, + overflowText: me.nextText, + iconCls: Ext.baseCSSPrefix + 'tbar-page-next', + disabled: true, + handler: me.moveNext, + scope: me + },{ + itemId: 'last', + tooltip: me.lastText, + overflowText: me.lastText, + iconCls: Ext.baseCSSPrefix + 'tbar-page-last', + disabled: true, + handler: me.moveLast, + scope: me + }, + '-', + { + itemId: 'refresh', + tooltip: me.refreshText, + overflowText: me.refreshText, + iconCls: Ext.baseCSSPrefix + 'tbar-loading', + handler: me.doRefresh, + scope: me + }]; + }, + + initComponent : function(){ + var me = this, + pagingItems = me.getPagingItems(), + userItems = me.items || me.buttons || []; + + if (me.prependButtons) { + me.items = userItems.concat(pagingItems); + } else { + me.items = pagingItems.concat(userItems); + } + delete me.buttons; + + if (me.displayInfo) { + me.items.push('->'); + me.items.push({xtype: 'tbtext', itemId: 'displayItem'}); + } + + me.callParent(); + + me.addEvents( + + 'change', + + + 'beforechange' + ); + me.on('beforerender', me.onLoad, me, {single: true}); + + me.bindStore(me.store || 'ext-empty-store', true); + }, + + updateInfo : function(){ + var me = this, + displayItem = me.child('#displayItem'), + store = me.store, + pageData = me.getPageData(), + count, msg; + + if (displayItem) { + count = store.getCount(); + if (count === 0) { + msg = me.emptyMsg; + } else { + msg = Ext.String.format( + me.displayMsg, + pageData.fromRecord, + pageData.toRecord, + pageData.total + ); + } + displayItem.setText(msg); + } + }, + + + onLoad : function(){ + var me = this, + pageData, + currPage, + pageCount, + afterText, + count, + isEmpty, + item; + + count = me.store.getCount(); + isEmpty = count === 0; + if (!isEmpty) { + pageData = me.getPageData(); + currPage = pageData.currentPage; + pageCount = pageData.pageCount; + afterText = Ext.String.format(me.afterPageText, isNaN(pageCount) ? 1 : pageCount); + } else { + currPage = 0; + pageCount = 0; + afterText = Ext.String.format(me.afterPageText, 0); + } + + Ext.suspendLayouts(); + item = me.child('#afterTextItem'); + if (item) { + item.setText(afterText); + } + item = me.getInputItem(); + if (item) { + item.setDisabled(isEmpty).setValue(currPage); + } + me.setChildDisabled('#first', currPage === 1 || isEmpty); + me.setChildDisabled('#prev', currPage === 1 || isEmpty); + me.setChildDisabled('#next', currPage === pageCount || isEmpty); + me.setChildDisabled('#last', currPage === pageCount || isEmpty); + me.setChildDisabled('#refresh', false); + me.updateInfo(); + Ext.resumeLayouts(true); + + if (me.rendered) { + me.fireEvent('change', me, pageData); + } + }, + + setChildDisabled: function(selector, disabled){ + var item = this.child(selector); + if (item) { + item.setDisabled(disabled); + } + }, + + + getPageData : function(){ + var store = this.store, + totalCount = store.getTotalCount(); + + return { + total : totalCount, + currentPage : store.currentPage, + pageCount: Math.ceil(totalCount / store.pageSize), + fromRecord: ((store.currentPage - 1) * store.pageSize) + 1, + toRecord: Math.min(store.currentPage * store.pageSize, totalCount) + + }; + }, + + + onLoadError : function(){ + if (!this.rendered) { + return; + } + this.setChildDisabled('#refresh', false); + }, + + getInputItem: function(){ + return this.child('#inputItem'); + }, + + + readPageFromInput : function(pageData){ + var inputItem = this.getInputItem(), + pageNum = false, + v; + + if (inputItem) { + v = inputItem.getValue(); + pageNum = parseInt(v, 10); + if (!v || isNaN(pageNum)) { + inputItem.setValue(pageData.currentPage); + return false; + } + } + return pageNum; + }, + + onPagingFocus : function(){ + var inputItem = this.getInputItem(); + if (inputItem) { + inputItem.select(); + } + }, + + + onPagingBlur : function(e){ + var inputItem = this.getInputItem(), + curPage; + + if (inputItem) { + curPage = this.getPageData().currentPage; + inputItem.setValue(curPage); + } + }, + + + onPagingKeyDown : function(field, e){ + var me = this, + k = e.getKey(), + pageData = me.getPageData(), + increment = e.shiftKey ? 10 : 1, + pageNum; + + if (k == e.RETURN) { + e.stopEvent(); + pageNum = me.readPageFromInput(pageData); + if (pageNum !== false) { + pageNum = Math.min(Math.max(1, pageNum), pageData.pageCount); + if(me.fireEvent('beforechange', me, pageNum) !== false){ + me.store.loadPage(pageNum); + } + } + } else if (k == e.HOME || k == e.END) { + e.stopEvent(); + pageNum = k == e.HOME ? 1 : pageData.pageCount; + field.setValue(pageNum); + } else if (k == e.UP || k == e.PAGE_UP || k == e.DOWN || k == e.PAGE_DOWN) { + e.stopEvent(); + pageNum = me.readPageFromInput(pageData); + if (pageNum) { + if (k == e.DOWN || k == e.PAGE_DOWN) { + increment *= -1; + } + pageNum += increment; + if (pageNum >= 1 && pageNum <= pageData.pageCount) { + field.setValue(pageNum); + } + } + } + }, + + + beforeLoad : function(){ + if (this.rendered) { + this.setChildDisabled('#refresh', true); + } + }, + + + moveFirst : function(){ + if (this.fireEvent('beforechange', this, 1) !== false){ + this.store.loadPage(1); + } + }, + + + movePrevious : function(){ + var me = this, + prev = me.store.currentPage - 1; + + if (prev > 0) { + if (me.fireEvent('beforechange', me, prev) !== false) { + me.store.previousPage(); + } + } + }, + + + moveNext : function(){ + var me = this, + total = me.getPageData().pageCount, + next = me.store.currentPage + 1; + + if (next <= total) { + if (me.fireEvent('beforechange', me, next) !== false) { + me.store.nextPage(); + } + } + }, + + + moveLast : function(){ + var me = this, + last = me.getPageData().pageCount; + + if (me.fireEvent('beforechange', me, last) !== false) { + me.store.loadPage(last); + } + }, + + + doRefresh : function(){ + var me = this, + current = me.store.currentPage; + + if (me.fireEvent('beforechange', me, current) !== false) { + me.store.loadPage(current); + } + }, + + getStoreListeners: function() { + return { + beforeload: this.beforeLoad, + load: this.onLoad, + exception: this.onLoadError + }; + }, + + + unbind : function(store){ + this.bindStore(null); + }, + + + bind : function(store){ + this.bindStore(store); + }, + + + onDestroy : function(){ + this.unbind(); + this.callParent(); + } +}); + + +Ext.define('Ext.view.BoundList', { + extend: Ext.view.View , + alias: 'widget.boundlist', + alternateClassName: 'Ext.BoundList', + + + mixins: { + queryable: Ext.Queryable + }, + + + pageSize: 0, + + + + + + + baseCls: Ext.baseCSSPrefix + 'boundlist', + itemCls: Ext.baseCSSPrefix + 'boundlist-item', + listItemCls: '', + shadow: false, + trackOver: true, + refreshed: 0, + + + deferInitialRefresh: false, + + componentLayout: 'boundlist', + + childEls: [ + 'listEl' + ], + + renderTpl: [ + '
', + '{%', + 'var me=values.$comp, pagingToolbar=me.pagingToolbar;', + 'if (pagingToolbar) {', + 'pagingToolbar.ownerLayout = me.componentLayout;', + 'Ext.DomHelper.generateMarkup(pagingToolbar.getRenderTree(), out);', + '}', + '%}', + { + disableFormats: true + } + ], + + + + initComponent: function() { + var me = this, + baseCls = me.baseCls, + itemCls = me.itemCls; + + me.selectedItemCls = baseCls + '-selected'; + if (me.trackOver) { + me.overItemCls = baseCls + '-item-over'; + } + me.itemSelector = "." + itemCls; + + if (me.floating) { + me.addCls(baseCls + '-floating'); + } + + if (!me.tpl) { + + + me.tpl = new Ext.XTemplate( + '
    ', + '
  • ' + me.getInnerTpl(me.displayField) + '
  • ', + '
' + ); + } else if (!me.tpl.isTemplate) { + me.tpl = new Ext.XTemplate(me.tpl); + } + + if (me.pageSize) { + me.pagingToolbar = me.createPagingToolbar(); + } + + me.callParent(); + }, + + beforeRender: function() { + var me = this; + + me.callParent(arguments); + + + + if (me.up('menu')) { + me.addCls(Ext.baseCSSPrefix + 'menu'); + } + }, + + getRefOwner: function() { + return this.pickerField || this.callParent(); + }, + + getRefItems: function() { + return this.pagingToolbar ? [ this.pagingToolbar ] : []; + }, + + createPagingToolbar: function() { + return Ext.widget('pagingtoolbar', { + id: this.id + '-paging-toolbar', + pageSize: this.pageSize, + store: this.dataSource, + border: false, + ownerCt: this, + ownerLayout: this.getComponentLayout() + }); + }, + + + + finishRenderChildren: function () { + var toolbar = this.pagingToolbar; + + this.callParent(arguments); + + if (toolbar) { + toolbar.finishRender(); + } + }, + + refresh: function(){ + var me = this, + tpl = me.tpl, + toolbar = me.pagingToolbar, + rendered = me.rendered; + + + tpl.field = me.pickerField; + tpl.store = me.store; + me.callParent(); + tpl.field = tpl.store = null; + + + + if (rendered && toolbar && toolbar.rendered && !me.preserveScrollOnRefresh) { + me.el.appendChild(toolbar.el); + } + + + + if (rendered && Ext.isIE6 && Ext.isStrict) { + me.listEl.repaint(); + } + }, + + bindStore : function(store, initial) { + var toolbar = this.pagingToolbar; + + this.callParent(arguments); + if (toolbar) { + toolbar.bindStore(store, initial); + } + }, + + getTargetEl: function() { + return this.listEl || this.el; + }, + + + getInnerTpl: function(displayField) { + return '{' + displayField + '}'; + }, + + onDestroy: function() { + Ext.destroyMembers(this, 'pagingToolbar', 'listEl'); + this.callParent(); + } +}); + + +Ext.define('Ext.view.BoundListKeyNav', { + extend: Ext.util.KeyNav , + + + + + constructor: function(el, config) { + var me = this; + me.boundList = config.boundList; + me.callParent([el, Ext.apply({}, config, me.defaultHandlers)]); + }, + + defaultHandlers: { + up: function() { + var me = this, + boundList = me.boundList, + allItems = boundList.all, + oldItem = boundList.highlightedItem, + oldItemIdx = oldItem ? boundList.indexOf(oldItem) : -1, + newItemIdx = oldItemIdx > 0 ? oldItemIdx - 1 : allItems.getCount() - 1; + me.highlightAt(newItemIdx); + }, + + down: function() { + var me = this, + boundList = me.boundList, + allItems = boundList.all, + oldItem = boundList.highlightedItem, + oldItemIdx = oldItem ? boundList.indexOf(oldItem) : -1, + newItemIdx = oldItemIdx < allItems.getCount() - 1 ? oldItemIdx + 1 : 0; + me.highlightAt(newItemIdx); + }, + + pageup: function() { + + }, + + pagedown: function() { + + }, + + home: function() { + this.highlightAt(0); + }, + + end: function() { + var me = this; + me.highlightAt(me.boundList.all.getCount() - 1); + }, + + enter: function(e) { + this.selectHighlighted(e); + } + }, + + + highlightAt: function(index) { + var boundList = this.boundList, + item = boundList.all.item(index); + if (item) { + item = item.dom; + boundList.highlightItem(item); + boundList.getTargetEl().scrollChildIntoView(item, false); + } + }, + + + selectHighlighted: function(e) { + var me = this, + boundList = me.boundList, + highlighted = boundList.highlightedItem, + selModel = boundList.getSelectionModel(); + if (highlighted) { + selModel.selectWithEvent(boundList.getRecord(highlighted), e); + } + } + +}); + + +Ext.define('Ext.layout.component.field.ComboBox', { + extend: Ext.layout.component.field.Trigger , + alias: 'layout.combobox', + + + type: 'combobox', + + startingWidth: null, + + getTextWidth: function () { + var me = this, + owner = me.owner, + store = owner.store, + field = owner.displayField, + storeLn = store.data.length, + value = '', + i = 0, n = 0, ln, item, width; + + for (; i < storeLn; i++) { + item = store.getAt(i).data[field]; + ln = item.length; + + if (ln > n) { + n = ln; + value = item; + } + } + + width = Math.max(me.callParent(arguments), owner.inputEl.getTextWidth(value + owner.growAppend)); + + + + if (!me.startingWidth || owner.removingRecords) { + me.startingWidth = width; + + + + if (width < owner.growMin) { + owner.defaultListConfig.minWidth = owner.growMin; + } + + owner.removingRecords = false; + } + + + return (width < me.startingWidth) ? me.startingWidth : width; + } +}); + + +Ext.define('Ext.form.field.ComboBox', { + extend: Ext.form.field.Picker , + + alternateClassName: 'Ext.form.ComboBox', + alias: ['widget.combobox', 'widget.combo'], + mixins: { + bindable: Ext.util.Bindable + }, + + componentLayout: 'combobox', + + + triggerCls: Ext.baseCSSPrefix + 'form-arrow-trigger', + + + hiddenName: '', + + + + + hiddenDataCls: Ext.baseCSSPrefix + 'hide-display ' + Ext.baseCSSPrefix + 'form-data-hidden', + + + fieldSubTpl: [ + '', + ' value="{[Ext.util.Format.htmlEncode(values.value)]}"
', + ' name="{name}"', + ' placeholder="{placeholder}"', + ' size="{size}"', + ' maxlength="{maxLength}"', + ' readonly="readonly"', + ' disabled="disabled"', + ' tabIndex="{tabIdx}"', + ' style="{fieldStyle}"', + '/>', + { + compiled: true, + disableFormats: true + } + ], + + getSubTplData: function(){ + var me = this; + Ext.applyIf(me.subTplData, { + hiddenDataCls: me.hiddenDataCls + }); + return me.callParent(arguments); + }, + + afterRender: function(){ + var me = this; + me.callParent(arguments); + me.setHiddenValue(me.value); + }, + + + + + multiSelect: false, + + + + delimiter: ', ', + + + + displayField: 'text', + + + + + triggerAction: 'all', + + + allQuery: '', + + + queryParam: 'query', + + + queryMode: 'remote', + + + queryCaching: true, + + + pageSize: 0, + + + + + + + anyMatch: false, + + + caseSensitive: false, + + + autoSelect: true, + + + typeAhead: false, + + + typeAheadDelay: 250, + + + selectOnTab: true, + + + forceSelection: false, + + + growToLongestValue: true, + + + + + + + + + defaultListConfig: { + loadingHeight: 70, + minWidth: 70, + maxHeight: 300, + shadow: 'sides' + }, + + + + + + + ignoreSelection: 0, + + + removingRecords: null, + + + resizeComboToGrow: function () { + var me = this; + return me.grow && me.growToLongestValue; + }, + + initComponent: function() { + var me = this, + isDefined = Ext.isDefined, + store = me.store, + transform = me.transform, + transformSelect, isLocalMode; + + Ext.applyIf(me.renderSelectors, { + hiddenDataEl: '.' + me.hiddenDataCls.split(' ').join('.') + }); + + + this.addEvents( + + 'beforequery', + + + 'select', + + + 'beforeselect', + + + 'beforedeselect' + ); + + + if (transform) { + transformSelect = Ext.getDom(transform); + if (transformSelect) { + if (!me.store) { + store = Ext.Array.map(Ext.Array.from(transformSelect.options), function(option){ + return [option.value, option.text]; + }); + } + if (!me.name) { + me.name = transformSelect.name; + } + if (!('value' in me)) { + me.value = transformSelect.value; + } + } + } + + me.bindStore(store || 'ext-empty-store', true); + store = me.store; + if (store.autoCreated) { + me.queryMode = 'local'; + me.valueField = me.displayField = 'field1'; + if (!store.expanded) { + me.displayField = 'field2'; + } + } + + if (!isDefined(me.valueField)) { + me.valueField = me.displayField; + } + + isLocalMode = me.queryMode === 'local'; + if (!isDefined(me.queryDelay)) { + me.queryDelay = isLocalMode ? 10 : 500; + } + if (!isDefined(me.minChars)) { + me.minChars = isLocalMode ? 0 : 4; + } + + if (!me.displayTpl) { + me.displayTpl = new Ext.XTemplate( + '' + + '{[typeof values === "string" ? values : values["' + me.displayField + '"]]}' + + '' + me.delimiter + '' + + '' + ); + } else if (Ext.isString(me.displayTpl)) { + me.displayTpl = new Ext.XTemplate(me.displayTpl); + } + + me.callParent(); + + me.doQueryTask = new Ext.util.DelayedTask(me.doRawQuery, me); + + + if (me.store.getCount() > 0) { + me.setValue(me.value); + } + + + if (transformSelect) { + me.render(transformSelect.parentNode, transformSelect); + Ext.removeNode(transformSelect); + delete me.renderTo; + } + }, + + + getStore : function(){ + return this.store; + }, + + beforeBlur: function() { + this.doQueryTask.cancel(); + this.assertValue(); + }, + + + assertValue: function() { + var me = this, + value = me.getRawValue(), + rec, currentValue; + + if (me.forceSelection) { + if (me.multiSelect) { + + + if (value !== me.getDisplayValue()) { + me.setValue(me.lastSelection); + } + } else { + + + rec = me.findRecordByDisplay(value); + if (rec) { + currentValue = me.value; + + + if (!me.findRecordByValue(currentValue)) { + me.select(rec, true); + } + } else { + me.setValue(me.lastSelection); + } + } + } + me.collapse(); + }, + + onTypeAhead: function() { + var me = this, + displayField = me.displayField, + record = me.store.findRecord(displayField, me.getRawValue()), + boundList = me.getPicker(), + newValue, len, selStart; + + if (record) { + newValue = record.get(displayField); + len = newValue.length; + selStart = me.getRawValue().length; + + boundList.highlightItem(boundList.getNode(record)); + + if (selStart !== 0 && selStart !== len) { + me.setRawValue(newValue); + me.selectText(selStart, newValue.length); + } + } + }, + + + + resetToDefault: Ext.emptyFn, + + beforeReset: function() { + this.callParent(); + + + if (this.queryFilter && !this.queryFilter.disabled) { + this.queryFilter.disabled = true; + this.store.filter(); + } + }, + + onUnbindStore: function(store) { + var me = this, + picker = me.picker; + + + if (me.queryFilter) { + me.store.removeFilter(me.queryFilter); + } + if (!store && picker) { + picker.bindStore(null); + } + }, + + onBindStore: function(store, initial) { + var picker = this.picker; + if (!initial) { + this.resetToDefault(); + } + + if (picker) { + picker.bindStore(store); + } + }, + + getStoreListeners: function() { + var me = this; + + return { + beforeload: me.onBeforeLoad, + clear: me.onClear, + datachanged: me.onDataChanged, + load: me.onLoad, + exception: me.onException, + remove: me.onRemove + }; + }, + + onBeforeLoad: function(){ + + + + ++this.ignoreSelection; + }, + + onDataChanged: function() { + var me = this; + + if (me.resizeComboToGrow()) { + me.updateLayout(); + } + }, + + onClear: function() { + var me = this; + + if (me.resizeComboToGrow()) { + me.removingRecords = true; + me.onDataChanged(); + } + }, + + onRemove: function() { + var me = this; + + if (me.resizeComboToGrow()) { + me.removingRecords = true; + } + }, + + onException: function(){ + if (this.ignoreSelection > 0) { + --this.ignoreSelection; + } + this.collapse(); + }, + + onLoad: function(store, records, success) { + var me = this; + + if (me.ignoreSelection > 0) { + --me.ignoreSelection; + } + + + if (success && !store.lastOptions.rawQuery) { + + + + if (me.value == null) { + + if (me.store.getCount()) { + me.doAutoSelect(); + } else { + + me.setValue(me.value); + } + } else { + me.setValue(me.value); + } + } + }, + + + doRawQuery: function() { + this.doQuery(this.getRawValue(), false, true); + }, + + + doQuery: function(queryString, forceAll, rawQuery) { + var me = this, + + + queryPlan = me.beforeQuery({ + query: queryString || '', + rawQuery: rawQuery, + forceAll: forceAll, + combo: me, + cancel: false + }); + + + if (queryPlan === false || queryPlan.cancel) { + return false; + } + + + if (me.queryCaching && queryPlan.query === me.lastQuery) { + me.expand(); + } + + + else { + me.lastQuery = queryPlan.query; + + if (me.queryMode === 'local') { + me.doLocalQuery(queryPlan); + + } else { + me.doRemoteQuery(queryPlan); + } + } + + return true; + }, + + + beforeQuery: function(queryPlan) { + var me = this; + + + if (me.fireEvent('beforequery', queryPlan) === false) { + queryPlan.cancel = true; + } + + + else if (!queryPlan.cancel) { + + + if (queryPlan.query.length < me.minChars && !queryPlan.forceAll) { + queryPlan.cancel = true; + } + } + return queryPlan; + }, + + doLocalQuery: function(queryPlan) { + var me = this, + queryString = queryPlan.query; + + + if (!me.queryFilter) { + + me.queryFilter = new Ext.util.Filter({ + id: me.id + '-query-filter', + anyMatch: me.anyMatch, + caseSensitive: me.caseSensitive, + root: 'data', + property: me.displayField + }); + me.store.addFilter(me.queryFilter, false); + } + + + if (queryString || !queryPlan.forceAll) { + me.queryFilter.disabled = false; + me.queryFilter.setValue(me.enableRegEx ? new RegExp(queryString) : queryString); + } + + + else { + me.queryFilter.disabled = true; + } + + + me.store.filter(); + + + if (me.store.getCount()) { + me.expand(); + } else { + me.collapse(); + } + + me.afterQuery(queryPlan); + }, + + doRemoteQuery: function(queryPlan) { + var me = this, + loadCallback = function() { + me.afterQuery(queryPlan); + }; + + + me.expand(); + + + + if (me.pageSize) { + + me.loadPage(1, { + rawQuery: queryPlan.rawQuery, + callback: loadCallback + }); + } else { + me.store.load({ + params: me.getParams(queryPlan.query), + rawQuery: queryPlan.rawQuery, + callback: loadCallback + }); + } + }, + + + afterQuery: function(queryPlan) { + var me = this; + + if (me.store.getCount()) { + if (me.typeAhead) { + me.doTypeAhead(); + } + + + if (me.getRawValue() !== me.getDisplayValue()) { + me.ignoreSelection++; + me.picker.getSelectionModel().deselectAll(); + me.ignoreSelection--; + } + + if (queryPlan.rawQuery) { + me.syncSelection(); + if (me.picker && !me.picker.getSelectionModel().hasSelection()) { + me.doAutoSelect(); + } + } else { + me.doAutoSelect(); + } + } + }, + + loadPage: function(pageNum, options) { + this.store.loadPage(pageNum, Ext.apply({ + params: this.getParams(this.lastQuery) + }, options)); + }, + + onPageChange: function(toolbar, newPage){ + + this.loadPage(newPage); + return false; + }, + + + getParams: function(queryString) { + var params = {}, + param = this.queryParam; + + if (param) { + params[param] = queryString; + } + return params; + }, + + + doAutoSelect: function() { + var me = this, + picker = me.picker, + lastSelected, itemNode; + if (picker && me.autoSelect && me.store.getCount() > 0) { + + lastSelected = picker.getSelectionModel().lastSelected; + itemNode = picker.getNode(lastSelected || 0); + if (itemNode) { + picker.highlightItem(itemNode); + picker.listEl.scrollChildIntoView(itemNode, false); + } + } + }, + + doTypeAhead: function() { + if (!this.typeAheadTask) { + this.typeAheadTask = new Ext.util.DelayedTask(this.onTypeAhead, this); + } + if (this.lastKey != Ext.EventObject.BACKSPACE && this.lastKey != Ext.EventObject.DELETE) { + this.typeAheadTask.delay(this.typeAheadDelay); + } + }, + + onTriggerClick: function() { + var me = this; + if (!me.readOnly && !me.disabled) { + if (me.isExpanded) { + me.collapse(); + } else { + me.onFocus({}); + if (me.triggerAction === 'all') { + me.doQuery(me.allQuery, true); + } else if (me.triggerAction === 'last') { + me.doQuery(me.lastQuery, true); + } else { + me.doQuery(me.getRawValue(), false, true); + } + } + me.inputEl.focus(); + } + }, + + onPaste: function(){ + var me = this; + + if (!me.readOnly && !me.disabled && me.editable) { + me.doQueryTask.delay(me.queryDelay); + } + }, + + + onKeyUp: function(e, t) { + var me = this, + key = e.getKey(); + + if (!me.readOnly && !me.disabled && me.editable) { + me.lastKey = key; + + + + + if (!e.isSpecialKey() || key == e.BACKSPACE || key == e.DELETE) { + me.doQueryTask.delay(me.queryDelay); + } + } + + if (me.enableKeyEvents) { + me.callParent(arguments); + } + }, + + initEvents: function() { + var me = this; + me.callParent(); + + + if (!me.enableKeyEvents) { + me.mon(me.inputEl, 'keyup', me.onKeyUp, me); + } + me.mon(me.inputEl, 'paste', me.onPaste, me); + }, + + onDestroy: function() { + Ext.destroy(this.listKeyNav); + this.bindStore(null); + this.callParent(); + }, + + + + onAdded: function() { + var me = this; + me.callParent(arguments); + if (me.picker) { + me.picker.ownerCt = me.up('[floating]'); + me.picker.registerWithOwnerCt(); + } + }, + + createPicker: function() { + var me = this, + picker, + pickerCfg = Ext.apply({ + xtype: 'boundlist', + pickerField: me, + selModel: { + mode: me.multiSelect ? 'SIMPLE' : 'SINGLE' + }, + floating: true, + hidden: true, + store: me.store, + displayField: me.displayField, + focusOnToFront: false, + pageSize: me.pageSize, + tpl: me.tpl + }, me.listConfig, me.defaultListConfig); + + picker = me.picker = Ext.widget(pickerCfg); + if (me.pageSize) { + picker.pagingToolbar.on('beforechange', me.onPageChange, me); + } + + me.mon(picker, { + itemclick: me.onItemClick, + refresh: me.onListRefresh, + scope: me + }); + + me.mon(picker.getSelectionModel(), { + beforeselect: me.onBeforeSelect, + beforedeselect: me.onBeforeDeselect, + selectionchange: me.onListSelectionChange, + scope: me + }); + + return picker; + }, + + alignPicker: function(){ + var me = this, + picker = me.getPicker(), + heightAbove = me.getPosition()[1] - Ext.getBody().getScroll().top, + heightBelow = Ext.Element.getViewHeight() - heightAbove - me.getHeight(), + space = Math.max(heightAbove, heightBelow); + + + if (picker.height) { + delete picker.height; + picker.updateLayout(); + } + + if (picker.getHeight() > space - 5) { + picker.setHeight(space - 5); + } + me.callParent(); + }, + + onListRefresh: function() { + + if (!this.expanding) { + this.alignPicker(); + } + this.syncSelection(); + }, + + onItemClick: function(picker, record){ + + var me = this, + selection = me.picker.getSelectionModel().getSelection(), + valueField = me.valueField; + + if (!me.multiSelect && selection.length) { + if (record.get(valueField) === selection[0].get(valueField)) { + + me.displayTplData = [record.data]; + me.setRawValue(me.getDisplayValue()); + me.collapse(); + } + } + }, + + onBeforeSelect: function(list, record) { + return this.fireEvent('beforeselect', this, record, record.index); + }, + + onBeforeDeselect: function(list, record) { + return this.fireEvent('beforedeselect', this, record, record.index); + }, + + onListSelectionChange: function(list, selectedRecords) { + var me = this, + isMulti = me.multiSelect, + hasRecords = selectedRecords.length > 0; + + + if (!me.ignoreSelection && me.isExpanded) { + if (!isMulti) { + Ext.defer(me.collapse, 1, me); + } + + if (isMulti || hasRecords) { + me.setValue(selectedRecords, false); + } + if (hasRecords) { + me.fireEvent('select', me, selectedRecords); + } + me.inputEl.focus(); + } + }, + + + onExpand: function() { + var me = this, + keyNav = me.listKeyNav, + selectOnTab = me.selectOnTab, + picker = me.getPicker(); + + + if (keyNav) { + keyNav.enable(); + } else { + keyNav = me.listKeyNav = new Ext.view.BoundListKeyNav(this.inputEl, { + boundList: picker, + forceKeyDown: true, + tab: function(e) { + if (selectOnTab) { + this.selectHighlighted(e); + me.triggerBlur(); + } + + return true; + }, + enter: function(e){ + var selModel = picker.getSelectionModel(), + count = selModel.getCount(); + + this.selectHighlighted(e); + + + + if (!me.multiSelect && count === selModel.getCount()) { + me.collapse(); + } + } + }); + } + + + if (selectOnTab) { + me.ignoreMonitorTab = true; + } + + Ext.defer(keyNav.enable, 1, keyNav); + me.inputEl.focus(); + }, + + + onCollapse: function() { + var me = this, + keyNav = me.listKeyNav; + if (keyNav) { + keyNav.disable(); + me.ignoreMonitorTab = false; + } + }, + + + select: function(r, assert) { + var me = this, + picker = me.picker, + doSelect = true, + fireSelect; + + if (r && r.isModel && assert === true && picker) { + fireSelect = !picker.getSelectionModel().isSelected(r); + } + + me.setValue(r, true); + + + if (fireSelect) { + me.fireEvent('select', me, r); + } + }, + + + findRecord: function(field, value) { + var ds = this.store, + idx = ds.findExact(field, value); + return idx !== -1 ? ds.getAt(idx) : false; + }, + + + findRecordByValue: function(value) { + return this.findRecord(this.valueField, value); + }, + + + findRecordByDisplay: function(value) { + return this.findRecord(this.displayField, value); + }, + + + setValue: function(value, doSelect) { + var me = this, + valueNotFoundText = me.valueNotFoundText, + inputEl = me.inputEl, + i, len, record, + dataObj, + matchedRecords = [], + displayTplData = [], + processedValue = []; + + if (me.store.loading) { + + me.value = value; + me.setHiddenValue(me.value); + return me; + } + + + value = Ext.Array.from(value); + + + for (i = 0, len = value.length; i < len; i++) { + record = value[i]; + if (!record || !record.isModel) { + record = me.findRecordByValue(record); + } + + if (record) { + matchedRecords.push(record); + displayTplData.push(record.data); + processedValue.push(record.get(me.valueField)); + } + + + else { + + + if (!me.forceSelection) { + processedValue.push(value[i]); + dataObj = {}; + dataObj[me.displayField] = value[i]; + displayTplData.push(dataObj); + + } + + else if (Ext.isDefined(valueNotFoundText)) { + displayTplData.push(valueNotFoundText); + } + } + } + + + me.setHiddenValue(processedValue); + me.value = me.multiSelect ? processedValue : processedValue[0]; + if (!Ext.isDefined(me.value)) { + me.value = null; + } + me.displayTplData = displayTplData; + me.lastSelection = me.valueModels = matchedRecords; + + if (inputEl && me.emptyText && !Ext.isEmpty(value)) { + inputEl.removeCls(me.emptyCls); + } + + + me.setRawValue(me.getDisplayValue()); + me.checkChange(); + + if (doSelect !== false) { + me.syncSelection(); + } + me.applyEmptyText(); + + return me; + }, + + + setHiddenValue: function(values){ + var me = this, + name = me.hiddenName, + i, + dom, childNodes, input, valueCount, childrenCount; + + if (!me.hiddenDataEl || !name) { + return; + } + values = Ext.Array.from(values); + dom = me.hiddenDataEl.dom; + childNodes = dom.childNodes; + input = childNodes[0]; + valueCount = values.length; + childrenCount = childNodes.length; + + if (!input && valueCount > 0) { + me.hiddenDataEl.update(Ext.DomHelper.markup({ + tag: 'input', + type: 'hidden', + name: name + })); + childrenCount = 1; + input = dom.firstChild; + } + while (childrenCount > valueCount) { + dom.removeChild(childNodes[0]); + -- childrenCount; + } + while (childrenCount < valueCount) { + dom.appendChild(input.cloneNode(true)); + ++ childrenCount; + } + for (i = 0; i < valueCount; i++) { + childNodes[i].value = values[i]; + } + }, + + + getDisplayValue: function() { + return this.displayTpl.apply(this.displayTplData); + }, + + getValue: function() { + + + + var me = this, + picker = me.picker, + rawValue = me.getRawValue(), + value = me.value; + + if (me.getDisplayValue() !== rawValue) { + value = rawValue; + me.value = me.displayTplData = me.valueModels = null; + if (picker) { + me.ignoreSelection++; + picker.getSelectionModel().deselectAll(); + me.ignoreSelection--; + } + } + + return value; + }, + + getSubmitValue: function() { + var value = this.getValue(); + + + if (Ext.isEmpty(value)) { + value = ''; + } + return value; + }, + + isEqual: function(v1, v2) { + var fromArray = Ext.Array.from, + i, len; + + v1 = fromArray(v1); + v2 = fromArray(v2); + len = v1.length; + + if (len !== v2.length) { + return false; + } + + for(i = 0; i < len; i++) { + if (v2[i] !== v1[i]) { + return false; + } + } + + return true; + }, + + + clearValue: function() { + this.setValue([]); + }, + + + syncSelection: function() { + var me = this, + picker = me.picker, + selection, selModel, + values = me.valueModels || [], + vLen = values.length, v, value; + + if (picker) { + + selection = []; + for (v = 0; v < vLen; v++) { + value = values[v]; + + if (value && value.isModel && me.store.indexOf(value) >= 0) { + selection.push(value); + } + } + + + me.ignoreSelection++; + selModel = picker.getSelectionModel(); + selModel.deselectAll(); + if (selection.length) { + selModel.select(selection, undefined, true); + } + me.ignoreSelection--; + } + }, + + onEditorTab: function(e){ + var keyNav = this.listKeyNav; + + if (this.selectOnTab && keyNav) { + keyNav.selectHighlighted(e); + } + } +}); + + +Ext.define('Ext.picker.Month', { + extend: Ext.Component , + + + + + + + alias: 'widget.monthpicker', + alternateClassName: 'Ext.MonthPicker', + + childEls: [ + 'bodyEl', 'prevEl', 'nextEl', 'buttonsEl', 'monthEl', 'yearEl' + ], + + renderTpl: [ + '
', + '
', + '', + '
', + + '{.}', + '
', + '
', + '
', + '
', + '
', + '
', + + '', + '
', + '
', + + '', + '
', + '
', + '', + '
', + + '{.}', + '
', + '
', + '
', + '
', + '
', + '', + '
{%', + 'var me=values.$comp, okBtn=me.okBtn, cancelBtn=me.cancelBtn;', + 'okBtn.ownerLayout = cancelBtn.ownerLayout = me.componentLayout;', + 'okBtn.ownerCt = cancelBtn.ownerCt = me;', + 'Ext.DomHelper.generateMarkup(okBtn.getRenderTree(), out);', + 'Ext.DomHelper.generateMarkup(cancelBtn.getRenderTree(), out);', + '%}
', + '
' + ], + + + + okText: 'OK', + + + + + cancelText: 'Cancel', + + + + baseCls: Ext.baseCSSPrefix + 'monthpicker', + + + showButtons: true, + + + + + + measureWidth: 35, + measureMaxHeight: 20, + + + smallCls: Ext.baseCSSPrefix + 'monthpicker-small', + + + totalYears: 10, + yearOffset: 5, + monthOffset: 6, + + + + initComponent: function(){ + var me = this; + + me.selectedCls = me.baseCls + '-selected'; + me.addEvents( + + 'cancelclick', + + + 'monthclick', + + + 'monthdblclick', + + + 'okclick', + + + 'select', + + + 'yearclick', + + + 'yeardblclick' + ); + if (me.small) { + me.addCls(me.smallCls); + } + me.setValue(me.value); + me.activeYear = me.getYear(new Date().getFullYear() - 4, -4); + + if (me.showButtons) { + me.okBtn = new Ext.button.Button({ + text: me.okText, + handler: me.onOkClick, + scope: me + }); + me.cancelBtn = new Ext.button.Button({ + text: me.cancelText, + handler: me.onCancelClick, + scope: me + }); + } + + this.callParent(); + }, + + + + beforeRender: function(){ + var me = this, + i = 0, + months = [], + shortName = Ext.Date.getShortMonthName, + monthLen = me.monthOffset, + margin = me.monthMargin, + style = ''; + + me.callParent(); + + for (; i < monthLen; ++i) { + months.push(shortName(i), shortName(i + monthLen)); + } + + if (Ext.isDefined(margin)) { + style = 'margin: 0 ' + margin + 'px;'; + } + + Ext.apply(me.renderData, { + months: months, + years: me.getYears(), + showButtons: me.showButtons, + monthStyle: style + }); + }, + + + + afterRender: function(){ + var me = this, + body = me.bodyEl, + buttonsEl = me.buttonsEl; + + me.callParent(); + + me.mon(body, 'click', me.onBodyClick, me); + me.mon(body, 'dblclick', me.onBodyClick, me); + + + me.years = body.select('.' + me.baseCls + '-year a'); + me.months = body.select('.' + me.baseCls + '-month a'); + + me.backRepeater = new Ext.util.ClickRepeater(me.prevEl, { + handler: Ext.Function.bind(me.adjustYear, me, [-me.totalYears]) + }); + + me.prevEl.addClsOnOver(me.baseCls + '-yearnav-prev-over'); + me.nextRepeater = new Ext.util.ClickRepeater(me.nextEl, { + handler: Ext.Function.bind(me.adjustYear, me, [me.totalYears]) + }); + me.nextEl.addClsOnOver(me.baseCls + '-yearnav-next-over'); + me.updateBody(); + + if (!Ext.isDefined(me.monthMargin)) { + Ext.picker.Month.prototype.monthMargin = me.calculateMonthMargin(); + } + }, + + calculateMonthMargin: function(){ + + + + + var me = this, + monthEl = me.monthEl, + months = me.months, + first = months.first(), + itemMargin = first.getMargin('l'); + + while (itemMargin && me.getLargest() > me.measureMaxHeight) { + --itemMargin; + months.setStyle('margin', '0 ' + itemMargin + 'px'); + } + return itemMargin; + }, + + getLargest: function(months){ + var largest = 0; + this.months.each(function(item){ + var h = item.getHeight(); + if (h > largest) { + largest = h; + } + }); + return largest; + + }, + + + setValue: function(value){ + var me = this, + active = me.activeYear, + offset = me.monthOffset, + year, + index; + + if (!value) { + me.value = [null, null]; + } else if (Ext.isDate(value)) { + me.value = [value.getMonth(), value.getFullYear()]; + } else { + me.value = [value[0], value[1]]; + } + + if (me.rendered) { + year = me.value[1]; + if (year !== null) { + if ((year < active || year > active + me.yearOffset)) { + me.activeYear = year - me.yearOffset + 1; + } + } + me.updateBody(); + } + + return me; + }, + + + getValue: function(){ + return this.value; + }, + + + hasSelection: function(){ + var value = this.value; + return value[0] !== null && value[1] !== null; + }, + + + getYears: function(){ + var me = this, + offset = me.yearOffset, + start = me.activeYear, + end = start + offset, + i = start, + years = []; + + for (; i < end; ++i) { + years.push(i, i + offset); + } + + return years; + }, + + + updateBody: function(){ + var me = this, + years = me.years, + months = me.months, + yearNumbers = me.getYears(), + cls = me.selectedCls, + value = me.getYear(null), + month = me.value[0], + monthOffset = me.monthOffset, + year, + yearItems, y, yLen, el; + + if (me.rendered) { + years.removeCls(cls); + months.removeCls(cls); + + yearItems = years.elements; + yLen = yearItems.length; + + for (y = 0; y < yLen; y++) { + el = Ext.fly(yearItems[y]); + + year = yearNumbers[y]; + el.dom.innerHTML = year; + if (year == value) { + el.addCls(cls); + } + } + if (month !== null) { + if (month < monthOffset) { + month = month * 2; + } else { + month = (month - monthOffset) * 2 + 1; + } + months.item(month).addCls(cls); + } + } + }, + + + getYear: function(defaultValue, offset) { + var year = this.value[1]; + offset = offset || 0; + return year === null ? defaultValue : year + offset; + }, + + + onBodyClick: function(e, t) { + var me = this, + isDouble = e.type == 'dblclick'; + + if (e.getTarget('.' + me.baseCls + '-month')) { + e.stopEvent(); + me.onMonthClick(t, isDouble); + } else if (e.getTarget('.' + me.baseCls + '-year')) { + e.stopEvent(); + me.onYearClick(t, isDouble); + } + }, + + + adjustYear: function(offset){ + if (typeof offset != 'number') { + offset = this.totalYears; + } + this.activeYear += offset; + this.updateBody(); + }, + + + onOkClick: function(){ + this.fireEvent('okclick', this, this.value); + }, + + + onCancelClick: function(){ + this.fireEvent('cancelclick', this); + }, + + + onMonthClick: function(target, isDouble){ + var me = this; + me.value[0] = me.resolveOffset(me.months.indexOf(target), me.monthOffset); + me.updateBody(); + me.fireEvent('month' + (isDouble ? 'dbl' : '') + 'click', me, me.value); + me.fireEvent('select', me, me.value); + }, + + + onYearClick: function(target, isDouble){ + var me = this; + me.value[1] = me.activeYear + me.resolveOffset(me.years.indexOf(target), me.yearOffset); + me.updateBody(); + me.fireEvent('year' + (isDouble ? 'dbl' : '') + 'click', me, me.value); + me.fireEvent('select', me, me.value); + + }, + + + resolveOffset: function(index, offset){ + if (index % 2 === 0) { + return (index / 2); + } else { + return offset + Math.floor(index / 2); + } + }, + + + + beforeDestroy: function(){ + var me = this; + me.years = me.months = null; + Ext.destroyMembers(me, 'backRepeater', 'nextRepeater', 'okBtn', 'cancelBtn'); + me.callParent(); + }, + + + + finishRenderChildren: function () { + var me = this; + + this.callParent(arguments); + + if (this.showButtons) { + me.okBtn.finishRender(); + me.cancelBtn.finishRender(); + } + }, + + onDestroy: function() { + Ext.destroyMembers(this, 'okBtn', 'cancelBtn'); + this.callParent(); + } + +}); + + +Ext.define('Ext.picker.Date', { + extend: Ext.Component , + + + + + + + + + + + alias: 'widget.datepicker', + alternateClassName: 'Ext.DatePicker', + + childEls: [ + 'innerEl', 'eventEl', 'prevEl', 'nextEl', 'middleBtnEl', 'footerEl' + ], + + border: true, + + renderTpl: [ + '
', + '', + '', + '', + '', + '', + '', + '', + '', + '', + '{#:this.isEndOfWeek}', + '', + '', + '', + '
', + '
{.:this.firstInitial}
', + '
', + + '', + '
', + '', + '', + '', + '
', + { + firstInitial: function(value) { + return Ext.picker.Date.prototype.getDayInitial(value); + }, + isEndOfWeek: function(value) { + + + value--; + var end = value % 7 === 0 && value !== 0; + return end ? '' : ''; + }, + renderTodayBtn: function(values, out) { + Ext.DomHelper.generateMarkup(values.$comp.todayBtn.getRenderTree(), out); + }, + renderMonthBtn: function(values, out) { + Ext.DomHelper.generateMarkup(values.$comp.monthBtn.getRenderTree(), out); + } + } + ], + + + + todayText : 'Today', + + + + + ariaTitle: 'Date Picker: {0}', + + + + + ariaTitleDateFormat: 'F d, Y', + + + + + + + + + todayTip : '{0} (Spacebar)', + + + + + minText : 'This date is before the minimum date', + + + + + maxText : 'This date is after the maximum date', + + + + + + + disabledDaysText : 'Disabled', + + + + + disabledDatesText : 'Disabled', + + + + + + + + + nextText : 'Next Month (Control+Right)', + + + + + prevText : 'Previous Month (Control+Left)', + + + + + monthYearText : 'Choose a month (Control+Up/Down to move years)', + + + + + monthYearFormat: 'F Y', + + + + + startDay : 0, + + + + + showToday : true, + + + + + + + + + + + + + + disableAnim: false, + + + baseCls: Ext.baseCSSPrefix + 'datepicker', + + + + + + + + longDayFormat: 'F d, Y', + + + + + + focusOnShow: false, + + + + focusOnSelect: true, + + + + initHour: 12, + + numDays: 42, + + + initComponent : function() { + var me = this, + clearTime = Ext.Date.clearTime; + + me.selectedCls = me.baseCls + '-selected'; + me.disabledCellCls = me.baseCls + '-disabled'; + me.prevCls = me.baseCls + '-prevday'; + me.activeCls = me.baseCls + '-active'; + me.cellCls = me.baseCls + '-cell'; + me.nextCls = me.baseCls + '-prevday'; + me.todayCls = me.baseCls + '-today'; + + + if (!me.format) { + me.format = Ext.Date.defaultFormat; + } + if (!me.dayNames) { + me.dayNames = Ext.Date.dayNames; + } + me.dayNames = me.dayNames.slice(me.startDay).concat(me.dayNames.slice(0, me.startDay)); + + me.callParent(); + + me.value = me.value ? + clearTime(me.value, true) : clearTime(new Date()); + + me.addEvents( + + 'select' + ); + + me.initDisabledDays(); + }, + + beforeRender: function () { + + var me = this, + days = new Array(me.numDays), + today = Ext.Date.format(new Date(), me.format); + + + + if (me.up('menu')) { + me.addCls(Ext.baseCSSPrefix + 'menu'); + } + + me.monthBtn = new Ext.button.Split({ + ownerCt: me, + ownerLayout: me.getComponentLayout(), + text: '', + tooltip: me.monthYearText, + listeners: { + click: me.showMonthPicker, + arrowclick: me.showMonthPicker, + scope: me + } + }); + + if (me.showToday) { + me.todayBtn = new Ext.button.Button({ + ownerCt: me, + ownerLayout: me.getComponentLayout(), + text: Ext.String.format(me.todayText, today), + tooltip: Ext.String.format(me.todayTip, today), + tooltipType: 'title', + handler: me.selectToday, + scope: me + }); + } + + me.callParent(); + + Ext.applyIf(me, { + renderData: {} + }); + + Ext.apply(me.renderData, { + dayNames: me.dayNames, + showToday: me.showToday, + prevText: me.prevText, + nextText: me.nextText, + days: days + }); + + me.protoEl.unselectable(); + }, + + + + finishRenderChildren: function () { + var me = this; + + me.callParent(); + me.monthBtn.finishRender(); + if (me.showToday) { + me.todayBtn.finishRender(); + } + }, + + + + onRender : function(container, position){ + var me = this; + + me.callParent(arguments); + + me.cells = me.eventEl.select('tbody td'); + me.textNodes = me.eventEl.query('tbody td a'); + + me.mon(me.eventEl, { + scope: me, + mousewheel: me.handleMouseWheel, + click: { + fn: me.handleDateClick, + delegate: 'a.' + me.baseCls + '-date' + } + }); + + }, + + + + initEvents: function(){ + var me = this, + eDate = Ext.Date, + day = eDate.DAY; + + me.callParent(); + + me.prevRepeater = new Ext.util.ClickRepeater(me.prevEl, { + handler: me.showPrevMonth, + scope: me, + preventDefault: true, + stopDefault: true + }); + + me.nextRepeater = new Ext.util.ClickRepeater(me.nextEl, { + handler: me.showNextMonth, + scope: me, + preventDefault:true, + stopDefault:true + }); + + me.keyNav = new Ext.util.KeyNav(me.eventEl, Ext.apply({ + scope: me, + left : function(e){ + if(e.ctrlKey){ + me.showPrevMonth(); + }else{ + me.update(eDate.add(me.activeDate, day, -1)); + } + }, + + right : function(e){ + if(e.ctrlKey){ + me.showNextMonth(); + }else{ + me.update(eDate.add(me.activeDate, day, 1)); + } + }, + + up : function(e){ + if(e.ctrlKey){ + me.showNextYear(); + }else{ + me.update(eDate.add(me.activeDate, day, -7)); + } + }, + + down : function(e){ + if(e.ctrlKey){ + me.showPrevYear(); + }else{ + me.update(eDate.add(me.activeDate, day, 7)); + } + }, + + pageUp:function (e) { + if (e.altKey) { + me.showPrevYear(); + } else { + me.showPrevMonth(); + } + }, + + pageDown:function (e) { + if (e.altKey) { + me.showNextYear(); + } else { + me.showNextMonth(); + } + }, + + tab:function (e) { + me.doCancelFieldFocus = true; + me.handleTabClick(e); + delete me.doCancelFieldFocus; + return true; + }, + + enter : function(e){ + e.stopPropagation(); + return true; + }, + + + + home:function (e) { + me.update(eDate.getFirstDateOfMonth(me.activeDate)); + }, + + end:function (e) { + me.update(eDate.getLastDateOfMonth(me.activeDate)); + } + }, me.keyNavConfig)); + + if (me.showToday) { + me.todayKeyListener = me.eventEl.addKeyListener(Ext.EventObject.SPACE, me.selectToday, me); + } + me.update(me.value); + }, + + handleTabClick:function (e) { + var me = this, + t = me.getSelectedDate(me.activeDate), + handler = me.handler; + + + if (!me.disabled && t.dateValue && !Ext.fly(t.parentNode).hasCls(me.disabledCellCls)) { + me.doCancelFocus = me.focusOnSelect === false; + me.setValue(new Date(t.dateValue)); + delete me.doCancelFocus; + me.fireEvent('select', me, me.value); + if (handler) { + handler.call(me.scope || me, me, me.value); + } + me.onSelect(); + } + }, + + getSelectedDate:function (date) { + var me = this, + t = date.getTime(), + cells = me.cells, + cls = me.selectedCls, + cellItems = cells.elements, + c, + cLen = cellItems.length, + cell; + + cells.removeCls(cls); + + for (c = 0; c < cLen; c++) { + cell = Ext.fly(cellItems[c]); + + if (cell.dom.firstChild.dateValue == t) { + return cell.dom.firstChild; + } + } + return null; + }, + + + initDisabledDays : function(){ + var me = this, + dd = me.disabledDates, + re = '(?:', + len, + d, dLen, dI; + + if(!me.disabledDatesRE && dd){ + len = dd.length - 1; + + dLen = dd.length; + + for (d = 0; d < dLen; d++) { + dI = dd[d]; + + re += Ext.isDate(dI) ? '^' + Ext.String.escapeRegex(Ext.Date.dateFormat(dI, me.format)) + '$' : dI; + if (d != len) { + re += '|'; + } + } + + me.disabledDatesRE = new RegExp(re + ')'); + } + }, + + + setDisabledDates : function(dd){ + var me = this; + + if(Ext.isArray(dd)){ + me.disabledDates = dd; + me.disabledDatesRE = null; + }else{ + me.disabledDatesRE = dd; + } + me.initDisabledDays(); + me.update(me.value, true); + return me; + }, + + + setDisabledDays : function(dd){ + this.disabledDays = dd; + return this.update(this.value, true); + }, + + + setMinDate : function(dt){ + this.minDate = dt; + return this.update(this.value, true); + }, + + + setMaxDate : function(dt){ + this.maxDate = dt; + return this.update(this.value, true); + }, + + + setValue : function(value){ + this.value = Ext.Date.clearTime(value, true); + return this.update(this.value); + }, + + + getValue : function(){ + return this.value; + }, + + + + getDayInitial: function(value){ + return value.substr(0,1); + }, + + + + focus : function(){ + this.update(this.activeDate); + }, + + + + onEnable: function(){ + this.callParent(); + this.setDisabledStatus(false); + this.update(this.activeDate); + + }, + + + + onDisable : function(){ + this.callParent(); + this.setDisabledStatus(true); + }, + + + setDisabledStatus : function(disabled){ + var me = this; + + me.keyNav.setDisabled(disabled); + me.prevRepeater.setDisabled(disabled); + me.nextRepeater.setDisabled(disabled); + if (me.showToday) { + me.todayKeyListener.setDisabled(disabled); + me.todayBtn.setDisabled(disabled); + } + }, + + + getActive: function(){ + return this.activeDate || this.value; + }, + + + runAnimation: function(isHide){ + var picker = this.monthPicker, + options = { + duration: 200, + callback: function(){ + if (isHide) { + picker.hide(); + } else { + picker.show(); + } + } + }; + + if (isHide) { + picker.el.slideOut('t', options); + } else { + picker.el.slideIn('t', options); + } + }, + + + hideMonthPicker : function(animate){ + var me = this, + picker = me.monthPicker; + + if (picker) { + if (me.shouldAnimate(animate)) { + me.runAnimation(true); + } else { + picker.hide(); + } + } + return me; + }, + + + showMonthPicker : function(animate){ + var me = this, + picker; + + if (me.rendered && !me.disabled) { + picker = me.createMonthPicker(); + picker.setValue(me.getActive()); + picker.setSize(me.getSize()); + picker.setPosition(-1, -1); + if (me.shouldAnimate(animate)) { + me.runAnimation(false); + } else { + picker.show(); + } + } + return me; + }, + + + shouldAnimate: function(animate){ + return Ext.isDefined(animate) ? animate : !this.disableAnim; + }, + + + createMonthPicker: function(){ + var me = this, + picker = me.monthPicker; + + if (!picker) { + me.monthPicker = picker = new Ext.picker.Month({ + renderTo: me.el, + floating: true, + shadow: false, + small: me.showToday === false, + listeners: { + scope: me, + cancelclick: me.onCancelClick, + okclick: me.onOkClick, + yeardblclick: me.onOkClick, + monthdblclick: me.onOkClick + } + }); + if (!me.disableAnim) { + + picker.el.setStyle('display', 'none'); + } + me.on('beforehide', Ext.Function.bind(me.hideMonthPicker, me, [false])); + } + return picker; + }, + + + onOkClick: function(picker, value){ + var me = this, + month = value[0], + year = value[1], + date = new Date(year, month, me.getActive().getDate()); + + if (date.getMonth() !== month) { + + date = Ext.Date.getLastDateOfMonth(new Date(year, month, 1)); + } + me.setValue(date); + me.hideMonthPicker(); + }, + + + onCancelClick: function(){ + + this.selectedUpdate(this.activeDate); + this.hideMonthPicker(); + }, + + + showPrevMonth : function(e){ + return this.setValue(Ext.Date.add(this.activeDate, Ext.Date.MONTH, -1)); + }, + + + showNextMonth : function(e){ + return this.setValue(Ext.Date.add(this.activeDate, Ext.Date.MONTH, 1)); + }, + + + showPrevYear : function(){ + return this.setValue(Ext.Date.add(this.activeDate, Ext.Date.YEAR, -1)); + }, + + + showNextYear : function(){ + return this.setValue(Ext.Date.add(this.activeDate, Ext.Date.YEAR, 1)); + }, + + + handleMouseWheel : function(e){ + e.stopEvent(); + if(!this.disabled){ + var delta = e.getWheelDelta(); + if(delta > 0){ + this.showPrevMonth(); + } else if(delta < 0){ + this.showNextMonth(); + } + } + }, + + + handleDateClick : function(e, t){ + var me = this, + handler = me.handler; + + e.stopEvent(); + if(!me.disabled && t.dateValue && !Ext.fly(t.parentNode).hasCls(me.disabledCellCls)){ + me.doCancelFocus = me.focusOnSelect === false; + me.setValue(new Date(t.dateValue)); + delete me.doCancelFocus; + me.fireEvent('select', me, me.value); + if (handler) { + handler.call(me.scope || me, me, me.value); + } + + + + + me.onSelect(); + } + }, + + + onSelect: function() { + if (this.hideOnSelect) { + this.hide(); + } + }, + + + selectToday : function(){ + var me = this, + btn = me.todayBtn, + handler = me.handler; + + if(btn && !btn.disabled){ + me.setValue(Ext.Date.clearTime(new Date())); + me.fireEvent('select', me, me.value); + if (handler) { + handler.call(me.scope || me, me, me.value); + } + me.onSelect(); + } + return me; + }, + + + selectedUpdate: function(date){ + var me = this, + t = date.getTime(), + cells = me.cells, + cls = me.selectedCls, + cellItems = cells.elements, + c, + cLen = cellItems.length, + cell; + + cells.removeCls(cls); + + for (c = 0; c < cLen; c++) { + cell = Ext.fly(cellItems[c]); + + if (cell.dom.firstChild.dateValue == t) { + me.fireEvent('highlightitem', me, cell); + cell.addCls(cls); + + if(me.isVisible() && !me.doCancelFocus){ + Ext.fly(cell.dom.firstChild).focus(50); + } + + break; + } + } + }, + + + fullUpdate: function(date){ + var me = this, + cells = me.cells.elements, + textNodes = me.textNodes, + disabledCls = me.disabledCellCls, + eDate = Ext.Date, + i = 0, + extraDays = 0, + visible = me.isVisible(), + newDate = +eDate.clearTime(date, true), + today = +eDate.clearTime(new Date()), + min = me.minDate ? eDate.clearTime(me.minDate, true) : Number.NEGATIVE_INFINITY, + max = me.maxDate ? eDate.clearTime(me.maxDate, true) : Number.POSITIVE_INFINITY, + ddMatch = me.disabledDatesRE, + ddText = me.disabledDatesText, + ddays = me.disabledDays ? me.disabledDays.join('') : false, + ddaysText = me.disabledDaysText, + format = me.format, + days = eDate.getDaysInMonth(date), + firstOfMonth = eDate.getFirstDateOfMonth(date), + startingPos = firstOfMonth.getDay() - me.startDay, + previousMonth = eDate.add(date, eDate.MONTH, -1), + longDayFormat = me.longDayFormat, + prevStart, + current, + disableToday, + tempDate, + setCellClass, + html, + cls, + formatValue, + value; + + if (startingPos < 0) { + startingPos += 7; + } + + days += startingPos; + prevStart = eDate.getDaysInMonth(previousMonth) - startingPos; + current = new Date(previousMonth.getFullYear(), previousMonth.getMonth(), prevStart, me.initHour); + + if (me.showToday) { + tempDate = eDate.clearTime(new Date()); + disableToday = (tempDate < min || tempDate > max || + (ddMatch && format && ddMatch.test(eDate.dateFormat(tempDate, format))) || + (ddays && ddays.indexOf(tempDate.getDay()) != -1)); + + if (!me.disabled) { + me.todayBtn.setDisabled(disableToday); + me.todayKeyListener.setDisabled(disableToday); + } + } + + setCellClass = function(cell, cls){ + value = +eDate.clearTime(current, true); + cell.title = eDate.format(current, longDayFormat); + + cell.firstChild.dateValue = value; + if(value == today){ + cls += ' ' + me.todayCls; + cell.title = me.todayText; + + + me.todayElSpan = Ext.DomHelper.append(cell.firstChild, { + tag:'span', + cls: Ext.baseCSSPrefix + 'hide-clip', + html:me.todayText + }, true); + } + if(value == newDate) { + cls += ' ' + me.selectedCls; + me.fireEvent('highlightitem', me, cell); + if (visible && me.floating) { + Ext.fly(cell.firstChild).focus(50); + } + } + + if (value < min) { + cls += ' ' + disabledCls; + cell.title = me.minText; + } + else if (value > max) { + cls += ' ' + disabledCls; + cell.title = me.maxText; + } + else if (ddays && ddays.indexOf(current.getDay()) !== -1){ + cell.title = ddaysText; + cls += ' ' + disabledCls; + } + else if (ddMatch && format){ + formatValue = eDate.dateFormat(current, format); + if(ddMatch.test(formatValue)){ + cell.title = ddText.replace('%0', formatValue); + cls += ' ' + disabledCls; + } + } + cell.className = cls + ' ' + me.cellCls; + }; + + for(; i < me.numDays; ++i) { + if (i < startingPos) { + html = (++prevStart); + cls = me.prevCls; + } else if (i >= days) { + html = (++extraDays); + cls = me.nextCls; + } else { + html = i - startingPos + 1; + cls = me.activeCls; + } + textNodes[i].innerHTML = html; + current.setDate(current.getDate() + 1); + setCellClass(cells[i], cls); + } + + me.monthBtn.setText(Ext.Date.format(date, me.monthYearFormat)); + }, + + + update : function(date, forceRefresh){ + var me = this, + active = me.activeDate; + + if (me.rendered) { + me.activeDate = date; + if(!forceRefresh && active && me.el && active.getMonth() == date.getMonth() && active.getFullYear() == date.getFullYear()){ + me.selectedUpdate(date, active); + } else { + me.fullUpdate(date, active); + } + } + return me; + }, + + + + beforeDestroy : function() { + var me = this; + + if (me.rendered) { + Ext.destroy( + me.todayKeyListener, + me.keyNav, + me.monthPicker, + me.monthBtn, + me.nextRepeater, + me.prevRepeater, + me.todayBtn + ); + delete me.textNodes; + delete me.cells.elements; + } + me.callParent(); + }, + + + + onShow: function() { + this.callParent(arguments); + if (this.focusOnShow) { + this.focus(); + } + } +}); + + +Ext.define('Ext.form.field.Date', { + extend: Ext.form.field.Picker , + alias: 'widget.datefield', + + alternateClassName: ['Ext.form.DateField', 'Ext.form.Date'], + + + + format : "m/d/Y", + + + + altFormats : "m/d/Y|n/j/Y|n/j/y|m/j/y|n/d/y|m/j/Y|n/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d|Y-m-d|n-j|n/j", + + + + disabledDaysText : "Disabled", + + + + disabledDatesText : "Disabled", + + + + minText : "The date in this field must be equal to or after {0}", + + + + maxText : "The date in this field must be equal to or before {0}", + + + + invalidText : "{0} is not a valid date - it must be in the format {1}", + + + triggerCls : Ext.baseCSSPrefix + 'form-date-trigger', + + showToday : true, + + + + + + + + + useStrict: undefined, + + + + initTime: '12', + + initTimeFormat: 'H', + + matchFieldWidth: false, + + + startDay: 0, + + + initComponent : function(){ + var me = this, + isString = Ext.isString, + min, max; + + min = me.minValue; + max = me.maxValue; + if(isString(min)){ + me.minValue = me.parseDate(min); + } + if(isString(max)){ + me.maxValue = me.parseDate(max); + } + me.disabledDatesRE = null; + me.initDisabledDays(); + + me.callParent(); + }, + + initValue: function() { + var me = this, + value = me.value; + + + if (Ext.isString(value)) { + me.value = me.rawToValue(value); + } + + me.callParent(); + }, + + + initDisabledDays : function(){ + if(this.disabledDates){ + var dd = this.disabledDates, + len = dd.length - 1, + re = "(?:", + d, + dLen = dd.length, + date; + + for (d = 0; d < dLen; d++) { + date = dd[d]; + + re += Ext.isDate(date) ? '^' + Ext.String.escapeRegex(date.dateFormat(this.format)) + '$' : date; + if (d !== len) { + re += '|'; + } + } + + this.disabledDatesRE = new RegExp(re + ')'); + } + }, + + + setDisabledDates : function(dd){ + var me = this, + picker = me.picker; + + me.disabledDates = dd; + me.initDisabledDays(); + if (picker) { + picker.setDisabledDates(me.disabledDatesRE); + } + }, + + + setDisabledDays : function(dd){ + var picker = this.picker; + + this.disabledDays = dd; + if (picker) { + picker.setDisabledDays(dd); + } + }, + + + setMinValue : function(dt){ + var me = this, + picker = me.picker, + minValue = (Ext.isString(dt) ? me.parseDate(dt) : dt); + + me.minValue = minValue; + if (picker) { + picker.minText = Ext.String.format(me.minText, me.formatDate(me.minValue)); + picker.setMinDate(minValue); + } + }, + + + setMaxValue : function(dt){ + var me = this, + picker = me.picker, + maxValue = (Ext.isString(dt) ? me.parseDate(dt) : dt); + + me.maxValue = maxValue; + if (picker) { + picker.maxText = Ext.String.format(me.maxText, me.formatDate(me.maxValue)); + picker.setMaxDate(maxValue); + } + }, + + + getErrors: function(value) { + var me = this, + format = Ext.String.format, + clearTime = Ext.Date.clearTime, + errors = me.callParent(arguments), + disabledDays = me.disabledDays, + disabledDatesRE = me.disabledDatesRE, + minValue = me.minValue, + maxValue = me.maxValue, + len = disabledDays ? disabledDays.length : 0, + i = 0, + svalue, + fvalue, + day, + time; + + value = me.formatDate(value || me.processRawValue(me.getRawValue())); + + if (value === null || value.length < 1) { + return errors; + } + + svalue = value; + value = me.parseDate(value); + if (!value) { + errors.push(format(me.invalidText, svalue, Ext.Date.unescapeFormat(me.format))); + return errors; + } + + time = value.getTime(); + if (minValue && time < clearTime(minValue).getTime()) { + errors.push(format(me.minText, me.formatDate(minValue))); + } + + if (maxValue && time > clearTime(maxValue).getTime()) { + errors.push(format(me.maxText, me.formatDate(maxValue))); + } + + if (disabledDays) { + day = value.getDay(); + + for(; i < len; i++) { + if (day === disabledDays[i]) { + errors.push(me.disabledDaysText); + break; + } + } + } + + fvalue = me.formatDate(value); + if (disabledDatesRE && disabledDatesRE.test(fvalue)) { + errors.push(format(me.disabledDatesText, fvalue)); + } + + return errors; + }, + + rawToValue: function(rawValue) { + return this.parseDate(rawValue) || rawValue || null; + }, + + valueToRaw: function(value) { + return this.formatDate(this.parseDate(value)); + }, + + + + + safeParse : function(value, format) { + var me = this, + utilDate = Ext.Date, + result = null, + strict = me.useStrict, + parsedDate; + + if (utilDate.formatContainsHourInfo(format)) { + + result = utilDate.parse(value, format, strict); + } else { + + parsedDate = utilDate.parse(value + ' ' + me.initTime, format + ' ' + me.initTimeFormat, strict); + if (parsedDate) { + result = utilDate.clearTime(parsedDate); + } + } + return result; + }, + + + getSubmitValue: function() { + var format = this.submitFormat || this.format, + value = this.getValue(); + + return value ? Ext.Date.format(value, format) : ''; + }, + + + parseDate : function(value) { + if(!value || Ext.isDate(value)){ + return value; + } + + var me = this, + val = me.safeParse(value, me.format), + altFormats = me.altFormats, + altFormatsArray = me.altFormatsArray, + i = 0, + len; + + if (!val && altFormats) { + altFormatsArray = altFormatsArray || altFormats.split('|'); + len = altFormatsArray.length; + for (; i < len && !val; ++i) { + val = me.safeParse(value, altFormatsArray[i]); + } + } + return val; + }, + + + formatDate : function(date){ + return Ext.isDate(date) ? Ext.Date.dateFormat(date, this.format) : date; + }, + + createPicker: function() { + var me = this, + format = Ext.String.format; + + return new Ext.picker.Date({ + pickerField: me, + ownerCt: me.ownerCt, + renderTo: document.body, + floating: true, + hidden: true, + focusOnShow: true, + minDate: me.minValue, + maxDate: me.maxValue, + disabledDatesRE: me.disabledDatesRE, + disabledDatesText: me.disabledDatesText, + disabledDays: me.disabledDays, + disabledDaysText: me.disabledDaysText, + format: me.format, + showToday: me.showToday, + startDay: me.startDay, + minText: format(me.minText, me.formatDate(me.minValue)), + maxText: format(me.maxText, me.formatDate(me.maxValue)), + listeners: { + scope: me, + select: me.onSelect + }, + keyNavConfig: { + esc: function() { + me.collapse(); + } + } + }); + }, + + onDownArrow: function(e) { + this.callParent(arguments); + if (this.isExpanded) { + this.getPicker().focus(); + } + }, + + onSelect: function(m, d) { + var me = this; + + me.setValue(d); + me.fireEvent('select', me, d); + me.collapse(); + }, + + + onExpand: function() { + var value = this.getValue(); + this.picker.setValue(Ext.isDate(value) ? value : new Date()); + }, + + + onCollapse: function() { + this.focus(false, 60); + }, + + + beforeBlur : function(){ + var me = this, + v = me.parseDate(me.getRawValue()), + focusTask = me.focusTask; + + if (focusTask) { + focusTask.cancel(); + } + + if (v) { + me.setValue(v); + } + } + + + + + +}); + + +Ext.define('Ext.form.field.FileButton', { + extend: Ext.button.Button , + alias: 'widget.filebutton', + + childEls: [ + 'btnEl', 'btnWrap', 'btnInnerEl', 'btnIconEl', 'fileInputEl' + ], + + inputCls: Ext.baseCSSPrefix + 'form-file-input', + + cls: Ext.baseCSSPrefix + 'form-file-btn', + + preventDefault: false, + + renderTpl: [ + ' {splitCls}', + '{childElCls}" unselectable="on">', + '', + '', + '{text}', + '', + 'background-image:url({iconUrl});', + 'font-family:{glyphFontFamily};">', + '&#{glyph}; ', + '', + '', + '', + '' + ], + + getTemplateArgs: function(){ + var args = this.callParent(); + args.inputCls = this.inputCls; + args.inputName = this.inputName; + return args; + }, + + afterRender: function(){ + var me = this; + me.callParent(arguments); + me.fileInputEl.on('change', me.fireChange, me); + }, + + fireChange: function(e){ + this.fireEvent('change', this, e, this.fileInputEl.dom.value); + }, + + + createFileInput : function(isTemporary) { + var me = this; + me.fileInputEl = me.el.createChild({ + name: me.inputName, + id: !isTemporary ? me.id + '-fileInputEl' : undefined, + cls: me.inputCls, + tag: 'input', + type: 'file', + size: 1 + }); + me.fileInputEl.on('change', me.fireChange, me); + }, + + reset: function(remove){ + if (remove) { + this.fileInputEl.remove(); + } + this.createFileInput(!remove); + }, + + restoreInput: function(el){ + this.fileInputEl.remove(); + el = Ext.get(el); + this.el.appendChild(el); + this.fileInputEl = el; + }, + + onDisable: function(){ + this.callParent(); + this.fileInputEl.dom.disabled = true; + }, + + onEnable : function() { + this.callParent(); + this.fileInputEl.dom.disabled = false; + } +}); + + +Ext.define('Ext.form.field.File', { + extend: Ext.form.field.Trigger , + alias: ['widget.filefield', 'widget.fileuploadfield'], + alternateClassName: ['Ext.form.FileUploadField', 'Ext.ux.form.FileUploadField', 'Ext.form.File'], + + + + + + + buttonText: 'Browse...', + + + + buttonOnly: false, + + + buttonMargin: 3, + + + clearOnSubmit: true, + + + + + + + + + + + + extraFieldBodyCls: Ext.baseCSSPrefix + 'form-file-wrap', + + + readOnly: true, + + + triggerNoEditCls: '', + + + componentLayout: 'triggerfield', + + + childEls: ['browseButtonWrap'], + + + onRender: function() { + var me = this, + id = me.id, + inputEl; + + me.callParent(arguments); + + inputEl = me.inputEl; + inputEl.dom.name = ''; + + + + + me.button = new Ext.form.field.FileButton(Ext.apply({ + renderTo: id + '-browseButtonWrap', + ownerCt: me, + ownerLayout: me.componentLayout, + id: id + '-button', + ui: me.ui, + disabled: me.disabled, + text: me.buttonText, + style: me.buttonOnly ? '' : me.getButtonMarginProp() + me.buttonMargin + 'px', + inputName: me.getName(), + listeners: { + scope: me, + change: me.onFileChange + } + }, me.buttonConfig)); + me.fileInputEl = me.button.fileInputEl; + + if (me.buttonOnly) { + me.inputCell.setDisplayed(false); + } + + + me.browseButtonWrap.dom.style.width = (me.browseButtonWrap.dom.lastChild.offsetWidth + me.button.getEl().getMargin('lr')) + 'px'; + if (Ext.isIE) { + me.button.getEl().repaint(); + } + }, + + + getTriggerMarkup: function() { + return ''; + }, + + + onFileChange: function(button, e, value) { + this.lastValue = null; + Ext.form.field.File.superclass.setValue.call(this, value); + }, + + + setValue: Ext.emptyFn, + + reset : function(){ + var me = this, + clear = me.clearOnSubmit; + if (me.rendered) { + me.button.reset(clear); + me.fileInputEl = me.button.fileInputEl; + if (clear) { + me.inputEl.dom.value = ''; + } + } + me.callParent(); + }, + + onShow: function(){ + this.callParent(); + + + this.button.updateLayout(); + }, + + onDisable: function(){ + this.callParent(); + this.button.disable(); + }, + + onEnable: function(){ + this.callParent(); + this.button.enable(); + }, + + isFileUpload: function() { + return true; + }, + + extractFileInput: function() { + var fileInput = this.button.fileInputEl.dom; + this.reset(); + return fileInput; + }, + + restoreInput: function(el) { + var button = this.button; + button.restoreInput(el); + this.fileInputEl = button.fileInputEl; + }, + + onDestroy: function(){ + Ext.destroyMembers(this, 'button'); + delete this.fileInputEl; + this.callParent(); + }, + + getButtonMarginProp: function() { + return 'margin-left:'; + } +}); + + +Ext.define('Ext.form.field.Hidden', { + extend: Ext.form.field.Base , + alias: ['widget.hiddenfield', 'widget.hidden'], + alternateClassName: 'Ext.form.Hidden', + + + inputType : 'hidden', + hideLabel: true, + hidden: true, + + initComponent: function() { + this.formItemCls += '-hidden'; + this.callParent(); + }, + + + isEqual: function(value1, value2) { + return this.isEqualAsString(value1, value2); + }, + + + initEvents: Ext.emptyFn, + setSize : Ext.emptyFn, + setWidth : Ext.emptyFn, + setHeight : Ext.emptyFn, + setPosition : Ext.emptyFn, + setPagePosition : Ext.emptyFn, + markInvalid : Ext.emptyFn, + clearInvalid : Ext.emptyFn +}); + + +Ext.define('Ext.picker.Color', { + extend: Ext.Component , + + alias: 'widget.colorpicker', + alternateClassName: 'Ext.ColorPalette', + + + componentCls : Ext.baseCSSPrefix + 'color-picker', + + + selectedCls: Ext.baseCSSPrefix + 'color-picker-selected', + + + itemCls: Ext.baseCSSPrefix + 'color-picker-item', + + + value : null, + + + clickEvent :'click', + + + allowReselect : false, + + + colors : [ + '000000', '993300', '333300', '003300', '003366', '000080', '333399', '333333', + '800000', 'FF6600', '808000', '008000', '008080', '0000FF', '666699', '808080', + 'FF0000', 'FF9900', '99CC00', '339966', '33CCCC', '3366FF', '800080', '969696', + 'FF00FF', 'FFCC00', 'FFFF00', '00FF00', '00FFFF', '00CCFF', '993366', 'C0C0C0', + 'FF99CC', 'FFCC99', 'FFFF99', 'CCFFCC', 'CCFFFF', '99CCFF', 'CC99FF', 'FFFFFF' + ], + + + + + + colorRe: /(?:^|\s)color-(.{6})(?:\s|$)/, + + renderTpl: [ + '', + '', + ' ', + '', + '' + ], + + + initComponent : function(){ + var me = this; + + me.callParent(arguments); + me.addEvents( + + 'select' + ); + + if (me.handler) { + me.on('select', me.handler, me.scope, true); + } + }, + + + + initRenderData : function(){ + var me = this; + return Ext.apply(me.callParent(), { + itemCls: me.itemCls, + colors: me.colors + }); + }, + + onRender : function(){ + var me = this, + clickEvent = me.clickEvent; + + me.callParent(arguments); + + me.mon(me.el, clickEvent, me.handleClick, me, {delegate: 'a'}); + + if(clickEvent != 'click'){ + me.mon(me.el, 'click', Ext.emptyFn, me, {delegate: 'a', stopEvent: true}); + } + }, + + + afterRender : function(){ + var me = this, + value; + + me.callParent(arguments); + if (me.value) { + value = me.value; + me.value = null; + me.select(value, true); + } + }, + + + handleClick : function(event, target){ + var me = this, + color; + + event.stopEvent(); + if (!me.disabled) { + color = target.className.match(me.colorRe)[1]; + me.select(color.toUpperCase()); + } + }, + + + select : function(color, suppressEvent){ + + var me = this, + selectedCls = me.selectedCls, + value = me.value, + el; + + color = color.replace('#', ''); + if (!me.rendered) { + me.value = color; + return; + } + + + if (color != value || me.allowReselect) { + el = me.el; + + if (me.value) { + el.down('a.color-' + value).removeCls(selectedCls); + } + el.down('a.color-' + color).addCls(selectedCls); + me.value = color; + if (suppressEvent !== true) { + me.fireEvent('select', me, color); + } + } + }, + + + clear: function(){ + var me = this, + value = me.value, + el; + + if (value && me.rendered) { + el = me.el.down('a.color-' + value); + el.removeCls(me.selectedCls); + } + me.value = null; + }, + + + getValue: function(){ + return this.value || null; + } +}); + + +Ext.define('Ext.layout.component.field.HtmlEditor', { + extend: Ext.layout.component.field.FieldContainer , + alias: ['layout.htmleditor'], + + type: 'htmleditor', + + naturalHeight: 150, + naturalWidth: 300, + + beginLayout: function(ownerContext) { + var owner = this.owner, + dom; + + + + + if (Ext.isGecko) { + dom = owner.textareaEl.dom; + this.lastValue = dom.value; + dom.value = ''; + } + this.callParent(arguments); + + ownerContext.toolbarContext = ownerContext.context.getCmp(owner.toolbar); + ownerContext.inputCmpContext = ownerContext.context.getCmp(owner.inputCmp); + ownerContext.textAreaContext = ownerContext.getEl('textareaEl'); + ownerContext.iframeContext = ownerContext.getEl('iframeEl'); + }, + + beginLayoutCycle: function(ownerContext) { + var me = this, + widthModel = ownerContext.widthModel, + heightModel = ownerContext.heightModel, + owner = me.owner, + iframeEl = owner.iframeEl, + textareaEl = owner.textareaEl; + + me.callParent(arguments); + if (widthModel.shrinkWrap) { + iframeEl.setStyle('width', ''); + textareaEl.setStyle('width', ''); + } else if (widthModel.natural) { + ownerContext.bodyCellContext.setWidth(me.naturalWidth); + } + + if (heightModel.natural || heightModel.shrinkWrap) { + iframeEl.setHeight(me.naturalHeight); + textareaEl.setHeight(me.naturalHeight); + } + }, + + finishedLayout: function(){ + var owner = this.owner; + + this.callParent(arguments); + + + if (Ext.isIE9m && Ext.isIEQuirks) { + owner.el.repaint(); + } + if (Ext.isGecko) { + owner.textareaEl.dom.value = this.lastValue; + } + }, + + publishOwnerWidth: function(ownerContext, width){ + this.callParent(arguments); + width -= ownerContext.inputCmpContext.getBorderInfo().width; + ownerContext.textAreaContext.setWidth(width); + ownerContext.iframeContext.setWidth(width); + }, + + + + + + + + publishInnerWidth: function(ownerContext, width){ + var border = ownerContext.inputCmpContext.getBorderInfo().width, + ieBug = Ext.isStrict && Ext.isIE8m, + natural = ownerContext.widthModel.natural; + + this.callParent(arguments); + width = ownerContext.bodyCellContext.props.width - border; + if (natural) { + if (ieBug) { + width -= 2; + } + ownerContext.textAreaContext.setWidth(width); + ownerContext.iframeContext.setWidth(width); + } else if (ieBug) { + ownerContext.textAreaContext.setWidth(width); + } + }, + + publishInnerHeight: function (ownerContext, height) { + var toolbarHeight = ownerContext.toolbarContext.getProp('height'), + sourceEdit = this.owner.sourceEditMode; + + this.callParent(arguments); + height = ownerContext.bodyCellContext.props.height; + + if (toolbarHeight !== undefined) { + height -= toolbarHeight + ownerContext.inputCmpContext.getFrameInfo().height; + if (Ext.isIE8 && Ext.isStrict) { + height -= 2; + } else if (Ext.isIEQuirks && (Ext.isIE8 || Ext.isIE9)) { + height -= 4; + } + ownerContext.iframeContext.setHeight(height); + ownerContext.textAreaContext.setHeight(height); + } else { + this.done = false; + } + } + +}); + + +Ext.define('Ext.form.field.HtmlEditor', { + extend: Ext.form.FieldContainer , + mixins: { + field: Ext.form.field.Field + }, + alias: 'widget.htmleditor', + alternateClassName: 'Ext.form.HtmlEditor', + + + + + + + + + + + componentLayout: 'htmleditor', + + componentTpl: [ + '{beforeTextAreaTpl}', + '', + '{afterTextAreaTpl}', + '{beforeIFrameTpl}', + '', + '{afterIFrameTpl}', + { + disableFormats: true + } + ], + + stretchInputElFixed: true, + + subTplInsertions: [ + + 'beforeTextAreaTpl', + + + 'afterTextAreaTpl', + + + 'beforeIFrameTpl', + + + 'afterIFrameTpl', + + + 'iframeAttrTpl', + + + 'inputAttrTpl' + ], + + + enableFormat: true, + + enableFontSize: true, + + enableColors: true, + + enableAlignments: true, + + enableLists: true, + + enableSourceEdit: true, + + enableLinks: true, + + enableFont: true, + + + createLinkText: 'Please enter the URL for the link:', + + + defaultLinkValue: 'http:/'+'/', + + fontFamilies: [ + 'Arial', + 'Courier New', + 'Tahoma', + 'Times New Roman', + 'Verdana' + ], + + defaultValue: (Ext.isOpera || Ext.isIE6) ? ' ' : '​', + + + extraFieldBodyCls: Ext.baseCSSPrefix + 'html-editor-wrap', + + + + + initialized: false, + + activated: false, + + sourceEditMode: false, + + iframePad:3, + + hideMode:'offsets', + + maskOnDisable: true, + + containerElCls: Ext.baseCSSPrefix + 'html-editor-container', + + + initComponent: function(){ + var me = this; + + me.addEvents( + + 'initialize', + + 'activate', + + 'beforesync', + + 'beforepush', + + 'sync', + + 'push', + + 'editmodechange' + ); + + me.items = [me.createToolbar(), me.createInputCmp()]; + + me.layout = { + type: 'vbox', + align: 'stretch' + }; + + me.callParent(arguments); + me.initField(); + }, + + createInputCmp: function(){ + this.inputCmp = Ext.widget(this.getInputCmpCfg()); + return this.inputCmp; + }, + + getInputCmpCfg: function(){ + var me = this, + id = me.id + '-inputCmp', + data = { + id : id, + name : me.name, + textareaCls : Ext.baseCSSPrefix + 'hidden', + value : me.value, + iframeName : Ext.id(), + iframeSrc : Ext.SSL_SECURE_URL, + iframeCls : Ext.baseCSSPrefix + 'htmleditor-iframe' + }; + + me.getInsertionRenderData(data, me.subTplInsertions); + + return { + flex: 1, + xtype: 'component', + tpl: me.getTpl('componentTpl'), + childEls: ['iframeEl', 'textareaEl'], + id: id, + cls: Ext.baseCSSPrefix + 'html-editor-input', + data: data + }; + }, + + + createToolbar: function(){ + this.toolbar = Ext.widget(this.getToolbarCfg()); + return this.toolbar; + }, + + getToolbarCfg: function(){ + var me = this, + items = [], i, + tipsEnabled = Ext.quickTipsActive && Ext.tip.QuickTipManager.isEnabled(), + baseCSSPrefix = Ext.baseCSSPrefix, + fontSelectItem, undef; + + function btn(id, toggle, handler){ + return { + itemId: id, + cls: baseCSSPrefix + 'btn-icon', + iconCls: baseCSSPrefix + 'edit-'+id, + enableToggle:toggle !== false, + scope: me, + handler:handler||me.relayBtnCmd, + clickEvent: 'mousedown', + tooltip: tipsEnabled ? me.buttonTips[id] || undef : undef, + overflowText: me.buttonTips[id].title || undef, + tabIndex: -1 + }; + } + + + if (me.enableFont && !Ext.isSafari2) { + fontSelectItem = Ext.widget('component', { + itemId: 'fontSelect', + renderTpl: [ + '' + ], + childEls: ['selectEl'], + afterRender: function() { + me.fontSelect = this.selectEl; + Ext.Component.prototype.afterRender.apply(this, arguments); + }, + onDisable: function() { + var selectEl = this.selectEl; + if (selectEl) { + selectEl.dom.disabled = true; + } + Ext.Component.prototype.onDisable.apply(this, arguments); + }, + onEnable: function() { + var selectEl = this.selectEl; + if (selectEl) { + selectEl.dom.disabled = false; + } + Ext.Component.prototype.onEnable.apply(this, arguments); + }, + listeners: { + change: function() { + me.win.focus(); + me.relayCmd('fontName', me.fontSelect.dom.value); + me.deferFocus(); + }, + element: 'selectEl' + } + }); + + items.push( + fontSelectItem, + '-' + ); + } + + if (me.enableFormat) { + items.push( + btn('bold'), + btn('italic'), + btn('underline') + ); + } + + if (me.enableFontSize) { + items.push( + '-', + btn('increasefontsize', false, me.adjustFont), + btn('decreasefontsize', false, me.adjustFont) + ); + } + + if (me.enableColors) { + items.push( + '-', { + itemId: 'forecolor', + cls: baseCSSPrefix + 'btn-icon', + iconCls: baseCSSPrefix + 'edit-forecolor', + overflowText: me.buttonTips.forecolor.title, + tooltip: tipsEnabled ? me.buttonTips.forecolor || undef : undef, + tabIndex:-1, + menu: Ext.widget('menu', { + plain: true, + + items: [{ + xtype: 'colorpicker', + allowReselect: true, + focus: Ext.emptyFn, + value: '000000', + plain: true, + clickEvent: 'mousedown', + handler: function(cp, color) { + me.relayCmd('forecolor', Ext.isWebKit || Ext.isIE ? '#'+color : color); + this.up('menu').hide(); + } + }] + }) + }, { + itemId: 'backcolor', + cls: baseCSSPrefix + 'btn-icon', + iconCls: baseCSSPrefix + 'edit-backcolor', + overflowText: me.buttonTips.backcolor.title, + tooltip: tipsEnabled ? me.buttonTips.backcolor || undef : undef, + tabIndex:-1, + menu: Ext.widget('menu', { + plain: true, + + items: [{ + xtype: 'colorpicker', + focus: Ext.emptyFn, + value: 'FFFFFF', + plain: true, + allowReselect: true, + clickEvent: 'mousedown', + handler: function(cp, color) { + if (Ext.isGecko) { + me.execCmd('useCSS', false); + me.execCmd('hilitecolor', '#'+color); + me.execCmd('useCSS', true); + me.deferFocus(); + } else { + me.relayCmd(Ext.isOpera ? 'hilitecolor' : 'backcolor', Ext.isWebKit || Ext.isIE || Ext.isOpera ? '#'+color : color); + } + this.up('menu').hide(); + } + }] + }) + } + ); + } + + if (me.enableAlignments) { + items.push( + '-', + btn('justifyleft'), + btn('justifycenter'), + btn('justifyright') + ); + } + + if (!Ext.isSafari2) { + if (me.enableLinks) { + items.push( + '-', + btn('createlink', false, me.createLink) + ); + } + + if (me.enableLists) { + items.push( + '-', + btn('insertorderedlist'), + btn('insertunorderedlist') + ); + } + if (me.enableSourceEdit) { + items.push( + '-', + btn('sourceedit', true, function(btn){ + me.toggleSourceEdit(!me.sourceEditMode); + }) + ); + } + } + + + for (i = 0; i < items.length; i++) { + if (items[i].itemId !== 'sourceedit') { + items[i].disabled = true; + } + } + + + + return { + xtype: 'toolbar', + defaultButtonUI: me.defaultButtonUI, + cls: Ext.baseCSSPrefix + 'html-editor-tb', + enableOverflow: true, + items: items, + + + listeners: { + click: function(e){ + e.preventDefault(); + }, + element: 'el' + } + }; + }, + + getMaskTarget: function(){ + + + return Ext.isGecko ? this.inputCmp.el : this.bodyEl; + }, + + + setReadOnly: function(readOnly) { + var me = this, + textareaEl = me.textareaEl, + iframeEl = me.iframeEl, + body; + + me.readOnly = readOnly; + + if (textareaEl) { + textareaEl.dom.readOnly = readOnly; + } + + if (me.initialized) { + body = me.getEditorBody(); + if (Ext.isIE) { + + iframeEl.setDisplayed(false); + body.contentEditable = !readOnly; + iframeEl.setDisplayed(true); + } else { + me.setDesignMode(!readOnly); + } + if (body) { + body.style.cursor = readOnly ? 'default' : 'text'; + } + me.disableItems(readOnly); + } + }, + + + getDocMarkup: function() { + var me = this, + h = me.iframeEl.getHeight() - me.iframePad * 2, + oldIE = Ext.isIE8m; + + + + + return Ext.String.format( + (oldIE ? '' : '') + + '' + , me.iframePad, h, me.defaultFont); + }, + + + getEditorBody: function() { + var doc = this.getDoc(); + return doc.body || doc.documentElement; + }, + + + getDoc: function() { + return (!Ext.isIE && this.iframeEl.dom.contentDocument) || this.getWin().document; + }, + + + getWin: function() { + return Ext.isIE ? this.iframeEl.dom.contentWindow : window.frames[this.iframeEl.dom.name]; + }, + + initDefaultFont: function(){ + + + + + + var me = this, + selIdx = 0, + fonts, font, select, + option, i, len, lower; + + if (!me.defaultFont) { + font = me.textareaEl.getStyle('font-family'); + font = Ext.String.capitalize(font.split(',')[0]); + fonts = Ext.Array.clone(me.fontFamilies); + Ext.Array.include(fonts, font); + fonts.sort(); + me.defaultFont = font; + + select = me.down('#fontSelect').selectEl.dom; + for (i = 0, len = fonts.length; i < len; ++i) { + font = fonts[i]; + lower = font.toLowerCase(); + option = new Option(font, lower); + if (font == me.defaultFont) { + selIdx = i; + } + option.style.fontFamily = lower; + + if (Ext.isIE) { + select.add(option); + } else { + select.options.add(option); + } + } + + + select.options[selIdx].selected = true; + } + }, + + isEqual: function(value1, value2){ + return this.isEqualAsString(value1, value2); + }, + + + afterRender: function() { + var me = this, + inputCmp = me.inputCmp; + + me.callParent(arguments); + + me.iframeEl = inputCmp.iframeEl; + me.textareaEl = inputCmp.textareaEl; + + + + me.inputEl = me.iframeEl; + + if (me.enableFont) { + me.initDefaultFont(); + } + + + me.monitorTask = Ext.TaskManager.start({ + run: me.checkDesignMode, + scope: me, + interval: 100 + }); + me.relayCmd('fontName', me.defaultFont); + }, + + initFrameDoc: function() { + var me = this, + doc, task; + + Ext.TaskManager.stop(me.monitorTask); + + doc = me.getDoc(); + me.win = me.getWin(); + + doc.open(); + doc.write(me.getDocMarkup()); + doc.close(); + + task = { + run: function() { + var doc = me.getDoc(); + if (doc.body || doc.readyState === 'complete') { + Ext.TaskManager.stop(task); + me.setDesignMode(true); + Ext.defer(me.initEditor, 10, me); + } + }, + interval: 10, + duration:10000, + scope: me + }; + Ext.TaskManager.start(task); + }, + + checkDesignMode: function() { + var me = this, + doc = me.getDoc(); + if (doc && (!doc.editorInitialized || me.getDesignMode() !== 'on')) { + me.initFrameDoc(); + } + }, + + + setDesignMode: function(mode) { + var me = this, + doc = me.getDoc(); + if (doc) { + if (me.readOnly) { + mode = false; + } + doc.designMode = (/on|true/i).test(String(mode).toLowerCase()) ?'on':'off'; + } + }, + + + getDesignMode: function() { + var doc = this.getDoc(); + return !doc ? '' : String(doc.designMode).toLowerCase(); + }, + + disableItems: function(disabled) { + var items = this.getToolbar().items.items, + i, + iLen = items.length, + item; + + for (i = 0; i < iLen; i++) { + item = items[i]; + + if (item.getItemId() !== 'sourceedit') { + item.setDisabled(disabled); + } + } + }, + + + toggleSourceEdit: function(sourceEditMode) { + var me = this, + iframe = me.iframeEl, + textarea = me.textareaEl, + hiddenCls = Ext.baseCSSPrefix + 'hidden', + btn = me.getToolbar().getComponent('sourceedit'); + + if (!Ext.isBoolean(sourceEditMode)) { + sourceEditMode = !me.sourceEditMode; + } + me.sourceEditMode = sourceEditMode; + + if (btn.pressed !== sourceEditMode) { + btn.toggle(sourceEditMode); + } + if (sourceEditMode) { + me.disableItems(true); + me.syncValue(); + iframe.addCls(hiddenCls); + textarea.removeCls(hiddenCls); + textarea.dom.removeAttribute('tabIndex'); + textarea.focus(); + me.inputEl = textarea; + } else { + if (me.initialized) { + me.disableItems(me.readOnly); + } + me.pushValue(); + iframe.removeCls(hiddenCls); + textarea.addCls(hiddenCls); + textarea.dom.setAttribute('tabIndex', -1); + me.deferFocus(); + me.inputEl = iframe; + } + me.fireEvent('editmodechange', me, sourceEditMode); + me.updateLayout(); + }, + + + createLink: function() { + var url = prompt(this.createLinkText, this.defaultLinkValue); + if (url && url !== 'http:/'+'/') { + this.relayCmd('createlink', url); + } + }, + + clearInvalid: Ext.emptyFn, + + setValue: function(value) { + var me = this, + textarea = me.textareaEl, + inputCmp = me.inputCmp; + + me.mixins.field.setValue.call(me, value); + if (value === null || value === undefined) { + value = ''; + } + if (textarea) { + textarea.dom.value = value; + } + me.pushValue(); + + if (!me.rendered && me.inputCmp) { + me.inputCmp.data.value = value; + } + + return me; + }, + + + cleanHtml: function(html) { + html = String(html); + if (Ext.isWebKit) { + html = html.replace(/\sclass="(?:Apple-style-span|Apple-tab-span|khtml-block-placeholder)"/gi, ''); + } + + + if (html.charCodeAt(0) === parseInt(this.defaultValue.replace(/\D/g, ''), 10)) { + html = html.substring(1); + } + + return html; + }, + + + syncValue: function(){ + var me = this, + body, changed, html, bodyStyle, match, textElDom; + + if (me.initialized) { + body = me.getEditorBody(); + html = body.innerHTML; + textElDom = me.textareaEl.dom; + + if (Ext.isWebKit) { + bodyStyle = body.getAttribute('style'); + match = bodyStyle.match(/text-align:(.*?);/i); + if (match && match[1]) { + html = '
' + html + '
'; + } + } + + html = me.cleanHtml(html); + + if (me.fireEvent('beforesync', me, html) !== false) { + + + if (Ext.isGecko && textElDom.value === '' && html === '
') { + html = ''; + } + + if (textElDom.value !== html) { + textElDom.value = html; + changed = true; + } + + me.fireEvent('sync', me, html); + + if (changed) { + + + me.checkChange(); + } + } + } + }, + + getValue: function() { + var me = this, + value; + if (!me.sourceEditMode) { + me.syncValue(); + } + value = me.rendered ? me.textareaEl.dom.value : me.value; + me.value = value; + return value; + }, + + + pushValue: function() { + var me = this, + v; + if(me.initialized){ + v = me.textareaEl.dom.value || ''; + if (!me.activated && v.length < 1) { + v = me.defaultValue; + } + if (me.fireEvent('beforepush', me, v) !== false) { + me.getEditorBody().innerHTML = v; + if (Ext.isGecko) { + + me.setDesignMode(false); + me.setDesignMode(true); + } + me.fireEvent('push', me, v); + } + } + }, + + + deferFocus: function(){ + this.focus(false, true); + }, + + getFocusEl: function() { + var me = this, + win = me.win; + return win && !me.sourceEditMode ? win : me.textareaEl; + }, + + focus: function(selectText, delay) { + var me = this, + value, focusEl; + + if (delay) { + if (!me.focusTask) { + me.focusTask = new Ext.util.DelayedTask(me.focus); + } + me.focusTask.delay(Ext.isNumber(delay) ? delay : 10, null, me, [selectText, false]); + } + else { + if (selectText) { + if (me.textareaEl && me.textareaEl.dom) { + value = me.textareaEl.dom.value; + } + if (value && value.length) { + me.execCmd('selectall', true); + } + } + focusEl = me.getFocusEl(); + if (focusEl && focusEl.focus) { + focusEl.focus(); + } + } + return me; + }, + + + initEditor: function(){ + + try { + var me = this, + dbody = me.getEditorBody(), + ss = me.textareaEl.getStyles('font-size', 'font-family', 'background-image', 'background-repeat', 'background-color', 'color'), + doc, + fn; + + ss['background-attachment'] = 'fixed'; + dbody.bgProperties = 'fixed'; + + Ext.DomHelper.applyStyles(dbody, ss); + + doc = me.getDoc(); + + if (doc) { + try { + Ext.EventManager.removeAll(doc); + } catch(e) {} + } + + + fn = Ext.Function.bind(me.onEditorEvent, me); + Ext.EventManager.on(doc, { + mousedown: fn, + dblclick: fn, + click: fn, + keyup: fn, + buffer:100 + }); + + + + + + + fn = me.onRelayedEvent; + Ext.EventManager.on(doc, { + mousedown: fn, + mousemove: fn, + mouseup: fn, + click: fn, + dblclick: fn, + scope: me + }); + + if (Ext.isGecko) { + Ext.EventManager.on(doc, 'keypress', me.applyCommand, me); + } + + if (me.fixKeys) { + Ext.EventManager.on(doc, 'keydown', me.fixKeys, me); + } + if (me.fixKeysAfter) { + Ext.EventManager.on(doc, 'keyup', me.fixKeysAfter, me); + } + + if (Ext.isIE9 && Ext.isStrict) { + Ext.EventManager.on(doc.documentElement, 'focus', me.focus, me); + } + + + + + if (Ext.isIE8m || (Ext.isIE9 && !Ext.isStrict)) { + Ext.EventManager.on(doc, 'focusout', function() { + me.savedSelection = doc.selection.type !== 'None' ? doc.selection.createRange() : null; + }, me); + + Ext.EventManager.on(doc, 'focusin', function() { + if (me.savedSelection) { + me.savedSelection.select(); + } + }, me); + } + + + Ext.EventManager.onWindowUnload(me.beforeDestroy, me); + doc.editorInitialized = true; + + me.initialized = true; + me.pushValue(); + me.setReadOnly(me.readOnly); + me.fireEvent('initialize', me); + } catch(ex) { + + } + }, + + + beforeDestroy: function(){ + var me = this, + monitorTask = me.monitorTask, + doc, prop; + + if (monitorTask) { + Ext.TaskManager.stop(monitorTask); + } + if (me.rendered) { + Ext.EventManager.removeUnloadListener(me.beforeDestroy, me); + try { + doc = me.getDoc(); + if (doc) { + + + + + + Ext.EventManager.removeAll(Ext.fly(doc)); + for (prop in doc) { + if (doc.hasOwnProperty && doc.hasOwnProperty(prop)) { + delete doc[prop]; + } + } + } + } catch(e) { + + } + delete me.iframeEl; + delete me.textareaEl; + delete me.toolbar; + delete me.inputCmp; + } + me.callParent(); + }, + + + onRelayedEvent: function (event) { + + + var iframeEl = this.iframeEl, + + + iframeXY = Ext.Element.getTrueXY(iframeEl), + originalEventXY = event.getXY(), + + + + + eventXY = Ext.EventManager.getPageXY(event.browserEvent); + + + + event.xy = [iframeXY[0] + eventXY[0], iframeXY[1] + eventXY[1]]; + + event.injectEvent(iframeEl); + + event.xy = originalEventXY; + }, + + + onFirstFocus: function(){ + var me = this, + selection, range; + me.activated = true; + me.disableItems(me.readOnly); + if (Ext.isGecko) { + me.win.focus(); + selection = me.win.getSelection(); + if (!selection.focusNode || selection.focusNode.nodeType !== 3) { + range = selection.getRangeAt(0); + range.selectNodeContents(me.getEditorBody()); + range.collapse(true); + me.deferFocus(); + } + try { + me.execCmd('useCSS', true); + me.execCmd('styleWithCSS', false); + } catch(e) { + + } + } + me.fireEvent('activate', me); + }, + + + adjustFont: function(btn) { + var adjust = btn.getItemId() === 'increasefontsize' ? 1 : -1, + size = this.getDoc().queryCommandValue('FontSize') || '2', + isPxSize = Ext.isString(size) && size.indexOf('px') !== -1, + isSafari; + size = parseInt(size, 10); + if (isPxSize) { + + + if (size <= 10) { + size = 1 + adjust; + } + else if (size <= 13) { + size = 2 + adjust; + } + else if (size <= 16) { + size = 3 + adjust; + } + else if (size <= 18) { + size = 4 + adjust; + } + else if (size <= 24) { + size = 5 + adjust; + } + else { + size = 6 + adjust; + } + size = Ext.Number.constrain(size, 1, 6); + } else { + isSafari = Ext.isSafari; + if (isSafari) { + adjust *= 2; + } + size = Math.max(1, size + adjust) + (isSafari ? 'px' : 0); + } + this.relayCmd('FontSize', size); + }, + + + onEditorEvent: function(e) { + this.updateToolbar(); + }, + + + updateToolbar: function() { + var me = this, + i, l, btns, doc, name, queriedName, fontSelect, + toolbarSubmenus; + + if (me.readOnly) { + return; + } + + if (!me.activated) { + me.onFirstFocus(); + return; + } + + btns = me.getToolbar().items.map; + doc = me.getDoc(); + + if (me.enableFont && !Ext.isSafari2) { + + + queriedName = doc.queryCommandValue('fontName'); + name = (queriedName ? queriedName.split(",")[0].replace(/^'/,'').replace(/'$/,'') : me.defaultFont).toLowerCase(); + fontSelect = me.fontSelect.dom; + if (name !== fontSelect.value || name != queriedName) { + fontSelect.value = name; + } + } + + function updateButtons() { + var state; + + for (i = 0, l = arguments.length, name; i < l; i++) { + name = arguments[i]; + + + + try { + state = doc.queryCommandState(name); + } + catch (e) { + state = false; + } + + btns[name].toggle(state); + } + } + if(me.enableFormat){ + updateButtons('bold', 'italic', 'underline'); + } + if(me.enableAlignments){ + updateButtons('justifyleft', 'justifycenter', 'justifyright'); + } + if(!Ext.isSafari2 && me.enableLists){ + updateButtons('insertorderedlist', 'insertunorderedlist'); + } + + + + toolbarSubmenus = me.toolbar.query('menu'); + for (i = 0; i < toolbarSubmenus.length; i++) { + toolbarSubmenus[i].hide(); + } + me.syncValue(); + }, + + + relayBtnCmd: function(btn) { + this.relayCmd(btn.getItemId()); + }, + + + relayCmd: function(cmd, value) { + Ext.defer(function() { + var me = this; + + if (!this.isDestroyed) { + me.win.focus(); + me.execCmd(cmd, value); + me.updateToolbar(); + } + }, 10, this); + }, + + + execCmd: function(cmd, value){ + var me = this, + doc = me.getDoc(); + doc.execCommand(cmd, false, (value == undefined ? null : value)); + me.syncValue(); + }, + + + applyCommand: function(e){ + if (e.ctrlKey) { + var me = this, + c = e.getCharCode(), cmd; + if (c > 0) { + c = String.fromCharCode(c); + switch (c) { + case 'b': + cmd = 'bold'; + break; + case 'i': + cmd = 'italic'; + break; + case 'u': + cmd = 'underline'; + break; + } + if (cmd) { + me.win.focus(); + me.execCmd(cmd); + me.deferFocus(); + e.preventDefault(); + } + } + } + }, + + + insertAtCursor: function(text){ + var me = this, + range; + + if (me.activated) { + me.win.focus(); + if (Ext.isIE) { + range = me.getDoc().selection.createRange(); + if (range) { + range.pasteHTML(text); + me.syncValue(); + me.deferFocus(); + } + }else{ + me.execCmd('InsertHTML', text); + me.deferFocus(); + } + } + }, + + + fixKeys: (function() { + if (Ext.isIE) { + return function(e){ + var me = this, + k = e.getKey(), + doc = me.getDoc(), + readOnly = me.readOnly, + range, target; + + if (k === e.TAB) { + e.stopEvent(); + if (!readOnly) { + range = doc.selection.createRange(); + if (range){ + if (range.collapse) { + range.collapse(true); + range.pasteHTML('    '); + } + + me.deferFocus(); + } + } + } + else if (k === e.ENTER) { + if (!readOnly) { + range = doc.selection.createRange(); + if (range) { + target = range.parentElement(); + if(!target || target.tagName.toLowerCase() !== 'li'){ + e.stopEvent(); + range.pasteHTML('
'); + range.collapse(false); + range.select(); + } + } + } + } + }; + } + + if (Ext.isOpera) { + return function(e){ + var me = this, + k = e.getKey(), + readOnly = me.readOnly; + if (k === e.TAB) { + e.stopEvent(); + if (!readOnly) { + me.win.focus(); + me.execCmd('InsertHTML','    '); + me.deferFocus(); + } + } + }; + } + + return null; + }()), + + + fixKeysAfter: (function() { + if (Ext.isIE) { + return function(e) { + var me = this, + k = e.getKey(), + doc = me.getDoc(), + readOnly = me.readOnly, + innerHTML; + + if (!readOnly && (k === e.BACKSPACE || k === e.DELETE)) { + innerHTML = doc.body.innerHTML; + + + + + + + + + + + + + + + if (innerHTML === '

 

' || innerHTML === '

 

') { + doc.body.innerHTML = ''; + } + } + } + } + + return null; + }()), + + + getToolbar: function(){ + return this.toolbar; + }, + + + + buttonTips: { + bold: { + title: 'Bold (Ctrl+B)', + text: 'Make the selected text bold.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + italic: { + title: 'Italic (Ctrl+I)', + text: 'Make the selected text italic.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + underline: { + title: 'Underline (Ctrl+U)', + text: 'Underline the selected text.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + increasefontsize: { + title: 'Grow Text', + text: 'Increase the font size.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + decreasefontsize: { + title: 'Shrink Text', + text: 'Decrease the font size.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + backcolor: { + title: 'Text Highlight Color', + text: 'Change the background color of the selected text.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + forecolor: { + title: 'Font Color', + text: 'Change the color of the selected text.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + justifyleft: { + title: 'Align Text Left', + text: 'Align text to the left.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + justifycenter: { + title: 'Center Text', + text: 'Center text in the editor.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + justifyright: { + title: 'Align Text Right', + text: 'Align text to the right.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + insertunorderedlist: { + title: 'Bullet List', + text: 'Start a bulleted list.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + insertorderedlist: { + title: 'Numbered List', + text: 'Start a numbered list.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + createlink: { + title: 'Hyperlink', + text: 'Make the selected text a hyperlink.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + sourceedit: { + title: 'Source Edit', + text: 'Switch to source editing mode.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + } + } + + + + + + + + + + + + + + + + + + +}); + + +Ext.define('Ext.picker.Time', { + extend: Ext.view.BoundList , + alias: 'widget.timepicker', + + + + + + + + increment: 15, + + + + format : "g:i A", + + + + displayField: 'disp', + + + initDate: [2008,0,1], + + componentCls: Ext.baseCSSPrefix + 'timepicker', + + + loadMask: false, + + initComponent: function() { + var me = this, + dateUtil = Ext.Date, + clearTime = dateUtil.clearTime, + initDate = me.initDate; + + + me.absMin = clearTime(new Date(initDate[0], initDate[1], initDate[2])); + me.absMax = dateUtil.add(clearTime(new Date(initDate[0], initDate[1], initDate[2])), 'mi', (24 * 60) - 1); + + me.store = me.createStore(); + + + + me.store.addFilter(me.rangeFilter = new Ext.util.Filter({ + id: 'time-picker-filter' + }), false); + + + me.updateList(); + + me.callParent(); + }, + + + setMinValue: function(value) { + this.minValue = value; + this.updateList(); + }, + + + setMaxValue: function(value) { + this.maxValue = value; + this.updateList(); + }, + + + normalizeDate: function(date) { + var initDate = this.initDate; + date.setFullYear(initDate[0], initDate[1], initDate[2]); + return date; + }, + + + updateList: function() { + var me = this, + min = me.normalizeDate(me.minValue || me.absMin), + max = me.normalizeDate(me.maxValue || me.absMax); + + me.rangeFilter.setFilterFn(function(record) { + var date = record.get('date'); + return date >= min && date <= max; + }); + me.store.filter(); + }, + + + createStore: function() { + var me = this, + utilDate = Ext.Date, + times = [], + min = me.absMin, + max = me.absMax; + + while(min <= max){ + times.push({ + disp: utilDate.dateFormat(min, me.format), + date: min + }); + min = utilDate.add(min, 'mi', me.increment); + } + + return new Ext.data.Store({ + fields: ['disp', 'date'], + data: times + }); + }, + + focusNode: function (rec) { + + + return false; + } + +}); + + +Ext.define('Ext.form.field.Time', { + extend: Ext.form.field.ComboBox , + alias: 'widget.timefield', + + alternateClassName: ['Ext.form.TimeField', 'Ext.form.Time'], + + + triggerCls: Ext.baseCSSPrefix + 'form-time-trigger', + + + + + + + + minText : "The time in this field must be equal to or after {0}", + + + + + maxText : "The time in this field must be equal to or before {0}", + + + + + invalidText : "{0} is not a valid time", + + + + + format : "g:i A", + + + + + + + + + altFormats : "g:ia|g:iA|g:i a|g:i A|h:i|g:i|H:i|ga|ha|gA|h a|g a|g A|gi|hi|gia|hia|g|H|gi a|hi a|giA|hiA|gi A|hi A", + + + + increment: 15, + + + pickerMaxHeight: 300, + + + selectOnTab: true, + + + snapToIncrement: false, + + + initDate: '1/1/2008', + initDateFormat: 'j/n/Y', + + ignoreSelection: 0, + + queryMode: 'local', + + displayField: 'disp', + + valueField: 'date', + + initComponent: function() { + var me = this, + min = me.minValue, + max = me.maxValue; + if (min) { + me.setMinValue(min); + } + if (max) { + me.setMaxValue(max); + } + me.displayTpl = new Ext.XTemplate( + '' + + '{[typeof values === "string" ? values : this.formatDate(values["' + me.displayField + '"])]}' + + '' + me.delimiter + '' + + '', { + formatDate: Ext.Function.bind(me.formatDate, me) + }); + this.callParent(); + }, + + + transformOriginalValue: function(value) { + if (Ext.isString(value)) { + return this.rawToValue(value); + } + return value; + }, + + + isEqual: function(v1, v2) { + return Ext.Date.isEqual(v1, v2); + }, + + + setMinValue: function(value) { + var me = this, + picker = me.picker; + me.setLimit(value, true); + if (picker) { + picker.setMinValue(me.minValue); + } + }, + + + setMaxValue: function(value) { + var me = this, + picker = me.picker; + me.setLimit(value, false); + if (picker) { + picker.setMaxValue(me.maxValue); + } + }, + + + setLimit: function(value, isMin) { + var me = this, + d, val; + if (Ext.isString(value)) { + d = me.parseDate(value); + } + else if (Ext.isDate(value)) { + d = value; + } + if (d) { + val = Ext.Date.clearTime(new Date(me.initDate)); + val.setHours(d.getHours(), d.getMinutes(), d.getSeconds(), d.getMilliseconds()); + } + + else { + val = null; + } + me[isMin ? 'minValue' : 'maxValue'] = val; + }, + + rawToValue: function(rawValue) { + return this.parseDate(rawValue) || rawValue || null; + }, + + valueToRaw: function(value) { + return this.formatDate(this.parseDate(value)); + }, + + + getErrors: function(value) { + var me = this, + format = Ext.String.format, + errors = me.callParent(arguments), + minValue = me.minValue, + maxValue = me.maxValue, + date; + + value = me.formatDate(value || me.processRawValue(me.getRawValue())); + + if (value === null || value.length < 1) { + return errors; + } + + date = me.parseDate(value); + if (!date) { + errors.push(format(me.invalidText, value, Ext.Date.unescapeFormat(me.format))); + return errors; + } + + if (minValue && date < minValue) { + errors.push(format(me.minText, me.formatDate(minValue))); + } + + if (maxValue && date > maxValue) { + errors.push(format(me.maxText, me.formatDate(maxValue))); + } + + return errors; + }, + + formatDate: function() { + return Ext.form.field.Date.prototype.formatDate.apply(this, arguments); + }, + + + parseDate: function(value) { + var me = this, + val = value, + altFormats = me.altFormats, + altFormatsArray = me.altFormatsArray, + i = 0, + len; + + if (value && !Ext.isDate(value)) { + val = me.safeParse(value, me.format); + + if (!val && altFormats) { + altFormatsArray = altFormatsArray || altFormats.split('|'); + len = altFormatsArray.length; + for (; i < len && !val; ++i) { + val = me.safeParse(value, altFormatsArray[i]); + } + } + } + + + if (val && me.snapToIncrement) { + val = new Date(Ext.Number.snap(val.getTime(), me.increment * 60 * 1000)); + } + return val; + }, + + safeParse: function(value, format){ + var me = this, + utilDate = Ext.Date, + parsedDate, + result = null; + + if (utilDate.formatContainsDateInfo(format)) { + + result = utilDate.parse(value, format); + } else { + + parsedDate = utilDate.parse(me.initDate + ' ' + value, me.initDateFormat + ' ' + format); + if (parsedDate) { + result = parsedDate; + } + } + return result; + }, + + + getSubmitValue: function() { + var me = this, + format = me.submitFormat || me.format, + value = me.getValue(); + + return value ? Ext.Date.format(value, format) : null; + }, + + + createPicker: function() { + var me = this, + picker; + + me.listConfig = Ext.apply({ + xtype: 'timepicker', + selModel: { + mode: 'SINGLE' + }, + cls: undefined, + minValue: me.minValue, + maxValue: me.maxValue, + increment: me.increment, + format: me.format, + maxHeight: me.pickerMaxHeight + }, me.listConfig); + picker = me.callParent(); + me.bindStore(picker.store); + return picker; + }, + + onItemClick: function(picker, record){ + + var me = this, + selected = picker.getSelectionModel().getSelection(); + + if (selected.length > 0) { + selected = selected[0]; + if (selected && Ext.Date.isEqual(record.get('date'), selected.get('date'))) { + me.collapse(); + } + } + }, + + + onListSelectionChange: function(list, recordArray) { + if (recordArray.length) { + var me = this, + val = recordArray[0].get('date'); + + if (!me.ignoreSelection) { + me.skipSync = true; + me.setValue(val); + me.skipSync = false; + me.fireEvent('select', me, val); + me.picker.clearHighlight(); + me.collapse(); + me.inputEl.focus(); + } + } + }, + + + syncSelection: function() { + var me = this, + picker = me.picker, + toSelect, + selModel, + value, + data, d, dLen, rec; + + if (picker && !me.skipSync) { + picker.clearHighlight(); + value = me.getValue(); + selModel = picker.getSelectionModel(); + + me.ignoreSelection++; + if (value === null) { + selModel.deselectAll(); + } else if (Ext.isDate(value)) { + + data = picker.store.data.items; + dLen = data.length; + + for (d = 0; d < dLen; d++) { + rec = data[d]; + + if (Ext.Date.isEqual(rec.get('date'), value)) { + toSelect = rec; + break; + } + } + + selModel.select(toSelect); + } + me.ignoreSelection--; + } + }, + + postBlur: function() { + var me = this, + val = me.getValue(); + + me.callParent(arguments); + + + if (me.wasValid && val) { + me.setRawValue(me.formatDate(val)); + } + }, + + setValue: function() { + + + this.getPicker(); + + return this.callParent(arguments); + }, + + getValue: function() { + return this.parseDate(this.callParent(arguments)); + } +}); + + +Ext.define('Ext.grid.CellContext', { + + + isCellContext: true, + + constructor: function(view) { + this.view = view; + }, + + + setPosition: function(row, col) { + var me = this; + + + if (arguments.length === 1) { + if (row.view) { + me.view = row.view; + } + col = row.column; + row = row.row; + } + + me.setRow(row); + me.setColumn(col); + return me; + }, + + setRow: function(row) { + var me = this; + if (row !== undefined) { + + if (typeof row === 'number') { + me.row = Math.max(Math.min(row, me.view.dataSource.getCount() - 1), 0); + me.record = me.view.dataSource.getAt(row); + } + + else if (row.isModel) { + me.record = row; + me.row = me.view.indexOf(row); + } + + else if (row.tagName) { + me.record = me.view.getRecord(row); + me.row = me.view.indexOf(me.record); + } + } + }, + + setColumn: function(col) { + var me = this, + columnManager = me.view.ownerCt.columnManager; + if (col !== undefined) { + + if (typeof col === 'number') { + me.column = col; + me.columnHeader = columnManager.getHeaderAtIndex(col); + } + + else if (col.isHeader) { + me.columnHeader = col; + me.column = columnManager.getHeaderIndex(col); + } + } + } +}); + + +Ext.define('Ext.grid.CellEditor', { + extend: Ext.Editor , + constructor: function(config) { + config = Ext.apply({}, config); + + if (config.field) { + config.field.monitorTab = false; + } + this.callParent([config]); + }, + + + onShow: function() { + var me = this, + innerCell = me.boundEl.first(); + + if (innerCell) { + if (me.isForTree) { + innerCell = innerCell.child(me.treeNodeSelector); + } + innerCell.hide(); + } + + me.callParent(arguments); + }, + + + onHide: function() { + var me = this, + innerCell = me.boundEl.first(); + + if (innerCell) { + if (me.isForTree) { + innerCell = innerCell.child(me.treeNodeSelector); + } + innerCell.show(); + } + + me.callParent(arguments); + }, + + + afterRender: function() { + var me = this, + field = me.field; + + me.callParent(arguments); + if (field.isCheckbox) { + field.mon(field.inputEl, { + mousedown: me.onCheckBoxMouseDown, + click: me.onCheckBoxClick, + scope: me + }); + } + }, + + + onCheckBoxMouseDown: function() { + this.completeEdit = Ext.emptyFn; + }, + + + onCheckBoxClick: function() { + delete this.completeEdit; + this.field.focus(false, 10); + }, + + + realign: function(autoSize) { + var me = this, + boundEl = me.boundEl, + innerCell = boundEl.first(), + width = boundEl.getWidth(), + offsets = Ext.Array.clone(me.offsets), + grid = me.grid, + xOffset; + + if (me.isForTree) { + + + xOffset = me.getTreeNodeOffset(innerCell); + width -= Math.abs(xOffset); + offsets[0] += xOffset; + } + + if (grid.columnLines) { + + + + width -= boundEl.getBorderWidth('rl'); + } + + if (autoSize === true) { + me.field.setWidth(width); + } + + me.alignTo(innerCell, me.alignment, offsets); + }, + + + getTreeNodeOffset: function(innerCell) { + return innerCell.child(this.treeNodeSelector).getOffsetsTo(innerCell)[0]; + }, + + onEditorTab: function(e){ + var field = this.field; + if (field.onEditorTab) { + field.onEditorTab(e); + } + }, + + alignment: "l-l", + hideEl : false, + cls: Ext.baseCSSPrefix + 'small-editor ' + + Ext.baseCSSPrefix + 'grid-editor ' + + Ext.baseCSSPrefix + 'grid-cell-editor', + treeNodeSelector: '.' + Ext.baseCSSPrefix + 'tree-node-text', + shim: false, + shadow: false +}); + + +Ext.define('Ext.grid.ColumnComponentLayout', { + extend: Ext.layout.component.Auto , + alias: 'layout.columncomponent', + + type: 'columncomponent', + + setWidthInDom: true, + + beginLayout: function(ownerContext) { + var me = this; + + me.callParent(arguments); + ownerContext.titleContext = ownerContext.getEl('titleEl'); + ownerContext.triggerContext = ownerContext.getEl('triggerEl'); + }, + + beginLayoutCycle: function(ownerContext) { + var me = this, + owner = me.owner; + + me.callParent(arguments); + + + if (ownerContext.widthModel.shrinkWrap) { + owner.el.setWidth(''); + } + + + + var borderRightWidth = owner.isLast && owner.isSubHeader ? '0' : ''; + if (borderRightWidth !== me.lastBorderRightWidth) { + owner.el.dom.style.borderRightWidth = me.lasBorderRightWidth = borderRightWidth; + } + + owner.titleEl.setStyle({ + paddingTop: '', + paddingBottom: '' + }); + }, + + + publishInnerHeight: function(ownerContext, outerHeight) { + + + + if (!outerHeight) { + return; + } + + var me = this, + owner = me.owner, + innerHeight = outerHeight - ownerContext.getBorderInfo().height, + availableHeight = innerHeight, + textHeight, + titleHeight, + pt, pb; + + + if (!owner.noWrap && !ownerContext.hasDomProp('width')) { + me.done = false; + return; + } + + + if (ownerContext.hasRawContent) { + titleHeight = availableHeight; + + + textHeight = owner.textEl.getHeight(); + if (textHeight) { + availableHeight -= textHeight; + if (availableHeight > 0) { + pt = Math.floor(availableHeight / 2); + pb = availableHeight - pt; + ownerContext.titleContext.setProp('padding-top', pt); + ownerContext.titleContext.setProp('padding-bottom', pb); + } + } + } + + + else { + titleHeight = owner.titleEl.getHeight(); + ownerContext.setProp('innerHeight', innerHeight - titleHeight, false); + } + + + if ((Ext.isIE6 || Ext.isIEQuirks) && ownerContext.triggerContext) { + ownerContext.triggerContext.setHeight(titleHeight); + } + + }, + + + + + measureContentHeight: function(ownerContext) { + return ownerContext.el.dom.offsetHeight; + }, + + publishOwnerHeight: function(ownerContext, contentHeight) { + this.callParent(arguments); + + + if ((Ext.isIE6 || Ext.isIEQuirks) && ownerContext.triggerContext) { + ownerContext.triggerContext.setHeight(contentHeight); + } + }, + + + publishInnerWidth: function(ownerContext, outerWidth) { + + if (!ownerContext.hasRawContent) { + ownerContext.setProp('innerWidth', outerWidth - ownerContext.getBorderInfo().width, false); + } + }, + + + calculateOwnerHeightFromContentHeight: function (ownerContext, contentHeight) { + var result = this.callParent(arguments); + + + if (!ownerContext.hasRawContent) { + if (this.owner.noWrap || ownerContext.hasDomProp('width')) { + return contentHeight + this.owner.titleEl.getHeight() + ownerContext.getBorderInfo().height; + } + + + + return null; + } + return result; + }, + + + calculateOwnerWidthFromContentWidth: function (ownerContext, contentWidth) { + var owner = this.owner, + inner = Math.max(contentWidth, owner.textEl.getWidth() + ownerContext.titleContext.getPaddingInfo().width), + padWidth = ownerContext.getPaddingInfo().width, + triggerOffset = this.getTriggerOffset(owner, ownerContext); + + return inner + padWidth + triggerOffset; + }, + + getTriggerOffset: function(owner, ownerContext) { + var width = 0; + if (ownerContext.widthModel.shrinkWrap && !owner.menuDisabled) { + + if (owner.query('>:not([hidden])').length === 0) { + width = owner.self.triggerElWidth; + } + } + return width; + } +}); + + +Ext.define('Ext.grid.ColumnLayout', { + extend: Ext.layout.container.HBox , + alias: 'layout.gridcolumn', + type : 'gridcolumn', + + reserveOffset: false, + + firstHeaderCls: Ext.baseCSSPrefix + 'column-header-first', + lastHeaderCls: Ext.baseCSSPrefix + 'column-header-last', + + initLayout: function() { + if (!this.scrollbarWidth) { + this.self.prototype.scrollbarWidth = Ext.getScrollbarSize().width; + } + this.grid = this.owner.up('[scrollerOwner]'); + this.callParent(); + }, + + + beginLayout: function (ownerContext) { + var me = this, + owner = me.owner, + grid = me.grid, + view = grid.view, + items = me.getVisibleItems(), + len = items.length, + firstCls = me.firstHeaderCls, + lastCls = me.lastHeaderCls, + i, item; + + + + + if (grid.lockable) { + if (owner.up('tablepanel') === view.normalGrid) { + view = view.normalGrid.getView(); + } else { + view = null; + } + } + + for (i = 0; i < len; i++) { + item = items[i]; + + + + item.isLast = false; + item.removeCls([firstCls, lastCls]); + if (i === 0) { + item.addCls(firstCls); + } + + if (i === len - 1) { + item.addCls(lastCls); + item.isLast = true; + } + } + + me.callParent(arguments); + + + + if (!owner.isColumn && Ext.getScrollbarSize().width && !grid.collapsed && view && + view.rendered && (ownerContext.viewTable = view.body.dom)) { + ownerContext.viewContext = ownerContext.context.getCmp(view); + } + }, + + roundFlex: function(width) { + return Math.floor(width); + }, + + calculate: function(ownerContext) { + this.callParent(arguments); + + + + if (ownerContext.state.parallelDone && (!this.owner.forceFit || ownerContext.flexedItems.length)) { + + + ownerContext.setProp('columnWidthsDone', true); + } + + + if (ownerContext.viewContext) { + ownerContext.state.tableHeight = ownerContext.viewTable.offsetHeight; + } + }, + + completeLayout: function(ownerContext) { + var me = this, + owner = me.owner, + state = ownerContext.state; + + me.callParent(arguments); + + + + + if (!ownerContext.flexedItems.length && !state.flexesCalculated && owner.forceFit && + + + + me.convertWidthsToFlexes(ownerContext)) { + me.cacheFlexes(ownerContext); + ownerContext.invalidate({ + state: { + flexesCalculated: true + } + }); + } else { + ownerContext.setProp('columnWidthsDone', true); + } + }, + + convertWidthsToFlexes: function(ownerContext) { + var me = this, + totalWidth = 0, + calculated = me.sizeModels.calculated, + childItems, len, i, childContext, item; + + childItems = ownerContext.childItems; + len = childItems.length; + + for (i = 0; i < len; i++) { + childContext = childItems[i]; + item = childContext.target; + + totalWidth += childContext.props.width; + + + if (!(item.fixed || item.resizable === false)) { + + + + item.flex = ownerContext.childItems[i].flex = childContext.props.width; + item.width = null; + childContext.widthModel = calculated; + } + } + + + return totalWidth !== ownerContext.props.width; + }, + + + getContainerSize: function(ownerContext) { + var me = this, + result, + viewContext = ownerContext.viewContext, + viewHeight; + + + if (me.owner.isColumn) { + result = me.getColumnContainerSize(ownerContext); + } + + + else { + result = me.callParent(arguments); + + + + if (viewContext && !viewContext.heightModel.shrinkWrap && + viewContext.target.componentLayout.ownerContext) { + viewHeight = viewContext.getProp('height'); + if (isNaN(viewHeight)) { + me.done = false; + } else if (ownerContext.state.tableHeight > viewHeight) { + result.width -= Ext.getScrollbarSize().width; + ownerContext.state.parallelDone = false; + viewContext.invalidate(); + } + } + } + + + + + return result; + }, + + getColumnContainerSize : function(ownerContext) { + var padding = ownerContext.paddingContext.getPaddingInfo(), + got = 0, + needed = 0, + gotWidth, gotHeight, width, height; + + + + + + + + + + if (!ownerContext.widthModel.shrinkWrap) { + ++needed; + width = ownerContext.getProp('innerWidth'); + gotWidth = (typeof width == 'number'); + if (gotWidth) { + ++got; + width -= padding.width; + if (width < 0) { + width = 0; + } + } + } + + if (!ownerContext.heightModel.shrinkWrap) { + ++needed; + height = ownerContext.getProp('innerHeight'); + gotHeight = (typeof height == 'number'); + if (gotHeight) { + ++got; + height -= padding.height; + if (height < 0) { + height = 0; + } + } + } + + return { + width: width, + height: height, + needed: needed, + got: got, + gotAll: got == needed, + gotWidth: gotWidth, + gotHeight: gotHeight + }; + }, + + + + publishInnerCtSize: function(ownerContext) { + var me = this, + size = ownerContext.state.boxPlan.targetSize, + cw = ownerContext.peek('contentWidth'), + view; + + + me.owner.tooNarrow = ownerContext.state.boxPlan.tooNarrow; + + + if ((cw != null) && !me.owner.isColumn) { + size.width = cw; + + + view = me.owner.ownerCt.view; + if (view.scrollFlags.y) { + size.width += Ext.getScrollbarSize().width; + } + } + + return me.callParent(arguments); + } +}); + + +Ext.define('Ext.grid.ColumnManager', { + alternateClassName: ['Ext.grid.ColumnModel'], + + columns: null, + + constructor: function(headerCt, secondHeaderCt) { + this.headerCt = headerCt; + + + if (secondHeaderCt) { + this.secondHeaderCt = secondHeaderCt; + } + }, + + getColumns: function() { + if (!this.columns) { + this.cacheColumns(); + } + return this.columns; + }, + + + getHeaderIndex: function(header) { + + if (header.isGroupHeader) { + header = header.down(':not([isGroupHeader])'); + } + return Ext.Array.indexOf(this.getColumns(), header); + }, + + + getHeaderAtIndex: function(index) { + var columns = this.getColumns(); + return columns.length ? columns[index] : null; + }, + + + getHeaderById: function(id) { + var columns = this.getColumns(), + len = columns.length, + i, header; + + for (i = 0; i < len; ++i) { + header = columns[i]; + if (header.getItemId() === id) { + return header; + } + } + return null; + }, + + + getVisibleHeaderClosestToIndex: function(index) { + var result = this.getHeaderAtIndex(index); + if (result && result.hidden) { + result = result.next(':not([hidden])') || result.prev(':not([hidden])'); + } + return result; + }, + + cacheColumns: function() { + this.columns = this.headerCt.getVisibleGridColumns(); + if (this.secondHeaderCt) { + Ext.Array.push(this.columns, this.secondHeaderCt.getVisibleGridColumns()); + } + }, + + invalidate: function() { + this.columns = null; + + + if (this.rootColumns) { + this.rootColumns.invalidate(); + } + } +}, function() { + this.createAlias('indexOf', 'getHeaderIndex'); +}); + + +Ext.define('Ext.layout.container.Fit', { + + + extend: Ext.layout.container.Container , + alternateClassName: 'Ext.layout.FitLayout', + + alias: 'layout.fit', + + + + itemCls: Ext.baseCSSPrefix + 'fit-item', + targetCls: Ext.baseCSSPrefix + 'layout-fit', + type: 'fit', + + + defaultMargins: { + top: 0, + right: 0, + bottom: 0, + left: 0 + }, + + manageMargins: true, + + sizePolicies: { + 0: { readsWidth: 1, readsHeight: 1, setsWidth: 0, setsHeight: 0 }, + 1: { readsWidth: 0, readsHeight: 1, setsWidth: 1, setsHeight: 0 }, + 2: { readsWidth: 1, readsHeight: 0, setsWidth: 0, setsHeight: 1 }, + 3: { readsWidth: 0, readsHeight: 0, setsWidth: 1, setsHeight: 1 } + }, + + getItemSizePolicy: function (item, ownerSizeModel) { + + var sizeModel = ownerSizeModel || this.owner.getSizeModel(), + mode = (sizeModel.width.shrinkWrap ? 0 : 1) | + (sizeModel.height.shrinkWrap ? 0 : 2); + + return this.sizePolicies[mode]; + }, + + beginLayoutCycle: function (ownerContext, firstCycle) { + var me = this, + + resetHeight = me.lastHeightModel && me.lastHeightModel.calculated, + resetWidth = me.lastWidthModel && me.lastWidthModel.calculated, + resetSizes = resetWidth || resetHeight, + maxChildMinHeight = 0, maxChildMinWidth = 0, + c, childItems, i, item, length, margins, minHeight, minWidth, style, undef; + + me.callParent(arguments); + + + + + + if (resetSizes && ownerContext.targetContext.el.dom.tagName.toUpperCase() != 'TD') { + resetSizes = resetWidth = resetHeight = false; + } + + childItems = ownerContext.childItems; + length = childItems.length; + + for (i = 0; i < length; ++i) { + item = childItems[i]; + + + + + if (firstCycle) { + c = item.target; + minHeight = c.minHeight; + minWidth = c.minWidth; + + if (minWidth || minHeight) { + margins = item.marginInfo || item.getMarginInfo(); + + + minHeight += margins.height; + minWidth += margins.height; + + + + if (maxChildMinHeight < minHeight) { + maxChildMinHeight = minHeight; + } + if (maxChildMinWidth < minWidth) { + maxChildMinWidth = minWidth; + } + } + } + + if (resetSizes) { + style = item.el.dom.style; + + if (resetHeight) { + style.height = ''; + } + if (resetWidth) { + style.width = ''; + } + } + } + + if (firstCycle) { + ownerContext.maxChildMinHeight = maxChildMinHeight; + ownerContext.maxChildMinWidth = maxChildMinWidth; + } + + + + + c = ownerContext.target; + ownerContext.overflowX = (!ownerContext.widthModel.shrinkWrap && + ownerContext.maxChildMinWidth && + c.scrollFlags.x) || undef; + + ownerContext.overflowY = (!ownerContext.heightModel.shrinkWrap && + ownerContext.maxChildMinHeight && + c.scrollFlags.y) || undef; + }, + + calculate : function (ownerContext) { + var me = this, + childItems = ownerContext.childItems, + length = childItems.length, + containerSize = me.getContainerSize(ownerContext), + info = { + length: length, + ownerContext: ownerContext, + targetSize: containerSize + }, + shrinkWrapWidth = ownerContext.widthModel.shrinkWrap, + shrinkWrapHeight = ownerContext.heightModel.shrinkWrap, + overflowX = ownerContext.overflowX, + overflowY = ownerContext.overflowY, + scrollbars, scrollbarSize, padding, i, contentWidth, contentHeight; + + if (overflowX || overflowY) { + + + + scrollbars = me.getScrollbarsNeeded( + overflowX && containerSize.width, overflowY && containerSize.height, + ownerContext.maxChildMinWidth, ownerContext.maxChildMinHeight); + + if (scrollbars) { + scrollbarSize = Ext.getScrollbarSize(); + if (scrollbars & 1) { + containerSize.height -= scrollbarSize.height; + } + if (scrollbars & 2) { + containerSize.width -= scrollbarSize.width; + } + } + } + + + for (i = 0; i < length; ++i) { + info.index = i; + me.fitItem(childItems[i], info); + } + + if (shrinkWrapHeight || shrinkWrapWidth) { + padding = ownerContext.targetContext.getPaddingInfo(); + + if (shrinkWrapWidth) { + if (overflowY && !containerSize.gotHeight) { + + + + me.done = false; + } else { + contentWidth = info.contentWidth + padding.width; + + + + if (scrollbars & 2) { + contentWidth += scrollbarSize.width; + } + if (!ownerContext.setContentWidth(contentWidth)) { + me.done = false; + } + } + } + + if (shrinkWrapHeight) { + if (overflowX && !containerSize.gotWidth) { + + + + me.done = false; + } else { + contentHeight = info.contentHeight + padding.height; + + + + if (scrollbars & 1) { + contentHeight += scrollbarSize.height; + } + if (!ownerContext.setContentHeight(contentHeight)) { + me.done = false; + } + } + } + } + }, + + fitItem: function (itemContext, info) { + var me = this; + + if (itemContext.invalid) { + me.done = false; + return; + } + + info.margins = itemContext.getMarginInfo(); + info.needed = info.got = 0; + + me.fitItemWidth(itemContext, info); + me.fitItemHeight(itemContext, info); + + + if (info.got != info.needed) { + me.done = false; + } + }, + + fitItemWidth: function (itemContext, info) { + var contentWidth, width; + + if (info.ownerContext.widthModel.shrinkWrap) { + + width = itemContext.getProp('width') + info.margins.width; + + + contentWidth = info.contentWidth; + if (contentWidth === undefined) { + info.contentWidth = width; + } else { + info.contentWidth = Math.max(contentWidth, width); + } + } else if (itemContext.widthModel.calculated) { + ++info.needed; + if (info.targetSize.gotWidth) { + ++info.got; + this.setItemWidth(itemContext, info); + } + } + + this.positionItemX(itemContext, info); + }, + + fitItemHeight: function (itemContext, info) { + var contentHeight, height; + if (info.ownerContext.heightModel.shrinkWrap) { + + height = itemContext.getProp('height') + info.margins.height; + + + contentHeight = info.contentHeight; + if (contentHeight === undefined) { + info.contentHeight = height; + } else { + info.contentHeight = Math.max(contentHeight, height); + } + } else if (itemContext.heightModel.calculated) { + ++info.needed; + if (info.targetSize.gotHeight) { + ++info.got; + this.setItemHeight(itemContext, info); + } + } + + this.positionItemY(itemContext, info); + }, + + positionItemX: function (itemContext, info) { + var margins = info.margins; + + + + if (info.index || margins.left) { + itemContext.setProp('x', margins.left); + } + + if (margins.width) { + + itemContext.setProp('margin-right', margins.width); + } + }, + + positionItemY: function (itemContext, info) { + var margins = info.margins; + + if (info.index || margins.top) { + itemContext.setProp('y', margins.top); + } + + if (margins.height) { + + itemContext.setProp('margin-bottom', margins.height); + } + }, + + setItemHeight: function (itemContext, info) { + itemContext.setHeight(info.targetSize.height - info.margins.height); + }, + + setItemWidth: function (itemContext, info) { + itemContext.setWidth(info.targetSize.width - info.margins.width); + } +}); + + +Ext.define('Ext.panel.Table', { + extend: Ext.panel.Panel , + + alias: 'widget.tablepanel', + + + + + + + + + + + extraBaseCls: Ext.baseCSSPrefix + 'grid', + extraBodyCls: Ext.baseCSSPrefix + 'grid-body', + + layout: 'fit', + + hasView: false, + + + + viewType: null, + + + + + + + selType: 'rowmodel', + + + + + + + + + + + scroll: true, + + + + + + + + + + + + + + deferRowRender: true, + + + sortableColumns: true, + + + enableLocking: false, + + + + scrollerOwner: true, + + + enableColumnMove: true, + + + sealedColumns: false, + + + enableColumnResize: true, + + + + + + + rowLines: true, + + + + + + + + + + colLinesCls: Ext.baseCSSPrefix + 'grid-with-col-lines', + rowLinesCls: Ext.baseCSSPrefix + 'grid-with-row-lines', + noRowLinesCls: Ext.baseCSSPrefix + 'grid-no-row-lines', + hiddenHeaderCtCls: Ext.baseCSSPrefix + 'grid-header-ct-hidden', + hiddenHeaderCls: Ext.baseCSSPrefix + 'grid-header-hidden', + resizeMarkerCls: Ext.baseCSSPrefix + 'grid-resize-marker', + emptyCls: Ext.baseCSSPrefix + 'grid-empty', + + initComponent: function() { + + var me = this, + headerCtCfg = me.columns || me.colModel, + view, + i, len, + + store = me.store = Ext.data.StoreManager.lookup(me.store || 'ext-empty-store'), + columns; + + if (me.columnLines) { + me.addCls(me.colLinesCls); + } + + me.addCls(me.rowLines ? me.rowLinesCls : me.noRowLinesCls); + + + + + if (headerCtCfg instanceof Ext.grid.header.Container) { + headerCtCfg.isRootHeader = true; + me.headerCt = headerCtCfg; + } else { + + + + if (me.enableLocking || me.hasLockedColumns(headerCtCfg)) { + me.self.mixin('lockable', Ext.grid.locking.Lockable); + me.injectLockable(); + } + + else { + if (Ext.isArray(headerCtCfg)) { + headerCtCfg = { + items: headerCtCfg + }; + } + Ext.apply(headerCtCfg, { + grid: me, + forceFit: me.forceFit, + sortable: me.sortableColumns, + enableColumnMove: me.enableColumnMove, + enableColumnResize: me.enableColumnResize, + sealed: me.sealedColumns, + isRootHeader: true + }); + + if (Ext.isDefined(me.enableColumnHide)) { + headerCtCfg.enableColumnHide = me.enableColumnHide; + } + + + if (!me.headerCt) { + me.headerCt = new Ext.grid.header.Container(headerCtCfg); + } + } + } + + + me.columns = me.headerCt.getGridColumns(); + + me.scrollTask = new Ext.util.DelayedTask(me.syncHorizontalScroll, me); + + me.addEvents( + + 'reconfigure', + + 'viewready' + ); + + me.bodyCls = me.bodyCls || ''; + me.bodyCls += (' ' + me.extraBodyCls); + + me.cls = me.cls || ''; + me.cls += (' ' + me.extraBaseCls); + + + delete me.autoScroll; + + + + if (!me.hasView) { + + + columns = me.headerCt.getGridColumns(); + + + if (store.buffered && !store.remoteSort) { + for (i = 0, len = columns.length; i < len; i++) { + columns[i].sortable = false; + } + } + + if (me.hideHeaders) { + me.headerCt.height = 0; + + me.headerCt.hiddenHeaders = true; + me.headerCt.addCls(me.hiddenHeaderCtCls); + me.addCls(me.hiddenHeaderCls); + + + if (Ext.isIEQuirks) { + me.headerCt.style = { + display: 'none' + }; + } + } + + me.relayHeaderCtEvents(me.headerCt); + me.features = me.features || []; + if (!Ext.isArray(me.features)) { + me.features = [me.features]; + } + me.dockedItems = [].concat(me.dockedItems || []); + me.dockedItems.unshift(me.headerCt); + me.viewConfig = me.viewConfig || {}; + + + + view = me.getView(); + + me.items = [view]; + me.hasView = true; + + + + if (!me.hideHeaders) { + view.on({ + scroll: { + fn: me.onHorizontalScroll, + element: 'el', + scope: me + } + }); + } + + + me.bindStore(store, true); + + me.mon(view, { + viewready: me.onViewReady, + refresh: me.onRestoreHorzScroll, + scope: me + }); + } + + + me.relayEvents(me.view, [ + + 'beforeitemmousedown', + + 'beforeitemmouseup', + + 'beforeitemmouseenter', + + 'beforeitemmouseleave', + + 'beforeitemclick', + + 'beforeitemdblclick', + + 'beforeitemcontextmenu', + + 'itemmousedown', + + 'itemmouseup', + + 'itemmouseenter', + + 'itemmouseleave', + + 'itemclick', + + 'itemdblclick', + + 'itemcontextmenu', + + 'beforecellclick', + + 'cellclick', + + 'beforecelldblclick', + + 'celldblclick', + + 'beforecellcontextmenu', + + 'cellcontextmenu', + + 'beforecellmousedown', + + 'cellmousedown', + + 'beforecellmouseup', + + 'cellmouseup', + + 'beforecellkeydown', + + 'cellkeydown', + + 'beforecontainermousedown', + + 'beforecontainermouseup', + + 'beforecontainermouseover', + + 'beforecontainermouseout', + + 'beforecontainerclick', + + 'beforecontainerdblclick', + + 'beforecontainercontextmenu', + + 'containermouseup', + + 'containermouseover', + + 'containermouseout', + + 'containerclick', + + 'containerdblclick', + + 'containercontextmenu', + + 'selectionchange', + + 'beforeselect', + + 'select', + + 'beforedeselect', + + 'deselect' + ]); + + me.callParent(arguments); + me.addStateEvents(['columnresize', 'columnmove', 'columnhide', 'columnshow', 'sortchange', 'filterchange']); + + + if (!me.lockable && me.headerCt) { + me.headerCt.on('afterlayout', me.onRestoreHorzScroll, me); + } + }, + + + hasLockedColumns: function(columns) { + var i, + len, + column; + + + if (Ext.isObject(columns)) { + columns = columns.items; + } + for (i = 0, len = columns.length; i < len; i++) { + column = columns[i]; + if (!column.processed && column.locked) { + return true; + } + } + }, + + relayHeaderCtEvents: function (headerCt) { + this.relayEvents(headerCt, [ + + 'columnresize', + + 'columnmove', + + 'columnhide', + + 'columnshow', + + 'columnschanged', + + 'sortchange', + + 'headerclick', + + 'headercontextmenu', + + 'headertriggerclick' + ]); + }, + + getState: function(){ + var me = this, + state = me.callParent(), + storeState = me.store.getState(); + + state = me.addPropertyToState(state, 'columns', me.headerCt.getColumnsState()); + + if (storeState) { + state.storeState = storeState; + } + return state; + }, + + applyState: function(state) { + var me = this, + sorter = state.sort, + storeState = state.storeState, + store = me.store, + columns = state.columns; + + delete state.columns; + + + + me.callParent(arguments); + + if (columns) { + me.headerCt.applyColumnsState(columns); + } + + + if (sorter) { + if (store.remoteSort) { + + store.sort({ + property: sorter.property, + direction: sorter.direction, + root: sorter.root + }, null, false); + } else { + store.sort(sorter.property, sorter.direction); + } + } + + else if (storeState) { + store.applyState(storeState); + } + }, + + + getStore: function(){ + return this.store; + }, + + + getView: function() { + var me = this, + sm; + + if (!me.view) { + sm = me.getSelectionModel(); + + + Ext.widget(Ext.apply({ + + + grid: me, + deferInitialRefresh: me.deferRowRender !== false, + trackOver: me.trackMouseOver !== false, + scroll: me.scroll, + xtype: me.viewType, + store: me.store, + headerCt: me.headerCt, + columnLines: me.columnLines, + rowLines: me.rowLines, + selModel: sm, + features: me.features, + panel: me, + emptyText: me.emptyText || '' + }, me.viewConfig)); + + + + + + if (me.view.emptyText) { + me.view.emptyText = '
' + me.view.emptyText + '
'; + } + + + me.view.getComponentLayout().headerCt = me.headerCt; + + me.mon(me.view, { + uievent: me.processEvent, + scope: me + }); + sm.view = me.view; + me.headerCt.view = me.view; + } + return me.view; + }, + + + setAutoScroll: Ext.emptyFn, + + + processEvent: function(type, view, cell, recordIndex, cellIndex, e, record, row) { + var me = this, + header; + + if (cellIndex !== -1) { + header = me.columnManager.getColumns()[cellIndex]; + return header.processEvent.apply(header, arguments); + } + }, + + + determineScrollbars: function () { + }, + + + invalidateScroller: function () { + }, + + scrollByDeltaY: function(yDelta, animate) { + this.getView().scrollBy(0, yDelta, animate); + }, + + scrollByDeltaX: function(xDelta, animate) { + this.getView().scrollBy(xDelta, 0, animate); + }, + + afterCollapse: function() { + var me = this; + me.saveScrollPos(); + me.saveScrollPos(); + me.callParent(arguments); + }, + + afterExpand: function() { + var me = this; + me.callParent(arguments); + me.restoreScrollPos(); + me.restoreScrollPos(); + }, + + saveScrollPos: Ext.emptyFn, + + restoreScrollPos: Ext.emptyFn, + + onHeaderResize: function(){ + this.delayScroll(); + }, + + + onHeaderMove: function(headerCt, header, colsToMove, fromIdx, toIdx) { + var me = this; + + + + if (me.optimizedColumnMove === false) { + me.view.refresh(); + } + + + else { + me.view.moveColumn(fromIdx, toIdx, colsToMove); + } + me.delayScroll(); + }, + + + onHeaderHide: function(headerCt, header) { + this.view.refresh(); + this.delayScroll(); + }, + + onHeaderShow: function(headerCt, header) { + this.view.refresh(); + this.delayScroll(); + }, + + delayScroll: function(){ + var target = this.getScrollTarget().el; + if (target) { + this.scrollTask.delay(10, null, null, [target.dom.scrollLeft]); + } + }, + + + onViewReady: function() { + this.fireEvent('viewready', this); + }, + + + onRestoreHorzScroll: function() { + var left = this.scrollLeftPos; + if (left) { + + this.syncHorizontalScroll(left, true); + } + }, + + getScrollerOwner: function() { + var rootCmp = this; + if (!this.scrollerOwner) { + rootCmp = this.up('[scrollerOwner]'); + } + return rootCmp; + }, + + + getLhsMarker: function() { + var me = this; + return me.lhsMarker || (me.lhsMarker = Ext.DomHelper.append(me.el, { + cls: me.resizeMarkerCls + }, true)); + }, + + + getRhsMarker: function() { + var me = this; + + return me.rhsMarker || (me.rhsMarker = Ext.DomHelper.append(me.el, { + cls: me.resizeMarkerCls + }, true)); + }, + + + getSelectionModel: function(){ + var me = this, + selModel = me.selModel, + applyMode, mode, type; + + if (!selModel) { + selModel = {}; + + applyMode = true; + } + + if (!selModel.events) { + + type = selModel.selType || me.selType; + applyMode = !selModel.mode; + selModel = me.selModel = Ext.create('selection.' + type, selModel); + } + + if (me.simpleSelect) { + mode = 'SIMPLE'; + } else if (me.multiSelect) { + mode = 'MULTI'; + } + + Ext.applyIf(selModel, { + allowDeselect: me.allowDeselect + }); + + if (mode && applyMode) { + selModel.setSelectionMode(mode); + } + + if (!selModel.hasRelaySetup) { + me.relayEvents(selModel, [ + 'selectionchange', 'beforeselect', 'beforedeselect', 'select', 'deselect' + ]); + selModel.hasRelaySetup = true; + } + + + + if (me.disableSelection) { + selModel.locked = true; + } + return selModel; + }, + + getScrollTarget: function(){ + var owner = this.getScrollerOwner(), + items = owner.query('tableview'); + + return items[1] || items[0]; + }, + + onHorizontalScroll: function(event, target) { + this.syncHorizontalScroll(target.scrollLeft); + }, + + syncHorizontalScroll: function(left, setBody) { + var me = this, + scrollTarget; + + setBody = setBody === true; + + + if (me.rendered && (setBody || left !== me.scrollLeftPos)) { + + + if (setBody) { + scrollTarget = me.getScrollTarget(); + scrollTarget.el.dom.scrollLeft = left; + } + me.headerCt.el.dom.scrollLeft = left; + me.scrollLeftPos = left; + } + }, + + + onStoreLoad: Ext.emptyFn, + + getEditorParent: function() { + return this.body; + }, + + bindStore: function(store, initial) { + var me = this, + view = me.getView(), + bufferedStore = store && store.buffered, + bufferedRenderer; + + + me.store = store; + + + + + + bufferedRenderer = me.findPlugin('bufferedrenderer'); + if (bufferedRenderer) { + me.verticalScroller = bufferedRenderer; + + if (bufferedRenderer.store) { + bufferedRenderer.bindStore(store); + } + } else if (bufferedStore) { + me.verticalScroller = bufferedRenderer = me.addPlugin(Ext.apply({ + ptype: 'bufferedrenderer' + }, me.initialConfig.verticalScroller)); + } + + if (view.store !== store) { + if (initial) { + + view.bindStore(store, false, 'dataSource'); + } else { + + + view.bindStore(store, false); + } + } + + me.mon(store, { + load: me.onStoreLoad, + scope: me + }); + me.storeRelayers = me.relayEvents(store, [ + + 'filterchange' + ]); + + + if (bufferedRenderer) { + me.invalidateScrollerOnRefresh = false; + } + + if (me.invalidateScrollerOnRefresh !== undefined) { + view.preserveScrollOnRefresh = !me.invalidateScrollerOnRefresh; + } + }, + + unbindStore: function() { + var me = this, + store = me.store; + + if (store) { + me.store = null; + me.mun(store, { + load: me.onStoreLoad, + scope: me + }); + Ext.destroy(me.storeRelayers); + } + }, + + + reconfigure: function(store, columns) { + var me = this, + view = me.getView(), + originalDeferinitialRefresh, + oldStore = me.store, + headerCt = me.headerCt, + oldColumns = headerCt ? headerCt.items.getRange() : me.columns; + + + if (columns) { + columns = Ext.Array.slice(columns); + } + + me.fireEvent('beforereconfigure', me, store, columns, oldStore, oldColumns); + if (me.lockable) { + me.reconfigureLockable(store, columns); + } else { + Ext.suspendLayouts(); + if (columns) { + + delete me.scrollLeftPos; + headerCt.removeAll(); + headerCt.add(columns); + } + + + if (store && (store = Ext.StoreManager.lookup(store)) !== oldStore) { + + if (me.store) { + me.unbindStore(); + } + + + originalDeferinitialRefresh = view.deferInitialRefresh; + view.deferInitialRefresh = false; + me.bindStore(store); + view.deferInitialRefresh = originalDeferinitialRefresh; + } else { + me.getView().refresh(); + } + headerCt.setSortState(); + Ext.resumeLayouts(true); + } + me.fireEvent('reconfigure', me, store, columns, oldStore, oldColumns); + }, + + beforeDestroy: function(){ + var task = this.scrollTask; + if (task) { + task.cancel(); + this.scrollTask = null; + } + this.callParent(); + }, + + onDestroy: function(){ + if (this.lockable) { + this.destroyLockable(); + } + this.callParent(); + + } +}); + + +Ext.define('Ext.util.CSS', function() { + var CSS, + rules = null, + doc = document, + camelRe = /(-[a-z])/gi, + camelFn = function(m, a){ return a.charAt(1).toUpperCase(); }; + + return { + + singleton: true, + + rules: rules, + + initialized: false, + + constructor: function() { + + CSS = this; + }, + + + createStyleSheet : function(cssText, id) { + var ss, + head = doc.getElementsByTagName("head")[0], + styleEl = doc.createElement("style"); + + styleEl.setAttribute("type", "text/css"); + if (id) { + styleEl.setAttribute("id", id); + } + + if (Ext.isIE) { + head.appendChild(styleEl); + ss = styleEl.styleSheet; + ss.cssText = cssText; + } else { + try{ + styleEl.appendChild(doc.createTextNode(cssText)); + } catch(e) { + styleEl.cssText = cssText; + } + head.appendChild(styleEl); + ss = styleEl.styleSheet ? styleEl.styleSheet : (styleEl.sheet || doc.styleSheets[doc.styleSheets.length-1]); + } + CSS.cacheStyleSheet(ss); + return ss; + }, + + + removeStyleSheet : function(id) { + var existing = doc.getElementById(id); + if (existing) { + existing.parentNode.removeChild(existing); + } + }, + + + swapStyleSheet : function(id, url) { + var ss; + CSS.removeStyleSheet(id); + ss = doc.createElement("link"); + ss.setAttribute("rel", "stylesheet"); + ss.setAttribute("type", "text/css"); + ss.setAttribute("id", id); + ss.setAttribute("href", url); + doc.getElementsByTagName("head")[0].appendChild(ss); + }, + + + refreshCache : function() { + return CSS.getRules(true); + }, + + + cacheStyleSheet : function(ss) { + if (!rules) { + rules = CSS.rules = {}; + } + try { + var ssRules = ss.cssRules || ss.rules, + i = ssRules.length - 1, + imports = ss.imports, + len = imports ? imports.length : 0, + rule, j; + + + for (j = 0; j < len; ++j) { + CSS.cacheStyleSheet(imports[j]); + } + + for (; i >= 0; --i) { + rule = ssRules[i]; + + if (rule.styleSheet) { + CSS.cacheStyleSheet(rule.styleSheet); + } + CSS.cacheRule(rule, ss); + } + } catch(e) {} + }, + + cacheRule: function(cssRule, styleSheet) { + + if (cssRule.styleSheet) { + return CSS.cacheStyleSheet(cssRule.styleSheet); + } + + var selectorText = cssRule.selectorText, + selectorCount, j; + + if (selectorText) { + + + selectorText = selectorText.split(','); + selectorCount = selectorText.length; + for (j = 0; j < selectorCount; j++) { + + + rules[Ext.String.trim(selectorText[j]).toLowerCase()] = { + parentStyleSheet: styleSheet, + cssRule: cssRule + }; + }; + } + }, + + + getRules : function(refreshCache) { + var result = {}, + selector; + + if (rules === null || refreshCache) { + CSS.refreshCache(); + } + for (selector in rules) { + result[selector] = rules[selector].cssRule; + } + return result; + }, + + refreshCache: function() { + var ds = doc.styleSheets, + i = 0, + len = ds.length; + + rules = CSS.rules = {} + for (; i < len; i++) { + try { + if (!ds[i].disabled) { + CSS.cacheStyleSheet(ds[i]); + } + } catch(e) {} + } + }, + + + getRule: function(selector, refreshCache, rawCache) { + var i, result; + + if (!rules || refreshCache) { + CSS.refreshCache(); + } + if (!Ext.isArray(selector)) { + result = rules[selector.toLowerCase()] + if (result && !rawCache) { + result = result.cssRule; + } + return result || null; + } + for (i = 0; i < selector.length; i++) { + if (rules[selector[i]]) { + return rawCache ? rules[selector[i].toLowerCase()] : rules[selector[i].toLowerCase()].cssRule; + } + } + return null; + }, + + + createRule: function(styleSheet, selector, cssText) { + var result, + ruleSet = styleSheet.cssRules || styleSheet.rules, + index = ruleSet.length; + + if (styleSheet.insertRule) { + styleSheet.insertRule(selector + '{' + cssText + '}', index); + } else { + styleSheet.addRule(selector, cssText||' '); + } + CSS.cacheRule(result = ruleSet[index], styleSheet); + return result; + }, + + + updateRule : function(selector, property, value) { + var rule, i, styles; + if (!Ext.isArray(selector)) { + rule = CSS.getRule(selector); + if (rule) { + + if (arguments.length == 2) { + styles = Ext.Element.parseStyles(property); + for (property in styles) { + rule.style[property.replace(camelRe, camelFn)] = styles[property]; + } + } else { + rule.style[property.replace(camelRe, camelFn)] = value; + } + return true; + } + } else { + for (i = 0; i < selector.length; i++) { + if (CSS.updateRule(selector[i], property, value)) { + return true; + } + } + } + return false; + }, + + deleteRule: function(selector) { + var rule = CSS.getRule(selector, false, true), + styleSheet, index; + + if (rule) { + styleSheet = rule.parentStyleSheet; + index = Ext.Array.indexOf(styleSheet.cssRules || styleSheet.rules, rule.cssRule); + if (styleSheet.deleteRule) { + styleSheet.deleteRule(index); + } else { + styleSheet.removeRule(index); + } + delete rules[selector]; + } + } + }; +}); + + +Ext.define('Ext.view.TableLayout', { + extend: Ext.layout.component.Auto , + + + alias: ['layout.tableview'], + type: 'tableview', + + beginLayout: function(ownerContext) { + var me = this, + otherSide = me.owner.lockingPartner, + owner = me.owner; + + me.callParent(arguments); + + + if (otherSide) { + me.lockedGrid = me.owner.up('[lockable]'); + me.lockedGrid.needsRowHeightSync = true; + if (!ownerContext.lockingPartner) { + ownerContext.lockingPartner = ownerContext.context.getItem(otherSide, otherSide.el); + if (ownerContext.lockingPartner && !ownerContext.lockingPartner.lockingPartner) { + ownerContext.lockingPartner.lockingPartner = ownerContext; + } + } + } + + + ownerContext.headerContext = ownerContext.context.getCmp(me.headerCt); + + + if (me.owner.body.dom) { + ownerContext.bodyContext = ownerContext.getEl(me.owner.body); + } + if (Ext.isWebKit) { + owner.el.select(owner.getBodySelector()).setStyle('table-layout', 'auto'); + } + }, + + calculate: function(ownerContext) { + var me = this, + lockingPartner = me.lockingPartner, + owner = me.owner, + contentHeight = 0, + emptyEl; + + + + if (ownerContext.headerContext.hasProp('columnWidthsDone')) { + if (!me.setColumnWidths(ownerContext)) { + me.done = false; + return; + } + ownerContext.state.columnWidthsSynced = true; + if (ownerContext.bodyContext) { + emptyEl = me.owner.el.down('.' + owner.ownerCt.emptyCls, true); + if (!emptyEl) { + contentHeight = ownerContext.bodyContext.el.dom.offsetHeight; + ownerContext.bodyContext.setHeight(contentHeight, false); + } else { + contentHeight = emptyEl.offsetHeight; + } + ownerContext.setProp('contentHeight', contentHeight); + } + + + + if (lockingPartner && !lockingPartner.state.columnWidthsSynced) { + me.done = false; + } else { + me.callParent(arguments); + } + + } else { + me.done = false; + } + }, + + measureContentHeight: function(ownerContext) { + var lockingPartner = ownerContext.lockingPartner; + + + + if (!ownerContext.bodyContext || (ownerContext.state.columnWidthsSynced && (!lockingPartner || lockingPartner.state.columnWidthsSynced))) { + return this.callParent(arguments); + } + }, + + setColumnWidths: function(ownerContext) { + var me = this, + owner = me.owner, + context = ownerContext.context, + columns = me.headerCt.getVisibleGridColumns(), + column, + i = 0, len = columns.length, + tableWidth = 0, + columnLineWidth = 0, + childContext, + colWidth, + isContentBox = !Ext.isBorderBox; + + + if (context) { + context.currentLayout = me; + } + + + for (i = 0; i < len; i++) { + column = columns[i]; + childContext = context.getCmp(column); + colWidth = childContext.props.width; + if (isNaN(colWidth)) { + + + + + childContext.getProp('width'); + return false; + } + tableWidth += colWidth; + + if (isContentBox && owner.columnLines) { + + + + + if (!columnLineWidth) { + columnLineWidth = context.getCmp(column).borderInfo.width || 1; + } + colWidth -= columnLineWidth; + } + + + + + + + + + owner.body.select(owner.getColumnSizerSelector(column)).setWidth(colWidth); + + } + + owner.el.select(owner.getBodySelector()).setWidth(tableWidth); + return true; + }, + + finishedLayout: function() { + var me = this, + owner = me.owner; + + me.callParent(arguments); + + if (Ext.isWebKit) { + owner.el.select(owner.getBodySelector()).setStyle('table-layout', ''); + } + + + if (owner.refreshCounter && me.lockedGrid && me.lockedGrid.syncRowHeight && me.lockedGrid.needsRowHeightSync) { + me.lockedGrid.syncRowHeights(); + me.lockedGrid.needsRowHeightSync = false; + } + } +}); + + +Ext.define('Ext.view.NodeCache', { + constructor: function(view) { + this.view = view; + this.clear(); + this.el = new Ext.dom.AbstractElement.Fly(); + }, + + + clear: function(removeDom) { + var me = this, + elements = this.elements, + i, el; + + if (removeDom) { + for (i in elements) { + el = elements[i]; + el.parentNode.removeChild(el); + } + } + me.elements = {}; + me.count = me.startIndex = 0; + me.endIndex = -1; + }, + + + fill: function(newElements, startIndex) { + var me = this, + elements = me.elements = {}, + i, + len = newElements.length; + + if (!startIndex) { + startIndex = 0; + } + for (i = 0; i < len; i++) { + elements[startIndex + i] = newElements[i]; + } + me.startIndex = startIndex; + me.endIndex = startIndex + len - 1; + me.count = len; + return this; + }, + + insert: function(insertPoint, nodes) { + var me = this, + elements = me.elements, + i, + nodeCount = nodes.length; + + + if (me.count) { + + + if (insertPoint < me.count) { + for (i = me.endIndex + nodeCount; i >= insertPoint + nodeCount; i--) { + elements[i] = elements[i - nodeCount]; + elements[i].setAttribute('data-recordIndex', i); + } + } + me.endIndex = me.endIndex + nodeCount; + } + + else { + me.startIndex = insertPoint; + me.endIndex = insertPoint + nodeCount - 1; + } + + + for (i = 0; i < nodeCount; i++, insertPoint++) { + elements[insertPoint] = nodes[i]; + elements[insertPoint].setAttribute('data-recordIndex', insertPoint); + } + me.count += nodeCount; + }, + + item: function(index, asDom) { + var el = this.elements[index], + result = null; + + if (el) { + result = asDom ? this.elements[index] : this.el.attach(this.elements[index]); + } + return result; + }, + + first: function(asDom) { + return this.item(this.startIndex, asDom); + }, + + last: function(asDom) { + return this.item(this.endIndex, asDom); + }, + + getCount : function() { + return this.count; + }, + + slice: function(start, end) { + var elements = this.elements, + result = [], + i; + + if (arguments.length < 2) { + end = this.endIndex; + } else { + end = Math.min(this.endIndex, end - 1); + } + for (i = start||this.startIndex; i <= end; i++) { + result.push(elements[i]); + } + return result; + }, + + + replaceElement: function(el, replacement, domReplace) { + var elements = this.elements, + index = (typeof el === 'number') ? el : this.indexOf(el); + + if (index > -1) { + replacement = Ext.getDom(replacement); + if (domReplace) { + el = elements[index]; + el.parentNode.insertBefore(replacement, el); + Ext.removeNode(el); + replacement.setAttribute('data-recordIndex', index); + } + this.elements[index] = replacement; + } + return this; + }, + + + indexOf: function(el) { + var elements = this.elements, + index; + + el = Ext.getDom(el); + for (index = this.startIndex; index <= this.endIndex; index++) { + if (elements[index] === el) { + return index; + } + } + return -1; + }, + + removeRange: function(start, end, removeDom) { + var me = this, + elements = me.elements, + el, + i, removeCount, fromPos; + + if (end === undefined) { + end = me.count; + } else { + end = Math.min(me.endIndex + 1, end + 1); + } + if (!start) { + start = 0; + } + removeCount = end - start; + for (i = start, fromPos = end; i < me.endIndex; i++, fromPos++) { + + if (removeDom && i < end) { + Ext.removeNode(elements[i]); + } + + if (fromPos <= me.endIndex) { + el = elements[i] = elements[fromPos]; + el.setAttribute('data-recordIndex', i); + } + + else { + delete elements[i]; + } + } + me.count -= removeCount; + me.endIndex -= removeCount; + }, + + + removeElement: function(keys, removeDom) { + var me = this, + inKeys, + key, + elements = me.elements, + el, + deleteCount, + keyIndex = 0, index, + fromIndex; + + + + if (Ext.isArray(keys)) { + inKeys = keys; + keys = []; + deleteCount = inKeys.length; + for (keyIndex = 0; keyIndex < deleteCount; keyIndex++) { + key = inKeys[keyIndex]; + if (typeof key !== 'number') { + key = me.indexOf(key); + } + + + if (key >= me.startIndex && key <= me.endIndex) { + keys[keys.length] = key; + } + } + Ext.Array.sort(keys); + deleteCount = keys.length; + } else { + + if (keys < me.startIndex || keys > me.endIndex) { + return; + } + deleteCount = 1; + keys = [keys]; + } + + + + for (index = fromIndex = keys[0], keyIndex = 0; index <= me.endIndex; index++, fromIndex++) { + + + + + if (keyIndex < deleteCount && index === keys[keyIndex]) { + fromIndex++; + keyIndex++; + if (removeDom) { + Ext.removeNode(elements[index]); + } + } + + + if (fromIndex <= me.endIndex && fromIndex >= me.startIndex) { + el = elements[index] = elements[fromIndex]; + el.setAttribute('data-recordIndex', index); + } else { + delete elements[index]; + } + } + me.endIndex -= deleteCount; + me.count -= deleteCount; + }, + + + scroll: function(newRecords, direction, removeCount) { + var me = this, + elements = me.elements, + recCount = newRecords.length, + i, el, removeEnd, + newNodes, + nodeContainer = me.view.getNodeContainer(), + frag = document.createDocumentFragment(); + + + if (direction == -1) { + for (i = (me.endIndex - removeCount) + 1; i <= me.endIndex; i++) { + el = elements[i]; + delete elements[i]; + el.parentNode.removeChild(el); + } + me.endIndex -= removeCount; + + + newNodes = me.view.bufferRender(newRecords, me.startIndex -= recCount); + for (i = 0; i < recCount; i++) { + elements[me.startIndex + i] = newNodes[i]; + frag.appendChild(newNodes[i]); + } + nodeContainer.insertBefore(frag, nodeContainer.firstChild); + } + + + else { + removeEnd = me.startIndex + removeCount; + for (i = me.startIndex; i < removeEnd; i++) { + el = elements[i]; + delete elements[i]; + el.parentNode.removeChild(el); + } + me.startIndex = i; + + + newNodes = me.view.bufferRender(newRecords, me.endIndex + 1); + for (i = 0; i < recCount; i++) { + elements[me.endIndex += 1] = newNodes[i]; + frag.appendChild(newNodes[i]); + } + nodeContainer.appendChild(frag); + } + + me.count = me.endIndex - me.startIndex + 1; + } +}); + + +Ext.define('Ext.view.Table', { + extend: Ext.view.View , + alias: 'widget.tableview', + + + + + + + + + componentLayout: 'tableview', + + baseCls: Ext.baseCSSPrefix + 'grid-view', + + + firstCls: Ext.baseCSSPrefix + 'grid-cell-first', + + + lastCls: Ext.baseCSSPrefix + 'grid-cell-last', + + headerRowSelector: 'tr.' + Ext.baseCSSPrefix + 'grid-header-row', + + selectedItemCls: Ext.baseCSSPrefix + 'grid-row-selected', + beforeSelectedItemCls: Ext.baseCSSPrefix + 'grid-row-before-selected', + selectedCellCls: Ext.baseCSSPrefix + 'grid-cell-selected', + focusedItemCls: Ext.baseCSSPrefix + 'grid-row-focused', + beforeFocusedItemCls: Ext.baseCSSPrefix + 'grid-row-before-focused', + tableFocusedFirstCls: Ext.baseCSSPrefix + 'grid-table-focused-first', + tableSelectedFirstCls: Ext.baseCSSPrefix + 'grid-table-selected-first', + tableOverFirstCls: Ext.baseCSSPrefix + 'grid-table-over-first', + overItemCls: Ext.baseCSSPrefix + 'grid-row-over', + beforeOverItemCls: Ext.baseCSSPrefix + 'grid-row-before-over', + altRowCls: Ext.baseCSSPrefix + 'grid-row-alt', + dirtyCls: Ext.baseCSSPrefix + 'grid-dirty-cell', + rowClsRe: new RegExp('(?:^|\\s*)' + Ext.baseCSSPrefix + 'grid-row-(first|last|alt)(?:\\s+|$)', 'g'), + cellRe: new RegExp(Ext.baseCSSPrefix + 'grid-cell-([^\\s]+) ', ''), + positionBody: true, + + + trackOver: true, + + + getRowClass: null, + + + stripeRows: true, + + + markDirty : true, + + + + + tpl: '{%values.view.tableTpl.applyOut(values, out)%}', + + tableTpl: [ + '{%', + + 'var view=values.view,tableCls=["' + Ext.baseCSSPrefix + '" + view.id + "-table ' + Ext.baseCSSPrefix + 'grid-table"];', + 'if (view.columnLines) tableCls[tableCls.length]=view.ownerCt.colLinesCls;', + 'if (view.rowLines) tableCls[tableCls.length]=view.ownerCt.rowLinesCls;', + '%}', + '', + '{[view.renderColumnSizer(out)]}', + '{[view.renderTHead(values, out)]}', + '{[view.renderTFoot(values, out)]}', + '', + '{%', + 'view.renderRows(values.rows, values.viewStartIndex, out);', + '%}', + '', + '', + { + priority: 0 + } + ], + + rowTpl: [ + '{%', + 'var dataRowCls = values.recordIndex === -1 ? "" : " ' + Ext.baseCSSPrefix + 'grid-data-row";', + '%}', + '', + '' + + '{%', + 'parent.view.renderCell(values, parent.record, parent.recordIndex, xindex - 1, out, parent)', + '%}', + '', + '', + { + priority: 0 + } + ], + + cellTpl: [ + '', + '
{style}">{value}
', + '', { + priority: 0 + } + ], + + + refreshSelmodelOnRefresh: false, + + tableValues: {}, + + + + rowValues: { + itemClasses: [], + rowClasses: [] + }, + cellValues: { + classes: [ + Ext.baseCSSPrefix + 'grid-cell ' + Ext.baseCSSPrefix + 'grid-td' + ] + }, + + + renderBuffer: document.createElement('div'), + + constructor: function(config) { + + if (config.grid.isTree) { + config.baseCls = Ext.baseCSSPrefix + 'tree-view'; + } + this.callParent([config]); + }, + + initComponent: function() { + var me = this, + scroll = me.scroll; + + this.addEvents( + + 'beforecellclick', + + 'cellclick', + + 'beforecelldblclick', + + 'celldblclick', + + 'beforecellcontextmenu', + + 'cellcontextmenu', + + 'beforecellmousedown', + + 'cellmousedown', + + 'beforecellmouseup', + + 'cellmouseup', + + 'beforecellkeydown', + + 'cellkeydown' + ); + + + me.body = new Ext.dom.Element.Fly(); + me.body.id = me.id + 'gridBody'; + + + + me.autoScroll = undefined; + + + + if (!me.trackOver) { + me.overItemCls = null; + me.beforeOverItemCls = null; + } + + + if (scroll === true || scroll === 'both') { + me.autoScroll = true; + } else if (scroll === 'horizontal') { + me.overflowX = 'auto'; + } else if (scroll === 'vertical') { + me.overflowY = 'auto'; + } + me.selModel.view = me; + me.headerCt.view = me; + + + + me.grid.view = me; + me.initFeatures(me.grid); + delete me.grid; + + + me.tpl = me.getTpl('tpl'); + me.itemSelector = me.getItemSelector(); + me.all = new Ext.view.NodeCache(me); + me.callParent(); + }, + + + moveColumn: function(fromIdx, toIdx, colsToMove) { + var me = this, + fragment = (colsToMove > 1) ? document.createDocumentFragment() : undefined, + destinationCellIdx = toIdx, + colCount = me.getGridColumns().length, + lastIndex = colCount - 1, + doFirstLastClasses = (me.firstCls || me.lastCls) && (toIdx === 0 || toIdx == colCount || fromIdx === 0 || fromIdx == lastIndex), + i, + j, + rows, len, tr, cells, + tables; + + + + if (me.rendered && toIdx !== fromIdx) { + + + rows = me.el.query(me.getDataRowSelector()); + + if (toIdx > fromIdx && fragment) { + destinationCellIdx -= colsToMove; + } + + for (i = 0, len = rows.length; i < len; i++) { + tr = rows[i]; + cells = tr.childNodes; + + + if (doFirstLastClasses) { + + if (cells.length === 1) { + Ext.fly(cells[0]).addCls(me.firstCls); + Ext.fly(cells[0]).addCls(me.lastCls); + continue; + } + if (fromIdx === 0) { + Ext.fly(cells[0]).removeCls(me.firstCls); + Ext.fly(cells[1]).addCls(me.firstCls); + } else if (fromIdx === lastIndex) { + Ext.fly(cells[lastIndex]).removeCls(me.lastCls); + Ext.fly(cells[lastIndex - 1]).addCls(me.lastCls); + } + if (toIdx === 0) { + Ext.fly(cells[0]).removeCls(me.firstCls); + Ext.fly(cells[fromIdx]).addCls(me.firstCls); + } else if (toIdx === colCount) { + Ext.fly(cells[lastIndex]).removeCls(me.lastCls); + Ext.fly(cells[fromIdx]).addCls(me.lastCls); + } + } + + if (fragment) { + for (j = 0; j < colsToMove; j++) { + fragment.appendChild(cells[fromIdx]); + } + tr.insertBefore(fragment, cells[destinationCellIdx] || null); + } else { + tr.insertBefore(cells[fromIdx], cells[destinationCellIdx] || null); + } + } + + + tables = me.el.query(me.getBodySelector()); + for (i = 0, len = tables.length; i < len; i++) { + tr = tables[i]; + if (fragment) { + for (j = 0; j < colsToMove; j++) { + fragment.appendChild(tr.childNodes[fromIdx]); + } + tr.insertBefore(fragment, tr.childNodes[destinationCellIdx] || null); + } else { + tr.insertBefore(tr.childNodes[fromIdx], tr.childNodes[destinationCellIdx] || null); + } + } + } + }, + + + scrollToTop: Ext.emptyFn, + + + addElListener: function(eventName, fn, scope){ + this.mon(this, eventName, fn, scope, { + element: 'el' + }); + }, + + + getGridColumns: function() { + return this.ownerCt.columnManager.getColumns(); + }, + + + getHeaderAtIndex: function(index) { + return this.ownerCt.columnManager.getHeaderAtIndex(index); + }, + + + getCell: function(record, column) { + var row = this.getNode(record, true); + return Ext.fly(row).down(column.getCellSelector()); + }, + + + getFeature: function(id) { + var features = this.featuresMC; + if (features) { + return features.get(id); + } + }, + + + + findFeature: function(ftype) { + if (this.features) { + return Ext.Array.findBy(this.features, function(feature) { + if (feature.ftype === ftype) { + return true; + } + }); + } + }, + + + initFeatures: function(grid) { + var me = this, + i, + features, + feature, + len; + + me.tableTpl = Ext.XTemplate.getTpl(this, 'tableTpl'); + me.rowTpl = Ext.XTemplate.getTpl(this, 'rowTpl'); + me.cellTpl = Ext.XTemplate.getTpl(this, 'cellTpl'); + + me.featuresMC = new Ext.util.MixedCollection(); + features = me.features = me.constructFeatures(); + len = features ? features.length : 0; + for (i = 0; i < len; i++) { + feature = features[i]; + + + feature.view = me; + feature.grid = grid; + me.featuresMC.add(feature); + feature.init(grid); + } + }, + + renderTHead: function(values, out) { + var headers = values.view.headerFns, + len, i; + + if (headers) { + for (i = 0, len = headers.length; i < len; ++i) { + headers[i].call(this, values, out); + } + } + }, + + + + + + addHeaderFn: function(){ + var headers = this.headerFns; + if (!headers) { + headers = this.headerFns = []; + } + headers.push(fn); + }, + + renderTFoot: function(values, out){ + var footers = values.view.footerFns, + len, i; + + if (footers) { + for (i = 0, len = footers.length; i < len; ++i) { + footers[i].call(this, values, out); + } + } + }, + + addFooterFn: function(fn){ + var footers = this.footerFns; + if (!footers) { + footers = this.footerFns = []; + } + footers.push(fn); + }, + + addTableTpl: function(newTpl) { + return this.addTpl('tableTpl', newTpl); + }, + + addRowTpl: function(newTpl) { + return this.addTpl('rowTpl', newTpl); + }, + + addCellTpl: function(newTpl) { + return this.addTpl('cellTpl', newTpl); + }, + + addTpl: function(which, newTpl) { + var me = this, + tpl, + prevTpl; + + newTpl = Ext.Object.chain(newTpl); + + + + + + + if (!newTpl.isTemplate) { + newTpl.applyOut = me.tplApplyOut; + } + + + for (tpl = me[which]; newTpl.priority < tpl.priority; tpl = tpl.nextTpl) { + prevTpl = tpl; + } + + + if (prevTpl) { + prevTpl.nextTpl = newTpl; + } + + else { + me[which] = newTpl; + } + newTpl.nextTpl = tpl; + return newTpl; + }, + + tplApplyOut: function(values, out) { + if (this.before) { + if (this.before(values, out) === false) { + return; + } + } + this.nextTpl.applyOut(values, out); + if (this.after) { + this.after(values, out); + } + }, + + + constructFeatures: function() { + var me = this, + features = me.features, + feature, + result, + i = 0, len; + + if (features) { + result = []; + len = features.length; + for (; i < len; i++) { + feature = features[i]; + if (!feature.isFeature) { + feature = Ext.create('feature.' + feature.ftype, feature); + } + result[i] = feature; + } + } + return result; + }, + + beforeRender: function() { + var me = this; + me.callParent(); + + if (!me.enableTextSelection) { + me.protoEl.unselectable(); + } + }, + + + onViewScroll: function(e, t) { + this.callParent(arguments); + this.fireEvent('bodyscroll', e, t); + }, + + + + + createRowElement: function(record, index) { + var me = this, + div = me.renderBuffer; + + me.tpl.overwrite(div, me.collectData([record], index)); + + return Ext.fly(div).down(me.getNodeContainerSelector(), true).firstChild; + }, + + + + + bufferRender: function(records, index) { + var me = this, + div = me.renderBuffer; + + me.tpl.overwrite(div, me.collectData(records, index)); + return Ext.Array.toArray(Ext.fly(div).down(me.getNodeContainerSelector(), true).childNodes); + }, + + collectData: function(records, startIndex) { + this.rowValues.view = this; + + return { + view: this, + rows: records, + viewStartIndex: startIndex, + tableStyle: this.bufferedRenderer ? ('position:absolute;top:' + this.bufferedRenderer.bodyTop) : '' + }; + }, + + + + + collectNodes: function(targetEl) { + this.all.fill(this.getNodeContainer().childNodes, this.all.startIndex); + }, + + + + + + + + refreshSize: function() { + var me = this, + grid, + bodySelector = me.getBodySelector(); + + + + if (bodySelector) { + me.body.attach(me.el.child(bodySelector, true)); + } + + if (!me.hasLoadingHeight) { + grid = me.up('tablepanel'); + + + + Ext.suspendLayouts(); + + me.callParent(); + + + + grid.updateLayout(); + + Ext.resumeLayouts(true); + } + }, + + statics: { + getBoundView: function(node) { + return Ext.getCmp(node.getAttribute('data-boundView')); + } + }, + + getRecord: function(node) { + node = this.getNode(node); + if (node) { + var recordIndex = node.getAttribute('data-recordIndex'); + if (recordIndex) { + recordIndex = parseInt(recordIndex, 10); + if (recordIndex > -1) { + + + return this.store.data.getAt(recordIndex); + } + } + return this.dataSource.data.get(node.getAttribute('data-recordId')); + } + }, + + indexOf: function(node) { + node = this.getNode(node, false); + if (!node && node !== 0) { + return -1; + } + return this.all.indexOf(node); + }, + + indexInStore: function(node) { + node = this.getNode(node, true); + if (!node && node !== 0) { + return -1; + } + var recordIndex = node.getAttribute('data-recordIndex'); + if (recordIndex) { + return parseInt(recordIndex, 10); + } + return this.dataSource.indexOf(this.getRecord(node)); + }, + + renderRows: function(rows, viewStartIndex, out) { + var rowValues = this.rowValues, + rowCount = rows.length, + i; + + rowValues.view = this; + rowValues.columns = this.ownerCt.columnManager.getColumns(); + + for (i = 0; i < rowCount; i++, viewStartIndex++) { + rowValues.itemClasses.length = rowValues.rowClasses.length = 0; + this.renderRow(rows[i], viewStartIndex, out); + } + + + rowValues.view = rowValues.columns = rowValues.record = null; + }, + + + + renderColumnSizer: function(out) { + var columns = this.getGridColumns(), + len = columns.length, i, + column, width; + + for (i = 0; i < len; i++) { + column = columns[i]; + width = column.hidden ? 0 : (column.lastBox ? column.lastBox.width : Ext.grid.header.Container.prototype.defaultWidth); + out.push(''); + } + }, + + + renderRow: function(record, rowIdx, out) { + var me = this, + isMetadataRecord = rowIdx === -1, + selModel = me.selModel, + rowValues = me.rowValues, + itemClasses = rowValues.itemClasses, + rowClasses = rowValues.rowClasses, + cls, + rowTpl = me.rowTpl; + + + rowValues.record = record; + rowValues.recordId = record.internalId; + rowValues.recordIndex = rowIdx; + rowValues.rowId = me.getRowId(record); + rowValues.itemCls = rowValues.rowCls = ''; + if (!rowValues.columns) { + rowValues.columns = me.ownerCt.columnManager.getColumns(); + } + + itemClasses.length = rowClasses.length = 0; + + + + + if (!isMetadataRecord) { + itemClasses[0] = Ext.baseCSSPrefix + "grid-row"; + if (selModel && selModel.isRowSelected) { + if (selModel.isRowSelected(rowIdx + 1)) { + itemClasses.push(me.beforeSelectedItemCls); + } + if (selModel.isRowSelected(record)) { + itemClasses.push(me.selectedItemCls); + } + } + + if (me.stripeRows && rowIdx % 2 !== 0) { + rowClasses.push(me.altRowCls); + } + + if (me.getRowClass) { + cls = me.getRowClass(record, rowIdx, null, me.dataSource); + if (cls) { + rowClasses.push(cls); + } + } + } + + if (out) { + rowTpl.applyOut(rowValues, out); + } else { + return rowTpl.apply(rowValues); + } + }, + + + renderCell: function(column, record, recordIndex, columnIndex, out) { + var me = this, + selModel = me.selModel, + cellValues = me.cellValues, + classes = cellValues.classes, + fieldValue = record.data[column.dataIndex], + cellTpl = me.cellTpl, + value, clsInsertPoint; + + cellValues.record = record; + cellValues.column = column; + cellValues.recordIndex = recordIndex; + cellValues.columnIndex = columnIndex; + cellValues.cellIndex = columnIndex; + cellValues.align = column.align; + cellValues.tdCls = column.tdCls; + cellValues.innerCls = column.innerCls; + cellValues.style = cellValues.tdAttr = ""; + cellValues.unselectableAttr = me.enableTextSelection ? '' : 'unselectable="on"'; + + if (column.renderer && column.renderer.call) { + value = column.renderer.call(column.scope || me.ownerCt, fieldValue, cellValues, record, recordIndex, columnIndex, me.dataSource, me); + if (cellValues.css) { + + + record.cssWarning = true; + cellValues.tdCls += ' ' + cellValues.css; + delete cellValues.css; + } + } else { + value = fieldValue; + } + cellValues.value = (value == null || value === '') ? ' ' : value; + + + classes[1] = Ext.baseCSSPrefix + 'grid-cell-' + column.getItemId(); + + + + clsInsertPoint = 2; + + if (column.tdCls) { + classes[clsInsertPoint++] = column.tdCls; + } + if (me.markDirty && record.isModified(column.dataIndex)) { + classes[clsInsertPoint++] = me.dirtyCls; + } + if (column.isFirstVisible) { + classes[clsInsertPoint++] = me.firstCls; + } + if (column.isLastVisible) { + classes[clsInsertPoint++] = me.lastCls; + } + if (!me.enableTextSelection) { + classes[clsInsertPoint++] = Ext.baseCSSPrefix + 'unselectable'; + } + + classes[clsInsertPoint++] = cellValues.tdCls; + if (selModel && selModel.isCellSelected && selModel.isCellSelected(me, recordIndex, columnIndex)) { + classes[clsInsertPoint++] = (me.selectedCellCls); + } + + + classes.length = clsInsertPoint; + + cellValues.tdCls = classes.join(' '); + + cellTpl.applyOut(cellValues, out); + + + cellValues.column = null; + }, + + + getNode: function(nodeInfo, dataRow) { + var fly, + result = this.callParent(arguments); + + if (result && result.tagName) { + if (dataRow) { + if (!(fly = Ext.fly(result)).is(this.dataRowSelector)) { + return fly.down(this.dataRowSelector, true); + } + } else if (dataRow === false) { + if (!(fly = Ext.fly(result)).is(this.itemSelector)) { + return fly.up(this.itemSelector, null, true); + } + } + } + return result; + }, + + getRowId: function(record){ + return this.id + '-record-' + record.internalId; + }, + + constructRowId: function(internalId){ + return this.id + '-record-' + internalId; + }, + + getNodeById: function(id, dataRow){ + id = this.constructRowId(id); + return this.retrieveNode(id, dataRow); + }, + + getNodeByRecord: function(record, dataRow) { + var id = this.getRowId(record); + return this.retrieveNode(id, dataRow); + }, + + retrieveNode: function(id, dataRow){ + var result = this.el.getById(id, true), + itemSelector = this.itemSelector, + fly; + + if (dataRow === false && result) { + if (!(fly = Ext.fly(result)).is(itemSelector)) { + return fly.up(itemSelector, null, true); + } + } + return result; + }, + + + updateIndexes: Ext.emptyFn, + + + bodySelector: 'table', + + + nodeContainerSelector: 'tbody', + + + itemSelector: 'tr.' + Ext.baseCSSPrefix + 'grid-row', + + + dataRowSelector: 'tr.' + Ext.baseCSSPrefix + 'grid-data-row', + + + cellSelector: 'td.' + Ext.baseCSSPrefix + 'grid-cell', + + + sizerSelector: 'col.' + Ext.baseCSSPrefix + 'grid-cell', + + innerSelector: 'div.' + Ext.baseCSSPrefix + 'grid-cell-inner', + + getNodeContainer: function() { + return this.el.down(this.nodeContainerSelector, true); + }, + + + getBodySelector: function() { + return this.bodySelector + '.' + Ext.baseCSSPrefix + this.id + '-table'; + }, + + + getNodeContainerSelector: function() { + return this.nodeContainerSelector; + }, + + + getColumnSizerSelector: function(header) { + return this.sizerSelector + '-' + header.getItemId(); + }, + + + getItemSelector: function() { + return this.itemSelector; + }, + + + getDataRowSelector: function() { + return this.dataRowSelector; + }, + + + getCellSelector: function(header) { + var result = this.cellSelector; + if (header) { + result += '-' + header.getItemId(); + } + return result; + }, + + + getCellInnerSelector: function(header) { + return this.getCellSelector(header) + ' ' + this.innerSelector; + }, + + + addRowCls: function(rowInfo, cls) { + var row = this.getNode(rowInfo, false); + if (row) { + Ext.fly(row).addCls(cls); + } + }, + + + removeRowCls: function(rowInfo, cls) { + var row = this.getNode(rowInfo, false); + if (row) { + Ext.fly(row).removeCls(cls); + } + }, + + setHighlightedItem: function(item) { + var me = this, + highlighted = me.highlightedItem; + + if (highlighted && me.el.isAncestor(highlighted) && me.isRowStyleFirst(highlighted)) { + me.getRowStyleTableEl(highlighted).removeCls(me.tableOverFirstCls); + } + + if (item && me.isRowStyleFirst(item)) { + me.getRowStyleTableEl(item).addCls(me.tableOverFirstCls); + } + + me.callParent(arguments); + }, + + + onRowSelect : function(rowIdx) { + var me = this; + + me.addRowCls(rowIdx, me.selectedItemCls); + if (me.isRowStyleFirst(rowIdx)) { + me.getRowStyleTableEl(rowIdx).addCls(me.tableSelectedFirstCls); + } else { + me.addRowCls(rowIdx - 1, me.beforeSelectedItemCls); + } + }, + + + onRowDeselect : function(rowIdx) { + var me = this; + + me.removeRowCls(rowIdx, [me.selectedItemCls, me.focusedItemCls]); + if (me.isRowStyleFirst(rowIdx)) { + me.getRowStyleTableEl(rowIdx).removeCls([me.tableFocusedFirstCls, me.tableSelectedFirstCls]); + } else { + me.removeRowCls(rowIdx - 1, [me.beforeFocusedItemCls, me.beforeSelectedItemCls]); + } + }, + + onCellSelect: function(position) { + var cell = this.getCellByPosition(position); + if (cell) { + cell.addCls(this.selectedCellCls); + this.scrollCellIntoView(cell); + } + }, + + onCellDeselect: function(position) { + var cell = this.getCellByPosition(position, true); + if (cell) { + Ext.fly(cell).removeCls(this.selectedCellCls); + } + + }, + + getCellByPosition: function(position, returnDom) { + if (position) { + var row = this.getNode(position.row, true), + header = this.ownerCt.columnManager.getHeaderAtIndex(position.column); + + if (header && row) { + return Ext.fly(row).down(this.getCellSelector(header), returnDom); + } + } + return false; + }, + + getFocusEl: function() { + var me = this, + result; + + if (me.refreshCounter) { + result = me.focusedRow; + + + if (!(result && me.el.contains(result))) { + + + if (me.all.getCount() && (result = me.getNode(me.all.item(0).dom, true))) { + me.focusRow(result); + } else { + result = me.body; + } + } + } else { + return me.el; + } + return Ext.get(result); + }, + + + + onRowFocus: function(rowIdx, highlight, supressFocus) { + var me = this; + + if (highlight) { + me.addRowCls(rowIdx, me.focusedItemCls); + if (me.isRowStyleFirst(rowIdx)) { + me.getRowStyleTableEl(rowIdx).addCls(me.tableFocusedFirstCls); + } else { + me.addRowCls(rowIdx - 1, me.beforeFocusedItemCls); + } + if (!supressFocus) { + me.focusRow(rowIdx); + } + + } else { + me.removeRowCls(rowIdx, me.focusedItemCls); + if (me.isRowStyleFirst(rowIdx)) { + me.getRowStyleTableEl(rowIdx).removeCls(me.tableFocusedFirstCls); + } else { + me.removeRowCls(rowIdx - 1, me.beforeFocusedItemCls); + } + } + + if ((Ext.isIE6 || Ext.isIE7) && !me.ownerCt.rowLines) { + me.repaintRow(rowIdx) + } + }, + + focus: function(selectText, delay) { + var me = this, + saveScroll = Ext.isIE && !delay, + scrollPos; + + + if (saveScroll) { + scrollPos = me.el.dom.scrollLeft; + } + this.callParent(arguments); + if (saveScroll) { + me.el.dom.scrollLeft = scrollPos; + } + }, + + + focusRow: function(row, delay) { + var me = this, + rowIdx, + gridCollapsed = me.ownerCt && me.ownerCt.collapsed, + record; + + + if (me.isVisible(true) && !gridCollapsed && (row = me.getNode(row, true))) { + me.scrollRowIntoView(row); + record = me.getRecord(row); + rowIdx = me.indexInStore(row); + + me.selModel.setLastFocused(record); + me.focusedRow = row; + me.focus(false, delay, function() { + me.fireEvent('rowfocus', record, row, rowIdx); + }); + } + }, + + scrollRowIntoView: function(row) { + row = this.getNode(row, true); + if (row) { + Ext.fly(row).scrollIntoView(this.el, false); + } + }, + + focusCell: function(position) { + var me = this, + cell = me.getCellByPosition(position), + record = me.getRecord(position.row); + + me.focusRow(record); + if (cell) { + me.scrollCellIntoView(cell); + me.fireEvent('cellfocus', record, cell, position); + } + }, + + scrollCellIntoView: function(cell) { + + + if (cell.row != null && cell.column != null) { + cell = this.getCellByPosition(cell); + } + if (cell) { + Ext.fly(cell).scrollIntoView(this.el, true); + } + }, + + + scrollByDelta: function(delta, dir) { + dir = dir || 'scrollTop'; + var elDom = this.el.dom; + elDom[dir] = (elDom[dir] += delta); + }, + + + isDataRow: function(row) { + return Ext.fly(row).hasCls(Ext.baseCSSPrefix + 'grid-data-row'); + }, + + syncRowHeights: function(firstRow, secondRow) { + firstRow = Ext.get(firstRow); + secondRow = Ext.get(secondRow); + firstRow.dom.style.height = secondRow.dom.style.height = ''; + var me = this, + rowTpl = me.rowTpl, + firstRowHeight = firstRow.dom.offsetHeight, + secondRowHeight = secondRow.dom.offsetHeight; + + + if (firstRowHeight !== secondRowHeight) { + + + while (rowTpl) { + if (rowTpl.syncRowHeights) { + + if (rowTpl.syncRowHeights(firstRow, secondRow) === false) { + break; + } + } + rowTpl = rowTpl.nextTpl; + } + + + firstRowHeight = firstRow.dom.offsetHeight; + secondRowHeight = secondRow.dom.offsetHeight; + if (firstRowHeight !== secondRowHeight) { + + + firstRow = firstRow.down('[data-recordId]') || firstRow; + secondRow = secondRow.down('[data-recordId]') || secondRow; + + + if (firstRow && secondRow) { + firstRow.dom.style.height = secondRow.dom.style.height = ''; + firstRowHeight = firstRow.dom.offsetHeight; + secondRowHeight = secondRow.dom.offsetHeight; + + if (firstRowHeight > secondRowHeight) { + firstRow.setHeight(firstRowHeight); + secondRow.setHeight(firstRowHeight); + } else if (secondRowHeight > firstRowHeight) { + firstRow.setHeight(secondRowHeight); + secondRow.setHeight(secondRowHeight); + } + } + } + } + }, + + onIdChanged: function(store, rec, oldId, newId, oldInternalId){ + var me = this, + rowDom; + + if (me.viewReady) { + rowDom = me.getNodeById(oldInternalId); + if (rowDom) { + rowDom.setAttribute('data-recordId', rec.internalId); + rowDom.id = me.getRowId(rec); + } + } + }, + + + onUpdate : function(store, record, operation, changedFieldNames) { + var me = this, + rowTpl = me.rowTpl, + index, + oldRow, oldRowDom, + newRowDom, + newAttrs, attLen, attName, attrIndex, + overItemCls, beforeOverItemCls, + focusedItemCls, beforeFocusedItemCls, + selectedItemCls, beforeSelectedItemCls, + columns; + + if (me.viewReady) { + + oldRowDom = me.getNodeByRecord(record, false); + + + if (oldRowDom) { + overItemCls = me.overItemCls; + beforeOverItemCls = me.overItemCls; + focusedItemCls = me.focusedItemCls; + beforeFocusedItemCls = me.beforeFocusedItemCls; + selectedItemCls = me.selectedItemCls; + beforeSelectedItemCls = me.beforeSelectedItemCls; + + index = me.indexInStore(record); + oldRow = Ext.fly(oldRowDom, '_internal'); + newRowDom = me.createRowElement(record, index); + if (oldRow.hasCls(overItemCls)) { + Ext.fly(newRowDom).addCls(overItemCls); + } + if (oldRow.hasCls(beforeOverItemCls)) { + Ext.fly(newRowDom).addCls(beforeOverItemCls); + } + if (oldRow.hasCls(focusedItemCls)) { + Ext.fly(newRowDom).addCls(focusedItemCls); + } + if (oldRow.hasCls(beforeFocusedItemCls)) { + Ext.fly(newRowDom).addCls(beforeFocusedItemCls); + } + if (oldRow.hasCls(selectedItemCls)) { + Ext.fly(newRowDom).addCls(selectedItemCls); + } + if (oldRow.hasCls(beforeSelectedItemCls)) { + Ext.fly(newRowDom).addCls(beforeSelectedItemCls); + } + columns = me.ownerCt.columnManager.getColumns(); + + + + + + if (Ext.isIE9m && oldRowDom.mergeAttributes) { + oldRowDom.mergeAttributes(newRowDom, true); + } else { + newAttrs = newRowDom.attributes; + attLen = newAttrs.length; + for (attrIndex = 0; attrIndex < attLen; attrIndex++) { + attName = newAttrs[attrIndex].name; + if (attName !== 'id') { + oldRowDom.setAttribute(attName, newAttrs[attrIndex].value); + } + } + } + + + + if (columns.length) { + me.updateColumns(record, me.getNode(oldRowDom, true), me.getNode(newRowDom, true), columns, changedFieldNames); + } + + + while (rowTpl) { + if (rowTpl.syncContent) { + if (rowTpl.syncContent(oldRowDom, newRowDom) === false) { + break; + } + } + rowTpl = rowTpl.nextTpl; + } + + + + me.fireEvent('itemupdate', record, index, oldRowDom); + me.refreshSize(); + } + } + }, + + updateColumns: function(record, oldRowDom, newRowDom, columns, changedFieldNames) { + var me = this, + newAttrs, attLen, attName, attrIndex, + colCount = columns.length, + colIndex, + column, + oldCell, newCell, + row, + + + + + editingPlugin = me.editingPlugin || (me.lockingPartner && me.ownerCt.ownerLockable.view.editingPlugin), + + + isEditing = editingPlugin && editingPlugin.editing, + cellSelector = me.getCellSelector(); + + + + if (oldRowDom.mergeAttributes) { + oldRowDom.mergeAttributes(newRowDom, true); + } else { + newAttrs = newRowDom.attributes; + attLen = newAttrs.length; + for (attrIndex = 0; attrIndex < attLen; attrIndex++) { + attName = newAttrs[attrIndex].name; + if (attName !== 'id') { + oldRowDom.setAttribute(attName, newAttrs[attrIndex].value); + } + } + } + + + for (colIndex = 0; colIndex < colCount; colIndex++) { + column = columns[colIndex]; + + + + if (me.shouldUpdateCell(record, column, changedFieldNames)) { + + + + cellSelector = me.getCellSelector(column); + oldCell = Ext.DomQuery.selectNode(cellSelector, oldRowDom); + newCell = Ext.DomQuery.selectNode(cellSelector, newRowDom); + + + if (isEditing) { + Ext.fly(oldCell).syncContent(newCell); + } + + else { + + row = oldCell.parentNode; + row.insertBefore(newCell, oldCell); + row.removeChild(oldCell); + } + } + } + }, + + shouldUpdateCell: function(record, column, changedFieldNames){ + + + + + if (column.hasCustomRenderer || !changedFieldNames) { + return true; + } + + if (changedFieldNames) { + var len = changedFieldNames.length, + i, field; + + for (i = 0; i < len; ++i) { + field = changedFieldNames[i]; + if (field === column.dataIndex || field === record.idProperty) { + return true; + } + } + } + return false; + }, + + + refresh: function() { + var me = this, + hasFocus = me.el && me.el.isAncestor(Ext.Element.getActiveElement()); + + me.callParent(arguments); + me.headerCt.setSortState(); + + + + if (me.el && !me.all.getCount() && me.headerCt && me.headerCt.tooNarrow) { + me.el.createChild({style:'position:absolute;height:1px;width:1px;left:' + (me.headerCt.getFullWidth() - 1) + 'px'}); + } + + if (hasFocus) { + me.selModel.onLastFocusChanged(null, me.selModel.lastFocused); + } + }, + + processItemEvent: function(record, row, rowIndex, e) { + + if (this.indexInStore(row) !== -1) { + var me = this, + cell = e.getTarget(me.getCellSelector(), row), + cellIndex, + map = me.statics().EventMap, + selModel = me.getSelectionModel(), + type = e.type, + features = me.features, + len = features.length, + i, result, feature, header; + + if (type == 'keydown' && !cell && selModel.getCurrentPosition) { + + cell = me.getCellByPosition(selModel.getCurrentPosition(), true); + } + + + if (cell) { + if (!cell.parentNode) { + + + return false; + } + + header = me.getHeaderByCell(cell); + cellIndex = Ext.Array.indexOf(me.getGridColumns(), header); + } else { + cellIndex = -1; + } + + result = me.fireEvent('uievent', type, me, cell, rowIndex, cellIndex, e, record, row); + + if (result === false || me.callParent(arguments) === false) { + me.selModel.onVetoUIEvent(type, me, cell, rowIndex, cellIndex, e, record, row); + return false; + } + + for (i = 0; i < len; ++i) { + feature = features[i]; + + + if (feature.wrapsItem) { + if (feature.vetoEvent(record, row, rowIndex, e) === false) { + + + me.processSpecialEvent(e); + return false; + } + } + } + + + if (type == 'mouseover' || type == 'mouseout') { + return true; + } + + if(!cell) { + + + return true; + } + + return !( + + (me['onBeforeCell' + map[type]](cell, cellIndex, record, row, rowIndex, e) === false) || + (me.fireEvent('beforecell' + type, me, cell, cellIndex, record, row, rowIndex, e) === false) || + (me['onCell' + map[type]](cell, cellIndex, record, row, rowIndex, e) === false) || + (me.fireEvent('cell' + type, me, cell, cellIndex, record, row, rowIndex, e) === false) + ); + } else { + + this.processSpecialEvent(e); + return false; + } + }, + + processSpecialEvent: function(e) { + var me = this, + features = me.features, + ln = features.length, + type = e.type, + i, feature, prefix, featureTarget, + beforeArgs, args, + panel = me.ownerCt; + + me.callParent(arguments); + + if (type == 'mouseover' || type == 'mouseout') { + return; + } + + for (i = 0; i < ln; i++) { + feature = features[i]; + if (feature.hasFeatureEvent) { + featureTarget = e.getTarget(feature.eventSelector, me.getTargetEl()); + if (featureTarget) { + prefix = feature.eventPrefix; + + + beforeArgs = feature.getFireEventArgs('before' + prefix + type, me, featureTarget, e); + args = feature.getFireEventArgs(prefix + type, me, featureTarget, e); + + if ( + + (me.fireEvent.apply(me, beforeArgs) === false) || + + (panel.fireEvent.apply(panel, beforeArgs) === false) || + + (me.fireEvent.apply(me, args) === false) || + + (panel.fireEvent.apply(panel, args) === false) + ) { + return false; + } + } + } + } + return true; + }, + + onCellMouseDown: Ext.emptyFn, + onCellMouseUp: Ext.emptyFn, + onCellClick: Ext.emptyFn, + onCellDblClick: Ext.emptyFn, + onCellContextMenu: Ext.emptyFn, + onCellKeyDown: Ext.emptyFn, + onBeforeCellMouseDown: Ext.emptyFn, + onBeforeCellMouseUp: Ext.emptyFn, + onBeforeCellClick: Ext.emptyFn, + onBeforeCellDblClick: Ext.emptyFn, + onBeforeCellContextMenu: Ext.emptyFn, + onBeforeCellKeyDown: Ext.emptyFn, + + + expandToFit: function(header) { + this.autoSizeColumn(header); + }, + + + autoSizeColumn: function(header) { + if (Ext.isNumber(header)) { + header = this.getGridColumns[header]; + } + if (header) { + if (header.isGroupHeader) { + header.autoSize(); + return; + } + delete header.flex; + header.setWidth(this.getMaxContentWidth(header)); + } + }, + + + getMaxContentWidth: function(header) { + var me = this, + cells = me.el.query(header.getCellInnerSelector()), + originalWidth = header.getWidth(), + i = 0, + ln = cells.length, + hasPaddingBug = Ext.supports.ScrollWidthInlinePaddingBug, + columnSizer = me.body.select(me.getColumnSizerSelector(header)), + max = Math.max, + paddingAdjust, maxWidth; + + if (hasPaddingBug && ln > 0) { + paddingAdjust = me.getCellPaddingAfter(cells[0]); + } + + + columnSizer.setWidth(1); + + + maxWidth = header.textEl.dom.offsetWidth + header.titleEl.getPadding('lr'); + for (; i < ln; i++) { + maxWidth = max(maxWidth, cells[i].scrollWidth); + } + if (hasPaddingBug) { + + maxWidth += paddingAdjust; + } + + + maxWidth = max(maxWidth, 40); + + + columnSizer.setWidth(originalWidth); + + return maxWidth; + }, + + getPositionByEvent: function(e) { + var me = this, + cellNode = e.getTarget(me.cellSelector), + rowNode = e.getTarget(me.itemSelector), + record = me.getRecord(rowNode), + header = me.getHeaderByCell(cellNode); + + return me.getPosition(record, header); + }, + + getHeaderByCell: function(cell) { + if (cell) { + var match = cell.className.match(this.cellRe); + if (match && match[1]) { + return this.ownerCt.columnManager.getHeaderById(match[1]); + } + } + return false; + }, + + + walkCells: function(pos, direction, e, preventWrap, verifierFn, scope) { + + + + if (!pos) { + return false; + } + + var me = this, + row = pos.row, + column = pos.column, + rowCount = me.dataSource.getCount(), + lastCol = me.ownerCt.columnManager.getColumns().length - 1, + newRow = row, + newColumn = column, + activeHeader = me.ownerCt.columnManager.getHeaderAtIndex(column); + + + if (!activeHeader || activeHeader.hidden || !rowCount) { + return false; + } + + e = e || {}; + direction = direction.toLowerCase(); + switch (direction) { + case 'right': + + if (column === lastCol) { + + if (preventWrap || row === rowCount - 1) { + return false; + } + if (!e.ctrlKey) { + + newRow = me.walkRows(row, 1); + if (newRow !== row) { + newColumn = 0; + } + } + + } else { + if (!e.ctrlKey) { + newColumn = column + 1; + } else { + newColumn = lastCol; + } + } + break; + + case 'left': + + if (column === 0) { + + if (preventWrap || row === 0) { + return false; + } + if (!e.ctrlKey) { + + newRow = me.walkRows(row, -1); + if (newRow !== row) { + newColumn = lastCol; + } + } + + } else { + if (!e.ctrlKey) { + newColumn = column - 1; + } else { + newColumn = 0; + } + } + break; + + case 'up': + + if (row === 0) { + return false; + + } else { + if (!e.ctrlKey) { + newRow = me.walkRows(row, -1); + } else { + + newRow = me.walkRows(-1, 1); + } + } + break; + + case 'down': + + if (row === rowCount - 1) { + return false; + + } else { + if (!e.ctrlKey) { + newRow = me.walkRows(row, 1); + } else { + + newRow = me.walkRows(rowCount, -1); + } + } + break; + } + + if (verifierFn && verifierFn.call(scope || me, {row: newRow, column: newColumn}) !== true) { + return false; + } else { + return new Ext.grid.CellContext(me).setPosition(newRow, newColumn); + } + }, + + + walkRows: function(startRow, distance) { + + + var me = this, + moved = 0, + lastValid = startRow, + node, + last = (me.dataSource.buffered ? me.dataSource.getTotalCount() : me.dataSource.getCount()) - 1, + limit = (distance < 0) ? 0 : last, + increment = limit ? 1 : -1, + result = startRow; + + do { + + if (limit ? result >= limit : result <= 0) { + return lastValid || limit; + } + + + result += increment; + + + + if ((node = Ext.fly(me.getNode(result, true))) && node.isVisible(true)) { + moved += increment; + lastValid = result; + } + } while (moved !== distance); + return result; + }, + + + walkRecs: function(startRec, distance) { + + + var me = this, + moved = 0, + lastValid = startRec, + node, + last = (me.store.buffered ? me.store.getTotalCount() : me.store.getCount()) - 1, + limit = (distance < 0) ? 0 : last, + increment = limit ? 1 : -1, + testIndex = me.store.indexOf(startRec), + rec; + + do { + + if (limit ? testIndex >= limit : testIndex <= 0) { + return lastValid; + } + + + testIndex += increment; + + + + rec = me.store.getAt(testIndex); + if ((node = Ext.fly(me.getNodeByRecord(rec, true))) && node.isVisible(true)) { + moved += increment; + lastValid = rec; + } + } while (moved !== distance); + return lastValid; + }, + + getFirstVisibleRowIndex: function() { + var me = this, + count = (me.dataSource.buffered ? me.dataSource.getTotalCount() : me.dataSource.getCount()), + result = me.indexOf(me.all.first()) - 1; + + do { + result += 1; + if (result === count) { + return; + } + } while (!Ext.fly(me.getNode(result, true)).isVisible(true)); + return result; + }, + + getLastVisibleRowIndex: function() { + var me = this, + result = me.indexOf(me.all.last()); + + do { + result -= 1; + if (result === -1) { + return; + } + } while (!Ext.fly(me.getNode(result, true)).isVisible(true)); + return result; + }, + + getHeaderCt: function() { + return this.headerCt; + }, + + getPosition: function(record, header) { + return new Ext.grid.CellContext(this).setPosition(record, header); + }, + + beforeDestroy: function() { + var me = this; + + if (me.rendered) { + me.el.removeAllListeners(); + } + me.callParent(arguments); + }, + + onDestroy: function() { + var me = this, + features = me.featuresMC, + len, + i; + + if (features) { + for (i = 0, len = features.getCount(); i < len; ++i) { + features.getAt(i).destroy(); + } + } + me.featuresMC = null; + this.callParent(arguments); + }, + + + onAdd: function(ds, records, index) { + this.callParent(arguments); + this.doStripeRows(index); + }, + + + onRemove: function(ds, records, indexes) { + this.callParent(arguments); + this.doStripeRows(indexes[0]); + }, + + + doStripeRows: function(startRow, endRow) { + var me = this, + rows, + rowsLn, + i, + row; + + + if (me.rendered && me.stripeRows) { + rows = me.getNodes(startRow, endRow); + + for (i = 0, rowsLn = rows.length; i < rowsLn; i++) { + row = rows[i]; + + row.className = row.className.replace(me.rowClsRe, ' '); + startRow++; + + if (startRow % 2 === 0) { + row.className += (' ' + me.altRowCls); + } + } + } + }, + + repaintRow: function(rowIdx) { + var node = this.getNode(rowIdx), + tds = node.childNodes, + i = tds.length; + + while (i--) { + tds[i].className = tds[i].className; + } + }, + + + + + + getRowStyleTableEl: function(item ) { + var me = this; + + if (!item.tagName) { + item = this.getNode(item); + } + + return (me.isGrouping ? Ext.fly(item) : this.el).down('table.x-grid-table'); + }, + + + + + + isRowStyleFirst: function(item ) { + var me = this, + index; + + + if (item === -1) { + return false; + } + + if (!item.tagName) { + index = item; + item = this.getNode(item); + } else { + index = me.indexOf(item); + } + + return (!index || me.isGrouping && Ext.fly(item).hasCls(Ext.baseCSSPrefix + 'grid-group-row')); + }, + + getCellPaddingAfter: function(cell) { + return Ext.fly(cell).getPadding('r'); + } + +}); + + +Ext.define('Ext.grid.View', { + extend: Ext.view.Table , + alias: 'widget.gridview', + + + stripeRows: true, + + autoScroll: true +}); + + +Ext.define('Ext.grid.Panel', { + extend: Ext.panel.Table , + + alias: ['widget.gridpanel', 'widget.grid'], + alternateClassName: ['Ext.list.ListView', 'Ext.ListView', 'Ext.grid.GridPanel'], + viewType: 'gridview', + + lockable: false, + + + rowLines: true + + + + + + + + + +}); + + +Ext.define('Ext.grid.plugin.BufferedRendererTableView', { + override: 'Ext.view.Table', + + + onAdd: function(store, records, index) { + var me = this, + bufferedRenderer = me.bufferedRenderer, + rows = me.all; + + + if (me.rendered && bufferedRenderer && (rows.getCount() + records.length) > bufferedRenderer.viewSize) { + + + if (index < rows.startIndex + bufferedRenderer.viewSize && (index + records.length) > rows.startIndex) { + me.refreshView(); + } + + else { + bufferedRenderer.stretchView(me, bufferedRenderer.getScrollHeight()); + } + } + + + + else { + me.callParent([store, records, index]); + } + }, + + onRemove: function(store, records, indices) { + var me = this, + bufferedRenderer = me.bufferedRenderer; + + + me.callParent([store, records, indices]); + + + + + + if (me.rendered && bufferedRenderer) { + if (me.dataSource.getCount() > bufferedRenderer.viewSize) { + me.refreshView(); + } + + else { + bufferedRenderer.stretchView(me, bufferedRenderer.getScrollHeight()); + } + } + }, + + + onDataRefresh: function() { + var me = this; + + if (me.bufferedRenderer) { + + me.all.clear(); + me.bufferedRenderer.onStoreClear(); + } + me.callParent(); + } +}); + + +Ext.define('Ext.grid.RowEditorButtons', { + extend: Ext.container.Container , + alias: 'widget.roweditorbuttons', + + frame: true, + shrinkWrap: true, + position: 'bottom', + + constructor: function(config) { + var me = this, + rowEditor = config.rowEditor, + cssPrefix = Ext.baseCSSPrefix, + plugin = rowEditor.editingPlugin; + + config = Ext.apply({ + baseCls: cssPrefix + 'grid-row-editor-buttons', + defaults: { + xtype: 'button', + ui: rowEditor.buttonUI, + scope: plugin, + flex: 1, + minWidth: Ext.panel.Panel.prototype.minButtonWidth + }, + items: [{ + cls: cssPrefix + 'row-editor-update-button', + itemId: 'update', + handler: plugin.completeEdit, + text: rowEditor.saveBtnText, + disabled: rowEditor.updateButtonDisabled + }, { + cls: cssPrefix + 'row-editor-cancel-button', + handler: plugin.cancelEdit, + text: rowEditor.cancelBtnText + }] + }, config); + + me.callParent([config]); + + me.addClsWithUI(me.position); + }, + + setButtonPosition: function(position) { + var me = this; + + me.removeClsWithUI(me.position); + me.position = position; + me.addClsWithUI(position); + }, + + getFramingInfoCls: function(){ + return this.baseCls + '-' + this.ui + '-' + this.position; + }, + + getFrameInfo: function() { + var frameInfo = this.callParent(); + + + + + frameInfo.top = true; + + return frameInfo; + } +}); + + + + + + + + + + +Ext.define('Ext.grid.RowEditor', { + extend: Ext.form.Panel , + alias: 'widget.roweditor', + + + + + + + + + saveBtnText : 'Update', + + + cancelBtnText: 'Cancel', + + + errorsText: 'Errors', + + + dirtyText: 'You need to commit or cancel your changes', + + + lastScrollLeft: 0, + lastScrollTop: 0, + + border: false, + + buttonUI: 'default', + + + + hideMode: 'offsets', + + initComponent: function() { + var me = this, + grid = me.editingPlugin.grid, + Container = Ext.container.Container; + + me.cls = Ext.baseCSSPrefix + 'grid-editor ' + Ext.baseCSSPrefix + 'grid-row-editor'; + + me.layout = { + type: 'hbox', + align: 'middle' + }; + + me.lockable = grid.lockable; + + + if (me.lockable) { + me.items = [ + + me.lockedColumnContainer = new Container({ + id: grid.id + '-locked-editor-cells', + layout: { + type: 'hbox', + align: 'middle' + }, + + margin: '0 1 0 0' + }), + + + me.normalColumnContainer = new Container({ + flex: 1, + id: grid.id + '-normal-editor-cells', + layout: { + type: 'hbox', + align: 'middle' + } + }) + ]; + } else { + me.lockedColumnContainer = me.normalColumnContainer = me; + } + + me.callParent(arguments); + + if (me.fields) { + me.addFieldsForColumn(me.fields, true); + me.insertColumnEditor(me.fields); + delete me.fields; + } + + me.mon(me.hierarchyEventSource, { + scope: me, + show: me.repositionIfVisible + }); + me.getForm().trackResetOnLoad = true; + }, + + + + + + onGridResize: function() { + var me = this, + clientWidth = me.getClientWidth(), + grid = me.editingPlugin.grid, + gridBody = grid.body, + btns = me.getFloatingButtons(); + + me.setLocalX(gridBody.getOffsetsTo(grid)[0] + gridBody.getBorderWidth('l') - grid.el.getBorderWidth('l')); + + me.setWidth(clientWidth); + btns.setLocalX((clientWidth - btns.getWidth()) / 2); + }, + + onFieldRender: function(field){ + var me = this, + column = field.column; + + if (column.isVisible()) { + me.syncFieldWidth(column); + } else if (!column.rendered) { + + me.view.headerCt.on({ + afterlayout: Ext.Function.bind(me.syncFieldWidth, me, [column]), + single: true + }); + } + }, + + syncFieldWidth: function(column) { + var field = column.getEditor(), + width; + field._marginWidth = (field._marginWidth || field.el.getMargin('lr')); + width = column.getWidth() - field._marginWidth; + field.setWidth(width); + if (field.xtype === 'displayfield') { + + field.inputWidth = width; + } + }, + + onFieldChange: function() { + var me = this, + form = me.getForm(), + valid = form.isValid(); + if (me.errorSummary && me.isVisible()) { + me[valid ? 'hideToolTip' : 'showToolTip'](); + } + me.updateButton(valid); + me.isValid = valid; + }, + + updateButton: function(valid){ + var buttons = this.floatingButtons; + if (buttons) { + buttons.child('#update').setDisabled(!valid); + } else { + + this.updateButtonDisabled = !valid; + } + }, + + afterRender: function() { + var me = this, + plugin = me.editingPlugin, + grid = plugin.grid, + view = grid.lockable ? grid.normalGrid.view : grid.view, + field; + + me.callParent(arguments); + + + me.scrollingView = view; + me.scrollingViewEl = view.el; + view.mon(me.scrollingViewEl, 'scroll', me.onViewScroll, me); + + + me.mon(me.el, { + click: Ext.emptyFn, + stopPropagation: true + }); + + + me.mon(grid, { + resize: me.onGridResize, + scope: me + }); + + me.el.swallowEvent([ + 'keypress', + 'keydown' + ]); + + me.fieldScroller = me.normalColumnContainer.layout.innerCt; + me.fieldScroller.dom.style.overflow = 'hidden'; + me.fieldScroller.on({ + scroll: me.onFieldContainerScroll, + scope: me + }); + + me.keyNav = new Ext.util.KeyNav(me.el, { + enter: plugin.completeEdit, + esc: plugin.onEscKey, + scope: plugin + }); + + me.mon(plugin.view, { + beforerefresh: me.onBeforeViewRefresh, + refresh: me.onViewRefresh, + itemremove: me.onViewItemRemove, + scope: me + }); + + + me.preventReposition = true; + Ext.Array.each(me.query('[isFormField]'), function(field) { + if (field.column.isVisible()) { + me.onColumnShow(field.column); + } + }, me); + delete me.preventReposition; + }, + + onBeforeViewRefresh: function(view) { + var me = this, + viewDom = view.el.dom; + + if (me.el.dom.parentNode === viewDom) { + viewDom.removeChild(me.el.dom); + } + }, + + onViewRefresh: function(view) { + var me = this, + context = me.context, + row; + + + if (context && (row = view.getNode(context.record, true))) { + context.row = row; + me.reposition(); + if (me.tooltip && me.tooltip.isVisible()) { + me.tooltip.setTarget(context.row); + } + } else { + me.editingPlugin.cancelEdit(); + } + }, + + onViewItemRemove: function(record, index) { + var context = this.context; + if (context && record === context.record) { + + this.editingPlugin.cancelEdit(); + } + }, + + onViewScroll: function() { + var me = this, + viewEl = me.editingPlugin.view.el, + scrollingViewEl = me.scrollingViewEl, + scrollTop = scrollingViewEl.dom.scrollTop, + scrollLeft = scrollingViewEl.getScrollLeft(), + scrollLeftChanged = scrollLeft !== me.lastScrollLeft, + scrollTopChanged = scrollTop !== me.lastScrollTop, + row; + + me.lastScrollTop = scrollTop; + me.lastScrollLeft = scrollLeft; + if (me.isVisible()) { + row = Ext.getDom(me.context.row.id); + + + if (row && viewEl.contains(row)) { + if (scrollTopChanged) { + + + me.context.row = row; + me.reposition(null, true); + if ((me.tooltip && me.tooltip.isVisible()) || me.hiddenTip) { + me.repositionTip(); + } + + me.syncEditorClip(); + } + } + + else { + me.setLocalY(-400); + } + } + + + if (me.rendered && scrollLeftChanged) { + me.syncFieldsHorizontalScroll(); + } + }, + + + syncFieldsHorizontalScroll: function() { + + this.fieldScroller.setScrollLeft(this.lastScrollLeft); + }, + + + onFieldContainerScroll: function() { + this.scrollingViewEl.setScrollLeft(this.fieldScroller.getScrollLeft()); + }, + + onColumnResize: function(column, width) { + var me = this; + + if (me.rendered) { + + me.onGridResize(); + me.onViewScroll(); + if (!column.isGroupHeader) { + me.syncFieldWidth(column); + me.repositionIfVisible(); + } + } + }, + + onColumnHide: function(column) { + if (!column.isGroupHeader) { + column.getEditor().hide(); + this.repositionIfVisible(); + } + }, + + onColumnShow: function(column) { + var me = this; + + if (me.rendered && !column.isGroupHeader) { + column.getEditor().show(); + me.syncFieldWidth(column); + if (!me.preventReposition) { + this.repositionIfVisible(); + } + } + }, + + onColumnMove: function(column, fromIdx, toIdx) { + var me = this, + i, incr = 1, len, field, fieldIdx, + fieldContainer = column.isLocked() ? me.lockedColumnContainer : me.normalColumnContainer; + + + if (column.isGroupHeader) { + Ext.suspendLayouts(); + column = column.getGridColumns(); + + if (toIdx > fromIdx) { + toIdx--; + incr = 0; + } + + this.addFieldsForColumn(column); + for (i = 0, len = column.length; i < len; i++, fromIdx += incr, toIdx += incr) { + field = column[i].getEditor(); + fieldIdx = fieldContainer.items.indexOf(field); + + + + if (fieldIdx === -1) { + fieldContainer.insert(toIdx, field); + } + + + else if (fieldIdx != toIdx) { + fieldContainer.move(fromIdx, toIdx); + } + } + Ext.resumeLayouts(true); + } else { + if (toIdx > fromIdx) { + toIdx--; + } + this.addFieldsForColumn(column); + field = column.getEditor(); + fieldIdx = fieldContainer.items.indexOf(field); + if (fieldIdx === -1) { + fieldContainer.insert(toIdx, field); + } + else if (fieldIdx != toIdx) { + fieldContainer.move(fromIdx, toIdx); + } + } + }, + + onColumnAdd: function(column) { + + + if (column.isGroupHeader) { + column = column.getGridColumns(); + } + + this.addFieldsForColumn(column); + this.insertColumnEditor(column); + this.preventReposition = false; + }, + + insertColumnEditor: function(column) { + var me = this, + fieldContainer, + len, i; + + if (Ext.isArray(column)) { + for (i = 0, len = column.length; i < len; i++) { + me.insertColumnEditor(column[i]); + } + return; + } + + if (!column.getEditor) { + return; + } + + fieldContainer = column.isLocked() ? me.lockedColumnContainer : me.normalColumnContainer; + + + fieldContainer.insert(column.getVisibleIndex(), column.getEditor()); + }, + + onColumnRemove: function(ct, column) { + column = column.isGroupHeader ? column.getGridColumns() : column; + this.removeColumnEditor(column); + }, + + removeColumnEditor: function(column) { + var me = this, + field, + len, i; + + if (Ext.isArray(column)) { + for (i = 0, len = column.length; i < len; i++) { + me.removeColumnEditor(column[i]); + } + return; + } + + if (column.hasEditor()) { + field = column.getEditor(); + if (field && field.ownerCt) { + field.ownerCt.remove(field, false); + } + } + }, + + onColumnReplace: function(map, fieldId, column, oldColumn) { + this.onColumnRemove(oldColumn.ownerCt, oldColumn); + }, + + getFloatingButtons: function() { + var me = this, + btns = me.floatingButtons; + + if (!btns) { + me.floatingButtons = btns = new Ext.grid.RowEditorButtons({ + rowEditor: me + }); + } + return btns; + }, + + repositionIfVisible: function(c) { + var me = this, + view = me.view; + + + + if (c && (c == me || !c.el.isAncestor(view.el))) { + return; + } + + if (me.isVisible() && view.isVisible(true)) { + me.reposition(); + } + }, + + getRefOwner: function() { + return this.editingPlugin.grid; + }, + + + + + getRefItems: function() { + var me = this, + result; + + if (me.lockable) { + result = me.lockedColumnContainer.getRefItems(); + result.push.apply(result, me.normalColumnContainer.getRefItems()); + } else { + result = me.callParent(); + } + result.push.apply(result, me.getFloatingButtons().getRefItems()); + return result; + }, + + reposition: function(animateConfig, fromScrollHandler) { + var me = this, + context = me.context, + row = context && Ext.get(context.row), + yOffset = 0, + rowTop, + localY, + deltaY, + afterPosition; + + + if (row && Ext.isElement(row.dom)) { + + deltaY = me.syncButtonPosition(me.getScrollDelta()); + + if (!me.editingPlugin.grid.rowLines) { + + + + + yOffset = -parseInt(row.first().getStyle('border-bottom-width')); + } + rowTop = me.calculateLocalRowTop(row); + localY = me.calculateEditorTop(rowTop) + yOffset; + + + + + + if (!fromScrollHandler) { + afterPosition = function() { + if (deltaY) { + me.scrollingViewEl.scrollBy(0, deltaY, true); + } + me.focusContextCell(); + } + } + + me.syncEditorClip(); + + + + + if (animateConfig) { + me.animate(Ext.applyIf({ + to: { + top: localY + }, + duration: animateConfig.duration || 125, + callback: afterPosition + }, animateConfig)); + } else { + me.setLocalY(localY); + if (afterPosition) { + afterPosition(); + } + } + } + }, + + + getScrollDelta: function() { + var me = this, + scrollingViewDom = me.scrollingViewEl.dom, + context = me.context, + body = me.body, + deltaY = 0; + + if (context) { + deltaY = Ext.fly(context.row).getOffsetsTo(scrollingViewDom)[1] - body.getBorderPadding().beforeY; + if (deltaY > 0) { + deltaY = Math.max(deltaY + me.getHeight() + me.floatingButtons.getHeight() - + scrollingViewDom.clientHeight - body.getBorderWidth('b'), 0); + } + } + return deltaY; + }, + + + + + + calculateLocalRowTop: function(row) { + var grid = this.editingPlugin.grid; + return Ext.fly(row).getOffsetsTo(grid)[1] - grid.el.getBorderWidth('t') + this.lastScrollTop; + }, + + + + + calculateEditorTop: function(rowTop) { + return rowTop - this.body.getBorderPadding().beforeY - this.lastScrollTop; + }, + + getClientWidth: function() { + var me = this, + grid = me.editingPlugin.grid, + result; + + if (me.lockable) { + result = + grid.lockedGrid.getWidth() + + grid.normalGrid.view.el.dom.clientWidth - 1; + } + else { + result = grid.view.el.dom.clientWidth; + } + return result; + }, + + getEditor: function(fieldInfo) { + var me = this; + + if (Ext.isNumber(fieldInfo)) { + + + + return me.query('[isFormField]')[fieldInfo]; + } else if (fieldInfo.isHeader && !fieldInfo.isGroupHeader) { + return fieldInfo.getEditor(); + } + }, + + addFieldsForColumn: function(column, initial) { + var me = this, + i, + length, field; + + if (Ext.isArray(column)) { + for (i = 0, length = column.length; i < length; i++) { + me.addFieldsForColumn(column[i], initial); + } + return; + } + + if (column.getEditor) { + + + field = column.getEditor(null, { + xtype: 'displayfield', + + + getModelData: function() { + return null; + } + }); + if (column.align === 'right') { + field.fieldStyle = 'text-align:right'; + } + + if (column.xtype === 'actioncolumn') { + field.fieldCls += ' ' + Ext.baseCSSPrefix + 'form-action-col-field' + } + + if (me.isVisible() && me.context) { + if (field.is('displayfield')) { + me.renderColumnData(field, me.context.record, column); + } else { + field.suspendEvents(); + field.setValue(me.context.record.get(column.dataIndex)); + field.resumeEvents(); + } + } + if (column.hidden) { + me.onColumnHide(column); + } else if (column.rendered && !initial) { + + me.onColumnShow(column); + } + } + }, + + loadRecord: function(record) { + var me = this, + form = me.getForm(), + fields = form.getFields(), + items = fields.items, + length = items.length, + i, displayFields, + isValid; + + + for (i = 0; i < length; i++) { + items[i].suspendEvents(); + } + + form.loadRecord(record); + + for (i = 0; i < length; i++) { + items[i].resumeEvents(); + } + + isValid = form.isValid(); + if (me.errorSummary) { + if (isValid) { + me.hideToolTip(); + } else { + me.showToolTip(); + } + } + + me.updateButton(isValid); + + + displayFields = me.query('>displayfield'); + length = displayFields.length; + + for (i = 0; i < length; i++) { + me.renderColumnData(displayFields[i], record); + } + }, + + renderColumnData: function(field, record, activeColumn) { + var me = this, + grid = me.editingPlugin.grid, + headerCt = grid.headerCt, + view = me.scrollingView, + store = view.dataSource, + column = activeColumn || field.column, + value = record.get(column.dataIndex), + renderer = column.editRenderer || column.renderer, + metaData, + rowIdx, + colIdx; + + + if (renderer) { + metaData = { tdCls: '', style: '' }; + rowIdx = store.indexOf(record); + colIdx = headerCt.getHeaderIndex(column); + + value = renderer.call( + column.scope || headerCt.ownerCt, + value, + metaData, + record, + rowIdx, + colIdx, + store, + view + ); + } + + field.setRawValue(value); + field.resetOriginalValue(); + }, + + beforeEdit: function() { + var me = this, + scrollDelta; + + if (me.isVisible() && me.errorSummary && !me.autoCancel && me.isDirty()) { + + + scrollDelta = me.getScrollDelta(); + if (scrollDelta) { + me.scrollingViewEl.scrollBy(0, scrollDelta, true) + } + me.showToolTip(); + return false; + } + }, + + + startEdit: function(record, columnHeader) { + var me = this, + editingPlugin = me.editingPlugin, + grid = editingPlugin.grid, + context = me.context = editingPlugin.context; + + if (!me.rendered) { + me.width = me.getClientWidth(); + me.render(grid.el, grid.el.dom.firstChild); + me.getFloatingButtons().render(me.el); + + me.onViewScroll(); + } else { + me.syncFieldsHorizontalScroll(); + } + + if (me.isVisible()) { + me.reposition(true); + } else { + me.show(); + } + + + me.onGridResize(); + + + context.grid.getSelectionModel().select(record); + + + me.loadRecord(record); + }, + + + + + + syncButtonPosition: function(scrollDelta) { + var me = this, + floatingButtons = me.getFloatingButtons(), + scrollingViewElDom = me.scrollingViewEl.dom, + overflow = this.getScrollDelta() - (scrollingViewElDom.scrollHeight - + scrollingViewElDom.scrollTop - scrollingViewElDom.clientHeight); + + if (overflow > 0) { + if (!me._buttonsOnTop) { + floatingButtons.setButtonPosition('top'); + me._buttonsOnTop = true; + } + scrollDelta = 0; + } else if (me._buttonsOnTop) { + floatingButtons.setButtonPosition('bottom'); + me._buttonsOnTop = false; + } + + return scrollDelta; + }, + + + + syncEditorClip: function() { + var me = this, + overflow = me.getScrollDelta(), + btnHeight; + + if (overflow) { + + me.isOverflowing = true; + btnHeight = me.floatingButtons.getHeight(); + + if (overflow > 0) { + + me.clipBottom(Math.max(me.getHeight() - overflow + btnHeight, -btnHeight)); + } else if (overflow < 0) { + + overflow = Math.abs(overflow); + me.clipTop(Math.max(overflow, 0)); + } + } else if (me.isOverflowing) { + me.clearClip(); + me.isOverflowing = false; + } + }, + + + focusContextCell: function() { + var field = this.getEditor(this.context.column); + if (field && field.focus) { + field.focus(); + } + }, + + cancelEdit: function() { + var me = this, + form = me.getForm(), + fields = form.getFields(), + items = fields.items, + length = items.length, + i; + + me.hide(); + form.clearInvalid(); + + + for (i = 0; i < length; i++) { + items[i].suspendEvents(); + } + + form.reset(); + + for (i = 0; i < length; i++) { + items[i].resumeEvents(); + } + }, + + completeEdit: function() { + var me = this, + form = me.getForm(); + + if (!form.isValid()) { + return false; + } + + form.updateRecord(me.context.record); + me.hide(); + return true; + }, + + onShow: function() { + var me = this; + + me.callParent(arguments); + me.reposition(); + }, + + onHide: function() { + var me = this; + + me.callParent(arguments); + if (me.tooltip) { + me.hideToolTip(); + } + if (me.context) { + me.context.view.focusRow(me.context.record); + me.context = null; + } + }, + + isDirty: function() { + var me = this, + form = me.getForm(); + return form.isDirty(); + }, + + getToolTip: function() { + return this.tooltip || (this.tooltip = new Ext.tip.ToolTip({ + cls: Ext.baseCSSPrefix + 'grid-row-editor-errors', + title: this.errorsText, + autoHide: false, + closable: true, + closeAction: 'disable', + anchor: 'left', + anchorToTarget: false + })); + }, + + hideToolTip: function() { + var me = this, + tip = me.getToolTip(); + if (tip.rendered) { + tip.disable(); + } + me.hiddenTip = false; + }, + + showToolTip: function() { + var me = this, + tip = me.getToolTip(); + + tip.showAt([0, 0]); + tip.update(me.getErrors()); + me.repositionTip(); + tip.enable(); + }, + + repositionTip: function() { + var me = this, + tip = me.getToolTip(), + context = me.context, + row = Ext.get(context.row), + viewEl = me.scrollingViewEl, + viewHeight = viewEl.dom.clientHeight, + viewTop = me.lastScrollTop, + viewBottom = viewTop + viewHeight, + rowHeight = row.getHeight(), + rowTop = row.getOffsetsTo(me.context.view.body)[1], + rowBottom = rowTop + rowHeight; + + if (rowBottom > viewTop && rowTop < viewBottom) { + tip.showAt(tip.getAlignToXY(viewEl, 'tl-tr', [15, row.getOffsetsTo(viewEl)[1]])); + me.hiddenTip = false; + } else { + tip.hide(); + me.hiddenTip = true; + } + }, + + getErrors: function() { + var me = this, + errors = [], + fields = me.query('>[isFormField]'), + length = fields.length, + i; + + for (i = 0; i < length; i++) { + errors = errors.concat( + Ext.Array.map(fields[i].getErrors(), me.createErrorListItem) + ); + } + + + if (!errors.length && !me.autoCancel && me.isDirty()) { + errors[0] = me.createErrorListItem(me.dirtyText); + } + + return '
    ' + errors.join('') + '
'; + }, + + createErrorListItem: function(e) { + return '
  • ' + e + '
  • '; + }, + + beforeDestroy: function(){ + Ext.destroy(this.floatingButtons, this.tooltip); + this.callParent(); + }, + + clipBottom: function(value) { + this.el.setStyle('clip', 'rect(-1000px auto ' + value + 'px auto)'); + }, + + clipTop: function(value) { + this.el.setStyle('clip', 'rect(' + value + 'px auto 1000px auto)'); + }, + + clearClip: function(el) { + this.el.setStyle( + 'clip', + Ext.isIE8m || Ext.isIEQuirks ? 'rect(-1000px auto 1000px auto)' : 'auto' + ); + } +}); + + + +Ext.define('Ext.view.DropZone', { + extend: Ext.dd.DropZone , + + indicatorHtml: '
    ', + indicatorCls: Ext.baseCSSPrefix + 'grid-drop-indicator', + + constructor: function(config) { + var me = this; + Ext.apply(me, config); + + + + + + + if (!me.ddGroup) { + me.ddGroup = 'view-dd-zone-' + me.view.id; + } + + + + + me.callParent([me.view.el]); + }, + + + + fireViewEvent: function() { + var me = this, + result; + + me.lock(); + result = me.view.fireEvent.apply(me.view, arguments); + me.unlock(); + return result; + }, + + getTargetFromEvent : function(e) { + var node = e.getTarget(this.view.getItemSelector()), + mouseY, nodeList, testNode, i, len, box; + + + + if (!node) { + mouseY = e.getPageY(); + for (i = 0, nodeList = this.view.getNodes(), len = nodeList.length; i < len; i++) { + testNode = nodeList[i]; + box = Ext.fly(testNode).getBox(); + if (mouseY <= box.bottom) { + return testNode; + } + } + } + return node; + }, + + getIndicator: function() { + var me = this; + + if (!me.indicator) { + me.indicator = new Ext.Component({ + html: me.indicatorHtml, + cls: me.indicatorCls, + ownerCt: me.view, + floating: true, + shadow: false + }); + } + return me.indicator; + }, + + getPosition: function(e, node) { + var y = e.getXY()[1], + region = Ext.fly(node).getRegion(), + pos; + + if ((region.bottom - y) >= (region.bottom - region.top) / 2) { + pos = "before"; + } else { + pos = "after"; + } + return pos; + }, + + + containsRecordAtOffset: function(records, record, offset) { + if (!record) { + return false; + } + var view = this.view, + recordIndex = view.indexOf(record), + nodeBefore = view.getNode(recordIndex + offset, true), + recordBefore = nodeBefore ? view.getRecord(nodeBefore) : null; + + return recordBefore && Ext.Array.contains(records, recordBefore); + }, + + positionIndicator: function(node, data, e) { + var me = this, + view = me.view, + pos = me.getPosition(e, node), + overRecord = view.getRecord(node), + draggingRecords = data.records, + indicatorY; + + if (!Ext.Array.contains(draggingRecords, overRecord) && ( + pos == 'before' && !me.containsRecordAtOffset(draggingRecords, overRecord, -1) || + pos == 'after' && !me.containsRecordAtOffset(draggingRecords, overRecord, 1) + )) { + me.valid = true; + + if (me.overRecord != overRecord || me.currentPosition != pos) { + + indicatorY = Ext.fly(node).getY() - view.el.getY() - 1; + if (pos == 'after') { + indicatorY += Ext.fly(node).getHeight(); + } + me.getIndicator().setWidth(Ext.fly(view.el).getWidth()).showAt(0, indicatorY); + + + me.overRecord = overRecord; + me.currentPosition = pos; + } + } else { + me.invalidateDrop(); + } + }, + + invalidateDrop: function() { + if (this.valid) { + this.valid = false; + this.getIndicator().hide(); + } + }, + + + onNodeOver: function(node, dragZone, e, data) { + var me = this; + + if (!Ext.Array.contains(data.records, me.view.getRecord(node))) { + me.positionIndicator(node, data, e); + } + return me.valid ? me.dropAllowed : me.dropNotAllowed; + }, + + + + notifyOut: function(node, dragZone, e, data) { + var me = this; + + me.callParent(arguments); + me.overRecord = me.currentPosition = null + me.valid = false; + if (me.indicator) { + me.indicator.hide(); + } + }, + + + onContainerOver : function(dd, e, data) { + var me = this, + view = me.view, + count = view.dataSource.getCount(); + + + if (count) { + me.positionIndicator(view.all.last(), data, e); + } + + + else { + me.overRecord = me.currentPosition = null; + me.getIndicator().setWidth(Ext.fly(view.el).getWidth()).showAt(0, 0); + me.valid = true; + } + return me.dropAllowed; + }, + + onContainerDrop : function(dd, e, data) { + return this.onNodeDrop(dd, null, e, data); + }, + + onNodeDrop: function(targetNode, dragZone, e, data) { + var me = this, + dropHandled = false, + + + + + + + dropHandlers = { + wait: false, + processDrop: function () { + me.invalidateDrop(); + me.handleNodeDrop(data, me.overRecord, me.currentPosition); + dropHandled = true; + me.fireViewEvent('drop', targetNode, data, me.overRecord, me.currentPosition); + }, + + cancelDrop: function() { + me.invalidateDrop(); + dropHandled = true; + } + }, + performOperation = false; + + if (me.valid) { + performOperation = me.fireViewEvent('beforedrop', targetNode, data, me.overRecord, me.currentPosition, dropHandlers); + if (dropHandlers.wait) { + return; + } + + if (performOperation !== false) { + + if (!dropHandled) { + dropHandlers.processDrop(); + } + } + } + return performOperation; + }, + + destroy: function(){ + Ext.destroy(this.indicator); + delete this.indicator; + this.callParent(); + } +}); + + +Ext.define('Ext.grid.ViewDropZone', { + extend: Ext.view.DropZone , + + indicatorHtml: '
    ', + indicatorCls: Ext.baseCSSPrefix + 'grid-drop-indicator', + + handleNodeDrop : function(data, record, position) { + var view = this.view, + store = view.getStore(), + index, records, i, len; + + + if (data.copy) { + records = data.records; + data.records = []; + for (i = 0, len = records.length; i < len; i++) { + data.records.push(records[i].copy()); + } + } else { + + data.view.store.remove(data.records, data.view === view); + } + + if (record && position) { + index = store.indexOf(record); + + + if (position !== 'before') { + index++; + } + store.insert(index, data.records); + } + + else { + store.add(data.records); + } + + view.getSelectionModel().select(data.records); + } +}); + + +Ext.define('Ext.grid.plugin.HeaderResizer', { + extend: Ext.AbstractPlugin , + + alias: 'plugin.gridheaderresizer', + + disabled: false, + + config: { + + dynamic: false + }, + + colHeaderCls: Ext.baseCSSPrefix + 'column-header', + + minColWidth: 40, + maxColWidth: 1000, + wResizeCursor: 'col-resize', + eResizeCursor: 'col-resize', + + + + + + init: function(headerCt) { + this.headerCt = headerCt; + headerCt.on('render', this.afterHeaderRender, this, {single: true}); + }, + + + destroy: function() { + if (this.tracker) { + this.tracker.destroy(); + } + }, + + afterHeaderRender: function() { + var headerCt = this.headerCt, + el = headerCt.el; + + headerCt.mon(el, 'mousemove', this.onHeaderCtMouseMove, this); + + this.tracker = new Ext.dd.DragTracker({ + disabled: this.disabled, + onBeforeStart: Ext.Function.bind(this.onBeforeStart, this), + onStart: Ext.Function.bind(this.onStart, this), + onDrag: Ext.Function.bind(this.onDrag, this), + onEnd: Ext.Function.bind(this.onEnd, this), + tolerance: 3, + autoStart: 300, + el: el + }); + }, + + + + + onHeaderCtMouseMove: function(e, t) { + var me = this, + prevSiblings, + headerEl, overHeader, resizeHeader, resizeHeaderOwnerGrid, ownerGrid; + + if (me.headerCt.dragging) { + if (me.activeHd) { + me.activeHd.el.dom.style.cursor = ''; + delete me.activeHd; + } + } else { + headerEl = e.getTarget('.' + me.colHeaderCls, 3, true); + + if (headerEl){ + overHeader = Ext.getCmp(headerEl.id); + + + if (overHeader.isOnLeftEdge(e)) { + resizeHeader = overHeader.previousNode('gridcolumn:not([hidden]):not([isGroupHeader])') + + if (resizeHeader) { + + ownerGrid = me.headerCt.up('tablepanel'); + resizeHeaderOwnerGrid = resizeHeader.up('tablepanel'); + + + + + if (!((resizeHeaderOwnerGrid === ownerGrid) || ((ownerGrid.ownerCt.isXType('tablepanel')) && ownerGrid.ownerCt.view.lockedGrid === resizeHeaderOwnerGrid))) { + resizeHeader = null; + } + } + } + + else if (overHeader.isOnRightEdge(e)) { + resizeHeader = overHeader; + } + + else { + resizeHeader = null; + } + + + if (resizeHeader) { + + + + if (resizeHeader.isGroupHeader) { + prevSiblings = resizeHeader.getGridColumns(); + resizeHeader = prevSiblings[prevSiblings.length - 1]; + } + + + + if (resizeHeader && !(resizeHeader.fixed || (resizeHeader.resizable === false) || me.disabled)) { + me.activeHd = resizeHeader; + overHeader.el.dom.style.cursor = me.eResizeCursor; + if (overHeader.triggerEl) { + overHeader.triggerEl.dom.style.cursor = me.eResizeCursor; + } + } + + } else { + overHeader.el.dom.style.cursor = ''; + if (overHeader.triggerEl) { + overHeader.triggerEl.dom.style.cursor = ''; + } + me.activeHd = null; + } + } + } + }, + + + onBeforeStart : function(e) { + + this.dragHd = this.activeHd; + + if (!!this.dragHd && !this.headerCt.dragging) { + this.tracker.constrainTo = this.getConstrainRegion(); + return true; + } else { + this.headerCt.dragging = false; + return false; + } + }, + + + getConstrainRegion: function() { + var me = this, + dragHdEl = me.dragHd.el, + rightAdjust = 0, + nextHd, + lockedGrid; + + + + if (me.headerCt.forceFit) { + nextHd = me.dragHd.nextNode('gridcolumn:not([hidden]):not([isGroupHeader])'); + if (nextHd) { + if (!me.headerInSameGrid(nextHd)) { + nextHd = null; + } + rightAdjust = nextHd.getWidth() - me.minColWidth; + } + } + + + else if ((lockedGrid = me.dragHd.up('tablepanel')).isLocked) { + rightAdjust = me.dragHd.up('[scrollerOwner]').getWidth() - lockedGrid.getWidth() - 30; + } + + + else { + rightAdjust = me.maxColWidth - dragHdEl.getWidth(); + } + + return me.adjustConstrainRegion( + dragHdEl.getRegion(), + 0, + rightAdjust, + 0, + me.minColWidth + ); + }, + + + + onStart: function(e){ + var me = this, + dragHd = me.dragHd, + width = dragHd.el.getWidth(), + headerCt = dragHd.getOwnerHeaderCt(), + x, y, gridSection, markerOwner, lhsMarker, rhsMarker, markerHeight; + + me.headerCt.dragging = true; + me.origWidth = width; + + + if (!me.dynamic) { + gridSection = markerOwner = headerCt.up('tablepanel'); + if (gridSection.ownerLockable) { + markerOwner = gridSection.ownerLockable; + } + x = me.getLeftMarkerX(markerOwner); + lhsMarker = markerOwner.getLhsMarker(); + rhsMarker = markerOwner.getRhsMarker(); + markerHeight = gridSection.body.getHeight() + headerCt.getHeight(); + y = headerCt.getOffsetsTo(markerOwner)[1]; + + lhsMarker.setLocalY(y); + rhsMarker.setLocalY(y); + lhsMarker.setHeight(markerHeight); + rhsMarker.setHeight(markerHeight); + me.setMarkerX(lhsMarker, x); + me.setMarkerX(rhsMarker, x + width); + } + }, + + + onDrag: function(e){ + var me = this, + markerOwner; + + if (me.dynamic) { + me.doResize(); + } else { + markerOwner = this.headerCt.up('tablepanel'); + if (markerOwner.ownerLockable) { + markerOwner = markerOwner.ownerLockable; + } + this.setMarkerX(this.getMovingMarker(markerOwner), this.calculateDragX(markerOwner)); + } + }, + + getMovingMarker: function(markerOwner){ + return markerOwner.getRhsMarker(); + }, + + onEnd: function(e) { + this.headerCt.dragging = false; + if (this.dragHd) { + if (!this.dynamic) { + var markerOwner = this.headerCt.up('tablepanel'); + + + if (markerOwner.ownerLockable) { + markerOwner = markerOwner.ownerLockable; + } + this.setMarkerX(markerOwner.getLhsMarker(), -9999); + this.setMarkerX(markerOwner.getRhsMarker(), -9999); + } + this.doResize(); + } + }, + + doResize: function() { + var me = this, + dragHd = me.dragHd, + nextHd, + offset; + + if (dragHd) { + offset = me.tracker.getOffset('point'); + + + if (dragHd.flex) { + delete dragHd.flex; + } + + Ext.suspendLayouts(); + + + me.adjustColumnWidth(offset[0]); + + + + if (me.headerCt.forceFit) { + nextHd = dragHd.nextNode('gridcolumn:not([hidden]):not([isGroupHeader])'); + if (nextHd && !me.headerInSameGrid(nextHd)) { + nextHd = null; + } + if (nextHd) { + delete nextHd.flex; + nextHd.setWidth(nextHd.getWidth() - offset[0]); + } + } + + + Ext.resumeLayouts(true); + } + }, + + + headerInSameGrid: function(header) { + var grid = this.dragHd.up('tablepanel'); + + return !!header.up(grid); + }, + + disable: function() { + this.disabled = true; + if (this.tracker) { + this.tracker.disable(); + } + }, + + enable: function() { + this.disabled = false; + if (this.tracker) { + this.tracker.enable(); + } + }, + + calculateDragX: function(markerOwner) { + return this.tracker.getXY('point')[0] - markerOwner.getX() - markerOwner.el.getBorderWidth('l'); + }, + + getLeftMarkerX: function(markerOwner) { + return this.dragHd.getX() - markerOwner.getX() - markerOwner.el.getBorderWidth('l') - 1; + }, + + setMarkerX: function(marker, x) { + marker.setLocalX(x); + }, + + adjustConstrainRegion: function(region, t, r, b, l) { + return region.adjust(t, r, b, l); + }, + + adjustColumnWidth: function(offsetX) { + this.dragHd.setWidth(this.origWidth + offsetX); + } +}); + + +Ext.define('Ext.grid.header.DragZone', { + extend: Ext.dd.DragZone , + colHeaderSelector: '.' + Ext.baseCSSPrefix + 'column-header', + colInnerSelector: '.' + Ext.baseCSSPrefix + 'column-header-inner', + maxProxyWidth: 120, + + constructor: function(headerCt) { + this.headerCt = headerCt; + this.ddGroup = this.getDDGroup(); + this.callParent([headerCt.el]); + this.proxy.el.addCls(Ext.baseCSSPrefix + 'grid-col-dd'); + }, + + getDDGroup: function() { + return 'header-dd-zone-' + this.headerCt.up('[scrollerOwner]').id; + }, + + getDragData: function(e) { + if (e.getTarget(this.colInnerSelector)) { + var header = e.getTarget(this.colHeaderSelector), + headerCmp, + ddel; + + if (header) { + headerCmp = Ext.getCmp(header.id); + if (!this.headerCt.dragging && headerCmp.draggable && !(headerCmp.isOnLeftEdge(e) || headerCmp.isOnRightEdge(e))) { + ddel = document.createElement('div'); + ddel.innerHTML = Ext.getCmp(header.id).text; + return { + ddel: ddel, + header: headerCmp + }; + } + } + } + return false; + }, + + onBeforeDrag: function() { + return !(this.headerCt.dragging || this.disabled); + }, + + onInitDrag: function() { + this.headerCt.dragging = true; + this.callParent(arguments); + }, + + onDragDrop: function() { + this.headerCt.dragging = false; + this.callParent(arguments); + }, + + afterRepair: function() { + this.callParent(); + this.headerCt.dragging = false; + }, + + getRepairXY: function() { + return this.dragData.header.el.getXY(); + }, + + disable: function() { + this.disabled = true; + }, + + enable: function() { + this.disabled = false; + } +}); + + +Ext.define('Ext.grid.header.DropZone', { + extend: Ext.dd.DropZone , + colHeaderCls: Ext.baseCSSPrefix + 'column-header', + proxyOffsets: [-4, -9], + + constructor: function(headerCt){ + this.headerCt = headerCt; + this.ddGroup = this.getDDGroup(); + this.callParent([headerCt.el]); + }, + + getDDGroup: function() { + return 'header-dd-zone-' + this.headerCt.up('[scrollerOwner]').id; + }, + + getTargetFromEvent : function(e){ + return e.getTarget('.' + this.colHeaderCls); + }, + + getTopIndicator: function() { + if (!this.topIndicator) { + this.self.prototype.topIndicator = Ext.DomHelper.append(Ext.getBody(), { + cls: "col-move-top", + html: " " + }, true); + this.self.prototype.indicatorXOffset = Math.floor((this.topIndicator.dom.offsetWidth + 1) / 2); + } + return this.topIndicator; + }, + + getBottomIndicator: function() { + if (!this.bottomIndicator) { + this.self.prototype.bottomIndicator = Ext.DomHelper.append(Ext.getBody(), { + cls: "col-move-bottom", + html: " " + }, true); + } + return this.bottomIndicator; + }, + + getLocation: function(e, t) { + var x = e.getXY()[0], + region = Ext.fly(t).getRegion(), + pos; + + if ((region.right - x) <= (region.right - region.left) / 2) { + pos = "after"; + } else { + pos = "before"; + } + return { + pos: pos, + header: Ext.getCmp(t.id), + node: t + }; + }, + + positionIndicator: function(data, node, e){ + var me = this, + dragHeader = data.header, + dropLocation = me.getLocation(e, node), + targetHeader = dropLocation.header, + pos = dropLocation.pos, + nextHd, + prevHd, + topIndicator, bottomIndicator, topAnchor, bottomAnchor, + topXY, bottomXY, headerCtEl, minX, maxX, + allDropZones, ln, i, dropZone; + + + if (targetHeader === me.lastTargetHeader && pos === me.lastDropPos) { + return; + } + nextHd = dragHeader.nextSibling('gridcolumn:not([hidden])'); + prevHd = dragHeader.previousSibling('gridcolumn:not([hidden])'); + me.lastTargetHeader = targetHeader; + me.lastDropPos = pos; + + + if (!targetHeader.draggable && pos === 'before' && targetHeader.getIndex() === 0) { + return false; + } + + data.dropLocation = dropLocation; + + if ((dragHeader !== targetHeader) && + ((pos === "before" && nextHd !== targetHeader) || + (pos === "after" && prevHd !== targetHeader)) && + !targetHeader.isDescendantOf(dragHeader)) { + + + + + allDropZones = Ext.dd.DragDropManager.getRelated(me); + ln = allDropZones.length; + i = 0; + + for (; i < ln; i++) { + dropZone = allDropZones[i]; + if (dropZone !== me && dropZone.invalidateDrop) { + dropZone.invalidateDrop(); + } + } + + me.valid = true; + topIndicator = me.getTopIndicator(); + bottomIndicator = me.getBottomIndicator(); + if (pos === 'before') { + topAnchor = 'bc-tl'; + bottomAnchor = 'tc-bl'; + } else { + topAnchor = 'bc-tr'; + bottomAnchor = 'tc-br'; + } + + + topXY = topIndicator.getAlignToXY(targetHeader.el, topAnchor); + bottomXY = bottomIndicator.getAlignToXY(targetHeader.el, bottomAnchor); + + + headerCtEl = me.headerCt.el; + minX = headerCtEl.getX() - me.indicatorXOffset; + maxX = headerCtEl.getX() + headerCtEl.getWidth(); + + topXY[0] = Ext.Number.constrain(topXY[0], minX, maxX); + bottomXY[0] = Ext.Number.constrain(bottomXY[0], minX, maxX); + + + topIndicator.setXY(topXY); + bottomIndicator.setXY(bottomXY); + topIndicator.show(); + bottomIndicator.show(); + + + } else { + me.invalidateDrop(); + } + }, + + invalidateDrop: function() { + this.valid = false; + this.hideIndicators(); + }, + + onNodeOver: function(node, dragZone, e, data) { + var me = this, + from = data.header, + doPosition, + to, + fromPanel, + toPanel; + + if (data.header.el.dom === node) { + doPosition = false; + } else { + data.isLock = data.isUnlock = false; + to = me.getLocation(e, node).header; + + + doPosition = (from.ownerCt === to.ownerCt); + + + if (!doPosition && (!from.ownerCt.sealed && !to.ownerCt.sealed)) { + + doPosition = true; + fromPanel = from.up('tablepanel'); + toPanel = to.up('tablepanel'); + + + data.isLock = toPanel.isLocked && !fromPanel.isLocked; + data.isUnlock = !toPanel.isLocked && fromPanel.isLocked; + if ((data.isUnlock && from.lockable === false) || (data.isLock && !from.isLockable())) { + doPosition = false; + } + } + } + + if (doPosition) { + me.positionIndicator(data, node, e); + } else { + me.valid = false; + } + return me.valid ? me.dropAllowed : me.dropNotAllowed; + }, + + hideIndicators: function() { + var me = this; + + me.getTopIndicator().hide(); + me.getBottomIndicator().hide(); + me.lastTargetHeader = me.lastDropPos = null; + + }, + + onNodeOut: function() { + this.hideIndicators(); + }, + + onNodeDrop: function(node, dragZone, e, data) { + if (this.valid) { + var dragHeader = data.header, + dropLocation = data.dropLocation, + targetHeader = dropLocation.header, + fromCt = dragHeader.ownerCt, + localFromIdx = fromCt.items.indexOf(dragHeader), + toCt = targetHeader.ownerCt, + localToIdx = toCt.items.indexOf(targetHeader), + headerCt = this.headerCt, + columnManager= headerCt.columnManager, + fromIdx = columnManager.getHeaderIndex(dragHeader), + toIdx = columnManager.getHeaderIndex(targetHeader), + colsToMove = dragHeader.isGroupHeader ? dragHeader.query(':not([isGroupHeader])').length : 1, + sameCt = fromCt === toCt, + scrollerOwner, savedWidth; + + + if (dropLocation.pos === 'after') { + localToIdx++; + toIdx += targetHeader.isGroupHeader ? targetHeader.query(':not([isGroupHeader])').length : 1; + } + + + + + if (data.isLock) { + scrollerOwner = fromCt.up('[scrollerOwner]'); + scrollerOwner.lock(dragHeader, localToIdx); + data.isLock = false; + + + this.onNodeDrop(node, dragZone, e, data); + } else if (data.isUnlock) { + scrollerOwner = fromCt.up('[scrollerOwner]'); + scrollerOwner.unlock(dragHeader, localToIdx); + data.isUnlock = false; + + + this.onNodeDrop(node, dragZone, e, data); + } + + + else { + this.invalidateDrop(); + + savedWidth = dragHeader.getWidth(); + + + if (sameCt) { + + + + if (localToIdx === localFromIdx) { + + headerCt.onHeaderMoved(dragHeader, colsToMove, fromIdx, toIdx); + return; + } + + if (localToIdx > localFromIdx) { + localToIdx -= 1; + } + } + + + Ext.suspendLayouts(); + + if (sameCt) { + toCt.move(localFromIdx, localToIdx); + } else { + fromCt.remove(dragHeader, false); + toCt.insert(localToIdx, dragHeader); + } + + + + + if (toCt.isGroupHeader) { + + if (!sameCt) { + dragHeader.savedFlex = dragHeader.flex; + delete dragHeader.flex; + dragHeader.width = savedWidth; + } + } else { + if (dragHeader.savedFlex) { + dragHeader.flex = dragHeader.savedFlex; + delete dragHeader.width; + } + } + + + headerCt.purgeCache(); + Ext.resumeLayouts(true); + headerCt.onHeaderMoved(dragHeader, colsToMove, fromIdx, toIdx); + + + } + } + } +}); + + +Ext.define('Ext.grid.plugin.HeaderReorderer', { + extend: Ext.AbstractPlugin , + + alias: 'plugin.gridheaderreorderer', + + init: function(headerCt) { + this.headerCt = headerCt; + headerCt.on({ + render: this.onHeaderCtRender, + single: true, + scope: this + }); + }, + + + destroy: function() { + Ext.destroy(this.dragZone, this.dropZone); + }, + + onHeaderCtRender: function() { + var me = this; + + me.dragZone = new Ext.grid.header.DragZone(me.headerCt); + me.dropZone = new Ext.grid.header.DropZone(me.headerCt); + if (me.disabled) { + me.dragZone.disable(); + } + }, + + enable: function() { + this.disabled = false; + if (this.dragZone) { + this.dragZone.enable(); + } + }, + + disable: function() { + this.disabled = true; + if (this.dragZone) { + this.dragZone.disable(); + } + } +}); + + +Ext.define('Ext.grid.header.Container', { + extend: Ext.container.Container , + + + + + + + + + + + + + border: true, + + alias: 'widget.headercontainer', + + baseCls: Ext.baseCSSPrefix + 'grid-header-ct', + dock: 'top', + + + weight: 100, + + defaultType: 'gridcolumn', + + detachOnRemove: false, + + + defaultWidth: 100, + + + + + sortAscText: 'Sort Ascending', + + + sortDescText: 'Sort Descending', + + + sortClearText: 'Clear Sort', + + + columnsText: 'Columns', + + + headerOpenCls: Ext.baseCSSPrefix + 'column-header-open', + + menuSortAscCls: Ext.baseCSSPrefix + 'hmenu-sort-asc', + + menuSortDescCls: Ext.baseCSSPrefix + 'hmenu-sort-desc', + + menuColsIcon: Ext.baseCSSPrefix + 'cols-icon', + + + triStateSort: false, + + ddLock: false, + + dragging: false, + + + + + sortable: true, + + + enableColumnHide: true, + + initComponent: function() { + var me = this; + + me.headerCounter = 0; + me.plugins = me.plugins || []; + + + + + + + if (!me.isColumn) { + if (me.enableColumnResize) { + me.resizer = new Ext.grid.plugin.HeaderResizer(); + me.plugins.push(me.resizer); + } + if (me.enableColumnMove) { + me.reorderer = new Ext.grid.plugin.HeaderReorderer(); + me.plugins.push(me.reorderer); + } + } + + + + if (me.isColumn && (!me.items || me.items.length === 0)) { + me.isContainer = false; + me.layout = { + type: 'container', + calculate: Ext.emptyFn + }; + } + + + else { + me.layout = Ext.apply({ + type: 'gridcolumn', + align: 'stretch' + }, me.initialConfig.layout); + + + if (me.isRootHeader) { + me.grid.columnManager = me.columnManager = new Ext.grid.ColumnManager(me); + } + } + + me.defaults = me.defaults || {}; + Ext.applyIf(me.defaults, { + triStateSort: me.triStateSort, + sortable: me.sortable + }); + + me.menuTask = new Ext.util.DelayedTask(me.updateMenuDisabledState, me); + me.callParent(); + me.addEvents( + + 'columnresize', + + + 'headerclick', + + + 'headercontextmenu', + + + 'headertriggerclick', + + + 'columnmove', + + 'columnhide', + + 'columnshow', + + 'columnschanged', + + 'sortchange', + + 'menucreate' + ); + }, + + isLayoutRoot: function(){ + + + + + + if (this.hiddenHeaders) { + return false; + } + return this.callParent(); + }, + + + getOwnerHeaderCt: function() { + var me = this; + return me.isRootHeader ? me : me.up('[isRootHeader]'); + }, + + onDestroy: function() { + var me = this; + + if (me.menu) { + me.menu.un('hide', me.onMenuHide, me); + } + me.menuTask.cancel(); + Ext.destroy(me.resizer, me.reorderer); + me.callParent(); + }, + + applyColumnsState: function(columns) { + if (!columns || !columns.length) { + return; + } + + var me = this, + items = me.items.items, + count = items.length, + i = 0, + length = columns.length, + c, col, columnState, index; + + for (c = 0; c < length; c++) { + columnState = columns[c]; + + for (index = count; index--; ) { + col = items[index]; + if (col.getStateId && col.getStateId() == columnState.id) { + + + + + if (i !== index) { + me.moveHeader(index, i); + } + + if (col.applyColumnState) { + col.applyColumnState(columnState); + } + ++i; + break; + } + } + } + }, + + getColumnsState: function () { + var me = this, + columns = [], + state; + + me.items.each(function (col) { + state = col.getColumnState && col.getColumnState(); + if (state) { + columns.push(state); + } + }); + + return columns; + }, + + + + + onAdd: function(c) { + var me = this; + + if (!c.headerId) { + c.headerId = c.initialConfig.id || Ext.id(null, 'header-'); + } + + + if (!c.getStateId()) { + + + + + c.stateId = c.initialConfig.id || ('h' + (++me.headerCounter)); + } + + me.callParent(arguments); + me.onColumnsChanged(); + }, + + onMove: function() { + this.callParent(arguments); + this.onColumnsChanged(); + }, + + onShow: function() { + this.callParent(arguments); + this.onColumnsChanged(); + }, + + + + + onColumnsChanged: function() { + var headerCt = this; + + + while (headerCt) { + headerCt.purgeCache(); + if (headerCt.isRootHeader) { + break; + } + headerCt = headerCt.ownerCt; + } + + if (headerCt && headerCt.rendered) { + headerCt.fireEvent('columnschanged', headerCt); + } + }, + + + + + onRemove: function(c) { + var me = this, + ownerCt = me.ownerCt; + + me.callParent(arguments); + + + if (!me.destroying) { + me.onColumnsChanged(); + if (me.isGroupHeader && !me.items.getCount() && ownerCt) { + + + + me.detachComponent(c); + + + Ext.suspendLayouts(); + ownerCt.remove(me); + Ext.resumeLayouts(true); + } + } + }, + + + applyDefaults: function(config) { + var ret; + + if (config && !config.isComponent && config.xtype == 'rownumberer') { + ret = config; + } else { + ret = this.callParent(arguments); + + + if (!config.isGroupHeader && !('width' in ret) && !ret.flex) { + ret.width = this.defaultWidth; + } + } + return ret; + }, + + setSortState: function(){ + var store = this.up('[store]').store, + + + first = store.getFirstSorter(), + hd; + + if (first) { + hd = this.down('gridcolumn[dataIndex=' + first.property +']'); + if (hd) { + hd.setSortState(first.direction, false, true); + } + } else { + this.clearOtherSortStates(null); + } + }, + + getHeaderMenu: function(){ + var menu = this.getMenu(), + item; + + if (menu) { + item = menu.child('#columnItem'); + if (item) { + return item.menu; + } + } + return null; + }, + + onHeaderVisibilityChange: function(header, visible){ + var me = this, + menu = me.getHeaderMenu(), + item; + + + me.purgeCache(); + + if (menu) { + + item = me.getMenuItemForHeader(menu, header); + if (item) { + item.setChecked(visible, true); + } + + if (menu.isVisible()) { + me.menuTask.delay(50); + } + } + }, + + updateMenuDisabledState: function(menu) { + var me = this, + columns = me.query(':not([hidden])'), + i, + len = columns.length, + item, + checkItem, + method; + + + if (!menu) { + menu = me.getMenu(); + } + + for (i = 0; i < len; ++i) { + item = columns[i]; + checkItem = me.getMenuItemForHeader(menu, item); + if (checkItem) { + method = item.isHideable() ? 'enable' : 'disable'; + if (checkItem.menu) { + method += 'CheckChange'; + } + checkItem[method](); + } + } + }, + + getMenuItemForHeader: function(menu, header) { + return header ? menu.down('menucheckitem[headerId=' + header.id + ']') : null; + }, + + onHeaderShow: function(header) { + + var me = this, + gridSection = me.ownerCt; + + if (me.forceFit) { + delete me.flex; + + } + + me.onHeaderVisibilityChange(header, true); + + + + if (!header.isGroupHeader) { + if (gridSection) { + gridSection.onHeaderShow(me, header); + } + } + me.fireEvent('columnshow', me, header); + me.fireEvent('columnschanged', this); + }, + + onHeaderHide: function(header) { + + var me = this, + gridSection = me.ownerCt; + + me.onHeaderVisibilityChange(header, false); + + + if (!header.isGroupHeader) { + if (gridSection) { + gridSection.onHeaderHide(me, header); + } + } + me.fireEvent('columnhide', me, header); + me.fireEvent('columnschanged', this); + }, + + + tempLock: function() { + this.ddLock = true; + Ext.Function.defer(function() { + this.ddLock = false; + }, 200, this); + }, + + onHeaderResize: function(header, w, suppressFocus) { + var me = this, + view = me.view, + gridSection = me.ownerCt; + + + if (view && view.body.dom) { + me.tempLock(); + if (gridSection) { + gridSection.onHeaderResize(me, header, w); + } + } + me.fireEvent('columnresize', this, header, w); + }, + + onHeaderClick: function(header, e, t) { + header.fireEvent('headerclick', this, header, e, t); + this.fireEvent('headerclick', this, header, e, t); + }, + + onHeaderContextMenu: function(header, e, t) { + header.fireEvent('headercontextmenu', this, header, e, t); + this.fireEvent('headercontextmenu', this, header, e, t); + }, + + onHeaderTriggerClick: function(header, e, t) { + + var me = this; + if (header.fireEvent('headertriggerclick', me, header, e, t) !== false && me.fireEvent('headertriggerclick', me, header, e, t) !== false) { + me.showMenuBy(t, header); + } + }, + + showMenuBy: function(t, header) { + var menu = this.getMenu(), + ascItem = menu.down('#ascItem'), + descItem = menu.down('#descItem'), + sortableMth; + + + + menu.activeHeader = menu.ownerButton = header; + header.setMenuActive(true); + + + sortableMth = header.sortable ? 'enable' : 'disable'; + if (ascItem) { + ascItem[sortableMth](); + } + if (descItem) { + descItem[sortableMth](); + } + menu.showBy(t); + }, + + + onMenuHide: function(menu) { + menu.activeHeader.setMenuActive(false); + }, + + moveHeader: function(fromIdx, toIdx) { + + this.tempLock(); + this.onHeaderMoved(this.move(fromIdx, toIdx), 1, fromIdx, toIdx); + }, + + purgeCache: function() { + var me = this, + menu = me.menu; + + + me.gridDataColumns = me.hideableColumns = null; + + + if (me.columnManager) { + me.columnManager.invalidate(); + } + + + + if (menu && menu.hidden) { + + menu.hide(); + menu.destroy(); + me.menu = null; + } + }, + + onHeaderMoved: function(header, colsToMove, fromIdx, toIdx) { + var me = this, + gridSection = me.ownerCt; + + if (gridSection && gridSection.onHeaderMove) { + gridSection.onHeaderMove(me, header, colsToMove, fromIdx, toIdx); + } + me.fireEvent("columnmove", me, header, fromIdx, toIdx); + }, + + + getMenu: function() { + var me = this; + + if (!me.menu) { + me.menu = new Ext.menu.Menu({ + hideOnParentHide: false, + items: me.getMenuItems(), + listeners: { + hide: me.onMenuHide, + scope: me + } + }); + me.fireEvent('menucreate', me, me.menu); + } + me.updateMenuDisabledState(me.menu); + return me.menu; + }, + + + getMenuItems: function() { + var me = this, + menuItems = [], + hideableColumns = me.enableColumnHide ? me.getColumnMenu(me) : null; + + if (me.sortable) { + menuItems = [{ + itemId: 'ascItem', + text: me.sortAscText, + cls: me.menuSortAscCls, + handler: me.onSortAscClick, + scope: me + },{ + itemId: 'descItem', + text: me.sortDescText, + cls: me.menuSortDescCls, + handler: me.onSortDescClick, + scope: me + }]; + } + if (hideableColumns && hideableColumns.length) { + if (me.sortable) { + menuItems.push('-'); + } + menuItems.push({ + itemId: 'columnItem', + text: me.columnsText, + cls: me.menuColsIcon, + menu: hideableColumns, + hideOnClick: false + }); + } + return menuItems; + }, + + + onSortAscClick: function() { + var menu = this.getMenu(), + activeHeader = menu.activeHeader; + + activeHeader.setSortState('ASC'); + }, + + + onSortDescClick: function() { + var menu = this.getMenu(), + activeHeader = menu.activeHeader; + + activeHeader.setSortState('DESC'); + }, + + + getColumnMenu: function(headerContainer) { + var menuItems = [], + i = 0, + item, + items = headerContainer.query('>gridcolumn[hideable]'), + itemsLn = items.length, + menuItem; + + for (; i < itemsLn; i++) { + item = items[i]; + menuItem = new Ext.menu.CheckItem({ + text: item.menuText || item.text, + checked: !item.hidden, + hideOnClick: false, + headerId: item.id, + menu: item.isGroupHeader ? this.getColumnMenu(item) : undefined, + checkHandler: this.onColumnCheckChange, + scope: this + }); + menuItems.push(menuItem); + + + + item.on({ + destroy: Ext.Function.bind(menuItem.destroy, menuItem) + }); + } + return menuItems; + }, + + onColumnCheckChange: function(checkItem, checked) { + var header = Ext.getCmp(checkItem.headerId); + header[checked ? 'show' : 'hide'](); + }, + + + getColumnCount: function() { + return this.getGridColumns().length; + }, + + + getFullWidth: function() { + var fullWidth = 0, + headers = this.getVisibleGridColumns(), + headersLn = headers.length, + i = 0, + header; + + + for (; i < headersLn; i++) { + header = headers[i]; + + if (header.getDesiredWidth) { + fullWidth += header.getDesiredWidth() || 0; + + } else { + fullWidth += header.getWidth(); + } + } + return fullWidth; + }, + + + clearOtherSortStates: function(activeHeader) { + var headers = this.getGridColumns(), + headersLn = headers.length, + i = 0; + + for (; i < headersLn; i++) { + if (headers[i] !== activeHeader) { + + headers[i].setSortState(null, true); + } + } + }, + + + getVisibleGridColumns: function() { + var allColumns = this.getGridColumns(), + result = [], + len = allColumns.length, i; + + + + for (i = 0; i < len; i++) { + if (!allColumns[i].hidden) { + result[result.length] = allColumns[i]; + } + } + return result; + }, + + + getGridColumns: function(inResult, hiddenAncestor) { + if (!inResult && this.gridDataColumns) { + return this.gridDataColumns; + } + + var me = this, + result = inResult || [], + items, i, len, item, + lastVisibleColumn; + + hiddenAncestor = hiddenAncestor || me.hidden; + if (me.items) { + items = me.items.items; + for (i = 0, len = items.length; i < len; i++) { + item = items[i]; + if (item.isGroupHeader) { + item.getGridColumns(result, hiddenAncestor); + } else { + item.hiddenAncestor = hiddenAncestor; + result.push(item); + } + } + } + if (!inResult) { + me.gridDataColumns = result; + } + + + if (!inResult && len) { + + for (i = 0, len = result.length; i < len; i++) { + item = result[i]; + item.isFirstVisible = item.isLastVisible = false; + if (!(item.hidden || item.hiddenAncestor)) { + if (!lastVisibleColumn) { + item.isFirstVisible = true; + } + lastVisibleColumn = item; + } + } + + if (lastVisibleColumn) { + lastVisibleColumn.isLastVisible = true; + } + } + + return result; + }, + + + getHideableColumns: function() { + var me = this, + result = me.hideableColumns; + + if (!result) { + result = me.hideableColumns = me.query('[hideable]'); + } + return result; + }, + + + getHeaderIndex: function(header) { + return this.columnManager.getHeaderIndex(header); + }, + + + getHeaderAtIndex: function(index) { + return this.columnManager.getHeaderAtIndex(index); + }, + + + getVisibleHeaderClosestToIndex: function(index) { + return this.columnManager.getVisibleHeaderClosestToIndex(index); + }, + + autoSizeColumn : function(header) { + var view = this.view; + if (view) { + view.autoSizeColumn(header); + } + } +}); + + +Ext.define('Ext.grid.column.Column', { + extend: Ext.grid.header.Container , + alias: 'widget.gridcolumn', + + alternateClassName: 'Ext.grid.Column', + + baseCls: Ext.baseCSSPrefix + 'column-header', + + + hoverCls: Ext.baseCSSPrefix + 'column-header-over', + + handleWidth: 4, + + sortState: null, + + possibleSortStates: ['ASC', 'DESC'], + + childEls: [ + 'titleEl', 'triggerEl', 'textEl' + ], + + + noWrap: true, + + renderTpl: + '
    ' + + '' + + '{text}' + + '' + + ''+ + '
    ' + + '
    ' + + '
    ' + + '{%this.renderContainer(out,values)%}', + + + + + + + dataIndex: null, + + + text: ' ', + + + + + menuText: null, + + + emptyCellText: ' ', + + + sortable: true, + + + + + + + + + + + resizable: true, + + + hideable: true, + + + menuDisabled: false, + + + renderer: false, + + + + + + + editRenderer: false, + + + align: 'left', + + + draggable: true, + + + + + tooltipType: 'qtip', + + + + initDraggable: Ext.emptyFn, + + + tdCls: '', + + + + + + + + + + + isHeader: true, + + + isColumn: true, + + ascSortCls: Ext.baseCSSPrefix + 'column-header-sort-ASC', + descSortCls: Ext.baseCSSPrefix + 'column-header-sort-DESC', + + componentLayout: 'columncomponent', + + groupSubHeaderCls: Ext.baseCSSPrefix + 'group-sub-header', + + groupHeaderCls: Ext.baseCSSPrefix + 'group-header', + + clickTargetName: 'titleEl', + + + detachOnRemove : true, + + + initResizable: Ext.emptyFn, + + initComponent: function() { + var me = this, + renderer, + listeners; + + if (me.header != null) { + me.text = me.header; + me.header = null; + } + + if (!me.triStateSort) { + me.possibleSortStates.length = 2; + } + + + if (me.columns != null) { + me.isGroupHeader = true; + + + + me.items = me.columns; + me.columns = me.flex = me.width = null; + me.cls = (me.cls||'') + ' ' + me.groupHeaderCls; + + + me.sortable = me.resizable = false; + me.align = 'center'; + } else { + + + + if (me.flex) { + me.minWidth = me.minWidth || Ext.grid.plugin.HeaderResizer.prototype.minColWidth; + } + } + me.addCls(Ext.baseCSSPrefix + 'column-header-align-' + me.align); + + renderer = me.renderer; + if (renderer) { + + + if (typeof renderer == 'string') { + me.renderer = Ext.util.Format[renderer]; + } + me.hasCustomRenderer = true; + } else if (me.defaultRenderer) { + me.scope = me; + me.renderer = me.defaultRenderer; + } + + + me.callParent(arguments); + + listeners = { + element: me.clickTargetName, + click: me.onTitleElClick, + contextmenu: me.onTitleElContextMenu, + mouseenter: me.onTitleMouseOver, + mouseleave: me.onTitleMouseOut, + scope: me + }; + if (me.resizable) { + listeners.dblclick = me.onTitleElDblClick; + } + me.on(listeners); + }, + + onAdd: function(child) { + if (child.isColumn) { + child.isSubHeader = true; + child.addCls(this.groupSubHeaderCls); + } + if (this.hidden) { + child.hide(); + } + this.callParent(arguments); + }, + + onRemove: function(child) { + if (child.isSubHeader) { + child.isSubHeader = false; + child.removeCls(this.groupSubHeaderCls); + } + this.callParent(arguments); + }, + + initRenderData: function() { + var me = this, + tipMarkup = '', + tip = me.tooltip, + attr = me.tooltipType == 'qtip' ? 'data-qtip' : 'title'; + + if (!Ext.isEmpty(tip)) { + tipMarkup = attr + '="' + tip + '" '; + } + + return Ext.applyIf(me.callParent(arguments), { + text: me.text, + menuDisabled: me.menuDisabled, + tipMarkup: tipMarkup + }); + }, + + applyColumnState: function (state) { + var me = this; + + + me.applyColumnsState(state.columns); + + + + if (state.hidden != null) { + me.hidden = state.hidden; + } + if (state.locked != null) { + me.locked = state.locked; + } + if (state.sortable != null) { + me.sortable = state.sortable; + } + if (state.width != null) { + me.flex = null; + me.width = state.width; + } else if (state.flex != null) { + me.width = null; + me.flex = state.flex; + } + }, + + getColumnState: function () { + var me = this, + items = me.items.items, + + iLen = items ? items.length : 0, + i, + columns = [], + state = { + id: me.getStateId() + }; + + me.savePropsToState(['hidden', 'sortable', 'locked', 'flex', 'width'], state); + + if (me.isGroupHeader) { + for (i = 0; i < iLen; i++) { + columns.push(items[i].getColumnState()); + } + + if (columns.length) { + state.columns = columns; + } + } else if (me.isSubHeader && me.ownerCt.hidden) { + + delete me.hidden; + } + + if ('width' in state) { + delete state.flex; + } + return state; + }, + + getStateId: function () { + return this.stateId || this.headerId; + }, + + + setText: function(text) { + this.text = text; + if (this.rendered) { + this.textEl.update(text); + } + }, + + + getIndex: function() { + return this.isGroupColumn ? false : this.getOwnerHeaderCt().getHeaderIndex(this); + }, + + + getVisibleIndex: function() { + return this.isGroupColumn ? false : Ext.Array.indexOf(this.getOwnerHeaderCt().getVisibleGridColumns(), this); + }, + + beforeRender: function() { + var me = this, + grid = me.up('tablepanel'); + + me.callParent(); + + + + if (grid && (!me.sortable || grid.sortableColumns === false) && !me.groupable && + !me.lockable && (grid.enableColumnHide === false || + !me.getOwnerHeaderCt().getHideableColumns().length)) { + me.menuDisabled = true; + } + + me.protoEl.unselectable(); + }, + + afterRender: function() { + var me = this, + triggerEl = me.triggerEl, + triggerWidth; + + me.callParent(arguments); + + + + if (!Ext.isIE8 || !Ext.isStrict) { + me.mon(me.getFocusEl(), { + focus: me.onTitleMouseOver, + blur: me.onTitleMouseOut, + scope: me + }); + } + + if (triggerEl && me.self.triggerElWidth === undefined) { + triggerEl.setStyle('display', 'block'); + me.self.triggerElWidth = triggerEl.getWidth(); + triggerEl.setStyle('display', ''); + } + + me.keyNav = new Ext.util.KeyNav(me.el, { + enter: me.onEnterKey, + down: me.onDownKey, + scope: me + }); + }, + + + + afterComponentLayout: function(width, height, oldWidth, oldHeight) { + var me = this, + ownerHeaderCt = me.getOwnerHeaderCt(); + + me.callParent(arguments); + + if (ownerHeaderCt && (oldWidth != null || me.flex) && width !== oldWidth) { + ownerHeaderCt.onHeaderResize(me, width, true); + } + }, + + onDestroy: function() { + var me = this; + + Ext.destroy(me.textEl, me.keyNav, me.field); + me.keyNav = null; + me.callParent(arguments); + }, + + onTitleMouseOver: function() { + this.titleEl.addCls(this.hoverCls); + }, + + onTitleMouseOut: function() { + this.titleEl.removeCls(this.hoverCls); + }, + + onDownKey: function(e) { + if (this.triggerEl) { + this.onTitleElClick(e, this.triggerEl.dom || this.el.dom); + } + }, + + onEnterKey: function(e) { + this.onTitleElClick(e, this.el.dom); + }, + + + onTitleElDblClick: function(e, t) { + var me = this, + prev, + leafColumns; + + + if (me.isOnLeftEdge(e)) { + + + + prev = me.previousNode('gridcolumn:not([hidden]):not([isGroupHeader])'); + + + if (prev && prev.getOwnerHeaderCt() === me.getOwnerHeaderCt()) { + prev.autoSize(); + } + } + + else if (me.isOnRightEdge(e)) { + + + if (me.isGroupHeader && e.getPoint().isContainedBy(me.layout.innerCt)) { + leafColumns = me.query('gridcolumn:not([hidden]):not([isGroupHeader])'); + this.getOwnerHeaderCt().autoSizeColumn(leafColumns[leafColumns.length - 1]); + return; + } + me.autoSize(); + } + }, + + + autoSize: function() { + var me = this, + leafColumns, + numLeaves, i, + headerCt; + + + if (me.isGroupHeader) { + leafColumns = me.query('gridcolumn:not([hidden]):not([isGroupHeader])'); + numLeaves = leafColumns.length; + headerCt = this.getOwnerHeaderCt(); + Ext.suspendLayouts(); + for (i = 0; i < numLeaves; i++) { + headerCt.autoSizeColumn(leafColumns[i]); + } + Ext.resumeLayouts(true); + return; + } + this.getOwnerHeaderCt().autoSizeColumn(this); + }, + + onTitleElClick: function(e, t) { + + + var me = this, + ownerHeaderCt = me.getOwnerHeaderCt(); + + if (ownerHeaderCt && !ownerHeaderCt.ddLock) { + + + if (me.triggerEl && (e.target === me.triggerEl.dom || t === me.triggerEl.dom || e.within(me.triggerEl))) { + ownerHeaderCt.onHeaderTriggerClick(me, e, t); + + } else if (e.getKey() || (!me.isOnLeftEdge(e) && !me.isOnRightEdge(e))) { + me.toggleSortState(); + ownerHeaderCt.onHeaderClick(me, e, t); + } + } + }, + + onTitleElContextMenu: function(e, t) { + + var me = this, + ownerHeaderCt = me.getOwnerHeaderCt(); + + if (ownerHeaderCt && !ownerHeaderCt.ddLock) { + ownerHeaderCt.onHeaderContextMenu(me, e, t); + } + }, + + + processEvent: function(type, view, cell, recordIndex, cellIndex, e) { + return this.fireEvent.apply(this, arguments); + }, + + toggleSortState: function() { + var me = this, + idx, + nextIdx; + + if (me.sortable) { + idx = Ext.Array.indexOf(me.possibleSortStates, me.sortState); + + nextIdx = (idx + 1) % me.possibleSortStates.length; + me.setSortState(me.possibleSortStates[nextIdx]); + } + }, + + doSort: function(state) { + var tablePanel = this.up('tablepanel'), + store = tablePanel.store; + + + + + if (tablePanel.ownerLockable && store.isNodeStore) { + store = tablePanel.ownerLockable.lockedGrid.store; + } + store.sort({ + property: this.getSortParam(), + direction: state + }); + }, + + + getSortParam: function() { + return this.dataIndex; + }, + + setSortState: function(state, skipClear, initial) { + var me = this, + ascCls = me.ascSortCls, + descCls = me.descSortCls, + ownerHeaderCt = me.getOwnerHeaderCt(), + oldSortState = me.sortState; + + state = state || null; + + if (!me.sorting && oldSortState !== state && (me.getSortParam() != null)) { + + if (state && !initial) { + + + me.sorting = true; + me.doSort(state); + me.sorting = false; + } + switch (state) { + case 'DESC': + me.addCls(descCls); + me.removeCls(ascCls); + break; + case 'ASC': + me.addCls(ascCls); + me.removeCls(descCls); + break; + default: + me.removeCls([ascCls, descCls]); + } + if (ownerHeaderCt && !me.triStateSort && !skipClear) { + ownerHeaderCt.clearOtherSortStates(me); + } + me.sortState = state; + + if (me.triStateSort || state != null) { + ownerHeaderCt.fireEvent('sortchange', ownerHeaderCt, me, state); + } + } + }, + + + isHideable: function() { + var result = { + hideCandidate: this, + result: this.hideable + }; + + if (result.result) { + this.ownerCt.bubble(this.hasOtherMenuEnabledChildren, null, [result]); + } + return result.result; + }, + + + + hasOtherMenuEnabledChildren: function(result) { + var visibleChildren, + count; + + + + if (!this.isXType('headercontainer')) { + result.result = false; + return false; + } + + + + + visibleChildren = this.query('>:not([hidden]):not([menuDisabled])'); + count = visibleChildren.length; + if (Ext.Array.contains(visibleChildren, result.hideCandidate)) { + count--; + } + if (count) { + return false; + } + + result.hideCandidate = this; + }, + + + isLockable: function() { + var result = { + result: this.lockable !== false + }; + + if (result.result) { + this.ownerCt.bubble(this.hasMultipleVisibleChildren, null, [result]); + } + return result.result; + }, + + + isLocked: function() { + return this.locked || !!this.up('[isColumn][locked]', '[isRootHeader]'); + }, + + + + hasMultipleVisibleChildren: function(result) { + + if (!this.isXType('headercontainer')) { + result.result = false; + return false; + } + + if (this.query('>:not([hidden])').length > 1) { + return false; + } + }, + + hide: function(fromOwner) { + var me = this, + ownerHeaderCt = me.getOwnerHeaderCt(), + owner = me.ownerCt, + ownerIsGroup, + item, items, len, i; + + if (!me.isVisible()) { + + return me; + } + + + + if (!ownerHeaderCt) { + me.callParent(); + return me; + } + + + + + if (ownerHeaderCt.forceFit) { + me.visibleSiblingCount = ownerHeaderCt.getVisibleGridColumns().length - 1; + if (me.flex) { + me.savedWidth = me.getWidth(); + me.flex = null; + } + } + + ownerIsGroup = owner.isGroupHeader; + + + if (ownerIsGroup && !fromOwner) { + items = owner.query('>:not([hidden])'); + + if (items.length === 1 && items[0] == me) { + me.ownerCt.hide(); + return; + } + } + + Ext.suspendLayouts(); + + if (me.isGroupHeader) { + items = me.items.items; + for (i = 0, len = items.length; i < len; i++) { + item = items[i]; + if (!item.hidden) { + item.hide(true); + } + } + } + + me.callParent(); + + ownerHeaderCt.onHeaderHide(me); + + Ext.resumeLayouts(true); + return me; + }, + + show: function(fromOwner, fromChild) { + var me = this, + ownerHeaderCt = me.getOwnerHeaderCt(), + ownerCt = me.ownerCt, + items, + len, i, + item, + myWidth, + availFlex, + totalFlex, + oldLen, + defaultWidth = Ext.grid.header.Container.prototype.defaultWidth; + + if (me.isVisible()) { + return me; + } + + if (!me.rendered) { + me.hidden = false; + return; + } + + availFlex = ownerHeaderCt.el.getViewSize().width - (ownerHeaderCt.view.el.dom.scrollHeight > ownerHeaderCt.view.el.dom.clientHeight ? Ext.getScrollbarSize().width : 0); + + + if (ownerHeaderCt.forceFit) { + + items = Ext.ComponentQuery.query(':not([flex])', ownerHeaderCt.getVisibleGridColumns()); + + + + + + if (items.length) { + me.width = me.savedWidth || me.width || defaultWidth; + } + + else { + items = ownerHeaderCt.getVisibleGridColumns(); + len = items.length; + oldLen = me.visibleSiblingCount; + + + + + + myWidth = (me.savedWidth || me.width || defaultWidth); + + + + + + + + + + myWidth = Math.min(myWidth * (oldLen / len), defaultWidth, + Math.max(availFlex - (len * defaultWidth), defaultWidth)); + + me.width = null; + me.flex = myWidth; + availFlex -= myWidth; + totalFlex = 0; + for (i = 0; i < len; i++) { + item = items[i]; + item.flex = (item.width || item.getWidth()); + totalFlex += item.flex; + item.width = null; + } + + + + + for (i = 0; i < len; i++) { + item = items[i]; + item.flex = item.flex / totalFlex * availFlex; + } + } + } + + Ext.suspendLayouts(); + + + if (me.isSubHeader && ownerCt.hidden) { + ownerCt.show(false, true); + } + + me.callParent(arguments); + + + if (me.isGroupHeader && fromChild !== true && !me.query(':not([hidden])').length) { + items = me.items.items; + for (i = 0, len = items.length; i < len; i++) { + item = items[i]; + if (item.hidden) { + item.show(true); + } + } + } + + Ext.resumeLayouts(true); + + + ownerCt = me.getOwnerHeaderCt(); + if (ownerCt) { + ownerCt.onHeaderShow(me); + } + }, + + getDesiredWidth: function() { + var me = this; + if (me.rendered && me.componentLayout && me.componentLayout.lastComponentSize) { + + + + + + + return me.componentLayout.lastComponentSize.width; + + + + } + else if (me.flex) { + + return me.width; + } + else { + return me.width; + } + }, + + getCellSelector: function() { + return '.' + Ext.baseCSSPrefix + 'grid-cell-' + this.getItemId(); + }, + + getCellInnerSelector: function() { + return this.getCellSelector() + ' .' + Ext.baseCSSPrefix + 'grid-cell-inner'; + }, + + isOnLeftEdge: function(e) { + return (e.getXY()[0] - this.getX() <= this.handleWidth); + }, + + isOnRightEdge: function(e) { + return (this.getX() + this.getWidth() - e.getXY()[0] <= this.handleWidth); + }, + + + + setMenuActive: function(isMenuOpen) { + this.titleEl[isMenuOpen ? 'addCls' : 'removeCls'](this.headerOpenCls); + } + + + + + + +}); + + +Ext.define('Ext.grid.column.Action', { + extend: Ext.grid.column.Column , + alias: ['widget.actioncolumn'], + alternateClassName: 'Ext.grid.ActionColumn', + + + + + + + + + + + + + + + actionIdRe: new RegExp(Ext.baseCSSPrefix + 'action-col-(\\d+)'), + + + altText: '', + + + menuText: 'Actions', + + sortable: false, + + innerCls: Ext.baseCSSPrefix + 'grid-cell-inner-action-col', + + constructor: function(config) { + var me = this, + cfg = Ext.apply({}, config), + + items = cfg.items || me.items || [me], + hasGetClass, + i, + len; + + + me.origRenderer = cfg.renderer || me.renderer; + me.origScope = cfg.scope || me.scope; + + me.renderer = me.scope = cfg.renderer = cfg.scope = null; + + + cfg.items = null; + me.callParent([cfg]); + + + me.items = items; + + for (i = 0, len = items.length; i < len; ++i) { + if (items[i].getClass) { + hasGetClass = true; + break; + } + } + + + if (me.origRenderer || hasGetClass) { + me.hasCustomRenderer = true; + } + }, + + + + defaultRenderer: function(v, meta, record, rowIdx, colIdx, store, view){ + var me = this, + prefix = Ext.baseCSSPrefix, + scope = me.origScope || me, + items = me.items, + len = items.length, + i = 0, + item, ret, disabled, tooltip; + + + + + ret = Ext.isFunction(me.origRenderer) ? me.origRenderer.apply(scope, arguments) || '' : ''; + + meta.tdCls += ' ' + Ext.baseCSSPrefix + 'action-col-cell'; + for (; i < len; i++) { + item = items[i]; + + disabled = item.disabled || (item.isDisabled ? item.isDisabled.call(item.scope || scope, view, rowIdx, colIdx, item, record) : false); + tooltip = disabled ? null : (item.tooltip || (item.getTip ? item.getTip.apply(item.scope || scope, arguments) : null)); + + + if (!item.hasActionConfiguration) { + + + item.stopSelection = me.stopSelection; + item.disable = Ext.Function.bind(me.disableAction, me, [i], 0); + item.enable = Ext.Function.bind(me.enableAction, me, [i], 0); + item.hasActionConfiguration = true; + } + + ret += '' + (item.altText || me.altText) + ''; + } + return ret; + }, + + + enableAction: function(index, silent) { + var me = this; + + if (!index) { + index = 0; + } else if (!Ext.isNumber(index)) { + index = Ext.Array.indexOf(me.items, index); + } + me.items[index].disabled = false; + me.up('tablepanel').el.select('.' + Ext.baseCSSPrefix + 'action-col-' + index).removeCls(me.disabledCls); + if (!silent) { + me.fireEvent('enable', me); + } + }, + + + disableAction: function(index, silent) { + var me = this; + + if (!index) { + index = 0; + } else if (!Ext.isNumber(index)) { + index = Ext.Array.indexOf(me.items, index); + } + me.items[index].disabled = true; + me.up('tablepanel').el.select('.' + Ext.baseCSSPrefix + 'action-col-' + index).addCls(me.disabledCls); + if (!silent) { + me.fireEvent('disable', me); + } + }, + + destroy: function() { + delete this.items; + delete this.renderer; + return this.callParent(arguments); + }, + + + processEvent : function(type, view, cell, recordIndex, cellIndex, e, record, row){ + var me = this, + target = e.getTarget(), + match, + item, fn, + key = type == 'keydown' && e.getKey(), + disabled; + + + + + if (key && !Ext.fly(target).findParent(view.getCellSelector())) { + target = Ext.fly(cell).down('.' + Ext.baseCSSPrefix + 'action-col-icon', true); + } + + + if (target && (match = target.className.match(me.actionIdRe))) { + item = me.items[parseInt(match[1], 10)]; + disabled = item.disabled || (item.isDisabled ? item.isDisabled.call(item.scope || me.origScope || me, view, recordIndex, cellIndex, item, record) : false); + if (item && !disabled) { + if (type == 'click' || (key == e.ENTER || key == e.SPACE)) { + fn = item.handler || me.handler; + if (fn) { + fn.call(item.scope || me.origScope || me, view, recordIndex, cellIndex, item, e, record, row); + } + } else if (type == 'mousedown' && item.stopSelection !== false) { + return false; + } + } + } + return me.callParent(arguments); + }, + + cascade: function(fn, scope) { + fn.call(scope||this, this); + }, + + + getRefItems: function() { + return []; + } +}); + + +Ext.define('Ext.grid.column.Boolean', { + extend: Ext.grid.column.Column , + alias: ['widget.booleancolumn'], + alternateClassName: 'Ext.grid.BooleanColumn', + + + + trueText: 'true', + + + + + falseText: 'false', + + + + undefinedText: ' ', + + + + + + defaultRenderer: function(value){ + if (value === undefined) { + return this.undefinedText; + } + + if (!value || value === 'false') { + return this.falseText; + } + return this.trueText; + } +}); + + +Ext.define('Ext.grid.column.CheckColumn', { + extend: Ext.grid.column.Column , + alternateClassName: 'Ext.ux.CheckColumn', + alias: 'widget.checkcolumn', + + + align: 'center', + + + stopSelection: true, + + tdCls: Ext.baseCSSPrefix + 'grid-cell-checkcolumn', + innerCls: Ext.baseCSSPrefix + 'grid-cell-inner-checkcolumn', + + clickTargetName: 'el', + + constructor: function() { + this.addEvents( + + 'beforecheckchange', + + 'checkchange' + ); + this.scope = this; + this.callParent(arguments); + }, + + + processEvent: function(type, view, cell, recordIndex, cellIndex, e, record, row) { + var me = this, + key = type === 'keydown' && e.getKey(), + mousedown = type == 'mousedown'; + + if (!me.disabled && (mousedown || (key == e.ENTER || key == e.SPACE))) { + var dataIndex = me.dataIndex, + checked = !record.get(dataIndex); + + + if (me.fireEvent('beforecheckchange', me, recordIndex, checked) !== false) { + record.set(dataIndex, checked); + me.fireEvent('checkchange', me, recordIndex, checked); + + + if (mousedown) { + e.stopEvent(); + } + + + + if (!me.stopSelection) { + view.selModel.selectByPosition({ + row: recordIndex, + column: cellIndex + }); + } + + + return false; + } else { + + return !me.stopSelection; + } + } else { + return me.callParent(arguments); + } + }, + + + onEnable: function(silent) { + var me = this; + + me.callParent(arguments); + me.up('tablepanel').el.select('.' + Ext.baseCSSPrefix + 'grid-cell-' + me.id).removeCls(me.disabledCls); + if (!silent) { + me.fireEvent('enable', me); + } + }, + + + onDisable: function(silent) { + var me = this; + + me.callParent(arguments); + me.up('tablepanel').el.select('.' + Ext.baseCSSPrefix + 'grid-cell-' + me.id).addCls(me.disabledCls); + if (!silent) { + me.fireEvent('disable', me); + } + }, + + + + renderer : function(value, meta) { + var cssPrefix = Ext.baseCSSPrefix, + cls = [cssPrefix + 'grid-checkcolumn']; + + if (this.disabled) { + meta.tdCls += ' ' + this.disabledCls; + } + if (value) { + cls.push(cssPrefix + 'grid-checkcolumn-checked'); + } + return ''; + } +}); + + +Ext.define('Ext.grid.column.Date', { + extend: Ext.grid.column.Column , + alias: ['widget.datecolumn'], + + alternateClassName: 'Ext.grid.DateColumn', + + + + + + + + initComponent: function(){ + if (!this.format) { + this.format = Ext.Date.defaultFormat; + } + + this.callParent(arguments); + }, + + defaultRenderer: function(value){ + return Ext.util.Format.date(value, this.format); + } +}); + + +Ext.define('Ext.grid.column.Number', { + extend: Ext.grid.column.Column , + alias: ['widget.numbercolumn'], + + alternateClassName: 'Ext.grid.NumberColumn', + + + + format : '0,000.00', + + + + + + + defaultRenderer: function(value){ + return Ext.util.Format.number(value, this.format); + } +}); + + +Ext.define('Ext.grid.column.RowNumberer', { + extend: Ext.grid.column.Column , + alternateClassName: 'Ext.grid.RowNumberer', + alias: 'widget.rownumberer', + + + text: " ", + + + width: 23, + + + sortable: false, + + + draggable: false, + + + autoLock: true, + + + lockable: false, + + align: 'right', + + constructor : function(config){ + var me = this; + + + + me.width = me.width; + + me.callParent(arguments); + me.scope = me; + }, + + + resizable: false, + hideable: false, + menuDisabled: true, + dataIndex: '', + cls: Ext.baseCSSPrefix + 'row-numberer', + tdCls: Ext.baseCSSPrefix + 'grid-cell-row-numberer ' + Ext.baseCSSPrefix + 'grid-cell-special', + innerCls: Ext.baseCSSPrefix + 'grid-cell-inner-row-numberer', + rowspan: undefined, + + + renderer: function(value, metaData, record, rowIdx, colIdx, store) { + var rowspan = this.rowspan, + page = store.currentPage, + result = record.index; + + if (rowspan) { + metaData.tdAttr = 'rowspan="' + rowspan + '"'; + } + + if (result == null) { + result = rowIdx; + if (page > 1) { + result += (page - 1) * store.pageSize; + } + } + return result + 1; + } +}); + + +Ext.define('Ext.grid.column.Template', { + extend: Ext.grid.column.Column , + alias: ['widget.templatecolumn'], + + alternateClassName: 'Ext.grid.TemplateColumn', + + + + + + + + initComponent: function(){ + var me = this; + me.tpl = (!Ext.isPrimitive(me.tpl) && me.tpl.compile) ? me.tpl : new Ext.XTemplate(me.tpl); + + + me.hasCustomRenderer = true; + me.callParent(arguments); + }, + + defaultRenderer: function(value, meta, record) { + var data = Ext.apply({}, record.data, record.getAssociatedData()); + return this.tpl.apply(data); + } +}); + + +Ext.define('Ext.grid.feature.Feature', { + extend: Ext.util.Observable , + alias: 'feature.feature', + + wrapsItem: false, + + + isFeature: true, + + + disabled: false, + + + hasFeatureEvent: true, + + + eventPrefix: null, + + + eventSelector: null, + + + view: null, + + + grid: null, + + constructor: function(config) { + this.initialConfig = config; + this.callParent(arguments); + }, + + clone: function() { + return new this.self(this.initialConfig); + }, + + init: Ext.emptyFn, + + destroy: function(){ + this.clearListeners(); + }, + + + getFireEventArgs: function(eventName, view, featureTarget, e) { + return [eventName, view, featureTarget, e]; + }, + + vetoEvent: Ext.emptyFn, + + + enable: function() { + this.disabled = false; + }, + + + disable: function() { + this.disabled = true; + } + +}); + + +Ext.define('Ext.grid.feature.AbstractSummary', { + + extend: Ext.grid.feature.Feature , + + alias: 'feature.abstractsummary', + + summaryRowCls: Ext.baseCSSPrefix + 'grid-row-summary', + summaryTableCls: Ext.plainTableCls + ' ' + Ext.baseCSSPrefix + 'grid-table', + summaryRowSelector: '.' + Ext.baseCSSPrefix + 'grid-row-summary', + + + + summaryRowTpl: { + before: function(values, out) { + + + if (values.record.isSummary) { + this.summaryFeature.outputSummaryRecord(values.record, values, out); + return false; + } + }, + priority: 1000 + }, + + + showSummaryRow: true, + + + init: function() { + var me = this; + me.view.summaryFeature = me; + me.rowTpl = me.view.self.prototype.rowTpl; + + + + me.view.addRowTpl(me.summaryRowTpl).summaryFeature = me; + }, + + + toggleSummaryRow: function(visible) { + this.showSummaryRow = !!visible; + }, + + outputSummaryRecord: function(summaryRecord, contextValues, out) { + var view = contextValues.view, + savedRowValues = view.rowValues, + columns = contextValues.columns || view.headerCt.getVisibleGridColumns(), + colCount = columns.length, i, column, + + + values = { + view: view, + record: summaryRecord, + rowStyle: '', + rowClasses: [ this.summaryRowCls ], + itemClasses: [], + recordIndex: -1, + rowId: view.getRowId(summaryRecord), + columns: columns + }; + + + for (i = 0; i < colCount; i++) { + column = columns[i]; + column.savedRenderer = column.renderer; + if (column.summaryRenderer) { + column.renderer = column.summaryRenderer; + } else if (!column.summaryType) { + column.renderer = Ext.emptyFn; + } + + + if (!column.dataIndex) { + column.dataIndex = column.id; + } + } + + + view.rowValues = values; + view.self.prototype.rowTpl.applyOut(values, out); + view.rowValues = savedRowValues; + + + for (i = 0; i < colCount; i++) { + column = columns[i]; + column.renderer = column.savedRenderer; + column.savedRenderer = null; + } + }, + + + getSummary: function(store, type, field, group){ + var records = group.records; + + if (type) { + if (Ext.isFunction(type)) { + return store.getAggregate(type, null, records, [field]); + } + + switch (type) { + case 'count': + return records.length; + case 'min': + return store.getMin(records, field); + case 'max': + return store.getMax(records, field); + case 'sum': + return store.getSum(records, field); + case 'average': + return store.getAverage(records, field); + default: + return ''; + + } + } + }, + + + generateSummaryData: function(){ + var me = this, + store = me.view.store, + groups = store.groups.items, + reader = store.proxy.reader, + len = groups.length, + groupField = me.getGroupField(), + data = {}, + lockingPartner = me.lockingPartner, + i, group, record, + root, summaryRows, hasRemote, + convertedSummaryRow, remoteData; + + + if (me.remoteRoot && reader.rawData) { + hasRemote = true; + remoteData = {}; + + root = reader.root; + reader.root = me.remoteRoot; + reader.buildExtractors(true); + summaryRows = reader.getRoot(reader.rawData)||[]; + len = summaryRows.length; + + + if (!reader.convertRecordData) { + reader.buildExtractors(); + } + + for (i = 0; i < len; ++i) { + convertedSummaryRow = {}; + + + reader.convertRecordData(convertedSummaryRow, summaryRows[i]); + remoteData[convertedSummaryRow[groupField]] = convertedSummaryRow; + } + + + reader.root = root; + reader.buildExtractors(true); + } + + for (i = 0; i < len; ++i) { + group = groups[i]; + + if (hasRemote || group.isDirty() || !group.hasAggregate()) { + if (hasRemote) { + record = me.populateRemoteRecord(group, remoteData); + } else { + record = me.populateRecord(group); + } + + if (!lockingPartner || (me.view.ownerCt === me.view.ownerCt.ownerLockable.normalGrid)) { + group.commit(); + } + } else { + record = group.getAggregateRecord(); + } + data[group.key] = record; + } + + return data; + }, + + populateRemoteRecord: function(group, data) { + var record = group.getAggregateRecord(true), + groupData = data[group.key], + field; + + record.beginEdit(); + for (field in groupData) { + if (groupData.hasOwnProperty(field)) { + if (field !== record.idProperty) { + record.set(field, groupData[field]); + } + } + } + record.endEdit(true); + record.commit(true); + + return record; + }, + + populateRecord: function(group){ + var me = this, + view = me.grid.ownerLockable ? me.grid.ownerLockable.view : me.view, + store = me.view.store, + record = group.getAggregateRecord(), + + columns = view.headerCt.getGridColumns(), + len = columns.length, + i, column, fieldName; + + record.beginEdit(); + for (i = 0; i < len; ++i) { + column = columns[i]; + + fieldName = column.dataIndex || column.id; + record.set(fieldName, me.getSummary(store, column.summaryType, fieldName, group)); + } + record.endEdit(true); + record.commit(); + + return record; + } +}); + + +Ext.define('Ext.grid.feature.GroupStore', { + extend: Ext.util.Observable , + + isStore: true, + + constructor: function(groupingFeature, store) { + var me = this; + + me.superclass.constructor.apply(me, arguments); + me.groupingFeature = groupingFeature; + me.bindStore(store); + me.processStore(store); + me.view.dataSource = me; + }, + + bindStore: function(store) { + var me = this; + + if (me.store) { + Ext.destroy(me.storeListeners); + me.store = null; + } + if (store) { + me.storeListeners = store.on({ + bulkremove: me.onBulkRemove, + add: me.onAdd, + update: me.onUpdate, + refresh: me.onRefresh, + clear: me.onClear, + scope: me, + destroyable: true + }); + me.store = store; + } + }, + + processStore: function(store) { + var me = this, + groups = store.getGroups(), + groupCount = groups.length, + i, + group, + groupPlaceholder, + data = me.data, + oldGroupCache = me.groupingFeature.groupCache, + groupCache = me.groupingFeature.clearGroupCache(), + collapseAll = me.groupingFeature.startCollapsed; + + if (data) { + data.clear(); + } else { + data = me.data = new Ext.util.MixedCollection(false, Ext.data.Store.recordIdFn); + } + + if (store.getCount()) { + + + me.groupingFeature.startCollapsed = false; + + for (i = 0; i < groupCount; i++) { + + + + group = groups[i]; + + + groupCache[group.name] = group; + group.isCollapsed = collapseAll || (oldGroupCache[group.name] && oldGroupCache[group.name].isCollapsed); + + + + if (group.isCollapsed) { + group.placeholder = groupPlaceholder = new store.model(null, 'group-' + group.name + '-placeholder'); + groupPlaceholder.set(me.getGroupField(), group.name); + groupPlaceholder.rows = groupPlaceholder.children = group.children; + groupPlaceholder.isCollapsedPlaceholder = true; + data.add(groupPlaceholder); + } + + + else { + data.insert(me.data.length, group.children); + } + } + } + }, + + isCollapsed: function(name) { + return this.groupingFeature.groupCache[name].isCollapsed; + }, + + isInCollapsedGroup: function(record) { + var groupData; + + if (this.store.isGrouped() && (groupData = this.groupingFeature.groupCache[record.get(this.getGroupField())])) { + return groupData.isCollapsed || false; + } + return false; + }, + + getCount: function() { + return this.data.getCount(); + }, + + getTotalCount: function() { + return this.data.getCount(); + }, + + + rangeCached: function(start, end) { + return end < this.getCount(); + }, + + getRange: function(start, end, options) { + var result = this.data.getRange(start, end); + + if (options && options.callback) { + options.callback.call(options.scope || this, result, start, end, options); + } + return result; + }, + + getAt: function(index) { + return this.getRange(index, index)[0]; + }, + + getById: function(id) { + return this.store.getById(id); + }, + + expandGroup: function(group) { + var me = this, + startIdx; + + if (typeof group === 'string') { + group = me.groupingFeature.groupCache[group]; + } + + if (group && group.children.length && (startIdx = me.indexOf(group.children[0], true, true)) !== -1) { + + + group.isCollapsed = false; + me.isExpandingOrCollapsing = 1; + + + me.data.removeAt(startIdx); + me.fireEvent('bulkremove', me, [me.getGroupPlaceholder(group)], [startIdx]); + + + me.data.insert(startIdx, group.children); + me.fireEvent('add', me, group.children, startIdx); + + me.fireEvent('groupexpand', me, group); + me.isExpandingOrCollapsing = 0; + } + }, + + collapseGroup: function(group) { + var me = this, + startIdx, + placeholder, + i, j, len, + removeIndices; + + if (typeof group === 'string') { + group = me.groupingFeature.groupCache[group]; + } + + if (group && (len = group.children.length) && (startIdx = me.indexOf(group.children[0], true)) !== -1) { + + + group.isCollapsed = true; + me.isExpandingOrCollapsing = 2; + + + me.data.removeRange(startIdx, len); + + + removeIndices = new Array(len); + for (i = 0, j = startIdx; i < len; i++, j++) { + removeIndices[i] = j; + } + me.fireEvent('bulkremove', me, group.children, removeIndices); + + + me.data.insert(startIdx, placeholder = me.getGroupPlaceholder(group)); + me.fireEvent('add', me, [placeholder], startIdx); + + me.fireEvent('groupcollapse', me, group); + me.isExpandingOrCollapsing = 0; + } + }, + + getGroupPlaceholder: function(group) { + if (!group.placeholder) { + var groupPlaceholder = group.placeholder = new this.store.model(null, 'group-' + group.name + '-placeholder'); + groupPlaceholder.set(this.getGroupField(), group.name); + groupPlaceholder.rows = groupPlaceholder.children = group.children; + groupPlaceholder.isCollapsedPlaceholder = true; + } + return group.placeholder; + }, + + + + + indexOf: function(record, viewOnly, includeCollapsed) { + var me = this, + groups, + groupCount, + i, + group, + groupIndex, + result = 0; + + if (record && (includeCollapsed || !me.isInCollapsedGroup(record))) { + groups = me.store.getGroups(); + groupCount = groups.length; + for (i = 0; i < groupCount; i++) { + + + + group = groups[i]; + if (group.name === this.store.getGroupString(record)) { + groupIndex = Ext.Array.indexOf(group.children, record); + return result + groupIndex; + } + + result += (viewOnly && me.isCollapsed(group.name)) ? 1 : group.children.length; + } + } + return -1; + }, + + + indexOfTotal: function(record) { + var index = record.index; + if (index || index === 0) { + return index; + } + return this.istore.ndexOf(record); + }, + + onRefresh: function(store) { + this.processStore(this.store); + this.fireEvent('refresh', this); + }, + + onBulkRemove: function(store, records, indices) { + this.processStore(this.store); + this.fireEvent('refresh', this); + }, + + onClear: function(store, records, startIndex) { + this.processStore(this.store); + this.fireEvent('clear', this); + }, + + onAdd: function(store, records, startIndex) { + this.processStore(this.store); + this.fireEvent('refresh', this); + }, + + onUpdate: function(store, record, operation, modifiedFieldNames) { + var me = this, + groupInfo = me.groupingFeature.getRecordGroup(record), + firstRec, lastRec; + + + + + if (store.isGrouped()) { + if (modifiedFieldNames && Ext.Array.contains(modifiedFieldNames, me.groupingFeature.getGroupField())) { + return me.onRefresh(me.store); + } + + + if (groupInfo.isCollapsed) { + me.fireEvent('update', me, groupInfo.placeholder); + } + + + + else { + Ext.suspendLayouts(); + + + me.fireEvent('update', me, record, operation, modifiedFieldNames); + + + + firstRec = groupInfo.children[0]; + lastRec = groupInfo.children[groupInfo.children.length - 1]; + + + if (firstRec !== record) { + me.fireEvent('update', me, firstRec, 'edit'); + } + if (lastRec !== record && lastRec !== firstRec) { + me.fireEvent('update', me, lastRec, 'edit'); + } + Ext.resumeLayouts(true); + } + } else { + + me.fireEvent('update', me, record, operation, modifiedFieldNames); + } + } +}); + + +Ext.define('Ext.grid.feature.Grouping', { + extend: Ext.grid.feature.Feature , + mixins: { + summary: Ext.grid.feature.AbstractSummary + }, + + + alias: 'feature.grouping', + + eventPrefix: 'group', + groupCls: Ext.baseCSSPrefix + 'grid-group-hd', + eventSelector: '.' + Ext.baseCSSPrefix + 'grid-group-hd', + + refreshData: {}, + groupInfo: {}, + wrapsItem: true, + + + + + + + + + + + + + groupHeaderTpl: '{columnName}: {name}', + + + depthToIndent: 17, + + collapsedCls: Ext.baseCSSPrefix + 'grid-group-collapsed', + hdCollapsedCls: Ext.baseCSSPrefix + 'grid-group-hd-collapsed', + hdNotCollapsibleCls: Ext.baseCSSPrefix + 'grid-group-hd-not-collapsible', + collapsibleCls: Ext.baseCSSPrefix + 'grid-group-hd-collapsible', + ctCls: Ext.baseCSSPrefix + 'group-hd-container', + + + + groupByText : 'Group by this field', + + + + showGroupsText : 'Show in groups', + + + + hideGroupedHeader : false, + + + startCollapsed : false, + + + enableGroupingMenu : true, + + + enableNoGroups : true, + + + collapsible: true, + + + expandTip: 'Click to expand. CTRL key collapses all others', + + + + collapseTip: 'Click to collapse. CTRL/click collapses all others', + + + showSummaryRow: false, + + tableTpl: { + before: function(values) { + + if (this.groupingFeature.disabled || values.rows.length === 1 && values.rows[0].isSummary) { + return; + } + this.groupingFeature.setup(values.rows, values.view.rowValues); + }, + after: function(values) { + + if (this.groupingFeature.disabled || values.rows.length === 1 && values.rows[0].isSummary) { + return; + } + this.groupingFeature.cleanup(values.rows, values.view.rowValues); + }, + priority: 200 + }, + + groupTpl: [ + '{%', + 'var me = this.groupingFeature;', + + 'if (me.disabled) {', + 'values.needsWrap = false;', + '} else {', + 'me.setupRowData(values.record, values.recordIndex, values);', + 'values.needsWrap = !me.disabled && (values.isFirstRow || values.summaryRecord);', + '}', + '%}', + '', + ' ' + Ext.baseCSSPrefix + 'grid-group-row">', + '', + '', + '{%', + + + 'var groupTitleStyle = (!values.view.lockingPartner || (values.view.ownerCt === values.view.ownerCt.ownerLockable.lockedGrid) || (values.view.lockingPartner.headerCt.getVisibleGridColumns().length === 0)) ? "" : "visibility:hidden";', + '%}', + '
    ', + '
    ', + '{[values.groupHeaderTpl.apply(values.groupInfo, parent) || " "]}', + '
    ', + '
    ', + '
    ', + + + '', + ' ', Ext.baseCSSPrefix, 'grid-table-summary"', + 'border="0" cellspacing="0" cellpadding="0" style="width:100%">', + '{[values.view.renderColumnSizer(out)]}', + + '', + '{%', + 'values.itemClasses.length = 0;', + 'this.nextTpl.applyOut(values, out, parent);', + '%}', + '', + '', + '{%me.outputSummaryRecord(values.summaryRecord, values, out);%}', + '', + '
    ', + '
    ', + '', + '', + '', + '{%this.nextTpl.applyOut(values, out, parent);%}', + '', { + priority: 200, + + syncRowHeights: function(firstRow, secondRow) { + firstRow = Ext.fly(firstRow, 'syncDest'); + secondRow = Ext.fly(secondRow, 'sycSrc'); + var owner = this.owner, + firstHd = firstRow.down(owner.eventSelector, true), + secondHd, + firstSummaryRow = firstRow.down(owner.summaryRowSelector, true), + secondSummaryRow, + firstHeight, secondHeight; + + + if (firstHd && (secondHd = secondRow.down(owner.eventSelector, true))) { + firstHd.style.height = secondHd.style.height = ''; + if ((firstHeight = firstHd.offsetHeight) > (secondHeight = secondHd.offsetHeight)) { + Ext.fly(secondHd).setHeight(firstHeight); + } + else if (secondHeight > firstHeight) { + Ext.fly(firstHd).setHeight(secondHeight); + } + } + + + if (firstSummaryRow && (secondSummaryRow = secondRow.down(owner.summaryRowSelector, true))) { + firstSummaryRow.style.height = secondSummaryRow.style.height = ''; + if ((firstHeight = firstSummaryRow.offsetHeight) > (secondHeight = secondSummaryRow.offsetHeight)) { + Ext.fly(secondSummaryRow).setHeight(firstHeight); + } + else if (secondHeight > firstHeight) { + Ext.fly(firstSummaryRow).setHeight(secondHeight); + } + } + }, + + syncContent: function(destRow, sourceRow) { + destRow = Ext.fly(destRow, 'syncDest'); + sourceRow = Ext.fly(sourceRow, 'sycSrc'); + var owner = this.owner, + destHd = destRow.down(owner.eventSelector, true), + sourceHd = sourceRow.down(owner.eventSelector, true), + destSummaryRow = destRow.down(owner.summaryRowSelector, true), + sourceSummaryRow = sourceRow.down(owner.summaryRowSelector, true); + + + if (destHd && sourceHd) { + Ext.fly(destHd).syncContent(sourceHd); + } + + + if (destSummaryRow && sourceSummaryRow) { + Ext.fly(destSummaryRow).syncContent(sourceSummaryRow); + } + } + } + ], + + constructor: function() { + this.groupCache = {}; + this.callParent(arguments); + }, + + init: function(grid) { + var me = this, + view = me.view; + + view.isGrouping = true; + + + if (me.lockingPartner && me.lockingPartner.groupCache) { + me.groupCache = me.lockingPartner.groupCache; + } + + me.mixins.summary.init.call(me); + + me.callParent(arguments); + view.headerCt.on({ + columnhide: me.onColumnHideShow, + columnshow: me.onColumnHideShow, + columnmove: me.onColumnMove, + scope: me + }); + + + view.addTableTpl(me.tableTpl).groupingFeature = me; + + + view.addRowTpl(Ext.XTemplate.getTpl(me, 'groupTpl')).groupingFeature = me; + + view.preserveScrollOnRefresh = true; + + + if (view.store.buffered) { + me.collapsible = false; + } + + else { + + + if (this.lockingPartner && this.lockingPartner.dataSource) { + me.dataSource = view.dataSource = this.lockingPartner.dataSource; + } else { + me.dataSource = view.dataSource = new Ext.grid.feature.GroupStore(me, view.store); + } + } + + me.grid.on({ + reconfigure: me.onReconfigure + }); + view.on({ + afterrender: me.afterViewRender, + scope: me, + single: true + }); + }, + + clearGroupCache: function() { + var me = this, + groupCache = me.groupCache = {}; + + if (me.lockingPartner) { + me.lockingPartner.groupCache = groupCache; + } + return groupCache; + }, + + vetoEvent: function(record, row, rowIndex, e) { + + if (e.type !== 'mouseover' && e.type !== 'mouseout' && e.type !== 'mouseenter' && e.type !== 'mouseleave' && e.getTarget(this.eventSelector)) { + return false; + } + }, + + enable: function() { + var me = this, + view = me.view, + store = view.store, + groupToggleMenuItem; + + me.lastGroupField = me.getGroupField(); + + view.isGrouping = true; + if (me.lastGroupIndex) { + me.block(); + store.group(me.lastGroupIndex); + me.unblock(); + } + me.callParent(); + groupToggleMenuItem = me.view.headerCt.getMenu().down('#groupToggleMenuItem'); + if (groupToggleMenuItem) { + groupToggleMenuItem.setChecked(true, true); + } + me.refreshIf(); + }, + + disable: function() { + var me = this, + view = me.view, + store = view.store, + groupToggleMenuItem, + lastGroup; + + view.isGrouping = false; + lastGroup = store.groupers.first(); + if (lastGroup) { + me.lastGroupIndex = lastGroup.property; + me.block(); + store.clearGrouping(); + me.unblock(); + } + + me.callParent(); + groupToggleMenuItem = me.view.headerCt.getMenu().down('#groupToggleMenuItem'); + if (groupToggleMenuItem) { + groupToggleMenuItem.setChecked(false, true); + } + me.refreshIf(); + }, + + refreshIf: function() { + var ownerCt = this.grid.ownerCt, + view = this.view; + + if (!view.store.remoteGroup && !this.blockRefresh) { + + + if (ownerCt && ownerCt.lockable) { + ownerCt.view.refresh(); + } else { + view.refresh(); + } + } + }, + + + afterViewRender: function() { + var me = this, + view = me.view; + + view.on({ + scope: me, + groupclick: me.onGroupClick + }); + + if (me.enableGroupingMenu) { + me.injectGroupingMenu(); + } + + me.pruneGroupedHeader(); + + me.lastGroupField = me.getGroupField(); + me.block(); + me.onGroupChange(); + me.unblock(); + }, + + injectGroupingMenu: function() { + var me = this, + headerCt = me.view.headerCt; + + headerCt.showMenuBy = me.showMenuBy; + headerCt.getMenuItems = me.getMenuItems(); + }, + + onColumnHideShow: function(headerOwnerCt, header) { + var view = this.view, + headerCt = view.headerCt, + menu = headerCt.getMenu(), + groupToggleMenuItem = menu.down('#groupMenuItem'), + colCount = headerCt.getGridColumns().length, + items, + len, + i; + + + if (groupToggleMenuItem) { + if (headerCt.getVisibleGridColumns().length > 1) { + groupToggleMenuItem.enable(); + } else { + groupToggleMenuItem.disable(); + } + } + + + if (view.rendered) { + items = view.el.query('.' + this.ctCls); + for (i = 0, len = items.length; i < len; ++i) { + items[i].colSpan = colCount; + } + } + }, + + + + onColumnMove: function() { + var me = this, + store = me.view.store, + groups, + i, len, + groupInfo, firstRec, lastRec; + + if (store.isGrouped()) { + groups = store.getGroups(); + len = groups.length; + + + for (i = 0; i < len; i++) { + groupInfo = groups[i]; + firstRec = groupInfo.children[0]; + lastRec = groupInfo.children[groupInfo.children.length - 1]; + + + + store.fireEvent('update', store, firstRec, 'edit', null); + if (lastRec !== firstRec) { + store.fireEvent('update', store, lastRec, 'edit', null); + } + } + } + }, + + showMenuBy: function(t, header) { + var menu = this.getMenu(), + groupMenuItem = menu.down('#groupMenuItem'), + groupMenuMeth = header.groupable === false || this.view.headerCt.getVisibleGridColumns().length < 2 ? 'disable' : 'enable', + groupToggleMenuItem = menu.down('#groupToggleMenuItem'), + isGrouped = this.view.store.isGrouped(); + + groupMenuItem[groupMenuMeth](); + if (groupToggleMenuItem) { + groupToggleMenuItem.setChecked(isGrouped, true); + groupToggleMenuItem[isGrouped ? 'enable' : 'disable'](); + } + Ext.grid.header.Container.prototype.showMenuBy.apply(this, arguments); + }, + + getMenuItems: function() { + var me = this, + groupByText = me.groupByText, + disabled = me.disabled || !me.getGroupField(), + showGroupsText = me.showGroupsText, + enableNoGroups = me.enableNoGroups, + getMenuItems = me.view.headerCt.getMenuItems; + + + return function() { + + + + var o = getMenuItems.call(this); + o.push('-', { + iconCls: Ext.baseCSSPrefix + 'group-by-icon', + itemId: 'groupMenuItem', + text: groupByText, + handler: me.onGroupMenuItemClick, + scope: me + }); + if (enableNoGroups) { + o.push({ + itemId: 'groupToggleMenuItem', + text: showGroupsText, + checked: !disabled, + checkHandler: me.onGroupToggleMenuItemClick, + scope: me + }); + } + return o; + }; + }, + + + onGroupMenuItemClick: function(menuItem, e) { + var me = this, + menu = menuItem.parentMenu, + hdr = menu.activeHeader, + view = me.view, + store = view.store; + + me.lastGroupIndex = null; + me.block(); + me.enable(); + store.group(hdr.dataIndex); + me.pruneGroupedHeader(); + me.unblock(); + me.refreshIf(); + }, + + block: function(fromPartner) { + this.blockRefresh = this.view.blockRefresh = true; + if (this.lockingPartner && !fromPartner) { + this.lockingPartner.block(true); + } + }, + + unblock: function(fromPartner) { + this.blockRefresh = this.view.blockRefresh = false; + if (this.lockingPartner && !fromPartner) { + this.lockingPartner.unblock(true); + } + }, + + + onGroupToggleMenuItemClick: function(menuItem, checked) { + this[checked ? 'enable' : 'disable'](); + }, + + + pruneGroupedHeader: function() { + var me = this, + header = me.getGroupedHeader(); + + if (me.hideGroupedHeader && header) { + Ext.suspendLayouts(); + if (me.prunedHeader && me.prunedHeader !== header) { + me.prunedHeader.show(); + } + me.prunedHeader = header; + header.hide(); + Ext.resumeLayouts(true); + } + }, + + getHeaderNode: function(groupName) { + return Ext.get(this.createGroupId(groupName)); + }, + + getGroup: function(name) { + var cache = this.groupCache, + item = cache[name]; + + if (!item) { + item = cache[name] = { + isCollapsed: false + }; + } + return item; + }, + + + isExpanded: function(groupName) { + return !this.getGroup(groupName).isCollapsed; + }, + + + expand: function(groupName, focus) { + this.doCollapseExpand(false, groupName, focus); + }, + + + expandAll: function() { + var me = this, + view = me.view, + groupCache = me.groupCache, + groupName, + lockingPartner = me.lockingPartner, + partnerView; + + + + for (groupName in groupCache) { + if (groupCache.hasOwnProperty(groupName)) { + groupCache[groupName].isCollapsed = false; + } + } + Ext.suspendLayouts(); + view.suspendEvent('beforerefresh', 'refresh'); + if (lockingPartner) { + partnerView = lockingPartner.view + partnerView.suspendEvent('beforerefresh', 'refresh'); + } + me.dataSource.onRefresh(); + view.resumeEvent('beforerefresh', 'refresh'); + if (lockingPartner) { + partnerView.resumeEvent('beforerefresh', 'refresh'); + } + Ext.resumeLayouts(true); + + + for (groupName in groupCache) { + if (groupCache.hasOwnProperty(groupName)) { + me.afterCollapseExpand(false, groupName); + if (lockingPartner) { + lockingPartner.afterCollapseExpand(false, groupName); + } + } + } + }, + + + collapse: function(groupName, focus) { + this.doCollapseExpand(true, groupName, focus); + }, + + + + isAllCollapsed: function() { + var me = this, + groupCache = me.groupCache, + groupName; + + + + for (groupName in groupCache) { + if (groupCache.hasOwnProperty(groupName)) { + if (!groupCache[groupName].isCollapsed) { + return false; + } + } + } + return true; + }, + + + + isAllExpanded: function() { + var me = this, + groupCache = me.groupCache, + groupName; + + + + for (groupName in groupCache) { + if (groupCache.hasOwnProperty(groupName)) { + if (groupCache[groupName].isCollapsed) { + return false; + } + } + } + return true; + }, + + + collapseAll: function() { + var me = this, + view = me.view, + groupCache = me.groupCache, + groupName, + lockingPartner = me.lockingPartner, + partnerView; + + + + for (groupName in groupCache) { + if (groupCache.hasOwnProperty(groupName)) { + groupCache[groupName].isCollapsed = true; + } + } + Ext.suspendLayouts(); + view.suspendEvent('beforerefresh', 'refresh'); + if (lockingPartner) { + partnerView = lockingPartner.view + partnerView.suspendEvent('beforerefresh', 'refresh'); + } + me.dataSource.onRefresh(); + view.resumeEvent('beforerefresh', 'refresh'); + if (lockingPartner) { + partnerView.resumeEvent('beforerefresh', 'refresh'); + } + + if (lockingPartner && !lockingPartner.isAllCollapsed()) { + lockingPartner.collapseAll(); + } + Ext.resumeLayouts(true); + + + for (groupName in groupCache) { + if (groupCache.hasOwnProperty(groupName)) { + me.afterCollapseExpand(true, groupName); + if (lockingPartner) { + lockingPartner.afterCollapseExpand(true, groupName); + } + } + } + + }, + + doCollapseExpand: function(collapsed, groupName, focus) { + var me = this, + lockingPartner = me.lockingPartner, + group = me.groupCache[groupName]; + + + if (group.isCollapsed != collapsed) { + + + + Ext.suspendLayouts(); + if (collapsed) { + me.dataSource.collapseGroup(group); + } else { + me.dataSource.expandGroup(group); + } + Ext.resumeLayouts(true); + + + me.afterCollapseExpand(collapsed, groupName, focus); + + + + if (lockingPartner) { + lockingPartner.afterCollapseExpand(collapsed, groupName, false); + } + } + }, + + afterCollapseExpand: function(collapsed, groupName, focus) { + var me = this, + view = me.view, + header; + + header = Ext.get(this.getHeaderNode(groupName)); + view.fireEvent(collapsed ? 'groupcollapse' : 'groupexpand', view, header, groupName); + if (focus) { + header.up(view.getItemSelector()).scrollIntoView(view.el, null, true); + } + }, + + onGroupChange: function() { + var me = this, + field = me.getGroupField(), + menuItem, + visibleGridColumns, + groupingByLastVisibleColumn; + + if (me.hideGroupedHeader) { + if (me.lastGroupField) { + menuItem = me.getMenuItem(me.lastGroupField); + if (menuItem) { + menuItem.setChecked(true); + } + } + if (field) { + visibleGridColumns = me.view.headerCt.getVisibleGridColumns(); + + + + groupingByLastVisibleColumn = ((visibleGridColumns.length === 1) && (visibleGridColumns[0].dataIndex == field)); + menuItem = me.getMenuItem(field); + if (menuItem && !groupingByLastVisibleColumn) { + menuItem.setChecked(false); + } + } + } + me.refreshIf(); + me.lastGroupField = field; + }, + + + getMenuItem: function(dataIndex){ + var view = this.view, + header = view.headerCt.down('gridcolumn[dataIndex=' + dataIndex + ']'), + menu = view.headerCt.getMenu(); + + return header ? menu.down('menuitem[headerId='+ header.id +']') : null; + }, + + onGroupKey: function(keyCode, event) { + var me = this, + groupName = me.getGroupName(event.target); + + if (groupName) { + me.onGroupClick(me.view, event.target, groupName, event); + } + }, + + + onGroupClick: function(view, rowElement, groupName, e) { + var me = this, + groupCache = me.groupCache, + groupIsCollapsed = !me.isExpanded(groupName), + g; + + if (me.collapsible) { + + + if (e.ctrlKey) { + Ext.suspendLayouts(); + for (g in groupCache) { + if (g === groupName) { + if (groupIsCollapsed) { + me.expand(groupName); + } + } else { + me.doCollapseExpand(true, g, false); + } + } + Ext.resumeLayouts(true); + return; + } + + if (groupIsCollapsed) { + me.expand(groupName); + } else { + me.collapse(groupName); + } + } + }, + + setupRowData: function(record, idx, rowValues) { + var me = this, + data = me.refreshData, + groupInfo = me.groupInfo, + header = data.header, + groupField = data.groupField, + store = me.view.dataSource, + grouper, groupName, prev, next; + + rowValues.isCollapsedGroup = false; + rowValues.summaryRecord = null; + + if (data.doGrouping) { + grouper = me.view.store.groupers.first(); + + + + if (record.children) { + groupName = grouper.getGroupString(record.children[0]); + + rowValues.isFirstRow = rowValues.isLastRow = true; + rowValues.itemClasses.push(me.hdCollapsedCls); + rowValues.isCollapsedGroup = true; + rowValues.groupInfo = groupInfo; + groupInfo.groupField = groupField; + groupInfo.name = groupName; + groupInfo.groupValue = record.children[0].get(groupField); + groupInfo.columnName = header ? header.text : groupField; + rowValues.collapsibleCls = me.collapsible ? me.collapsibleCls : me.hdNotCollapsibleCls; + rowValues.groupId = me.createGroupId(groupName); + groupInfo.rows = groupInfo.children = record.children; + if (me.showSummaryRow) { + rowValues.summaryRecord = data.summaryData[groupName]; + } + return; + } + + groupName = grouper.getGroupString(record); + + + rowValues.isFirstRow = idx === 0; + if (!rowValues.isFirstRow) { + prev = store.getAt(idx - 1); + + if (prev) { + + rowValues.isFirstRow = !prev.isEqual(grouper.getGroupString(prev), groupName); + } + } + + + rowValues.isLastRow = idx == store.getTotalCount() - 1; + if (!rowValues.isLastRow) { + next = store.getAt(idx + 1); + if (next) { + + rowValues.isLastRow = !next.isEqual(grouper.getGroupString(next), groupName); + } + } + + if (rowValues.isFirstRow) { + groupInfo.groupField = groupField; + groupInfo.name = groupName; + groupInfo.groupValue = record.get(groupField); + groupInfo.columnName = header ? header.text : groupField; + rowValues.collapsibleCls = me.collapsible ? me.collapsibleCls : me.hdNotCollapsibleCls; + rowValues.groupId = me.createGroupId(groupName); + + if (!me.isExpanded(groupName)) { + rowValues.itemClasses.push(me.hdCollapsedCls); + rowValues.isCollapsedGroup = true; + } + + + if (store.buffered) { + groupInfo.rows = groupInfo.children = []; + } else { + groupInfo.rows = groupInfo.children = me.getRecordGroup(record).children; + } + rowValues.groupInfo = groupInfo; + } + + if (rowValues.isLastRow) { + + if (me.showSummaryRow) { + rowValues.summaryRecord = data.summaryData[groupName]; + } + } + } + }, + + setup: function(rows, rowValues) { + var me = this, + data = me.refreshData, + isGrouping = !me.disabled && me.view.store.isGrouped(); + + me.skippedRows = 0; + if (rowValues.view.bufferedRenderer) { + rowValues.view.bufferedRenderer.variableRowHeight = true; + } + data.groupField = me.getGroupField(); + data.header = me.getGroupedHeader(data.groupField); + data.doGrouping = isGrouping; + rowValues.groupHeaderTpl = Ext.XTemplate.getTpl(me, 'groupHeaderTpl'); + + if (isGrouping && me.showSummaryRow) { + data.summaryData = me.generateSummaryData(); + } + }, + + cleanup: function(rows, rowValues) { + var data = this.refreshData; + + rowValues.groupInfo = rowValues.groupHeaderTpl = rowValues.isFirstRow = null; + data.groupField = data.header = null; + }, + + getGroupName: function(element) { + var me = this, + view = me.view, + eventSelector = me.eventSelector, + parts, + targetEl, + row; + + + targetEl = Ext.fly(element).findParent(eventSelector); + + if (!targetEl) { + + row = Ext.fly(element).findParent(view.itemSelector); + if (row) { + targetEl = row.down(eventSelector, true); + } + } + + if (targetEl) { + parts = targetEl.id.split(view.id + '-hd-'); + if (parts.length === 2) { + return Ext.htmlDecode(parts[1]); + } + } + }, + + + getRecordGroup: function(record) { + var grouper = this.view.store.groupers.first(); + if (grouper) { + return this.groupCache[grouper.getGroupString(record)]; + } + }, + + createGroupId: function(group) { + return this.view.id + '-hd-' + Ext.htmlEncode(group); + }, + + createGroupCls: function(group) { + return this.view.id + '-' + Ext.htmlEncode(group) + '-item'; + }, + + getGroupField: function(){ + return this.view.store.getGroupField(); + }, + + getGroupedHeader: function(groupField) { + var me = this, + headerCt = me.view.headerCt, + partner = me.lockingPartner, + selector, header; + + groupField = groupField || this.getGroupField(); + + if (groupField) { + selector = '[dataIndex=' + groupField + ']'; + header = headerCt.down(selector); + + if (!header && partner) { + header = partner.view.headerCt.down(selector); + } + } + return header || null; + }, + + getFireEventArgs: function(type, view, targetEl, e) { + return [type, view, targetEl, this.getGroupName(targetEl), e]; + }, + + destroy: function(){ + var me = this, + dataSource = me.dataSource; + + me.view = me.prunedHeader = me.grid = me.groupCache = me.dataSource = null; + me.callParent(); + if (dataSource) { + dataSource.bindStore(null); + } + }, + + onReconfigure: function(grid, store, columns, oldStore, oldColumns) { + var me = grid; + + if (store && store !== oldStore) { + + if (store.buffered !== oldStore.buffered) { + Ext.Error.raise('Cannot reconfigure grouping switching between buffered and non-buffered stores'); + } + if (store.buffered) { + me.bindStore(store); + me.dataSource.processStore(store); + } + } + } +}); + + +Ext.define('Ext.grid.feature.GroupingSummary', { + + extend: Ext.grid.feature.Grouping , + + alias: 'feature.groupingsummary', + + showSummaryRow: true, + + vetoEvent: function(record, row, rowIndex, e){ + var result = this.callParent(arguments); + if (result !== false) { + if (e.getTarget(this.summaryRowSelector)) { + result = false; + } + } + return result; + } +}); + + +Ext.define('Ext.grid.feature.RowBody', { + extend: Ext.grid.feature.Feature , + alias: 'feature.rowbody', + + rowBodyCls: Ext.baseCSSPrefix + 'grid-row-body', + rowBodyHiddenCls: Ext.baseCSSPrefix + 'grid-row-body-hidden', + rowBodyTdSelector: 'td.' + Ext.baseCSSPrefix + 'grid-cell-rowbody', + eventPrefix: 'rowbody', + eventSelector: 'tr.' + Ext.baseCSSPrefix + 'grid-rowbody-tr', + + tableTpl: { + before: function(values, out) { + var view = values.view, + rowValues = view.rowValues; + + this.rowBody.setup(values.rows, rowValues); + }, + after: function(values, out) { + var view = values.view, + rowValues = view.rowValues; + + this.rowBody.cleanup(values.rows, rowValues); + }, + priority: 100 + }, + + extraRowTpl: [ + '{%', + 'values.view.rowBodyFeature.setupRowData(values.record, values.recordIndex, values);', + 'this.nextTpl.applyOut(values, out, parent);', + '%}', + '', + '', + '
    {rowBody}
    ', + '', + '', { + priority: 100, + + syncRowHeights: function(firstRow, secondRow) { + var owner = this.owner, + firstRowBody = Ext.fly(firstRow).down(owner.eventSelector, true), + secondRowBody, + firstHeight, secondHeight; + + + if (firstRowBody && (secondRowBody = Ext.fly(secondRow).down(owner.eventSelector, true))) { + if ((firstHeight = firstRowBody.offsetHeight) > (secondHeight = secondRowBody.offsetHeight)) { + Ext.fly(secondRowBody).setHeight(firstHeight); + } + else if (secondHeight > firstHeight) { + Ext.fly(firstRowBody).setHeight(secondHeight); + } + } + }, + + syncContent: function(destRow, sourceRow) { + var owner = this.owner, + destRowBody = Ext.fly(destRow).down(owner.eventSelector, true), + sourceRowBody; + + + if (destRowBody && (sourceRowBody = Ext.fly(sourceRow).down(owner.eventSelector, true))) { + Ext.fly(destRowBody).syncContent(sourceRowBody); + } + } + } + ], + + init: function(grid) { + var me = this, + view = me.view; + + view.rowBodyFeature = me; + + + + if (!view.findFeature('rowwrap')) { + grid.mon(view, { + element: 'el', + mousedown: me.onMouseDown, + scope: me + }); + + me.mon(grid.getStore(), 'remove', me.onStoreRemove, me); + } + + view.headerCt.on({ + columnschanged: me.onColumnsChanged, + scope: me + }); + view.addTableTpl(me.tableTpl).rowBody = me; + view.addRowTpl(Ext.XTemplate.getTpl(this, 'extraRowTpl')); + me.callParent(arguments); + }, + + onStoreRemove: function(store, model, index){ + var view = this.view, + node; + + if (view.rendered) { + node = view.getNode(index); + if (node) { + node = Ext.fly(node).next(this.eventSelector); + if (node) { + node.remove(); + } + } + } + }, + + + onMouseDown: function(e) { + var me = this, + tableRow = e.getTarget(me.eventSelector); + + + if (tableRow && Ext.fly(tableRow = tableRow.previousSibling).is(me.view.getItemSelector())) { + e.target = tableRow; + me.view.handleEvent(e); + } + }, + + getSelectedRow: function(view, rowIndex) { + var selectedRow = view.getNode(rowIndex, false); + if (selectedRow) { + return Ext.fly(selectedRow).down(this.eventSelector); + } + return null; + }, + + + onColumnsChanged: function(headerCt) { + var items = this.view.el.query(this.rowBodyTdSelector), + colspan = headerCt.getVisibleGridColumns().length, + len = items.length, + i; + + for (i = 0; i < len; ++i) { + items[i].colSpan = colspan; + } + }, + + + setupRowData: function(record, rowIndex, rowValues) { + if (this.getAdditionalData) { + Ext.apply(rowValues, this.getAdditionalData(record.data, rowIndex, record, rowValues)); + } + }, + + setup: function(rows, rowValues) { + rowValues.rowBodyCls = this.rowBodyCls; + rowValues.rowBodyColspan = rowValues.view.getGridColumns().length; + }, + + cleanup: function(rows, rowValues) { + rowValues.rowBodyCls = rowValues.rowBodyColspan = rowValues.rowBody = null; + } +}); + + +Ext.define('Ext.grid.feature.RowWrap', { + extend: Ext.grid.feature.Feature , + alias: 'feature.rowwrap', + + rowWrapTd: 'td.' + Ext.baseCSSPrefix + 'grid-rowwrap', + + + hasFeatureEvent: false, + + tableTpl: { + before: function(values, out) { + if (values.view.bufferedRenderer) { + values.view.bufferedRenderer.variableRowHeight = true; + } + }, + priority: 200 + }, + + wrapTpl: [ + '', + '', + '', + '{[values.view.renderColumnSizer(out)]}', + '{%', + 'values.itemClasses.length = 0;', + 'this.nextTpl.applyOut(values, out, parent)', + '%}', + '
    ', + '', + '', { + priority: 200 + } + ], + + init: function(grid) { + var me = this; + me.view.addTableTpl(me.tableTpl); + me.view.addRowTpl(Ext.XTemplate.getTpl(me, 'wrapTpl')); + me.view.headerCt.on({ + columnhide: me.onColumnHideShow, + columnshow: me.onColumnHideShow, + scope: me + }); + }, + + + onColumnHideShow: function() { + var view = this.view, + items = view.el.query(this.rowWrapTd), + colspan = view.headerCt.getVisibleGridColumns().length, + len = items.length, + i; + + for (i = 0; i < len; ++i) { + items[i].colSpan = colspan; + } + } +}); + + +Ext.define('Ext.grid.feature.Summary', { + + + + extend: Ext.grid.feature.AbstractSummary , + + alias: 'feature.summary', + + + dock: undefined, + + dockedSummaryCls: Ext.baseCSSPrefix + 'docked-summary', + + panelBodyCls: Ext.baseCSSPrefix + 'summary-', + + init: function(grid) { + var me = this, + view = me.view; + + me.callParent(arguments); + + if (me.dock) { + grid.headerCt.on({ + afterlayout: me.onStoreUpdate, + scope: me + }); + grid.on({ + beforerender: function() { + var tableCls = [me.summaryTableCls]; + if (view.columnLines) { + tableCls[tableCls.length] = view.ownerCt.colLinesCls; + } + me.summaryBar = grid.addDocked({ + childEls: ['innerCt'], + renderTpl: [ + '
    ', + '', + '', + '
    ', + '
    ' + ], + style: 'overflow:hidden', + itemId: 'summaryBar', + cls: [ me.dockedSummaryCls, me.dockedSummaryCls + '-' + me.dock ], + xtype: 'component', + dock: me.dock, + weight: 10000000 + })[0]; + }, + afterrender: function() { + grid.body.addCls(me.panelBodyCls + me.dock); + view.mon(view.el, { + scroll: me.onViewScroll, + scope: me + }); + me.onStoreUpdate(); + }, + single: true + }); + + + grid.headerCt.afterComponentLayout = Ext.Function.createSequence(grid.headerCt.afterComponentLayout, function() { + me.summaryBar.innerCt.setWidth(this.getFullWidth() + Ext.getScrollbarSize().width); + }); + } else { + me.view.addFooterFn(me.renderTFoot); + } + + grid.on({ + columnmove: me.onStoreUpdate, + scope: me + }); + + + view.mon(view.store, { + update: me.onStoreUpdate, + datachanged: me.onStoreUpdate, + scope: me + }); + }, + + renderTFoot: function(values, out) { + var view = values.view, + me = view.findFeature('summary'); + + if (me.showSummaryRow) { + out.push(''); + me.outputSummaryRecord(me.createSummaryRecord(view), values, out); + out.push(''); + } + }, + + vetoEvent: function(record, row, rowIndex, e) { + return !e.getTarget(this.summaryRowSelector); + }, + + onViewScroll: function() { + this.summaryBar.el.dom.scrollLeft = this.view.el.dom.scrollLeft; + }, + + createSummaryRecord: function(view) { + var columns = view.headerCt.getVisibleGridColumns(), + info = { + records: view.store.getRange() + }, + colCount = columns.length, i, column, + summaryRecord = this.summaryRecord || (this.summaryRecord = new view.store.model(null, view.id + '-summary-record')); + + + summaryRecord.beginEdit(); + for (i = 0; i < colCount; i++) { + column = columns[i]; + + + + if (!column.dataIndex) { + column.dataIndex = column.id; + } + + summaryRecord.set(column.dataIndex, this.getSummary(view.store, column.summaryType, column.dataIndex, info)); + } + summaryRecord.endEdit(true); + + summaryRecord.commit(true); + summaryRecord.isSummary = true; + + return summaryRecord; + }, + + onStoreUpdate: function() { + var me = this, + view = me.view, + record = me.createSummaryRecord(view), + newRowDom = view.createRowElement(record, -1), + oldRowDom, partner, + p; + + if (!view.rendered) { + return; + } + + + if (me.dock) { + oldRowDom = me.summaryBar.el.down('.' + me.summaryRowCls, true); + } + + + else { + oldRowDom = me.view.getNode(record); + } + + if (oldRowDom) { + p = oldRowDom.parentNode; + p.insertBefore(newRowDom, oldRowDom); + p.removeChild(oldRowDom); + + partner = me.lockingPartner; + + + if (partner && partner.grid.rendered && !me.calledFromLockingPartner) { + partner.calledFromLockingPartner = true; + partner.onStoreUpdate(); + partner.calledFromLockingPartner = false; + } + } + + if (me.dock) { + me.onColumnHeaderLayout(); + } + }, + + + onColumnHeaderLayout: function() { + var view = this.view, + columns = view.headerCt.getVisibleGridColumns(), + column, + len = columns.length, i, + summaryEl = this.summaryBar.el, + el; + + for (i = 0; i < len; i++) { + column = columns[i]; + el = summaryEl.down(view.getCellSelector(column)); + if (el) { + if (column.hidden) { + el.setDisplayed(false); + } else { + el.setDisplayed(true); + el.setWidth(column.width || (column.lastBox ? column.lastBox.width : 100)); + } + } + } + } +}); + + +Ext.define('Ext.grid.locking.HeaderContainer', { + extend: Ext.grid.header.Container , + + + + + constructor: function(lockable) { + var me = this, + events, + event, + eventNames = [], + lockedGrid = lockable.lockedGrid, + normalGrid = lockable.normalGrid; + + me.lockable = lockable; + me.callParent(); + + + lockedGrid.columnManager.rootColumns = + normalGrid.columnManager.rootColumns = + lockable.columnManager = + me.columnManager = new Ext.grid.ColumnManager(lockedGrid.headerCt, normalGrid.headerCt); + + + events = lockedGrid.headerCt.events; + for (event in events) { + if (events.hasOwnProperty(event)) { + eventNames.push(event); + } + } + me.relayEvents(lockedGrid.headerCt, eventNames); + me.relayEvents(normalGrid.headerCt, eventNames); + }, + + getRefItems: function() { + return this.lockable.lockedGrid.headerCt.getRefItems().concat(this.lockable.normalGrid.headerCt.getRefItems()); + }, + + + + getGridColumns: function() { + return this.lockable.lockedGrid.headerCt.getGridColumns().concat(this.lockable.normalGrid.headerCt.getGridColumns()); + }, + + + getColumnsState: function () { + var me = this, + locked = me.lockable.lockedGrid.headerCt.getColumnsState(), + normal = me.lockable.normalGrid.headerCt.getColumnsState(); + + return locked.concat(normal); + }, + + + applyColumnsState: function (columns) { + var me = this, + lockedGrid = me.lockable.lockedGrid, + lockedHeaderCt = lockedGrid.headerCt, + normalHeaderCt = me.lockable.normalGrid.headerCt, + lockedCols = Ext.Array.toValueMap(lockedHeaderCt.items.items, 'headerId'), + normalCols = Ext.Array.toValueMap(normalHeaderCt.items.items, 'headerId'), + locked = [], + normal = [], + lockedWidth = 1, + length = columns.length, + i, existing, + lockedDefault, + col; + + for (i = 0; i < length; i++) { + col = columns[i]; + + lockedDefault = lockedCols[col.id]; + existing = lockedDefault || normalCols[col.id]; + + if (existing) { + if (existing.applyColumnState) { + existing.applyColumnState(col); + } + if (existing.locked === undefined) { + existing.locked = !!lockedDefault; + } + if (existing.locked) { + locked.push(existing); + if (!existing.hidden && typeof existing.width == 'number') { + lockedWidth += existing.width; + } + } else { + normal.push(existing); + } + } + } + + + if (locked.length + normal.length == lockedHeaderCt.items.getCount() + normalHeaderCt.items.getCount()) { + lockedHeaderCt.removeAll(false); + normalHeaderCt.removeAll(false); + + lockedHeaderCt.add(locked); + normalHeaderCt.add(normal); + + lockedGrid.setWidth(lockedWidth); + } + } +}); + + +Ext.define('Ext.grid.locking.View', { + alternateClassName: 'Ext.grid.LockingView', + + mixins: { + observable: Ext.util.Observable + }, + + + isLockingView: true, + + eventRelayRe: /^(beforeitem|beforecontainer|item|container|cell|refresh)/, + + constructor: function(config){ + var me = this, + eventNames = [], + eventRe = me.eventRelayRe, + locked = config.locked.getView(), + normal = config.normal.getView(), + events, + event; + + Ext.apply(me, { + lockedView: locked, + normalView: normal, + lockedGrid: config.locked, + normalGrid: config.normal, + panel: config.panel + }); + me.mixins.observable.constructor.call(me, config); + + + events = locked.events; + for (event in events) { + if (events.hasOwnProperty(event) && eventRe.test(event)) { + eventNames.push(event); + } + } + me.relayEvents(locked, eventNames); + me.relayEvents(normal, eventNames); + + normal.on({ + scope: me, + itemmouseleave: me.onItemMouseLeave, + itemmouseenter: me.onItemMouseEnter + }); + + locked.on({ + scope: me, + itemmouseleave: me.onItemMouseLeave, + itemmouseenter: me.onItemMouseEnter + }); + + me.panel.on({ + render: me.onPanelRender, + scope: me + }); + }, + + onPanelRender: function() { + var me = this, + mask = me.loadMask, + cfg = { + target: me.panel, + msg: me.loadingText, + msgCls: me.loadingCls, + useMsg: me.loadingUseMsg, + store: me.panel.store + }; + + + + me.el = me.panel.body; + me.fireEvent('render', me); + + if (mask) { + + if (Ext.isObject(mask)) { + cfg = Ext.apply(cfg, mask); + } + + + + + me.loadMask = new Ext.LoadMask(cfg); + } + }, + + getGridColumns: function() { + var cols = this.lockedGrid.headerCt.getVisibleGridColumns(); + return cols.concat(this.normalGrid.headerCt.getVisibleGridColumns()); + }, + + getEl: function(column){ + return this.getViewForColumn(column).getEl(); + }, + + getViewForColumn: function(column) { + var view = this.lockedView, + inLocked; + + view.headerCt.cascade(function(col){ + if (col === column) { + inLocked = true; + return false; + } + }); + + return inLocked ? view : this.normalView; + }, + + onItemMouseEnter: function(view, record){ + var me = this, + locked = me.lockedView, + other = me.normalView, + item; + + if (view.trackOver) { + if (view !== locked) { + other = locked; + } + item = other.getNode(record, false); + other.highlightItem(item); + } + }, + + onItemMouseLeave: function(view, record){ + var me = this, + locked = me.lockedView, + other = me.normalView; + + if (view.trackOver) { + if (view !== locked) { + other = locked; + } + other.clearHighlight(); + } + }, + + relayFn: function(name, args){ + args = args || []; + + var view = this.lockedView; + view[name].apply(view, args); + view = this.normalView; + view[name].apply(view, args); + }, + + getSelectionModel: function(){ + return this.panel.getSelectionModel(); + }, + + getStore: function(){ + return this.panel.store; + }, + + getNode: function(nodeInfo, dataRow) { + + return this.normalView.getNode(nodeInfo, dataRow); + }, + + getCell: function(record, column) { + var view = this.getViewForColumn(column), + row = view.getNode(record, true); + + return Ext.fly(row).down(column.getCellSelector()); + }, + + indexOf: function(record) { + var result = this.lockedView.indexOf(record); + if (!result) { + result = this.normalView.indexOf(record); + } + return result; + }, + + focus: function() { + var p = this.getSelectionModel().getCurrentPosition(), + v = p ? p.view : this.normalView; + + v.focus(); + }, + + focusRow: function(row) { + this.normalView.focusRow(row); + }, + + focusCell: function(position) { + position.view.focusCell(position); + }, + + isVisible: function(deep) { + return this.panel.isVisible(deep); + }, + + getRecord: function(node) { + var result = this.lockedView.getRecord(node); + if (!result) { + result = this.normalView.getRecord(node); + } + return result; + }, + + scrollBy: function(){ + var normal = this.normalView; + normal.scrollBy.apply(normal, arguments); + }, + + addElListener: function(eventName, fn, scope){ + this.relayFn('addElListener', arguments); + }, + + refreshNode: function(){ + this.relayFn('refreshNode', arguments); + }, + + refresh: function(){ + this.relayFn('refresh', arguments); + }, + + bindStore: function(){ + this.relayFn('bindStore', arguments); + }, + + addRowCls: function(){ + this.relayFn('addRowCls', arguments); + }, + + removeRowCls: function(){ + this.relayFn('removeRowCls', arguments); + }, + + destroy: function(){ + var me = this, + mask = me.loadMask; + + + + me.clearListeners(); + if (mask && mask.bindStore) { + mask.bindStore(null); + } + } + +}); + + +Ext.define('Ext.grid.locking.Lockable', { + alternateClassName: 'Ext.grid.Lockable', + + + + + + + + + + syncRowHeight: true, + + + + + + + + headerCounter: 0, + + + scrollDelta: 40, + + + + + + lockedGridCls: Ext.baseCSSPrefix + 'grid-inner-locked', + + + + unlockText: 'Unlock', + + + lockText: 'Lock', + + + + + bothCfgCopy: [ + 'invalidateScrollerOnRefresh', + 'hideHeaders', + 'enableColumnHide', + 'enableColumnMove', + 'enableColumnResize', + 'sortableColumns', + 'columnLines', + 'rowLines' + ], + normalCfgCopy: [ + 'verticalScroller', + 'verticalScrollDock', + 'verticalScrollerType', + 'scroll' + ], + lockedCfgCopy: [], + + determineXTypeToCreate: function(lockedSide) { + var me = this, + typeToCreate, + xtypes, xtypesLn, xtype, superxtype; + + if (me.subGridXType) { + typeToCreate = me.subGridXType; + } else { + + + if (!lockedSide) { + return 'gridpanel'; + } + xtypes = this.getXTypes().split('/'); + xtypesLn = xtypes.length; + xtype = xtypes[xtypesLn - 1]; + superxtype = xtypes[xtypesLn - 2]; + + if (superxtype !== 'tablepanel') { + typeToCreate = superxtype; + } else { + typeToCreate = xtype; + } + } + + return typeToCreate; + }, + + + + injectLockable: function() { + + this.lockable = true; + + + this.hasView = true; + + var me = this, + scrollbarHeight = Ext.getScrollbarSize().height, + store = me.store = Ext.StoreManager.lookup(me.store), + + + selModel = me.getSelectionModel(), + + + allFeatures, + + + allPlugins, + + lockedGrid, + normalGrid, + i, + columns, + lockedHeaderCt, + normalHeaderCt, + lockedView, + normalView, + listeners, + bufferedRenderer = me.findPlugin('bufferedrenderer'); + + allFeatures = me.constructLockableFeatures(); + + + if (me.features) { + me.features = null; + } + + + allPlugins = me.constructLockablePlugins(); + me.plugins = allPlugins.topPlugins; + + lockedGrid = Ext.apply({ + id: me.id + '-locked', + isLocked: true, + ownerLockable: me, + xtype: me.determineXTypeToCreate(true), + store: store, + scrollerOwner: false, + + + animate: false, + + scroll: scrollbarHeight ? false : 'vertical', + selModel: selModel, + border: false, + cls: me.lockedGridCls, + isLayoutRoot: function() { + return false; + }, + features: allFeatures.lockedFeatures, + plugins: allPlugins.lockedPlugins + }, me.lockedGridConfig); + + normalGrid = Ext.apply({ + id: me.id + '-normal', + isLocked: false, + ownerLockable: me, + xtype: me.determineXTypeToCreate(), + store: store, + scrollerOwner: false, + selModel: selModel, + border: false, + isLayoutRoot: function() { + return false; + }, + features: allFeatures.normalFeatures, + plugins: allPlugins.normalPlugins + }, me.normalGridConfig); + + me.addCls(Ext.baseCSSPrefix + 'grid-locked'); + + + + + Ext.copyTo(normalGrid, me, me.bothCfgCopy, true); + Ext.copyTo(lockedGrid, me, me.bothCfgCopy, true); + Ext.copyTo(normalGrid, me, me.normalCfgCopy, true); + Ext.copyTo(lockedGrid, me, me.lockedCfgCopy, true); + for (i = 0; i < me.normalCfgCopy.length; i++) { + delete me[me.normalCfgCopy[i]]; + } + for (i = 0; i < me.lockedCfgCopy.length; i++) { + delete me[me.lockedCfgCopy[i]]; + } + + me.addEvents( + + 'processcolumns', + + + 'lockcolumn', + + + 'unlockcolumn' + ); + + me.addStateEvents(['lockcolumn', 'unlockcolumn']); + + columns = me.processColumns(me.columns); + + + + lockedGrid.width = columns.lockedWidth + Ext.num(selModel.headerWidth, 0) + (columns.locked.items.length ? 1 : 0); + lockedGrid.columns = columns.locked; + normalGrid.columns = columns.normal; + + + normalGrid.flex = 1; + lockedGrid.viewConfig = me.lockedViewConfig || {}; + lockedGrid.viewConfig.loadingUseMsg = false; + lockedGrid.viewConfig.loadMask = false; + + + + + + if (scrollbarHeight) { + lockedGrid.viewConfig.style = 'border-bottom:' + scrollbarHeight + + 'px solid #f6f6f6;' + (lockedGrid.viewConfig.style || ''); + } + + normalGrid.viewConfig = me.normalViewConfig || {}; + normalGrid.viewConfig.loadMask = false; + + + Ext.applyIf(lockedGrid.viewConfig, me.viewConfig); + Ext.applyIf(normalGrid.viewConfig, me.viewConfig); + + me.lockedGrid = Ext.ComponentManager.create(lockedGrid); + + if (me.isTree) { + + me.lockedGrid.getView().animate = false; + + + normalGrid.store = me.lockedGrid.view.store; + + + normalGrid.deferRowRender = false; + + + normalGrid.viewConfig.stripeRows = me.lockedGrid.view.stripeRows; + normalGrid.rowLines = me.lockedGrid.rowLines; + } + + + lockedView = me.lockedGrid.getView(); + normalGrid.viewConfig.lockingPartner = lockedView; + me.normalGrid = Ext.ComponentManager.create(normalGrid); + lockedView.lockingPartner = normalView = me.normalGrid.getView(); + + me.view = new Ext.grid.locking.View({ + loadingText: normalView.loadingText, + loadingCls: normalView.loadingCls, + loadingUseMsg: normalView.loadingUseMsg, + loadMask: me.loadMask !== false, + locked: me.lockedGrid, + normal: me.normalGrid, + panel: me + }); + + + listeners = bufferedRenderer ? {} : { + scroll: { + fn: me.onLockedViewScroll, + element: 'el', + scope: me + } + }; + + + + + + if (scrollbarHeight) { + me.lockedGrid.on({ + afterlayout: me.afterLockedViewLayout, + scope: me + }); + + + lockedView.getOverflowStyle(); + + + if (lockedView.scrollFlags.y) { + me.lockedGrid.headerCt.forceFit = true; + } + + else { + listeners.mousewheel = { + fn: me.onLockedViewMouseWheel, + element: 'el', + scope: me + }; + } + } + lockedView.on(listeners); + + + listeners = bufferedRenderer ? {} : { + scroll: { + fn: me.onNormalViewScroll, + element: 'el', + scope: me + }, + scope: me + }; + normalView.on(listeners); + + lockedHeaderCt = me.lockedGrid.headerCt; + normalHeaderCt = me.normalGrid.headerCt; + + + + me.headerCt = me.view.headerCt = new Ext.grid.locking.HeaderContainer(me); + + lockedHeaderCt.lockedCt = true; + lockedHeaderCt.lockableInjected = true; + normalHeaderCt.lockableInjected = true; + + lockedHeaderCt.on({ + + add: { + buffer: 1, + scope: me, + fn: me.onLockedHeaderAdd + }, + columnshow: me.onLockedHeaderShow, + columnhide: me.onLockedHeaderHide, + sortchange: me.onLockedHeaderSortChange, + columnresize: me.onLockedHeaderResize, + scope: me + }); + + normalHeaderCt.on({ + sortchange: me.onNormalHeaderSortChange, + scope: me + }); + + me.modifyHeaderCt(); + me.items = [me.lockedGrid, me.normalGrid]; + + me.relayHeaderCtEvents(lockedHeaderCt); + me.relayHeaderCtEvents(normalHeaderCt); + + + + me.storeRelayers = me.relayEvents(store, [ + + 'filterchange' + ]); + + me.layout = { + type: 'hbox', + align: 'stretch' + }; + }, + + getLockingViewConfig: function(){ + return { + xclass: 'Ext.grid.locking.View', + locked: this.lockedGrid, + normal: this.normalGrid, + panel: this + }; + }, + + processColumns: function(columns) { + + var i, + len, + column, + cp = this.dummyHdrCtr || (this.self.prototype.dummyHdrCtr = new Ext.grid.header.Container()), + lockedHeaders = [], + normalHeaders = [], + lockedHeaderCt = { + itemId: 'lockedHeaderCt', + stretchMaxPartner: '^^>>#normalHeaderCt', + items: lockedHeaders + }, + normalHeaderCt = { + itemId: 'normalHeaderCt', + stretchMaxPartner: '^^>>#lockedHeaderCt', + items: normalHeaders + }, + result = { + lockedWidth: 0, + locked: lockedHeaderCt, + normal: normalHeaderCt + }; + + + if (Ext.isObject(columns)) { + Ext.applyIf(lockedHeaderCt, columns); + Ext.applyIf(normalHeaderCt, columns); + Ext.apply(cp, columns); + columns = columns.items; + } + + for (i = 0, len = columns.length; i < len; ++i) { + column = columns[i]; + + + + + if (!column.isComponent) { + column = cp.lookupComponent(cp.applyDefaults(column)); + } + + + + column.processed = true; + if (column.locked || column.autoLock) { + if (!column.hidden) { + result.lockedWidth += this.getColumnWidth(column) || cp.defaultWidth; + } + lockedHeaders.push(column); + } else { + normalHeaders.push(column); + } + if (!column.headerId) { + column.headerId = (column.initialConfig || column).id || ('h' + (++this.headerCounter)); + } + } + this.fireEvent('processcolumns', this, lockedHeaders, normalHeaders); + return result; + }, + + + + getColumnWidth: function(column) { + var result = column.width || 0, + subcols, len, i; + + if (!result && column.isGroupHeader) { + subcols = column.items.items; + len = subcols.length; + for (i = 0; i < len; i++) { + result += this.getColumnWidth(subcols[i]); + } + } + return result; + }, + + + + + afterLockedViewLayout: function() { + var me = this, + lockedView = me.lockedGrid.getView(), + lockedViewEl = lockedView.el.dom, + spacerHeight = (me.normalGrid.headerCt.tooNarrow ? Ext.getScrollbarSize().height : 0); + + + if (lockedView.scrollFlags.x && lockedViewEl.scrollWidth > lockedViewEl.clientWidth) { + spacerHeight = 0; + } + + lockedView.el.dom.style.borderBottomWidth = spacerHeight + 'px'; + + + + if (!Ext.isBorderBox) { + lockedView.el.setHeight(lockedView.lastBox.height); + } + }, + + + onLockedViewMouseWheel: function(e) { + var me = this, + scrollDelta = -me.scrollDelta, + deltaY = scrollDelta * e.getWheelDeltas().y, + vertScrollerEl = me.lockedGrid.getView().el.dom, + verticalCanScrollDown, verticalCanScrollUp; + + if (!me.ignoreMousewheel) { + if (vertScrollerEl) { + verticalCanScrollDown = vertScrollerEl.scrollTop !== vertScrollerEl.scrollHeight - vertScrollerEl.clientHeight; + verticalCanScrollUp = vertScrollerEl.scrollTop !== 0; + } + + if ((deltaY < 0 && verticalCanScrollUp) || (deltaY > 0 && verticalCanScrollDown)) { + e.stopEvent(); + + + + + vertScrollerEl.scrollTop += deltaY; + me.normalGrid.getView().el.dom.scrollTop = vertScrollerEl.scrollTop; + + + me.onNormalViewScroll(); + } + } + }, + + onLockedViewScroll: function() { + var me = this, + lockedView = me.lockedGrid.getView(), + normalView = me.normalGrid.getView(), + normalDom = normalView.el.dom, + lockedDom = lockedView.el.dom, + normalTable, + lockedTable; + + + if (normalDom.scrollTop !== lockedDom.scrollTop) { + normalDom.scrollTop = lockedDom.scrollTop; + + + if (me.store.buffered) { + lockedTable = lockedView.el.child('table', true); + normalTable = normalView.el.child('table', true); + normalTable.style.position = 'absolute'; + normalTable.style.top = lockedTable.style.top; + } + } + }, + + onNormalViewScroll: function() { + var me = this, + lockedView = me.lockedGrid.getView(), + normalView = me.normalGrid.getView(), + normalDom = normalView.el.dom, + lockedDom = lockedView.el.dom, + normalTable, + lockedTable; + + + + + + + + + + + + if (normalDom.scrollTop !== lockedDom.scrollTop) { + lockedDom.scrollTop = normalDom.scrollTop; + + + if (me.store.buffered) { + lockedTable = lockedView.el.child('table', true); + normalTable = normalView.el.child('table', true); + lockedTable.style.position = 'absolute'; + lockedTable.style.top = normalTable.style.top; + } + } + }, + + + syncRowHeights: function() { + var me = this, + i, + lockedView = me.lockedGrid.getView(), + normalView = me.normalGrid.getView(), + lockedRowEls = lockedView.all.slice(), + normalRowEls = normalView.all.slice(), + ln = lockedRowEls.length, + scrollTop; + + + if (normalRowEls.length === ln) { + + + for (i = 0; i < ln; i++) { + normalView.syncRowHeights(lockedRowEls[i], normalRowEls[i]); + } + + + scrollTop = normalView.el.dom.scrollTop; + normalView.el.dom.scrollTop = scrollTop; + lockedView.el.dom.scrollTop = scrollTop; + } + }, + + + + modifyHeaderCt: function() { + var me = this; + me.lockedGrid.headerCt.getMenuItems = me.getMenuItems(me.lockedGrid.headerCt.getMenuItems, true); + me.normalGrid.headerCt.getMenuItems = me.getMenuItems(me.normalGrid.headerCt.getMenuItems, false); + me.lockedGrid.headerCt.showMenuBy = Ext.Function.createInterceptor(me.lockedGrid.headerCt.showMenuBy, me.showMenuBy); + me.normalGrid.headerCt.showMenuBy = Ext.Function.createInterceptor(me.normalGrid.headerCt.showMenuBy, me.showMenuBy); + }, + + onUnlockMenuClick: function() { + this.unlock(); + }, + + onLockMenuClick: function() { + this.lock(); + }, + + showMenuBy: function(t, header) { + var menu = this.getMenu(), + unlockItem = menu.down('#unlockItem'), + lockItem = menu.down('#lockItem'), + sep = unlockItem.prev(); + + if (header.lockable === false) { + sep.hide(); + unlockItem.hide(); + lockItem.hide(); + } else { + sep.show(); + unlockItem.show(); + lockItem.show(); + if (!unlockItem.initialConfig.disabled) { + unlockItem.setDisabled(header.lockable === false); + } + if (!lockItem.initialConfig.disabled) { + lockItem.setDisabled(!header.isLockable()); + } + } + }, + + getMenuItems: function(getMenuItems, locked) { + var me = this, + unlockText = me.unlockText, + lockText = me.lockText, + unlockCls = Ext.baseCSSPrefix + 'hmenu-unlock', + lockCls = Ext.baseCSSPrefix + 'hmenu-lock', + unlockHandler = Ext.Function.bind(me.onUnlockMenuClick, me), + lockHandler = Ext.Function.bind(me.onLockMenuClick, me); + + + return function() { + + + + var o = getMenuItems.call(this); + o.push('-', { + itemId: 'unlockItem', + cls: unlockCls, + text: unlockText, + handler: unlockHandler, + disabled: !locked + }); + o.push({ + itemId: 'lockItem', + cls: lockCls, + text: lockText, + handler: lockHandler, + disabled: locked + }); + return o; + }; + }, + + + syncLockedWidth: function() { + var me = this, + locked = me.lockedGrid, + lockedView = locked.view, + lockedViewEl = lockedView.el.dom, + normal = me.normalGrid, + lockedColCount = locked.headerCt.getVisibleGridColumns().length, + normalColCount = normal.headerCt.getVisibleGridColumns().length; + + Ext.suspendLayouts(); + + + + if (normalColCount) { + normal.show(); + if (lockedColCount) { + + + + if (!locked.headerCt.forceFit) { + delete locked.flex; + + locked.setWidth(locked.headerCt.getFullWidth()); + } + locked.addCls(me.lockedGridCls); + locked.show(); + } else { + + + + locked.getView().refresh(); + locked.hide(); + } + + + lockedView.el.setStyle(lockedView.getOverflowStyle()); + + + me.ignoreMousewheel = lockedView.scrollFlags.y; + } + + + + else { + normal.hide(); + + + lockedViewEl.style.borderBottomWidth = '0'; + + + locked.flex = 1; + delete locked.width; + locked.removeCls(me.lockedGridCls); + locked.show(); + + + + lockedView.el.setStyle(normal.view.getOverflowStyle()); + me.ignoreMousewheel = true; + } + Ext.resumeLayouts(true); + return [lockedColCount, normalColCount]; + }, + + onLockedHeaderAdd: function() { + + + if (!this.ignoreAddLockedColumn) { + this.syncLockedWidth(); + } + }, + + onLockedHeaderResize: function() { + this.syncLockedWidth(); + }, + + onLockedHeaderHide: function() { + this.syncLockedWidth(); + }, + + onLockedHeaderShow: function() { + this.syncLockedWidth(); + }, + + onLockedHeaderSortChange: function(headerCt, header, sortState) { + if (sortState) { + + + this.normalGrid.headerCt.clearOtherSortStates(null, true); + } + }, + + onNormalHeaderSortChange: function(headerCt, header, sortState) { + if (sortState) { + + + this.lockedGrid.headerCt.clearOtherSortStates(null, true); + } + }, + + + + lock: function(activeHd, toIdx) { + var me = this, + normalGrid = me.normalGrid, + lockedGrid = me.lockedGrid, + normalHCt = normalGrid.headerCt, + lockedHCt = lockedGrid.headerCt, + refreshFlags, + ownerCt; + + activeHd = activeHd || normalHCt.getMenu().activeHeader; + ownerCt = activeHd.ownerCt; + + + if (!activeHd.isLockable()) { + return; + } + + + + if (activeHd.flex) { + activeHd.width = activeHd.getWidth(); + activeHd.flex = null; + } + + Ext.suspendLayouts(); + ownerCt.remove(activeHd, false); + activeHd.locked = true; + + + me.ignoreAddLockedColumn = true; + if (Ext.isDefined(toIdx)) { + lockedHCt.insert(toIdx, activeHd); + } else { + lockedHCt.add(activeHd); + } + me.ignoreAddLockedColumn = false; + + refreshFlags = me.syncLockedWidth(); + if (refreshFlags[0]) { + lockedGrid.getView().refresh(); + } + if (refreshFlags[1]) { + normalGrid.getView().refresh(); + } + Ext.resumeLayouts(true); + + me.fireEvent('lockcolumn', me, activeHd); + }, + + + + unlock: function(activeHd, toIdx) { + var me = this, + normalGrid = me.normalGrid, + lockedGrid = me.lockedGrid, + normalHCt = normalGrid.headerCt, + lockedHCt = lockedGrid.headerCt, + refreshFlags; + + + if (!Ext.isDefined(toIdx)) { + toIdx = 0; + } + activeHd = activeHd || lockedHCt.getMenu().activeHeader; + + Ext.suspendLayouts(); + activeHd.ownerCt.remove(activeHd, false); + activeHd.locked = false; + normalHCt.insert(toIdx, activeHd); + + + + refreshFlags = me.syncLockedWidth(); + + if (refreshFlags[0]) { + lockedGrid.getView().refresh(); + } + if (refreshFlags[1]) { + normalGrid.getView().refresh(); + } + Ext.resumeLayouts(true); + + me.fireEvent('unlockcolumn', me, activeHd); + }, + + + reconfigureLockable: function(store, columns) { + var me = this, + oldStore = me.store, + lockedGrid = me.lockedGrid, + normalGrid = me.normalGrid; + + Ext.suspendLayouts(); + if (columns) { + lockedGrid.headerCt.removeAll(); + normalGrid.headerCt.removeAll(); + + columns = me.processColumns(columns); + + + me.ignoreAddLockedColumn = true; + lockedGrid.headerCt.add(columns.locked.items); + me.ignoreAddLockedColumn = false; + normalGrid.headerCt.add(columns.normal.items); + + + + me.syncLockedWidth(); + } + + if (store && store !== oldStore) { + store = Ext.data.StoreManager.lookup(store); + me.store = store; + lockedGrid.bindStore(store); + normalGrid.bindStore(store); + } else { + lockedGrid.getView().refresh(); + normalGrid.getView().refresh(); + } + Ext.resumeLayouts(true); + }, + + constructLockableFeatures: function() { + var features = this.features, + feature, + featureClone, + lockedFeatures, + normalFeatures, + i = 0, len; + + if (features) { + lockedFeatures = []; + normalFeatures = []; + len = features.length; + for (; i < len; i++) { + feature = features[i]; + if (!feature.isFeature) { + feature = Ext.create('feature.' + feature.ftype, feature); + } + switch (feature.lockableScope) { + case 'locked': + lockedFeatures.push(feature); + break; + case 'normal': + normalFeatures.push(feature); + break; + default: + feature.lockableScope = 'both'; + lockedFeatures.push(feature); + normalFeatures.push(featureClone = feature.clone()); + + + featureClone.lockingPartner = feature; + feature.lockingPartner = featureClone; + } + } + } + return { + normalFeatures: normalFeatures, + lockedFeatures: lockedFeatures + }; + }, + + constructLockablePlugins: function() { + var plugins = this.plugins, + plugin, + normalPlugin, + lockedPlugin, + topPlugins, + lockedPlugins, + normalPlugins, + i = 0, len; + + if (plugins) { + topPlugins = []; + lockedPlugins = []; + normalPlugins = []; + len = plugins.length; + for (; i < len; i++) { + + plugin = plugins[i]; + + switch (plugin.lockableScope) { + case 'both': + lockedPlugins.push(lockedPlugin = plugin.clonePlugin()); + normalPlugins.push(normalPlugin = plugin.clonePlugin()); + + + lockedPlugin.lockingPartner = normalPlugin; + normalPlugin.lockingPartner = lockedPlugin; + + + + Ext.destroy(plugin); + break; + case 'locked': + lockedPlugins.push(plugin); + break; + case 'normal': + normalPlugins.push(plugin); + break; + default: + topPlugins.push(plugin); + } + } + } + return { + topPlugins: topPlugins, + normalPlugins: normalPlugins, + lockedPlugins: lockedPlugins + }; + }, + + destroyLockable: function(){ + + Ext.destroy(this.view); + } +}, function() { + this.borrow(Ext.AbstractComponent, ['constructPlugin']); +}); + + +Ext.define('Ext.tree.View', { + extend: Ext.view.Table , + alias: 'widget.treeview', + + + + + + + isTreeView: true, + + loadingCls: Ext.baseCSSPrefix + 'grid-tree-loading', + expandedCls: Ext.baseCSSPrefix + 'grid-tree-node-expanded', + leafCls: Ext.baseCSSPrefix + 'grid-tree-node-leaf', + + expanderSelector: '.' + Ext.baseCSSPrefix + 'tree-expander', + checkboxSelector: '.' + Ext.baseCSSPrefix + 'tree-checkbox', + expanderIconOverCls: Ext.baseCSSPrefix + 'tree-expander-over', + + + + + nodeAnimWrapCls: Ext.baseCSSPrefix + 'tree-animator-wrap', + + blockRefresh: true, + + + loadMask: false, + + + rootVisible: true, + + + deferInitialRefresh: false, + + + + expandDuration: 250, + collapseDuration: 250, + + toggleOnDblClick: true, + + stripeRows: false, + + + uiFields: ['expanded', 'loaded', 'checked', 'expandable', 'leaf', 'icon', 'iconCls', 'loading', 'qtip', 'qtitle'], + + + treeRowTpl: [ + '{%', + 'this.processRowValues(values);', + 'this.nextTpl.applyOut(values, out, parent);', + 'delete values.rowAttr["data-qtip"];', + 'delete values.rowAttr["data-qtitle"];', + '%}', { + priority: 10, + processRowValues: function(rowValues) { + var record = rowValues.record, + view = rowValues.view, + qtip = record.get('qtip'), + qtitle = record.get('qttle'); + + rowValues.rowAttr = {}; + if (qtip) { + rowValues.rowAttr['data-qtip'] = qtip; + } + if (qtitle) { + rowValues.rowAttr['data-qtitle'] = qtitle; + } + if (record.isExpanded()) { + rowValues.rowClasses.push(view.expandedCls); + } + if (record.isLeaf()) { + rowValues.rowClasses.push(view.leafCls); + } + if (record.isLoading()) { + rowValues.rowClasses.push(view.loadingCls); + } + } + } + ], + + initComponent: function() { + var me = this, + treeStore = me.panel.getStore(), + store = me.store; + + if (me.initialConfig.animate === undefined) { + me.animate = Ext.enableFx; + } + + if (!store || store === treeStore) { + me.store = store = new Ext.data.NodeStore({ + treeStore: treeStore, + recursive: true, + rootVisible: me.rootVisible + }); + } + + if (me.node) { + me.setRootNode(me.node); + } + me.animQueue = {}; + me.animWraps = {}; + me.addEvents( + + 'afteritemexpand', + + 'afteritemcollapse', + + 'nodedragover' + ); + me.callParent(arguments); + me.addRowTpl(Ext.XTemplate.getTpl(me, 'treeRowTpl')); + }, + + onBeforeFill: function(treeStore, fillRoot) { + this.store.suspendEvents(); + }, + + onFillComplete: function(treeStore, fillRoot, newNodes) { + var me = this, + store = me.store, + start = store.indexOf(newNodes[0]); + + store.resumeEvents(); + + + + fillRoot.triggerUIUpdate(); + + + + if (!newNodes.length || start === -1) { + return; + } + + + me.onAdd(me.store, newNodes, start); + + me.refreshPartner(); + }, + + onBeforeSort: function() { + this.store.suspendEvents(); + }, + + onSort: function(o) { + + + if (o.isStore) { + this.store.resumeEvents(); + this.refresh(); + this.refreshPartner(); + } + }, + + refreshPartner: function() { + var partner = this.lockingPartner; + if (partner) { + partner.refresh(); + } + }, + + getMaskStore: function() { + return this.panel.getStore(); + }, + + afterRender: function() { + var me = this; + me.callParent(arguments); + + me.el.on({ + scope: me, + delegate: me.expanderSelector, + mouseover: me.onExpanderMouseOver, + mouseout: me.onExpanderMouseOut, + click: { + delegate: me.checkboxSelector, + fn: me.onCheckboxChange, + scope: me + } + }); + }, + + afterComponentLayout: function() { + this.callParent(arguments); + var stretcher = this.stretcher; + if (stretcher) { + stretcher.setWidth((this.getWidth() - Ext.getScrollbarSize().width)); + } + }, + + processUIEvent: function(e) { + + + + if (e.getTarget('.' + this.nodeAnimWrapCls, this.el)) { + return false; + } + return this.callParent(arguments); + }, + + onClear: function() { + this.store.removeAll(); + }, + + setRootNode: function(node) { + var me = this; + me.store.setNode(node); + me.node = node; + }, + + onCheckboxChange: function(e, t) { + var me = this, + item = e.getTarget(me.getItemSelector(), me.getTargetEl()); + + if (item) { + me.onCheckChange(me.getRecord(item)); + } + }, + + onCheckChange: function(record) { + var checked = record.get('checked'); + if (Ext.isBoolean(checked)) { + checked = !checked; + record.set('checked', checked); + this.fireEvent('checkchange', record, checked); + } + }, + + getChecked: function() { + var checked = []; + this.node.cascadeBy(function(rec){ + if (rec.get('checked')) { + checked.push(rec); + } + }); + return checked; + }, + + isItemChecked: function(rec) { + return rec.get('checked'); + }, + + + createAnimWrap: function(record, index) { + var me = this, + node = me.getNode(record), + tmpEl, nodeEl, + columnSizer = []; + + me.renderColumnSizer(columnSizer); + nodeEl = Ext.get(node); + tmpEl = nodeEl.insertSibling({ + tag: 'tr', + html: [ + '', + '
    ', + + '', + columnSizer.join(''), + '
    ', + '
    ', + '' + ].join('') + }, 'after'); + + return { + record: record, + node: node, + el: tmpEl, + expanding: false, + collapsing: false, + animating: false, + animateEl: tmpEl.down('div'), + targetEl: tmpEl.down('tbody') + }; + }, + + + getAnimWrap: function(parent, bubble) { + if (!this.animate) { + return null; + } + + var wraps = this.animWraps, + wrap = wraps[parent.internalId]; + + if (bubble !== false) { + while (!wrap && parent) { + parent = parent.parentNode; + if (parent) { + wrap = wraps[parent.internalId]; + } + } + } + return wrap; + }, + + doAdd: function(records, index) { + + + var me = this, + nodes = me.bufferRender(records, index, true), + record = records[0], + parent = record.parentNode, + all = me.all, + relativeIndex, + animWrap = me.getAnimWrap(parent), + targetEl, children, len; + + if (!animWrap || !animWrap.expanding) { + return me.callParent(arguments); + } + + + parent = animWrap.record; + + + targetEl = animWrap.targetEl; + children = targetEl.dom.childNodes; + len = children.length; + + + relativeIndex = index - me.indexInStore(parent) - 1; + + + + if (!len || relativeIndex >= len) { + targetEl.appendChild(nodes); + } + + + else { + Ext.fly(children[relativeIndex]).insertSibling(nodes, 'before', true); + } + + + all.insert(index, nodes); + + + + if (animWrap.isAnimating) { + me.onExpand(parent); + } + }, + + onRemove : function(ds, records, indexes) { + var me = this, + empty, i; + + if (me.viewReady) { + empty = me.store.getCount() === 0; + + + if (empty) { + me.refresh(); + } + else { + + for (i = indexes.length - 1; i >= 0; --i) { + me.doRemove(records[i], indexes[i]); + } + } + + + if (me.hasListeners.itemremove) { + for (i = indexes.length - 1; i >= 0; --i) { + me.fireEvent('itemremove', records[i], indexes[i]); + } + } + } + }, + + doRemove: function(record, index) { + + + var me = this, + all = me.all, + animWrap = me.getAnimWrap(record), + item = all.item(index), + node = item ? item.dom : null; + + if (!node || !animWrap || !animWrap.collapsing) { + return me.callParent(arguments); + } + + + + animWrap.targetEl.dom.insertBefore(node, animWrap.targetEl.dom.firstChild); + all.removeElement(index); + }, + + onBeforeExpand: function(parent, records, index) { + var me = this, + animWrap; + + if (me.rendered && me.all.getCount() && me.animate) { + if (me.getNode(parent)) { + animWrap = me.getAnimWrap(parent, false); + if (!animWrap) { + animWrap = me.animWraps[parent.internalId] = me.createAnimWrap(parent); + animWrap.animateEl.setHeight(0); + } + else if (animWrap.collapsing) { + + + animWrap.targetEl.select(me.itemSelector).remove(); + } + animWrap.expanding = true; + animWrap.collapsing = false; + } + } + }, + + onExpand: function(parent) { + var me = this, + queue = me.animQueue, + id = parent.getId(), + node = me.getNode(parent), + index = node ? me.indexOf(node) : -1, + animWrap, + animateEl, + targetEl, + fromHeight = Ext.isIEQuirks ? 1 : 0 + + if (me.singleExpand) { + me.ensureSingleExpand(parent); + } + + + if (index === -1) { + return; + } + + animWrap = me.getAnimWrap(parent, false); + + if (!animWrap) { + parent.isExpandingOrCollapsing = false; + me.fireEvent('afteritemexpand', parent, index, node); + me.refreshSize(); + return; + } + + animateEl = animWrap.animateEl; + targetEl = animWrap.targetEl; + + animateEl.stopAnimation(); + queue[id] = true; + + + animateEl.dom.style.height = fromHeight + 'px'; + animateEl.animate({ + from: { + height: fromHeight + }, + to: { + height: targetEl.getHeight() + }, + duration: me.expandDuration, + listeners: { + afteranimate: function() { + + + + var items = targetEl.query(me.itemSelector); + if (items.length) { + animWrap.el.insertSibling(items, 'before', true); + } + animWrap.el.remove(); + me.refreshSize(); + delete me.animWraps[animWrap.record.internalId]; + delete queue[id]; + } + }, + callback: function() { + parent.isExpandingOrCollapsing = false; + me.fireEvent('afteritemexpand', parent, index, node); + } + }); + + animWrap.isAnimating = true; + }, + + + onBeforeCollapse: function(parent, records, index, callback, scope) { + var me = this, + animWrap; + + if (me.rendered && me.all.getCount()) { + if (me.animate) { + + + + if (Ext.Array.contains(parent.stores, me.store)) { + animWrap = me.getAnimWrap(parent); + if (!animWrap) { + animWrap = me.animWraps[parent.internalId] = me.createAnimWrap(parent, index); + } + else if (animWrap.expanding) { + + + animWrap.targetEl.select(this.itemSelector).remove(); + } + animWrap.expanding = false; + animWrap.collapsing = true; + animWrap.callback = callback; + animWrap.scope = scope; + } + } else { + + me.onCollapseCallback = callback; + me.onCollapseScope = scope; + } + } + }, + + onCollapse: function(parent) { + var me = this, + queue = me.animQueue, + id = parent.getId(), + node = me.getNode(parent), + index = node ? me.indexOf(node) : -1, + animWrap = me.getAnimWrap(parent), + animateEl; + + + + + if (!me.all.getCount() || !Ext.Array.contains(parent.stores, me.store)) { + return; + } + + + if (!animWrap) { + parent.isExpandingOrCollapsing = false; + me.fireEvent('afteritemcollapse', parent, index, node); + me.refreshSize(); + + + Ext.callback(me.onCollapseCallback, me.onCollapseScope); + me.onCollapseCallback = me.onCollapseScope = null; + return; + } + + animateEl = animWrap.animateEl; + + queue[id] = true; + + animateEl.stopAnimation(); + animateEl.animate({ + to: { + height: Ext.isIEQuirks ? 1 : 0 + }, + duration: me.collapseDuration, + listeners: { + afteranimate: function() { + + animWrap.el.remove(); + me.refreshSize(); + delete me.animWraps[animWrap.record.internalId]; + delete queue[id]; + } + }, + callback: function() { + parent.isExpandingOrCollapsing = false; + me.fireEvent('afteritemcollapse', parent, index, node); + + + Ext.callback(animWrap.callback, animWrap.scope); + animWrap.callback = animWrap.scope = null; + } + }); + animWrap.isAnimating = true; + }, + + + isAnimating: function(node) { + return !!this.animQueue[node.getId()]; + }, + + + expand: function(record, deep, callback, scope) { + var me = this, + doAnimate = !!me.animate, + result; + + + if (!doAnimate || !record.isExpandingOrCollapsing) { + if (!record.isLeaf()) { + record.isExpandingOrCollapsing = doAnimate; + } + + + + + Ext.suspendLayouts(); + result = record.expand(deep, callback, scope); + Ext.resumeLayouts(true); + return result; + } + }, + + + collapse: function(record, deep, callback, scope) { + var me = this, + doAnimate = !!me.animate; + + + if (!doAnimate || !record.isExpandingOrCollapsing) { + if (!record.isLeaf()) { + record.isExpandingOrCollapsing = doAnimate; + } + return record.collapse(deep, callback, scope); + } + }, + + + toggle: function(record, deep, callback, scope) { + if (record.isExpanded()) { + this.collapse(record, deep, callback, scope); + } else { + this.expand(record, deep, callback, scope); + } + }, + + onItemDblClick: function(record, item, index) { + var me = this, + editingPlugin = me.editingPlugin; + + me.callParent(arguments); + if (me.toggleOnDblClick && record.isExpandable() && !(editingPlugin && editingPlugin.clicksToEdit === 2)) { + me.toggle(record); + } + }, + + onBeforeItemMouseDown: function(record, item, index, e) { + if (e.getTarget(this.expanderSelector, item)) { + return false; + } + return this.callParent(arguments); + }, + + onItemClick: function(record, item, index, e) { + if (e.getTarget(this.expanderSelector, item) && record.isExpandable()) { + this.toggle(record, e.ctrlKey); + return false; + } + return this.callParent(arguments); + }, + + onExpanderMouseOver: function(e, t) { + e.getTarget(this.cellSelector, 10, true).addCls(this.expanderIconOverCls); + }, + + onExpanderMouseOut: function(e, t) { + e.getTarget(this.cellSelector, 10, true).removeCls(this.expanderIconOverCls); + }, + + getStoreListeners: function(){ + var me = this, + listeners = me.callParent(arguments); + + return Ext.apply(listeners, { + beforeexpand: me.onBeforeExpand, + expand: me.onExpand, + beforecollapse: me.onBeforeCollapse, + collapse: me.onCollapse, + write: me.onStoreWrite, + datachanged: me.onStoreDataChanged + }); + }, + + onBindStore: function(){ + var me = this, + treeStore = me.getTreeStore(); + + me.callParent(arguments); + + me.mon(treeStore, { + scope: me, + beforefill: me.onBeforeFill, + fillcomplete: me.onFillComplete + }); + + if (!treeStore.remoteSort) { + + + me.mon(treeStore, { + scope: me, + beforesort: me.onBeforeSort, + sort: me.onSort + }); + } + }, + + onUnbindStore: function(){ + var me = this, + treeStore = me.getTreeStore(); + + me.callParent(arguments); + + me.mun(treeStore, { + scope: me, + beforefill: me.onBeforeFill, + fillcomplete: me.onFillComplete + }); + + if (!treeStore.remoteSort) { + me.mun(treeStore, { + scope: me, + beforesort: me.onBeforeSort, + sort: me.onSort + }); + } + }, + + + getTreeStore: function() { + return this.panel.store; + }, + + ensureSingleExpand: function(node) { + var parent = node.parentNode; + if (parent) { + parent.eachChild(function(child) { + if (child !== node && child.isExpanded()) { + child.collapse(); + } + }); + } + }, + + shouldUpdateCell: function(record, column, changedFieldNames){ + if (changedFieldNames) { + var i = 0, + len = changedFieldNames.length; + + for (; i < len; ++i) { + if (Ext.Array.contains(this.uiFields, changedFieldNames[i])) { + return true; + } + } + } + return this.callParent(arguments); + }, + + + onStoreWrite: function(store, operation) { + var treeStore = this.panel.store; + treeStore.fireEvent('write', treeStore, operation); + }, + + + onStoreDataChanged: function(store, operation) { + var treeStore = this.panel.store; + treeStore.fireEvent('datachanged', treeStore); + } +}); + + +Ext.define('Ext.grid.plugin.BufferedRendererTreeView', { + override: 'Ext.tree.View', + + onRemove: function(store, records, indices) { + var me = this; + + + if (me.rendered && me.bufferedRenderer) { + me.refreshView(); + } + + else { + me.callParent([store, records, indices]); + } + } +}); + + +Ext.define('Ext.grid.plugin.BufferedRenderer', { + extend: Ext.AbstractPlugin , + + + + + alias: 'plugin.bufferedrenderer', + lockableScope: 'both', + + + percentageFromEdge: 0.35, + + + variableRowHeight: false, + + + numFromEdge: 8, + + + trailingBufferZone: 10, + + + leadingBufferZone: 20, + + + synchronousRender: true, + + + scrollToLoadBuffer: 200, + + + viewSize: 0, + + rowHeight: 21, + + position: 0, + lastScrollDirection: 1, + bodyTop: 0, + + + init: function(grid) { + var me = this, + view = grid.view, + viewListeners = { + scroll: { + fn: me.onViewScroll, + element: 'el', + scope: me + }, + boxready: me.onViewResize, + resize: me.onViewResize, + refresh: me.onViewRefresh, + scope: me, + destroyable: true + }; + + + if (!me.variableRowHeight && grid.ownerLockable) { + grid.ownerLockable.syncRowHeight = false; + } + + + + if (grid.isTree || grid.ownerLockable && grid.ownerLockable.isTree) { + view.blockRefresh = false; + view.loadMask = true; + } + if (view.positionBody) { + viewListeners.refresh = me.onViewRefresh; + } + me.grid = grid; + me.view = view; + view.bufferedRenderer = me; + view.preserveScrollOnRefresh = true; + + me.bindStore(view.dataSource); + view.getViewRange = function() { + return me.getViewRange(); + }; + + me.position = 0; + + me.gridListeners = grid.on('reconfigure', me.onReconfigure, me); + me.viewListeners = view.on(viewListeners); + }, + + bindStore: function(store) { + var me = this; + if (me.store) { + me.unbindStore(); + } + me.storeListeners = store.on({ + scope: me, + clear: me.onStoreClear, + destroyable: true + }); + me.store = store; + + + if (me.view.componentLayout.layoutCount) { + me.onViewResize(me.view, 0, me.view.getHeight()); + } + }, + + onReconfigure: function(grid, store){ + if (store && store !== this.store) { + this.bindStore(store); + } + }, + + unbindStore: function() { + this.storeListeners.destroy(); + this.store = null; + }, + + onStoreClear: function() { + var me = this; + + + if (me.view.rendered && !me.store.isDestroyed) { + + + if (me.scrollTop !== 0) { + me.ignoreNextScrollEvent = true; + me.view.el.dom.scrollTop = me.bodyTop = me.scrollTop = 0; + } + + me.position = me.scrollHeight = 0; + me.lastScrollDirection = me.scrollOffset = null; + + + delete me.rowHeight; + } + }, + + onViewRefresh: function() { + var me = this, + view = me.view, + oldScrollHeight = me.scrollHeight, + scrollHeight; + + + if (view.all.getCount()) { + + + delete me.rowHeight; + } + + + + scrollHeight = me.getScrollHeight(); + + if (!oldScrollHeight || scrollHeight != oldScrollHeight) { + me.stretchView(view, scrollHeight); + } + + if (me.scrollTop !== view.el.dom.scrollTop) { + + + + me.onViewScroll(); + } else { + me.setBodyTop(me.bodyTop); + + + if (view.all.getCount()) { + me.viewSize = 0; + me.onViewResize(view, null, view.getHeight()); + } + } + }, + + onViewResize: function(view, width, height, oldWidth, oldHeight) { + + if (!oldHeight || height !== oldHeight) { + var me = this, + newViewSize; + + + newViewSize = Math.ceil(height / me.rowHeight) + me.trailingBufferZone + me.leadingBufferZone; + me.viewSize = me.setViewSize(newViewSize); + } + }, + + stretchView: function(view, scrollRange) { + var me = this, + recordCount = (me.store.buffered ? me.store.getTotalCount() : me.store.getCount()); + + if (me.stretcher) { + me.stretcher.dom.style.marginTop = (scrollRange - 1) + 'px'; + } else { + var el = view.el; + + + + if (view.refreshCounter) { + view.fixedNodes++; + } + + + if (recordCount && (me.view.all.endIndex === recordCount - 1)) { + scrollRange = me.bodyTop + view.body.dom.offsetHeight; + } + this.stretcher = el.createChild({ + style: { + width: '1px', + height: '1px', + 'marginTop': (scrollRange - 1) + 'px', + left: 0, + position: 'absolute' + } + }, el.dom.firstChild); + } + }, + + setViewSize: function(viewSize) { + if (viewSize !== this.viewSize) { + + + this.scrollTop = this.view.el.dom.scrollTop; + + var me = this, + store = me.store, + elCount = me.view.all.getCount(), + start, end, + lockingPartner = me.lockingPartner; + + me.viewSize = store.viewSize = viewSize; + + + + if (elCount) { + start = me.view.all.startIndex; + end = Math.min(start + viewSize - 1, (store.buffered ? store.getTotalCount() : store.getCount()) - 1); + + + if (lockingPartner) { + lockingPartner.disable(); + } + me.renderRange(start, end); + if (lockingPartner) { + lockingPartner.enable(); + } + } + } + return viewSize; + }, + + getViewRange: function() { + var me = this, + rows = me.view.all, + store = me.store; + + if (store.data.getCount()) { + return store.getRange(rows.startIndex, rows.startIndex + (me.viewSize || me.store.defaultViewSize) - 1); + } else { + return []; + } + }, + + + scrollTo: function(recordIdx, doSelect, callback, scope) { + var me = this, + view = me.view, + viewDom = view.el.dom, + store = me.store, + total = store.buffered ? store.getTotalCount() : store.getCount(), + startIdx, endIdx, + targetRec, + targetRow, + tableTop; + + + recordIdx = Math.min(Math.max(recordIdx, 0), total - 1); + + + startIdx = Math.max(Math.min(recordIdx - ((me.leadingBufferZone + me.trailingBufferZone) / 2), total - me.viewSize + 1), 0); + tableTop = startIdx * me.rowHeight; + endIdx = Math.min(startIdx + me.viewSize - 1, total - 1); + + store.getRange(startIdx, endIdx, { + callback: function(range, start, end) { + + me.renderRange(start, end, true); + + targetRec = store.data.getRange(recordIdx, recordIdx)[0]; + targetRow = view.getNode(targetRec, false); + view.body.dom.style.top = tableTop + 'px'; + me.position = me.scrollTop = viewDom.scrollTop = tableTop = Math.min(Math.max(0, tableTop - view.body.getOffsetsTo(targetRow)[1]), viewDom.scrollHeight - viewDom.clientHeight); + + + if (Ext.isIE) { + viewDom.scrollTop = tableTop; + } + if (doSelect) { + view.selModel.select(targetRec); + } + if (callback) { + callback.call(scope||me, recordIdx, targetRec); + } + } + }); + }, + + onViewScroll: function(e, t) { + var me = this, + store = me.store, + totalCount = (store.buffered ? store.getTotalCount() : store.getCount()), + vscrollDistance, + scrollDirection, + scrollTop = me.scrollTop = me.view.el.dom.scrollTop, + scrollHandled = false; + + + + if (me.ignoreNextScrollEvent) { + me.ignoreNextScrollEvent = false; + return; + } + + + + if (!(me.disabled || totalCount < me.viewSize)) { + + vscrollDistance = scrollTop - me.position; + scrollDirection = vscrollDistance > 0 ? 1 : -1; + + + if (Math.abs(vscrollDistance) >= 20 || (scrollDirection !== me.lastScrollDirection)) { + me.lastScrollDirection = scrollDirection; + me.handleViewScroll(me.lastScrollDirection); + scrollHandled = true; + } + } + + + if (!scrollHandled) { + if (me.lockingPartner && me.lockingPartner.scrollTop !== scrollTop) { + me.lockingPartner.view.el.dom.scrollTop = scrollTop; + } + } + }, + + handleViewScroll: function(direction) { + var me = this, + rows = me.view.all, + store = me.store, + viewSize = me.viewSize, + totalCount = (store.buffered ? store.getTotalCount() : store.getCount()), + requestStart, + requestEnd; + + + if (direction == -1) { + + + if (rows.startIndex) { + if ((me.getFirstVisibleRowIndex() - rows.startIndex) < me.numFromEdge) { + requestStart = Math.max(0, me.getLastVisibleRowIndex() + me.trailingBufferZone - viewSize); + } + } + } + + else { + + + if (rows.endIndex < totalCount - 1) { + if ((rows.endIndex - me.getLastVisibleRowIndex()) < me.numFromEdge) { + requestStart = Math.max(0, me.getFirstVisibleRowIndex() - me.trailingBufferZone); + } + } + } + + + if (requestStart != null) { + requestEnd = Math.min(requestStart + viewSize - 1, totalCount - 1); + + + if (requestStart !== rows.startIndex || requestEnd !== rows.endIndex) { + me.renderRange(requestStart, requestEnd); + return; + } + } + + + if (me.lockingPartner && me.lockingPartner.view.el && me.lockingPartner.scrollTop !== me.scrollTop) { + me.lockingPartner.view.el.dom.scrollTop = me.scrollTop; + } + }, + + renderRange: function(start, end, forceSynchronous) { + var me = this, + store = me.store; + + + if (store.rangeCached(start, end)) { + me.cancelLoad(); + + if (me.synchronousRender || forceSynchronous) { + me.onRangeFetched(null, start, end); + } else { + if (!me.renderTask) { + me.renderTask = new Ext.util.DelayedTask(me.onRangeFetched, me, null, false); + } + + + + + me.renderTask.delay(1, null, null, [null, start, end]); + } + } + + + else { + me.attemptLoad(start, end); + } + }, + + onRangeFetched: function(range, start, end, fromLockingPartner) { + var me = this, + view = me.view, + oldStart, + rows = view.all, + removeCount, + increment = 0, + calculatedTop = start * me.rowHeight, + top, + lockingPartner = me.lockingPartner; + + + if (view.isDestroyed) { + return; + } + + + if (!range) { + range = me.store.getRange(start, end); + + + if (!range) { + return; + } + } + + + if (start > rows.endIndex || end < rows.startIndex) { + rows.clear(true); + top = calculatedTop; + } + + if (!rows.getCount()) { + view.doAdd(range, start); + } + + else if (end > rows.endIndex) { + removeCount = Math.max(start - rows.startIndex, 0); + + + if (me.variableRowHeight) { + increment = rows.item(rows.startIndex + removeCount, true).offsetTop; + } + rows.scroll(Ext.Array.slice(range, rows.endIndex + 1 - start), 1, removeCount, start, end); + + + if (me.variableRowHeight) { + + top = me.bodyTop + increment; + } else { + top = calculatedTop; + } + } + + else { + removeCount = Math.max(rows.endIndex - end, 0); + oldStart = rows.startIndex; + rows.scroll(Ext.Array.slice(range, 0, rows.startIndex - start), -1, removeCount, start, end); + + + if (me.variableRowHeight) { + + top = me.bodyTop - rows.item(oldStart, true).offsetTop; + } else { + top = calculatedTop; + } + } + + + me.position = me.scrollTop; + + + + if (view.positionBody) { + me.setBodyTop(top, calculatedTop); + } + + + + if (lockingPartner && !lockingPartner.disabled && !fromLockingPartner) { + lockingPartner.onRangeFetched(range, start, end, true); + if (lockingPartner.scrollTop !== me.scrollTop) { + lockingPartner.view.el.dom.scrollTop = me.scrollTop; + } + } + }, + + setBodyTop: function(bodyTop, calculatedTop) { + var me = this, + view = me.view, + store = me.store, + body = view.body.dom, + delta; + + bodyTop = Math.floor(bodyTop); + + + + + if (calculatedTop !== undefined) { + delta = bodyTop - calculatedTop; + bodyTop = calculatedTop; + } + body.style.position = 'absolute'; + body.style.top = (me.bodyTop = bodyTop) + 'px'; + + + + if (delta) { + me.scrollTop = me.position = view.el.dom.scrollTop -= delta; + } + + + if (view.all.endIndex === (store.buffered ? store.getTotalCount() : store.getCount()) - 1) { + me.stretchView(view, me.bodyTop + body.offsetHeight); + } + }, + + getFirstVisibleRowIndex: function(startRow, endRow, viewportTop, viewportBottom) { + var me = this, + view = me.view, + rows = view.all, + elements = rows.elements, + clientHeight = view.el.dom.clientHeight, + target, + targetTop; + + + if (rows.getCount() && me.variableRowHeight) { + if (!arguments.length) { + startRow = rows.startIndex; + endRow = rows.endIndex; + viewportTop = me.scrollTop; + viewportBottom = viewportTop + clientHeight; + + + if (me.bodyTop > viewportBottom || me.bodyTop + view.body.getHeight() < viewportTop) { + return Math.floor(me.scrollTop / me.rowHeight); + } + + + target = startRow + Math.min(me.numFromEdge + ((me.lastScrollDirection == -1) ? me.leadingBufferZone : me.trailingBufferZone), Math.floor((endRow - startRow) / 2)); + } else { + target = startRow + Math.floor((endRow - startRow) / 2); + } + targetTop = me.bodyTop + elements[target].offsetTop; + + + if (targetTop + elements[target].offsetHeight < viewportTop) { + return me.getFirstVisibleRowIndex(target + 1, endRow, viewportTop, viewportBottom); + } + + + if (targetTop <= viewportTop) { + return target; + } + + else if (target !== startRow) { + return me.getFirstVisibleRowIndex(startRow, target - 1, viewportTop, viewportBottom); + } + } + return Math.floor(me.scrollTop / me.rowHeight); + }, + + getLastVisibleRowIndex: function(startRow, endRow, viewportTop, viewportBottom) { + var me = this, + view = me.view, + rows = view.all, + elements = rows.elements, + clientHeight = view.el.dom.clientHeight, + target, + targetTop, targetBottom; + + + if (rows.getCount() && me.variableRowHeight) { + if (!arguments.length) { + startRow = rows.startIndex; + endRow = rows.endIndex; + viewportTop = me.scrollTop; + viewportBottom = viewportTop + clientHeight; + + + if (me.bodyTop > viewportBottom || me.bodyTop + view.body.getHeight() < viewportTop) { + return Math.floor(me.scrollTop / me.rowHeight) + Math.ceil(clientHeight / me.rowHeight); + } + + + target = endRow - Math.min(me.numFromEdge + ((me.lastScrollDirection == 1) ? me.leadingBufferZone : me.trailingBufferZone), Math.floor((endRow - startRow) / 2)); + } else { + target = startRow + Math.floor((endRow - startRow) / 2); + } + targetTop = me.bodyTop + elements[target].offsetTop; + + + if (targetTop > viewportBottom) { + return me.getLastVisibleRowIndex(startRow, target - 1, viewportTop, viewportBottom); + } + targetBottom = targetTop + elements[target].offsetHeight; + + + if (targetBottom >= viewportBottom) { + return target; + } + + else if (target !== endRow) { + return me.getLastVisibleRowIndex(target + 1, endRow, viewportTop, viewportBottom); + } + } + return me.getFirstVisibleRowIndex() + Math.ceil(clientHeight / me.rowHeight); + }, + + getScrollHeight: function() { + var me = this, + view = me.view, + store = me.store, + doCalcHeight = !me.hasOwnProperty('rowHeight'), + storeCount = me.store.getCount(); + + if (!storeCount) { + return 0; + } + if (doCalcHeight) { + if (view.all.getCount()) { + me.rowHeight = Math.floor(view.body.getHeight() / view.all.getCount()); + } + } + return this.scrollHeight = Math.floor((store.buffered ? store.getTotalCount() : store.getCount()) * me.rowHeight); + }, + + attemptLoad: function(start, end) { + var me = this; + if (me.scrollToLoadBuffer) { + if (!me.loadTask) { + me.loadTask = new Ext.util.DelayedTask(me.doAttemptLoad, me, []); + } + me.loadTask.delay(me.scrollToLoadBuffer, me.doAttemptLoad, me, [start, end]); + } else { + me.store.getRange(start, end, { + callback: me.onRangeFetched, + scope: me, + fireEvent: false + }); + } + }, + + cancelLoad: function() { + if (this.loadTask) { + this.loadTask.cancel(); + } + }, + + doAttemptLoad: function(start, end) { + this.store.getRange(start, end, { + callback: this.onRangeFetched, + scope: this, + fireEvent: false + }); + }, + + destroy: function() { + var me = this, + view = me.view; + + if (view && view.el) { + view.el.un('scroll', me.onViewScroll, me); + } + + + Ext.destroy(me.viewListeners, me.storeListeners, me.gridListeners); + } +}); + + +Ext.define('Ext.grid.plugin.Editing', { + alias: 'editing.editing', + extend: Ext.AbstractPlugin , + + + + + + + mixins: { + observable: Ext.util.Observable + }, + + + clicksToEdit: 2, + + + triggerEvent: undefined, + + relayedEvents: [ + 'beforeedit', + 'edit', + 'validateedit', + 'canceledit' + ], + + + defaultFieldXType: 'textfield', + + + editStyle: '', + + constructor: function(config) { + var me = this; + + me.addEvents( + + 'beforeedit', + + + 'edit', + + + 'validateedit', + + 'canceledit' + + ); + me.callParent(arguments); + me.mixins.observable.constructor.call(me); + + me.on("edit", function(editor, e) { + me.fireEvent("afteredit", editor, e); + }); + }, + + + init: function(grid) { + var me = this; + + me.grid = grid; + me.view = grid.view; + me.initEvents(); + + + me.mon(grid, { + reconfigure: me.onReconfigure, + scope: me, + beforerender: { + fn: me.onReconfigure, + single: true, + scope: me + } + }); + + grid.relayEvents(me, me.relayedEvents); + + + if (me.grid.ownerLockable) { + me.grid.ownerLockable.relayEvents(me, me.relayedEvents); + } + + + grid.isEditable = true; + grid.editingPlugin = grid.view.editingPlugin = me; + }, + + + onReconfigure: function() { + var grid = this.grid; + + + + grid = grid.ownerLockable ? grid.ownerLockable : grid; + this.initFieldAccessors(grid.getView().getGridColumns()); + }, + + + destroy: function() { + var me = this, + grid = me.grid; + + Ext.destroy(me.keyNav); + + me.clearListeners(); + + if (grid) { + me.removeFieldAccessors(grid.columnManager.getColumns()); + grid.editingPlugin = grid.view.editingPlugin = me.grid = me.view = me.editor = me.keyNav = null; + } + }, + + + getEditStyle: function() { + return this.editStyle; + }, + + + initFieldAccessors: function(columns) { + + if (columns.isGroupHeader) { + columns = columns.getGridColumns(); + } + + + else if (!Ext.isArray(columns)) { + columns = [columns]; + } + + var me = this, + c, + cLen = columns.length, + column; + + for (c = 0; c < cLen; c++) { + column = columns[c]; + + if (!column.getEditor) { + column.getEditor = function(record, defaultField) { + return me.getColumnField(this, defaultField); + }; + } + if (!column.hasEditor) { + column.hasEditor = function() { + return me.hasColumnField(this); + }; + } + if (!column.setEditor) { + column.setEditor = function(field) { + me.setColumnField(this, field); + }; + } + } + }, + + + removeFieldAccessors: function(columns) { + + if (columns.isGroupHeader) { + columns = columns.getGridColumns(); + } + + + else if (!Ext.isArray(columns)) { + columns = [columns]; + } + + var c, + cLen = columns.length, + column; + + for (c = 0; c < cLen; c++) { + column = columns[c]; + + column.getEditor = column.hasEditor = column.setEditor = null; + } + }, + + + + getColumnField: function(columnHeader, defaultField) { + var field = columnHeader.field; + if (!(field && field.isFormField)) { + field = columnHeader.field = this.createColumnField(columnHeader, defaultField); + } + return field; + }, + + + + hasColumnField: function(columnHeader) { + return !!columnHeader.field; + }, + + + + setColumnField: function(columnHeader, field) { + columnHeader.field = field; + columnHeader.field = this.createColumnField(columnHeader); + }, + + createColumnField: function(columnHeader, defaultField) { + var field = columnHeader.field; + + if (!field && columnHeader.editor) { + field = columnHeader.editor; + columnHeader.editor = null; + } + + if (!field && defaultField) { + field = defaultField; + } + + if (field) { + if (field.isFormField) { + field.column = columnHeader; + } else { + if (Ext.isString(field)) { + field = { + name: columnHeader.dataIndex, + xtype: field, + column: columnHeader + }; + } else { + field = Ext.apply({ + name: columnHeader.dataIndex, + column: columnHeader + }, field); + } + field = Ext.ComponentManager.create(field, this.defaultFieldXType); + } + columnHeader.field = field; + } + return field; + }, + + + initEvents: function() { + var me = this; + me.initEditTriggers(); + me.initCancelTriggers(); + }, + + + initCancelTriggers: Ext.emptyFn, + + + initEditTriggers: function() { + var me = this, + view = me.view; + + + if (me.triggerEvent == 'cellfocus') { + me.mon(view, 'cellfocus', me.onCellFocus, me); + } else if (me.triggerEvent == 'rowfocus') { + me.mon(view, 'rowfocus', me.onRowFocus, me); + } else { + + + + + + + + if (view.getSelectionModel().isCellModel) { + view.onCellFocus = Ext.Function.bind(me.beforeViewCellFocus, me); + } + + + me.mon(view, me.triggerEvent || ('cell' + (me.clicksToEdit === 1 ? 'click' : 'dblclick')), me.onCellClick, me); + } + + + + me.initAddRemoveHeaderEvents() + + view.on('render', me.initKeyNavHeaderEvents, me, {single: true}); + }, + + + beforeViewCellFocus: function(position) { + + if (this.view.selModel.keyNavigation || !this.editing || !this.isCellEditable || !this.isCellEditable(position.row, position.columnHeader)) { + this.view.focusCell.apply(this.view, arguments); + } + }, + + + onRowFocus: function(record, row, rowIdx) { + this.startEdit(row, 0); + }, + + + onCellFocus: function(record, cell, position) { + this.startEdit(position.row, position.column); + }, + + + onCellClick: function(view, cell, colIdx, record, row, rowIdx, e) { + + if(!view.expanderSelector || !e.getTarget(view.expanderSelector)) { + this.startEdit(record, view.ownerCt.columnManager.getHeaderAtIndex(colIdx)); + } + }, + + initAddRemoveHeaderEvents: function(){ + var me = this; + me.mon(me.grid.headerCt, { + scope: me, + add: me.onColumnAdd, + remove: me.onColumnRemove, + columnmove: me.onColumnMove + }); + }, + + initKeyNavHeaderEvents: function() { + var me = this; + + me.keyNav = Ext.create('Ext.util.KeyNav', me.view.el, { + enter: me.onEnterKey, + esc: me.onEscKey, + scope: me + }); + }, + + + onColumnAdd: function(ct, column) { + this.initFieldAccessors(column); + }, + + + onColumnRemove: function(ct, column) { + this.removeFieldAccessors(column); + }, + + + + + onColumnMove: function(headerCt, column, fromIdx, toIdx) { + this.initFieldAccessors(column); + }, + + + onEnterKey: function(e) { + var me = this, + grid = me.grid, + selModel = grid.getSelectionModel(), + record, + pos, + columnHeader; + + + + if (selModel.getCurrentPosition && (pos = selModel.getCurrentPosition())) { + record = pos.record; + columnHeader = pos.columnHeader; + } + + else { + record = selModel.getLastSelected(); + columnHeader = grid.columnManager.getHeaderAtIndex(0); + } + + + if (record && columnHeader) { + me.startEdit(record, columnHeader); + } + }, + + + onEscKey: function(e) { + return this.cancelEdit(); + }, + + + beforeEdit: Ext.emptyFn, + + + startEdit: function(record, columnHeader) { + var me = this, + context, + layoutView = me.grid.lockable ? me.grid : me.view; + + + + if (!layoutView.componentLayoutCounter) { + layoutView.on({ + boxready: Ext.Function.bind(me.startEdit, me, [record, columnHeader]), + single: true + }); + return false; + } + + + if (me.grid.collapsed || !me.grid.view.isVisible(true)) { + return false; + } + + context = me.getEditingContext(record, columnHeader); + if (context == null) { + return false; + } + if (!me.preventBeforeCheck) { + if (me.beforeEdit(context) === false || me.fireEvent('beforeedit', me, context) === false || context.cancel) { + return false; + } + } + + + me.editing = true; + return context; + }, + + + + getEditingContext: function(record, columnHeader) { + var me = this, + grid = me.grid, + view = me.view, + gridRow = view.getNode(record, true), + rowIdx, colIdx; + + + if (!gridRow) { + return; + } + + + columnHeader = grid.columnManager.getVisibleHeaderClosestToIndex(Ext.isNumber(columnHeader) ? columnHeader : columnHeader.getVisibleIndex()); + + + if (!columnHeader) { + return; + } + + colIdx = columnHeader.getVisibleIndex(); + + if (Ext.isNumber(record)) { + + rowIdx = record; + record = view.getRecord(gridRow); + } else { + rowIdx = view.indexOf(gridRow); + } + + + + if (!record) { + return; + } + + return { + grid : grid, + view : view, + store : view.dataSource, + record : record, + field : columnHeader.dataIndex, + value : record.get(columnHeader.dataIndex), + row : gridRow, + column : columnHeader, + rowIdx : rowIdx, + colIdx : colIdx + }; + }, + + + cancelEdit: function() { + var me = this; + + me.editing = false; + me.fireEvent('canceledit', me, me.context); + }, + + + completeEdit: function() { + var me = this; + + if (me.editing && me.validateEdit()) { + me.fireEvent('edit', me, me.context); + } + + me.context = null; + me.editing = false; + }, + + + validateEdit: function() { + var me = this, + context = me.context; + + return me.fireEvent('validateedit', me, context) !== false && !context.cancel; + } +}); + + +Ext.define('Ext.grid.plugin.CellEditing', { + alias: 'plugin.cellediting', + extend: Ext.grid.plugin.Editing , + + lockableScope: 'both', + + + + + + + init: function(grid) { + var me = this, + lockingPartner = me.lockingPartner; + + me.callParent(arguments); + + + if (lockingPartner) { + if (lockingPartner.editors) { + me.editors = lockingPartner.editors; + } else { + me.editors = lockingPartner.editors = new Ext.util.MixedCollection(false, function(editor) { + return editor.editorId; + }); + } + } else { + me.editors = new Ext.util.MixedCollection(false, function(editor) { + return editor.editorId; + }); + } + }, + + onReconfigure: function(grid, store, columns){ + + if (columns) { + this.editors.clear(); + } + this.callParent(); + }, + + + destroy: function() { + var me = this; + if (me.editors) { + me.editors.each(Ext.destroy, Ext); + me.editors.clear(); + } + me.callParent(arguments); + }, + + onBodyScroll: function() { + var me = this, + ed = me.getActiveEditor(), + scroll = me.view.el.getScroll(); + + + + if (ed && ed.editing && ed.editingPlugin === me) { + + if (scroll.top !== me.scroll.top) { + if (ed.field) { + if (ed.field.triggerBlur) { + ed.field.triggerBlur(); + } else { + ed.field.blur(); + } + } + } + + else { + ed.realign(); + } + } + me.scroll = scroll; + }, + + + + initCancelTriggers: function() { + var me = this, + grid = me.grid, + view = grid.view; + + me.mon(view, 'bodyscroll', me.onBodyScroll, me); + me.mon(grid, { + columnresize: me.cancelEdit, + columnmove: me.cancelEdit, + scope: me + }); + }, + + isCellEditable: function(record, columnHeader) { + var me = this, + context = me.getEditingContext(record, columnHeader); + + if (me.grid.view.isVisible(true) && context) { + columnHeader = context.column; + record = context.record; + if (columnHeader && me.getEditor(record, columnHeader)) { + return true; + } + } + }, + + + startEdit: function(record, columnHeader, context) { + var me = this, + ed; + + if (!context) { + me.preventBeforeCheck = true; + context = me.callParent(arguments); + delete me.preventBeforeCheck; + if (context === false) { + return false; + } + } + + + + if (context && me.grid.view.isVisible(true)) { + + record = context.record; + columnHeader = context.column; + + + + + me.completeEdit(); + + + if (columnHeader && !columnHeader.getEditor(record)) { + return false; + } + + + me.context = context; + + context.originalValue = context.value = record.get(columnHeader.dataIndex); + + if (me.beforeEdit(context) === false || me.fireEvent('beforeedit', me, context) === false || context.cancel) { + return false; + } + + ed = me.getEditor(record, columnHeader); + + + me.grid.view.cancelFocus(); + me.view.scrollCellIntoView(me.getCell(record, columnHeader)); + if (ed) { + me.showEditor(ed, context, context.value); + return true; + } + return false; + } + }, + + showEditor: function(ed, context, value) { + var me = this, + record = context.record, + columnHeader = context.column, + sm = me.grid.getSelectionModel(), + selection = sm.getCurrentPosition(), + otherView = selection && selection.view; + + + + if (otherView && otherView !== me.view) { + return me.lockingPartner.showEditor(ed, me.lockingPartner.getEditingContext(selection.record, selection.columnHeader), value); + } + + me.setEditingContext(context); + me.setActiveEditor(ed); + me.setActiveRecord(record); + me.setActiveColumn(columnHeader); + + + if (sm.selectByPosition && (!selection || selection.column !== context.colIdx || selection.row !== context.rowIdx)) { + sm.selectByPosition({ + row: context.rowIdx, + column: context.colIdx, + view: me.view + }); + } + + ed.startEdit(me.getCell(record, columnHeader), value, context); + me.editing = true; + me.scroll = me.view.el.getScroll(); + }, + + completeEdit: function() { + var activeEd = this.getActiveEditor(); + if (activeEd) { + activeEd.completeEdit(); + this.editing = false; + } + }, + + + setEditingContext: function(context) { + this.context = context; + if (this.lockingPartner) { + this.lockingPartner.context = context; + } + }, + + setActiveEditor: function(ed) { + this.activeEditor = ed; + if (this.lockingPartner) { + this.lockingPartner.activeEditor = ed; + } + }, + + getActiveEditor: function() { + return this.activeEditor; + }, + + setActiveColumn: function(column) { + this.activeColumn = column; + if (this.lockingPartner) { + this.lockingPartner.activeColumn = column; + } + }, + + getActiveColumn: function() { + return this.activeColumn; + }, + + setActiveRecord: function(record) { + this.activeRecord = record; + if (this.lockingPartner) { + this.lockingPartner.activeRecord = record; + } + }, + + getActiveRecord: function() { + return this.activeRecord; + }, + + getEditor: function(record, column) { + var me = this, + editors = me.editors, + editorId = column.getItemId(), + editor = editors.getByKey(editorId), + + editorOwner = me.grid.ownerLockable || me.grid; + + if (!editor) { + editor = column.getEditor(record); + if (!editor) { + return false; + } + + + if (editor instanceof Ext.grid.CellEditor) { + editor.floating = true; + } + + else { + editor = new Ext.grid.CellEditor({ + floating: true, + editorId: editorId, + field: editor + }); + } + + editorOwner.add(editor); + editor.on({ + scope: me, + specialkey: me.onSpecialKey, + complete: me.onEditComplete, + canceledit: me.cancelEdit + }); + column.on('removed', me.cancelActiveEdit, me); + editors.add(editor); + } + + if (column.isTreeColumn) { + editor.isForTree = column.isTreeColumn; + editor.addCls(Ext.baseCSSPrefix + 'tree-cell-editor') + } + editor.grid = me.grid; + + + editor.editingPlugin = me; + return editor; + }, + + cancelActiveEdit: function(column){ + var context = this.context + if (context && context.column === column) { + this.cancelEdit(); + } + }, + + + setColumnField: function(column, field) { + var ed = this.editors.getByKey(column.getItemId()); + Ext.destroy(ed, column.field); + this.editors.removeAtKey(column.getItemId()); + this.callParent(arguments); + }, + + + getCell: function(record, column) { + return this.grid.getView().getCell(record, column); + }, + + onSpecialKey: function(ed, field, e) { + var sm; + + if (e.getKey() === e.TAB) { + e.stopEvent(); + + if (ed) { + + + ed.onEditorTab(e); + } + + sm = ed.up('tablepanel').getSelectionModel(); + if (sm.onEditorTab) { + return sm.onEditorTab(ed.editingPlugin, e); + } + } + }, + + onEditComplete : function(ed, value, startValue) { + var me = this, + activeColumn = me.getActiveColumn(), + context = me.context, + record; + + if (activeColumn) { + record = context.record; + + me.setActiveEditor(null); + me.setActiveColumn(null); + me.setActiveRecord(null); + + context.value = value; + if (!me.validateEdit()) { + return; + } + + + + if (!record.isEqual(value, startValue)) { + record.set(activeColumn.dataIndex, value); + } + + + + context.view.focus(false, true); + me.fireEvent('edit', me, context); + me.editing = false; + } + }, + + + cancelEdit: function() { + var me = this, + activeEd = me.getActiveEditor(); + + me.setActiveEditor(null); + me.setActiveColumn(null); + me.setActiveRecord(null); + if (activeEd) { + activeEd.cancelEdit(); + me.context.view.focus(); + me.callParent(arguments); + return; + } + + return true; + }, + + + startEditByPosition: function(position) { + + + if (!position.isCellContext) { + position = new Ext.grid.CellContext(this.view).setPosition(position); + } + + + position.setColumn(this.view.getHeaderCt().getVisibleHeaderClosestToIndex(position.column).getIndex()); + + return this.startEdit(position.record, position.columnHeader); + } +}); + +Ext.define('Ext.grid.plugin.DivRenderer', { + alias: 'plugin.divrenderer', + extend: Ext.AbstractPlugin , + + tableTpl: [ + '
    ', + '{%', + 'values.view.renderRows(values.rows, values.viewStartIndex, out);', + '%}', + '
    ', + { + priority: 0 + } + ], + + rowTpl: [ + '{%', + 'var dataRowCls = values.recordIndex === -1 ? "" : " ' + Ext.baseCSSPrefix + 'grid-data-row";', + '%}', + '
    ', + '' + + '{%', + 'parent.view.renderCell(values, parent.record, parent.recordIndex, xindex - 1, out, parent)', + '%}', + '', + '
    ', + { + priority: 0 + } + ], + + cellTpl: [ + '
    ', + '
    {style}">{value}
    ', + '
    ', { + priority: 0 + } + ], + + selectors: { + + bodySelector: 'div', + + + nodeContainerSelector: 'div', + + + itemSelector: 'dl.' + Ext.baseCSSPrefix + 'grid-row', + + + dataRowSelector: 'dl.' + Ext.baseCSSPrefix + 'grid-data-row', + + + cellSelector: 'dt.' + Ext.baseCSSPrefix + 'grid-cell', + + innerSelector: 'div.' + Ext.baseCSSPrefix + 'grid-cell-inner', + + getNodeContainerSelector: function() { + return this.getBodySelector(); + }, + + getNodeContainer: function() { + return this.el.getById(this.id + '-table', true); + } + }, + + init: function(grid) { + var view = grid.getView(); + view.tableTpl = Ext.XTemplate.getTpl(this, 'tableTpl'); + view.rowTpl = Ext.XTemplate.getTpl(this, 'rowTpl'); + view.cellTpl = Ext.XTemplate.getTpl(this, 'cellTpl'); + Ext.apply(view, this.selectors); + } +}); + + +Ext.define('Ext.grid.plugin.DragDrop', { + extend: Ext.AbstractPlugin , + alias: 'plugin.gridviewdragdrop', + + + + + + + + + + + + + dragText : '{0} selected row{1}', + + + + ddGroup : "GridDD", + + + + + + + enableDrop: true, + + + enableDrag: true, + + + containerScroll: false, + + init : function(view) { + view.on('render', this.onViewRender, this, {single: true}); + }, + + + destroy: function() { + Ext.destroy(this.dragZone, this.dropZone); + }, + + enable: function() { + var me = this; + if (me.dragZone) { + me.dragZone.unlock(); + } + if (me.dropZone) { + me.dropZone.unlock(); + } + me.callParent(); + }, + + disable: function() { + var me = this; + if (me.dragZone) { + me.dragZone.lock(); + } + if (me.dropZone) { + me.dropZone.lock(); + } + me.callParent(); + }, + + onViewRender : function(view) { + var me = this, + scrollEl; + + if (me.enableDrag) { + if (me.containerScroll) { + scrollEl = view.getEl(); + } + + me.dragZone = new Ext.view.DragZone({ + view: view, + ddGroup: me.dragGroup || me.ddGroup, + dragText: me.dragText, + containerScroll: me.containerScroll, + scrollEl: scrollEl + }); + } + + if (me.enableDrop) { + me.dropZone = new Ext.grid.ViewDropZone({ + view: view, + ddGroup: me.dropGroup || me.ddGroup + }); + } + } +}); + + +Ext.define('Ext.grid.plugin.RowEditing', { + extend: Ext.grid.plugin.Editing , + alias: 'plugin.rowediting', + + + + + + lockableScope: 'top', + + editStyle: 'row', + + + autoCancel: true, + + + + + errorSummary: true, + + constructor: function() { + var me = this; + + me.callParent(arguments); + + if (!me.clicksToMoveEditor) { + me.clicksToMoveEditor = me.clicksToEdit; + } + + me.autoCancel = !!me.autoCancel; + }, + + + destroy: function() { + Ext.destroy(this.editor); + this.callParent(arguments); + }, + + + startEdit: function(record, columnHeader) { + var me = this, + editor = me.getEditor(), + context; + + if (editor.beforeEdit() !== false) { + context = me.callParent(arguments); + if (context) { + me.context = context; + + + if (me.lockingPartner) { + me.lockingPartner.cancelEdit(); + } + editor.startEdit(context.record, context.column, context); + return true; + } + } + return false; + }, + + + cancelEdit: function() { + var me = this; + + if (me.editing) { + me.getEditor().cancelEdit(); + me.callParent(arguments); + return; + } + + return true; + }, + + + completeEdit: function() { + var me = this; + + if (me.editing && me.validateEdit()) { + me.editing = false; + me.fireEvent('edit', me, me.context); + } + }, + + + validateEdit: function() { + var me = this, + editor = me.editor, + context = me.context, + record = context.record, + newValues = {}, + originalValues = {}, + editors = editor.query('>[isFormField]'), + e, + eLen = editors.length, + name, item; + + for (e = 0; e < eLen; e++) { + item = editors[e]; + name = item.name; + + newValues[name] = item.getValue(); + originalValues[name] = record.get(name); + } + + Ext.apply(context, { + newValues : newValues, + originalValues : originalValues + }); + + return me.callParent(arguments) && me.getEditor().completeEdit(); + }, + + + getEditor: function() { + var me = this; + + if (!me.editor) { + me.editor = me.initEditor(); + } + return me.editor; + }, + + + initEditor: function() { + return new Ext.grid.RowEditor(this.initEditorConfig()); + }, + + initEditorConfig: function(){ + var me = this, + grid = me.grid, + view = me.view, + headerCt = grid.headerCt, + btns = ['saveBtnText', 'cancelBtnText', 'errorsText', 'dirtyText'], + b, + bLen = btns.length, + cfg = { + autoCancel: me.autoCancel, + errorSummary: me.errorSummary, + fields: headerCt.getGridColumns(), + hidden: true, + view: view, + + editingPlugin: me + }, + item; + + for (b = 0; b < bLen; b++) { + item = btns[b]; + + if (Ext.isDefined(me[item])) { + cfg[item] = me[item]; + } + } + return cfg; + }, + + + initEditTriggers: function() { + var me = this, + view = me.view, + moveEditorEvent = me.clicksToMoveEditor === 1 ? 'click' : 'dblclick'; + + me.callParent(arguments); + + if (me.clicksToMoveEditor !== me.clicksToEdit) { + me.mon(view, 'cell' + moveEditorEvent, me.moveEditorByClick, me); + } + + view.on({ + render: function() { + me.mon(me.grid.headerCt, { + scope: me, + columnresize: me.onColumnResize, + columnhide: me.onColumnHide, + columnshow: me.onColumnShow + }); + }, + single: true + }); + }, + + startEditByClick: function() { + var me = this; + if (!me.editing || me.clicksToMoveEditor === me.clicksToEdit) { + me.callParent(arguments); + } + }, + + moveEditorByClick: function() { + var me = this; + if (me.editing) { + me.superclass.onCellClick.apply(me, arguments); + } + }, + + + onColumnAdd: function(ct, column) { + if (column.isHeader) { + var me = this, + editor; + + me.initFieldAccessors(column); + + + + editor = me.editor; + if (editor && editor.onColumnAdd) { + editor.onColumnAdd(column); + } + } + }, + + + onColumnRemove: function(ct, column) { + if (column.isHeader) { + var me = this, + editor = me.getEditor(); + + if (editor && editor.onColumnRemove) { + editor.onColumnRemove(ct, column); + } + me.removeFieldAccessors(column); + } + }, + + + onColumnResize: function(ct, column, width) { + if (column.isHeader) { + var me = this, + editor = me.getEditor(); + + if (editor && editor.onColumnResize) { + editor.onColumnResize(column, width); + } + } + }, + + + onColumnHide: function(ct, column) { + + var me = this, + editor = me.getEditor(); + + if (editor && editor.onColumnHide) { + editor.onColumnHide(column); + } + }, + + + onColumnShow: function(ct, column) { + + var me = this, + editor = me.getEditor(); + + if (editor && editor.onColumnShow) { + editor.onColumnShow(column); + } + }, + + + onColumnMove: function(ct, column, fromIdx, toIdx) { + + var me = this, + editor = me.getEditor(); + + + + me.initFieldAccessors(column); + + if (editor && editor.onColumnMove) { + + + editor.onColumnMove(column, fromIdx, toIdx); + } + }, + + + setColumnField: function(column, field) { + var me = this, + editor = me.getEditor(); + + editor.removeField(column); + me.callParent(arguments); + me.getEditor().setField(column); + } +}); + + + + + + +Ext.define('Ext.grid.plugin.RowExpander', { + extend: Ext.AbstractPlugin , + lockableScope: 'normal', + + + + + + + alias: 'plugin.rowexpander', + + rowBodyTpl: null, + + + expandOnEnter: true, + + + expandOnDblClick: true, + + + selectRowOnExpand: false, + + rowBodyTrSelector: '.x-grid-rowbody-tr', + rowBodyHiddenCls: 'x-grid-row-body-hidden', + rowCollapsedCls: 'x-grid-row-collapsed', + + addCollapsedCls: { + before: function(values, out) { + var me = this.rowExpander; + if (!me.recordsExpanded[values.record.internalId]) { + values.itemClasses.push(me.rowCollapsedCls); + } + }, + priority: 500 + }, + + + + + setCmp: function(grid) { + var me = this, + rowBodyTpl, + features; + + me.callParent(arguments); + + me.recordsExpanded = {}; + + me.rowBodyTpl = Ext.XTemplate.getTpl(me, 'rowBodyTpl'); + rowBodyTpl = this.rowBodyTpl; + features = [{ + ftype: 'rowbody', + lockableScope: 'normal', + recordsExpanded: me.recordsExpanded, + rowBodyHiddenCls: me.rowBodyHiddenCls, + rowCollapsedCls: me.rowCollapsedCls, + setupRowData: me.getRowBodyFeatureData, + setup: me.setup, + getRowBodyContents: function(record) { + return rowBodyTpl.applyTemplate(record.getData()); + } + },{ + ftype: 'rowwrap', + lockableScope: 'normal' + }]; + + if (grid.features) { + grid.features = Ext.Array.push(features, grid.features); + } else { + grid.features = features; + } + + }, + + init: function(grid) { + var me = this, + reconfigurable = grid, + view, lockedView; + + me.callParent(arguments); + me.grid = grid; + view = me.view = grid.getView(); + + + me.addExpander(); + + + + me.bindView(view); + view.addRowTpl(me.addCollapsedCls).rowExpander = me; + + + + if (grid.ownerLockable) { + + reconfigurable = grid.ownerLockable; + reconfigurable.syncRowHeight = false; + lockedView = reconfigurable.lockedGrid.getView(); + + + + me.bindView(lockedView); + lockedView.addRowTpl(me.addCollapsedCls).rowExpander = me; + + + + reconfigurable.mon(reconfigurable, 'columnschanged', me.refreshRowHeights, me); + reconfigurable.mon(reconfigurable.store, 'datachanged', me.refreshRowHeights, me); + } + reconfigurable.on('beforereconfigure', me.beforeReconfigure, me); + + if (grid.ownerLockable && !grid.rowLines) { + + + + + view.on('rowfocus', me.refreshRowHeights, me); + } + }, + + beforeReconfigure: function(grid, store, columns, oldStore, oldColumns) { + var expander = this.getHeaderConfig(); + expander.locked = true; + columns.unshift(expander); + }, + + + addExpander: function() { + var me = this, + expanderGrid = me.grid, + expanderHeader = me.getHeaderConfig(); + + + if (expanderGrid.ownerLockable) { + expanderGrid = expanderGrid.ownerLockable.lockedGrid; + expanderGrid.width += expanderHeader.width; + } + expanderGrid.headerCt.insert(0, expanderHeader); + }, + + getRowBodyFeatureData: function(record, idx, rowValues) { + var me = this + me.self.prototype.setupRowData.apply(me, arguments); + + rowValues.rowBody = me.getRowBodyContents(record); + rowValues.rowBodyCls = me.recordsExpanded[record.internalId] ? '' : me.rowBodyHiddenCls; + }, + + setup: function(rows, rowValues){ + var me = this; + me.self.prototype.setup.apply(me, arguments); + + if (!me.grid.ownerLockable) { + rowValues.rowBodyColspan -= 1; + } + }, + + bindView: function(view) { + if (this.expandOnEnter) { + view.on('itemkeydown', this.onKeyDown, this); + } + if (this.expandOnDblClick) { + view.on('itemdblclick', this.onDblClick, this); + } + }, + + onKeyDown: function(view, record, row, rowIdx, e) { + if (e.getKey() == e.ENTER) { + var ds = view.store, + sels = view.getSelectionModel().getSelection(), + ln = sels.length, + i = 0; + + for (; i < ln; i++) { + rowIdx = ds.indexOf(sels[i]); + this.toggleRow(rowIdx, sels[i]); + } + } + }, + + onDblClick: function(view, record, row, rowIdx, e) { + this.toggleRow(rowIdx, record); + }, + + toggleRow: function(rowIdx, record) { + var me = this, + view = me.view, + rowNode = view.getNode(rowIdx), + row = Ext.fly(rowNode, '_rowExpander'), + nextBd = row.down(me.rowBodyTrSelector, true), + isCollapsed = row.hasCls(me.rowCollapsedCls), + addOrRemoveCls = isCollapsed ? 'removeCls' : 'addCls', + ownerLock, rowHeight, fireView; + + + Ext.suspendLayouts(); + row[addOrRemoveCls](me.rowCollapsedCls); + Ext.fly(nextBd)[addOrRemoveCls](me.rowBodyHiddenCls); + me.recordsExpanded[record.internalId] = isCollapsed; + view.refreshSize(); + + + if (me.grid.ownerLockable) { + ownerLock = me.grid.ownerLockable; + fireView = ownerLock.getView(); + view = ownerLock.lockedGrid.view; + rowHeight = row.getHeight(); + row = Ext.fly(view.getNode(rowIdx), '_rowExpander'); + row.setHeight(rowHeight); + row[addOrRemoveCls](me.rowCollapsedCls); + view.refreshSize(); + } else { + fireView = view; + } + fireView.fireEvent(isCollapsed ? 'expandbody' : 'collapsebody', row.dom, record, nextBd); + + Ext.resumeLayouts(true); + }, + + + + + + + + refreshRowHeights: function() { + Ext.globalEvents.on({ + idle: this.doRefreshRowHeights, + scope: this, + single: true + }); + }, + + doRefreshRowHeights: function() { + var me = this, + recordsExpanded = me.recordsExpanded, + key, record, + lockedView = me.grid.ownerLockable.lockedGrid.view, + normalView = me.grid.ownerLockable.normalGrid.view, + normalRow, + lockedRow, + lockedHeight, + normalHeight; + + for (key in recordsExpanded) { + if (recordsExpanded.hasOwnProperty(key)) { + record = this.view.store.data.get(key); + lockedRow = lockedView.getNode(record, false); + normalRow = normalView.getNode(record, false); + lockedRow.style.height = normalRow.style.height = ''; + lockedHeight = lockedRow.offsetHeight; + normalHeight = normalRow.offsetHeight; + if (normalHeight > lockedHeight) { + lockedRow.style.height = normalHeight + 'px'; + } else if (lockedHeight > normalHeight) { + normalRow.style.height = lockedHeight + 'px'; + } + } + } + }, + + getHeaderConfig: function() { + var me = this; + + return { + width: 24, + lockable: false, + sortable: false, + resizable: false, + draggable: false, + hideable: false, + menuDisabled: true, + tdCls: Ext.baseCSSPrefix + 'grid-cell-special', + innerCls: Ext.baseCSSPrefix + 'grid-cell-inner-row-expander', + renderer: function(value, metadata) { + + if (!me.grid.ownerLockable) { + metadata.tdAttr += ' rowspan="2"'; + } + return '
    '; + }, + processEvent: function(type, view, cell, rowIndex, cellIndex, e, record) { + if (type == "mousedown" && e.getTarget('.x-grid-row-expander')) { + me.toggleRow(rowIndex, record); + return me.selectRowOnExpand; + } + } + }; + } +}); + + +Ext.define('Ext.grid.property.Grid', { + + extend: Ext.grid.Panel , + + alias: 'widget.propertygrid', + + alternateClassName: 'Ext.grid.PropertyGrid', + + + + + + + + + + + + + + + + + + + + + + + + + valueField: 'value', + + + nameField: 'name', + + + inferTypes: true, + + + + + enableColumnMove: false, + columnLines: true, + stripeRows: false, + trackMouseOver: false, + clicksToEdit: 1, + enableHdMenu: false, + + gridCls: Ext.baseCSSPrefix + 'property-grid', + + + initComponent : function(){ + var me = this; + + me.source = me.source || {}; + me.addCls(me.gridCls); + me.plugins = me.plugins || []; + + + me.plugins.push(new Ext.grid.plugin.CellEditing({ + clicksToEdit: me.clicksToEdit, + + + startEdit: function(record, column) { + + return this.self.prototype.startEdit.call(this, record, me.headerCt.child('#' + me.valueField)); + } + })); + + me.selModel = { + selType: 'cellmodel', + onCellSelect: function(position) { + if (position.column != 1) { + position.column = 1; + } + return this.self.prototype.onCellSelect.call(this, position); + } + }; + + me.sourceConfig = Ext.apply({}, me.sourceConfig); + + + if (!me.store) { + me.propStore = me.store = new Ext.grid.property.Store(me, me.source); + } + me.configure(me.sourceConfig); + + if (me.sortableColumns) { + me.store.sort('name', 'ASC'); + } + me.columns = new Ext.grid.property.HeaderContainer(me, me.store); + + me.addEvents( + + 'beforepropertychange', + + 'propertychange' + ); + me.callParent(); + + + me.getView().walkCells = this.walkCells; + + + me.editors = { + 'date' : new Ext.grid.CellEditor({ field: new Ext.form.field.Date({selectOnFocus: true})}), + 'string' : new Ext.grid.CellEditor({ field: new Ext.form.field.Text({selectOnFocus: true})}), + 'number' : new Ext.grid.CellEditor({ field: new Ext.form.field.Number({selectOnFocus: true})}), + 'boolean' : new Ext.grid.CellEditor({ field: new Ext.form.field.ComboBox({ + editable: false, + store: [[ true, me.headerCt.trueText ], [false, me.headerCt.falseText ]] + })}) + }; + + + me.store.on('update', me.onUpdate, me); + }, + + configure: function(config){ + var me = this, + store = me.store, + i = 0, + len = me.store.getCount(), + nameField = me.nameField, + valueField = me.valueField, + name, value, rec, type; + + me.configureLegacy(config); + + if (me.inferTypes) { + for (; i < len; ++i) { + rec = store.getAt(i); + name = rec.get(nameField); + if (!me.getConfig(name, 'type')) { + value = rec.get(valueField); + if (Ext.isDate(value)) { + type = 'date'; + } else if (Ext.isNumber(value)) { + type = 'number'; + } else if (Ext.isBoolean(value)) { + type = 'boolean'; + } else { + type = 'string'; + } + me.setConfig(name, 'type', type); + } + } + } + }, + + getConfig: function(fieldName, key, defaultValue) { + var config = this.sourceConfig[fieldName], + out; + + if (config) { + out = config[key]; + } + return out || defaultValue; + }, + + setConfig: function(fieldName, key, value) { + var sourceCfg = this.sourceConfig, + o = sourceCfg[fieldName]; + + if (!o) { + o = sourceCfg[fieldName] = { + __copied: true + }; + } else if (!o.__copied) { + o = Ext.apply({ + __copied: true + }, o); + sourceCfg[fieldName] = o; + } + o[key] = value; + return value; + }, + + + configureLegacy: function(config){ + var me = this, + o, key, value; + + me.copyLegacyObject(config, me.customRenderers, 'renderer'); + me.copyLegacyObject(config, me.customEditors, 'editor'); + me.copyLegacyObject(config, me.propertyNames, 'displayName'); + + }, + + copyLegacyObject: function(config, o, keyName){ + var key, value; + + for (key in o) { + if (o.hasOwnProperty(key)) { + if (!config[key]) { + config[key] = {}; + } + config[key][keyName] = o[key]; + } + } + }, + + + onUpdate : function(store, record, operation) { + var me = this, + v, oldValue; + + if (me.rendered && operation == Ext.data.Model.EDIT) { + v = record.get(me.valueField); + oldValue = record.modified.value; + if (me.fireEvent('beforepropertychange', me.source, record.getId(), v, oldValue) !== false) { + if (me.source) { + me.source[record.getId()] = v; + } + record.commit(); + me.fireEvent('propertychange', me.source, record.getId(), v, oldValue); + } else { + record.reject(); + } + } + }, + + + walkCells: function(pos, direction, e, preventWrap, verifierFn, scope) { + if (direction == 'left') { + direction = 'up'; + } else if (direction == 'right') { + direction = 'down'; + } + pos = Ext.view.Table.prototype.walkCells.call(this, pos, direction, e, preventWrap, verifierFn, scope); + if (pos && !pos.column) { + pos.column = 1; + } + return pos; + }, + + + + getCellEditor : function(record, column) { + var me = this, + propName = record.get(me.nameField), + val = record.get(me.valueField), + editor = me.getConfig(propName, 'editor'), + type = me.getConfig(propName, 'type'), + editors = me.editors; + + + + if (editor) { + if (!(editor instanceof Ext.grid.CellEditor)) { + if (!(editor instanceof Ext.form.field.Base)) { + editor = Ext.ComponentManager.create(editor, 'textfield'); + } + editor = me.setConfig(propName, 'editor', new Ext.grid.CellEditor({ field: editor })); + } + } else if (type) { + switch (type) { + case 'date': + editor = editors.date; + break; + case 'number': + editor = editors.number; + break; + case 'boolean': + editor = me.editors['boolean']; + break; + default: + editor = editors.string; + } + } else if (Ext.isDate(val)) { + editor = editors.date; + } else if (Ext.isNumber(val)) { + editor = editors.number; + } else if (Ext.isBoolean(val)) { + editor = editors['boolean']; + } else { + editor = editors.string; + } + + + editor.editorId = propName; + return editor; + }, + + beforeDestroy: function() { + var me = this; + me.callParent(); + me.destroyEditors(me.editors); + me.destroyEditors(me.customEditors); + delete me.source; + }, + + destroyEditors: function (editors) { + for (var ed in editors) { + if (editors.hasOwnProperty(ed)) { + Ext.destroy(editors[ed]); + } + } + }, + + + setSource: function(source, sourceConfig) { + var me = this; + + me.source = source; + if (sourceConfig !== undefined) { + me.sourceConfig = Ext.apply({}, sourceConfig); + me.configure(me.sourceConfig); + } + me.propStore.setSource(source); + }, + + + getSource: function() { + return this.propStore.getSource(); + }, + + + setProperty: function(prop, value, create) { + this.propStore.setValue(prop, value, create); + }, + + + removeProperty: function(prop) { + this.propStore.remove(prop); + } + + + +}); + + +Ext.define('Ext.grid.property.HeaderContainer', { + + extend: Ext.grid.header.Container , + + alternateClassName: 'Ext.grid.PropertyColumnModel', + + nameWidth: 115, + + + + nameText : 'Name', + + + valueText : 'Value', + + + dateFormat : 'm/j/Y', + + + trueText: 'true', + + + falseText: 'false', + + + + nameColumnCls: Ext.baseCSSPrefix + 'grid-property-name', + nameColumnInnerCls: Ext.baseCSSPrefix + 'grid-cell-inner-property-name', + + + constructor : function(grid, store) { + var me = this; + + me.grid = grid; + me.store = store; + me.callParent([{ + isRootHeader: true, + enableColumnResize: Ext.isDefined(grid.enableColumnResize) ? grid.enableColumnResize : me.enableColumnResize, + enableColumnMove: Ext.isDefined(grid.enableColumnMove) ? grid.enableColumnMove : me.enableColumnMove, + items: [{ + header: me.nameText, + width: grid.nameColumnWidth || me.nameWidth, + sortable: grid.sortableColumns, + dataIndex: grid.nameField, + renderer: Ext.Function.bind(me.renderProp, me), + itemId: grid.nameField, + menuDisabled :true, + tdCls: me.nameColumnCls, + innerCls: me.nameColumnInnerCls + }, { + header: me.valueText, + renderer: Ext.Function.bind(me.renderCell, me), + getEditor: Ext.Function.bind(me.getCellEditor, me), + sortable: grid.sortableColumns, + flex: 1, + fixed: true, + dataIndex: grid.valueField, + itemId: grid.valueField, + menuDisabled: true + }] + }]); + }, + + getCellEditor: function(record){ + return this.grid.getCellEditor(record, this); + }, + + + + renderProp : function(v) { + return this.getPropertyName(v); + }, + + + + renderCell : function(val, meta, rec) { + var me = this, + grid = me.grid, + renderer = grid.getConfig(rec.get(grid.nameField), 'renderer'), + result = val; + + if (renderer) { + return renderer.apply(me, arguments); + } + if (Ext.isDate(val)) { + result = me.renderDate(val); + } else if (Ext.isBoolean(val)) { + result = me.renderBool(val); + } + return Ext.util.Format.htmlEncode(result); + }, + + + renderDate : Ext.util.Format.date, + + + renderBool : function(bVal) { + return this[bVal ? 'trueText' : 'falseText']; + }, + + + + getPropertyName : function(name) { + return this.grid.getConfig(name, 'displayName', name); + } +}); + + +Ext.define('Ext.grid.property.Property', { + extend: Ext.data.Model , + + alternateClassName: 'Ext.PropGridProperty', + + fields: [{ + name: 'name', + type: 'string' + }, { + name: 'value' + }], + idProperty: 'name' +}); + + +Ext.define('Ext.grid.property.Store', { + + extend: Ext.data.Store , + + alternateClassName: 'Ext.grid.PropertyStore', + + sortOnLoad: false, + + + + + constructor : function(grid, source){ + var me = this; + + me.grid = grid; + me.source = source; + me.callParent([{ + data: source, + model: Ext.grid.property.Property, + proxy: me.getProxy() + }]); + }, + + + getProxy: function() { + if (!this.proxy) { + Ext.grid.property.Store.prototype.proxy = new Ext.data.proxy.Memory({ + model: Ext.grid.property.Property, + reader: this.getReader() + }); + } + return this.proxy; + }, + + + getReader: function() { + if (!this.reader) { + Ext.grid.property.Store.prototype.reader = new Ext.data.reader.Reader({ + model: Ext.grid.property.Property, + + buildExtractors: Ext.emptyFn, + + read: function(dataObject) { + return this.readRecords(dataObject); + }, + + readRecords: function(dataObject) { + var val, + propName, + result = { + records: [], + success: true + }; + + for (propName in dataObject) { + if (dataObject.hasOwnProperty(propName)) { + val = dataObject[propName]; + if (this.isEditableValue(val)) { + result.records.push(new Ext.grid.property.Property({ + name: propName, + value: val + }, propName)); + } + } + } + result.total = result.count = result.records.length; + return new Ext.data.ResultSet(result); + }, + + + isEditableValue: function(val){ + return Ext.isPrimitive(val) || Ext.isDate(val) || val === null; + } + }); + } + return this.reader; + }, + + + + setSource : function(dataObject) { + var me = this; + + me.source = dataObject; + me.suspendEvents(); + me.removeAll(); + me.proxy.data = dataObject; + me.load(); + me.resumeEvents(); + me.fireEvent('datachanged', me); + me.fireEvent('refresh', me); + }, + + + getProperty : function(row) { + return Ext.isNumber(row) ? this.getAt(row) : this.getById(row); + }, + + + setValue : function(prop, value, create){ + var me = this, + rec = me.getRec(prop); + + if (rec) { + rec.set('value', value); + me.source[prop] = value; + } else if (create) { + + me.source[prop] = value; + rec = new Ext.grid.property.Property({name: prop, value: value}, prop); + me.add(rec); + } + }, + + + remove : function(prop) { + var rec = this.getRec(prop); + if (rec) { + this.callParent([rec]); + delete this.source[prop]; + } + }, + + + getRec : function(prop) { + return this.getById(prop); + }, + + + + getSource : function() { + return this.source; + } +}); + + +Ext.define('Ext.layout.ClassList', (function () { + + var splitWords = Ext.String.splitWords, + toMap = Ext.Array.toMap; + + return { + dirty: false, + + constructor: function (owner) { + this.owner = owner; + this.map = toMap(this.classes = splitWords(owner.el.className)); + }, + + + add: function (cls) { + var me = this; + + if (!me.map[cls]) { + me.map[cls] = true; + me.classes.push(cls); + if (!me.dirty) { + me.dirty = true; + me.owner.markDirty(); + } + } + }, + + + addMany: function (classes) { + Ext.each(splitWords(classes), this.add, this); + }, + + contains: function (cls) { + return this.map[cls]; + }, + + flush: function () { + this.owner.el.className = this.classes.join(' '); + this.dirty = false; + }, + + + remove: function (cls) { + var me = this; + + if (me.map[cls]) { + delete me.map[cls]; + me.classes = Ext.Array.filter(me.classes, function (c) { + return c != cls; + }); + if (!me.dirty) { + me.dirty = true; + me.owner.markDirty(); + } + } + }, + + + removeMany: function (classes) { + var me = this, + remove = toMap(splitWords(classes)); + + me.classes = Ext.Array.filter(me.classes, function (c) { + if (!remove[c]) { + return true; + } + + delete me.map[c]; + if (!me.dirty) { + me.dirty = true; + me.owner.markDirty(); + } + return false; + }); + } + }; +}())); + + +Ext.define('Ext.util.Queue', { + + constructor: function() { + this.clear(); + }, + + add : function(obj) { + var me = this, + key = me.getKey(obj); + + if (!me.map[key]) { + ++me.length; + me.items.push(obj); + me.map[key] = obj; + } + + return obj; + }, + + + clear : function(){ + var me = this, + items = me.items; + + me.items = []; + me.map = {}; + me.length = 0; + + return items; + }, + + contains: function (obj) { + var key = this.getKey(obj); + + return this.map.hasOwnProperty(key); + }, + + + getCount : function(){ + return this.length; + }, + + getKey : function(obj){ + return obj.id; + }, + + + remove : function(obj){ + var me = this, + key = me.getKey(obj), + items = me.items, + index; + + if (me.map[key]) { + index = Ext.Array.indexOf(items, obj); + Ext.Array.erase(items, index, 1); + delete me.map[key]; + --me.length; + } + + return obj; + } +}); + + +Ext.define('Ext.layout.ContextItem', { + + + + heightModel: null, + widthModel: null, + sizeModel: null, + + + optOut: false, + + ownerSizePolicy: null, + + boxChildren: null, + + boxParent: null, + isBorderBoxValue: null, + + children: [], + + dirty: null, + + + dirtyCount: 0, + + hasRawContent: true, + + isContextItem: true, + + isTopLevel: false, + + consumersContentHeight: 0, + consumersContentWidth: 0, + consumersContainerHeight: 0, + consumersContainerWidth: 0, + consumersHeight: 0, + consumersWidth: 0, + + ownerCtContext: null, + + remainingChildDimensions: 0, + + + props: null, + + + state: null, + + + wrapsComponent: false, + + constructor: function (config) { + var me = this, + sizeModels = Ext.layout.SizeModel.sizeModels, + configured = sizeModels.configured, + shrinkWrap = sizeModels.shrinkWrap, + el, lastBox, ownerCt, ownerCtContext, props, sizeModel, target, + lastWidth, lastHeight, sameWidth, sameHeight, widthModel, heightModel, optOut; + + Ext.apply(me, config); + + el = me.el; + me.id = el.id; + + + + + + + + + + + + + + + + + + + + + + me.flushedProps = {}; + me.props = props = {}; + + + me.styles = {}; + + target = me.target; + + if (!target.isComponent) { + lastBox = el.lastBox; + } else { + me.wrapsComponent = true; + me.framing = target.frameSize || null; + me.isComponentChild = target.ownerLayout && target.ownerLayout.isComponentLayout; + + lastBox = target.lastBox; + + + + ownerCt = target.ownerCt; + if (ownerCt && (ownerCtContext = ownerCt.el && me.context.items[ownerCt.el.id])) { + me.ownerCtContext = ownerCtContext; + } + + + + me.sizeModel = sizeModel = target.getSizeModel(ownerCtContext && + ownerCtContext.widthModel.pairsByHeightOrdinal[ownerCtContext.heightModel.ordinal]); + + + + + + + + me.widthModel = widthModel = sizeModel.width; + me.heightModel = heightModel = sizeModel.height; + + + + + if (lastBox && lastBox.invalid === false) { + sameWidth = (target.width === (lastWidth = lastBox.width)); + sameHeight = (target.height === (lastHeight = lastBox.height)); + + if (widthModel === shrinkWrap && heightModel === shrinkWrap) { + optOut = true; + } else if (widthModel === configured && sameWidth) { + optOut = heightModel === shrinkWrap || + (heightModel === configured && sameHeight); + } + + if (optOut) { + + me.optOut = true; + props.width = lastWidth; + props.height = lastHeight; + } + } + } + + me.lastBox = lastBox; + }, + + + init: function (full, options) { + var me = this, + oldProps = me.props, + oldDirty = me.dirty, + ownerCtContext = me.ownerCtContext, + ownerLayout = me.target.ownerLayout, + firstTime = !me.state, + ret = full || firstTime, + children, i, n, ownerCt, sizeModel, target, + oldHeightModel = me.heightModel, + oldWidthModel = me.widthModel, + newHeightModel, newWidthModel, + remainingCount = 0; + + me.dirty = me.invalid = false; + me.props = {}; + + + me.remainingChildDimensions = 0; + + if (me.boxChildren) { + me.boxChildren.length = 0; + } + + if (!firstTime) { + me.clearAllBlocks('blocks'); + me.clearAllBlocks('domBlocks'); + } + + + if (!me.wrapsComponent) { + return ret; + } + + + target = me.target; + me.state = {}; + + if (firstTime) { + + + if (target.beforeLayout && target.beforeLayout !== Ext.emptyFn) { + target.beforeLayout(); + } + + + + + + + + if (!ownerCtContext && (ownerCt = target.ownerCt)) { + ownerCtContext = me.context.items[ownerCt.el.id]; + } + + if (ownerCtContext) { + me.ownerCtContext = ownerCtContext; + me.isBoxParent = target.ownerLayout.isItemBoxParent(me); + } else { + me.isTopLevel = true; + } + + me.frameBodyContext = me.getEl('frameBody'); + } else { + ownerCtContext = me.ownerCtContext; + + + me.isTopLevel = !ownerCtContext; + + + + children = me.children; + for (i = 0, n = children.length; i < n; ++i) { + children[i].init(true); + } + } + + + + + me.hasRawContent = !(target.isContainer && target.items.items.length > 0); + + if (full) { + + + me.widthModel = me.heightModel = null; + sizeModel = target.getSizeModel(ownerCtContext && + ownerCtContext.widthModel.pairsByHeightOrdinal[ownerCtContext.heightModel.ordinal]); + + if (firstTime) { + me.sizeModel = sizeModel; + } + + me.widthModel = sizeModel.width; + me.heightModel = sizeModel.height; + + + + + if (ownerCtContext && !me.isComponentChild) { + ownerCtContext.remainingChildDimensions += 2; + } + } else if (oldProps) { + + + me.recoverProp('x', oldProps, oldDirty); + me.recoverProp('y', oldProps, oldDirty); + + + if (me.widthModel.calculated) { + me.recoverProp('width', oldProps, oldDirty); + } else if ('width' in oldProps) { + ++remainingCount; + } + if (me.heightModel.calculated) { + me.recoverProp('height', oldProps, oldDirty); + } else if ('height' in oldProps) { + ++remainingCount; + } + + + + + + + if (ownerCtContext && !me.isComponentChild) { + ownerCtContext.remainingChildDimensions += remainingCount; + } + } + + if (oldProps && ownerLayout && ownerLayout.manageMargins) { + me.recoverProp('margin-top', oldProps, oldDirty); + me.recoverProp('margin-right', oldProps, oldDirty); + me.recoverProp('margin-bottom', oldProps, oldDirty); + me.recoverProp('margin-left', oldProps, oldDirty); + } + + + + if (options) { + + + + + + + + + + + + + + + + + + + + + + newHeightModel = options.heightModel; + newWidthModel = options.widthModel; + if (newWidthModel && newHeightModel && oldWidthModel && oldHeightModel) { + if (oldWidthModel.shrinkWrap && oldHeightModel.shrinkWrap) { + if (newWidthModel.constrainedMax && newHeightModel.constrainedMin) { + newHeightModel = null; + } + } + } + + + if (newWidthModel) { + me.widthModel = newWidthModel; + } + if (newHeightModel) { + me.heightModel = newHeightModel; + } + + if (options.state) { + Ext.apply(me.state, options.state); + } + } + + return ret; + }, + + + initContinue: function (full) { + var me = this, + ownerCtContext = me.ownerCtContext, + comp = me.target, + widthModel = me.widthModel, + hierarchyState = comp.getHierarchyState(), + boxParent; + + if (widthModel.fixed) { + hierarchyState.inShrinkWrapTable = false; + } else { + delete hierarchyState.inShrinkWrapTable; + } + + if (full) { + if (ownerCtContext && widthModel.shrinkWrap) { + boxParent = ownerCtContext.isBoxParent ? ownerCtContext : ownerCtContext.boxParent; + if (boxParent) { + boxParent.addBoxChild(me); + } + } else if (widthModel.natural) { + me.boxParent = ownerCtContext; + } + } + + return full; + }, + + + initDone: function(containerLayoutDone) { + var me = this, + props = me.props, + state = me.state; + + + if (me.remainingChildDimensions === 0) { + props.containerChildrenSizeDone = true; + } + if (containerLayoutDone) { + props.containerLayoutDone = true; + } + + if (me.boxChildren && me.boxChildren.length && me.widthModel.shrinkWrap) { + + + me.el.setWidth(10000); + + + state.blocks = (state.blocks || 0) + 1; + } + }, + + + initAnimation: function() { + var me = this, + target = me.target, + ownerCtContext = me.ownerCtContext; + + if (ownerCtContext && ownerCtContext.isTopLevel) { + + + me.animatePolicy = target.ownerLayout.getAnimatePolicy(me); + } else if (!ownerCtContext && target.isCollapsingOrExpanding && target.animCollapse) { + + + + me.animatePolicy = target.componentLayout.getAnimatePolicy(me); + } + + if (me.animatePolicy) { + me.context.queueAnimation(me); + } + }, + + + addCls: function(newCls) { + this.getClassList().addMany(newCls); + }, + + + removeCls: function(removeCls) { + this.getClassList().removeMany(removeCls); + }, + + + addBlock: function (name, layout, propName) { + var me = this, + collection = me[name] || (me[name] = {}), + blockedLayouts = collection[propName] || (collection[propName] = {}); + + if (!blockedLayouts[layout.id]) { + blockedLayouts[layout.id] = layout; + ++layout.blockCount; + ++me.context.blockCount; + } + }, + + addBoxChild: function (boxChildItem) { + var me = this, + children, + widthModel = boxChildItem.widthModel; + + boxChildItem.boxParent = this; + + + + + + + + boxChildItem.measuresBox = widthModel.shrinkWrap ? boxChildItem.hasRawContent : widthModel.natural; + + if (boxChildItem.measuresBox) { + children = me.boxChildren; + + if (children) { + children.push(boxChildItem); + } else { + me.boxChildren = [ boxChildItem ]; + } + } + }, + + + addPositionStyles: function(styles, props) { + var x = props.x, + y = props.y, + count = 0; + + if (x !== undefined) { + styles.left = x + 'px'; + ++count; + } + if (y !== undefined) { + styles.top = y + 'px'; + ++count; + } + return count; + }, + + + addTrigger: function (propName, inDom) { + var me = this, + name = inDom ? 'domTriggers' : 'triggers', + collection = me[name] || (me[name] = {}), + context = me.context, + layout = context.currentLayout, + triggers = collection[propName] || (collection[propName] = {}); + + if (!triggers[layout.id]) { + triggers[layout.id] = layout; + ++layout.triggerCount; + + triggers = context.triggers[inDom ? 'dom' : 'data']; + (triggers[layout.id] || (triggers[layout.id] = [])).push({ + item: this, + prop: propName + }); + + if (me.props[propName] !== undefined) { + if (!inDom || !(me.dirty && (propName in me.dirty))) { + ++layout.firedTriggers; + } + } + } + }, + + boxChildMeasured: function () { + var me = this, + state = me.state, + count = (state.boxesMeasured = (state.boxesMeasured || 0) + 1); + + if (count == me.boxChildren.length) { + + + state.clearBoxWidth = 1; + ++me.context.progressCount; + me.markDirty(); + } + }, + + borderNames: [ 'border-top-width', 'border-right-width', 'border-bottom-width', 'border-left-width'], + marginNames: [ 'margin-top', 'margin-right', 'margin-bottom', 'margin-left' ], + paddingNames: [ 'padding-top', 'padding-right', 'padding-bottom', 'padding-left' ], + trblNames: [ 'top', 'right', 'bottom', 'left' ], + + cacheMissHandlers: { + borderInfo: function (me) { + var info = me.getStyles(me.borderNames, me.trblNames); + + info.width = info.left + info.right; + info.height = info.top + info.bottom; + + return info; + }, + + marginInfo: function (me) { + var info = me.getStyles(me.marginNames, me.trblNames); + + info.width = info.left + info.right; + info.height = info.top + info.bottom; + + return info; + }, + + paddingInfo: function (me) { + + var item = me.frameBodyContext || me, + info = item.getStyles(me.paddingNames, me.trblNames); + + info.width = info.left + info.right; + info.height = info.top + info.bottom; + + return info; + } + }, + + checkCache: function (entry) { + return this.cacheMissHandlers[entry](this); + }, + + clearAllBlocks: function (name) { + var collection = this[name], + propName; + + if (collection) { + for (propName in collection) { + this.clearBlocks(name, propName); + } + } + }, + + + clearBlocks: function (name, propName) { + var collection = this[name], + blockedLayouts = collection && collection[propName], + context, layout, layoutId; + + if (blockedLayouts) { + delete collection[propName]; + + context = this.context; + + for (layoutId in blockedLayouts) { + layout = blockedLayouts[layoutId]; + + --context.blockCount; + if (! --layout.blockCount && !layout.pending && !layout.done) { + context.queueLayout(layout); + } + } + } + }, + + + block: function (layout, propName) { + this.addBlock('blocks', layout, propName); + }, + + + domBlock: function (layout, propName) { + this.addBlock('domBlocks', layout, propName); + }, + + + fireTriggers: function (name, propName) { + var collection = this[name], + triggers = collection && collection[propName], + context = this.context, + layout, layoutId; + + if (triggers) { + for (layoutId in triggers) { + layout = triggers[layoutId]; + ++layout.firedTriggers; + if (!layout.done && !layout.blockCount && !layout.pending) { + context.queueLayout(layout); + } + } + } + }, + + + flush: function () { + var me = this, + dirty = me.dirty, + state = me.state, + targetEl = me.el; + + me.dirtyCount = 0; + + + if (me.classList && me.classList.dirty) { + me.classList.flush(); + } + + + if ('attributes' in me) { + targetEl.set(me.attributes); + delete me.attributes; + } + + + if ('innerHTML' in me) { + targetEl.innerHTML = me.innerHTML; + delete me.innerHTML; + } + + if (state && state.clearBoxWidth) { + state.clearBoxWidth = 0; + me.el.setStyle('width', null); + + if (! --state.blocks) { + me.context.queueItemLayouts(me); + } + } + + if (dirty) { + delete me.dirty; + me.writeProps(dirty, true); + } + }, + + + flushAnimations: function() { + var me = this, + animateFrom = me.previousSize, + target, targetAnim, duration, animateProps, anim, + changeCount, j, propsLen, propName, oldValue, newValue; + + + if (animateFrom) { + target = me.target; + targetAnim = target.layout && target.layout.animate; + if (targetAnim) { + duration = Ext.isNumber(targetAnim) ? targetAnim : targetAnim.duration; + } + animateProps = Ext.Object.getKeys(me.animatePolicy); + + + + anim = Ext.apply({}, { + from: {}, + to: {}, + duration: duration || Ext.fx.Anim.prototype.duration + }, targetAnim); + + for (changeCount = 0, j = 0, propsLen = animateProps.length; j < propsLen; j++) { + propName = animateProps[j]; + oldValue = animateFrom[propName]; + newValue = me.peek(propName); + if (oldValue != newValue) { + propName = me.translateProps[propName]||propName; + anim.from[propName] = oldValue; + anim.to[propName] = newValue; + ++changeCount; + } + } + + + if (changeCount) { + + if (me.isCollapsingOrExpanding === 1) { + target.componentLayout.undoLayout(me); + } + + + else { + me.writeProps(anim.from); + } + me.el.animate(anim); + + Ext.fx.Manager.getFxQueue(me.el.id)[0].on({ + afteranimate: function() { + if (me.isCollapsingOrExpanding === 1) { + target.componentLayout.redoLayout(me); + target.afterCollapse(true); + } else if (me.isCollapsingOrExpanding === 2) { + target.afterExpand(true); + } + } + }); + } + } + }, + + + getBorderInfo: function () { + var me = this, + info = me.borderInfo; + + if (!info) { + me.borderInfo = info = me.checkCache('borderInfo'); + } + + return info; + }, + + + getClassList: function () { + return this.classList || (this.classList = new Ext.layout.ClassList(this)); + }, + + + getEl: function (nameOrEl, owner) { + var me = this, + src, el, elContext; + + if (nameOrEl) { + if (nameOrEl.dom) { + el = nameOrEl; + } else { + src = me.target; + if (owner) { + src = owner; + } + + el = src[nameOrEl]; + if (typeof el == 'function') { + el = el.call(src); + if (el === me.el) { + return this; + } + } + } + + if (el) { + elContext = me.context.getEl(me, el); + } + } + + return elContext || null; + }, + + + getFrameInfo: function () { + var me = this, + info = me.frameInfo, + framing, border; + + if (!info) { + framing = me.framing; + border = me.getBorderInfo(); + + me.frameInfo = info = + framing ? { + top : framing.top + border.top, + right : framing.right + border.right, + bottom: framing.bottom + border.bottom, + left : framing.left + border.left, + width : framing.width + border.width, + height: framing.height + border.height + } : border; + } + + return info; + }, + + + getMarginInfo: function () { + var me = this, + info = me.marginInfo, + comp, manageMargins, margins, ownerLayout, ownerLayoutId; + + if (!info) { + if (!me.wrapsComponent) { + info = me.checkCache('marginInfo'); + } else { + comp = me.target; + ownerLayout = comp.ownerLayout; + ownerLayoutId = ownerLayout ? ownerLayout.id : null; + manageMargins = ownerLayout && ownerLayout.manageMargins; + + + + + + + + + + + + + + + + + info = comp.margin$; + if (info && info.ownerId !== ownerLayoutId) { + + info = null; + + + + + } + + if (!info) { + + info = me.parseMargins(comp, comp.margin) || me.checkCache('marginInfo'); + + + if (manageMargins) { + margins = me.parseMargins(comp, comp.margins, ownerLayout.defaultMargins); + + if (margins) { + + info = { + top: info.top + margins.top, + right: info.right + margins.right, + bottom: info.bottom + margins.bottom, + left: info.left + margins.left + }; + } + + me.setProp('margin-top', 0); + me.setProp('margin-right', 0); + me.setProp('margin-bottom', 0); + me.setProp('margin-left', 0); + } + + + info.ownerId = ownerLayoutId; + comp.margin$ = info; + } + + info.width = info.left + info.right; + info.height = info.top + info.bottom; + } + + me.marginInfo = info; + } + + return info; + }, + + + clearMarginCache: function() { + delete this.marginInfo; + delete this.target.margin$; + }, + + + getPaddingInfo: function () { + var me = this, + info = me.paddingInfo; + + if (!info) { + me.paddingInfo = info = me.checkCache('paddingInfo'); + } + + return info; + }, + + + getProp: function (propName) { + var me = this, + result = me.props[propName]; + + me.addTrigger(propName); + return result; + }, + + + getDomProp: function (propName) { + var me = this, + result = (me.dirty && (propName in me.dirty)) ? undefined : me.props[propName]; + + me.addTrigger(propName, true); + return result; + }, + + + getStyle: function (styleName) { + var me = this, + styles = me.styles, + info, value; + + if (styleName in styles) { + value = styles[styleName]; + } else { + info = me.styleInfo[styleName]; + value = me.el.getStyle(styleName); + + if (info && info.parseInt) { + value = parseInt(value, 10) || 0; + } + + styles[styleName] = value; + } + + return value; + }, + + + getStyles: function (styleNames, altNames) { + var me = this, + styleCache = me.styles, + values = {}, + hits = 0, + n = styleNames.length, + i, missing, missingAltNames, name, info, styleInfo, styles, value; + + altNames = altNames || styleNames; + + + + for (i = 0; i < n; ++i) { + name = styleNames[i]; + + if (name in styleCache) { + values[altNames[i]] = styleCache[name]; + ++hits; + + if (i && hits==1) { + missing = styleNames.slice(0, i); + missingAltNames = altNames.slice(0, i); + } + } else if (hits) { + (missing || (missing = [])).push(name); + (missingAltNames || (missingAltNames = [])).push(altNames[i]); + } + } + + if (hits < n) { + missing = missing || styleNames; + missingAltNames = missingAltNames || altNames; + styleInfo = me.styleInfo; + + styles = me.el.getStyle(missing); + + for (i = missing.length; i--; ) { + name = missing[i]; + info = styleInfo[name]; + value = styles[name]; + + if (info && info.parseInt) { + value = parseInt(value, 10) || 0; + } + + values[missingAltNames[i]] = value; + styleCache[name] = value; + } + } + + return values; + }, + + + hasProp: function (propName) { + return this.getProp(propName) != null; + }, + + + hasDomProp: function (propName) { + return this.getDomProp(propName) != null; + }, + + + invalidate: function (options) { + this.context.queueInvalidate(this, options); + }, + + markDirty: function () { + if (++this.dirtyCount == 1) { + + this.context.queueFlush(this); + } + }, + + onBoxMeasured: function () { + var boxParent = this.boxParent, + state = this.state; + + if (boxParent && boxParent.widthModel.shrinkWrap && !state.boxMeasured && this.measuresBox) { + + + state.boxMeasured = 1; + boxParent.boxChildMeasured(); + } + }, + + parseMargins: function (comp, margins, defaultMargins) { + if (margins === true) { + margins = 5; + } + + var type = typeof margins, + ret; + + if (type == 'string' || type == 'number') { + ret = comp.parseBox(margins); + } else if (margins || defaultMargins) { + ret = { top: 0, right: 0, bottom: 0, left: 0 }; + + if (defaultMargins) { + Ext.apply(ret, this.parseMargins(comp, defaultMargins)); + } + + if (margins) { + margins = Ext.apply(ret, comp.parseBox(margins)); + } + } + + return ret; + }, + + peek: function (propName) { + return this.props[propName]; + }, + + + recoverProp: function (propName, oldProps, oldDirty) { + var me = this, + props = me.props, + dirty; + + if (propName in oldProps) { + props[propName] = oldProps[propName]; + + if (oldDirty && propName in oldDirty) { + dirty = me.dirty || (me.dirty = {}); + dirty[propName] = oldDirty[propName]; + } + } + }, + + redo: function(deep) { + var me = this, + items, len, i; + + me.revertProps(me.props); + + if (deep && me.wrapsComponent) { + + if (me.childItems) { + for (i = 0, items = me.childItems, len = items.length; i < len; i++) { + items[i].redo(deep); + } + } + + + for (i = 0, items = me.children, len = items.length; i < len; i++) { + items[i].redo(); + } + } + }, + + + removeEl: function(nameOrEl, owner) { + var me = this, + src, el; + + if (nameOrEl) { + if (nameOrEl.dom) { + el = nameOrEl; + } else { + src = me.target; + if (owner) { + src = owner; + } + + el = src[nameOrEl]; + if (typeof el == 'function') { + el = el.call(src); + if (el === me.el) { + return this; + } + } + } + + if (el) { + me.context.removeEl(me, el); + } + } + }, + + revertProps: function (props) { + var name, + flushed = this.flushedProps, + reverted = {}; + + for (name in props) { + if (flushed.hasOwnProperty(name)) { + reverted[name] = props[name]; + } + } + + this.writeProps(reverted); + }, + + + setAttribute: function(name, value) { + var me = this; + if (!me.attributes) { + me.attributes = {}; + } + me.attributes[name] = value; + me.markDirty(); + }, + + setBox: function (box) { + var me = this; + + if ('left' in box) { + me.setProp('x', box.left); + } + if ('top' in box) { + me.setProp('y', box.top); + } + + + + + me.setSize(box.width, box.height); + }, + + + setContentHeight: function (height, measured) { + if (!measured && this.hasRawContent) { + return 1; + } + + return this.setProp('contentHeight', height); + }, + + + setContentWidth: function (width, measured) { + if (!measured && this.hasRawContent) { + return 1; + } + + return this.setProp('contentWidth', width); + }, + + + setContentSize: function (width, height, measured) { + return this.setContentWidth(width, measured) + + this.setContentHeight(height, measured) == 2; + }, + + + setProp: function (propName, value, dirty) { + var me = this, + valueType = typeof value, + borderBox, info; + + if (valueType == 'undefined' || (valueType === 'number' && isNaN(value))) { + return 0; + } + if (me.props[propName] === value) { + return 1; + } + + me.props[propName] = value; + ++me.context.progressCount; + + if (dirty === false) { + + + me.fireTriggers('domTriggers', propName); + me.clearBlocks('domBlocks', propName); + } else { + info = me.styleInfo[propName]; + if (info) { + if (!me.dirty) { + me.dirty = {}; + } + + if (propName == 'width' || propName == 'height') { + borderBox = me.isBorderBoxValue; + if (borderBox === null) { + me.isBorderBoxValue = borderBox = !!me.el.isBorderBox(); + } + + if (!borderBox) { + me.borderInfo || me.getBorderInfo(); + me.paddingInfo || me.getPaddingInfo(); + } + } + me.dirty[propName] = value; + me.markDirty(); + } + } + + + me.fireTriggers('triggers', propName); + me.clearBlocks('blocks', propName); + return 1; + }, + + + setHeight: function (height, dirty ) { + var me = this, + comp = me.target, + ownerCtContext = me.ownerCtContext, + frameBody, frameInfo, min, oldHeight, rem; + + if (height < 0) { + height = 0; + } + if (!me.wrapsComponent) { + if (!me.setProp('height', height, dirty)) { + return NaN; + } + } else { + min = me.collapsedVert ? 0 : (comp.minHeight || 0); + height = Ext.Number.constrain(height, min, comp.maxHeight); + oldHeight = me.props.height; + if (!me.setProp('height', height, dirty)) { + return NaN; + } + + + + if (ownerCtContext && !me.isComponentChild && isNaN(oldHeight)) { + rem = --ownerCtContext.remainingChildDimensions; + if (!rem) { + + + + ownerCtContext.setProp('containerChildrenSizeDone', true); + } + } + + frameBody = me.frameBodyContext; + if (frameBody){ + frameInfo = me.getFrameInfo(); + frameBody.setHeight(height - frameInfo.height, dirty); + } + } + + return height; + }, + + + setWidth: function (width, dirty ) { + var me = this, + comp = me.target, + ownerCtContext = me.ownerCtContext, + frameBody, frameInfo, min, oldWidth, rem; + + if (width < 0) { + width = 0; + } + if (!me.wrapsComponent) { + if (!me.setProp('width', width, dirty)) { + return NaN; + } + } else { + min = me.collapsedHorz ? 0 : (comp.minWidth || 0); + width = Ext.Number.constrain(width, min, comp.maxWidth); + oldWidth = me.props.width + if (!me.setProp('width', width, dirty)) { + return NaN; + } + + + + if (ownerCtContext && !me.isComponentChild && isNaN(oldWidth)) { + rem = --ownerCtContext.remainingChildDimensions; + if (!rem) { + + + + ownerCtContext.setProp('containerChildrenSizeDone', true); + } + } + + + frameBody = me.frameBodyContext; + if (frameBody) { + frameInfo = me.getFrameInfo(); + frameBody.setWidth(width - frameInfo.width, dirty); + } + + + } + + return width; + }, + + setSize: function (width, height, dirty) { + this.setWidth(width, dirty); + this.setHeight(height, dirty); + }, + + translateProps: { + x: 'left', + y: 'top' + }, + + undo: function(deep) { + var me = this, + items, len, i; + + me.revertProps(me.lastBox); + + if (deep && me.wrapsComponent) { + + if (me.childItems) { + for (i = 0, items = me.childItems, len = items.length; i < len; i++) { + items[i].undo(deep); + } + } + + + for (i = 0, items = me.children, len = items.length; i < len; i++) { + items[i].undo(); + } + } + }, + + unsetProp: function (propName) { + var dirty = this.dirty; + + delete this.props[propName]; + if (dirty) { + delete dirty[propName]; + } + }, + + writeProps: function(dirtyProps, flushing) { + if (!(dirtyProps && typeof dirtyProps == 'object')) { + return; + } + + var me = this, + el = me.el, + styles = {}, + styleCount = 0, + styleInfo = me.styleInfo, + + info, + propName, + numericValue, + width = dirtyProps.width, + height = dirtyProps.height, + isBorderBox = me.isBorderBoxValue, + target = me.target, + max = Math.max, + paddingWidth = 0, + paddingHeight = 0, + hasWidth, hasHeight, isAbsolute, scrollbarSize, style, targetEl; + + + if ('displayed' in dirtyProps) { + el.setDisplayed(dirtyProps.displayed); + } + + + for (propName in dirtyProps) { + if (flushing) { + me.fireTriggers('domTriggers', propName); + me.clearBlocks('domBlocks', propName); + me.flushedProps[propName] = 1; + } + + info = styleInfo[propName]; + if (info && info.dom) { + + if (info.suffix && (numericValue = parseInt(dirtyProps[propName], 10))) { + styles[propName] = numericValue + info.suffix; + } + + else { + styles[propName] = dirtyProps[propName]; + } + ++styleCount; + } + } + + + if ('x' in dirtyProps || 'y' in dirtyProps) { + if (target.isComponent) { + target.setPosition(dirtyProps.x, dirtyProps.y); + } else { + + styleCount += me.addPositionStyles(styles, dirtyProps); + } + } + + + if (!isBorderBox && (width > 0 || height > 0)) { + + + if(!me.frameBodyContext) { + + paddingWidth = me.paddingInfo.width; + paddingHeight = me.paddingInfo.height; + } + if (width) { + width = max(parseInt(width, 10) - (me.borderInfo.width + paddingWidth), 0); + styles.width = width + 'px'; + ++styleCount; + } + if (height) { + height = max(parseInt(height, 10) - (me.borderInfo.height + paddingHeight), 0); + styles.height = height + 'px'; + ++styleCount; + } + } + + + + + + + + if (me.wrapsComponent && Ext.isIE9 && Ext.isStrict) { + + + if ((hasWidth = width !== undefined && me.hasOverflowY) || + (hasHeight = height !== undefined && me.hasOverflowX)) { + + isAbsolute = me.isAbsolute; + if (isAbsolute === undefined) { + isAbsolute = false; + targetEl = me.target.getTargetEl(); + style = targetEl.getStyle('position'); + + if (style == 'absolute') { + style = targetEl.getStyle('box-sizing'); + isAbsolute = (style == 'border-box'); + } + + me.isAbsolute = isAbsolute; + } + + if (isAbsolute) { + scrollbarSize = Ext.getScrollbarSize(); + + if (hasWidth) { + width = parseInt(width, 10) + scrollbarSize.width; + styles.width = width + 'px'; + ++styleCount; + } + if (hasHeight) { + height = parseInt(height, 10) + scrollbarSize.height; + styles.height = height + 'px'; + ++styleCount; + } + } + } + } + + + if (styleCount) { + el.setStyle(styles); + } + } +}, function () { + + var px = { dom: true, parseInt: true, suffix: 'px' }, + isDom = { dom: true }, + faux = { dom: false }; + + + + + + + + + + this.prototype.styleInfo = { + containerChildrenSizeDone: faux, + containerLayoutDone: faux, + displayed: faux, + done: faux, + x: faux, + y: faux, + + + columnWidthsDone: faux, + + left: px, + top: px, + right: px, + bottom: px, + width: px, + height: px, + + 'border-top-width': px, + 'border-right-width': px, + 'border-bottom-width': px, + 'border-left-width': px, + + 'margin-top': px, + 'margin-right': px, + 'margin-bottom': px, + 'margin-left': px, + + 'padding-top': px, + 'padding-right': px, + 'padding-bottom': px, + 'padding-left': px, + + 'line-height': isDom, + display: isDom + }; +}); + + +Ext.define('Ext.layout.Context', { + + + + + + + + + remainingLayouts: 0, + + + state: 0, + + constructor: function (config) { + var me = this; + + Ext.apply(me, config); + + + me.items = {}; + + + me.layouts = {}; + + + me.blockCount = 0; + + me.cycleCount = 0; + + me.flushCount = 0; + + me.calcCount = 0; + + me.animateQueue = me.newQueue(); + me.completionQueue = me.newQueue(); + me.finalizeQueue = me.newQueue(); + me.finishQueue = me.newQueue(); + me.flushQueue = me.newQueue(); + + me.invalidateData = {}; + + + me.layoutQueue = me.newQueue(); + + + + me.invalidQueue = []; + + me.triggers = { + data: { + + }, + dom: {} + }; + }, + + callLayout: function (layout, methodName) { + this.currentLayout = layout; + layout[methodName](this.getCmp(layout.owner)); + }, + + cancelComponent: function (comp, isChild, isDestroying) { + var me = this, + components = comp, + isArray = !comp.isComponent, + length = isArray ? components.length : 1, + i, k, klen, items, layout, newQueue, oldQueue, entry, temp, + ownerCtContext; + + for (i = 0; i < length; ++i) { + if (isArray) { + comp = components[i]; + } + + + if (isDestroying && comp.ownerCt) { + ownerCtContext = this.items[comp.ownerCt.el.id]; + if (ownerCtContext) { + Ext.Array.remove(ownerCtContext.childItems, me.getCmp(comp)); + } + } + + if (!isChild) { + oldQueue = me.invalidQueue; + klen = oldQueue.length; + + if (klen) { + me.invalidQueue = newQueue = []; + for (k = 0; k < klen; ++k) { + entry = oldQueue[k]; + temp = entry.item.target; + if (temp != comp && !temp.isDescendant(comp)) { + newQueue.push(entry); + } + } + } + } + + layout = comp.componentLayout; + me.cancelLayout(layout); + + if (layout.getLayoutItems) { + items = layout.getLayoutItems(); + if (items.length) { + me.cancelComponent(items, true); + } + } + + if (comp.isContainer && !comp.collapsed) { + layout = comp.layout; + me.cancelLayout(layout); + + items = layout.getVisibleItems(); + if (items.length) { + me.cancelComponent(items, true); + } + } + } + }, + + cancelLayout: function (layout) { + var me = this; + + me.completionQueue.remove(layout); + me.finalizeQueue.remove(layout); + me.finishQueue.remove(layout); + me.layoutQueue.remove(layout); + + if (layout.running) { + me.layoutDone(layout); + } + + layout.ownerContext = null; + }, + + clearTriggers: function (layout, inDom) { + var id = layout.id, + collection = this.triggers[inDom ? 'dom' : 'data'], + triggers = collection && collection[id], + length = (triggers && triggers.length) || 0, + i, item, trigger; + + for (i = 0; i < length; ++i) { + trigger = triggers[i]; + item = trigger.item; + + collection = inDom ? item.domTriggers : item.triggers; + delete collection[trigger.prop][id]; + } + }, + + + flush: function () { + var me = this, + items = me.flushQueue.clear(), + length = items.length, i; + + if (length) { + ++me.flushCount; + + for (i = 0; i < length; ++i) { + items[i].flush(); + } + } + }, + + flushAnimations: function() { + var me = this, + items = me.animateQueue.clear(), + len = items.length, + i; + + if (len) { + for (i = 0; i < len; i++) { + + + + if (items[i].target.animate !== false) { + items[i].flushAnimations(); + } + } + + + + Ext.fx.Manager.runner(); + } + }, + + flushInvalidates: function () { + var me = this, + queue = me.invalidQueue, + length = queue && queue.length, + comp, components, entry, i; + + me.invalidQueue = []; + + if (length) { + components = []; + for (i = 0; i < length; ++i) { + comp = (entry = queue[i]).item.target; + + + + + if (!comp.container.isDetachedBody) { + components.push(comp); + + if (entry.options) { + me.invalidateData[comp.id] = entry.options; + } + } + } + + me.invalidate(components, null); + } + }, + + flushLayouts: function (queueName, methodName, dontClear) { + var me = this, + layouts = dontClear ? me[queueName].items : me[queueName].clear(), + length = layouts.length, + i, layout; + + if (length) { + for (i = 0; i < length; ++i) { + layout = layouts[i]; + if (!layout.running) { + me.callLayout(layout, methodName); + } + } + me.currentLayout = null; + } + }, + + + getCmp: function (cmp) { + return this.getItem(cmp, cmp.el); + }, + + + getEl: function (parent, el) { + var item = this.getItem(el, el); + + if (!item.parent) { + item.parent = parent; + + + + + if (parent.children.length) { + parent.children.push(item); + } else { + parent.children = [ item ]; + } + } + + return item; + }, + + getItem: function (target, el) { + var id = el.id, + items = this.items, + item = items[id] || + (items[id] = new Ext.layout.ContextItem({ + context: this, + target: target, + el: el + })); + + return item; + }, + + handleFailure: function () { + + + + var layouts = this.layouts, + layout, key; + + Ext.failedLayouts = (Ext.failedLayouts || 0) + 1; + + for (key in layouts) { + layout = layouts[key]; + + if (layouts.hasOwnProperty(key)) { + layout.running = false; + layout.ownerContext = null; + } + } + + }, + + + invalidate: function (components, full) { + var me = this, + isArray = !components.isComponent, + containerLayoutDone, + firstTime, i, comp, item, items, length, componentLayout, layout, + invalidateOptions, token; + + for (i = 0, length = isArray ? components.length : 1; i < length; ++i) { + comp = isArray ? components[i] : components; + + if (comp.rendered && !comp.hidden) { + item = me.getCmp(comp); + + + + + + + + componentLayout = comp.componentLayout; + firstTime = !componentLayout.ownerContext; + layout = (comp.isContainer && !comp.collapsed) ? comp.layout : null; + + + invalidateOptions = me.invalidateData[item.id]; + delete me.invalidateData[item.id]; + + + + + + + + token = item.init(full, invalidateOptions); + + if (invalidateOptions) { + me.processInvalidate(invalidateOptions, item, 'before'); + } + + + + + if (componentLayout.beforeLayoutCycle) { + componentLayout.beforeLayoutCycle(item); + } + + if (layout && layout.beforeLayoutCycle) { + + + + + layout.beforeLayoutCycle(item); + } + + + + token = item.initContinue(token); + + + + containerLayoutDone = true; + + + + + + if (componentLayout.getLayoutItems) { + componentLayout.renderChildren(); + + items = componentLayout.getLayoutItems(); + if (items.length) { + me.invalidate(items, true); + } + } + + if (layout) { + containerLayoutDone = false; + layout.renderChildren(); + + items = layout.getVisibleItems(); + if (items.length) { + me.invalidate(items, true); + } + } + + + + item.initDone(containerLayoutDone); + + + + me.resetLayout(componentLayout, item, firstTime); + if (layout) { + me.resetLayout(layout, item, firstTime); + } + + + + + item.initAnimation(); + + if (invalidateOptions) { + me.processInvalidate(invalidateOptions, item, 'after'); + } + } + } + + me.currentLayout = null; + }, + + layoutDone: function (layout) { + var ownerContext = layout.ownerContext; + + layout.running = false; + + + if (layout.isComponentLayout) { + if (ownerContext.measuresBox) { + ownerContext.onBoxMeasured(); + } + + ownerContext.setProp('done', true); + } else { + ownerContext.setProp('containerLayoutDone', true); + } + + --this.remainingLayouts; + ++this.progressCount; + }, + + newQueue: function () { + return new Ext.util.Queue(); + }, + + processInvalidate: function (options, item, name) { + + + if (options[name]) { + var me = this, + currentLayout = me.currentLayout; + + me.currentLayout = options.layout || null; + + options[name](item, options); + + me.currentLayout = currentLayout; + } + }, + + + queueAnimation: function (item) { + this.animateQueue.add(item); + }, + + + queueCompletion: function (layout) { + this.completionQueue.add(layout); + }, + + + queueFinalize: function (layout) { + this.finalizeQueue.add(layout); + }, + + + queueFlush: function (item) { + this.flushQueue.add(item); + }, + + chainFns: function (oldOptions, newOptions, funcName) { + var me = this, + oldLayout = oldOptions.layout, + newLayout = newOptions.layout, + oldFn = oldOptions[funcName], + newFn = newOptions[funcName]; + + + + return function (contextItem) { + var prev = me.currentLayout; + if (oldFn) { + me.currentLayout = oldLayout; + oldFn.call(oldOptions.scope || oldOptions, contextItem, oldOptions); + } + me.currentLayout = newLayout; + newFn.call(newOptions.scope || newOptions, contextItem, newOptions); + me.currentLayout = prev; + }; + }, + + + queueInvalidate: function (item, options) { + var me = this, + newQueue = [], + oldQueue = me.invalidQueue, + index = oldQueue.length, + comp, old, oldComp, oldOptions, oldState; + + if (item.isComponent) { + item = me.getCmp(comp = item); + } else { + comp = item.target; + } + + item.invalid = true; + + + + + while (index--) { + old = oldQueue[index]; + oldComp = old.item.target; + + if (comp.isDescendant(oldComp)) { + return; + } + + if (oldComp == comp) { + + if (!(oldOptions = old.options)) { + old.options = options; + } else if (options) { + if (options.widthModel) { + oldOptions.widthModel = options.widthModel; + } + if (options.heightModel) { + oldOptions.heightModel = options.heightModel; + } + if (!(oldState = oldOptions.state)) { + oldOptions.state = options.state; + } else if (options.state) { + Ext.apply(oldState, options.state); + } + + if (options.before) { + oldOptions.before = me.chainFns(oldOptions, options, 'before'); + } + if (options.after) { + oldOptions.after = me.chainFns(oldOptions, options, 'after'); + } + } + + + return; + } + + if (!oldComp.isDescendant(comp)) { + newQueue.push(old); + } + + } + + + + + newQueue.push({ item: item, options: options }); + + me.invalidQueue = newQueue; + }, + + queueItemLayouts: function (item) { + var comp = item.isComponent ? item : item.target, + layout = comp.componentLayout; + + if (!layout.pending && !layout.invalid && !layout.done) { + this.queueLayout(layout); + } + + layout = comp.layout; + if (layout && !layout.pending && !layout.invalid && !layout.done) { + this.queueLayout(layout); + } + }, + + + queueLayout: function (layout) { + this.layoutQueue.add(layout); + layout.pending = true; + }, + + + removeEl: function (parent, el) { + var id = el.id, + children = parent.children, + items = this.items; + + if(children) { + Ext.Array.remove(children, items[id]); + } + delete items[id]; + }, + + + resetLayout: function (layout, ownerContext, firstTime) { + var me = this; + + me.currentLayout = layout; + + layout.done = false; + layout.pending = true; + layout.firedTriggers = 0; + + me.layoutQueue.add(layout); + + if (firstTime) { + me.layouts[layout.id] = layout; + layout.running = true; + + if (layout.finishedLayout) { + me.finishQueue.add(layout); + } + + + + ++me.remainingLayouts; + ++layout.layoutCount; + + layout.ownerContext = ownerContext; + layout.beginCount = 0; + layout.blockCount = 0; + layout.calcCount = 0; + layout.triggerCount = 0; + + if (!layout.initialized) { + layout.initLayout(); + } + + layout.beginLayout(ownerContext); + } else { + ++layout.beginCount; + + if (!layout.running) { + + ++me.remainingLayouts; + layout.running = true; + + if (layout.isComponentLayout) { + + + + ownerContext.unsetProp('done'); + } + + + me.completionQueue.remove(layout); + me.finalizeQueue.remove(layout); + } + } + + layout.beginLayoutCycle(ownerContext, firstTime); + }, + + + run: function () { + var me = this, + flushed = false, + watchDog = 100; + + me.flushInvalidates(); + + me.state = 1; + me.totalCount = me.layoutQueue.getCount(); + + + + + + + + me.flush(); + + + while ((me.remainingLayouts || me.invalidQueue.length) && watchDog--) { + if (me.invalidQueue.length) { + me.flushInvalidates(); + } + + + if (me.runCycle()) { + flushed = false; + + } else if (!flushed) { + + + me.flush(); + flushed = true; + + me.flushLayouts('completionQueue', 'completeLayout'); + } else if (!me.invalidQueue.length) { + + me.state = 2; + break; + } + + if (!(me.remainingLayouts || me.invalidQueue.length)) { + me.flush(); + me.flushLayouts('completionQueue', 'completeLayout'); + me.flushLayouts('finalizeQueue', 'finalizeLayout'); + } + } + + return me.runComplete(); + }, + + runComplete: function () { + var me = this; + + me.state = 2; + + if (me.remainingLayouts) { + me.handleFailure(); + return false; + } + + me.flush(); + + + me.flushLayouts('finishQueue', 'finishedLayout', true); + + + me.flushLayouts('finishQueue', 'notifyOwner'); + + me.flush(); + + me.flushAnimations(); + + return true; + }, + + + runCycle: function () { + var me = this, + layouts = me.layoutQueue.clear(), + length = layouts.length, + i; + + ++me.cycleCount; + + + + me.progressCount = 0; + + for (i = 0; i < length; ++i) { + me.runLayout(me.currentLayout = layouts[i]); + } + + me.currentLayout = null; + + return me.progressCount > 0; + }, + + + runLayout: function (layout) { + var me = this, + ownerContext = me.getCmp(layout.owner); + + layout.pending = false; + + if (ownerContext.state.blocks) { + return; + } + + + + + + layout.done = true; + + ++layout.calcCount; + ++me.calcCount; + + layout.calculate(ownerContext); + + if (layout.done) { + me.layoutDone(layout); + + if (layout.completeLayout) { + me.queueCompletion(layout); + } + if (layout.finalizeLayout) { + me.queueFinalize(layout); + } + } else if (!layout.pending && !layout.invalid && !(layout.blockCount + layout.triggerCount - layout.firedTriggers)) { + + + me.queueLayout(layout); + } + }, + + + setItemSize: function(item, width, height) { + var items = item, + len = 1, + contextItem, i; + + + + + + + + if (item.isComposite) { + items = item.elements; + len = items.length; + item = items[0]; + } else if (!item.dom && !item.el) { + len = items.length; + item = items[0]; + } + + + for (i = 0; i < len; ) { + contextItem = this.get(item); + contextItem.setSize(width, height); + + item = items[++i]; + } + } +}); + + + + + + + + + + + + + + +Ext.define('Ext.layout.component.Body', { + + + + alias: ['layout.body'], + + extend: Ext.layout.component.Auto , + + + + type: 'body', + + beginLayout: function (ownerContext) { + this.callParent(arguments); + + ownerContext.bodyContext = ownerContext.getEl('body'); + }, + + beginLayoutCycle: function(ownerContext, firstCycle){ + var me = this, + lastWidthModel = me.lastWidthModel, + lastHeightModel = me.lastHeightModel, + body = me.owner.body; + + me.callParent(arguments); + + if (lastWidthModel && lastWidthModel.fixed && ownerContext.widthModel.shrinkWrap) { + body.setWidth(null); + } + + if (lastHeightModel && lastHeightModel.fixed && ownerContext.heightModel.shrinkWrap) { + body.setHeight(null); + } + }, + + + + + + + + + calculateOwnerHeightFromContentHeight: function (ownerContext, contentHeight) { + var height = this.callParent(arguments); + + if (ownerContext.targetContext != ownerContext) { + height += ownerContext.getPaddingInfo().height; + } + + return height; + }, + + calculateOwnerWidthFromContentWidth: function (ownerContext, contentWidth) { + var width = this.callParent(arguments); + + if (ownerContext.targetContext != ownerContext) { + width += ownerContext.getPaddingInfo().width; + } + + return width; + }, + + measureContentWidth: function (ownerContext) { + return ownerContext.bodyContext.setWidth(ownerContext.bodyContext.el.dom.offsetWidth, false); + }, + + measureContentHeight: function (ownerContext) { + return ownerContext.bodyContext.setHeight(ownerContext.bodyContext.el.dom.offsetHeight, false); + }, + + publishInnerHeight: function (ownerContext, height) { + var innerHeight = height - ownerContext.getFrameInfo().height, + targetContext = ownerContext.targetContext; + + if (targetContext != ownerContext) { + innerHeight -= ownerContext.getPaddingInfo().height; + } + + + return ownerContext.bodyContext.setHeight(innerHeight, !ownerContext.heightModel.natural); + }, + + publishInnerWidth: function (ownerContext, width) { + var innerWidth = width - ownerContext.getFrameInfo().width, + targetContext = ownerContext.targetContext; + + if (targetContext != ownerContext) { + innerWidth -= ownerContext.getPaddingInfo().width; + } + + ownerContext.bodyContext.setWidth(innerWidth, !ownerContext.widthModel.natural); + } +}); + + +Ext.define('Ext.layout.component.FieldSet', { + extend: Ext.layout.component.Body , + alias: ['layout.fieldset'], + + type: 'fieldset', + + defaultCollapsedWidth: 100, + + beforeLayoutCycle: function (ownerContext) { + if (ownerContext.target.collapsed) { + ownerContext.heightModel = this.sizeModels.shrinkWrap; + } + }, + + beginLayoutCycle: function (ownerContext) { + var target = ownerContext.target, + lastSize; + + this.callParent(arguments); + + + + + if (target.collapsed) { + ownerContext.setContentHeight(0); + + + ownerContext.restoreMinHeight = target.minHeight; + delete target.minHeight; + + + + + if (ownerContext.widthModel.shrinkWrap) { + lastSize = target.lastComponentSize; + ownerContext.setContentWidth((lastSize && lastSize.contentWidth) || this.defaultCollapsedWidth); + } + } + }, + + finishedLayout: function(ownerContext) { + var owner = this.owner, + restore = ownerContext.restoreMinHeight; + + this.callParent(arguments); + if (restore) { + owner.minHeight = restore; + } + }, + + calculateOwnerHeightFromContentHeight: function (ownerContext, contentHeight) { + var border = ownerContext.getBorderInfo(), + legend = ownerContext.target.legend; + + + + return ownerContext.getProp('contentHeight') + + ownerContext.getPaddingInfo().height + + + ((Ext.isIEQuirks || Ext.isIE8m) ? + ownerContext.bodyContext.getPaddingInfo().top : 0) + + (legend ? legend.getHeight() : border.top) + + border.bottom; + }, + + publishInnerHeight: function (ownerContext, height) { + + + + var legend = ownerContext.target.legend; + if (legend) { + height -= legend.getHeight(); + } + this.callParent([ownerContext, height]); + }, + + getLayoutItems : function() { + var legend = this.owner.legend; + return legend ? [legend] : []; + } +}); + + +Ext.define('Ext.layout.component.field.Slider', { + + + + alias: ['layout.sliderfield'], + + extend: Ext.layout.component.field.Field , + + + + type: 'sliderfield', + + beginLayout: function(ownerContext) { + this.callParent(arguments); + + ownerContext.endElContext = ownerContext.getEl('endEl'); + ownerContext.innerElContext = ownerContext.getEl('innerEl'); + ownerContext.bodyElContext = ownerContext.getEl('bodyEl'); + }, + + publishInnerHeight: function (ownerContext, height) { + var innerHeight = height - this.measureLabelErrorHeight(ownerContext), + endElPad, + inputPad; + if (this.owner.vertical) { + endElPad = ownerContext.endElContext.getPaddingInfo(); + inputPad = ownerContext.inputContext.getPaddingInfo(); + ownerContext.innerElContext.setHeight(innerHeight - inputPad.height - endElPad.height); + } else { + ownerContext.bodyElContext.setHeight(innerHeight); + } + }, + + publishInnerWidth: function (ownerContext, width) { + if (!this.owner.vertical) { + var endElPad = ownerContext.endElContext.getPaddingInfo(), + inputPad = ownerContext.inputContext.getPaddingInfo(); + + ownerContext.innerElContext.setWidth(width - inputPad.left - endElPad.right - ownerContext.labelContext.getProp('width')); + } + }, + + beginLayoutFixed: function(ownerContext, width, suffix) { + var me = this, + ieInputWidthAdjustment = me.ieInputWidthAdjustment; + + if (ieInputWidthAdjustment) { + + + me.owner.bodyEl.setStyle('padding-right', ieInputWidthAdjustment + 'px'); + } + + me.callParent(arguments); + } +}); + + +Ext.define('Ext.layout.container.Absolute', { + + + + alias: 'layout.absolute', + extend: Ext.layout.container.Anchor , + alternateClassName: 'Ext.layout.AbsoluteLayout', + + + + targetCls: Ext.baseCSSPrefix + 'abs-layout-ct', + itemCls: Ext.baseCSSPrefix + 'abs-layout-item', + + + ignoreOnContentChange: true, + + type: 'absolute', + + + adjustWidthAnchor: function(value, childContext) { + var padding = this.targetPadding, + x = childContext.getStyle('left'); + + return value - x + padding.left; + }, + + + adjustHeightAnchor: function(value, childContext) { + var padding = this.targetPadding, + y = childContext.getStyle('top'); + + return value - y + padding.top; + }, + + isItemLayoutRoot: function (item) { + return this.ignoreOnContentChange || this.callParent(arguments); + }, + + isItemShrinkWrap: function (item) { + return true; + }, + + beginLayout: function (ownerContext) { + var me = this, + target = me.getTarget(); + + me.callParent(arguments); + + + if (target.dom !== document.body) { + target.position(); + } + + me.targetPadding = ownerContext.targetContext.getPaddingInfo(); + }, + + isItemBoxParent: function (itemContext) { + return true; + }, + + onContentChange: function () { + if (this.ignoreOnContentChange) { + return false; + } + return this.callParent(arguments); + }, + + calculateContentSize: function (ownerContext, dimensions) { + var me = this, + containerDimensions = (dimensions || 0) | + ((ownerContext.widthModel.shrinkWrap ? 1 : 0) | + (ownerContext.heightModel.shrinkWrap ? 2 : 0)), + calcWidth = (containerDimensions & 1) || undefined, + calcHeight = (containerDimensions & 2) || undefined, + childItems = ownerContext.childItems, + length = childItems.length, + contentHeight = 0, + contentWidth = 0, + needed = 0, + props = ownerContext.props, + targetPadding, child, childContext, height, i, margins, width; + + if (calcWidth) { + if (isNaN(props.contentWidth)) { + ++needed; + } else { + calcWidth = undefined; + } + } + if (calcHeight) { + if (isNaN(props.contentHeight)) { + ++needed; + } else { + calcHeight = undefined; + } + } + + if (needed) { + for (i = 0; i < length; ++i) { + childContext = childItems[i]; + child = childContext.target; + height = calcHeight && childContext.getProp('height'); + width = calcWidth && childContext.getProp('width'); + margins = childContext.getMarginInfo(); + + height += margins.bottom; + width += margins.right; + + contentHeight = Math.max(contentHeight, (child.y || 0) + height); + contentWidth = Math.max(contentWidth, (child.x || 0) + width); + + if (isNaN(contentHeight) && isNaN(contentWidth)) { + me.done = false; + return; + } + } + + if (calcWidth || calcHeight) { + targetPadding = ownerContext.targetContext.getPaddingInfo(); + } + if (calcWidth && !ownerContext.setContentWidth(contentWidth + targetPadding.width)) { + me.done = false; + } + if (calcHeight && !ownerContext.setContentHeight(contentHeight + targetPadding.height)) { + me.done = false; + } + + + } + } +}); + + +Ext.define('Ext.layout.container.Accordion', { + extend: Ext.layout.container.VBox , + alias: ['layout.accordion'], + alternateClassName: 'Ext.layout.AccordionLayout', + + targetCls: Ext.baseCSSPrefix + 'accordion-layout-ct', + itemCls: [Ext.baseCSSPrefix + 'box-item', Ext.baseCSSPrefix + 'accordion-item'], + + align: 'stretch', + + + fill : true, + + + + + titleCollapse : true, + + + hideCollapseTool : false, + + + collapseFirst : undefined, + + + animate : true, + + activeOnTop : false, + + multi: false, + + defaultAnimatePolicy: { + y: true, + height: true + }, + + constructor: function() { + var me = this; + + me.callParent(arguments); + + if (!me.multi && me.animate) { + me.animatePolicy = Ext.apply({}, me.defaultAnimatePolicy); + } else { + me.animatePolicy = null; + } + }, + + beforeRenderItems: function (items) { + var me = this, + ln = items.length, + i = 0, + owner = me.owner, + collapseFirst = me.collapseFirst, + hasCollapseFirst = Ext.isDefined(collapseFirst), + expandedItem = me.getExpanded(true)[0], + multi = me.multi, + comp; + + for (; i < ln; i++) { + comp = items[i]; + if (!comp.rendered) { + + if (!multi || comp.collapsible !== false) { + comp.collapsible = true; + } + + if (comp.collapsible) { + if (hasCollapseFirst) { + comp.collapseFirst = collapseFirst; + } + if (me.hideCollapseTool) { + comp.hideCollapseTool = me.hideCollapseTool; + comp.titleCollapse = true; + } else if (me.titleCollapse && comp.titleCollapse === undefined) { + + + comp.titleCollapse = me.titleCollapse; + } + } + + delete comp.hideHeader; + delete comp.width; + comp.title = comp.title || ' '; + comp.addBodyCls(Ext.baseCSSPrefix + 'accordion-body'); + + + + + if (!multi) { + if (expandedItem) { + comp.collapsed = expandedItem !== comp; + } else if (comp.hasOwnProperty('collapsed') && comp.collapsed === false) { + expandedItem = comp; + } else { + comp.collapsed = true; + } + + + owner.mon(comp, { + show: me.onComponentShow, + beforeexpand: me.onComponentExpand, + beforecollapse: me.onComponentCollapse, + scope: me + }); + } + + + owner.mon(comp, 'beforecollapse', me.onComponentCollapse, me); + comp.headerOverCls = Ext.baseCSSPrefix + 'accordion-hd-over'; + } + } + + + if (!multi) { + if (!expandedItem) { + if (ln) { + items[0].collapsed = false; + } + } else if (me.activeOnTop) { + expandedItem.collapsed = false; + me.configureItem(expandedItem); + if (owner.items.indexOf(expandedItem) > 0) { + owner.insert(0, expandedItem); + } + } + } + }, + + getItemsRenderTree: function(items) { + this.beforeRenderItems(items); + return this.callParent(arguments); + }, + + renderItems : function(items, target) { + this.beforeRenderItems(items); + + this.callParent(arguments); + }, + + configureItem: function(item) { + this.callParent(arguments); + + + + item.animCollapse = item.border = false; + + + if (this.fill) { + item.flex = 1; + } + }, + + beginLayout: function (ownerContext) { + this.callParent(arguments); + this.updatePanelClasses(ownerContext); + }, + + updatePanelClasses: function(ownerContext) { + var children = ownerContext.visibleItems, + ln = children.length, + siblingCollapsed = true, + i, child, header; + + for (i = 0; i < ln; i++) { + child = children[i]; + header = child.header; + header.addCls(Ext.baseCSSPrefix + 'accordion-hd'); + + if (siblingCollapsed) { + header.removeCls(Ext.baseCSSPrefix + 'accordion-hd-sibling-expanded'); + } else { + header.addCls(Ext.baseCSSPrefix + 'accordion-hd-sibling-expanded'); + } + + if (i + 1 == ln && child.collapsed) { + header.addCls(Ext.baseCSSPrefix + 'accordion-hd-last-collapsed'); + } else { + header.removeCls(Ext.baseCSSPrefix + 'accordion-hd-last-collapsed'); + } + + siblingCollapsed = child.collapsed; + } + }, + + + + + onComponentExpand: function(toExpand) { + var me = this, + owner = me.owner, + multi = me.multi, + animate = me.animate, + moveToTop = !multi && !me.animate && me.activeOnTop, + expanded, + expandedCount, i, + previousValue; + + if (!me.processing) { + me.processing = true; + previousValue = owner.deferLayouts; + owner.deferLayouts = true; + expanded = multi ? [] : me.getExpanded(); + expandedCount = expanded.length; + + + for (i = 0; i < expandedCount; i++) { + expanded[i].collapse(); + } + + if (moveToTop) { + + Ext.suspendLayouts(); + owner.insert(0, toExpand); + Ext.resumeLayouts(); + } + + owner.deferLayouts = previousValue; + me.processing = false; + } + }, + + onComponentCollapse: function(comp) { + var me = this, + owner = me.owner, + toExpand, + expanded, + previousValue; + + if (me.owner.items.getCount() === 1) { + + return false; + } + + if (!me.processing) { + me.processing = true; + previousValue = owner.deferLayouts; + owner.deferLayouts = true; + toExpand = comp.next() || comp.prev(); + + + + if (me.multi) { + expanded = me.getExpanded(); + + + + if (expanded.length === 1) { + toExpand.expand(); + } + + } else if (toExpand) { + toExpand.expand(); + } + owner.deferLayouts = previousValue; + me.processing = false; + } + }, + + onComponentShow: function(comp) { + + this.onComponentExpand(comp); + }, + + getExpanded: function(explicitCheck){ + var items = this.owner.items.items, + len = items.length, + i = 0, + out = [], + add, + item; + + for (; i < len; ++i) { + item = items[i]; + if (explicitCheck) { + add = item.hasOwnProperty('collapsed') && item.collapsed === false; + } else { + add = !item.collapsed; + } + if (add) { + out.push(item); + } + } + return out; + + } +}); + + +Ext.define('Ext.resizer.Splitter', { + extend: Ext.Component , + + + alias: 'widget.splitter', + + childEls: [ + 'collapseEl' + ], + + renderTpl: [ + '', + '
     ', + '
    ', + '
    ' + ], + + baseCls: Ext.baseCSSPrefix + 'splitter', + collapsedClsInternal: Ext.baseCSSPrefix + 'splitter-collapsed', + + + canResize: true, + + + collapsible: false, + + + + + collapseOnDblClick: true, + + + defaultSplitMin: 40, + + + defaultSplitMax: 1000, + + + + + collapseTarget: 'next', + + + + horizontal: false, + vertical: false, + + + size: 5, + + + getTrackerConfig: function () { + return { + xclass: 'Ext.resizer.SplitterTracker', + el: this.el, + splitter: this + }; + }, + + beforeRender: function() { + var me = this, + target = me.getCollapseTarget(); + + me.callParent(); + + if (target.collapsed) { + me.addCls(me.collapsedClsInternal); + } + if (!me.canResize) { + me.addCls(me.baseCls + '-noresize'); + } + + Ext.applyIf(me.renderData, { + collapseDir: me.getCollapseDirection(), + collapsible: me.collapsible || target.collapsible + }); + + me.protoEl.unselectable(); + }, + + onRender: function() { + var me = this, + collapseEl; + + me.callParent(arguments); + + + if (me.performCollapse !== false) { + if (me.renderData.collapsible) { + me.mon(me.collapseEl, 'click', me.toggleTargetCmp, me); + } + if (me.collapseOnDblClick) { + me.mon(me.el, 'dblclick', me.toggleTargetCmp, me); + } + } + + + me.mon(me.getCollapseTarget(), { + collapse: me.onTargetCollapse, + expand: me.onTargetExpand, + beforeexpand: me.onBeforeTargetExpand, + beforecollapse: me.onBeforeTargetCollapse, + scope: me + }); + + if (me.canResize) { + me.tracker = Ext.create(me.getTrackerConfig()); + + me.relayEvents(me.tracker, [ 'beforedragstart', 'dragstart', 'dragend' ]); + } + + collapseEl = me.collapseEl; + if (collapseEl) { + collapseEl.lastCollapseDirCls = me.collapseDirProps[me.collapseDirection].cls; + } + }, + + getCollapseDirection: function() { + var me = this, + dir = me.collapseDirection, + collapseTarget, idx, items, type; + + if (!dir) { + collapseTarget = me.collapseTarget; + if (collapseTarget.isComponent) { + dir = collapseTarget.collapseDirection; + } + + if (!dir) { + + + + + + + + type = me.ownerCt.layout.type; + if (collapseTarget.isComponent) { + items = me.ownerCt.items; + idx = Number(items.indexOf(collapseTarget) === items.indexOf(me) - 1) << 1 | Number(type === 'hbox'); + } else { + idx = Number(me.collapseTarget === 'prev') << 1 | Number(type === 'hbox'); + } + + + dir = ['bottom', 'right', 'top', 'left'][idx]; + } + + me.collapseDirection = dir; + } + + me.setOrientation((dir === 'top' || dir === 'bottom') ? 'horizontal' : 'vertical'); + + return dir; + }, + + getCollapseTarget: function() { + var me = this; + + return me.collapseTarget.isComponent ? me.collapseTarget + : me.collapseTarget === 'prev' ? me.previousSibling() : me.nextSibling(); + }, + + setCollapseEl: function(display){ + var el = this.collapseEl; + if (el) { + el.setDisplayed(display); + } + }, + + onBeforeTargetExpand: function(target) { + this.setCollapseEl('none'); + }, + + onBeforeTargetCollapse: function(){ + this.setCollapseEl('none'); + }, + + onTargetCollapse: function(target) { + this.el.addCls([this.collapsedClsInternal, this.collapsedCls]); + this.setCollapseEl(''); + }, + + onTargetExpand: function(target) { + this.el.removeCls([this.collapsedClsInternal, this.collapsedCls]); + this.setCollapseEl(''); + }, + + collapseDirProps: { + top: { + cls: Ext.baseCSSPrefix + 'layout-split-top' + }, + right: { + cls: Ext.baseCSSPrefix + 'layout-split-right' + }, + bottom: { + cls: Ext.baseCSSPrefix + 'layout-split-bottom' + }, + left: { + cls: Ext.baseCSSPrefix + 'layout-split-left' + } + }, + + orientationProps: { + horizontal: { + opposite: 'vertical', + fixedAxis: 'height', + stretchedAxis: 'width' + }, + vertical: { + opposite: 'horizontal', + fixedAxis: 'width', + stretchedAxis: 'height' + } + }, + + applyCollapseDirection: function () { + var me = this, + collapseEl = me.collapseEl, + collapseDirProps = me.collapseDirProps[me.collapseDirection], + cls; + + if (collapseEl) { + cls = collapseEl.lastCollapseDirCls; + if (cls) { + collapseEl.removeCls(cls); + } + + collapseEl.addCls(collapseEl.lastCollapseDirCls = collapseDirProps.cls); + } + }, + + applyOrientation: function () { + var me = this, + orientation = me.orientation, + orientationProps = me.orientationProps[orientation], + defaultSize = me.size, + fixedSizeProp = orientationProps.fixedAxis, + stretchSizeProp = orientationProps.stretchedAxis, + cls = me.baseCls + '-'; + + me[orientation] = true; + me[orientationProps.opposite] = false; + + if (!me.hasOwnProperty(fixedSizeProp) || me[fixedSizeProp] === '100%') { + me[fixedSizeProp] = defaultSize; + } + if (!me.hasOwnProperty(stretchSizeProp) || me[stretchSizeProp] === defaultSize) { + me[stretchSizeProp] = '100%'; + } + + me.removeCls(cls + orientationProps.opposite); + me.addCls(cls + orientation); + }, + + setOrientation: function (orientation) { + var me = this; + + if (me.orientation !== orientation) { + me.orientation = orientation; + me.applyOrientation(); + } + }, + + updateOrientation: function () { + delete this.collapseDirection; + this.getCollapseDirection(); + this.applyCollapseDirection(); + }, + + toggleTargetCmp: function(e, t) { + var cmp = this.getCollapseTarget(), + placeholder = cmp.placeholder, + toggle; + + + if (Ext.isFunction(cmp.expand) && Ext.isFunction(cmp.collapse)) { + if (placeholder && !placeholder.hidden) { + toggle = true; + } else { + toggle = !cmp.hidden; + } + + if (toggle) { + if (cmp.collapsed) { + cmp.expand(); + } else if (cmp.collapseDirection) { + cmp.collapse(); + } else { + cmp.collapse(this.renderData.collapseDir); + } + } + } + }, + + + setSize: function() { + var me = this; + me.callParent(arguments); + if (Ext.isIE && me.el) { + me.el.repaint(); + } + }, + + beforeDestroy: function(){ + Ext.destroy(this.tracker); + this.callParent(); + } +}); + + +Ext.define('Ext.resizer.BorderSplitter', { + extend: Ext.resizer.Splitter , + + + + alias: 'widget.bordersplitter', + + + collapseTarget: null, + + getTrackerConfig: function () { + var trackerConfig = this.callParent(); + + trackerConfig.xclass = 'Ext.resizer.BorderSplitterTracker'; + + return trackerConfig; + } +}); + + +Ext.define('Ext.layout.container.Border', { + + extend: Ext.layout.container.Container , + alias: 'layout.border', + alternateClassName: 'Ext.layout.BorderLayout', + + + + + + + + + + + targetCls: Ext.baseCSSPrefix + 'border-layout-ct', + + itemCls: [Ext.baseCSSPrefix + 'border-item', Ext.baseCSSPrefix + 'box-item'], + + type: 'border', + + isBorderLayout: true, + + + + + + + padding: undefined, + + percentageRe: /(\d+)%/, + + horzMarginProp: 'left', + padOnContainerProp: 'left', + padNotOnContainerProp: 'right', + + + axisProps: { + horz: { + borderBegin: 'west', + borderEnd: 'east', + horizontal: true, + posProp: 'x', + sizeProp: 'width', + sizePropCap: 'Width' + }, + vert: { + borderBegin: 'north', + borderEnd: 'south', + horizontal: false, + posProp: 'y', + sizeProp: 'height', + sizePropCap: 'Height' + } + }, + + + centerRegion: null, + + manageMargins: true, + + panelCollapseAnimate: true, + + panelCollapseMode: 'placeholder', + + + regionWeights: { + north: 20, + south: 10, + center: 0, + west: -10, + east: -20 + }, + + + + + + beginAxis: function (ownerContext, regions, name) { + var me = this, + props = me.axisProps[name], + isVert = !props.horizontal, + sizeProp = props.sizeProp, + totalFlex = 0, + childItems = ownerContext.childItems, + length = childItems.length, + center, i, childContext, centerFlex, comp, region, match, size, type, target, placeholder; + + for (i = 0; i < length; ++i) { + childContext = childItems[i]; + comp = childContext.target; + + childContext.layoutPos = {}; + + if (comp.region) { + childContext.region = region = comp.region; + + childContext.isCenter = comp.isCenter; + childContext.isHorz = comp.isHorz; + childContext.isVert = comp.isVert; + + childContext.weight = comp.weight || me.regionWeights[region] || 0; + regions[comp.id] = childContext; + + if (comp.isCenter) { + center = childContext; + centerFlex = comp.flex; + ownerContext.centerRegion = center; + + continue; + } + + if (isVert !== childContext.isVert) { + continue; + } + + + + childContext.reverseWeighting = (region == props.borderEnd); + + size = comp[sizeProp]; + type = typeof size; + + if (!comp.collapsed) { + if (type == 'string' && (match = me.percentageRe.exec(size))) { + childContext.percentage = parseInt(match[1], 10); + } else if (comp.flex) { + totalFlex += childContext.flex = comp.flex; + } + } + } + } + + + if (center) { + target = center.target; + + if ((placeholder = target.placeholderFor)) { + if (!centerFlex && isVert === placeholder.collapsedVertical()) { + + centerFlex = 0; + center.collapseAxis = name; + } + } else if (target.collapsed && (isVert === target.collapsedVertical())) { + + centerFlex = 0; + center.collapseAxis = name; + } + } + + if (centerFlex == null) { + + centerFlex = 1; + } + + totalFlex += centerFlex; + + return Ext.apply({ + before : isVert ? 'top' : 'left', + totalFlex : totalFlex + }, props); + }, + + beginLayout: function (ownerContext) { + var me = this, + items = me.getLayoutItems(), + pad = me.padding, + type = typeof pad, + padOnContainer = false, + childContext, item, length, i, regions, collapseTarget, + doShow, hidden, region; + + + if (pad) { + if (type == 'string' || type == 'number') { + pad = Ext.util.Format.parseBox(pad); + } + } else { + pad = ownerContext.getEl('getTargetEl').getPaddingInfo(); + padOnContainer = true; + } + ownerContext.outerPad = pad; + ownerContext.padOnContainer = padOnContainer; + + for (i = 0, length = items.length; i < length; ++i) { + item = items[i]; + collapseTarget = me.getSplitterTarget(item); + if (collapseTarget) { + doShow = undefined; + hidden = !!item.hidden; + if (!collapseTarget.split) { + if (collapseTarget.isCollapsingOrExpanding) { + doShow = !!collapseTarget.collapsed; + } + } else if (hidden !== collapseTarget.hidden) { + doShow = !collapseTarget.hidden; + } + + if (doShow) { + item.show(); + } else if (doShow === false) { + item.hide(); + } + } + } + + + + + me.callParent(arguments); + + items = ownerContext.childItems; + length = items.length; + regions = {}; + + ownerContext.borderAxisHorz = me.beginAxis(ownerContext, regions, 'horz'); + ownerContext.borderAxisVert = me.beginAxis(ownerContext, regions, 'vert'); + + + + + for (i = 0; i < length; ++i) { + childContext = items[i]; + collapseTarget = me.getSplitterTarget(childContext.target); + + if (collapseTarget) { + region = regions[collapseTarget.id] + if (!region) { + + + + region = ownerContext.getEl(collapseTarget.el, me); + region.region = collapseTarget.region; + } + childContext.collapseTarget = collapseTarget = region; + childContext.weight = collapseTarget.weight; + childContext.reverseWeighting = collapseTarget.reverseWeighting; + collapseTarget.splitter = childContext; + childContext.isHorz = collapseTarget.isHorz; + childContext.isVert = collapseTarget.isVert; + } + } + + + me.sortWeightedItems(items, 'reverseWeighting'); + me.setupSplitterNeighbors(items); + }, + + calculate: function (ownerContext) { + var me = this, + containerSize = me.getContainerSize(ownerContext), + childItems = ownerContext.childItems, + length = childItems.length, + horz = ownerContext.borderAxisHorz, + vert = ownerContext.borderAxisVert, + pad = ownerContext.outerPad, + padOnContainer = ownerContext.padOnContainer, + i, childContext, childMargins, size, horzPercentTotal, vertPercentTotal; + + horz.begin = pad[me.padOnContainerProp]; + vert.begin = pad.top; + + + + horzPercentTotal = horz.end = horz.flexSpace = containerSize.width + (padOnContainer ? pad[me.padOnContainerProp] : -pad[me.padNotOnContainerProp]); + vertPercentTotal = vert.end = vert.flexSpace = containerSize.height + (padOnContainer ? pad.top : -pad.bottom); + + + + for (i = 0; i < length; ++i) { + childContext = childItems[i]; + childMargins = childContext.getMarginInfo(); + + + if (childContext.isHorz || childContext.isCenter) { + horz.addUnflexed(childMargins.width); + horzPercentTotal -= childMargins.width; + } + + if (childContext.isVert || childContext.isCenter) { + vert.addUnflexed(childMargins.height); + vertPercentTotal -= childMargins.height; + } + + + if (!childContext.flex && !childContext.percentage) { + if (childContext.isHorz || (childContext.isCenter && childContext.collapseAxis === 'horz')) { + size = childContext.getProp('width'); + + horz.addUnflexed(size); + + + if (childContext.collapseTarget) { + horzPercentTotal -= size; + } + } else if (childContext.isVert || (childContext.isCenter && childContext.collapseAxis === 'vert')) { + size = childContext.getProp('height'); + + vert.addUnflexed(size); + + + if (childContext.collapseTarget) { + vertPercentTotal -= size; + } + } + + } + } + + for (i = 0; i < length; ++i) { + childContext = childItems[i]; + childMargins = childContext.getMarginInfo(); + + + if (childContext.percentage) { + if (childContext.isHorz) { + size = Math.ceil(horzPercentTotal * childContext.percentage / 100); + size = childContext.setWidth(size); + horz.addUnflexed(size); + } else if (childContext.isVert) { + size = Math.ceil(vertPercentTotal * childContext.percentage / 100); + size = childContext.setHeight(size); + vert.addUnflexed(size); + } + + } + } + + + + + + for (i = 0; i < length; ++i) { + childContext = childItems[i]; + + if (!childContext.isCenter) { + me.calculateChildAxis(childContext, horz); + me.calculateChildAxis(childContext, vert); + } + } + + + + + if (me.finishAxis(ownerContext, vert) + me.finishAxis(ownerContext, horz) < 2) { + me.done = false; + } else { + + + + me.finishPositions(childItems); + } + }, + + + calculateChildAxis: function (childContext, axis) { + var collapseTarget = childContext.collapseTarget, + setSizeMethod = 'set' + axis.sizePropCap, + sizeProp = axis.sizeProp, + childMarginSize = childContext.getMarginInfo()[sizeProp], + region, isBegin, flex, pos, size; + + if (collapseTarget) { + region = collapseTarget.region; + } else { + region = childContext.region; + flex = childContext.flex; + } + + isBegin = region == axis.borderBegin; + + if (!isBegin && region != axis.borderEnd) { + + + childContext[setSizeMethod](axis.end - axis.begin - childMarginSize); + pos = axis.begin; + } else { + if (flex) { + size = Math.ceil(axis.flexSpace * (flex / axis.totalFlex)); + size = childContext[setSizeMethod](size); + } else if (childContext.percentage) { + + size = childContext.peek(sizeProp); + } else { + size = childContext.getProp(sizeProp); + } + + size += childMarginSize; + + if (isBegin) { + pos = axis.begin; + axis.begin += size; + } else { + axis.end = pos = axis.end - size; + } + } + + childContext.layoutPos[axis.posProp] = pos; + }, + + + finishAxis: function (ownerContext, axis) { + var size = axis.end - axis.begin, + center = ownerContext.centerRegion; + + if (center) { + center['set' + axis.sizePropCap](size - center.getMarginInfo()[axis.sizeProp]); + center.layoutPos[axis.posProp] = axis.begin; + } + + return Ext.isNumber(size) ? 1 : 0; + }, + + + finishPositions: function (childItems) { + var length = childItems.length, + index, childContext, + marginProp = this.horzMarginProp; + + for (index = 0; index < length; ++index) { + childContext = childItems[index]; + + childContext.setProp('x', childContext.layoutPos.x + childContext.marginInfo[marginProp]); + childContext.setProp('y', childContext.layoutPos.y + childContext.marginInfo.top); + } + }, + + getLayoutItems: function() { + var owner = this.owner, + ownerItems = (owner && owner.items && owner.items.items) || [], + length = ownerItems.length, + items = [], + i = 0, + ownerItem, placeholderFor; + + for (; i < length; i++) { + ownerItem = ownerItems[i]; + placeholderFor = ownerItem.placeholderFor; + + + + + + + + + + + + + + + + + + + + + + if (ownerItem.hidden || ((!ownerItem.floated || ownerItem.isCollapsingOrExpanding === 2) && + !(placeholderFor && placeholderFor.isCollapsingOrExpanding === 2))) { + items.push(ownerItem); + } + } + + return items; + }, + + getPlaceholder: function (comp) { + return comp.getPlaceholder && comp.getPlaceholder(); + }, + + getSplitterTarget: function (splitter) { + var collapseTarget = splitter.collapseTarget; + + if (collapseTarget && collapseTarget.collapsed) { + return collapseTarget.placeholder || collapseTarget; + } + + return collapseTarget; + }, + + isItemBoxParent: function (itemContext) { + return true; + }, + + isItemShrinkWrap: function (item) { + return true; + }, + + + + + + insertSplitter: function (item, index, hidden, splitterCfg) { + var region = item.region, + splitter = Ext.apply({ + xtype: 'bordersplitter', + collapseTarget: item, + id: item.id + '-splitter', + hidden: hidden, + canResize: item.splitterResize !== false, + splitterFor: item + }, splitterCfg), + at = index + ((region === 'south' || region === 'east') ? 0 : 1); + + if (item.collapseMode === 'mini') { + splitter.collapsedCls = item.collapsedCls; + } + + item.splitter = this.owner.add(at, splitter); + }, + + + onAdd: function (item, index) { + var me = this, + placeholderFor = item.placeholderFor, + region = item.region, + split, + hidden, + cfg; + + me.callParent(arguments); + + if (region) { + Ext.apply(item, me.regionFlags[region]); + + if (item.initBorderRegion) { + + + item.initBorderRegion(); + } + + if (region === 'center') { + me.centerRegion = item; + } else { + split = item.split; + hidden = !!item.hidden; + + if (typeof split === 'object') { + cfg = split; + split = true; + } + + if ((item.isHorz || item.isVert) && (split || item.collapseMode == 'mini')) { + me.insertSplitter(item, index, hidden || !split, cfg); + } + } + + if (!item.hasOwnProperty('collapseMode')) { + item.collapseMode = me.panelCollapseMode; + } + + if (!item.hasOwnProperty('animCollapse')) { + if (item.collapseMode !== 'placeholder') { + + + item.animCollapse = false; + } else { + item.animCollapse = me.panelCollapseAnimate; + } + } + } else if (placeholderFor) { + Ext.apply(item, me.regionFlags[placeholderFor.region]); + item.region = placeholderFor.region; + item.weight = placeholderFor.weight; + } + }, + + onDestroy: function() { + this.centerRegion = null; + this.callParent(); + }, + + onRemove: function (item) { + var me = this, + region = item.region, + splitter = item.splitter; + + if (region) { + if (item.isCenter) { + me.centerRegion = null; + } + + delete item.isCenter; + delete item.isHorz; + delete item.isVert; + + if (splitter) { + me.owner.doRemove(splitter, true); + delete item.splitter; + } + } + + me.callParent(arguments); + }, + + + + + regionMeta: { + center: { splitterDelta: 0 }, + + north: { splitterDelta: 1 }, + south: { splitterDelta: -1 }, + + west: { splitterDelta: 1 }, + east: { splitterDelta: -1 } + }, + + + regionFlags: { + center: { isCenter: true, isHorz: false, isVert: false }, + + north: { isCenter: false, isHorz: false, isVert: true, collapseDirection: 'top' }, + south: { isCenter: false, isHorz: false, isVert: true, collapseDirection: 'bottom' }, + + west: { isCenter: false, isHorz: true, isVert: false, collapseDirection: 'left' }, + east: { isCenter: false, isHorz: true, isVert: false, collapseDirection: 'right' } + }, + + setupSplitterNeighbors: function (items) { + var edgeRegions = { + + + + + }, + length = items.length, + touchedRegions = this.touchedRegions, + i, j, center, count, edge, comp, region, splitter, touched; + + for (i = 0; i < length; ++i) { + comp = items[i].target; + region = comp.region; + + if (comp.isCenter) { + center = comp; + } else if (region) { + touched = touchedRegions[region]; + + for (j = 0, count = touched.length; j < count; ++j) { + edge = edgeRegions[touched[j]]; + if (edge) { + edge.neighbors.push(comp); + } + } + + if (comp.placeholderFor) { + + splitter = comp.placeholderFor.splitter; + } else { + splitter = comp.splitter; + } + if (splitter) { + splitter.neighbors = []; + } + + edgeRegions[region] = splitter; + } + } + + if (center) { + touched = touchedRegions.center; + + for (j = 0, count = touched.length; j < count; ++j) { + edge = edgeRegions[touched[j]]; + if (edge) { + edge.neighbors.push(center); + } + } + } + }, + + + touchedRegions: { + center: [ 'north', 'south', 'east', 'west' ], + + north: [ 'north', 'east', 'west' ], + south: [ 'south', 'east', 'west' ], + east: [ 'east', 'north', 'south' ], + west: [ 'west', 'north', 'south' ] + }, + + sizePolicies: { + vert: { + readsWidth: 0, + readsHeight: 1, + setsWidth: 1, + setsHeight: 0 + }, + horz: { + readsWidth: 1, + readsHeight: 0, + setsWidth: 0, + setsHeight: 1 + }, + flexAll: { + readsWidth: 0, + readsHeight: 0, + setsWidth: 1, + setsHeight: 1 + } + }, + + getItemSizePolicy: function (item) { + var me = this, + policies = this.sizePolicies, + collapseTarget, size, policy, placeholderFor; + + if (item.isCenter) { + placeholderFor = item.placeholderFor; + + if (placeholderFor) { + if (placeholderFor.collapsedVertical()) { + return policies.vert; + } + return policies.horz; + } + if (item.collapsed) { + if (item.collapsedVertical()) { + return policies.vert; + } + return policies.horz; + } + return policies.flexAll; + } + + collapseTarget = item.collapseTarget; + + if (collapseTarget) { + return collapseTarget.isVert ? policies.vert : policies.horz; + } + + if (item.region) { + if (item.isVert) { + size = item.height; + policy = policies.vert; + } else { + size = item.width; + policy = policies.horz; + } + + if (item.flex || (typeof size == 'string' && me.percentageRe.test(size))) { + return policies.flexAll; + } + + return policy; + } + + return me.autoSizePolicy; + } +}, function () { + var methods = { + addUnflexed: function (px) { + this.flexSpace = Math.max(this.flexSpace - px, 0); + } + }, + props = this.prototype.axisProps; + + Ext.apply(props.horz, methods); + Ext.apply(props.vert, methods); +}); + + +Ext.define('Ext.layout.container.Card', { + + + + extend: Ext.layout.container.Fit , + + alternateClassName: 'Ext.layout.CardLayout', + + alias: 'layout.card', + + + + type: 'card', + + hideInactive: true, + + + deferredRender : false, + + getRenderTree: function () { + var me = this, + activeItem = me.getActiveItem(); + + if (activeItem) { + + + if (activeItem.hasListeners.beforeactivate && activeItem.fireEvent('beforeactivate', activeItem) === false) { + + + + + activeItem = me.activeItem = me.owner.activeItem = null; + } + + + else if (activeItem.hasListeners.activate) { + activeItem.on({ + boxready: function() { + activeItem.fireEvent('activate', activeItem); + }, + single: true + }); + } + + if (me.deferredRender) { + if (activeItem) { + return me.getItemsRenderTree([activeItem]); + } + } else { + return me.callParent(arguments); + } + } + }, + + renderChildren: function () { + var me = this, + active = me.getActiveItem(); + + if (!me.deferredRender) { + me.callParent(); + } else if (active) { + + me.renderItems([active], me.getRenderTarget()); + } + }, + + isValidParent : function(item, target, position) { + + + var itemEl = item.el ? item.el.dom : Ext.getDom(item); + return (itemEl && itemEl.parentNode === (target.dom || target)) || false; + }, + + + getActiveItem: function() { + var me = this, + + result = me.parseActiveItem(me.activeItem || (me.owner && me.owner.activeItem)); + + + if (result && me.owner.items.indexOf(result) != -1) { + me.activeItem = result; + } else { + me.activeItem = null; + } + + return me.activeItem; + }, + + + parseActiveItem: function(item) { + if (item && item.isComponent) { + return item; + } else if (typeof item == 'number' || item === undefined) { + return this.getLayoutItems()[item || 0]; + } else { + return this.owner.getComponent(item); + } + }, + + + + configureItem: function(item) { + if (item === this.getActiveItem()) { + item.hidden = false; + } else { + item.hidden = true; + } + this.callParent(arguments); + }, + + onRemove: function(component) { + var me = this; + + if (component === me.activeItem) { + me.activeItem = null; + } + }, + + + getAnimation: function(newCard, owner) { + var newAnim = (newCard || {}).cardSwitchAnimation; + if (newAnim === false) { + return false; + } + return newAnim || owner.cardSwitchAnimation; + }, + + + getNext: function() { + var wrap = arguments[0], + items = this.getLayoutItems(), + index = Ext.Array.indexOf(items, this.activeItem); + + return items[index + 1] || (wrap ? items[0] : false); + }, + + + next: function() { + var anim = arguments[0], + wrap = arguments[1]; + return this.setActiveItem(this.getNext(wrap), anim); + }, + + + getPrev: function() { + var wrap = arguments[0], + items = this.getLayoutItems(), + index = Ext.Array.indexOf(items, this.activeItem); + + return items[index - 1] || (wrap ? items[items.length - 1] : false); + }, + + + prev: function() { + var anim = arguments[0], + wrap = arguments[1]; + return this.setActiveItem(this.getPrev(wrap), anim); + }, + + + setActiveItem: function(newCard) { + var me = this, + owner = me.owner, + oldCard = me.activeItem, + rendered = owner.rendered, + newIndex; + + newCard = me.parseActiveItem(newCard); + newIndex = owner.items.indexOf(newCard); + + + + if (newIndex == -1) { + newIndex = owner.items.items.length; + Ext.suspendLayouts(); + newCard = owner.add(newCard); + Ext.resumeLayouts(); + } + + + if (newCard && oldCard != newCard) { + + if (newCard.fireEvent('beforeactivate', newCard, oldCard) === false) { + return false; + } + if (oldCard && oldCard.fireEvent('beforedeactivate', oldCard, newCard) === false) { + return false; + } + + if (rendered) { + Ext.suspendLayouts(); + + + if (!newCard.rendered) { + me.renderItem(newCard, me.getRenderTarget(), owner.items.length); + } + + if (oldCard) { + if (me.hideInactive) { + oldCard.hide(); + oldCard.hiddenByLayout = true; + } + oldCard.fireEvent('deactivate', oldCard, newCard); + } + + if (newCard.hidden) { + newCard.show(); + } + + + if (!newCard.hidden) { + me.activeItem = newCard; + } + Ext.resumeLayouts(true); + } else { + me.activeItem = newCard; + } + + newCard.fireEvent('activate', newCard, oldCard); + + return me.activeItem; + } + return false; + } +}); + + +Ext.define('Ext.layout.container.Column', { + + extend: Ext.layout.container.Auto , + alias: ['layout.column'], + alternateClassName: 'Ext.layout.ColumnLayout', + + type: 'column', + + itemCls: Ext.baseCSSPrefix + 'column', + + targetCls: Ext.baseCSSPrefix + 'column-layout-ct', + + + columnWidthSizePolicy: { + readsWidth: 0, + readsHeight: 1, + setsWidth: 1, + setsHeight: 0 + }, + + createsInnerCt: true, + + manageOverflow: true, + + isItemShrinkWrap: function(ownerContext){ + return true; + }, + + getItemSizePolicy: function (item, ownerSizeModel) { + if (item.columnWidth) { + if (!ownerSizeModel) { + ownerSizeModel = this.owner.getSizeModel(); + } + + if (!ownerSizeModel.width.shrinkWrap) { + return this.columnWidthSizePolicy; + } + } + return this.autoSizePolicy; + }, + + calculateItems: function (ownerContext, containerSize) { + var me = this, + targetContext = ownerContext.targetContext, + items = ownerContext.childItems, + len = items.length, + contentWidth = 0, + gotWidth = containerSize.gotWidth, + blocked, availableWidth, i, itemContext, itemMarginWidth, itemWidth; + + + if (gotWidth === false) { + + targetContext.domBlock(me, 'width'); + blocked = true; + } else if (gotWidth) { + availableWidth = containerSize.width; + } else { + + + return true; + } + + + + for (i = 0; i < len; ++i) { + itemContext = items[i]; + + + + + itemMarginWidth = itemContext.getMarginInfo().width; + + if (!itemContext.widthModel.calculated) { + itemWidth = itemContext.getProp('width'); + if (typeof itemWidth != 'number') { + itemContext.block(me, 'width'); + blocked = true; + } + + contentWidth += itemWidth + itemMarginWidth; + } + } + + if (!blocked) { + availableWidth = (availableWidth < contentWidth) ? 0 : availableWidth - contentWidth; + + for (i = 0; i < len; ++i) { + itemContext = items[i]; + if (itemContext.widthModel.calculated) { + itemMarginWidth = itemContext.marginInfo.width; + itemWidth = itemContext.target.columnWidth; + itemWidth = Math.floor(itemWidth * availableWidth) - itemMarginWidth; + itemWidth = itemContext.setWidth(itemWidth); + contentWidth += itemWidth + itemMarginWidth; + } + } + + ownerContext.setContentWidth(contentWidth + ownerContext.paddingContext.getPaddingInfo().width); + } + + + return !blocked; + }, + + setCtSizeIfNeeded: function(ownerContext, containerSize) { + var me = this, + padding = ownerContext.paddingContext.getPaddingInfo(); + + me.callParent(arguments); + + + + if ((Ext.isIEQuirks || Ext.isIE7m) && me.isShrinkWrapTpl && padding.right) { + ownerContext.outerCtContext.setProp('width', + containerSize.width + padding.left); + } + } + +}); + + +Ext.define('Ext.layout.container.Form', { + + + + alias: 'layout.form', + extend: Ext.layout.container.Container , + alternateClassName: 'Ext.layout.FormLayout', + + + + tableCls: Ext.baseCSSPrefix + 'form-layout-table', + + type: 'form', + + createsInnerCt: true, + + manageOverflow: true, + + + lastOverflowAdjust: { + width: 0, + height: 0 + }, + + childEls: ['formTable'], + + padRow: '', + + renderTpl: [ + '', + '{%this.renderBody(out,values)%}', + '
    ', + '{%this.renderPadder(out,values)%}' + ], + + getRenderData: function(){ + var data = this.callParent(); + data.tableCls = this.tableCls; + return data; + }, + + calculate : function (ownerContext) { + var me = this, + containerSize = me.getContainerSize(ownerContext, true), + tableWidth, + childItems, + i = 0, length, + shrinkwrapHeight = ownerContext.sizeModel.height.shrinkWrap; + + if (shrinkwrapHeight) { + if (ownerContext.hasDomProp('containerChildrenSizeDone')) { + ownerContext.setProp('contentHeight', me.formTable.dom.offsetHeight + ownerContext.targetContext.getPaddingInfo().height); + } else { + me.done = false; + } + } + + + if (containerSize.gotWidth) { + tableWidth = me.formTable.dom.offsetWidth; + childItems = ownerContext.childItems; + + for (length = childItems.length; i < length; ++i) { + childItems[i].setWidth(tableWidth, false); + } + } else { + me.done = false; + } + }, + + getRenderTarget: function() { + return this.formTable; + }, + + getRenderTree: function() { + var me = this, + result = me.callParent(arguments), + i, len; + + for (i = 0, len = result.length; i < len; i++) { + result[i] = me.transformItemRenderTree(result[i]); + } + return result; + }, + + transformItemRenderTree: function(item) { + + if (item.tag && item.tag == 'table') { + item.tag = 'tbody'; + delete item.cellspacing; + delete item.cellpadding; + + + + + + if (Ext.isIE6) { + item.cn = this.padRow; + } + + return item; + } + + return { + tag: 'tbody', + cn: { + tag: 'tr', + cn: { + tag: 'td', + colspan: 3, + style: 'width:100%', + cn: item + } + } + }; + + }, + + isValidParent: function(item, target, position) { + return true; + }, + + isItemShrinkWrap: function(item) { + return ((item.shrinkWrap === true) ? 3 : item.shrinkWrap||0) & 2; + }, + + getItemSizePolicy: function(item) { + return { + setsWidth: 1, + setsHeight: 0 + }; + }, + + + + + + beginLayoutCycle: function (ownerContext, firstCycle) { + var padEl = this.overflowPadderEl; + + if (padEl) { + padEl.setStyle('display', 'none'); + } + + + + if (!ownerContext.state.overflowAdjust) { + ownerContext.state.overflowAdjust = this.lastOverflowAdjust; + } + }, + + + calculateOverflow: function (ownerContext, containerSize, dimensions) { + var me = this, + targetContext = ownerContext.targetContext, + manageOverflow = me.manageOverflow, + state = ownerContext.state, + overflowAdjust = state.overflowAdjust, + padWidth, padHeight, padElContext, padding, scrollRangeFlags, + scrollbarSize, contentW, contentH, ownerW, ownerH, scrollbars, + xauto, yauto; + + if (manageOverflow && !state.secondPass && !me.reserveScrollbar) { + + + xauto = (me.getOverflowXStyle(ownerContext) === 'auto'); + yauto = (me.getOverflowYStyle(ownerContext) === 'auto'); + + + + + if (!containerSize.gotWidth) { + xauto = false; + } + if (!containerSize.gotHeight) { + yauto = false; + } + + if (xauto || yauto) { + scrollbarSize = Ext.getScrollbarSize(); + + + + contentW = ownerContext.peek('contentWidth'); + contentH = ownerContext.peek('contentHeight'); + + + + + padding = targetContext.getPaddingInfo(); + contentW -= padding.width; + contentH -= padding.height; + ownerW = containerSize.width; + ownerH = containerSize.height; + + scrollbars = me.getScrollbarsNeeded(ownerW, ownerH, contentW, contentH); + state.overflowState = scrollbars; + + if (typeof dimensions == 'number') { + scrollbars &= ~dimensions; + } + + overflowAdjust = { + width: (xauto && (scrollbars & 2)) ? scrollbarSize.width : 0, + height: (yauto && (scrollbars & 1)) ? scrollbarSize.height : 0 + }; + + + + if (overflowAdjust.width !== me.lastOverflowAdjust.width || overflowAdjust.height !== me.lastOverflowAdjust.height) { + me.done = false; + + + + ownerContext.invalidate({ + state: { + overflowAdjust: overflowAdjust, + overflowState: state.overflowState, + secondPass: true + } + }); + } + } + } + + if (!me.done) { + return; + } + + padElContext = ownerContext.padElContext || + (ownerContext.padElContext = ownerContext.getEl('overflowPadderEl', me)); + + + + if (padElContext) { + scrollbars = state.overflowState; + padWidth = ownerContext.peek('contentWidth'); + + + padHeight = 1; + + if (scrollbars) { + padding = targetContext.getPaddingInfo(); + scrollRangeFlags = me.scrollRangeFlags; + + if ((scrollbars & 2) && (scrollRangeFlags & 1)) { + padHeight += padding.bottom; + } + + if ((scrollbars & 1) && (scrollRangeFlags & 4)) { + padWidth += padding.right; + } + padElContext.setProp('display', ''); + padElContext.setSize(padWidth, padHeight); + } else { + padElContext.setProp('display', 'none'); + } + } + }, + + completeLayout: function (ownerContext) { + + this.lastOverflowAdjust = ownerContext.state.overflowAdjust; + }, + + + doRenderPadder: function (out, renderData) { + + + + var me = renderData.$layout, + owner = me.owner, + scrollRangeFlags = me.getScrollRangeFlags(); + + if (me.manageOverflow) { + if (scrollRangeFlags & 5) { + out.push('
    '); + + me.scrollRangeFlags = scrollRangeFlags; + } + } + }, + + + getContainerSize : function(ownerContext, inDom, ignoreOverflow) { + + + + + + + var targetContext = ownerContext.targetContext, + frameInfo = targetContext.getFrameInfo(), + + padding = targetContext.getPaddingInfo(), + got = 0, + needed = 0, + overflowAdjust = ignoreOverflow ? null : ownerContext.state.overflowAdjust, + gotWidth, gotHeight, width, height; + + + + + + + + + + if (!ownerContext.widthModel.shrinkWrap) { + ++needed; + width = inDom ? targetContext.getDomProp('width') : targetContext.getProp('width'); + gotWidth = (typeof width == 'number'); + if (gotWidth) { + ++got; + width -= frameInfo.width + padding.width; + if (overflowAdjust) { + width -= overflowAdjust.width; + } + } + } + + if (!ownerContext.heightModel.shrinkWrap) { + ++needed; + height = inDom ? targetContext.getDomProp('height') : targetContext.getProp('height'); + gotHeight = (typeof height == 'number'); + if (gotHeight) { + ++got; + height -= frameInfo.height + padding.height; + if (overflowAdjust) { + height -= overflowAdjust.height; + } + } + } + + return { + width: width, + height: height, + needed: needed, + got: got, + gotAll: got == needed, + gotWidth: gotWidth, + gotHeight: gotHeight + }; + }, + + + getOverflowXStyle: function(ownerContext) { + var me = this; + + return me.overflowXStyle || + (me.overflowXStyle = me.owner.scrollFlags.overflowX || ownerContext.targetContext.getStyle('overflow-x')); + }, + + + getOverflowYStyle: function(ownerContext) { + var me = this; + + return me.overflowYStyle || + (me.overflowYStyle = me.owner.scrollFlags.overflowY || ownerContext.targetContext.getStyle('overflow-y')); + }, + + + getScrollRangeFlags: (function () { + var flags = -1; + + return function () { + if (flags < 0) { + var div = Ext.getBody().createChild({ + + cls: Ext.baseCSSPrefix + 'border-box', + style: { + width: '100px', height: '100px', padding: '10px', + overflow: 'auto' + }, + children: [{ + style: { + border: '1px solid red', + width: '150px', height: '150px', + margin: '0 5px 5px 0' + } + }] + }), + scrollHeight = div.dom.scrollHeight, + scrollWidth = div.dom.scrollWidth, + heightFlags = { + + 175: 0, + + 165: 1, + + 170: 2, + + 160: 3 + }, + widthFlags = { + + 175: 0, + + 165: 4, + + 170: 8, + + 160: 12 + }; + + flags = (heightFlags[scrollHeight] || 0) | (widthFlags[scrollWidth] || 0); + + div.remove(); + } + + return flags; + }; + }()), + + initLayout: function() { + var me = this, + scrollbarWidth = Ext.getScrollbarSize().width; + + me.callParent(); + + + + + if (scrollbarWidth && me.manageOverflow && !me.hasOwnProperty('lastOverflowAdjust')) { + if (me.owner.scrollFlags.y || me.reserveScrollbar) { + me.lastOverflowAdjust = { + width: scrollbarWidth, + height: 0 + }; + } + } + }, + + setupRenderTpl: function (renderTpl) { + this.callParent(arguments); + + renderTpl.renderPadder = this.doRenderPadder; + } +}); + + +Ext.define('Ext.menu.Item', { + extend: Ext.Component , + alias: 'widget.menuitem', + alternateClassName: 'Ext.menu.TextItem', + + mixins: { + queryable: Ext.Queryable + }, + + + + + + + activeCls: Ext.baseCSSPrefix + 'menu-item-active', + + + ariaRole: 'menuitem', + + + canActivate: true, + + + clickHideDelay: 0, + + + destroyMenu: true, + + + disabledCls: Ext.baseCSSPrefix + 'menu-item-disabled', + + + + + + + hideOnClick: true, + + + + + + + + isMenuItem: true, + + + + + + + menuAlign: 'tl-tr?', + + + menuExpandDelay: 200, + + + menuHideDelay: 200, + + + + + + + tooltipType: 'qtip', + + arrowCls: Ext.baseCSSPrefix + 'menu-item-arrow', + + childEls: [ + 'itemEl', 'iconEl', 'textEl', 'arrowEl' + ], + + renderTpl: [ + '', + '{text}', + '', + ' target="{hrefTarget}"', + ' hidefocus="true"', + + ' unselectable="on"', + '', + ' tabIndex="{tabIndex}"', + '', + '>', + '', + '{text}', + '', + '', + '' + ], + + maskOnDisable: false, + + + + + + activate: function() { + var me = this; + + if (!me.activated && me.canActivate && me.rendered && !me.isDisabled() && me.isVisible()) { + me.el.addCls(me.activeCls); + me.focus(); + me.activated = true; + me.fireEvent('activate', me); + } + }, + + getFocusEl: function() { + return this.itemEl; + }, + + deactivate: function() { + var me = this; + + if (me.activated) { + me.el.removeCls(me.activeCls); + me.blur(); + me.hideMenu(); + me.activated = false; + me.fireEvent('deactivate', me); + } + }, + + deferHideMenu: function() { + if (this.menu.isVisible()) { + this.menu.hide(); + } + }, + + cancelDeferHide: function(){ + clearTimeout(this.hideMenuTimer); + }, + + deferHideParentMenus: function() { + var ancestor; + Ext.menu.Manager.hideAll(); + + if (!Ext.Element.getActiveElement()) { + + ancestor = this.up(':not([hidden])'); + if (ancestor) { + ancestor.focus(); + } + } + }, + + expandMenu: function(delay) { + var me = this; + + if (me.menu) { + me.cancelDeferHide(); + if (delay === 0) { + me.doExpandMenu(); + } else { + clearTimeout(me.expandMenuTimer); + me.expandMenuTimer = Ext.defer(me.doExpandMenu, Ext.isNumber(delay) ? delay : me.menuExpandDelay, me); + } + } + }, + + doExpandMenu: function() { + var me = this, + menu = me.menu; + + if (me.activated && (!menu.rendered || !menu.isVisible())) { + me.parentMenu.activeChild = menu; + menu.parentItem = me; + menu.parentMenu = me.parentMenu; + menu.showBy(me, me.menuAlign); + } + }, + + getRefItems: function(deep) { + var menu = this.menu, + items; + + if (menu) { + items = menu.getRefItems(deep); + items.unshift(menu); + } + return items || []; + }, + + hideMenu: function(delay) { + var me = this; + + if (me.menu) { + clearTimeout(me.expandMenuTimer); + me.hideMenuTimer = Ext.defer(me.deferHideMenu, Ext.isNumber(delay) ? delay : me.menuHideDelay, me); + } + }, + + initComponent: function() { + var me = this, + prefix = Ext.baseCSSPrefix, + cls = [prefix + 'menu-item'], + menu; + + me.addEvents( + + 'activate', + + + 'click', + + + 'deactivate', + + + 'textchange', + + + 'iconchange' + ); + + if (me.plain) { + cls.push(prefix + 'menu-item-plain'); + } + + if (me.cls) { + cls.push(me.cls); + } + + me.cls = cls.join(' '); + + if (me.menu) { + menu = me.menu; + delete me.menu; + me.setMenu(menu); + } + + me.callParent(arguments); + }, + + onClick: function(e) { + var me = this, + clickHideDelay = me.clickHideDelay; + + if (!me.href) { + e.stopEvent(); + } + + if (me.disabled) { + return; + } + + if (me.hideOnClick) { + if (!clickHideDelay) { + me.deferHideParentMenus(); + } else { + me.deferHideParentMenusTimer = Ext.defer(me.deferHideParentMenus, clickHideDelay, me); + } + } + + Ext.callback(me.handler, me.scope || me, [me, e]); + me.fireEvent('click', me, e); + + if (!me.hideOnClick) { + me.focus(); + } + }, + + onRemoved: function() { + var me = this; + + + if (me.activated && me.parentMenu.activeItem === me) { + me.parentMenu.deactivateActiveItem(); + } + me.callParent(arguments); + me.parentMenu = me.ownerButton = null; + }, + + + beforeDestroy: function() { + var me = this; + if (me.rendered) { + me.clearTip(); + } + me.callParent(); + }, + + onDestroy: function() { + var me = this; + + clearTimeout(me.expandMenuTimer); + me.cancelDeferHide(); + clearTimeout(me.deferHideParentMenusTimer); + + me.setMenu(null); + me.callParent(arguments); + }, + + beforeRender: function() { + var me = this, + blank = Ext.BLANK_IMAGE_URL, + glyph = me.glyph, + glyphFontFamily = Ext._glyphFontFamily, + glyphParts, iconCls, arrowCls; + + me.callParent(); + + if (me.iconAlign === 'right') { + iconCls = me.checkChangeDisabled ? me.disabledCls : ''; + arrowCls = Ext.baseCSSPrefix + 'menu-item-icon-right ' + me.iconCls; + } else { + iconCls = (me.iconCls || '') + (me.checkChangeDisabled ? ' ' + me.disabledCls : ''); + arrowCls = me.menu ? me.arrowCls : ''; + } + + if (typeof glyph === 'string') { + glyphParts = glyph.split('@'); + glyph = glyphParts[0]; + glyphFontFamily = glyphParts[1]; + } + + Ext.applyIf(me.renderData, { + href: me.href || '#', + hrefTarget: me.hrefTarget, + icon: me.icon, + iconCls: iconCls, + glyph: glyph, + glyphCls: glyph ? Ext.baseCSSPrefix + 'menu-item-glyph' : undefined, + glyphFontFamily: glyphFontFamily, + hasIcon: !!(me.icon || me.iconCls || glyph), + iconAlign: me.iconAlign, + plain: me.plain, + text: me.text, + arrowCls: arrowCls, + blank: blank, + tabIndex: me.tabIndex + }); + }, + + onRender: function() { + var me = this; + + me.callParent(arguments); + + if (me.tooltip) { + me.setTooltip(me.tooltip, true); + } + }, + + + setMenu: function(menu, destroyMenu) { + var me = this, + oldMenu = me.menu, + arrowEl = me.arrowEl; + + if (oldMenu) { + delete oldMenu.parentItem; + delete oldMenu.parentMenu; + delete oldMenu.ownerItem; + + if (destroyMenu === true || (destroyMenu !== false && me.destroyMenu)) { + Ext.destroy(oldMenu); + } + } + if (menu) { + me.menu = Ext.menu.Manager.get(menu); + me.menu.ownerItem = me; + } else { + me.menu = null; + } + + if (me.rendered && !me.destroying && arrowEl) { + arrowEl[me.menu ? 'addCls' : 'removeCls'](me.arrowCls); + } + }, + + + setHandler: function(fn, scope) { + this.handler = fn || null; + this.scope = scope; + }, + + + setIcon: function(icon){ + var iconEl = this.iconEl, + oldIcon = this.icon; + if (iconEl) { + iconEl.src = icon || Ext.BLANK_IMAGE_URL; + } + this.icon = icon; + this.fireEvent('iconchange', this, oldIcon, icon); + }, + + + setIconCls: function(iconCls) { + var me = this, + iconEl = me.iconEl, + oldCls = me.iconCls; + + if (iconEl) { + if (me.iconCls) { + iconEl.removeCls(me.iconCls); + } + + if (iconCls) { + iconEl.addCls(iconCls); + } + } + + me.iconCls = iconCls; + me.fireEvent('iconchange', me, oldCls, iconCls); + }, + + + setText: function(text) { + var me = this, + el = me.textEl || me.el, + oldText = me.text; + + me.text = text; + + if (me.rendered) { + el.update(text || ''); + + me.ownerCt.updateLayout(); + } + me.fireEvent('textchange', me, oldText, text); + }, + + getTipAttr: function(){ + return this.tooltipType == 'qtip' ? 'data-qtip' : 'title'; + }, + + + clearTip: function() { + if (Ext.quickTipsActive && Ext.isObject(this.tooltip)) { + Ext.tip.QuickTipManager.unregister(this.itemEl); + } + }, + + + setTooltip: function(tooltip, initial) { + var me = this; + + if (me.rendered) { + if (!initial) { + me.clearTip(); + } + + if (Ext.quickTipsActive && Ext.isObject(tooltip)) { + Ext.tip.QuickTipManager.register(Ext.apply({ + target: me.itemEl.id + }, + tooltip)); + me.tooltip = tooltip; + } else { + me.itemEl.dom.setAttribute(me.getTipAttr(), tooltip); + } + } else { + me.tooltip = tooltip; + } + + return me; + } +}); + + +Ext.define('Ext.menu.CheckItem', { + extend: Ext.menu.Item , + alias: 'widget.menucheckitem', + + + + + + + + + + + checkedCls: Ext.baseCSSPrefix + 'menu-item-checked', + + uncheckedCls: Ext.baseCSSPrefix + 'menu-item-unchecked', + + groupCls: Ext.baseCSSPrefix + 'menu-group-icon', + + + hideOnClick: false, + + + checkChangeDisabled: false, + + childEls: [ + 'itemEl', 'iconEl', 'textEl', 'checkEl' + ], + + showCheckbox: true, + + renderTpl: [ + '', + '{text}', + '', + '{%var showCheckbox = values.showCheckbox,', + ' rightCheckbox = showCheckbox && values.hasIcon && (values.iconAlign !== "left"), textCls = rightCheckbox ? "' + Ext.baseCSSPrefix + 'right-check-item-text" : "";%}', + 'target="{hrefTarget}" hidefocus="true" unselectable="on"', + '', + ' tabIndex="{tabIndex}"', + '', + '>', + '{%if (values.hasIcon && (values.iconAlign !== "left")) {%}', + '', + '{%} else if (showCheckbox){%}', + '', + '{%}%}', + 'style="margin-right: 17px;" >{text}', + + + '{%if (rightCheckbox) {%}', + '', + '{%} else if (values.arrowCls) {%}', + '', + '{%}%}', + '', + '' + ], + + initComponent: function() { + var me = this; + + + me.checked = !!me.checked; + me.addEvents( + + 'beforecheckchange', + + + 'checkchange' + ); + + me.callParent(arguments); + + Ext.menu.Manager.registerCheckable(me); + + if (me.group) { + me.showCheckbox = false + if (!(me.iconCls || me.icon || me.glyph)) { + me.iconCls = me.groupCls; + } + if (me.initialConfig.hideOnClick !== false) { + me.hideOnClick = true; + } + } + }, + + beforeRender: function() { + this.callParent(); + this.renderData.showCheckbox = this.showCheckbox; + }, + + afterRender: function() { + var me = this; + me.callParent(); + me.checked = !me.checked; + me.setChecked(!me.checked, true); + if (me.checkChangeDisabled) { + me.disableCheckChange(); + } + }, + + + disableCheckChange: function() { + var me = this, + checkEl = me.checkEl; + + if (checkEl) { + checkEl.addCls(me.disabledCls); + } + + + if (!(Ext.isIE10p || (Ext.isIE9 && Ext.isStrict)) && me.rendered) { + me.el.repaint(); + } + me.checkChangeDisabled = true; + }, + + + enableCheckChange: function() { + var me = this, + checkEl = me.checkEl; + + if (checkEl) { + checkEl.removeCls(me.disabledCls); + } + me.checkChangeDisabled = false; + }, + + onClick: function(e) { + var me = this; + if(!me.disabled && !me.checkChangeDisabled && !(me.checked && me.group)) { + me.setChecked(!me.checked); + } + this.callParent([e]); + }, + + onDestroy: function() { + Ext.menu.Manager.unregisterCheckable(this); + this.callParent(arguments); + }, + + + setChecked: function(checked, suppressEvents) { + var me = this; + if (me.checked !== checked && (suppressEvents || me.fireEvent('beforecheckchange', me, checked) !== false)) { + if (me.el) { + me.el[checked ? 'addCls' : 'removeCls'](me.checkedCls)[!checked ? 'addCls' : 'removeCls'](me.uncheckedCls); + } + me.checked = checked; + Ext.menu.Manager.onCheckChange(me, checked); + if (!suppressEvents) { + Ext.callback(me.checkHandler, me.scope, [me, checked]); + me.fireEvent('checkchange', me, checked); + } + } + } +}); + + +Ext.define('Ext.menu.KeyNav', { + extend: Ext.util.KeyNav , + + + + constructor: function(config) { + var me = this; + + me.menu = config.target; + me.callParent([Ext.apply({ + down: me.down, + enter: me.enter, + esc: me.escape, + left: me.left, + right: me.right, + space: me.enter, + tab: me.tab, + up: me.up + }, config)]); + }, + + down: function(e) { + var me = this, + fi = me.menu.focusedItem; + + if (fi && e.getKey() == Ext.EventObject.DOWN && me.isWhitelisted(fi)) { + return true; + } + me.focusNextItem(1); + }, + + enter: function(e) { + var menu = this.menu, + focused = menu.focusedItem; + + if (menu.activeItem) { + menu.onClick(e); + } else if (focused && focused.isFormField) { + + return true; + } + }, + + escape: function(e) { + Ext.menu.Manager.hideAll(); + }, + + focusNextItem: function(step) { + var menu = this.menu, + items = menu.items, + focusedItem = menu.focusedItem, + startIdx = focusedItem ? items.indexOf(focusedItem) : -1, + idx = startIdx + step, + len = items.length, + count = 0, + item; + + + while (count < len && idx !== startIdx) { + if (idx < 0) { + idx = len - 1; + } else if (idx >= len) { + idx = 0; + } + + item = items.getAt(idx); + if (menu.canActivateItem(item)) { + menu.setActiveItem(item); + break; + } + idx += step; + ++count; + } + }, + + isWhitelisted: function(item) { + return Ext.FocusManager.isWhitelisted(item); + }, + + left: function(e) { + var menu = this.menu, + fi = menu.focusedItem; + + if (fi && this.isWhitelisted(fi)) { + return true; + } + + menu.hide(); + if (menu.parentMenu) { + menu.parentMenu.focus(); + } + }, + + right: function(e) { + var menu = this.menu, + fi = menu.focusedItem, + ai = menu.activeItem, + am; + + if (fi && this.isWhitelisted(fi)) { + return true; + } + + if (ai) { + am = menu.activeItem.menu; + if (am) { + ai.expandMenu(0); + am.setActiveItem(am.child(':focusable')); + } + } + }, + + tab: function(e) { + var me = this; + + if (e.shiftKey) { + me.up(e); + } else { + me.down(e); + } + }, + + up: function(e) { + var me = this, + fi = me.menu.focusedItem; + + if (fi && e.getKey() == Ext.EventObject.UP && me.isWhitelisted(fi)) { + return true; + } + me.focusNextItem(-1); + } +}); + + +Ext.define('Ext.menu.Separator', { + extend: Ext.menu.Item , + alias: 'widget.menuseparator', + + + + + canActivate: false, + + + + + + + + focusable: false, + + + + + + + hideOnClick: false, + + + + + + + + + + + + + + + plain: true, + + + separatorCls: Ext.baseCSSPrefix + 'menu-item-separator', + + + text: ' ', + + beforeRender: function(ct, pos) { + var me = this; + + me.callParent(); + + me.addCls(me.separatorCls); + } +}); + + +Ext.define('Ext.menu.Menu', { + extend: Ext.panel.Panel , + alias: 'widget.menu', + + + + + + + + + + + + + + enableKeyNav: true, + + + allowOtherMenus: false, + + + ariaRole: 'menu', + + + + + floating: true, + + + constrain: true, + + + hidden: true, + + hideMode: 'visibility', + + + ignoreParentClicks: false, + + + isMenu: true, + + + + + showSeparator : true, + + + minWidth: undefined, + + defaultMinWidth: 120, + + + + initComponent: function() { + var me = this, + prefix = Ext.baseCSSPrefix, + cls = [prefix + 'menu'], + bodyCls = me.bodyCls ? [me.bodyCls] : [], + isFloating = me.floating !== false; + + me.addEvents( + + 'click', + + + 'mouseenter', + + + 'mouseleave', + + + 'mouseover' + ); + + Ext.menu.Manager.register(me); + + + if (me.plain) { + cls.push(prefix + 'menu-plain'); + } + me.cls = cls.join(' '); + + + bodyCls.push(prefix + 'menu-body', Ext.dom.Element.unselectableCls); + me.bodyCls = bodyCls.join(' '); + + + + + + if (!me.layout) { + me.layout = { + type: 'vbox', + align: 'stretchmax', + overflowHandler: 'Scroller' + }; + } + + if (isFloating) { + + if (me.minWidth === undefined) { + me.minWidth = me.defaultMinWidth; + } + } else { + + me.hidden = !!me.initialConfig.hidden; + me.constrain = false; + } + + me.callParent(arguments); + }, + + + + registerWithOwnerCt: function() { + if (this.floating) { + this.ownerCt = null; + Ext.WindowManager.register(this); + } + }, + + + + initHierarchyEvents: Ext.emptyFn, + + + isVisible: function() { + return this.callParent(); + }, + + + + getHierarchyState: function() { + var result = this.callParent(); + result.hidden = this.hidden; + return result; + }, + + beforeRender: function() { + this.callParent(arguments); + + + + if (!this.getSizeModel().width.shrinkWrap) { + this.layout.align = 'stretch'; + } + }, + + onBoxReady: function() { + var me = this; + + me.callParent(arguments); + + + if (me.showSeparator) { + me.iconSepEl = me.layout.getElementTarget().insertFirst({ + cls: Ext.baseCSSPrefix + 'menu-icon-separator', + html: ' ' + }); + } + + me.mon(me.el, { + click: me.onClick, + mouseover: me.onMouseOver, + scope: me + }); + me.mouseMonitor = me.el.monitorMouseLeave(100, me.onMouseLeave, me); + + + if (me.enableKeyNav) { + me.keyNav = new Ext.menu.KeyNav({ + target: me, + keyMap: me.getKeyMap() + }); + } + }, + + getRefOwner: function() { + + + + return this.parentMenu || this.ownerButton || this.callParent(arguments); + }, + + + canActivateItem: function(item) { + return item && !item.isDisabled() && item.isVisible() && (item.canActivate || item.getXTypes().indexOf('menuitem') < 0); + }, + + + deactivateActiveItem: function(andBlurFocusedItem) { + var me = this, + activeItem = me.activeItem, + focusedItem = me.focusedItem; + + if (activeItem) { + activeItem.deactivate(); + if (!activeItem.activated) { + delete me.activeItem; + } + } + + + + if (focusedItem && andBlurFocusedItem) { + focusedItem.blur(); + delete me.focusedItem; + } + }, + + + getFocusEl: function() { + return this.focusedItem || this.el; + }, + + + hide: function() { + this.deactivateActiveItem(true); + this.callParent(arguments); + }, + + + getItemFromEvent: function(e) { + return this.getChildByElement(e.getTarget()); + }, + + lookupComponent: function(cmp) { + var me = this; + + if (typeof cmp == 'string') { + cmp = me.lookupItemFromString(cmp); + } else if (Ext.isObject(cmp)) { + cmp = me.lookupItemFromObject(cmp); + } + + + + cmp.minWidth = cmp.minWidth || me.minWidth; + + return cmp; + }, + + + lookupItemFromObject: function(cmp) { + var me = this, + prefix = Ext.baseCSSPrefix, + cls; + + if (!cmp.isComponent) { + if (!cmp.xtype) { + cmp = Ext.create('Ext.menu.' + (Ext.isBoolean(cmp.checked) ? 'Check': '') + 'Item', cmp); + } else { + cmp = Ext.ComponentManager.create(cmp, cmp.xtype); + } + } + + if (cmp.isMenuItem) { + cmp.parentMenu = me; + } + + if (!cmp.isMenuItem && !cmp.dock) { + cls = [prefix + 'menu-item-cmp']; + + + + + if (!me.plain && (cmp.indent !== false || cmp.iconCls === 'no-icon')) { + cls.push(prefix + 'menu-item-indent'); + } + + if (cmp.rendered) { + cmp.el.addCls(cls); + } else { + cmp.cls = (cmp.cls || '') + ' ' + cls.join(' '); + } + } + return cmp; + }, + + + lookupItemFromString: function(cmp) { + return (cmp == 'separator' || cmp == '-') ? + new Ext.menu.Separator() + : new Ext.menu.Item({ + canActivate: false, + hideOnClick: false, + plain: true, + text: cmp + }); + }, + + onClick: function(e) { + var me = this, + item; + + if (me.disabled) { + e.stopEvent(); + return; + } + + item = (e.type === 'click') ? me.getItemFromEvent(e) : me.activeItem; + if (item && item.isMenuItem) { + if (!item.menu || !me.ignoreParentClicks) { + item.onClick(e); + } else { + e.stopEvent(); + } + } + + if (!item || item.disabled) { + item = undefined; + } + me.fireEvent('click', me, item, e); + }, + + onDestroy: function() { + var me = this; + + Ext.menu.Manager.unregister(me); + me.parentMenu = me.ownerButton = null; + if (me.rendered) { + me.el.un(me.mouseMonitor); + Ext.destroy(me.keyNav); + me.keyNav = null; + } + me.callParent(arguments); + }, + + onMouseLeave: function(e) { + var me = this; + + me.deactivateActiveItem(); + + if (me.disabled) { + return; + } + + me.fireEvent('mouseleave', me, e); + }, + + onMouseOver: function(e) { + var me = this, + fromEl = e.getRelatedTarget(), + mouseEnter = !me.el.contains(fromEl), + item = me.getItemFromEvent(e), + parentMenu = me.parentMenu, + parentItem = me.parentItem; + + if (mouseEnter && parentMenu) { + parentMenu.setActiveItem(parentItem); + parentItem.cancelDeferHide(); + parentMenu.mouseMonitor.mouseenter(); + } + + if (me.disabled) { + return; + } + + + if (item && !item.activated) { + me.setActiveItem(item); + if (item.activated && item.expandMenu) { + item.expandMenu(); + } + } + if (mouseEnter) { + me.fireEvent('mouseenter', me, e); + } + me.fireEvent('mouseover', me, item, e); + }, + + setActiveItem: function(item) { + var me = this; + + if (item && (item != me.activeItem)) { + me.deactivateActiveItem(); + if (me.canActivateItem(item)) { + if (item.activate) { + item.activate(); + if (item.activated) { + me.activeItem = item; + me.focusedItem = item; + me.focus(); + } + } else { + item.focus(); + me.focusedItem = item; + } + } + item.el.scrollIntoView(me.layout.getRenderTarget()); + } + }, + + showBy: function(cmp, pos, off) { + var me = this; + + me.callParent(arguments); + if (!me.hidden) { + + me.setVerticalPosition(); + } + return me; + }, + + beforeShow: function() { + var me = this, + viewHeight; + + + if (me.floating) { + me.savedMaxHeight = me.maxHeight; + viewHeight = me.container.getViewSize().height; + me.maxHeight = Math.min(me.maxHeight || viewHeight, viewHeight); + } + + me.callParent(arguments); + }, + + afterShow: function() { + var me = this; + + me.callParent(arguments); + + + if (me.floating) { + me.maxHeight = me.savedMaxHeight; + } + }, + + + + + setVerticalPosition: function() { + var me = this, + max, + y = me.getY(), + returnY = y, + height = me.getHeight(), + viewportHeight = Ext.Element.getViewportHeight().height, + parentEl = me.el.parent(), + viewHeight = parentEl.getViewSize().height, + normalY = y - parentEl.getScroll().top; + + parentEl = null; + + if (me.floating) { + max = me.maxHeight ? me.maxHeight : viewHeight - normalY; + if (height > viewHeight) { + returnY = y - normalY; + } else if (max < height) { + returnY = y - (height - max); + } else if((y + height) > viewportHeight){ + returnY = viewportHeight - height; + } + } + me.setY(returnY); + } +}); + + + Ext.define('Ext.menu.ColorPicker', { + extend: Ext.menu.Menu , + + alias: 'widget.colormenu', + + + + + + + hideOnClick : true, + + + pickerId : null, + + + + + + + + initComponent : function(){ + var me = this, + cfg = Ext.apply({}, me.initialConfig); + + + delete cfg.listeners; + Ext.apply(me, { + plain: true, + showSeparator: false, + items: Ext.applyIf({ + cls: Ext.baseCSSPrefix + 'menu-color-item', + id: me.pickerId, + xtype: 'colorpicker' + }, cfg) + }); + + me.callParent(arguments); + + me.picker = me.down('colorpicker'); + + + me.relayEvents(me.picker, ['select']); + + if (me.hideOnClick) { + me.on('select', me.hidePickerOnSelect, me); + } + }, + + + hidePickerOnSelect: function() { + Ext.menu.Manager.hideAll(); + } + }); + + + Ext.define('Ext.menu.DatePicker', { + extend: Ext.menu.Menu , + + alias: 'widget.datemenu', + + + + + + + hideOnClick : true, + + + pickerId : null, + + + + + + initComponent : function(){ + var me = this, + cfg = Ext.apply({}, me.initialConfig); + + + delete cfg.listeners; + + Ext.apply(me, { + showSeparator: false, + plain: true, + border: false, + bodyPadding: 0, + items: Ext.applyIf({ + cls: Ext.baseCSSPrefix + 'menu-date-item', + id: me.pickerId, + xtype: 'datepicker' + }, cfg) + }); + + me.callParent(arguments); + + me.picker = me.down('datepicker'); + + me.relayEvents(me.picker, ['select']); + + if (me.hideOnClick) { + me.on('select', me.hidePickerOnSelect, me); + } + }, + + hidePickerOnSelect: function() { + Ext.menu.Manager.hideAll(); + } + }); + + +Ext.define('Ext.panel.Tool', { + extend: Ext.Component , + + alias: 'widget.tool', + + + isTool: true, + + baseCls: Ext.baseCSSPrefix + 'tool', + disabledCls: Ext.baseCSSPrefix + 'tool-disabled', + + + toolPressedCls: Ext.baseCSSPrefix + 'tool-pressed', + + toolOverCls: Ext.baseCSSPrefix + 'tool-over', + + ariaRole: 'button', + + childEls: [ + 'toolEl' + ], + + renderTpl: [ + '' + ], + + + toolOwner: null, + + + + + + + + + + + + + tooltipType: 'qtip', + + + stopEvent: true, + + + height: 15, + width: 15, + + + initComponent: function() { + var me = this; + me.addEvents( + + 'click' + ); + + + me.type = me.type || me.id; + + Ext.applyIf(me.renderData, { + baseCls: me.baseCls, + blank: Ext.BLANK_IMAGE_URL, + type: me.type + }); + + + me.tooltip = me.tooltip || me.qtip; + me.callParent(); + }, + + + afterRender: function() { + var me = this, + attr; + + me.callParent(arguments); + + me.el.on({ + click: me.onClick, + mousedown: me.onMouseDown, + mouseover: me.onMouseOver, + mouseout: me.onMouseOut, + scope: me + }); + + if (me.tooltip) { + if (Ext.quickTipsActive && Ext.isObject(me.tooltip)) { + Ext.tip.QuickTipManager.register(Ext.apply({ + target: me.id + }, me.tooltip)); + } + else { + attr = me.tooltipType == 'qtip' ? 'data-qtip' : 'title'; + me.el.dom.setAttribute(attr, me.tooltip); + } + } + }, + + getFocusEl: function() { + return this.el; + }, + + + setType: function(type) { + var me = this, + oldType = me.type; + + me.type = type; + if (me.rendered) { + if (oldType) { + me.toolEl.removeCls(me.baseCls + '-' + oldType); + } + me.toolEl.addCls(me.baseCls + '-' + type); + } else { + me.renderData.type = type; + } + return me; + }, + + + onClick: function(e, target) { + var me = this; + + if (me.disabled) { + return false; + } + + + me.el.removeCls(me.toolPressedCls); + me.el.removeCls(me.toolOverCls); + + if (me.stopEvent !== false) { + e.stopEvent(); + } + + if (me.handler) { + Ext.callback(me.handler, me.scope || me, [e, target, me.ownerCt, me]); + } else if (me.callback) { + Ext.callback(me.callback, me.scope || me, [me.toolOwner || me.ownerCt, me, e]); + } + me.fireEvent('click', me, e); + return true; + }, + + + onDestroy: function(){ + if (Ext.quickTipsActive && Ext.isObject(this.tooltip)) { + Ext.tip.QuickTipManager.unregister(this.id); + } + this.callParent(); + }, + + + onMouseDown: function() { + if (this.disabled) { + return false; + } + + this.el.addCls(this.toolPressedCls); + }, + + + onMouseOver: function() { + if (this.disabled) { + return false; + } + this.el.addCls(this.toolOverCls); + }, + + + onMouseOut: function() { + this.el.removeCls(this.toolOverCls); + } +}); + + +Ext.define('Ext.resizer.SplitterTracker', { + extend: Ext.dd.DragTracker , + + enabled: true, + + overlayCls: Ext.baseCSSPrefix + 'resizable-overlay', + + createDragOverlay: function () { + var overlay; + + overlay = this.overlay = Ext.getBody().createChild({ + cls: this.overlayCls, + html: ' ' + }); + + overlay.unselectable(); + overlay.setSize(Ext.Element.getViewWidth(true), Ext.Element.getViewHeight(true)); + overlay.show(); + }, + + getPrevCmp: function() { + var splitter = this.getSplitter(); + return splitter.previousSibling(':not([hidden])'); + }, + + getNextCmp: function() { + var splitter = this.getSplitter(); + return splitter.nextSibling(':not([hidden])'); + }, + + + + onBeforeStart: function(e) { + var me = this, + prevCmp = me.getPrevCmp(), + nextCmp = me.getNextCmp(), + collapseEl = me.getSplitter().collapseEl, + target = e.getTarget(), + box; + + if (!prevCmp || !nextCmp) { + return false; + } + + if (collapseEl && target === me.getSplitter().collapseEl.dom) { + return false; + } + + + if (nextCmp.collapsed || prevCmp.collapsed) { + return false; + } + + + me.prevBox = prevCmp.getEl().getBox(); + me.nextBox = nextCmp.getEl().getBox(); + me.constrainTo = box = me.calculateConstrainRegion(); + + if (!box) { + return false; + } + + return box; + }, + + + onStart: function(e) { + var splitter = this.getSplitter(); + this.createDragOverlay(); + splitter.addCls(splitter.baseCls + '-active'); + }, + + + calculateConstrainRegion: function() { + var me = this, + splitter = me.getSplitter(), + splitWidth = splitter.getWidth(), + defaultMin = splitter.defaultSplitMin, + orient = splitter.orientation, + prevBox = me.prevBox, + prevCmp = me.getPrevCmp(), + nextBox = me.nextBox, + nextCmp = me.getNextCmp(), + + + + prevConstrainRegion, nextConstrainRegion, constrainOptions; + + + if (orient === 'vertical') { + constrainOptions = { + prevCmp: prevCmp, + nextCmp: nextCmp, + prevBox: prevBox, + nextBox: nextBox, + defaultMin: defaultMin, + splitWidth: splitWidth + }; + + + prevConstrainRegion = new Ext.util.Region( + prevBox.y, + me.getVertPrevConstrainRight(constrainOptions), + prevBox.bottom, + me.getVertPrevConstrainLeft(constrainOptions) + ); + + nextConstrainRegion = new Ext.util.Region( + nextBox.y, + me.getVertNextConstrainRight(constrainOptions), + nextBox.bottom, + me.getVertNextConstrainLeft(constrainOptions) + ); + } else { + + prevConstrainRegion = new Ext.util.Region( + prevBox.y + (prevCmp.minHeight || defaultMin), + prevBox.right, + + + (prevCmp.maxHeight ? prevBox.y + prevCmp.maxHeight : nextBox.bottom - (nextCmp.minHeight || defaultMin)) + splitWidth, + prevBox.x + ); + + nextConstrainRegion = new Ext.util.Region( + + + (nextCmp.maxHeight ? nextBox.bottom - nextCmp.maxHeight : prevBox.y + (prevCmp.minHeight || defaultMin)) - splitWidth, + nextBox.right, + nextBox.bottom - (nextCmp.minHeight || defaultMin), + nextBox.x + ); + } + + + return prevConstrainRegion.intersect(nextConstrainRegion); + }, + + + performResize: function(e, offset) { + var me = this, + splitter = me.getSplitter(), + orient = splitter.orientation, + prevCmp = me.getPrevCmp(), + nextCmp = me.getNextCmp(), + owner = splitter.ownerCt, + flexedSiblings = owner.query('>[flex]'), + len = flexedSiblings.length, + vertical = orient === 'vertical', + i = 0, + dimension = vertical ? 'width' : 'height', + totalFlex = 0, + item, size; + + + for (; i < len; i++) { + item = flexedSiblings[i]; + size = vertical ? item.getWidth() : item.getHeight(); + totalFlex += size; + item.flex = size; + } + + offset = vertical ? offset[0] : offset[1]; + + if (prevCmp) { + size = me.prevBox[dimension] + offset; + if (prevCmp.flex) { + prevCmp.flex = size; + } else { + prevCmp[dimension] = size; + } + } + if (nextCmp) { + size = me.nextBox[dimension] - offset; + if (nextCmp.flex) { + nextCmp.flex = size; + } else { + nextCmp[dimension] = size; + } + } + + owner.updateLayout(); + }, + + + + + endDrag: function () { + var me = this; + + if (me.overlay) { + me.overlay.remove(); + delete me.overlay; + } + + me.callParent(arguments); + }, + + + onEnd: function(e) { + var me = this, + splitter = me.getSplitter(); + + splitter.removeCls(splitter.baseCls + '-active'); + me.performResize(e, me.getResizeOffset()); + }, + + + + onDrag: function(e) { + var me = this, + offset = me.getOffset('dragTarget'), + splitter = me.getSplitter(), + splitEl = splitter.getEl(), + orient = splitter.orientation; + + if (orient === "vertical") { + splitEl.setX(me.startRegion.left + offset[0]); + } else { + splitEl.setY(me.startRegion.top + offset[1]); + } + }, + + getSplitter: function() { + return this.splitter; + }, + + getVertPrevConstrainRight: function(o) { + + + return (o.prevCmp.maxWidth ? o.prevBox.x + o.prevCmp.maxWidth : + o.nextBox.right - (o.nextCmp.minWidth || o.defaultMin)) + o.splitWidth; + }, + + getVertPrevConstrainLeft: function(o) { + return o.prevBox.x + (o.prevCmp.minWidth || o.defaultMin); + }, + + + getVertNextConstrainRight: function(o) { + return o.nextBox.right - (o.nextCmp.minWidth || o.defaultMin); + }, + + getVertNextConstrainLeft: function(o) { + + + return (o.nextCmp.maxWidth ? o.nextBox.right - o.nextCmp.maxWidth : + o.prevBox.x + (o.prevBox.minWidth || o.defaultMin)) - o.splitWidth; + }, + + getResizeOffset: function() { + return this.getOffset('dragTarget'); + } +}); + + +Ext.define('Ext.resizer.BorderSplitterTracker', { + extend: Ext.resizer.SplitterTracker , + + + getPrevCmp: null, + getNextCmp: null, + + + calculateConstrainRegion: function() { + var me = this, + splitter = me.splitter, + collapseTarget = splitter.collapseTarget, + defaultSplitMin = splitter.defaultSplitMin, + sizePropCap = splitter.vertical ? 'Width' : 'Height', + minSizeProp = 'min' + sizePropCap, + maxSizeProp = 'max' + sizePropCap, + getSizeMethod = 'get' + sizePropCap, + neighbors = splitter.neighbors, + length = neighbors.length, + box = collapseTarget.el.getBox(), + left = box.x, + top = box.y, + right = box.right, + bottom = box.bottom, + size = splitter.vertical ? (right - left) : (bottom - top), + + i, neighbor, minRange, maxRange, maxGrowth, maxShrink, targetSize; + + + minRange = (collapseTarget[minSizeProp] || Math.min(size,defaultSplitMin)) - size; + + + maxRange = collapseTarget[maxSizeProp]; + if (!maxRange) { + maxRange = 1e9; + } else { + maxRange -= size; + } + targetSize = size; + + for (i = 0; i < length; ++i) { + neighbor = neighbors[i]; + size = neighbor[getSizeMethod](); + + + maxGrowth = size - neighbor[maxSizeProp]; + maxShrink = size - (neighbor[minSizeProp] || Math.min(size,defaultSplitMin)); + + if (!isNaN(maxGrowth)) { + + + if (minRange < maxGrowth) { + minRange = maxGrowth; + } + } + + + + if (maxRange > maxShrink) { + maxRange = maxShrink; + } + } + + if (maxRange - minRange < 2) { + return null; + } + + box = new Ext.util.Region(top, right, bottom, left); + + me.constraintAdjusters[me.getCollapseDirection()](box, minRange, maxRange, splitter); + + me.dragInfo = { + minRange: minRange, + maxRange: maxRange, + + targetSize: targetSize + }; + + return box; + }, + + constraintAdjusters: { + + left: function (box, minRange, maxRange, splitter) { + box[0] = box.x = box.left = box.right + minRange; + box.right += maxRange + splitter.getWidth(); + }, + + + top: function (box, minRange, maxRange, splitter) { + box[1] = box.y = box.top = box.bottom + minRange; + box.bottom += maxRange + splitter.getHeight(); + }, + + + bottom: function (box, minRange, maxRange, splitter) { + box.bottom = box.top - minRange; + box.top -= maxRange + splitter.getHeight(); + }, + + + right: function (box, minRange, maxRange, splitter) { + box.right = box.left - minRange; + box[0] = box.x = box.left = box.x - maxRange + splitter.getWidth(); + } + }, + + onBeforeStart: function(e) { + var me = this, + splitter = me.splitter, + collapseTarget = splitter.collapseTarget, + neighbors = splitter.neighbors, + collapseEl = me.getSplitter().collapseEl, + target = e.getTarget(), + length = neighbors.length, + i, neighbor; + + if (collapseEl && target === splitter.collapseEl.dom) { + return false; + } + + if (collapseTarget.collapsed) { + return false; + } + + + for (i = 0; i < length; ++i) { + neighbor = neighbors[i]; + + if (neighbor.collapsed && neighbor.isHorz === collapseTarget.isHorz) { + return false; + } + } + + if (!(me.constrainTo = me.calculateConstrainRegion())) { + return false; + } + + return true; + }, + + performResize: function(e, offset) { + var me = this, + splitter = me.splitter, + collapseDirection = splitter.getCollapseDirection(), + collapseTarget = splitter.collapseTarget, + + adjusters = me.splitAdjusters[splitter.vertical ? 'horz' : 'vert'], + delta = offset[adjusters.index], + dragInfo = me.dragInfo, + + + + + + owner; + + if (collapseDirection == 'right' || collapseDirection == 'bottom') { + + delta = -delta; + } + + + delta = Math.min(Math.max(dragInfo.minRange, delta), dragInfo.maxRange); + + if (delta) { + (owner = splitter.ownerCt).suspendLayouts(); + + adjusters.adjustTarget(collapseTarget, dragInfo.targetSize, delta); + + + + + + + + + + owner.resumeLayouts(true); + } + }, + + splitAdjusters: { + horz: { + index: 0, + + + + adjustTarget: function (target, size, delta) { + target.flex = null; + target.setSize(size + delta); + } + }, + vert: { + index: 1, + + + + adjustTarget: function (target, targetSize, delta) { + target.flex = null; + target.setSize(undefined, targetSize + delta); + } + } + }, + + getCollapseDirection: function() { + return this.splitter.getCollapseDirection(); + } +}); + + +Ext.define('Ext.resizer.Handle', { + extend: Ext.Component , + handleCls: '', + baseHandleCls: Ext.baseCSSPrefix + 'resizable-handle', + + + region: '', + + beforeRender: function() { + var me = this; + + me.callParent(); + + me.protoEl.unselectable(); + + me.addCls( + me.baseHandleCls, + me.baseHandleCls + '-' + me.region, + me.handleCls + ); + } +}); + + +Ext.define('Ext.resizer.ResizeTracker', { + extend: Ext.dd.DragTracker , + dynamic: true, + preserveRatio: false, + + + constrainTo: null, + + proxyCls: Ext.baseCSSPrefix + 'resizable-proxy', + + constructor: function(config) { + var me = this, + widthRatio, heightRatio, + throttledResizeFn; + + if (!config.el) { + if (config.target.isComponent) { + me.el = config.target.getEl(); + } else { + me.el = config.target; + } + } + this.callParent(arguments); + + + if (me.preserveRatio && me.minWidth && me.minHeight) { + widthRatio = me.minWidth / me.el.getWidth(); + heightRatio = me.minHeight / me.el.getHeight(); + + + + + if (heightRatio > widthRatio) { + me.minWidth = me.el.getWidth() * heightRatio; + } else { + me.minHeight = me.el.getHeight() * widthRatio; + } + } + + + + if (me.throttle) { + throttledResizeFn = Ext.Function.createThrottled(function() { + Ext.resizer.ResizeTracker.prototype.resize.apply(me, arguments); + }, me.throttle); + + me.resize = function(box, direction, atEnd) { + if (atEnd) { + Ext.resizer.ResizeTracker.prototype.resize.apply(me, arguments); + } else { + throttledResizeFn.apply(null, arguments); + } + }; + } + }, + + onBeforeStart: function(e) { + + this.startBox = this.target.getBox(); + }, + + + getDynamicTarget: function() { + var me = this, + target = me.target; + + if (me.dynamic) { + return target; + } else if (!me.proxy) { + me.proxy = me.createProxy(target); + } + me.proxy.show(); + return me.proxy; + }, + + + createProxy: function(target){ + var proxy, + cls = this.proxyCls; + + if (target.isComponent) { + proxy = target.getProxy().addCls(cls); + } else { + proxy = target.createProxy({ + tag: 'div', + cls: cls, + id: target.id + '-rzproxy' + }, Ext.getBody()); + } + proxy.removeCls(Ext.baseCSSPrefix + 'proxy-el'); + return proxy; + }, + + onStart: function(e) { + + this.activeResizeHandle = Ext.get(this.getDragTarget().id); + + + if (!this.dynamic) { + this.resize(this.startBox, { + horizontal: 'none', + vertical: 'none' + }); + } + }, + + onDrag: function(e) { + + if (this.dynamic || this.proxy) { + this.updateDimensions(e); + } + }, + + updateDimensions: function(e, atEnd) { + var me = this, + region = me.activeResizeHandle.region, + offset = me.getOffset(me.constrainTo ? 'dragTarget' : null), + box = me.startBox, + ratio, + widthAdjust = 0, + heightAdjust = 0, + snappedWidth, + snappedHeight, + adjustX = 0, + adjustY = 0, + dragRatio, + horizDir = offset[0] < 0 ? 'right' : 'left', + vertDir = offset[1] < 0 ? 'down' : 'up', + oppositeCorner, + axis, + newBox, + newHeight, newWidth; + + region = me.convertRegionName(region); + + switch (region) { + case 'south': + heightAdjust = offset[1]; + axis = 2; + break; + case 'north': + heightAdjust = -offset[1]; + adjustY = -heightAdjust; + axis = 2; + break; + case 'east': + widthAdjust = offset[0]; + axis = 1; + break; + case 'west': + widthAdjust = -offset[0]; + adjustX = -widthAdjust; + axis = 1; + break; + case 'northeast': + heightAdjust = -offset[1]; + adjustY = -heightAdjust; + widthAdjust = offset[0]; + oppositeCorner = [box.x, box.y + box.height]; + axis = 3; + break; + case 'southeast': + heightAdjust = offset[1]; + widthAdjust = offset[0]; + oppositeCorner = [box.x, box.y]; + axis = 3; + break; + case 'southwest': + widthAdjust = -offset[0]; + adjustX = -widthAdjust; + heightAdjust = offset[1]; + oppositeCorner = [box.x + box.width, box.y]; + axis = 3; + break; + case 'northwest': + heightAdjust = -offset[1]; + adjustY = -heightAdjust; + widthAdjust = -offset[0]; + adjustX = -widthAdjust; + oppositeCorner = [box.x + box.width, box.y + box.height]; + axis = 3; + break; + } + + newBox = { + width: box.width + widthAdjust, + height: box.height + heightAdjust, + x: box.x + adjustX, + y: box.y + adjustY + }; + + + snappedWidth = Ext.Number.snap(newBox.width, me.widthIncrement); + snappedHeight = Ext.Number.snap(newBox.height, me.heightIncrement); + if (snappedWidth != newBox.width || snappedHeight != newBox.height){ + switch (region) { + case 'northeast': + newBox.y -= snappedHeight - newBox.height; + break; + case 'north': + newBox.y -= snappedHeight - newBox.height; + break; + case 'southwest': + newBox.x -= snappedWidth - newBox.width; + break; + case 'west': + newBox.x -= snappedWidth - newBox.width; + break; + case 'northwest': + newBox.x -= snappedWidth - newBox.width; + newBox.y -= snappedHeight - newBox.height; + } + newBox.width = snappedWidth; + newBox.height = snappedHeight; + } + + + if (newBox.width < me.minWidth || newBox.width > me.maxWidth) { + newBox.width = Ext.Number.constrain(newBox.width, me.minWidth, me.maxWidth); + + + if (adjustX) { + newBox.x = box.x + (box.width - newBox.width); + } + } else { + me.lastX = newBox.x; + } + if (newBox.height < me.minHeight || newBox.height > me.maxHeight) { + newBox.height = Ext.Number.constrain(newBox.height, me.minHeight, me.maxHeight); + + + if (adjustY) { + newBox.y = box.y + (box.height - newBox.height); + } + } else { + me.lastY = newBox.y; + } + + + if (me.preserveRatio || e.shiftKey) { + ratio = me.startBox.width / me.startBox.height; + + + newHeight = Math.min(Math.max(me.minHeight, newBox.width / ratio), me.maxHeight); + newWidth = Math.min(Math.max(me.minWidth, newBox.height * ratio), me.maxWidth); + + + if (axis == 1) { + newBox.height = newHeight; + } + + + else if (axis == 2) { + newBox.width = newWidth; + } + + + else { + + + dragRatio = Math.abs(oppositeCorner[0] - this.lastXY[0]) / Math.abs(oppositeCorner[1] - this.lastXY[1]); + + + if (dragRatio > ratio) { + newBox.height = newHeight; + } else { + newBox.width = newWidth; + } + + + if (region == 'northeast') { + newBox.y = box.y - (newBox.height - box.height); + } else if (region == 'northwest') { + newBox.y = box.y - (newBox.height - box.height); + newBox.x = box.x - (newBox.width - box.width); + } else if (region == 'southwest') { + newBox.x = box.x - (newBox.width - box.width); + } + } + } + + if (heightAdjust === 0) { + vertDir = 'none'; + } + if (widthAdjust === 0) { + horizDir = 'none'; + } + me.resize(newBox, { + horizontal: horizDir, + vertical: vertDir + }, atEnd); + }, + + getResizeTarget: function(atEnd) { + return atEnd ? this.target : this.getDynamicTarget(); + }, + + resize: function(box, direction, atEnd) { + var me = this, + target = me.getResizeTarget(atEnd); + + target.setBox(box); + + + if (me.originalTarget && (me.dynamic || atEnd)) { + me.originalTarget.setBox(box); + } + }, + + onEnd: function(e) { + this.updateDimensions(e, true); + if (this.proxy) { + this.proxy.hide(); + } + }, + + convertRegionName: function(name) { + return name; + } +}); + + +Ext.define('Ext.resizer.Resizer', { + mixins: { + observable: Ext.util.Observable + }, + + + alternateClassName: 'Ext.Resizable', + + handleCls: Ext.baseCSSPrefix + 'resizable-handle', + pinnedCls: Ext.baseCSSPrefix + 'resizable-pinned', + overCls: Ext.baseCSSPrefix + 'resizable-over', + wrapCls: Ext.baseCSSPrefix + 'resizable-wrap', + delimiterRe: /(?:\s*[,;]\s*)|\s+/, + + + dynamic: true, + + + handles: 's e se', + + + height : null, + + + width : null, + + + heightIncrement : 0, + + + widthIncrement : 0, + + + minHeight : 20, + + + minWidth : 20, + + + maxHeight : 10000, + + + maxWidth : 10000, + + + pinned: false, + + + preserveRatio: false, + + + transparent: false, + + + + possiblePositions: { + n: 'north', + s: 'south', + e: 'east', + w: 'west', + se: 'southeast', + sw: 'southwest', + nw: 'northwest', + ne: 'northeast' + }, + + + + + + constructor: function(config) { + var me = this, + target, + targetEl, + tag, + handles = me.handles, + handleCls, + possibles, + len, + i = 0, + pos, + handleEls = [], + eastWestStyle, style, + box, targetBaseCls, + unselectableCls = Ext.dom.Element.unselectableCls; + + me.addEvents( + + 'beforeresize', + + 'resizedrag', + + 'resize' + ); + + if (Ext.isString(config) || Ext.isElement(config) || config.dom) { + target = config; + config = arguments[1] || {}; + config.target = target; + } + + me.mixins.observable.constructor.call(me, config); + + + + target = me.target; + if (target) { + if (target.isComponent) { + + + + + target.addClsWithUI('resizable'); + + me.el = target.getEl(); + if (target.minWidth) { + me.minWidth = target.minWidth; + } + if (target.minHeight) { + me.minHeight = target.minHeight; + } + if (target.maxWidth) { + me.maxWidth = target.maxWidth; + } + if (target.maxHeight) { + me.maxHeight = target.maxHeight; + } + if (target.floating) { + if (!me.hasOwnProperty('handles')) { + me.handles = 'n ne e se s sw w nw'; + } + } + } else { + me.el = me.target = Ext.get(target); + } + } + + else { + me.target = me.el = Ext.get(me.el); + } + + + + + tag = me.el.dom.tagName.toUpperCase(); + if (tag == 'TEXTAREA' || tag == 'IMG' || tag == 'TABLE') { + + me.originalTarget = me.target; + targetEl = me.el; + box = targetEl.getBox(); + me.target = me.el = me.el.wrap({ + cls: me.wrapCls, + id: me.el.id + '-rzwrap', + style: targetEl.getStyles('margin-top', 'margin-bottom') + }); + + + me.el.setPositioning(targetEl.getPositioning()); + targetEl.clearPositioning(); + me.el.setBox(box); + + + targetEl.setStyle('position', 'absolute'); + } + + + + me.el.position(); + if (me.pinned) { + me.el.addCls(me.pinnedCls); + } + + + me.resizeTracker = new Ext.resizer.ResizeTracker({ + disabled: me.disabled, + target: me.target, + constrainTo: me.constrainTo, + overCls: me.overCls, + throttle: me.throttle, + originalTarget: me.originalTarget, + delegate: '.' + me.handleCls, + dynamic: me.dynamic, + preserveRatio: me.preserveRatio, + heightIncrement: me.heightIncrement, + widthIncrement: me.widthIncrement, + minHeight: me.minHeight, + maxHeight: me.maxHeight, + minWidth: me.minWidth, + maxWidth: me.maxWidth + }); + + + me.resizeTracker.on({ + mousedown: me.onBeforeResize, + drag: me.onResize, + dragend: me.onResizeEnd, + scope: me + }); + + if (me.handles == 'all') { + me.handles = 'n s e w ne nw se sw'; + } + + handles = me.handles = me.handles.split(me.delimiterRe); + possibles = me.possiblePositions; + len = handles.length; + + handleCls = me.handleCls + ' ' + me.handleCls + '-{0}'; + if (me.target.isComponent) { + targetBaseCls = me.target.baseCls + handleCls += ' ' + targetBaseCls + '-handle ' + targetBaseCls + '-handle-{0}'; + if (Ext.supports.CSS3BorderRadius) { + handleCls += ' ' + targetBaseCls + '-handle-{0}-br'; + } + } + + + eastWestStyle = Ext.isIE6 ? ' style="height:' + me.el.getHeight() + 'px"' : ''; + + for (; i < len; i++){ + + if (handles[i] && possibles[handles[i]]) { + pos = possibles[handles[i]]; + if (pos === 'east' || pos === 'west') { + style = eastWestStyle; + } else { + style = ''; + } + + handleEls.push( + '
    ' + ); + } + } + Ext.DomHelper.append(me.el, handleEls.join('')); + + + for (i = 0; i < len; i++){ + + if (handles[i] && possibles[handles[i]]) { + pos = possibles[handles[i]]; + me[pos] = me.el.getById(me.el.id + '-' + pos + '-handle'); + me[pos].region = pos; + + if (me.transparent) { + me[pos].setOpacity(0); + } + } + } + + + if (Ext.isNumber(me.width)) { + me.width = Ext.Number.constrain(me.width, me.minWidth, me.maxWidth); + } + if (Ext.isNumber(me.height)) { + me.height = Ext.Number.constrain(me.height, me.minHeight, me.maxHeight); + } + + + if (me.width !== null || me.height !== null) { + if (me.originalTarget) { + me.originalTarget.setWidth(me.width); + me.originalTarget.setHeight(me.height); + } + me.resizeTo(me.width, me.height); + } + + me.forceHandlesHeight(); + }, + + disable: function() { + this.resizeTracker.disable(); + }, + + enable: function() { + this.resizeTracker.enable(); + }, + + + onBeforeResize: function(tracker, e) { + var box = this.el.getBox(); + return this.fireEvent('beforeresize', this, box.width, box.height, e); + }, + + + onResize: function(tracker, e) { + var me = this, + box = me.el.getBox(); + + me.forceHandlesHeight(); + return me.fireEvent('resizedrag', me, box.width, box.height, e); + }, + + + onResizeEnd: function(tracker, e) { + var me = this, + box = me.el.getBox(); + + me.forceHandlesHeight(); + return me.fireEvent('resize', me, box.width, box.height, e); + }, + + + resizeTo : function(width, height) { + var me = this; + me.target.setSize(width, height); + me.fireEvent('resize', me, width, height, null); + }, + + + getEl : function() { + return this.el; + }, + + + getTarget: function() { + return this.target; + }, + + destroy: function() { + var me = this, + i, + handles = me.handles, + len = handles.length, + positions = me.possiblePositions, + handle; + + me.resizeTracker.destroy(); + for (i = 0; i < len; i++) { + if (handle = me[positions[handles[i]]]) { + handle.remove(); + } + } + }, + + + forceHandlesHeight : function() { + var me = this, + handle; + if (Ext.isIE6) { + handle = me.east; + if (handle) { + handle.setHeight(me.el.getHeight()); + } + handle = me.west; + if (handle) { + handle.setHeight(me.el.getHeight()); + } + me.el.repaint(); + } + } +}); + + +Ext.define('Ext.selection.CellModel', { + extend: Ext.selection.Model , + alias: 'selection.cellmodel', + + + + + + + + + isCellModel: true, + + + enableKeyNav: true, + + + preventWrap: false, + + + noSelection: { + row: -1, + column: -1 + }, + + constructor: function() { + this.addEvents( + + 'deselect', + + + 'select' + ); + this.callParent(arguments); + }, + + bindComponent: function(view) { + var me = this, + grid = view.ownerCt; + me.primaryView = view; + me.views = me.views || []; + me.views.push(view); + me.bindStore(view.getStore(), true); + + view.on({ + cellmousedown: me.onMouseDown, + refresh: me.onViewRefresh, + scope: me + }); + if (grid.optimizedColumnMove !== false) { + grid.on('columnmove', me.onColumnMove, me); + } + + if (me.enableKeyNav) { + me.initKeyNav(view); + } + }, + + initKeyNav: function(view) { + var me = this; + + if (!view.rendered) { + view.on('render', Ext.Function.bind(me.initKeyNav, me, [view], 0), me, {single: true}); + return; + } + + view.el.set({ + tabIndex: -1 + }); + + + + me.keyNav = new Ext.util.KeyNav({ + target: view.el, + ignoreInputFields: true, + up: me.onKeyUp, + down: me.onKeyDown, + right: me.onKeyRight, + left: me.onKeyLeft, + tab: me.onKeyTab, + scope: me + }); + }, + + getHeaderCt: function() { + var selection = this.getCurrentPosition(), + view = selection ? selection.view : this.primaryView; + + return view.headerCt; + }, + + onKeyUp: function(e) { + this.doMove('up', e); + }, + + onKeyDown: function(e) { + this.doMove('down', e); + }, + + onKeyLeft: function(e) { + this.doMove('left', e); + }, + + onKeyRight: function(e) { + this.doMove('right', e); + }, + + doMove: function(direction, e){ + this.keyNavigation = true; + this.move(direction, e); + this.keyNavigation = false; + }, + + onVetoUIEvent: Ext.emptyFn, + + select: function(pos, keepExisting, suppressEvent) { + var me = this, + row, + oldPos = me.getCurrentPosition(), + store = me.view.store; + + if (pos || pos === 0) { + if (pos.isModel) { + row = store.indexOf(pos); + if (row !== -1) { + pos = { + row: row, + column: oldPos ? oldPos.column : 0 + }; + } else { + pos = null; + } + } else if (typeof pos === 'number') { + pos = { + row: pos, + column: 0 + } + } + } + + if (pos) { + me.selectByPosition(pos, suppressEvent); + } else { + me.deselect(); + } + }, + + deselect: function(record, suppressEvent){ + this.selectByPosition(null, suppressEvent); + }, + + move: function(dir, e) { + var me = this, + pos = me.getCurrentPosition(), + newPos; + + if (pos) { + + newPos = pos.view.walkCells(pos, dir, e, me.preventWrap); + + if (newPos) { + newPos.view = pos.view; + return me.setCurrentPosition(newPos); + } + } + }, + + + getCurrentPosition: function() { + + + return this.selecting ? this.nextSelection : this.selection; + }, + + + setCurrentPosition: function(pos, suppressEvent) { + var me = this, + last = me.selection; + + + me.lastSelection = last; + if (last) { + + if (pos && (pos.record === last.record && pos.columnHeader === last.columnHeader && pos.view === last.view)) { + pos = null; + } else { + me.onCellDeselect(me.selection, suppressEvent); + } + } + + if (pos) { + me.nextSelection = new Ext.grid.CellContext(me.primaryView).setPosition(pos); + + + me.selecting = true; + me.onCellSelect(me.nextSelection, suppressEvent); + me.selecting = false; + + return (me.selection = me.nextSelection); + } + }, + + isCellSelected: function(view, row, column) { + var me = this, + testPos, + pos = me.getCurrentPosition(); + + if (pos && pos.view === view) { + testPos = new Ext.grid.CellContext(view).setPosition({ + row: row, + column: column + }); + return (testPos.record === pos.record) && (testPos.columnHeader === pos.columnHeader); + } + }, + + + onStoreRemove: function(store, records, indexes) { + var me = this, + pos = me.getCurrentPosition(), + i, length = records.length, + index, shuffleCount = 0; + + me.callParent(arguments); + if (pos) { + + if (indexes[0] > pos.row) { + return; + } + + for (i = 0; i < length; i++) { + index = indexes[i]; + + + if (index < pos.row) { + shuffleCount++; + } + + else { + break; + } + } + + + if (shuffleCount) { + pos.setRow(pos.row - shuffleCount); + } + } + }, + + + onMouseDown: function(view, cell, cellIndex, record, row, recordIndex, e) { + + + if (recordIndex !== -1) { + this.setCurrentPosition({ + view: view, + row: row, + column: cellIndex + }); + } + }, + + + + onCellSelect: function(position, supressEvent) { + if (position && position.row !== undefined && position.row > -1) { + this.doSelect(position.record, false, supressEvent); + } + }, + + + + onCellDeselect: function(position, supressEvent) { + if (position && position.row !== undefined) { + this.doDeselect(position.record, supressEvent); + } + }, + + onSelectChange: function(record, isSelected, suppressEvent, commitFn) { + var me = this, + pos, + eventName, + view; + + if (isSelected) { + pos = me.nextSelection; + eventName = 'select'; + } else { + pos = me.lastSelection || me.noSelection; + eventName = 'deselect'; + } + + + + + view = pos.view || me.primaryView; + + if ((suppressEvent || me.fireEvent('before' + eventName, me, record, pos.row, pos.column)) !== false && + commitFn() !== false) { + + if (isSelected) { + view.focusRow(record, true); + view.onCellSelect(pos); + } else { + view.onCellDeselect(pos); + delete me.selection; + } + + if (!suppressEvent) { + me.fireEvent(eventName, me, record, pos.row, pos.column); + } + } + }, + + + onKeyTab: function(e, t) { + var me = this, + pos = me.getCurrentPosition(), + editingPlugin; + + if (pos) { + editingPlugin = pos.view.editingPlugin; + + if (editingPlugin && me.wasEditing) { + me.onEditorTab(editingPlugin, e) + } else { + me.move(e.shiftKey ? 'left' : 'right', e); + } + } + }, + + onEditorTab: function(editingPlugin, e) { + var me = this, + direction = e.shiftKey ? 'left' : 'right', + position = me.move(direction, e); + + + if (position) { + + if (editingPlugin.startEdit(position.record, position.columnHeader)) { + me.wasEditing = false; + } + + + else { + me.wasEditing = true; + } + } + }, + + refresh: function() { + var pos = this.getCurrentPosition(), + selRowIdx; + + + if (pos && (selRowIdx = this.store.indexOf(this.selected.last())) !== -1) { + pos.row = selRowIdx; + } + }, + + + onColumnMove: function(headerCt, header, fromIdx, toIdx) { + var grid = headerCt.up('tablepanel'); + if (grid) { + this.onViewRefresh(grid.view); + } + }, + + onUpdate: function(record) { + var me = this, + pos; + + if (me.isSelected(record)) { + pos = me.selecting ? me.nextSelection : me.selection; + me.view.onCellSelect(pos); + } + }, + + onViewRefresh: function(view) { + var me = this, + pos = me.getCurrentPosition(), + headerCt = view.headerCt, + record, columnHeader; + + + + if (pos && pos.view === view) { + record = pos.record; + columnHeader = pos.columnHeader; + + + if (!columnHeader.isDescendantOf(headerCt)) { + + + + columnHeader = headerCt.queryById(columnHeader.id) || + headerCt.down('[text="' + columnHeader.text + '"]') || + headerCt.down('[dataIndex="' + columnHeader.dataIndex + '"]'); + } + + + + + + if (columnHeader && (view.store.indexOfId(record.getId()) !== -1)) { + me.setCurrentPosition({ + row: record, + column: columnHeader, + view: view + }); + } + } + }, + + selectByPosition: function(position, suppressEvent) { + this.setCurrentPosition(position, suppressEvent); + } +}); + + +Ext.define('Ext.selection.RowModel', { + extend: Ext.selection.Model , + alias: 'selection.rowmodel', + + + + deltaScroll: 5, + + + enableKeyNav: true, + + + ignoreRightMouseSelection: false, + + constructor: function() { + this.addEvents( + + 'beforedeselect', + + + 'beforeselect', + + + 'deselect', + + + 'select' + ); + this.views = []; + this.callParent(arguments); + }, + + bindComponent: function(view) { + var me = this; + + view.on({ + itemmousedown: me.onRowMouseDown, + itemclick: me.onRowClick, + scope: me + }); + + if (me.enableKeyNav) { + me.initKeyNav(view); + } + }, + + initKeyNav: function(view) { + var me = this; + + if (!view.rendered) { + view.on('render', Ext.Function.bind(me.initKeyNav, me, [view], 0), me, {single: true}); + return; + } + + + + view.el.set({ + tabIndex: -1 + }); + + + me.keyNav = new Ext.util.KeyNav({ + target: view, + ignoreInputFields: true, + eventName: 'itemkeydown', + processEvent: function(view, record, node, index, event) { + event.record = record; + event.recordIndex = index; + return event; + }, + up: me.onKeyUp, + down: me.onKeyDown, + right: me.onKeyRight, + left: me.onKeyLeft, + pageDown: me.onKeyPageDown, + pageUp: me.onKeyPageUp, + home: me.onKeyHome, + end: me.onKeyEnd, + space: me.onKeySpace, + enter: me.onKeyEnter, + scope: me + }); + }, + + onUpdate: function(record) { + var me = this, + view = me.view, + index; + + if (view && me.isSelected(record)) { + index = view.indexOf(record); + view.onRowSelect(index); + if (record === me.lastFocused) { + view.onRowFocus(index, true); + } + } + }, + + + + + getRowsVisible: function() { + var rowsVisible = false, + view = this.views[0], + firstRow = view.all.first(), + rowHeight, gridViewHeight; + + if (firstRow) { + rowHeight = firstRow.getHeight(); + gridViewHeight = view.el.getHeight(); + rowsVisible = Math.floor(gridViewHeight / rowHeight); + } + + return rowsVisible; + }, + + + onKeyEnd: function(e) { + var me = this, + view = me.views[0]; + + if (view.bufferedRenderer) { + + + + view.bufferedRenderer.scrollTo(me.store.getCount() - 1, false, function(newIdx, newRecord) { + me.afterKeyNavigate(e, newRecord) + }); + } else { + me.afterKeyNavigate(e, view.getRecord(view.all.getCount() - 1)) + } + }, + + + onKeyHome: function(e) { + var me = this, + view = me.views[0]; + + if (view.bufferedRenderer) { + + + + view.bufferedRenderer.scrollTo(0, false, function(newIdx, newRecord) { + me.afterKeyNavigate(e, newRecord) + }); + } else { + me.afterKeyNavigate(e, view.getRecord(0)); + } + }, + + + onKeyPageUp: function(e) { + var me = this, + view = me.views[0], + rowsVisible = me.getRowsVisible(), + newIdx, + newRecord; + + if (rowsVisible) { + + + + if (view.bufferedRenderer) { + newIdx = Math.max(e.recordIndex - rowsVisible, 0); + (me.lastKeyEvent || (me.lastKeyEvent = new Ext.EventObjectImpl())).setEvent(e.browserEvent); + view.bufferedRenderer.scrollTo(newIdx, false, me.afterBufferedScrollTo, me); + } else { + newRecord = view.walkRecs(e.record, -rowsVisible); + me.afterKeyNavigate(e, newRecord); + } + } + }, + + + onKeyPageDown: function(e) { + var me = this, + view = me.views[0], + rowsVisible = me.getRowsVisible(), + newIdx, + newRecord; + + if (rowsVisible) { + + + + if (view.bufferedRenderer) { + newIdx = Math.min(e.recordIndex + rowsVisible, me.store.getCount() - 1); + (me.lastKeyEvent || (me.lastKeyEvent = new Ext.EventObjectImpl())).setEvent(e.browserEvent); + view.bufferedRenderer.scrollTo(newIdx, false, me.afterBufferedScrollTo, me); + } else { + newRecord = view.walkRecs(e.record, rowsVisible); + me.afterKeyNavigate(e, newRecord); + } + } + }, + + + onKeySpace: function(e) { + var record = this.lastFocused; + + if (record) { + this.afterKeyNavigate(e, record); + } + }, + + onKeyEnter: Ext.emptyFn, + + + + + onKeyUp: function(e) { + var newRecord = this.views[0].walkRecs(e.record, -1); + + if (newRecord) { + this.afterKeyNavigate(e, newRecord); + } + }, + + + + + onKeyDown: function(e) { + var newRecord = this.views[0].walkRecs(e.record, 1); + + if (newRecord) { + this.afterKeyNavigate(e, newRecord); + } + }, + + afterBufferedScrollTo: function(newIdx, newRecord) { + this.afterKeyNavigate(this.lastKeyEvent, newRecord) + }, + + scrollByDeltaX: function(delta) { + var view = this.views[0], + section = view.up(), + hScroll = section.horizontalScroller; + + if (hScroll) { + hScroll.scrollByDeltaX(delta); + } + }, + + onKeyLeft: function(e) { + this.scrollByDeltaX(-this.deltaScroll); + }, + + onKeyRight: function(e) { + this.scrollByDeltaX(this.deltaScroll); + }, + + + + onRowMouseDown: function(view, record, item, index, e) { + var me = this; + + + if (index !== -1) { + if (!me.allowRightMouseSelection(e)) { + return; + } + + if (!me.isSelected(record)) { + me.mousedownAction = true; + me.processSelection(view, record, item, index, e); + } else { + me.mousedownAction = false; + } + } + }, + + + + + onVetoUIEvent: function(type, view, cell, rowIndex, cellIndex, e, record){ + if (type == 'mousedown') { + this.mousedownAction = !this.isSelected(record); + } + }, + + onRowClick: function(view, record, item, index, e) { + if (this.mousedownAction) { + this.mousedownAction = false; + } else { + this.processSelection(view, record, item, index, e); + } + }, + + processSelection: function(view, record, item, index, e) { + this.selectWithEvent(record, e); + }, + + + allowRightMouseSelection: function(e) { + var disallow = this.ignoreRightMouseSelection && e.button !== 0; + if (disallow) { + disallow = this.hasSelection(); + } + return !disallow; + }, + + + + onSelectChange: function(record, isSelected, suppressEvent, commitFn) { + var me = this, + views = me.views, + viewsLn = views.length, + rowIdx = views[0].indexOf(record), + eventName = isSelected ? 'select' : 'deselect', + i = 0; + + if ((suppressEvent || me.fireEvent('before' + eventName, me, record, rowIdx)) !== false && + commitFn() !== false) { + + for (; i < viewsLn; i++) { + if (isSelected) { + views[i].onRowSelect(rowIdx, suppressEvent); + } else { + views[i].onRowDeselect(rowIdx, suppressEvent); + } + } + + if (!suppressEvent) { + me.fireEvent(eventName, me, record, rowIdx); + } + } + }, + + + + onLastFocusChanged: function(oldFocused, newFocused, supressFocus) { + var views = this.views, + viewsLn = views.length, + rowIdx, + i = 0; + + if (oldFocused) { + rowIdx = views[0].indexOf(oldFocused); + if (rowIdx != -1) { + for (; i < viewsLn; i++) { + views[i].onRowFocus(rowIdx, false, true); + } + } + } + + if (newFocused) { + rowIdx = views[0].indexOf(newFocused); + if (rowIdx != -1) { + for (i = 0; i < viewsLn; i++) { + views[i].onRowFocus(rowIdx, true, supressFocus); + } + } + } + this.callParent(arguments); + }, + + onEditorTab: function(editingPlugin, e) { + var me = this, + view = me.views[0], + record = editingPlugin.getActiveRecord(), + header = editingPlugin.getActiveColumn(), + position = view.getPosition(record, header), + direction = e.shiftKey ? 'left' : 'right'; + + + + + + + do { + position = view.walkCells(position, direction, e, me.preventWrap); + } while (position && (!position.columnHeader.getEditor(record) || !editingPlugin.startEditByPosition(position))); + }, + + + getCurrentPosition: function() { + var firstSelection = this.selected.items[0]; + if (firstSelection) { + return new Ext.grid.CellContext(this.view).setPosition(this.store.indexOf(firstSelection), 0); + } + }, + + selectByPosition: function(position) { + this.select(this.store.getAt(position.row)); + }, + + + selectNext: function(keepExisting, suppressEvent) { + var me = this, + store = me.store, + selection = me.getSelection(), + record = selection[selection.length - 1], + index = me.views[0].indexOf(record) + 1, + success; + + if (index === store.getCount() || index === 0) { + success = false; + } else { + me.doSelect(index, keepExisting, suppressEvent); + success = true; + } + return success; + }, + + + selectPrevious: function(keepExisting, suppressEvent) { + var me = this, + selection = me.getSelection(), + record = selection[0], + index = me.views[0].indexOf(record) - 1, + success; + + if (index < 0) { + success = false; + } else { + me.doSelect(index, keepExisting, suppressEvent); + success = true; + } + return success; + }, + + isRowSelected: function(record, index) { + return this.isSelected(record); + } +}); + + +Ext.define('Ext.selection.TreeModel', { + extend: Ext.selection.RowModel , + alias: 'selection.treemodel', + + + + constructor: function(config) { + this.callParent(arguments); + + + + if (this.pruneRemoved) { + this.pruneRemoved = false; + this.pruneRemovedNodes = true; + } + }, + + + bindStore: function(store, initial) { + var me = this; + me.callParent(arguments); + + + + if (me.pruneRemovedNodes) { + me.view.mon(me.treeStore, { + remove: me.onNodeRemove, + scope: me + }); + } + }, + + onNodeRemove: function(parent, node, isMove) { + + if (!isMove) { + this.deselectDeletedRecords([node]); + } + }, + + onKeyRight: function(e, t) { + this.navExpand(e, t); + }, + + navExpand: function(e, t) { + var focused = this.getLastFocused(), + view = this.view; + + if (focused) { + + + + if (focused.isExpanded()) { + this.onKeyDown(e, t); + + } else if (focused.isExpandable()) { + + if (!view.isTreeView) { + view = view.lockingPartner; + } + + view.expand(focused); + } + } + }, + + onKeyLeft: function(e, t) { + this.navCollapse(e, t); + }, + + navCollapse: function(e, t) { + var me = this, + focused = this.getLastFocused(), + view = this.view, + parentNode; + + if (focused) { + parentNode = focused.parentNode; + + if (focused.isExpanded()) { + + if (!view.isTreeView) { + view = view.lockingPartner; + } + + view.collapse(focused); + + + } else if (parentNode && !parentNode.isRoot()) { + + if (e.shiftKey) { + me.selectRange(parentNode, focused, e.ctrlKey, 'up'); + me.setLastFocused(parentNode); + + } else if (e.ctrlKey) { + me.setLastFocused(parentNode); + + } else { + me.select(parentNode); + } + } + } + }, + + onKeySpace: function(e, t) { + if (e.record.data.checked != null) { + this.toggleCheck(e); + } else { + this.callParent(arguments); + } + }, + + onKeyEnter: function(e, t) { + if (e.record.data.checked != null) { + this.toggleCheck(e); + } else { + this.callParent(arguments); + } + }, + + toggleCheck: function(e) { + var view = this.view, + selected = this.getLastSelected(); + + e.stopEvent(); + if (selected) { + + if (!view.isTreeView) { + view = view.lockingPartner; + } + + view.onCheckChange(selected); + } + } +}); + + +Ext.define('Ext.slider.Thumb', { + + + topZIndex: 10000, + + + + + constructor: function(config) { + var me = this; + + + Ext.apply(me, config || {}, { + cls: Ext.baseCSSPrefix + 'slider-thumb', + + + constrain: false + }); + me.callParent([config]); + }, + + + render: function() { + var me = this; + me.el = me.slider.innerEl.insertFirst(me.getElConfig()); + me.onRender(); + }, + + onRender: function() { + if (this.disabled) { + this.disable(); + } + this.initEvents(); + }, + + getElConfig: function() { + var me = this, + slider = me.slider, + style = {}; + + style[slider.vertical ? 'bottom' : slider.horizontalProp] = slider.calculateThumbPosition(slider.normalizeValue(me.value)) + '%'; + return { + style: style, + id : this.id, + cls : this.cls + }; + }, + + + move: function(v, animate) { + var me = this, + el = me.el, + slider = me.slider, + styleProp = slider.vertical ? 'bottom' : slider.horizontalProp, + to, + from; + + v += '%'; + + if (!animate) { + el.dom.style[styleProp] = v; + } else { + to = {}; + to[styleProp] = v; + + if (!Ext.supports.GetPositionPercentage) { + from = {}; + from[styleProp] = el.dom.style[styleProp]; + } + + new Ext.fx.Anim({ + target: el, + duration: 350, + from: from, + to: to + }); + } + }, + + + bringToFront: function() { + this.el.setStyle('zIndex', this.topZIndex); + }, + + + sendToBack: function() { + this.el.setStyle('zIndex', ''); + }, + + + enable: function() { + var me = this; + + me.disabled = false; + if (me.el) { + me.el.removeCls(me.slider.disabledCls); + } + }, + + + disable: function() { + var me = this; + + me.disabled = true; + if (me.el) { + me.el.addCls(me.slider.disabledCls); + } + }, + + + initEvents: function() { + var me = this, + el = me.el; + + me.tracker = new Ext.dd.DragTracker({ + onBeforeStart: Ext.Function.bind(me.onBeforeDragStart, me), + onStart : Ext.Function.bind(me.onDragStart, me), + onDrag : Ext.Function.bind(me.onDrag, me), + onEnd : Ext.Function.bind(me.onDragEnd, me), + tolerance : 3, + autoStart : 300, + overCls : Ext.baseCSSPrefix + 'slider-thumb-over' + }); + + me.tracker.initEl(el); + }, + + + onBeforeDragStart : function(e) { + if (this.disabled) { + return false; + } else { + this.slider.promoteThumb(this); + return true; + } + }, + + + onDragStart: function(e){ + var me = this, + slider = me.slider; + + slider.onDragStart(me, e); + me.el.addCls(Ext.baseCSSPrefix + 'slider-thumb-drag'); + me.dragging = me.slider.dragging = true; + me.dragStartValue = me.value; + + slider.fireEvent('dragstart', slider, e, me); + }, + + + onDrag: function(e) { + var me = this, + slider = me.slider, + index = me.index, + newValue = me.getValueFromTracker(), + above, + below; + + + if (newValue !== undefined) { + if (me.constrain) { + above = slider.thumbs[index + 1]; + below = slider.thumbs[index - 1]; + + if (below !== undefined && newValue <= below.value) { + newValue = below.value; + } + + if (above !== undefined && newValue >= above.value) { + newValue = above.value; + } + } + slider.setValue(index, newValue, false); + slider.fireEvent('drag', slider, e, me); + } + }, + + getValueFromTracker: function() { + var slider = this.slider, + trackPoint = slider.getTrackpoint(this.tracker.getXY()); + + + if (trackPoint !== undefined) { + return slider.reversePixelValue(trackPoint); + } + }, + + + onDragEnd: function(e) { + var me = this, + slider = me.slider, + value = me.value; + + slider.onDragEnd(me, e); + me.el.removeCls(Ext.baseCSSPrefix + 'slider-thumb-drag'); + + me.dragging = slider.dragging = false; + slider.fireEvent('dragend', slider, e); + + if (me.dragStartValue != value) { + slider.fireEvent('changecomplete', slider, value, me); + } + }, + + destroy: function() { + Ext.destroy(this.tracker); + } +}); + + +Ext.define('Ext.slider.Tip', { + extend: Ext.tip.Tip , + minWidth: 10, + alias: 'widget.slidertip', + + + offsets : null, + + + align: null, + + + position: '', + + defaultVerticalPosition: 'left', + + defaultHorizontalPosition: 'top', + + isSliderTip: true, + + init: function(slider) { + var me = this, + align, + offsets; + + if (!me.position) { + me.position = slider.vertical ? me.defaultVerticalPosition : me.defaultHorizontalPosition; + } + + switch (me.position) { + case 'top': + offsets = [0, -10]; + align = 'b-t?'; + break; + case 'bottom': + offsets = [0, 10]; + align = 't-b?'; + break; + case 'left': + offsets = [-10, 0]; + align = 'r-l?'; + break; + case 'right': + offsets = [10, 0]; + align = 'l-r?'; + } + + if (!me.align) { + me.align = align; + } + + if (!me.offsets) { + me.offsets = offsets; + } + + slider.on({ + scope : me, + dragstart: me.onSlide, + drag : me.onSlide, + dragend : me.hide, + destroy : me.destroy + }); + }, + + onSlide : function(slider, e, thumb) { + var me = this; + me.show(); + me.update(me.getText(thumb)); + me.el.alignTo(thumb.el, me.align, me.offsets); + }, + + + getText : function(thumb) { + return String(thumb.value); + } +}); + + +Ext.define('Ext.slider.Multi', { + extend: Ext.form.field.Base , + alias: 'widget.multislider', + alternateClassName: 'Ext.slider.MultiSlider', + + + + + + + + + + + childEls: [ + 'endEl', 'innerEl' + ], + + + fieldSubTpl: [ + '
    ', + '', + '
    ', + { + renderThumbs: function(out, values) { + var me = values.$comp, + i = 0, + thumbs = me.thumbs, + len = thumbs.length, + thumb, + thumbConfig; + + for (; i < len; i++) { + thumb = thumbs[i]; + thumbConfig = thumb.getElConfig(); + thumbConfig.id = me.id + '-thumb-' + i; + Ext.DomHelper.generateMarkup(thumbConfig, out); + } + }, + disableFormats: true + } + ], + + horizontalProp: 'left', + + + + + + + vertical: false, + + + minValue: 0, + + + maxValue: 100, + + + decimalPrecision: 0, + + + keyIncrement: 1, + + + increment: 0, + + + + + clickRange: [5,15], + + + clickToChange : true, + + + animate: true, + + + dragging: false, + + + constrainThumbs: true, + + componentLayout: 'sliderfield', + + + useTips : true, + + + tipText : null, + + ariaRole: 'slider', + + + initValue: function() { + var me = this, + extValue = Ext.value, + + values = extValue(me.values, [extValue(me.value, extValue(me.minValue, 0))]), + i = 0, + len = values.length; + + + me.originalValue = values; + + + for (; i < len; i++) { + me.addThumb(values[i]); + } + }, + + + initComponent : function() { + var me = this, + tipPlug, + hasTip, + p, pLen, plugins; + + + me.thumbs = []; + + me.keyIncrement = Math.max(me.increment, me.keyIncrement); + + me.addEvents( + + 'beforechange', + + + 'change', + + + 'changecomplete', + + + 'dragstart', + + + 'drag', + + + 'dragend' + ); + + me.callParent(); + + + if (me.useTips) { + if (Ext.isObject(me.useTips)) { + tipPlug = Ext.apply({}, me.useTips); + } else { + tipPlug = me.tipText ? {getText: me.tipText} : {}; + } + + plugins = me.plugins = me.plugins || []; + pLen = plugins.length; + + for (p = 0; p < pLen; p++) { + if (plugins[p].isSliderTip) { + hasTip = true; + break; + } + } + + if (!hasTip) { + me.plugins.push(new Ext.slider.Tip(tipPlug)); + } + } + }, + + + addThumb: function(value) { + var me = this, + thumb = new Ext.slider.Thumb({ + ownerCt : me, + ownerLayout : me.getComponentLayout(), + value : value, + slider : me, + index : me.thumbs.length, + constrain : me.constrainThumbs, + disabled : !!me.readOnly + }); + + me.thumbs.push(thumb); + + + if (me.rendered) { + thumb.render(); + } + + return thumb; + }, + + + promoteThumb: function(topThumb) { + var thumbs = this.thumbs, + ln = thumbs.length, + zIndex, thumb, i; + + for (i = 0; i < ln; i++) { + thumb = thumbs[i]; + + if (thumb == topThumb) { + thumb.bringToFront(); + } else { + thumb.sendToBack(); + } + } + }, + + + getSubTplData : function() { + var me = this; + + return Ext.apply(me.callParent(), { + $comp: me, + vertical: me.vertical ? Ext.baseCSSPrefix + 'slider-vert' : Ext.baseCSSPrefix + 'slider-horz', + minValue: me.minValue, + maxValue: me.maxValue, + value: me.value, + childElCls: '' + }); + }, + + onRender : function() { + var me = this, + thumbs = me.thumbs, + len = thumbs.length, + i = 0, + thumb; + + me.callParent(arguments); + + for (i = 0; i < len; i++) { + thumb = thumbs[i]; + thumb.el = me.el.getById(me.id + '-thumb-' + i); + thumb.onRender(); + } + }, + + + initEvents : function() { + var me = this; + me.mon(me.el, { + scope : me, + mousedown: me.onMouseDown, + keydown : me.onKeyDown + }); + }, + + onDragStart: Ext.emptyFn, + onDragEnd: Ext.emptyFn, + + + getTrackpoint : function(xy) { + var me = this, + vertical = me.vertical, + sliderTrack = me.innerEl, + trackLength, result, + positionProperty; + + if (vertical) { + positionProperty = 'top'; + trackLength = sliderTrack.getHeight(); + } else { + positionProperty = me.horizontalProp; + trackLength = sliderTrack.getWidth(); + } + xy = me.transformTrackPoints(sliderTrack.translatePoints(xy)); + result = Ext.Number.constrain(xy[positionProperty], 0, trackLength); + return vertical ? trackLength - result : result; + }, + + transformTrackPoints: Ext.identityFn, + + + onMouseDown : function(e) { + var me = this, + thumbClicked = false, + i = 0, + thumbs = me.thumbs, + len = thumbs.length, + trackPoint; + + if (me.disabled) { + return; + } + + + for (; i < len; i++) { + thumbClicked = thumbClicked || e.target == thumbs[i].el.dom; + } + + if (me.clickToChange && !thumbClicked) { + trackPoint = me.getTrackpoint(e.getXY()); + if (trackPoint !== undefined) { + me.onClickChange(trackPoint); + } + } + me.focus(); + }, + + + onClickChange : function(trackPoint) { + var me = this, + thumb, index; + + + + + + thumb = me.getNearest(trackPoint); + if (!thumb.disabled) { + index = thumb.index; + me.setValue(index, Ext.util.Format.round(me.reversePixelValue(trackPoint), me.decimalPrecision), undefined, true); + } + }, + + + getNearest: function(trackPoint) { + var me = this, + clickValue = me.reversePixelValue(trackPoint), + nearestDistance = me.getRange() + 5, + nearest = null, + thumbs = me.thumbs, + i = 0, + len = thumbs.length, + thumb, + value, + dist; + + for (; i < len; i++) { + thumb = me.thumbs[i]; + value = thumb.value; + dist = Math.abs(value - clickValue); + + if (Math.abs(dist <= nearestDistance)) { + nearest = thumb; + nearestDistance = dist; + } + } + return nearest; + }, + + + onKeyDown : function(e) { + + var me = this, + k, + val; + + if(me.disabled || me.thumbs.length !== 1) { + e.preventDefault(); + return; + } + k = e.getKey(); + + switch(k) { + case e.UP: + case e.RIGHT: + e.stopEvent(); + val = e.ctrlKey ? me.maxValue : me.getValue(0) + me.keyIncrement; + me.setValue(0, val, undefined, true); + break; + case e.DOWN: + case e.LEFT: + e.stopEvent(); + val = e.ctrlKey ? me.minValue : me.getValue(0) - me.keyIncrement; + me.setValue(0, val, undefined, true); + break; + default: + e.preventDefault(); + } + }, + + + normalizeValue : function(v) { + var me = this, + snapFn = me.zeroBasedSnapping ? 'snap' : 'snapInRange'; + + v = Ext.Number[snapFn](v, me.increment, me.minValue, me.maxValue); + v = Ext.util.Format.round(v, me.decimalPrecision); + v = Ext.Number.constrain(v, me.minValue, me.maxValue); + return v; + }, + + + setMinValue : function(val) { + var me = this, + thumbs = me.thumbs, + len = thumbs.length, + thumb, i; + + me.minValue = val; + if (me.rendered) { + me.inputEl.dom.setAttribute('aria-valuemin', val); + } + + for (i = 0; i < len; ++i) { + thumb = thumbs[i]; + if (thumb.value < val) { + me.setValue(i, val, false); + } + } + me.syncThumbs(); + }, + + + setMaxValue : function(val) { + var me = this, + thumbs = me.thumbs, + len = thumbs.length, + thumb, i; + + me.maxValue = val; + if (me.rendered) { + me.inputEl.dom.setAttribute('aria-valuemax', val); + } + + for (i = 0; i < len; ++i) { + thumb = thumbs[i]; + if (thumb.value > val) { + me.setValue(i, val, false); + } + } + me.syncThumbs(); + }, + + + setValue : function(index, value, animate, changeComplete) { + var me = this, + thumbs = me.thumbs, + thumb, len, i, values; + + if (Ext.isArray(index)) { + values = index; + animate = value; + + for (i = 0, len = values.length; i < len; ++i) { + thumb = thumbs[i]; + if (thumb) { + me.setValue(i, values[i], animate); + } + } + return me; + } + + thumb = me.thumbs[index]; + + value = me.normalizeValue(value); + + if (value !== thumb.value && me.fireEvent('beforechange', me, value, thumb.value, thumb) !== false) { + thumb.value = value; + if (me.rendered) { + + + me.inputEl.set({ + 'aria-valuenow': value, + 'aria-valuetext': value + }); + + thumb.move(me.calculateThumbPosition(value), Ext.isDefined(animate) ? animate !== false : me.animate); + + me.fireEvent('change', me, value, thumb); + me.checkDirty(); + if (changeComplete) { + me.fireEvent('changecomplete', me, value, thumb); + } + } + } + return me; + }, + + + calculateThumbPosition : function(v) { + var me = this, + minValue = me.minValue, + pos = (v - minValue) / me.getRange() * 100; + + + if (isNaN(pos)) { + pos = minValue; + } + + return pos; + }, + + + getRatio : function() { + var me = this, + innerEl = me.innerEl, + trackLength = me.vertical ? innerEl.getHeight() : innerEl.getWidth(), + valueRange = me.getRange(); + + return valueRange === 0 ? trackLength : (trackLength / valueRange); + }, + + getRange: function(){ + return this.maxValue - this.minValue; + }, + + + reversePixelValue : function(pos) { + return this.minValue + (pos / this.getRatio()); + }, + + + reversePercentageValue : function(pos) { + return this.minValue + this.getRange() * (pos / 100); + }, + + + onDisable: function() { + var me = this, + i = 0, + thumbs = me.thumbs, + len = thumbs.length, + thumb, + el, + xy; + + me.callParent(); + + for (; i < len; i++) { + thumb = thumbs[i]; + el = thumb.el; + + thumb.disable(); + + if(Ext.isIE) { + + + xy = el.getXY(); + el.hide(); + + me.innerEl.addCls(me.disabledCls).dom.disabled = true; + + if (!me.thumbHolder) { + me.thumbHolder = me.endEl.createChild({cls: Ext.baseCSSPrefix + 'slider-thumb ' + me.disabledCls}); + } + + me.thumbHolder.show().setXY(xy); + } + } + }, + + + onEnable: function() { + var me = this, + i = 0, + thumbs = me.thumbs, + len = thumbs.length, + thumb, + el; + + this.callParent(); + + for (; i < len; i++) { + thumb = thumbs[i]; + el = thumb.el; + + thumb.enable(); + + if (Ext.isIE) { + me.innerEl.removeCls(me.disabledCls).dom.disabled = false; + + if (me.thumbHolder) { + me.thumbHolder.hide(); + } + + el.show(); + me.syncThumbs(); + } + } + }, + + + syncThumbs : function() { + if (this.rendered) { + var thumbs = this.thumbs, + length = thumbs.length, + i = 0; + + for (; i < length; i++) { + thumbs[i].move(this.calculateThumbPosition(thumbs[i].value)); + } + } + }, + + + getValue : function(index) { + return Ext.isNumber(index) ? this.thumbs[index].value : this.getValues(); + }, + + + getValues: function() { + var values = [], + i = 0, + thumbs = this.thumbs, + len = thumbs.length; + + for (; i < len; i++) { + values.push(thumbs[i].value); + } + + return values; + }, + + getSubmitValue: function() { + var me = this; + return (me.disabled || !me.submitValue) ? null : me.getValue(); + }, + + reset: function() { + var me = this, + arr = [].concat(me.originalValue), + a = 0, + aLen = arr.length, + val; + + for (; a < aLen; a++) { + val = arr[a]; + + me.setValue(a, val); + } + + me.clearInvalid(); + + delete me.wasValid; + }, + + setReadOnly: function(readOnly){ + var me = this, + thumbs = me.thumbs, + len = thumbs.length, + i = 0; + + me.callParent(arguments); + readOnly = me.readOnly; + + for (; i < len; ++i) { + if (readOnly) { + thumbs[i].disable(); + } else { + thumbs[i].enable(); + } + + } + + }, + + + beforeDestroy : function() { + var me = this, + thumbs = me.thumbs, + t = 0, + tLen = thumbs.length, + thumb; + + Ext.destroy(me.innerEl, me.endEl, me.focusEl); + + for (; t < tLen; t++) { + thumb = thumbs[t]; + + Ext.destroy(thumb); + } + + me.callParent(); + } +}); + + +Ext.define('Ext.tab.Tab', { + extend: Ext.button.Button , + alias: 'widget.tab', + + + + + + + isTab: true, + + baseCls: Ext.baseCSSPrefix + 'tab', + closeElOverCls: Ext.baseCSSPrefix + 'tab-close-btn-over', + + + activeCls: 'active', + + + + + closableCls: 'closable', + + + closable: true, + + + + closeText: 'Close Tab', + + + + active: false, + + + + childEls: [ + 'closeEl' + ], + + scale: false, + + position: 'top', + + initComponent: function() { + var me = this; + + me.addEvents( + + 'activate', + + + 'deactivate', + + + 'beforeclose', + + + 'close' + ); + + me.callParent(arguments); + + if (me.card) { + me.setCard(me.card); + } + + me.overCls = ['over', me.position + '-over']; + }, + + getTemplateArgs: function() { + var me = this, + result = me.callParent(); + + result.closable = me.closable; + result.closeText = me.closeText; + + return result; + }, + + getFramingInfoCls: function(){ + return this.baseCls + '-' + this.ui + '-' + this.position; + }, + + beforeRender: function() { + var me = this, + tabBar = me.up('tabbar'), + tabPanel = me.up('tabpanel'); + + me.callParent(); + + me.addClsWithUI(me.position); + + if (me.active) { + me.addClsWithUI([me.activeCls, me.position + '-' + me.activeCls]); + } + + + + + me.syncClosableUI(); + + + if (!me.minWidth) { + me.minWidth = (tabBar) ? tabBar.minTabWidth : me.minWidth; + if (!me.minWidth && tabPanel) { + me.minWidth = tabPanel.minTabWidth; + } + if (me.minWidth && me.iconCls) { + me.minWidth += 25; + } + } + if (!me.maxWidth) { + me.maxWidth = (tabBar) ? tabBar.maxTabWidth : me.maxWidth; + if (!me.maxWidth && tabPanel) { + me.maxWidth = tabPanel.maxTabWidth; + } + } + }, + + onRender: function() { + var me = this; + + me.setElOrientation(); + + me.callParent(arguments); + + if (me.closable) { + me.closeEl.addClsOnOver(me.closeElOverCls); + } + + me.keyNav = new Ext.util.KeyNav(me.el, { + enter: me.onEnterKey, + del: me.onDeleteKey, + scope: me + }); + }, + + setElOrientation: function() { + var position = this.position; + + if (position === 'left' || position === 'right') { + this.el.setVertical(position === 'right' ? 90 : 270); + } + }, + + + enable : function(silent) { + var me = this; + + me.callParent(arguments); + + me.removeClsWithUI(me.position + '-disabled'); + + return me; + }, + + + disable : function(silent) { + var me = this; + + me.callParent(arguments); + + me.addClsWithUI(me.position + '-disabled'); + + return me; + }, + + onDestroy: function() { + var me = this; + + Ext.destroy(me.keyNav); + delete me.keyNav; + + me.callParent(arguments); + }, + + + setClosable: function(closable) { + var me = this; + + + closable = (!arguments.length || !!closable); + + if (me.closable != closable) { + me.closable = closable; + + + if (me.card) { + me.card.closable = closable; + } + + me.syncClosableUI(); + + if (me.rendered) { + me.syncClosableElements(); + + + me.updateLayout(); + } + } + }, + + + syncClosableElements: function () { + var me = this, + closeEl = me.closeEl; + + if (me.closable) { + if (!closeEl) { + closeEl = me.closeEl = me.btnWrap.insertSibling({ + tag: 'a', + cls: me.baseCls + '-close-btn', + href: '#', + title: me.closeText + }, 'after'); + } + closeEl.addClsOnOver(me.closeElOverCls); + } else if (closeEl) { + closeEl.remove(); + delete me.closeEl; + } + }, + + + syncClosableUI: function () { + var me = this, + classes = [me.closableCls, me.closableCls + '-' + me.position]; + + if (me.closable) { + me.addClsWithUI(classes); + } else { + me.removeClsWithUI(classes); + } + }, + + + setCard: function(card) { + var me = this; + + me.card = card; + me.setText(me.title || card.title); + me.setIconCls(me.iconCls || card.iconCls); + me.setIcon(me.icon || card.icon); + me.setGlyph(me.glyph || card.glyph); + }, + + + onCloseClick: function() { + var me = this; + + if (me.fireEvent('beforeclose', me) !== false) { + if (me.tabBar) { + if (me.tabBar.closeTab(me) === false) { + + return; + } + } else { + + me.fireClose(); + } + } + }, + + + fireClose: function(){ + this.fireEvent('close', this); + }, + + + onEnterKey: function(e) { + var me = this; + + if (me.tabBar) { + me.tabBar.onClick(e, me.el); + } + }, + + + onDeleteKey: function(e) { + if (this.closable) { + this.onCloseClick(); + } + }, + + + activate : function(supressEvent) { + var me = this; + + me.active = true; + me.addClsWithUI([me.activeCls, me.position + '-' + me.activeCls]); + + if (supressEvent !== true) { + me.fireEvent('activate', me); + } + }, + + + deactivate : function(supressEvent) { + var me = this; + + me.active = false; + me.removeClsWithUI([me.activeCls, me.position + '-' + me.activeCls]); + + if (supressEvent !== true) { + me.fireEvent('deactivate', me); + } + } +}); + + +Ext.define('Ext.util.Point', { + + + extend: Ext.util.Region , + + statics: { + + + fromEvent: function(e) { + e = e.browserEvent || e; + e = (e.changedTouches && e.changedTouches.length > 0) ? e.changedTouches[0] : e; + return new this(e.pageX, e.pageY); + } + }, + + + + + constructor: function(x, y) { + this.callParent([y, x, y, x]); + }, + + + toString: function() { + return "Point[" + this.x + "," + this.y + "]"; + }, + + + equals: function(p) { + return (this.x == p.x && this.y == p.y); + }, + + + isWithin: function(p, threshold) { + if (!Ext.isObject(threshold)) { + threshold = { + x: threshold, + y: threshold + }; + } + + return (this.x <= p.x + threshold.x && this.x >= p.x - threshold.x && + this.y <= p.y + threshold.y && this.y >= p.y - threshold.y); + }, + + + isContainedBy: function(region) { + if (!(region instanceof Ext.util.Region)) { + region = Ext.get(region.el || region).getRegion(); + } + return region.contains(this); + }, + + + roundedEquals: function(p) { + return (Math.round(this.x) == Math.round(p.x) && Math.round(this.y) == Math.round(p.y)); + } +}, function() { + + this.prototype.translate = Ext.util.Region.prototype.translateBy; +}); + + +Ext.define('Ext.tab.Bar', { + extend: Ext.panel.Header , + alias: 'widget.tabbar', + baseCls: Ext.baseCSSPrefix + 'tab-bar', + + + + + + + + isTabBar: true, + + + + + + + defaultType: 'tab', + + + plain: false, + + childEls: [ + 'body', 'strip' + ], + + + renderTpl: [ + '
    {baseCls}-body-{ui} {parent.baseCls}-body-{parent.ui}-{.}" style="{bodyStyle}">', + '{%this.renderContainer(out,values)%}', + '
    ', + '
    {baseCls}-strip-{ui}', + ' {parent.baseCls}-strip-{parent.ui}-{.}', + '">', + '
    ' + ], + + + + + + _reverseDockNames: { + left: 'right', + right: 'left' + }, + + + initComponent: function() { + var me = this; + + if (me.plain) { + me.addCls(me.baseCls + '-plain'); + } + + me.addClsWithUI(me.orientation); + + me.addEvents( + + 'change' + ); + + + me.callParent(arguments); + Ext.merge(me.layout, me.initialConfig.layout); + + + me.layout.align = (me.orientation == 'vertical') ? 'left' : 'top'; + me.layout.overflowHandler = new Ext.layout.container.boxOverflow.Scroller(me.layout); + + me.remove(me.titleCmp); + delete me.titleCmp; + + Ext.apply(me.renderData, { + bodyCls: me.bodyCls, + dock: me.dock + }); + }, + + onRender: function() { + var me = this; + + me.callParent(); + + if (me.orientation === 'vertical' && (Ext.isIE8 || Ext.isIE9) && Ext.isStrict) { + me.el.on({ + mousemove: me.onMouseMove, + scope: me + }); + } + }, + + afterRender: function() { + var layout = this.layout; + + this.callParent(); + if (Ext.isIE9 && Ext.isStrict && this.orientation === 'vertical') { + + + layout.innerCt.on('scroll', function() { + layout.innerCt.dom.scrollLeft = 0; + }); + } + }, + + afterLayout: function() { + this.adjustTabPositions(); + this.callParent(arguments); + }, + + adjustTabPositions: function() { + var items = this.items.items, + i = items.length, + tab; + + + + + + + if (!Ext.isIE9m) { + if (this.dock === 'right') { + + + while (i--) { + tab = items[i]; + if (tab.isVisible()) { + tab.el.setStyle('left', tab.lastBox.width + 'px'); + } + } + } else if (this.dock === 'left') { + + + while (i--) { + tab = items[i]; + if (tab.isVisible()) { + tab.el.setStyle('left', -tab.lastBox.height + 'px'); + } + } + } + } + }, + + getLayout: function() { + var me = this; + me.layout.type = (me.orientation === 'horizontal') ? 'hbox' : 'vbox'; + return me.callParent(arguments); + }, + + + onAdd: function(tab) { + tab.position = this.dock; + this.callParent(arguments); + }, + + onRemove: function(tab) { + var me = this; + + if (tab === me.previousTab) { + me.previousTab = null; + } + me.callParent(arguments); + }, + + afterComponentLayout : function(width) { + var me = this, + needsScroll = me.needsScroll; + + me.callParent(arguments); + + if (needsScroll) { + me.layout.overflowHandler.scrollToItem(me.activeTab); + } + delete me.needsScroll; + }, + + + onClick: function(e, target) { + var me = this, + tabPanel = me.tabPanel, + tabEl, tab, isCloseClick, tabInfo; + + if (e.getTarget('.' + Ext.baseCSSPrefix + 'box-scroller')) { + return; + } + + if (me.orientation === 'vertical' && (Ext.isIE8 || Ext.isIE9) && Ext.isStrict) { + tabInfo = me.getTabInfoFromPoint(e.getXY()); + tab = tabInfo.tab; + isCloseClick = tabInfo.close; + } else { + + tabEl = e.getTarget('.' + Ext.tab.Tab.prototype.baseCls); + tab = tabEl && Ext.getCmp(tabEl.id); + isCloseClick = tab && tab.closeEl && (target === tab.closeEl.dom); + } + + if (isCloseClick) { + e.preventDefault(); + } + if (tab && tab.isDisabled && !tab.isDisabled()) { + if (tab.closable && isCloseClick) { + tab.onCloseClick(); + } else { + if (tabPanel) { + + tabPanel.setActiveTab(tab.card); + } else { + me.setActiveTab(tab); + } + tab.focus(); + } + } + }, + + + onMouseMove: function(e) { + var me = this, + overTab = me._overTab, + tabInfo, tab; + + if (e.getTarget('.' + Ext.baseCSSPrefix + 'box-scroller')) { + return; + } + + tabInfo = me.getTabInfoFromPoint(e.getXY()); + tab = tabInfo.tab; + + if (tab !== overTab) { + if (overTab && overTab.rendered) { + overTab.onMouseLeave(e); + me._overTab = null; + } + if (tab) { + tab.onMouseEnter(e); + me._overTab = tab; + if (!tab.disabled) { + me.el.setStyle('cursor', 'pointer'); + } + } else { + me.el.setStyle('cursor', 'default'); + } + } + }, + + onMouseLeave: function(e) { + var overTab = this._overTab; + + if (overTab && overTab.rendered) { + overTab.onMouseLeave(e); + } + }, + + + + + + + + getTabInfoFromPoint: function(xy) { + var me = this, + tabs = me.items.items, + length = tabs.length, + innerCt = me.layout.innerCt, + innerCtXY = innerCt.getXY(), + point = new Ext.util.Point(xy[0], xy[1]), + i = 0, + lastBox, tabRegion, closeEl, close, closeXY, closeX, closeY, closeWidth, + closeHeight, tabX, tabY, tabWidth, tabHeight, closeRegion, isTabReversed, + direction, tab; + + for (; i < length; i++) { + lastBox = tabs[i].lastBox; + tabX = innerCtXY[0] + lastBox.x; + tabY = innerCtXY[1] - innerCt.dom.scrollTop + lastBox.y; + tabWidth = lastBox.width; + tabHeight = lastBox.height; + tabRegion = new Ext.util.Region( + tabY, + tabX + tabWidth, + tabY + tabHeight, + tabX + ); + if (tabRegion.contains(point)) { + tab = tabs[i]; + closeEl = tab.closeEl; + if (closeEl) { + closeXY = closeEl.getXY(); + closeWidth = closeEl.getWidth(); + closeHeight = closeEl.getHeight(); + + + + if (me._isTabReversed === undefined) { + me._isTabReversed = isTabReversed = + + + (tab.btnWrap.dom.currentStyle.filter.indexOf('rotation=2') !== -1); + } + + direction = isTabReversed ? this._reverseDockNames[me.dock] : me.dock; + + if (direction === 'right') { + closeX = tabX + tabWidth - ((closeXY[1] - tabY) + closeEl.getHeight()); + closeY = tabY + (closeXY[0] - tabX); + } else { + closeX = tabX + (closeXY[1] - tabY); + closeY = tabY + tabX + tabHeight - closeXY[0] - closeEl.getWidth(); + } + + closeRegion = new Ext.util.Region( + closeY, + closeX + closeWidth, + closeY + closeHeight, + closeX + ); + + close = closeRegion.contains(point); + } + break; + } + } + + return { + tab: tab, + close: close + }; + }, + + + closeTab: function(toClose) { + var me = this, + card = toClose.card, + tabPanel = me.tabPanel, + toActivate; + + if (card && card.fireEvent('beforeclose', card) === false) { + return false; + } + + + + + toActivate = me.findNextActivatable(toClose); + + + + Ext.suspendLayouts(); + + if (tabPanel && card) { + + + delete toClose.ownerCt; + + + + card.fireEvent('close', card); + tabPanel.remove(card); + + + if (!tabPanel.getComponent(card)) { + + toClose.fireClose(); + me.remove(toClose); + } else { + + toClose.ownerCt = me; + Ext.resumeLayouts(true); + return false; + } + } + + + if (toActivate) { + + + if (tabPanel) { + tabPanel.setActiveTab(toActivate.card); + } else { + me.setActiveTab(toActivate); + } + toActivate.focus(); + } + Ext.resumeLayouts(true); + }, + + + + findNextActivatable: function(toClose) { + var me = this; + if (toClose.active && me.items.getCount() > 1) { + return (me.previousTab && me.previousTab !== toClose && !me.previousTab.disabled) ? me.previousTab : (toClose.next('tab[disabled=false]') || toClose.prev('tab[disabled=false]')); + } + }, + + + setActiveTab: function(tab, initial) { + var me = this; + + if (!tab.disabled && tab !== me.activeTab) { + if (me.activeTab) { + if (me.activeTab.isDestroyed) { + me.previousTab = null; + } else { + me.previousTab = me.activeTab; + me.activeTab.deactivate(); + } + } + tab.activate(); + + me.activeTab = tab; + me.needsScroll = true; + + + + if (!initial) { + me.fireEvent('change', me, tab, tab.card); + + me.updateLayout(); + } + } + } +}); + + +Ext.define('Ext.tree.Column', { + extend: Ext.grid.column.Column , + alias: 'widget.treecolumn', + + tdCls: Ext.baseCSSPrefix + 'grid-cell-treecolumn', + + autoLock: true, + lockable: false, + draggable: false, + hideable: false, + + iconCls: Ext.baseCSSPrefix + 'tree-icon', + checkboxCls: Ext.baseCSSPrefix + 'tree-checkbox', + elbowCls: Ext.baseCSSPrefix + 'tree-elbow', + expanderCls: Ext.baseCSSPrefix + 'tree-expander', + textCls: Ext.baseCSSPrefix + 'tree-node-text', + innerCls: Ext.baseCSSPrefix + 'grid-cell-inner-treecolumn', + isTreeColumn: true, + + cellTpl: [ + '', + 'lineempty"/>', + '', + '-end-plus {expanderCls}"/>', + '', + 'aria-checked="true" ', + 'class="{childCls} {checkboxCls} {checkboxCls}-checked"/>', + '', + 'leafparent {iconCls}"', + 'style="background-image:url({icon})"/>', + '', + '{value}', + '', + '{value}', + '' + ], + + initComponent: function() { + var me = this; + + me.origRenderer = me.renderer; + me.origScope = me.scope || window; + + me.renderer = me.treeRenderer; + me.scope = me; + + me.callParent(); + }, + + treeRenderer: function(value, metaData, record, rowIdx, colIdx, store, view){ + var me = this, + cls = record.get('cls'), + renderer = me.origRenderer, + data = record.data, + parent = record.parentNode, + rootVisible = view.rootVisible, + lines = [], + parentData; + + if (cls) { + metaData.tdCls += ' ' + cls; + } + + while (parent && (rootVisible || parent.data.depth > 0)) { + parentData = parent.data; + lines[rootVisible ? parentData.depth : parentData.depth - 1] = + parentData.isLast ? 0 : 1; + parent = parent.parentNode; + } + + return me.getTpl('cellTpl').apply({ + record: record, + baseIconCls: me.iconCls, + iconCls: data.iconCls, + icon: data.icon, + checkboxCls: me.checkboxCls, + checked: data.checked, + elbowCls: me.elbowCls, + expanderCls: me.expanderCls, + textCls: me.textCls, + leaf: data.leaf, + expandable: record.isExpandable(), + isLast: data.isLast, + blankUrl: Ext.BLANK_IMAGE_URL, + href: data.href, + hrefTarget: data.hrefTarget, + lines: lines, + metaData: metaData, + + + + + childCls: me.getChildCls ? me.getChildCls() + ' ' : '', + value: renderer ? renderer.apply(me.origScope, arguments) : value + }); + } +}); + + +Ext.define('Ext.selection.CheckboxModel', { + alias: 'selection.checkboxmodel', + extend: Ext.selection.RowModel , + + + mode: 'MULTI', + + + injectCheckbox: 0, + + + checkOnly: false, + + + showHeaderCheckbox: undefined, + + + checkSelector: '.' + Ext.baseCSSPrefix + 'grid-row-checker', + + headerWidth: 24, + + + checkerOnCls: Ext.baseCSSPrefix + 'grid-hd-checker-on', + + constructor: function(){ + var me = this; + me.callParent(arguments); + + + + if (me.mode === 'SINGLE' && me.showHeaderCheckbox !== true) { + me.showHeaderCheckbox = false; + } + }, + + beforeViewRender: function(view) { + var me = this, + owner; + + me.callParent(arguments); + + + if (!me.hasLockedHeader() || view.headerCt.lockedCt) { + if (me.showHeaderCheckbox !== false) { + view.headerCt.on('headerclick', me.onHeaderClick, me); + } + me.addCheckbox(view, true); + owner = view.ownerCt; + + if (view.headerCt.lockedCt) { + owner = owner.ownerCt; + } + me.mon(owner, 'reconfigure', me.onReconfigure, me); + } + }, + + bindComponent: function(view) { + var me = this; + me.sortable = false; + me.callParent(arguments); + }, + + hasLockedHeader: function(){ + var views = this.views, + vLen = views.length, + v; + + for (v = 0; v < vLen; v++) { + if (views[v].headerCt.lockedCt) { + return true; + } + } + return false; + }, + + + addCheckbox: function(view, initial){ + var me = this, + checkbox = me.injectCheckbox, + headerCt = view.headerCt; + + + if (checkbox !== false) { + if (checkbox == 'first') { + checkbox = 0; + } else if (checkbox == 'last') { + checkbox = headerCt.getColumnCount(); + } + Ext.suspendLayouts(); + if (view.getStore().buffered) { + me.showHeaderCheckbox = false; + } + headerCt.add(checkbox, me.getHeaderConfig()); + Ext.resumeLayouts(); + } + + if (initial !== true) { + view.refresh(); + } + }, + + + onReconfigure: function(grid, store, columns) { + if(columns) { + this.addCheckbox(this.views[0]); + } + }, + + + toggleUiHeader: function(isChecked) { + var view = this.views[0], + headerCt = view.headerCt, + checkHd = headerCt.child('gridcolumn[isCheckerHd]'), + cls = this.checkerOnCls; + + if (checkHd) { + if (isChecked) { + checkHd.addCls(cls); + } else { + checkHd.removeCls(cls); + } + } + }, + + + onHeaderClick: function(headerCt, header, e) { + if (header.isCheckerHd) { + e.stopEvent(); + var me = this, + isChecked = header.el.hasCls(Ext.baseCSSPrefix + 'grid-hd-checker-on'); + + + me.preventFocus = true; + if (isChecked) { + me.deselectAll(); + } else { + me.selectAll(); + } + delete me.preventFocus; + } + }, + + + getHeaderConfig: function() { + var me = this, + showCheck = me.showHeaderCheckbox !== false; + + return { + isCheckerHd: showCheck, + text : ' ', + clickTargetName: 'el', + width: me.headerWidth, + sortable: false, + draggable: false, + resizable: false, + hideable: false, + menuDisabled: true, + dataIndex: '', + cls: showCheck ? Ext.baseCSSPrefix + 'column-header-checkbox ' : '', + renderer: Ext.Function.bind(me.renderer, me), + editRenderer: me.editRenderer || me.renderEmpty, + locked: me.hasLockedHeader() + }; + }, + + renderEmpty: function() { + return ' '; + }, + + + refresh: function() { + this.callParent(arguments); + this.updateHeaderState(); + }, + + + renderer: function(value, metaData, record, rowIndex, colIndex, store, view) { + var baseCSSPrefix = Ext.baseCSSPrefix; + metaData.tdCls = baseCSSPrefix + 'grid-cell-special ' + baseCSSPrefix + 'grid-cell-row-checker'; + return '
     
    '; + }, + + processSelection: function(view, record, item, index, e){ + var me = this, + checker = e.getTarget(me.checkSelector), + mode; + + + if (me.checkOnly && !checker) { + return; + } + + if (checker) { + mode = me.getSelectionMode(); + + + if (mode !== 'SINGLE') { + me.setSelectionMode('SIMPLE'); + } + me.selectWithEvent(record, e); + me.setSelectionMode(mode); + } else { + me.selectWithEvent(record, e); + } + }, + + + onSelectChange: function() { + this.callParent(arguments); + if (!this.suspendChange) { + this.updateHeaderState(); + } + }, + + + onStoreLoad: function() { + this.callParent(arguments); + this.updateHeaderState(); + }, + + onStoreAdd: function() { + this.callParent(arguments); + this.updateHeaderState(); + }, + + onStoreRemove: function() { + this.callParent(arguments); + this.updateHeaderState(); + }, + + onStoreRefresh: function(){ + this.callParent(arguments); + this.updateHeaderState(); + }, + + maybeFireSelectionChange: function(fireEvent) { + if (fireEvent && !this.suspendChange) { + this.updateHeaderState(); + } + this.callParent(arguments); + }, + + resumeChanges: function(){ + this.callParent(); + if (!this.suspendChange) { + this.updateHeaderState(); + } + }, + + + updateHeaderState: function() { + + var me = this, + store = me.store, + storeCount = store.getCount(), + views = me.views, + hdSelectStatus = false, + selectedCount = 0, + selected, len, i; + + if (!store.buffered && storeCount > 0) { + selected = me.selected; + hdSelectStatus = true; + for (i = 0, len = selected.getCount(); i < len; ++i) { + if (!me.storeHasSelected(selected.getAt(i))) { + break; + } + ++selectedCount; + } + hdSelectStatus = storeCount === selectedCount; + } + + if (views && views.length) { + me.toggleUiHeader(hdSelectStatus); + } + } +}); + + +Ext.define('Ext.slider.Single', { + extend: Ext.slider.Multi , + alias: ['widget.slider', 'widget.sliderfield'], + alternateClassName: ['Ext.Slider', 'Ext.form.SliderField', 'Ext.slider.SingleSlider', 'Ext.slider.Slider'], + + + getValue: function() { + + return this.callParent([0]); + }, + + + setValue: function(value, animate) { + var args = arguments, + len = args.length; + + + + + if (len == 1 || (len <= 3 && typeof args[1] != 'number')) { + args = Ext.toArray(args); + args.unshift(0); + } + return this.callParent(args); + }, + + + getNearest : function(){ + + return this.thumbs[0]; + } +}); + + +Ext.define('Ext.state.CookieProvider', { + extend: Ext.state.Provider , + + + + + + + + + + + constructor : function(config){ + var me = this; + me.path = "/"; + me.expires = new Date(Ext.Date.now() + (1000*60*60*24*7)); + me.domain = null; + me.secure = false; + me.callParent(arguments); + me.state = me.readCookies(); + }, + + + set : function(name, value){ + var me = this; + + if(typeof value == "undefined" || value === null){ + me.clear(name); + return; + } + me.setCookie(name, value); + me.callParent(arguments); + }, + + + clear : function(name){ + this.clearCookie(name); + this.callParent(arguments); + }, + + + readCookies : function(){ + var cookies = {}, + c = document.cookie + ";", + re = /\s?(.*?)=(.*?);/g, + prefix = this.prefix, + len = prefix.length, + matches, + name, + value; + + while((matches = re.exec(c)) != null){ + name = matches[1]; + value = matches[2]; + if (name && name.substring(0, len) == prefix){ + cookies[name.substr(len)] = this.decodeValue(value); + } + } + return cookies; + }, + + + setCookie : function(name, value){ + var me = this; + + document.cookie = me.prefix + name + "=" + me.encodeValue(value) + + ((me.expires == null) ? "" : ("; expires=" + me.expires.toGMTString())) + + ((me.path == null) ? "" : ("; path=" + me.path)) + + ((me.domain == null) ? "" : ("; domain=" + me.domain)) + + ((me.secure == true) ? "; secure" : ""); + }, + + + clearCookie : function(name){ + var me = this; + + document.cookie = me.prefix + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" + + ((me.path == null) ? "" : ("; path=" + me.path)) + + ((me.domain == null) ? "" : ("; domain=" + me.domain)) + + ((me.secure == true) ? "; secure" : ""); + } +}); + + + +Ext.define('Ext.state.LocalStorageProvider', { + + + extend: Ext.state.Provider , + + alias: 'state.localstorage', + + + + constructor: function(){ + var me = this; + me.callParent(arguments); + me.store = me.getStorageObject(); + if (me.store) { + me.state = me.readLocalStorage(); + } else { + me.state = {}; + } + }, + + readLocalStorage: function(){ + var store = this.store, + i = 0, + len = store.length, + prefix = this.prefix, + prefixLen = prefix.length, + data = {}, + key; + + for (; i < len; ++i) { + key = store.key(i); + if (key.substring(0, prefixLen) == prefix) { + data[key.substr(prefixLen)] = this.decodeValue(store.getItem(key)); + } + } + return data; + }, + + set : function(name, value){ + var me = this; + + me.clear(name); + if (typeof value == "undefined" || value === null) { + return; + } + me.store.setItem(me.prefix + name, me.encodeValue(value)); + me.callParent(arguments); + }, + + + clear : function(name){ + this.store.removeItem(this.prefix + name); + this.callParent(arguments); + }, + + getStorageObject: function(){ + if (Ext.supports.LocalStorage) { + return window.localStorage; + } + return false; + } +}); + + +Ext.define('Ext.tab.Panel', { + extend: Ext.panel.Panel , + alias: 'widget.tabpanel', + alternateClassName: ['Ext.TabPanel'], + + + + + tabPosition : 'top', + + + + + + + + + + + removePanelHeader: true, + + + plain: false, + + + itemCls: Ext.baseCSSPrefix + 'tabpanel-child', + + + minTabWidth: undefined, + + + maxTabWidth: undefined, + + + deferredRender : true, + + + initComponent: function() { + var me = this, + dockedItems = [].concat(me.dockedItems || []), + activeTab = me.activeTab || (me.activeTab = 0), + tabPosition = me.tabPosition; + + + me.layout = new Ext.layout.container.Card(Ext.apply({ + owner: me, + deferredRender: me.deferredRender, + itemCls: me.itemCls, + activeItem: activeTab + }, me.layout)); + + + me.tabBar = new Ext.tab.Bar(Ext.apply({ + ui: me.ui, + dock: me.tabPosition, + orientation: (tabPosition == 'top' || tabPosition == 'bottom') ? 'horizontal' : 'vertical', + plain: me.plain, + cardLayout: me.layout, + tabPanel: me + }, me.tabBar)); + + dockedItems.push(me.tabBar); + me.dockedItems = dockedItems; + + me.addEvents( + + 'beforetabchange', + + + 'tabchange' + ); + + me.callParent(arguments); + + + activeTab = me.activeTab = me.getComponent(activeTab); + + + if (activeTab) { + me.tabBar.setActiveTab(activeTab.tab, true); + } + }, + + + setActiveTab: function(card) { + var me = this, + previous; + + card = me.getComponent(card); + if (card) { + previous = me.getActiveTab(); + + if (previous !== card && me.fireEvent('beforetabchange', me, card, previous) === false) { + return false; + } + + + + if (!card.isComponent) { + Ext.suspendLayouts(); + card = me.add(card); + Ext.resumeLayouts(); + } + + + + me.activeTab = card; + + + + + Ext.suspendLayouts(); + me.layout.setActiveItem(card); + + + card = me.activeTab = me.layout.getActiveItem(); + + + if (card && card !== previous) { + + + me.tabBar.setActiveTab(card.tab); + Ext.resumeLayouts(true); + + + if (previous !== card) { + me.fireEvent('tabchange', me, card, previous); + } + } + + else { + Ext.resumeLayouts(true); + } + return card; + } + }, + + + getActiveTab: function() { + var me = this, + + result = me.getComponent(me.activeTab); + + + if (result && me.items.indexOf(result) != -1) { + me.activeTab = result; + } else { + me.activeTab = null; + } + + return me.activeTab; + }, + + + getTabBar: function() { + return this.tabBar; + }, + + + onAdd: function(item, index) { + var me = this, + cfg = item.tabConfig || {}, + defaultConfig = { + xtype: 'tab', + ui: me.tabBar.ui, + card: item, + disabled: item.disabled, + closable: item.closable, + hidden: item.hidden && !item.hiddenByLayout, + tooltip: item.tooltip, + tabBar: me.tabBar, + position: me.tabPosition, + closeText: item.closeText + }; + + cfg = Ext.applyIf(cfg, defaultConfig); + + + item.tab = me.tabBar.insert(index, cfg); + + item.on({ + scope : me, + enable: me.onItemEnable, + disable: me.onItemDisable, + beforeshow: me.onItemBeforeShow, + iconchange: me.onItemIconChange, + iconclschange: me.onItemIconClsChange, + titlechange: me.onItemTitleChange + }); + + if (item.isPanel) { + if (me.removePanelHeader) { + if (item.rendered) { + if (item.header) { + item.header.hide(); + } + } else { + item.header = false; + } + } + if (item.isPanel && me.border) { + item.setBorder(false); + } + } + }, + + + onItemEnable: function(item){ + item.tab.enable(); + }, + + + onItemDisable: function(item){ + item.tab.disable(); + }, + + + onItemBeforeShow: function(item) { + if (item !== this.activeTab) { + this.setActiveTab(item); + return false; + } + }, + + + onItemIconChange: function(item, newIcon) { + item.tab.setIcon(newIcon); + }, + + + onItemIconClsChange: function(item, newIconCls) { + item.tab.setIconCls(newIconCls); + }, + + + onItemTitleChange: function(item, newTitle) { + item.tab.setText(newTitle); + }, + + + doRemove: function(item, autoDestroy) { + var me = this, + toActivate; + + + if (me.destroying || me.items.getCount() == 1) { + me.activeTab = null; + } + + + + else if ((toActivate = me.tabBar.items.indexOf(me.tabBar.findNextActivatable(item.tab))) !== -1) { + me.setActiveTab(toActivate); + } + this.callParent(arguments); + + + delete item.tab.card; + delete item.tab; + }, + + + onRemove: function(item, destroying) { + var me = this; + + item.un({ + scope : me, + enable: me.onItemEnable, + disable: me.onItemDisable, + beforeshow: me.onItemBeforeShow + }); + if (!me.destroying && item.tab.ownerCt === me.tabBar) { + me.tabBar.remove(item.tab); + } + } +}); + + +Ext.define('Ext.toolbar.Spacer', { + extend: Ext.Component , + alias: 'widget.tbspacer', + alternateClassName: 'Ext.Toolbar.Spacer', + baseCls: Ext.baseCSSPrefix + 'toolbar-spacer', + focusable: false +}); + + +Ext.define('Ext.tree.Panel', { + extend: Ext.panel.Table , + alias: 'widget.treepanel', + alternateClassName: ['Ext.tree.TreePanel', 'Ext.TreePanel'], + + viewType: 'treeview', + selType: 'treemodel', + + treeCls: Ext.baseCSSPrefix + 'tree-panel', + + deferRowRender: false, + + + rowLines: false, + + + lines: true, + + + useArrows: false, + + + singleExpand: false, + + ddConfig: { + enableDrag: true, + enableDrop: true + }, + + + + + rootVisible: true, + + + displayField: 'text', + + + root: null, + + + + normalCfgCopy: ['displayField', 'root', 'singleExpand', 'useArrows', 'lines', 'rootVisible', 'scroll'], + lockedCfgCopy: ['displayField', 'root', 'singleExpand', 'useArrows', 'lines', 'rootVisible'], + + isTree: true, + + + + + + + + arrowCls: Ext.baseCSSPrefix + 'tree-arrows', + linesCls: Ext.baseCSSPrefix + 'tree-lines', + noLinesCls: Ext.baseCSSPrefix + 'tree-no-lines', + autoWidthCls: Ext.baseCSSPrefix + 'autowidth-table', + + constructor: function(config) { + config = config || {}; + if (config.animate === undefined) { + config.animate = Ext.isBoolean(this.animate) ? this.animate : Ext.enableFx; + } + this.enableAnimations = config.animate; + delete config.animate; + + this.callParent([config]); + }, + + initComponent: function() { + var me = this, + cls = [me.treeCls], + store = me.store, + view; + + if (me.useArrows) { + cls.push(me.arrowCls); + me.lines = false; + } + + if (me.lines) { + cls.push(me.linesCls); + } else if (!me.useArrows) { + cls.push(me.noLinesCls); + } + + if (Ext.isString(store)) { + store = me.store = Ext.StoreMgr.lookup(store); + } else if (!store || Ext.isObject(store) && !store.isStore) { + store = me.store = new Ext.data.TreeStore(Ext.apply({ + root: me.root, + fields: me.fields, + model: me.model, + folderSort: me.folderSort + }, store)); + } else if (me.root) { + store = me.store = Ext.data.StoreManager.lookup(store); + store.setRootNode(me.root); + if (me.folderSort !== undefined) { + store.folderSort = me.folderSort; + store.sort(); + } + } + + + + + + + me.viewConfig = Ext.apply({ + rootVisible: me.rootVisible, + animate: me.enableAnimations, + singleExpand: me.singleExpand, + node: store.getRootNode(), + hideHeaders: me.hideHeaders + }, me.viewConfig); + + + if (!me.columns) { + if (me.initialConfig.hideHeaders === undefined) { + me.hideHeaders = true; + } + me.addCls(me.autoWidthCls); + me.columns = [{ + xtype : 'treecolumn', + text : 'Name', + width : Ext.isIE6 ? '100%' : 10000, + dataIndex: me.displayField + }]; + } + + if (me.cls) { + cls.push(me.cls); + } + me.cls = cls.join(' '); + + me.callParent(); + + + + me.selModel.treeStore = me.store; + + view = me.getView(); + + + + me.relayEvents(view, [ + + 'checkchange', + + 'afteritemexpand', + + 'afteritemcollapse' + ]); + + + if (!view.isLockingView) { + + if (!view.rootVisible && !me.getRootNode()) { + me.setRootNode({ + expanded: true + }); + } + } + }, + + + + + + bindStore: function(store, initial) { + var me = this; + + me.store = store; + + + me.storeListeners = me.mon(store, { + destroyable: true, + load: me.onStoreLoad, + rootchange: me.onRootChange, + clear: me.onClear, + scope: me + }); + + + me.storeRelayers = me.relayEvents(store, [ + + 'beforeload', + + + 'load' + ]); + + + me.storeRelayers1 = me.mon(store, { + destroyable: true, + + + append: me.createRelayer('itemappend'), + + + remove: me.createRelayer('itemremove'), + + + move: me.createRelayer('itemmove', [0, 4]), + + + insert: me.createRelayer('iteminsert'), + + + beforeappend: me.createRelayer('beforeitemappend'), + + + beforeremove: me.createRelayer('beforeitemremove'), + + + beforemove: me.createRelayer('beforeitemmove'), + + + beforeinsert: me.createRelayer('beforeiteminsert'), + + + expand: me.createRelayer('itemexpand', [0, 1]), + + + collapse: me.createRelayer('itemcollapse', [0, 1]), + + + beforeexpand: me.createRelayer('beforeitemexpand', [0, 1]), + + + beforecollapse: me.createRelayer('beforeitemcollapse', [0, 1]) + }); + + + store.ownerTree = me; + + if (!initial) { + me.view.setRootNode(me.getRootNode()); + } + }, + + + + unbindStore: function() { + var me = this, + store = me.store; + + if (store) { + Ext.destroy(me.storeListeners, me.storeRelayers, me.storeRelayers1); + delete store.ownerTree; + } + }, + + onClear: function(){ + this.view.onClear(); + }, + + + setRootNode: function() { + return this.store.setRootNode.apply(this.store, arguments); + }, + + + getRootNode: function() { + return this.store.getRootNode(); + }, + + onRootChange: function(root) { + this.view.setRootNode(root); + }, + + + getChecked: function() { + return this.getView().getChecked(); + }, + + isItemChecked: function(rec) { + return rec.get('checked'); + }, + + + expandNode: function(record, deep, callback, scope) { + return this.getView().expand(record, deep, callback, scope || this); + }, + + + collapseNode: function(record, deep, callback, scope) { + return this.getView().collapse(record, deep, callback, scope || this); + }, + + + expandAll : function(callback, scope) { + var me = this, + root = me.getRootNode(), + animate = me.enableAnimations; + if (root) { + if (!animate) { + Ext.suspendLayouts(); + } + root.expand(true, callback, scope || me); + if (!animate) { + Ext.resumeLayouts(true); + } + } + }, + + + collapseAll : function(callback, scope) { + var me = this, + root = me.getRootNode(), + animate = me.enableAnimations, + view = me.getView(); + + if (root) { + if (!animate) { + Ext.suspendLayouts(); + } + scope = scope || me; + if (view.rootVisible) { + root.collapse(true, callback, scope); + } else { + root.collapseChildren(true, callback, scope); + } + if (!animate) { + Ext.resumeLayouts(true); + } + } + }, + + + expandPath: function(path, field, separator, callback, scope) { + var me = this, + current = me.getRootNode(), + index = 1, + view = me.getView(), + keys, + expander; + + field = field || me.getRootNode().idProperty; + separator = separator || '/'; + + if (Ext.isEmpty(path)) { + Ext.callback(callback, scope || me, [false, null]); + return; + } + + keys = path.split(separator); + if (current.get(field) != keys[1]) { + + Ext.callback(callback, scope || me, [false, current]); + return; + } + + expander = function(){ + if (++index === keys.length) { + Ext.callback(callback, scope || me, [true, current]); + return; + } + var node = current.findChild(field, keys[index]); + if (!node) { + Ext.callback(callback, scope || me, [false, current]); + return; + } + current = node; + current.expand(false, expander); + }; + current.expand(false, expander); + }, + + + selectPath: function(path, field, separator, callback, scope) { + var me = this, + root, + keys, + last; + + field = field || me.getRootNode().idProperty; + separator = separator || '/'; + + keys = path.split(separator); + last = keys.pop(); + if (keys.length > 1) { + me.expandPath(keys.join(separator), field, separator, function(success, node){ + var lastNode = node; + if (success && node) { + node = node.findChild(field, last); + if (node) { + me.getSelectionModel().select(node); + Ext.callback(callback, scope || me, [true, node]); + return; + } + } + Ext.callback(callback, scope || me, [false, lastNode]); + }, me); + } else { + root = me.getRootNode(); + if (root.getId() === last) { + me.getSelectionModel().select(root); + Ext.callback(callback, scope || me, [true, root]); + } else { + Ext.callback(callback, scope || me, [false, null]); + } + } + } +}); + + +Ext.define('Ext.view.DragZone', { + extend: Ext.dd.DragZone , + containerScroll: false, + + constructor: function(config) { + var me = this, + view, + ownerCt, + el; + + Ext.apply(me, config); + + + + + + + if (!me.ddGroup) { + me.ddGroup = 'view-dd-zone-' + me.view.id; + } + + + + + + + + + view = me.view; + ownerCt = view.ownerCt; + + + if (ownerCt) { + el = ownerCt.getTargetEl().dom; + } else { + el = view.el.dom.parentNode; + } + me.callParent([el]); + + me.ddel = Ext.get(document.createElement('div')); + me.ddel.addCls(Ext.baseCSSPrefix + 'grid-dd-wrap'); + }, + + init: function(id, sGroup, config) { + this.initTarget(id, sGroup, config); + this.view.mon(this.view, { + itemmousedown: this.onItemMouseDown, + scope: this + }); + }, + + onValidDrop: function(target, e, id) { + this.callParent(); + + target.el.focus(); + }, + + onItemMouseDown: function(view, record, item, index, e) { + if (!this.isPreventDrag(e, record, item, index)) { + + + + if (view.focusRow) { + view.focusRow(record); + } + this.handleMouseDown(e); + } + }, + + + isPreventDrag: function(e) { + return false; + }, + + getDragData: function(e) { + var view = this.view, + item = e.getTarget(view.getItemSelector()); + + if (item) { + return { + copy: view.copy || (view.allowCopy && e.ctrlKey), + event: new Ext.EventObjectImpl(e), + view: view, + ddel: this.ddel, + item: item, + records: view.getSelectionModel().getSelection(), + fromPosition: Ext.fly(item).getXY() + }; + } + }, + + onInitDrag: function(x, y) { + var me = this, + data = me.dragData, + view = data.view, + selectionModel = view.getSelectionModel(), + record = view.getRecord(data.item); + + + + if (!selectionModel.isSelected(record)) { + selectionModel.select(record, true); + } + data.records = selectionModel.getSelection(); + + me.ddel.update(me.getDragText()); + me.proxy.update(me.ddel.dom); + me.onStartDrag(x, y); + return true; + }, + + getDragText: function() { + var count = this.dragData.records.length; + return Ext.String.format(this.dragText, count, count == 1 ? '' : 's'); + }, + + getRepairXY : function(e, data){ + return data ? data.fromPosition : false; + } +}); + + +Ext.define('Ext.tree.ViewDragZone', { + extend: Ext.view.DragZone , + + isPreventDrag: function(e, record) { + return (record.get('allowDrag') === false) || !!e.getTarget(this.view.expanderSelector); + }, + + getDragText: function() { + var records = this.dragData.records, + count = records.length, + text = records[0].get(this.displayField), + suffix = 's'; + + if (count === 1 && text) { + return text; + } else if (!text) { + suffix = ''; + } + return Ext.String.format(this.dragText, count, suffix); + }, + + afterRepair: function() { + var me = this, + view = me.view, + selectedRowCls = view.selectedItemCls, + records = me.dragData.records, + r, + rLen = records.length, + fly = Ext.fly, + item; + + if (Ext.enableFx && me.repairHighlight) { + + for (r = 0; r < rLen; r++) { + + + item = view.getNode(records[r]); + + + + fly(item.firstChild).highlight(me.repairHighlightColor, { + listeners: { + beforeanimate: function() { + if (view.isSelected(item)) { + fly(item).removeCls(selectedRowCls); + } + }, + afteranimate: function() { + if (view.isSelected(item)) { + fly(item).addCls(selectedRowCls); + } + } + } + }); + } + + } + me.dragging = false; + } +}); + + +Ext.define('Ext.tree.ViewDropZone', { + extend: Ext.view.DropZone , + + + allowParentInserts: false, + + + allowContainerDrops: false, + + + appendOnly: false, + + + expandDelay : 500, + + indicatorCls: Ext.baseCSSPrefix + 'tree-ddindicator', + + + expandNode : function(node) { + var view = this.view; + this.expandProcId = false; + if (!node.isLeaf() && !node.isExpanded()) { + view.expand(node); + this.expandProcId = false; + } + }, + + + queueExpand : function(node) { + this.expandProcId = Ext.Function.defer(this.expandNode, this.expandDelay, this, [node]); + }, + + + cancelExpand : function() { + if (this.expandProcId) { + clearTimeout(this.expandProcId); + this.expandProcId = false; + } + }, + + getPosition: function(e, node) { + var view = this.view, + record = view.getRecord(node), + y = e.getPageY(), + noAppend = record.isLeaf(), + noBelow = false, + region = Ext.fly(node).getRegion(), + fragment; + + + if (record.isRoot()) { + return 'append'; + } + + + if (this.appendOnly) { + return noAppend ? false : 'append'; + } + + if (!this.allowParentInserts) { + noBelow = record.hasChildNodes() && record.isExpanded(); + } + + fragment = (region.bottom - region.top) / (noAppend ? 2 : 3); + if (y >= region.top && y < (region.top + fragment)) { + return 'before'; + } + else if (!noBelow && (noAppend || (y >= (region.bottom - fragment) && y <= region.bottom))) { + return 'after'; + } + else { + return 'append'; + } + }, + + isValidDropPoint : function(node, position, dragZone, e, data) { + if (!node || !data.item) { + return false; + } + + var view = this.view, + targetNode = view.getRecord(node), + draggedRecords = data.records, + dataLength = draggedRecords.length, + ln = draggedRecords.length, + i, record; + + + if (!(targetNode && position && dataLength)) { + return false; + } + + + for (i = 0; i < ln; i++) { + record = draggedRecords[i]; + if (record.isNode && record.contains(targetNode)) { + return false; + } + } + + + if (position === 'append' && targetNode.get('allowDrop') === false) { + return false; + } + else if (position != 'append' && targetNode.parentNode.get('allowDrop') === false) { + return false; + } + + + if (Ext.Array.contains(draggedRecords, targetNode)) { + return false; + } + return view.fireEvent('nodedragover', targetNode, position, data, e) !== false; + }, + + onNodeOver : function(node, dragZone, e, data) { + var position = this.getPosition(e, node), + returnCls = this.dropNotAllowed, + view = this.view, + targetNode = view.getRecord(node), + indicator = this.getIndicator(), + indicatorY = 0; + + + this.cancelExpand(); + if (position == 'append' && !this.expandProcId && !Ext.Array.contains(data.records, targetNode) && !targetNode.isLeaf() && !targetNode.isExpanded()) { + this.queueExpand(targetNode); + } + + + if (this.isValidDropPoint(node, position, dragZone, e, data)) { + this.valid = true; + this.currentPosition = position; + this.overRecord = targetNode; + + indicator.setWidth(Ext.fly(node).getWidth()); + indicatorY = Ext.fly(node).getY() - Ext.fly(view.el).getY() - 1; + + + if (position == 'before') { + returnCls = targetNode.isFirst() ? Ext.baseCSSPrefix + 'tree-drop-ok-above' : Ext.baseCSSPrefix + 'tree-drop-ok-between'; + indicator.showAt(0, indicatorY); + dragZone.proxy.show(); + } else if (position == 'after') { + returnCls = targetNode.isLast() ? Ext.baseCSSPrefix + 'tree-drop-ok-below' : Ext.baseCSSPrefix + 'tree-drop-ok-between'; + indicatorY += Ext.fly(node).getHeight(); + indicator.showAt(0, indicatorY); + dragZone.proxy.show(); + } else { + returnCls = Ext.baseCSSPrefix + 'tree-drop-ok-append'; + + indicator.hide(); + } + } else { + this.valid = false; + } + + this.currentCls = returnCls; + return returnCls; + }, + + + onNodeOut : function(n, dd, e, data){ + this.valid = false; + this.getIndicator().hide(); + }, + + onContainerOver : function(dd, e, data) { + return e.getTarget('.' + this.indicatorCls) ? this.currentCls : this.dropNotAllowed; + }, + + notifyOut: function() { + this.callParent(arguments); + this.cancelExpand(); + }, + + handleNodeDrop : function(data, targetNode, position) { + var me = this, + targetView = me.view, + parentNode = targetNode ? targetNode.parentNode : targetView.panel.getRootNode(), + Model = targetView.getStore().treeStore.model, + records, i, len, record, + insertionMethod, argList, + needTargetExpand, + transferData; + + + if (data.copy) { + records = data.records; + data.records = []; + for (i = 0, len = records.length; i < len; i++) { + record = records[i]; + if (record.isNode) { + data.records.push(record.copy(undefined, true)); + } else { + + data.records.push(new Model(record.data, record.getId())); + } + } + } + + + me.cancelExpand(); + + + + + + if (position == 'before') { + insertionMethod = parentNode.insertBefore; + argList = [null, targetNode]; + targetNode = parentNode; + } + else if (position == 'after') { + if (targetNode.nextSibling) { + insertionMethod = parentNode.insertBefore; + argList = [null, targetNode.nextSibling]; + } + else { + insertionMethod = parentNode.appendChild; + argList = [null]; + } + targetNode = parentNode; + } + else { + if (!(targetNode.isExpanded() || targetNode.isLoading())) { + needTargetExpand = true; + } + insertionMethod = targetNode.appendChild; + argList = [null]; + } + + + transferData = function() { + var color, + n; + + + Ext.suspendLayouts(); + + targetView.getSelectionModel().clearSelections(); + + + for (i = 0, len = data.records.length; i < len; i++) { + record = data.records[i]; + if (!record.isNode) { + if (record.isModel) { + record = new Model(record.data, record.getId()); + } else { + record = new Model(record); + } + data.records[i] = record; + } + argList[0] = record; + insertionMethod.apply(targetNode, argList); + } + + + if (me.sortOnDrop) { + targetNode.sort(targetNode.getOwnerTree().store.generateComparator()); + } + + Ext.resumeLayouts(true); + + + + + if (Ext.enableFx && me.dropHighlight) { + color = me.dropHighlightColor; + + for (i = 0; i < len; i++) { + n = targetView.getNode(data.records[i]); + if (n) { + Ext.fly(n).highlight(color); + } + } + } + }; + + + if (needTargetExpand) { + targetNode.expand(false, transferData); + } + + + + + + else if (targetNode.isLoading()) { + targetNode.on({ + expand: transferData, + delay: 1, + single: true + }); + } + + else { + transferData(); + } + } +}); + + +Ext.define('Ext.tree.plugin.TreeViewDragDrop', { + extend: Ext.AbstractPlugin , + alias: 'plugin.treeviewdragdrop', + + + + + + + + + + + + + dragText : '{0} selected node{1}', + + + + allowParentInserts: false, + + + allowContainerDrops: false, + + + appendOnly: false, + + + ddGroup : "TreeDD", + + + containerScroll: false, + + + + + + + + + expandDelay : 1000, + + + enableDrop: true, + + + enableDrag: true, + + + nodeHighlightColor: 'c3daf9', + + + nodeHighlightOnDrop: Ext.enableFx, + + + nodeHighlightOnRepair: Ext.enableFx, + + + displayField: 'text', + + init : function(view) { + view.on('render', this.onViewRender, this, {single: true}); + }, + + + destroy: function() { + Ext.destroy(this.dragZone, this.dropZone); + }, + + onViewRender : function(view) { + var me = this, + scrollEl; + + if (me.enableDrag) { + if (me.containerScroll) { + scrollEl = view.getEl(); + } + me.dragZone = new Ext.tree.ViewDragZone({ + view: view, + ddGroup: me.dragGroup || me.ddGroup, + dragText: me.dragText, + displayField: me.displayField, + repairHighlightColor: me.nodeHighlightColor, + repairHighlight: me.nodeHighlightOnRepair, + scrollEl: scrollEl + }); + } + + if (me.enableDrop) { + me.dropZone = new Ext.tree.ViewDropZone({ + view: view, + ddGroup: me.dropGroup || me.ddGroup, + allowContainerDrops: me.allowContainerDrops, + appendOnly: me.appendOnly, + allowParentInserts: me.allowParentInserts, + expandDelay: me.expandDelay, + dropHighlightColor: me.nodeHighlightColor, + dropHighlight: me.nodeHighlightOnDrop, + sortOnDrop: me.sortOnDrop, + containerScroll: me.containerScroll + }); + } + } +}, function(){ + var proto = this.prototype; + proto.nodeHighlightOnDrop = proto.nodeHighlightOnRepair = Ext.enableFx; +}); + + +Ext.define('Ext.util.Cookies', { + singleton: true, + + + set : function(name, value){ + var argv = arguments, + argc = arguments.length, + expires = (argc > 2) ? argv[2] : null, + path = (argc > 3) ? argv[3] : '/', + domain = (argc > 4) ? argv[4] : null, + secure = (argc > 5) ? argv[5] : false; + + document.cookie = name + "=" + escape(value) + ((expires === null) ? "" : ("; expires=" + expires.toGMTString())) + ((path === null) ? "" : ("; path=" + path)) + ((domain === null) ? "" : ("; domain=" + domain)) + ((secure === true) ? "; secure" : ""); + }, + + + get : function(name){ + var arg = name + "=", + alen = arg.length, + clen = document.cookie.length, + i = 0, + j = 0; + + while(i < clen){ + j = i + alen; + if(document.cookie.substring(i, j) == arg){ + return this.getCookieVal(j); + } + i = document.cookie.indexOf(" ", i) + 1; + if(i === 0){ + break; + } + } + return null; + }, + + + clear : function(name, path){ + if(this.get(name)){ + path = path || '/'; + document.cookie = name + '=' + '; expires=Thu, 01-Jan-70 00:00:01 GMT; path=' + path; + } + }, + + + getCookieVal : function(offset){ + var endstr = document.cookie.indexOf(";", offset); + if(endstr == -1){ + endstr = document.cookie.length; + } + return unescape(document.cookie.substring(offset, endstr)); + } +}); + + + +Ext.define('Ext.util.Grouper', { + + + + extend: Ext.util.Sorter , + + + + isGrouper: true, + + + getGroupString: function(instance) { + return instance.get(this.property); + } +}); + + +Ext.define('Ext.util.History', { + singleton: true, + alternateClassName: 'Ext.History', + mixins: { + observable: Ext.util.Observable + }, + + + useTopWindow: true, + + + fieldId: Ext.baseCSSPrefix + 'history-field', + + iframeId: Ext.baseCSSPrefix + 'history-frame', + + constructor: function() { + var me = this; + me.oldIEMode = Ext.isIE7m || !Ext.isStrict && Ext.isIE8; + me.iframe = null; + me.hiddenField = null; + me.ready = false; + me.currentToken = null; + me.mixins.observable.constructor.call(me); + }, + + getHash: function() { + var href = window.location.href, + i = href.indexOf("#"); + + return i >= 0 ? href.substr(i + 1) : null; + }, + + setHash: function (hash) { + var me = this, + win = me.useTopWindow ? window.top : window; + try { + win.location.hash = hash; + } catch (e) { + + } + }, + + doSave: function() { + this.hiddenField.value = this.currentToken; + }, + + + handleStateChange: function(token) { + this.currentToken = token; + this.fireEvent('change', token); + }, + + updateIFrame: function(token) { + var html = '
    ' + + Ext.util.Format.htmlEncode(token) + + '
    ', + doc; + + try { + doc = this.iframe.contentWindow.document; + doc.open(); + doc.write(html); + doc.close(); + return true; + } catch (e) { + return false; + } + }, + + checkIFrame: function () { + var me = this, + contentWindow = me.iframe.contentWindow, + doc, elem, oldToken, oldHash; + + if (!contentWindow || !contentWindow.document) { + Ext.Function.defer(this.checkIFrame, 10, this); + return; + } + + doc = contentWindow.document; + elem = doc.getElementById("state"); + oldToken = elem ? elem.innerText : null; + oldHash = me.getHash(); + + Ext.TaskManager.start({ + run: function () { + var doc = contentWindow.document, + elem = doc.getElementById("state"), + newToken = elem ? elem.innerText : null, + newHash = me.getHash(); + + if (newToken !== oldToken) { + oldToken = newToken; + me.handleStateChange(newToken); + me.setHash(newToken); + oldHash = newToken; + me.doSave(); + } else if (newHash !== oldHash) { + oldHash = newHash; + me.updateIFrame(newHash); + } + }, + interval: 50, + scope: me + }); + me.ready = true; + me.fireEvent('ready', me); + }, + + startUp: function () { + var me = this, + hash; + + me.currentToken = me.hiddenField.value || this.getHash(); + + if (me.oldIEMode) { + me.checkIFrame(); + } else { + hash = me.getHash(); + Ext.TaskManager.start({ + run: function () { + var newHash = me.getHash(); + if (newHash !== hash) { + hash = newHash; + me.handleStateChange(hash); + me.doSave(); + } + }, + interval: 50, + scope: me + }); + me.ready = true; + me.fireEvent('ready', me); + } + + }, + + + init: function (onReady, scope) { + var me = this, + DomHelper = Ext.DomHelper; + + if (me.ready) { + Ext.callback(onReady, scope, [me]); + return; + } + + if (!Ext.isReady) { + Ext.onReady(function() { + me.init(onReady, scope); + }); + return; + } + + + me.hiddenField = Ext.getDom(me.fieldId); + if (!me.hiddenField) { + me.hiddenField = Ext.getBody().createChild({ + id: Ext.id(), + tag: 'form', + cls: Ext.baseCSSPrefix + 'hide-display', + children: [{ + tag: 'input', + type: 'hidden', + id: me.fieldId + }] + }, false, true).firstChild; + } + + if (me.oldIEMode) { + me.iframe = Ext.getDom(me.iframeId); + if (!me.iframe) { + me.iframe = DomHelper.append(me.hiddenField.parentNode, { + tag: 'iframe', + id: me.iframeId, + src: Ext.SSL_SECURE_URL + }); + } + } + + me.addEvents( + + 'ready', + + 'change' + ); + + if (onReady) { + me.on('ready', onReady, scope, {single: true}); + } + me.startUp(); + }, + + + add: function (token, preventDup) { + var me = this; + + if (preventDup !== false) { + if (me.getToken() === token) { + return true; + } + } + + if (me.oldIEMode) { + return me.updateIFrame(token); + } else { + me.setHash(token); + return true; + } + }, + + + back: function() { + window.history.go(-1); + }, + + + forward: function(){ + window.history.go(1); + }, + + + getToken: function() { + return this.ready ? this.currentToken : this.getHash(); + } +}); diff --git a/extjs-django/marvel/static/extjs/resources/css/ext-all-access-debug.css b/extjs-django/marvel/static/extjs/resources/css/ext-all-access-debug.css new file mode 100644 index 0000000..ebbed56 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/css/ext-all-access-debug.css @@ -0,0 +1 @@ +@import '../ext-theme-access/ext-theme-access-all-debug.css'; \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/css/ext-all-access-rtl-debug.css b/extjs-django/marvel/static/extjs/resources/css/ext-all-access-rtl-debug.css new file mode 100644 index 0000000..6aa6927 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/css/ext-all-access-rtl-debug.css @@ -0,0 +1 @@ +@import '../ext-theme-access/ext-theme-access-all-rtl-debug.css'; \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/css/ext-all-access-rtl.css b/extjs-django/marvel/static/extjs/resources/css/ext-all-access-rtl.css new file mode 100644 index 0000000..0de8c97 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/css/ext-all-access-rtl.css @@ -0,0 +1 @@ +@import '../ext-theme-access/ext-theme-access-all-rtl.css'; \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/css/ext-all-access.css b/extjs-django/marvel/static/extjs/resources/css/ext-all-access.css new file mode 100644 index 0000000..5fbff1b --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/css/ext-all-access.css @@ -0,0 +1 @@ +@import '../ext-theme-access/ext-theme-access-all.css'; \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/css/ext-all-debug.css b/extjs-django/marvel/static/extjs/resources/css/ext-all-debug.css new file mode 100644 index 0000000..3934d5e --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/css/ext-all-debug.css @@ -0,0 +1 @@ +@import '../ext-theme-classic/ext-theme-classic-all-debug.css'; \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/css/ext-all-gray-debug.css b/extjs-django/marvel/static/extjs/resources/css/ext-all-gray-debug.css new file mode 100644 index 0000000..afa4937 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/css/ext-all-gray-debug.css @@ -0,0 +1 @@ +@import '../ext-theme-gray/ext-theme-gray-all-debug.css'; \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/css/ext-all-gray-rtl-debug.css b/extjs-django/marvel/static/extjs/resources/css/ext-all-gray-rtl-debug.css new file mode 100644 index 0000000..38b5246 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/css/ext-all-gray-rtl-debug.css @@ -0,0 +1 @@ +@import '../ext-theme-gray/ext-theme-gray-all-rtl-debug.css'; \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/css/ext-all-gray-rtl.css b/extjs-django/marvel/static/extjs/resources/css/ext-all-gray-rtl.css new file mode 100644 index 0000000..c076810 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/css/ext-all-gray-rtl.css @@ -0,0 +1 @@ +@import '../ext-theme-gray/ext-theme-gray-all-rtl.css'; \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/css/ext-all-gray.css b/extjs-django/marvel/static/extjs/resources/css/ext-all-gray.css new file mode 100644 index 0000000..d4922cd --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/css/ext-all-gray.css @@ -0,0 +1 @@ +@import '../ext-theme-gray/ext-theme-gray-all.css'; \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/css/ext-all-neptune-debug.css b/extjs-django/marvel/static/extjs/resources/css/ext-all-neptune-debug.css new file mode 100644 index 0000000..761ce6e --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/css/ext-all-neptune-debug.css @@ -0,0 +1 @@ +@import '../ext-theme-neptune/ext-theme-neptune-all-debug.css'; \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/css/ext-all-neptune-rtl-debug.css b/extjs-django/marvel/static/extjs/resources/css/ext-all-neptune-rtl-debug.css new file mode 100644 index 0000000..b580e7f --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/css/ext-all-neptune-rtl-debug.css @@ -0,0 +1 @@ +@import '../ext-theme-neptune/ext-theme-neptune-all-rtl-debug.css'; \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/css/ext-all-neptune-rtl.css b/extjs-django/marvel/static/extjs/resources/css/ext-all-neptune-rtl.css new file mode 100644 index 0000000..0c736df --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/css/ext-all-neptune-rtl.css @@ -0,0 +1 @@ +@import '../ext-theme-neptune/ext-theme-neptune-all-rtl.css'; \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/css/ext-all-neptune.css b/extjs-django/marvel/static/extjs/resources/css/ext-all-neptune.css new file mode 100644 index 0000000..6d6ffe6 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/css/ext-all-neptune.css @@ -0,0 +1 @@ +@import '../ext-theme-neptune/ext-theme-neptune-all.css'; \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/css/ext-all-rtl-debug.css b/extjs-django/marvel/static/extjs/resources/css/ext-all-rtl-debug.css new file mode 100644 index 0000000..e9bee25 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/css/ext-all-rtl-debug.css @@ -0,0 +1 @@ +@import '../ext-theme-classic/ext-theme-classic-all-rtl-debug.css'; \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/css/ext-all-rtl.css b/extjs-django/marvel/static/extjs/resources/css/ext-all-rtl.css new file mode 100644 index 0000000..f21c2db --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/css/ext-all-rtl.css @@ -0,0 +1 @@ +@import '../ext-theme-classic/ext-theme-classic-all-rtl.css'; \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/css/ext-all.css b/extjs-django/marvel/static/extjs/resources/css/ext-all.css new file mode 100644 index 0000000..bc04361 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/css/ext-all.css @@ -0,0 +1 @@ +@import '../ext-theme-classic/ext-theme-classic-all.css'; \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/css/ext-sandbox-debug.css b/extjs-django/marvel/static/extjs/resources/css/ext-sandbox-debug.css new file mode 100644 index 0000000..db5a54b --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/css/ext-sandbox-debug.css @@ -0,0 +1 @@ +@import '../ext-theme-classic-sandbox/ext-theme-classic-sandbox-all-debug.css'; \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/css/ext-sandbox.css b/extjs-django/marvel/static/extjs/resources/css/ext-sandbox.css new file mode 100644 index 0000000..b4fdd3b --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/css/ext-sandbox.css @@ -0,0 +1 @@ +@import '../ext-theme-classic-sandbox/ext-theme-classic-sandbox-all.css'; \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/Readme.md b/extjs-django/marvel/static/extjs/resources/ext-theme-access/Readme.md new file mode 100644 index 0000000..cab8e4f --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-access/Readme.md @@ -0,0 +1,3 @@ +# ext-theme-access/resources + +This folder contains static resources (typically an `"images"` folder as well). diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/ext-theme-access-all-debug.css b/extjs-django/marvel/static/extjs/resources/ext-theme-access/ext-theme-access-all-debug.css new file mode 100644 index 0000000..4689eda --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-access/ext-theme-access-all-debug.css @@ -0,0 +1,19216 @@ +/* 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. + */ +/* including package ext-theme-neutral */ +/* including package ext-theme-classic */ +/* including package ext-theme-access */ +/* including package ext-theme-access */ +/* including package ext-theme-classic */ +/* including package ext-theme-neutral */ +/** + * @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 {string} $font-size + * The default font-family 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 + */ +/** + * @class Ext.FocusManager + */ +/** + * @var {color} + * The border-color of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-style of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-width of the focusFrame. See {@link #method-enable}. + */ +/** + * @class Ext.LoadMask + */ +/** + * @var {number} + * Opacity of the LoadMask + */ +/** + * @var {color} + * The background-color of the LoadMask + */ +/** + * @var {string} + * The type of cursor to dislay when the cursor is over the LoadMask + */ +/** + * @var {number/list} + * The padding to apply to the LoadMask's message element + */ +/** + * @var {string} + * The border-style of the LoadMask's message element + */ +/** + * @var {color} + * The border-color of the LoadMask's message element + */ +/** + * @var {number} + * The border-width of the LoadMask's message element + */ +/** + * @var {color} + * The background-color of the LoadMask's message element + */ +/** + * @var {string/list} + * The background-gradient of the LoadMask's message element. Can be either the name + * of a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the message inner element + */ +/** + * @var {string} + * The icon to display in the message inner element + */ +/** + * @var {list} + * The background-position of the icon + */ +/** + * @var {string} + * The border-style of the message inner element + */ +/** + * @var {color} + * The border-color of the message inner element + */ +/** + * @var {number} + * The border-width of the message inner element + */ +/** + * @var {color} + * The background-color of the message inner element + */ +/** + * @var {color} + * The text color of the message inner element + */ +/** + * @var {number} + * The font-size of the message inner element + */ +/** + * @var {string} + * The font-weight of the message inner element + */ +/** + * @var {string} + * The font-family of the message inner element + */ +/** + * @var {number/list} + * The padding of the message element + */ +/** + * @var {number} + * The border-radius of the message element + */ +/** + * @class Ext.ProgressBar + */ +/** + * @var {number} + * The height of the ProgressBar + */ +/** + * @var {color} + * The border-color of the ProgressBar + */ +/** + * @var {number} + * The border-width of the ProgressBar + */ +/** + * @var {number} + * The border-radius of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar's moving element + */ +/** + * @var {string/list} + * The background-gradient of the ProgressBar's moving element. Can be either the name of + * a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The color of the ProgressBar's text when in front of the ProgressBar's moving element + */ +/** + * @var {color} + * The color of the ProgressBar's text when the ProgressBar's 'moving element is not under it + */ +/** + * @var {string} + * The text-align of the ProgressBar's text + */ +/** + * @var {number} + * The font-size of the ProgressBar's text + */ +/** + * @var {string} + * The font-weight of the ProgressBar's text + */ +/** + * @var {boolean} + * True to include the "default" ProgressBar UI + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a small {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a medium {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a large {@link #scale} button + */ +/** + * @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 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 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 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 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 disabled + */ +/** + * @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 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 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 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 disabled + */ +/** + * @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-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 buton 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-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 + */ +/** + * @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 {number/list} + * The margin 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 {number/list} + * The margin of Toolbar text + */ +/** + * @var {color} + * The text-color of Toolbar text + */ +/** + * @var {number/list} + * The padding of Toolbar text + */ +/** + * @var {number} + * The line-height of Toolbar text + */ +/** + * @var {number} + * The width of Toolbar scrollers + */ +/** + * @var {number} + * The height of Toolbar scrollers + */ +/** + * @var {color} + * The border-color of Toolbar scrollers + */ +/** + * @var {number} + * The border-width of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of disabled Toolbar scrollers + */ +/** + * @var {number} + * The opacity of disabled Toolbar scrollers + */ +/** + * @var {string} + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + */ +/** + * @var {boolean} + * True to include the "default" toolbar UI + */ +/** + * @class Ext.panel.Panel + */ +/** + * @var {number} + * The default border-width of Panels + */ +/** + * @var {color} + * The base color of Panels + */ +/** + * @var {color} + * The default border-color of Panels + */ +/** + * @var {$border-width-threshold} + * 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 {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 {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 {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 + */ +/** + * @class Ext.tip.Tip + */ +/** + * @var {color} + * The background-color of the Tip + */ +/** + * @var {string/list} + * The background-gradient of the Tip. Can be either the name of a predefined gradient or a + * list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The text color of the Tip body + */ +/** + * @var {number} + * The font-size of the Tip body + */ +/** + * @var {string} + * The font-weight of the Tip body + */ +/** + * @var {number/list} + * The padding of the Tip body + */ +/** + * @var {color} + * The text color of any anchor tags inside the Tip body + */ +/** + * @var {color} + * The text color of the Tip header + */ +/** + * @var {number} + * The font-size of the Tip header + */ +/** + * @var {string} + * The font-weight of the Tip header + */ +/** + * @var {number/list} + * The padding of the Tip header's body element + */ +/** + * @var {color} + * The border-color of the Tip + */ +/** + * @var {number} + * The border-width of the Tip + */ +/** + * @var {number} + * The border-radius of the Tip + */ +/** + * @var {color} + * The inner border-color of the form field error Tip + */ +/** + * @var {number} + * The inner border-width of the form field error Tip + */ +/** + * @var {color} + * The border-color of the form field error Tip + */ +/** + * @var {number} + * The border-radius of the form field error Tip + */ +/** + * @var {number} + * The border-width of the form field error Tip + */ +/** + * @var {color} + * The background-color of the form field error Tip + */ +/** + * @var {number/list} + * The padding of the form field error Tip's body element + */ +/** + * @var {color} + * The text color of the form field error Tip's body element + */ +/** + * @var {number} + * The font-size of the form field error Tip's body element + */ +/** + * @var {string} + * The font-weight of the form field error Tip's body element + */ +/** + * @var {color} + * The color of anchor tags in the form field error Tip's body element + */ +/** + * @var {number} + * The space between {@link Ext.panel.Tool Tools} in the header + */ +/** + * @var {string} + * The sprite to use for the header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" tip UI + */ +/** + * @var {boolean} + * True to include the "form-invalid" tip UI + */ +/** + * @class Ext.container.ButtonGroup + */ +/** + * @var {color} + * The background-color of the ButtonGroup + */ +/** + * @var {color} + * The border-color of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of the ButtonGroup + */ +/** + * @var {number/list} + * The body padding of the ButtonGroup + */ +/** + * @var {number/list} + * The inner border-width of the ButtonGroup + */ +/** + * @var {color} + * The inner border-color of the ButtonGroup + */ +/** + * @var {number/list} + * The margin of the header element. Used to add space around the header. + */ +/** + * @var {number} + * The font-size of the header + */ +/** + * @var {number} + * The font-weight of the header + */ +/** + * @var {number} + * The font-family of the header + */ +/** + * @var {number} + * The line-height of the header + */ +/** + * @var {number} + * The text color of the header + */ +/** + * @var {number} + * The padding of the header + */ +/** + * @var {number} + * The background-color of the header + */ +/** + * @var {number} + * The border-spacing to use on the table layout element + */ +/** + * @var {number} + * The background-color of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of framed ButtonGroups + */ +/** + * @var {string} + * Sprite image to use for header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" button group UI + */ +/** + * @var {boolean} + * True to include the "default-framed" button group UI + */ +/** + * @class Ext.window.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 + */ +/** + * @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 {color} + * The text color of toolbar field labels + */ +/** + * @var {string} + * The font-weight of toolbar field labels + */ +/** + * @var {number} + * The font-size of toolbar field labels + */ +/** + * @var {string} + * The font-family of toolbar field labels + */ +/** + * @var {number} + * The line-height of toolbar field labels + */ +/** + * @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 {measurement} $form-item-margin-bottom + * The bottom margin to apply to form items when in auto, anchor, vbox, or table layout + */ +/** + * @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 {font} $form-field-font + * Font 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 {font} $form-toolbar-field-font + * Font 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. + */ +/** + * @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 {number} $form-field-disabled-opacity + */ +/** + * @class Ext.form.field.TextArea + */ +/** + * @var {number/string} + * The line-height to use for the TextArea's text + */ +/** + * @class Ext.form.field.Display + */ +/** + * @var {color} + * The text color of display fields + */ +/** + * @var {string} + * The font-weight of display fields + */ +/** + * @var {number} + * The font-size of display fields + */ +/** + * @var {string} + * The font-family of display fields + */ +/** + * @var {number} + * The line-height of display fields + */ +/** + * @var {string} + * The font-weight of toolbar display fields + */ +/** + * @var {number} + * The font-size of toolbar display fields + */ +/** + * @var {string} + * The font-family of toolbar display fields + */ +/** + * @var {number} + * The line-height of toolbar display fields + */ +/** + * @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 + */ +/** + * @class Ext.form.field.Checkbox + */ +/** + * @var {number} + * The size of the checkbox + */ +/** + * @var {number} + * The space between the boxLabel and the checkbox. + */ +/** + * @class Ext.form.CheckboxGroup + */ +/** + * @var {number/list} + * The padding of the CheckboxGroup body element + */ +/** + * @var {color} + * The text color of the CheckboxGroup label + */ +/** + * @var {number} + * The padding of the CheckboxGroup label + */ +/** + * @var {number} + * The margin of the CheckboxGroup label + */ +/** + * @var {number} + * The border-width of the CheckboxGroup label + */ +/** + * @var {number} + * The border-style of the CheckboxGroup label + */ +/** + * @var {number} + * The border-color of the CheckboxGroup label + */ +/** + * @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/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/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 {number/list} + * The margin to apply to the FieldSet's checkbox (for FieldSets that use + * {@link #checkboxToggle}) + */ +/** + * @var {number} + * The size of the FieldSet's collapse tool + */ +/** + * @var {string} $fieldset-collapse-tool-background-image + * The background-image to use for the collapse tool. If null the default tool + * sprite will be used. Defaults to null. + */ +/** + * @class Ext.form.field.Radio + */ +/** + * @var {number} + * The size of the radio button + */ +/** + * @class Ext.form.field.Trigger + */ +/** + * @var {number} + * The width of the Trigger field's trigger element + */ +/** + * @var {number/list} + * The width of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border + */ +/** + * @var {string} + * The style of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border when hovered + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused and the trigger is hovered + */ +/** + * @class Ext.form.field.Spinner + */ +/** + * @var {number} + * The height of the Spinner trigger buttons + */ +/** + * @var {number} + * The height of the Spinner trigger buttons when the Spinner is used on a + * {@link Ext.toolbar.Toolbar Toolbar} + */ +/** + * @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 {number/list} + * The padding of BoundList items + */ +/** + * @var {number} + * The border-width of BoundList items + */ +/** + * @var {string} + * The border-style of BoundList items + */ +/** + * @var {color} + * The border-color of BoundList items + */ +/** + * @var {color} + * The border-color of hovered BoundList items + */ +/** + * @var {color} + * The border-color of selected BoundList items + */ +/** + * @var {color} + * The background-color of hovered BoundList items + */ +/** + * @var {color} + * The background-color of selected BoundList items + */ +/** + * @class Ext.picker.Date + */ +/** + * @var {number} + * The border-width of the DatePicker + */ +/** + * @var {string} + * The border-style of the DatePicker + */ +/** + * @var {color} + * The background-color of the DatePicker + */ +/** + * @var {string} + * The background-image of the DatePicker next arrow + */ +/** + * @var {string} + * The background-image of the DatePicker previous arrow + */ +/** + * @var {number} + * The width of DatePicker arrows + */ +/** + * @var {number} + * The height of DatePicker arrows + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a DatePicker arrow + */ +/** + * @var {number} + * The opacity of the DatePicker arrows + */ +/** + * @var {number} + * The opacity of the DatePicker arrows when hovered + */ +/** + * @var {string/list} + * The Date Picker header background gradient. Can be either the name of a predefined gradient + * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the Date Picker header + */ +/** + * @var {color} + * The color of the Date Picker month button + */ +/** + * @var {number} + * The width of the arrow on the Date Picker month button + */ +/** + * @var {string} + * The background-image of the arrow on the Date Picker month button + */ +/** + * @var {boolean} + * True to render the month button as transparent + */ +/** + * @var {string} + * The text-align of the Date Picker header + */ +/** + * @var {number} + * The height of Date Picker items + */ +/** + * @var {number} + * The width of Date Picker items + */ +/** + * @var {number/list} + * The padding of Date Picker items + */ +/** + * @var {string} + * The font-family of Date Picker items + */ +/** + * @var {number} + * The font-size of Date Picker items + */ +/** + * @var {string} + * The font-weight of Date Picker items + */ +/** + * @var {string} + * The text-align of Date Picker items + */ +/** + * @var {color} + * The text color of Date Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Date Picker item + */ +/** + * @var {string} + * The font-family of Date Picker column headers + */ +/** + * @var {number} + * The font-size of Date Picker column headers + */ +/** + * @var {string} + * The font-weight of Date Picker column headers + */ +/** + * @var {string/list} + * The background-gradient of Date Picker column headers. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {string} + * The border-style of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker column headers + */ +/** + * @var {string} + * The text-align of Date Picker column headers + */ +/** + * @var {number} + * The height of Date Picker column headers + */ +/** + * @var {number/list} + * The padding of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker items + */ +/** + * @var {string} + * The border-style of Date Picker items + */ +/** + * @var {color} + * The border-color of Date Picker items + */ +/** + * @var {string} + * The border-style of today's date on the Date Picker + */ +/** + * @var {string} + * The border-style of the selected item + */ +/** + * @var {string} + * The font-weight of the selected item + */ +/** + * @var {color} + * The text color of the items in the previous and next months + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a disabled item + */ +/** + * @var {color} + * The text color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of the Date Picker footer + */ +/** + * @var {string/list} + * The background-gradient of the Date Picker footer. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The border-width of the Date Picker footer + */ +/** + * @var {string} + * The border-style of the Date Picker footer + */ +/** + * @var {string} + * The text-align of the Date Picker footer + */ +/** + * @var {number/list} + * The padding of the Date Picker footer + */ +/** + * @var {number} + * The space between the footer buttons + */ +/** + * @var {color} + * The border-color of the Month Picker + */ +/** + * @var {number} + * The border-width of the Month Picker + */ +/** + * @var {string} + * The border-style of the Month Picker + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The border-color of Month Picker items + */ +/** + * @var {string} + * The border-style of Month Picker items + */ +/** + * @var {string} + * The font-family of Month Picker items + */ +/** + * @var {number} + * The font-size of Month Picker items + */ +/** + * @var {string} + * The font-weight of Month Picker items + */ +/** + * @var {number/list} + * The margin of Month Picker items + */ +/** + * @var {string} + * The text-align of Month Picker items + */ +/** + * @var {number} + * The height of Month Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker item + */ +/** + * @var {color} + * The background-color of hovered Month Picker items + */ +/** + * @var {color} + * The background-color of selected Month Picker items + */ +/** + * @var {string} + * The border-style of selected Month Picker items + */ +/** + * @var {color} + * The border-color of selected Month Picker items + */ +/** + * @var {number} + * The height of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The width of the Month Picker year navigation buttons + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker year navigation button + */ +/** + * @var {number} + * The opacity of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The opacity of hovered Month Picker year navigation buttons + */ +/** + * @var {string} + * The background-image of the Month Picker next year navigation button + */ +/** + * @var {string} + * The background-image of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker previous year navigation button + */ +/** + * @var {string} + * The border-style of the Month Picker separator + */ +/** + * @var {number} + * The border-width of the Month Picker separator + */ +/** + * @var {color} + * The border-color of the Month Picker separator + */ +/** + * @var {number/list} + * The margin of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @var {number} + * The height of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @class Ext.picker.Color + */ +/** + * @var {color} + * The background-color of Color Pickers + */ +/** + * @var {color} + * The border-color of Color Pickers + */ +/** + * @var {number} + * The border-width of Color Pickers + */ +/** + * @var {string} + * The border-style of Color Pickers + */ +/** + * @var {number} + * The number of columns to display in the Color Picker + */ +/** + * @var {number} + * The number of rows to display in the Color Picker + */ +/** + * @var {number} + * The height of each Color Picker item + */ +/** + * @var {number} + * The width of each Color Picker item + */ +/** + * @var {number} + * The padding of each Color Picker item + */ +/** + * @var {string} + * The cursor to display when the mouse is over a Color Picker item + */ +/** + * @var {color} + * The border-color of Color Picker items + */ +/** + * @var {number} + * The border-width of Color Picker items + */ +/** + * @var {string} + * The border-style of Color Picker items + */ +/** + * @var {color} + * The border-color of hovered Color Picker items + */ +/** + * @var {color} + * The background-color of Color Picker items + */ +/** + * @var {color} + * The background-color of hovered Color Picker items + */ +/** + * @var {color} + * The border-color of the selected Color Picker item + */ +/** + * @var {color} + * The background-color of the selected Color Picker item + */ +/** + * @var {color} + * The inner border-color of Color Picker items + */ +/** + * @var {number} + * The inner border-width of Color Picker items + */ +/** + * @var {string} + * The inner border-style of Color Picker items + */ +/** + * @class Ext.form.field.HtmlEditor + */ +/** + * @var {number} + * The border-width of the HtmlEditor + */ +/** + * @var {color} + * The border-color of the HtmlEditor + */ +/** + * @var {color} + * The background-color of the HtmlEditor + */ +/** + * @var {number} + * The size of the HtmlEditor toolbar icons + */ +/** + * @var {number} + * The font-size of the HtmlEditor's font selection control + */ +/** + * @var {number} + * The font-family of the HtmlEditor's font selection control + */ +/** + * @class Ext.panel.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} $grid-row-cell-line-height + * 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 {color} + * The border-color of the focused row + */ +/** + * @var {string} + * The border-style of the focused row + */ +/** + * @var {color} + * The text color of the focused row + */ +/** + * @var {color} + * The background-color of the focused row + */ +/** + * @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.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 {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 + */ +/** + * @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.CheckColumn + */ +/** + * @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.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.grid.feature.RowWrap + */ +/** + * @var {color} + * The border-color of wrapped rows + */ +/** + * @var {string} + * The border-style of wrapped rows + */ +/** + * @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 + */ +/** + * @class Ext.grid.plugin.Editing + */ +/** + * The height of grid editor text fields. 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 caluclated by adding $grid-row-cell-line-height to the top and bottom values of + * $grid-cell-inner-padding. + */ +/** + * The padding of grid editor text fields. + */ +/** + * @var {number} + * The font size of the grid editor text + */ +/** + * @var {string} + * The font-weight of the grid editor text + */ +/** + * @var {string} + * The font-family of the grid editor text + */ +/** + * @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 {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 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 {string} + * The text-transform property of Accordion headers + */ +/** + * @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.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 {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. + */ +/** + * @class Ext.layout.container.Border + */ +/** + * @var {color} + * The background-color of the Border layout element + */ +/** + * @class Ext.menu.Menu + */ +/** + * @var {color} + * The background-color of the 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 {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} + * The font-size of {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The margin 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 {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 {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {list} + * The background-position of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} text + */ +/** + * @var {number/list} + * The margin of {@link Ext.menu.Separator Menu Separators} + */ +/** + * @var {number} + * The padding to the right of {@link Ext.menu.CheckItem Check Items}, to make room + * for the checkbox + */ +/** + * @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 space to the left and right of {@link Ext.menu.Item Menu Item} arrows + */ +/** + * @var {number} + * The opacity of disabled {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The height of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers when hovered + */ +/** + * @var {number} + * The opacity of Menu crollers when pressed + */ +/** + * @var {number/list} + * The padding to apply to the Menu body element + */ +/** + * @var {color} + * The color of Menu Item text + */ +/** + * @var {number/list} + * The margin non-MenuItems placed in a Menu + */ +/** + * @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} + */ +/** + * @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.slider.Multi + */ +/** + * @var {number} + * The horizontal slider thumb width + */ +/** + * @var {number} + * The horizontal slider thumb height + */ +/** + * @var {number} + * The width of the horizontal slider end caps + */ +/** + * @var {number} + * The vertical slider thumb width + */ +/** + * @var {number} + * The vertical slider thumb height + */ +/** + * @var {number} + * The height of the vertical slider end caps + */ +/** + * @class Ext.tab.Tab + */ +/** + * @var {color} + * The base color of Tabs + */ +/** + * @var {color} + * The base color of hovered Tabs + */ +/** + * @var {color} + * The base color of the active Tabs + */ +/** + * @var {color} + * The base color of disabled Tabs + */ +/** + * @var {color} + * The text color of Tabs + */ +/** + * @var {color} + * The text color of hovered Tabs + */ +/** + * @var {color} + * The text color of the active Tab + */ +/** + * @var {color} + * The text color of disabled Tabs + */ +/** + * @var {number} + * The font-size of Tabs + */ +/** + * @var {number} + * The font-size of hovered Tabs + */ +/** + * @var {number} + * The font-size of the active Tab + */ +/** + * @var {number} + * The font-size of disabled Tabs + */ +/** + * @var {string} + * The font-family of Tabs + */ +/** + * @var {string} + * The font-family of hovered Tabs + */ +/** + * @var {string} + * The font-family of the active Tab + */ +/** + * @var {string} + * The font-family of disabled Tabs + */ +/** + * @var {string} + * The font-weight of Tabs + */ +/** + * @var {string} + * The font-weight of hovered Tabs + */ +/** + * @var {string} + * The font-weight of the active Tab + */ +/** + * @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 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 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} + * The border-width of Tabs + */ +/** + * @var {number/list} + * The inner border-width of Tabs + */ +/** + * @var {color} + * The inner border-color of Tabs + */ +/** + * @var {color} + * The border-color of Tabs + */ +/** + * @var {color} + * The border-color of hovered Tabs + */ +/** + * @var {color} + * The border-color of the active Tab + */ +/** + * @var {color} + * The border-color of disabled Tabs + */ +/** + * @var {number/list} + * The padding of Tabs + */ +/** + * @var {number/list} + * The padding of the Tab's text element + */ +/** + * @var {number} + * The line-height of Tabs + */ +/** + * @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 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 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 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 {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a left-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `left`. + */ +/** + * @var {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a right-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `right`. + */ +/** + * @var {boolean} + * True to include the "default" tab UI + */ +/** + * @class Ext.tab.Bar + */ +/** + * @var {number/list} + * The padding of the Tab Bar + */ +/** + * @var {number/list} + * The padding of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} Tab Bar strip + */ +/** + * @var {number} + * The width of the Tab Bar scrollers + */ +/** + * @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 change the x postition of the background image on hover to allow for a + * horizonatlly alined background image sprite + */ +/** + * @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.selection.CheckboxModel + */ +/** + * @var {number} + * The horizontal space before the checkbox + */ +/** + * @var {number} + * The horizontal space after the checkbox + */ +/** + * @class Ext.tree.Panel + */ +/** + * @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 + */ +/* 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 + */ +/** + * @var {boolean} $include-content-box + * True to include rules for browsers that do not support the border-box model + * (IE6 strict and IE7 strict) + */ +/** + * @var {boolean} $include-ff + * True to include Firefox specific rules + */ +/** + * @var {boolean} $include-chrome + * True to include Chrome specific rules + */ +/** + * @var {boolean} $include-safari + * True to include Safari specific rules + */ +/** + * @var {boolean} $include-opera + * True to include Opera specific rules + */ +/** + * @var {boolean} $include-webkit + * True to include Webkit specific rules + */ +/** + * @var {measurement} $css-shadow-border-radius + * The border radius for CSS shadows + */ +/** + * @var {color} $include-shadow-images + * True to include all shadow images. + */ +/** + * @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 {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. + */ +/* including package ext-theme-base */ +/* line 1, ../../../ext-theme-base/sass/src/Component.scss */ +.x-body { + margin: 0; +} + +/* line 5, ../../../ext-theme-base/sass/src/Component.scss */ +img { + border: 0; +} + +/* line 10, ../../../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 17, ../../../ext-theme-base/sass/src/Component.scss */ +.x-rtl { + direction: rtl; +} + +/* line 21, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ltr { + direction: ltr; +} + +/* line 25, ../../../ext-theme-base/sass/src/Component.scss */ +.x-clear { + overflow: hidden; + clear: both; + font-size: 0; + line-height: 0; + display: table; +} + +/* line 33, ../../../ext-theme-base/sass/src/Component.scss */ +.x-strict .x-ie7 .x-clear { + height: 0; + width: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/Component.scss */ +.x-layer { + position: absolute !important; + overflow: hidden; + zoom: 1; +} + +/* line 49, ../../../ext-theme-base/sass/src/Component.scss */ +.x-fixed-layer { + position: fixed !important; + overflow: hidden; + zoom: 1; +} + +/* line 55, ../../../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 63, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-display { + display: none !important; +} + +/* line 67, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-visibility { + visibility: hidden !important; +} + +/* line 72, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ie6 .x-item-disabled { + filter: none; +} + +/* line 78, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hidden, +.x-hide-offsets { + display: block !important; + visibility: hidden !important; + position: absolute !important; + top: -10000px !important; +} + +/* line 88, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-nosize { + height: 0 !important; + width: 0 !important; +} + +/* line 94, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-clip { + position: absolute!important; + clip: rect(0, 0, 0, 0); + clip: rect(0 0 0 0); +} + +/* line 102, ../../../ext-theme-base/sass/src/Component.scss */ +.x-masked-relative { + position: relative; +} + +/* line 108, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ie-shadow { + background-color: #777; + display: none; + position: absolute; + overflow: hidden; + zoom: 1; +} + +/* line 117, ../../../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; + cursor: default; +} + +/* line 121, ../../../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 136, ../../../ext-theme-base/sass/src/Component.scss */ +.x-list-plain { + list-style-type: none; + margin: 0; + padding: 0; +} + +/* line 143, ../../../ext-theme-base/sass/src/Component.scss */ +.x-table-plain { + border-collapse: collapse; + border-spacing: 0; + font-size: 1em; +} + +/* line 156, ../../../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 162, ../../../ext-theme-base/sass/src/Component.scss */ +.x-frame-tc, +.x-frame-bc { + background-repeat: repeat-x; +} + +/* line 166, ../../../ext-theme-base/sass/src/Component.scss */ +.x-frame-mc { + background-repeat: repeat-x; + overflow: hidden; +} + +/* line 171, ../../../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 178, ../../../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 184, ../../../ext-theme-base/sass/src/Component.scss */ +.x-item-disabled, +.x-item-disabled * { + cursor: default; +} + +/* line 3, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x-box-item { + position: absolute !important; + left: 0; + top: 0; +} + +/* line 4, ../../../ext-theme-base/sass/src/Editor.scss */ +div.x-editor { + overflow: visible; +} + +/* line 1, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask { + z-index: 100; + position: absolute; + width: 100%; + height: 100%; + zoom: 1; +} + +/* line 10, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask-shim { + z-index: 100; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +/* line 20, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask-msg { + z-index: 20001; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress { + position: relative; + border-style: solid; + overflow: hidden; +} + +/* line 7, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress-bar { + overflow: hidden; + position: absolute; + width: 0; + height: 100%; +} + +/* line 14, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress-text { + overflow: hidden; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn { + display: inline-block; + position: relative; + zoom: 1; + *display: inline; + outline: 0; + cursor: pointer; + white-space: nowrap; + vertical-align: middle; + text-decoration: none; +} + +/* line 15, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-wrap { + position: relative; + display: block; +} + +/* line 20, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-button { + position: relative; + display: block; + text-decoration: none; + overflow: hidden; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner { + display: block; + white-space: nowrap; + overflow: hidden; + zoom: 1; +} + +/* line 35, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 45, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-center { + text-align: center; +} + +/* line 49, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-left { + text-align: left; +} + +/* line 59, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-right { + text-align: right; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-target { + position: absolute; + width: 20000px; + top: 0; + left: 0; + height: 1px; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-inner { + overflow: hidden; + zoom: 1; + position: relative; + left: 0; + top: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-horizontal-box-overflow-body { + float: left; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller { + position: relative; + background-repeat: no-repeat; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller-left, +.x-box-scroller-right { + float: left; + height: 100%; + z-index: 5; +} + +/* line 59, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller-top .x-box-scroller, +.x-box-scroller-bottom .x-box-scroller { + line-height: 0; + font-size: 0; + background-position: center 0; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-menu-after { + float: right; +} + +/* line 1, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-text { + white-space: nowrap; +} + +/* line 5, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-separator { + display: block; + font-size: 1px; + overflow: hidden; + cursor: default; + border: 0; + width: 0; + height: 0; + line-height: 0px; +} + +/* line 17, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal { + width: 2px; +} + +/* line 22, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroller { + padding-left: 0; +} + +/* line 29, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-plain { + border: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked { + position: absolute !important; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-vertical { + position: static; +} + +/* line 11, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-top { + border-bottom-width: 0 !important; +} + +/* line 15, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-bottom { + border-top-width: 0 !important; +} + +/* line 19, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-left { + border-right-width: 0 !important; +} + +/* line 23, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-right { + border-left-width: 0 !important; +} + +/* line 27, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-top { + border-top-width: 0 !important; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-right { + border-right-width: 0 !important; +} + +/* line 35, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-bottom { + border-bottom-width: 0 !important; +} + +/* line 39, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-left { + border-left-width: 0 !important; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-l { + border-left-width: 0 !important; +} + +/* line 48, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-b { + border-bottom-width: 0 !important; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-bl { + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 55, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-r { + border-right-width: 0 !important; +} + +/* line 58, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rl { + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 62, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rb { + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rbl { + border-right-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 71, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-t { + border-top-width: 0 !important; +} + +/* line 74, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tl { + border-top-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 78, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tb { + border-top-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 82, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tbl { + border-top-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 87, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tr { + border-top-width: 0 !important; + border-right-width: 0 !important; +} + +/* line 91, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trl { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 96, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trb { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 101, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trbl { + border-width: 0 !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-header-icon { + background-repeat: no-repeat; + background-position: 0 0; + vertical-align: middle; + text-align: center; +} + +/* line 8, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-header-text-container { + overflow: hidden; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +/* line 4, ../../../ext-theme-base/sass/src/dd/DD.scss */ +.x-dd-drag-proxy, +.x-dd-drag-current { + z-index: 1000000!important; + pointer-events: none; +} + +/* line 2, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-repair .x-dd-drag-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 6, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-repair .x-dd-drop-icon { + display: none; +} + +/* line 11, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85); + opacity: 0.85; + padding: 5px; + padding-left: 20px; + white-space: nowrap; + color: #000; + font: normal 14px tahoma, arial, verdana, sans-serif; + border: 1px solid; + border-color: #ddd #bbb #bbb #ddd; + background-color: #fff; +} + +/* line 28, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-icon { + position: absolute; + top: 3px; + left: 3px; + display: block; + width: 16px; + height: 16px; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + z-index: 1; +} + +/* line 66, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-ok .x-dd-drop-icon { + background-image: url(images/dd/drop-yes.gif); +} + +/* line 70, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-ok-add .x-dd-drop-icon { + background-image: url(images/dd/drop-add.gif); +} + +/* line 75, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-nodrop div.x-dd-drop-icon { + background-image: url(images/dd/drop-no.gif); +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel, +.x-plain { + overflow: hidden; + position: relative; +} + +/* line 7, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel { + outline: none; +} + +/* line 23, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-ie .x-panel-header, +.x-ie .x-panel-header-tl, +.x-ie .x-panel-header-tc, +.x-ie .x-panel-header-tr, +.x-ie .x-panel-header-ml, +.x-ie .x-panel-header-mc, +.x-ie .x-panel-header-mr, +.x-ie .x-panel-header-bl, +.x-ie .x-panel-header-bc, +.x-ie .x-panel-header-br { + zoom: 1; +} + +/* line 29, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-ie8 td.x-frame-mc { + vertical-align: top; +} + +/* line 35, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel-body { + overflow: hidden; + position: relative; +} + +/* line 42, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-vertical .x-frame-mc { + background-repeat: repeat-y; +} + +/* line 49, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel-header-plain, +.x-panel-body-plain { + border: 0; + padding: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip { + position: absolute; + overflow: visible; + /*pointer needs to be able to stick out*/ +} + +/* line 6, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip-body { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip-anchor { + position: absolute; + overflow: hidden; + border-style: solid; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Table.scss */ +.x-table-layout { + font-size: 1em; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group { + position: relative; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body { + position: relative; + zoom: 1; +} +/* line 9, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body .x-table-layout-cell { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/Viewport.scss */ +.x-viewport, .x-viewport body { + margin: 0; + padding: 0; + border: 0 none; + overflow: hidden; + height: 100%; + position: static; +} + +/* line 1, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window { + outline: none; + overflow: hidden; +} +/* line 5, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window .x-window-wrap { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window-body { + position: relative; + overflow: hidden; +} + +/* line 15, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window-body-plain { + background: transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label { + display: block; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label-right { + text-align: right; +} + +/* line 9, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label-top { + display: block; + zoom: 1; +} + +/* line 15, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-invalid-icon { + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-invalid-icon ul { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x-form-textarea { + overflow: auto; + resize: none; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x-safari.x-mac .x-form-textarea { + margin-bottom: -2px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Display.scss */ +.x-form-display-field-body { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb-wrap { + vertical-align: top; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb { + vertical-align: top; + overflow: hidden; + padding: 0; + border: 0; +} +/* line 10, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb::-moz-focus-inner { + padding: 0; + border: 0; +} + +/* line 16, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label { + display: inline-block; + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset { + display: block; + /* preserve margins in IE */ + position: relative; +} + +/* line 6, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header { + overflow: hidden; +} +/* line 10, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-item, +.x-fieldset-header .x-tool { + float: left; +} +/* line 14, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb-wrap { + font-size: 0; + line-height: 0; +} +/* line 19, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb { + margin: 0; +} + +/* line 33, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text { + float: left; +} + +/*misc*/ +/* line 4, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-webkit *:focus { + outline: none !important; +} + +/* line 11, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-item { + vertical-align: top; + table-layout: fixed; +} + +/* line 17, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-item-body { + position: relative; +} + +/* line 33, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-form-item td { + border-top: 1px solid transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + cursor: pointer; + overflow: hidden; + background-repeat: no-repeat; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-item-disabled .x-form-trigger { + cursor: default; +} + +/* line 10, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-trigger-noedit { + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap { + vertical-align: top; + border-collapse: separate; +} + +/* line 2, ../../../ext-theme-base/sass/src/form/field/Spinner.scss */ +.x-form-spinner-up, +.x-form-spinner-down { + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-inner { + table-layout: fixed; + width: 100%; + border-collapse: separate; +} + +/* line 11, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-cell { + padding: 0; +} + +/* line 15, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-header { + position: relative; + zoom: 1; +} + +/* line 20, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-arrow { + position: absolute; + outline: none; + font-size: 0; +} + +/* line 26, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-column-header { + padding: 0; +} + +/* line 30, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-date { + display: block; + zoom: 1; + text-decoration: none; +} + +/* line 36, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker { + position: absolute; + left: 0; + top: 0; +} + +/* line 42, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-body { + height: 100%; +} + +/* line 47, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-months, +.x-monthpicker-years { + float: left; + height: 100%; +} + +/* line 52, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-item { + float: left; +} + +/* line 56, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-item-inner { + display: block; + text-decoration: none; +} + +/* line 61, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button-ct { + float: left; + text-align: center; +} + +/* line 66, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button { + display: inline-block; + outline: none; + font-size: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-buttons { + position: absolute; + bottom: 0; + width: 100%; +} +/* line 78, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-strict .x-ie6 .x-monthpicker-buttons { + bottom: -1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/File.scss */ +.x-form-file-btn { + overflow: hidden; +} + +/* line 5, ../../../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 1, ../../../ext-theme-base/sass/src/form/field/Hidden.scss */ +.x-form-item-hidden { + margin: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x-color-picker-item { + float: left; + text-decoration: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x-color-picker-item-inner { + display: block; + font-size: 1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-toolbar { + position: static !important; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x-htmleditor-iframe { + display: block; + overflow: auto; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Fit.scss */ +.x-fit-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-row, +.x-grid-data-row { + outline: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-view { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-table { + table-layout: fixed; + border-collapse: separate; +} + +/* line 16, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-td { + overflow: hidden; + border-width: 0; + vertical-align: top; +} + +/* line 22, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-cell-inner { + overflow: hidden; + white-space: nowrap; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-resize-marker { + position: absolute; + z-index: 5; + top: 0; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + position: absolute; + top: 0; + line-height: 0; + font-size: 0; + overflow: hidden; + z-index: 20000; + background: no-repeat center top transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/header/Container.scss */ +.x-grid-header-ct { + cursor: default; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header { + position: absolute; + overflow: hidden; + background-repeat: repeat-x; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-inner { + zoom: 1; + white-space: nowrap; + position: relative; + overflow: hidden; +} + +/* line 14, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-text { + white-space: nowrap; + background-repeat: no-repeat; + zoom: 1; + display: inline-block; +} + +/* line 25, ../../../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 43, ../../../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 48, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-right { + text-align: right; +} + +/* line 58, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-left { + text-align: left; +} + +/* line 68, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-center { + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Action.scss */ +.x-grid-cell-inner-action-col { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/CheckColumn.scss */ +.x-grid-cell-inner-checkcolumn { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/RowNumberer.scss */ +.x-row-numberer .x-column-header-inner { + text-overflow: clip; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-group, +.x-grid-group-body, +.x-grid-group-hd { + zoom: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd { + white-space: nowrap; +} + +/* line 11, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-row-body-hidden, .x-grid-group-collapsed { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x-grid-rowbody { + zoom: 1; +} + +/* line 5, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x-grid-row-body-hidden { + display: none; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x-grid-rowwrap .x-grid-table { + border: 0; +} +/* line 6, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x-grid-rowwrap .x-grid-cell { + border-bottom: 0; + background-color: transparent; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb-wrap { + text-align: center; +} + +/* line 9, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field { + margin: 0; + white-space: nowrap; + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor div.x-form-action-col-field { + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor { + position: absolute; + overflow: visible; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons { + position: absolute; + white-space: nowrap; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-expander { + font-size: 0; + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x-abs-layout-ct { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x-abs-layout-item { + position: absolute !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter { + font-size: 1px; +} + +/* line 5, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-horizontal { + cursor: e-resize; + cursor: row-resize; +} + +/* line 10, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-vertical { + cursor: e-resize; + cursor: col-resize; +} + +/* line 17, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed, +.x-splitter-horizontal-noresize, +.x-splitter-vertical-noresize { + cursor: default; +} + +/* line 21, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-active { + z-index: 4; +} + +/* line 25, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-collapse-el { + position: absolute; + background-repeat: no-repeat; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-region-slide-in { + z-index: 5; +} + +/* line 14, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-region-collapsed-placeholder { + z-index: 4; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-column { + float: left; +} + +/* line 21, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-ie6 .x-column { + display: inline; + /*prevent IE6 double-margin bug*/ +} + +/* line 25, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-quirks .x-ie .x-form-layout-table, .x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x-form-layout-table { + border-collapse: separate; + border-spacing: 0 2px; +} + +/* line 9, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x-ie6 .x-form-layout-table { + border-collapse: collapse; + border-spacing: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu { + outline: none; +} + +/* line 5, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item { + white-space: nowrap; + overflow: hidden; +} + +/* line 14, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-cmp .x-field-label-cell { + vertical-align: middle; +} + +/* line 22, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-icon-separator { + position: absolute; + top: 0px; + z-index: 0; + height: 100%; + overflow: hidden; +} +/* line 28, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-plain .x-menu-icon-separator { + display: none; +} + +/* line 33, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-link { + text-decoration: none; + outline: 0; + zoom: 1; +} + +/* line 40, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-text { + zoom: 1; +} + +/* line 47, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-icon, +.x-menu-item-icon-right, +.x-menu-item-arrow { + position: absolute; + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/SplitterTracker.scss */ +.x-resizable-overlay { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + display: none; + z-index: 200000; + background-color: #fff; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider { + outline: none; + zoom: 1; + position: relative; +} + +/* line 9, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-inner { + position: relative; + left: 0; + top: 0; + overflow: visible; + zoom: 1; +} +/* line 17, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-inner { + background: repeat-y 0 0; +} + +/* line 23, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-end { + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-thumb { + position: absolute; + background: no-repeat 0 0; +} +/* line 31, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb { + left: 0; +} +/* line 34, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb { + bottom: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Tab.scss */ +a.x-tab { + text-decoration: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Bar.scss */ +.x-tab-bar { + position: relative; +} + +/* line 1, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox .x-column-header-text { + display: block; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 7, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x-grid-cell-row-checker { + vertical-align: middle; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab { + display: block; + white-space: nowrap; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-active { + z-index: 3; +} + +/* line 11, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-wrap { + display: block; + position: relative; +} + +/* line 16, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-button { + zoom: 1; + display: block; + outline: none; +} + +/* line 22, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-inner { + display: block; + text-align: center; + white-space: nowrap; + text-overflow: ellipsis; + -o-text-overflow: ellipsis; + overflow: hidden; + zoom: 1; +} + +/* line 32, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 42, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar { + z-index: 1; +} + +/* line 46, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-body { + z-index: 2; + position: relative; +} + +/* line 51, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip { + position: absolute; + line-height: 0; + font-size: 0; + z-index: 1; +} + +/* line 58, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-horizontal .x-tab-bar-strip { + width: 100%; + left: 0; +} + +/* line 63, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-vertical .x-tab-bar-strip { + height: 100%; + top: 0; +} + +/* line 68, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-top { + bottom: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-bottom { + top: 0; +} + +/* line 76, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-left { + right: 0; +} + +/* line 87, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-right { + left: 0; +} + +/* line 98, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-plain { + background: transparent !important; +} + +/* line 102, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-icon-el { + position: absolute; + background-repeat: no-repeat; + top: 0; + left: 0; + right: auto; + bottom: 0; +} + +/* line 118, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-close-btn { + display: block; + position: absolute; + font-size: 0; + line-height: 0; + background: no-repeat; +} + +/* line 126, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-mc { + overflow: visible; +} + +/* line 3, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-autowidth-table .x-grid-table { + table-layout: auto; + width: auto !important; +} + +/* line 8, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-view { + overflow: hidden; +} + +/* line 13, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-elbow-img, +.x-tree-icon { + background-repeat: no-repeat; + background-position: 0 center; + vertical-align: top; +} + +/* line 19, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-checkbox { + border: 0; + padding: 0; + vertical-align: top; + position: relative; + background-color: transparent; +} + +/* line 27, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-animator-wrap { + overflow: hidden; +} + +/* line 31, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-node-text { + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-surface { + display: -moz-inline-stack; + display: inline-block; + vertical-align: middle; + *vertical-align: auto; + zoom: 1; + *display: inline; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.rvml { + behavior: url(#default#VML); +} + +/* line 10, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-surface tspan { + user-select: none; + -o-user-select: none; + -ms-user-select: none; + -moz-user-select: -moz-none; + -webkit-user-select: none; + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-sprite { + position: absolute; + left: 0; + top: 0; + width: 1px; + height: 1px; +} + +/* line 22, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-group { + position: absolute; + left: 0; + top: 0; + width: 1000px; + height: 1000px; +} + +/* line 30, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-measure-span { + position: absolute; + left: -9999em; + top: -9999em; + padding: 0; + margin: 0; + display: inline; +} + +/* line 39, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 47, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 55, ../../../ext-theme-base/sass/src/draw/Component.scss */ +svg, vml { + overflow: hidden; +} + +/* including package ext-theme-neutral */ +/* line 1, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x-body { + color: white; + font-size: 15px; + font-family: tahoma, arial, verdana, sans-serif; + background: black; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x-animating-size, +.x-collapsed { + overflow: hidden!important; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/Editor.scss */ +.x-editor .x-form-item-body { + padding-bottom: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-element { + position: absolute; + top: -10px; + left: -10px; + width: 0px; + height: 0px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame { + position: absolute; + left: 0px; + top: 0px; + z-index: 100000000; + width: 0px; + height: 0px; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-top, +.x-focus-frame-bottom, +.x-focus-frame-left, +.x-focus-frame-right { + position: absolute; + top: 0px; + left: 0px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-top, +.x-focus-frame-bottom { + border-top: solid 2px #15428b; + height: 2px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-left, +.x-focus-frame-right { + border-left: solid 2px #15428b; + width: 2px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + background: #cccccc; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg { + padding: 2px; + border-style: solid; + border-width: 1px; + border-color: #222233; + background-image: none; + background-color: #3f4757; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg-inner { + padding: 5px 10px; + border-style: solid; + border-width: 1px; + border-color: #555566; + background-color: #232d38; + color: white; + font: normal 14px tahoma, arial, verdana, sans-serif; +} + +/* line 41, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg-text { + padding: 5px 5px 5px 20px; +} + +/** + * Creates a visual theme for an Ext.ProgressBar + * + * @param {string} $ui-label + * 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 67, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default { + background-color: #232d38; + border-width: 1px; + height: 20px; + border-color: #18181a; + /**/ + /**/ + /* */ +} +/* line 72, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-content-box .x-progress-default { + height: 18px; +} +/* line 84, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-bar-default { + background-image: none; + background-color: #ed9200; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffb43b), color-stop(50%, #ffa007), color-stop(51%, #ed9200), color-stop(100%, #d38200)); + background-image: -webkit-linear-gradient(top, #ffb43b, #ffa007 50%, #ed9200 51%, #d38200); + background-image: -moz-linear-gradient(top, #ffb43b, #ffa007 50%, #ed9200 51%, #d38200); + background-image: -o-linear-gradient(top, #ffb43b, #ffa007 50%, #ed9200 51%, #d38200); + background-image: linear-gradient(top, #ffb43b, #ffa007 50%, #ed9200 51%, #d38200); +} +/* line 92, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-nlg .x-progress-default .x-progress-bar-default { + background: repeat-x; + background-image: url(images/progress/progress-default-bg.gif); +} +/* line 99, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-text { + color: white; + font-weight: bold; + font-size: 14px; + text-align: center; + line-height: 18px; +} +/* line 107, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-text-back { + color: #aaaaaa; + line-height: 18px; +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-progress-default .x-progress-bar-default:after { + display: none; + content: "x-slicer:bg:url(images/progress/progress-default-bg.gif)"; +} + +/** + * Creates a visual theme for a 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-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-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-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-disabled + * The text color of the button when the button is disabled + * + * @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-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-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-disabled + * The font-family of the button when the button is disabled + * + * @param {number} $icon-size + * The size of the button icon + * + * @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=false] + * 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 + */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small { + border-color: #06070a; +} + +/* line 137, ../../../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: 2px 2px 2px 2px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #2a3142; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a3142), color-stop(48%, #252c3b), color-stop(52%, #13171f), color-stop(100%, #171b25)); + background-image: -webkit-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); + background-image: -moz-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); + background-image: -o-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); + background-image: linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mc { + background-image: url(images/btn/btn-default-small-fbg.gif); + background-position: 0 top; + background-color: #2a3142; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-small { + background-image: url(images/btn/btn-default-small-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tr, +.x-btn-default-small-br, +.x-btn-default-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl, +.x-btn-default-small-bl, +.x-btn-default-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl, +.x-btn-default-small-bl, +.x-btn-default-small-tr, +.x-btn-default-small-br, +.x-btn-default-small-tc, +.x-btn-default-small-bc, +.x-btn-default-small-ml, +.x-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-ml, +.x-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-small-tl, +.x-strict .x-ie7 .x-btn-default-small-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-inner { + font-size: 14px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: white; + padding: 0 4px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow-right { + padding-right: 14px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-glyph { + font-size: 16px; + line-height: 16px; + color: white; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-small .x-btn-glyph { + color: #9498a0; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled { + border-color: #565656; + background-image: none; + background-color: #6b6b6b; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6b6b6b), color-stop(48%, #656565), color-stop(52%, #4e4e4e), color-stop(100%, #535353)); + background-image: -webkit-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); + background-image: -moz-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); + background-image: -o-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); + background-image: linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-button, +.x-btn-default-small-noicon .x-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-inner, +.x-btn-default-small-noicon .x-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-small-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-inner { + line-height: 16px; + padding-left: 20px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-small-icon-text-left .x-btn-icon-el { + height: 16px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-inner { + line-height: 16px; + padding-right: 20px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-small-icon-text-right .x-btn-icon-el { + height: 16px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-top .x-btn-inner { + padding-top: 20px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-top .x-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-bottom .x-btn-inner { + padding-bottom: 20px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-bottom .x-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over { + border-color: #947518; + background-image: none; + background-color: #ed9200; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ed9200), color-stop(48%, #e29200), color-stop(52%, #9d7921), color-stop(100%, #ab821b)); + background-image: -webkit-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -moz-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -o-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus { + border-color: #947518; + background-image: none; + background-color: #ed9200; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ed9200), color-stop(48%, #e29200), color-stop(52%, #9d7921), color-stop(100%, #ab821b)); + background-image: -webkit-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -moz-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -o-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active, +.x-btn-default-small-pressed { + border-color: #c9750f; + background-image: none; + background-color: #da7b19; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #da7b19), color-stop(48%, #e17b1d), color-stop(52%, #db6800), color-stop(100%, #e66e00)); + background-image: -webkit-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); + background-image: -moz-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); + background-image: -o-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); + background-image: linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-tl, +.x-btn-default-small-over .x-frame-bl, +.x-btn-default-small-over .x-frame-tr, +.x-btn-default-small-over .x-frame-br, +.x-btn-default-small-over .x-frame-tc, +.x-btn-default-small-over .x-frame-bc { + background-image: url(images/btn/btn-default-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-ml, +.x-btn-default-small-over .x-frame-mr { + background-image: url(images/btn/btn-default-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-mc { + background-color: #ed9200; + background-image: url(images/btn/btn-default-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-tl, +.x-btn-default-small-focus .x-frame-bl, +.x-btn-default-small-focus .x-frame-tr, +.x-btn-default-small-focus .x-frame-br, +.x-btn-default-small-focus .x-frame-tc, +.x-btn-default-small-focus .x-frame-bc { + background-image: url(images/btn/btn-default-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-ml, +.x-btn-default-small-focus .x-frame-mr { + background-image: url(images/btn/btn-default-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-mc { + background-color: #ed9200; + background-image: url(images/btn/btn-default-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-tl, +.x-btn-default-small-menu-active .x-frame-bl, +.x-btn-default-small-menu-active .x-frame-tr, +.x-btn-default-small-menu-active .x-frame-br, +.x-btn-default-small-menu-active .x-frame-tc, +.x-btn-default-small-menu-active .x-frame-bc, +.x-btn-default-small-pressed .x-frame-tl, +.x-btn-default-small-pressed .x-frame-bl, +.x-btn-default-small-pressed .x-frame-tr, +.x-btn-default-small-pressed .x-frame-br, +.x-btn-default-small-pressed .x-frame-tc, +.x-btn-default-small-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-ml, +.x-btn-default-small-menu-active .x-frame-mr, +.x-btn-default-small-pressed .x-frame-ml, +.x-btn-default-small-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-mc, +.x-btn-default-small-pressed .x-frame-mc { + background-color: #da7b19; + background-image: url(images/btn/btn-default-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-tl, +.x-btn-default-small-disabled .x-frame-bl, +.x-btn-default-small-disabled .x-frame-tr, +.x-btn-default-small-disabled .x-frame-br, +.x-btn-default-small-disabled .x-frame-tc, +.x-btn-default-small-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-ml, +.x-btn-default-small-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-mc { + background-color: #6b6b6b; + background-image: url(images/btn/btn-default-small-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-over { + background-image: url(images/btn/btn-default-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-focus { + background-image: url(images/btn/btn-default-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-menu-active, +.x-nlg .x-btn-default-small-pressed { + background-image: url(images/btn/btn-default-small-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-disabled { + background-image: url(images/btn/btn-default-small-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 18px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 16px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-btn-inner, +.x-btn-default-small-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium { + border-color: #06070a; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #2a3142; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a3142), color-stop(48%, #252c3b), color-stop(52%, #13171f), color-stop(100%, #171b25)); + background-image: -webkit-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); + background-image: -moz-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); + background-image: -o-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); + background-image: linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mc { + background-image: url(images/btn/btn-default-medium-fbg.gif); + background-position: 0 top; + background-color: #2a3142; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-medium { + background-image: url(images/btn/btn-default-medium-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tr, +.x-btn-default-medium-br, +.x-btn-default-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl, +.x-btn-default-medium-bl, +.x-btn-default-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl, +.x-btn-default-medium-bl, +.x-btn-default-medium-tr, +.x-btn-default-medium-br, +.x-btn-default-medium-tc, +.x-btn-default-medium-bc, +.x-btn-default-medium-ml, +.x-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-ml, +.x-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-medium-tl, +.x-strict .x-ie7 .x-btn-default-medium-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-inner { + font-size: 14px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: white; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow-right { + padding-right: 14px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-glyph { + font-size: 24px; + line-height: 24px; + color: white; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-medium .x-btn-glyph { + color: #9498a0; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled { + border-color: #565656; + background-image: none; + background-color: #6b6b6b; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6b6b6b), color-stop(48%, #656565), color-stop(52%, #4e4e4e), color-stop(100%, #535353)); + background-image: -webkit-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); + background-image: -moz-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); + background-image: -o-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); + background-image: linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-button, +.x-btn-default-medium-noicon .x-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-inner, +.x-btn-default-medium-noicon .x-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-medium-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-inner { + line-height: 24px; + padding-left: 28px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon-el { + height: 24px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-inner { + line-height: 24px; + padding-right: 28px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon-el { + height: 24px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-top .x-btn-inner { + padding-top: 28px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-top .x-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-bottom .x-btn-inner { + padding-bottom: 28px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-bottom .x-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over { + border-color: #947518; + background-image: none; + background-color: #ed9200; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ed9200), color-stop(48%, #e29200), color-stop(52%, #9d7921), color-stop(100%, #ab821b)); + background-image: -webkit-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -moz-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -o-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus { + border-color: #947518; + background-image: none; + background-color: #ed9200; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ed9200), color-stop(48%, #e29200), color-stop(52%, #9d7921), color-stop(100%, #ab821b)); + background-image: -webkit-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -moz-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -o-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active, +.x-btn-default-medium-pressed { + border-color: #c9750f; + background-image: none; + background-color: #da7b19; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #da7b19), color-stop(48%, #e17b1d), color-stop(52%, #db6800), color-stop(100%, #e66e00)); + background-image: -webkit-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); + background-image: -moz-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); + background-image: -o-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); + background-image: linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-tl, +.x-btn-default-medium-over .x-frame-bl, +.x-btn-default-medium-over .x-frame-tr, +.x-btn-default-medium-over .x-frame-br, +.x-btn-default-medium-over .x-frame-tc, +.x-btn-default-medium-over .x-frame-bc { + background-image: url(images/btn/btn-default-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-ml, +.x-btn-default-medium-over .x-frame-mr { + background-image: url(images/btn/btn-default-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-mc { + background-color: #ed9200; + background-image: url(images/btn/btn-default-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-tl, +.x-btn-default-medium-focus .x-frame-bl, +.x-btn-default-medium-focus .x-frame-tr, +.x-btn-default-medium-focus .x-frame-br, +.x-btn-default-medium-focus .x-frame-tc, +.x-btn-default-medium-focus .x-frame-bc { + background-image: url(images/btn/btn-default-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-ml, +.x-btn-default-medium-focus .x-frame-mr { + background-image: url(images/btn/btn-default-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-mc { + background-color: #ed9200; + background-image: url(images/btn/btn-default-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-tl, +.x-btn-default-medium-menu-active .x-frame-bl, +.x-btn-default-medium-menu-active .x-frame-tr, +.x-btn-default-medium-menu-active .x-frame-br, +.x-btn-default-medium-menu-active .x-frame-tc, +.x-btn-default-medium-menu-active .x-frame-bc, +.x-btn-default-medium-pressed .x-frame-tl, +.x-btn-default-medium-pressed .x-frame-bl, +.x-btn-default-medium-pressed .x-frame-tr, +.x-btn-default-medium-pressed .x-frame-br, +.x-btn-default-medium-pressed .x-frame-tc, +.x-btn-default-medium-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-ml, +.x-btn-default-medium-menu-active .x-frame-mr, +.x-btn-default-medium-pressed .x-frame-ml, +.x-btn-default-medium-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-mc, +.x-btn-default-medium-pressed .x-frame-mc { + background-color: #da7b19; + background-image: url(images/btn/btn-default-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-tl, +.x-btn-default-medium-disabled .x-frame-bl, +.x-btn-default-medium-disabled .x-frame-tr, +.x-btn-default-medium-disabled .x-frame-br, +.x-btn-default-medium-disabled .x-frame-tc, +.x-btn-default-medium-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-ml, +.x-btn-default-medium-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-mc { + background-color: #6b6b6b; + background-image: url(images/btn/btn-default-medium-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-over { + background-image: url(images/btn/btn-default-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-focus { + background-image: url(images/btn/btn-default-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-menu-active, +.x-nlg .x-btn-default-medium-pressed { + background-image: url(images/btn/btn-default-medium-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-disabled { + background-image: url(images/btn/btn-default-medium-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 18px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 16px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-btn-inner, +.x-btn-default-medium-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large { + border-color: #06070a; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #2a3142; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a3142), color-stop(48%, #252c3b), color-stop(52%, #13171f), color-stop(100%, #171b25)); + background-image: -webkit-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); + background-image: -moz-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); + background-image: -o-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); + background-image: linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mc { + background-image: url(images/btn/btn-default-large-fbg.gif); + background-position: 0 top; + background-color: #2a3142; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-large { + background-image: url(images/btn/btn-default-large-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tr, +.x-btn-default-large-br, +.x-btn-default-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl, +.x-btn-default-large-bl, +.x-btn-default-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl, +.x-btn-default-large-bl, +.x-btn-default-large-tr, +.x-btn-default-large-br, +.x-btn-default-large-tc, +.x-btn-default-large-bc, +.x-btn-default-large-ml, +.x-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-ml, +.x-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-large-tl, +.x-strict .x-ie7 .x-btn-default-large-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-inner { + font-size: 14px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: white; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow-right { + padding-right: 14px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-glyph { + font-size: 32px; + line-height: 32px; + color: white; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-large .x-btn-glyph { + color: #9498a0; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled { + border-color: #565656; + background-image: none; + background-color: #6b6b6b; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6b6b6b), color-stop(48%, #656565), color-stop(52%, #4e4e4e), color-stop(100%, #535353)); + background-image: -webkit-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); + background-image: -moz-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); + background-image: -o-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); + background-image: linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-button, +.x-btn-default-large-noicon .x-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-inner, +.x-btn-default-large-noicon .x-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-large-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-inner { + line-height: 32px; + padding-left: 36px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-large-icon-text-left .x-btn-icon-el { + height: 32px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-inner { + line-height: 32px; + padding-right: 36px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-large-icon-text-right .x-btn-icon-el { + height: 32px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-top .x-btn-inner { + padding-top: 36px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-top .x-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-bottom .x-btn-inner { + padding-bottom: 36px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-bottom .x-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over { + border-color: #947518; + background-image: none; + background-color: #ed9200; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ed9200), color-stop(48%, #e29200), color-stop(52%, #9d7921), color-stop(100%, #ab821b)); + background-image: -webkit-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -moz-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -o-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus { + border-color: #947518; + background-image: none; + background-color: #ed9200; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ed9200), color-stop(48%, #e29200), color-stop(52%, #9d7921), color-stop(100%, #ab821b)); + background-image: -webkit-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -moz-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -o-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active, +.x-btn-default-large-pressed { + border-color: #c9750f; + background-image: none; + background-color: #da7b19; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #da7b19), color-stop(48%, #e17b1d), color-stop(52%, #db6800), color-stop(100%, #e66e00)); + background-image: -webkit-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); + background-image: -moz-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); + background-image: -o-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); + background-image: linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-tl, +.x-btn-default-large-over .x-frame-bl, +.x-btn-default-large-over .x-frame-tr, +.x-btn-default-large-over .x-frame-br, +.x-btn-default-large-over .x-frame-tc, +.x-btn-default-large-over .x-frame-bc { + background-image: url(images/btn/btn-default-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-ml, +.x-btn-default-large-over .x-frame-mr { + background-image: url(images/btn/btn-default-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-mc { + background-color: #ed9200; + background-image: url(images/btn/btn-default-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-tl, +.x-btn-default-large-focus .x-frame-bl, +.x-btn-default-large-focus .x-frame-tr, +.x-btn-default-large-focus .x-frame-br, +.x-btn-default-large-focus .x-frame-tc, +.x-btn-default-large-focus .x-frame-bc { + background-image: url(images/btn/btn-default-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-ml, +.x-btn-default-large-focus .x-frame-mr { + background-image: url(images/btn/btn-default-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-mc { + background-color: #ed9200; + background-image: url(images/btn/btn-default-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-tl, +.x-btn-default-large-menu-active .x-frame-bl, +.x-btn-default-large-menu-active .x-frame-tr, +.x-btn-default-large-menu-active .x-frame-br, +.x-btn-default-large-menu-active .x-frame-tc, +.x-btn-default-large-menu-active .x-frame-bc, +.x-btn-default-large-pressed .x-frame-tl, +.x-btn-default-large-pressed .x-frame-bl, +.x-btn-default-large-pressed .x-frame-tr, +.x-btn-default-large-pressed .x-frame-br, +.x-btn-default-large-pressed .x-frame-tc, +.x-btn-default-large-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-ml, +.x-btn-default-large-menu-active .x-frame-mr, +.x-btn-default-large-pressed .x-frame-ml, +.x-btn-default-large-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-mc, +.x-btn-default-large-pressed .x-frame-mc { + background-color: #da7b19; + background-image: url(images/btn/btn-default-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-tl, +.x-btn-default-large-disabled .x-frame-bl, +.x-btn-default-large-disabled .x-frame-tr, +.x-btn-default-large-disabled .x-frame-br, +.x-btn-default-large-disabled .x-frame-tc, +.x-btn-default-large-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-ml, +.x-btn-default-large-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-mc { + background-color: #6b6b6b; + background-image: url(images/btn/btn-default-large-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-over { + background-image: url(images/btn/btn-default-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-focus { + background-image: url(images/btn/btn-default-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-menu-active, +.x-nlg .x-btn-default-large-pressed { + background-image: url(images/btn/btn-default-large-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-disabled { + background-image: url(images/btn/btn-default-large-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 18px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 16px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-btn-inner, +.x-btn-default-large-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small { + border-color: transparent; +} + +/* line 137, ../../../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: 2px 2px 2px 2px; + border-width: 1px; + border-style: solid; + background-color: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tr, +.x-btn-default-toolbar-small-br, +.x-btn-default-toolbar-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl, +.x-btn-default-toolbar-small-bl, +.x-btn-default-toolbar-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl, +.x-btn-default-toolbar-small-bl, +.x-btn-default-toolbar-small-tr, +.x-btn-default-toolbar-small-br, +.x-btn-default-toolbar-small-tc, +.x-btn-default-toolbar-small-bc, +.x-btn-default-toolbar-small-ml, +.x-btn-default-toolbar-small-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-ml, +.x-btn-default-toolbar-small-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-small-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-small-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-inner { + font-size: 14px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: white; + padding: 0 4px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow-right { + padding-right: 14px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-glyph { + font-size: 16px; + line-height: 16px; + color: white; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-small .x-btn-glyph { + color: white; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled { + border-color: #565656; + background-image: none; + background-color: transparent; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-button, +.x-btn-default-toolbar-small-noicon .x-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-inner { + line-height: 16px; + padding-left: 20px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el { + height: 16px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-inner { + line-height: 16px; + padding-right: 20px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el { + height: 16px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-top .x-btn-inner { + padding-top: 20px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner { + padding-bottom: 20px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over { + border-color: #d97e27; + background-image: none; + background-color: #ed9200; +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus { + border-color: #d97e27; + background-image: none; + background-color: #ed9200; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active, +.x-btn-default-toolbar-small-pressed { + border-color: #c86e19; + background-image: none; + background-color: #db7b1f; +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-tl, +.x-btn-default-toolbar-small-over .x-frame-bl, +.x-btn-default-toolbar-small-over .x-frame-tr, +.x-btn-default-toolbar-small-over .x-frame-br, +.x-btn-default-toolbar-small-over .x-frame-tc, +.x-btn-default-toolbar-small-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-ml, +.x-btn-default-toolbar-small-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-mc { + background-color: #ed9200; +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-tl, +.x-btn-default-toolbar-small-focus .x-frame-bl, +.x-btn-default-toolbar-small-focus .x-frame-tr, +.x-btn-default-toolbar-small-focus .x-frame-br, +.x-btn-default-toolbar-small-focus .x-frame-tc, +.x-btn-default-toolbar-small-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-ml, +.x-btn-default-toolbar-small-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-mc { + background-color: #ed9200; +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-tl, +.x-btn-default-toolbar-small-menu-active .x-frame-bl, +.x-btn-default-toolbar-small-menu-active .x-frame-tr, +.x-btn-default-toolbar-small-menu-active .x-frame-br, +.x-btn-default-toolbar-small-menu-active .x-frame-tc, +.x-btn-default-toolbar-small-menu-active .x-frame-bc, +.x-btn-default-toolbar-small-pressed .x-frame-tl, +.x-btn-default-toolbar-small-pressed .x-frame-bl, +.x-btn-default-toolbar-small-pressed .x-frame-tr, +.x-btn-default-toolbar-small-pressed .x-frame-br, +.x-btn-default-toolbar-small-pressed .x-frame-tc, +.x-btn-default-toolbar-small-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-ml, +.x-btn-default-toolbar-small-menu-active .x-frame-mr, +.x-btn-default-toolbar-small-pressed .x-frame-ml, +.x-btn-default-toolbar-small-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-mc, +.x-btn-default-toolbar-small-pressed .x-frame-mc { + background-color: #db7b1f; +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-tl, +.x-btn-default-toolbar-small-disabled .x-frame-bl, +.x-btn-default-toolbar-small-disabled .x-frame-tr, +.x-btn-default-toolbar-small-disabled .x-frame-br, +.x-btn-default-toolbar-small-disabled .x-frame-tc, +.x-btn-default-toolbar-small-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-ml, +.x-btn-default-toolbar-small-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-mc { + background-color: transparent; +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 18px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 16px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium { + border-color: transparent; +} + +/* line 137, ../../../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: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tr, +.x-btn-default-toolbar-medium-br, +.x-btn-default-toolbar-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl, +.x-btn-default-toolbar-medium-bl, +.x-btn-default-toolbar-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl, +.x-btn-default-toolbar-medium-bl, +.x-btn-default-toolbar-medium-tr, +.x-btn-default-toolbar-medium-br, +.x-btn-default-toolbar-medium-tc, +.x-btn-default-toolbar-medium-bc, +.x-btn-default-toolbar-medium-ml, +.x-btn-default-toolbar-medium-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-ml, +.x-btn-default-toolbar-medium-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-medium-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-medium-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-inner { + font-size: 14px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: white; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow-right { + padding-right: 14px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-glyph { + font-size: 24px; + line-height: 24px; + color: white; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-medium .x-btn-glyph { + color: white; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled { + border-color: #565656; + background-image: none; + background-color: transparent; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-button, +.x-btn-default-toolbar-medium-noicon .x-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-inner { + line-height: 24px; + padding-left: 28px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el { + height: 24px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-inner { + line-height: 24px; + padding-right: 28px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el { + height: 24px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-top .x-btn-inner { + padding-top: 28px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner { + padding-bottom: 28px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over { + border-color: #d97e27; + background-image: none; + background-color: #ed9200; +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus { + border-color: #d97e27; + background-image: none; + background-color: #ed9200; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active, +.x-btn-default-toolbar-medium-pressed { + border-color: #c86e19; + background-image: none; + background-color: #db7b1f; +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-tl, +.x-btn-default-toolbar-medium-over .x-frame-bl, +.x-btn-default-toolbar-medium-over .x-frame-tr, +.x-btn-default-toolbar-medium-over .x-frame-br, +.x-btn-default-toolbar-medium-over .x-frame-tc, +.x-btn-default-toolbar-medium-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-ml, +.x-btn-default-toolbar-medium-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-mc { + background-color: #ed9200; +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-tl, +.x-btn-default-toolbar-medium-focus .x-frame-bl, +.x-btn-default-toolbar-medium-focus .x-frame-tr, +.x-btn-default-toolbar-medium-focus .x-frame-br, +.x-btn-default-toolbar-medium-focus .x-frame-tc, +.x-btn-default-toolbar-medium-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-ml, +.x-btn-default-toolbar-medium-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-mc { + background-color: #ed9200; +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-tl, +.x-btn-default-toolbar-medium-menu-active .x-frame-bl, +.x-btn-default-toolbar-medium-menu-active .x-frame-tr, +.x-btn-default-toolbar-medium-menu-active .x-frame-br, +.x-btn-default-toolbar-medium-menu-active .x-frame-tc, +.x-btn-default-toolbar-medium-menu-active .x-frame-bc, +.x-btn-default-toolbar-medium-pressed .x-frame-tl, +.x-btn-default-toolbar-medium-pressed .x-frame-bl, +.x-btn-default-toolbar-medium-pressed .x-frame-tr, +.x-btn-default-toolbar-medium-pressed .x-frame-br, +.x-btn-default-toolbar-medium-pressed .x-frame-tc, +.x-btn-default-toolbar-medium-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-ml, +.x-btn-default-toolbar-medium-menu-active .x-frame-mr, +.x-btn-default-toolbar-medium-pressed .x-frame-ml, +.x-btn-default-toolbar-medium-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-mc, +.x-btn-default-toolbar-medium-pressed .x-frame-mc { + background-color: #db7b1f; +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-tl, +.x-btn-default-toolbar-medium-disabled .x-frame-bl, +.x-btn-default-toolbar-medium-disabled .x-frame-tr, +.x-btn-default-toolbar-medium-disabled .x-frame-br, +.x-btn-default-toolbar-medium-disabled .x-frame-tc, +.x-btn-default-toolbar-medium-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-ml, +.x-btn-default-toolbar-medium-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-mc { + background-color: transparent; +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 18px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 16px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large { + border-color: transparent; +} + +/* line 137, ../../../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: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tr, +.x-btn-default-toolbar-large-br, +.x-btn-default-toolbar-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl, +.x-btn-default-toolbar-large-bl, +.x-btn-default-toolbar-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl, +.x-btn-default-toolbar-large-bl, +.x-btn-default-toolbar-large-tr, +.x-btn-default-toolbar-large-br, +.x-btn-default-toolbar-large-tc, +.x-btn-default-toolbar-large-bc, +.x-btn-default-toolbar-large-ml, +.x-btn-default-toolbar-large-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-ml, +.x-btn-default-toolbar-large-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-large-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-large-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-inner { + font-size: 14px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: white; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow-right { + padding-right: 14px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-glyph { + font-size: 32px; + line-height: 32px; + color: white; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-large .x-btn-glyph { + color: white; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled { + border-color: #565656; + background-image: none; + background-color: transparent; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-button, +.x-btn-default-toolbar-large-noicon .x-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-inner { + line-height: 32px; + padding-left: 36px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el { + height: 32px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-inner { + line-height: 32px; + padding-right: 36px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el { + height: 32px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-top .x-btn-inner { + padding-top: 36px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner { + padding-bottom: 36px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over { + border-color: #d97e27; + background-image: none; + background-color: #ed9200; +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus { + border-color: #d97e27; + background-image: none; + background-color: #ed9200; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active, +.x-btn-default-toolbar-large-pressed { + border-color: #c86e19; + background-image: none; + background-color: #db7b1f; +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-tl, +.x-btn-default-toolbar-large-over .x-frame-bl, +.x-btn-default-toolbar-large-over .x-frame-tr, +.x-btn-default-toolbar-large-over .x-frame-br, +.x-btn-default-toolbar-large-over .x-frame-tc, +.x-btn-default-toolbar-large-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-ml, +.x-btn-default-toolbar-large-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-mc { + background-color: #ed9200; +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-tl, +.x-btn-default-toolbar-large-focus .x-frame-bl, +.x-btn-default-toolbar-large-focus .x-frame-tr, +.x-btn-default-toolbar-large-focus .x-frame-br, +.x-btn-default-toolbar-large-focus .x-frame-tc, +.x-btn-default-toolbar-large-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-ml, +.x-btn-default-toolbar-large-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-mc { + background-color: #ed9200; +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-tl, +.x-btn-default-toolbar-large-menu-active .x-frame-bl, +.x-btn-default-toolbar-large-menu-active .x-frame-tr, +.x-btn-default-toolbar-large-menu-active .x-frame-br, +.x-btn-default-toolbar-large-menu-active .x-frame-tc, +.x-btn-default-toolbar-large-menu-active .x-frame-bc, +.x-btn-default-toolbar-large-pressed .x-frame-tl, +.x-btn-default-toolbar-large-pressed .x-frame-bl, +.x-btn-default-toolbar-large-pressed .x-frame-tr, +.x-btn-default-toolbar-large-pressed .x-frame-br, +.x-btn-default-toolbar-large-pressed .x-frame-tc, +.x-btn-default-toolbar-large-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-ml, +.x-btn-default-toolbar-large-menu-active .x-frame-mr, +.x-btn-default-toolbar-large-pressed .x-frame-ml, +.x-btn-default-toolbar-large-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-mc, +.x-btn-default-toolbar-large-pressed .x-frame-mc { + background-color: #db7b1f; +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-tl, +.x-btn-default-toolbar-large-disabled .x-frame-bl, +.x-btn-default-toolbar-large-disabled .x-frame-tr, +.x-btn-default-toolbar-large-disabled .x-frame-br, +.x-btn-default-toolbar-large-disabled .x-frame-tc, +.x-btn-default-toolbar-large-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-ml, +.x-btn-default-toolbar-large-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-mc { + background-color: transparent; +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 18px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 16px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 1161, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-left .x-btn-icon-el { + background-position: left center; +} + +/* line 1173, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-right .x-btn-icon-el { + background-position: right center; +} + +/* line 1184, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-top .x-btn-icon-el { + background-position: center top; +} + +/* line 1188, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-bottom .x-btn-icon-el { + background-position: center bottom; +} + +/* line 1192, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow-right { + background-position: right center; +} + +/* line 1202, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow-bottom { + background-position: center bottom; +} + +/* line 1206, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow { + background-repeat: no-repeat; +} + +/* line 1211, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split { + display: block; + background-repeat: no-repeat; +} + +/* line 1216, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split-right { + background-position: right center; +} + +/* line 1226, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split-bottom { + background-position: center bottom; +} + +/* line 1230, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-cycle-fixed-width .x-btn-inner { + text-align: inherit; +} + +/** + * Creates a visual theme for a Toolbar. + * @param {String} $ui + * The name of the UI + * + * @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 {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 {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-disabled=$toolbar-scroller-opacity-disabled] + * The opacity of disabled Toolbar scrollers + * + * @param {string} [$tool-background-image=$toolbar-tool-background-image] + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + * + * @member Ext.toolbar.Toolbar + */ +/* line 94, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar { + font-size: 14px; + border-style: solid; + padding: 2px 0 2px 2px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-item { + margin: 0 2px 0 0; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-text { + margin: 0 6px 0 4px; + color: white; + line-height: 16px; + font-family: tahoma, arial, verdana, sans-serif; + font-size: 14px; + font-weight: normal; +} + +/* line 121, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-separator-horizontal { + margin: 0 2px 0 0; + height: 14px; + border-style: solid; + border-width: 0 1px; + border-left-color: #1b1b29; + border-right-color: #5d5d6e; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-footer { + background: transparent; + border: 0; + margin: 3px 0 0; + padding: 2px 0 2px 6px; +} +/* line 144, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-footer .x-toolbar-item { + margin: 0 6px 0 0; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-spacer { + width: 2px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-more-icon { + background-image: url(images/toolbar/more.gif) !important; + background-position: center center !important; + background-repeat: no-repeat; +} + +/* line 45, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default { + border-color: #18181a; + border-width: 1px; + background-image: none; + background-color: #3a3e4f; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #404558), color-stop(100%, #3a3e4f)); + background-image: -webkit-linear-gradient(top, #404558, #3a3e4f); + background-image: -moz-linear-gradient(top, #404558, #3a3e4f); + background-image: -o-linear-gradient(top, #404558, #3a3e4f); + background-image: linear-gradient(top, #404558, #3a3e4f); +} +/* line 51, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller { + cursor: pointer; +} +/* line 55, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + cursor: default; +} + +/* line 82, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-nlg .x-toolbar-default { + background-image: url(images/toolbar/toolbar-default-bg.gif) !important; + background-repeat: repeat-x; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-toolbar-default:after { + display: none; + content: "x-slicer:bg:url(images/toolbar/toolbar-default-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/* line 166, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-left { + background-image: url(images/toolbar/scroll-left.gif); + background-position: -14px 0; + width: 14px; + height: 22px; + border-style: solid; + border-color: #8db2e3; + border-width: 0 0 1px; + margin-top: 0; +} + +/* line 177, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-left-hover { + background-position: 0 0; +} + +/* line 181, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-right { + background-image: url(images/toolbar/scroll-right.gif); + width: 14px; + height: 22px; + border-style: solid; + border-color: #8db2e3; + border-width: 0 0 1px; + margin-top: 0; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-right-hover { + background-position: -14px 0; +} + +/* line 195, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar .x-box-menu-after { + margin: 0 2px 0 2px; +} + +/* line 199, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical { + padding: 2px 2px 0 2px; +} +/* line 202, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-item { + margin: 0 0 2px 0; +} +/* line 206, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-text { + margin: 4px 0 6px 0; +} +/* line 210, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-separator-vertical { + margin: 0 5px 2px; + border-style: solid none; + border-width: 1px 0; + border-top-color: #1b1b29; + border-bottom-color: #5d5d6e; +} +/* line 219, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-box-menu-after, +.x-toolbar-vertical .x-rtl.x-box-menu-after { + margin: 2px 0 2px 0; + display: block; + float: none; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x-header-draggable .x-header-body, +.x-header-ghost { + cursor: move; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x-header-text { + white-space: nowrap; +} + +/** + * Creates a visual theme for a Panel + * + * @param {string} $ui-label + * 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 {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-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`. + * + * @member Ext.panel.Panel + */ +/* line 736, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65); + opacity: 0.65; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default { + border-color: #18181a; + padding: 0; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default { + font-size: 14px; + border: 1px solid #18181a; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal { + padding: 4px 5px 4px 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal-noborder { + padding: 5px 6px 4px 6px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical-noborder { + padding: 6px 5px 6px 4px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-default { + color: white; + font-size: 14px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + line-height: 15px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-default { + background: #232d38; + border-color: #18181a; + color: white; + font-size: 15px; + font-size: normal; + border-width: 1px; + border-style: solid; +} + +/* line 432, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default { + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 436, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical { + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 454, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-top { + background: url(images/panel-header/panel-header-default-top-bg.gif); +} +/* line 459, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-bottom { + background: url(images/panel-header/panel-header-default-bottom-bg.gif); +} +/* line 464, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-left { + background: url(images/panel-header/panel-header-default-left-bg.gif) top right; +} +/* line 469, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-right { + background: url(images/panel-header/panel-header-default-right-bg.gif) top right; +} + +/* line 494, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-top { + border-bottom-width: 1px !important; +} +/* line 498, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-right { + border-left-width: 1px !important; +} +/* line 502, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-bottom { + border-top-width: 1px !important; +} +/* line 506, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-left { + border-right-width: 1px !important; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-top:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-top-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-bottom:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-bottom-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-left:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-left-bg.gif), stretch:left"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-right:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-right-bg.gif), stretch:left"; +} + +/**/ +/* */ +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-vertical .x-panel-header-text-container { + background-color: #3a4155; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#3a4155); +} + +/* line 533, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-top { + -webkit-box-shadow: #606877 0 1px 0px 0 inset; + -moz-box-shadow: #606877 0 1px 0px 0 inset; + box-shadow: #606877 0 1px 0px 0 inset; +} + +/* line 537, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-right { + -webkit-box-shadow: #606877 -1px 0 0px 0 inset; + -moz-box-shadow: #606877 -1px 0 0px 0 inset; + box-shadow: #606877 -1px 0 0px 0 inset; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-bottom { + -webkit-box-shadow: #606877 0 -1px 0px 0 inset; + -moz-box-shadow: #606877 0 -1px 0px 0 inset; + box-shadow: #606877 0 -1px 0px 0 inset; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-left { + -webkit-box-shadow: #606877 1px 0 0px 0 inset; + -moz-box-shadow: #606877 1px 0 0px 0 inset; + box-shadow: #606877 1px 0 0px 0 inset; +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default .x-panel-header-glyph { + color: white; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-default .x-panel-header-glyph { + color: #9ca0aa; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-panel-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 2px; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-tool-after-title { + margin: 0 0 0 2px; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-tool-before-title { + margin: 0 2px 0 0; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 687, ../../../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 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed { + border-color: #18181a; + padding: 4px; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed { + font-size: 14px; + border: 1px solid #18181a; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal { + padding: 4px 5px 4px 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal-noborder { + padding: 5px 6px 4px 6px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical-noborder { + padding: 6px 5px 6px 4px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-default-framed { + color: white; + font-size: 14px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + line-height: 15px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-default-framed { + background: #3f4757; + border-color: #18181a; + color: white; + font-size: 15px; + font-size: normal; + border-width: 0; + border-style: solid; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-default-framed-frameInfo { + font-family: dh-3-3-3-3-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tr, +.x-panel-default-framed-br, +.x-panel-default-framed-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl, +.x-panel-default-framed-bl, +.x-panel-default-framed-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl, +.x-panel-default-framed-bl, +.x-panel-default-framed-tr, +.x-panel-default-framed-br, +.x-panel-default-framed-tc, +.x-panel-default-framed-bc, +.x-panel-default-framed-ml, +.x-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-ml, +.x-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mc { + padding: 2px 2px 2px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-default-framed-tl, +.x-strict .x-ie7 .x-panel-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 4px 5px 4px 5px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mc { + background-image: url(images/panel-header/panel-header-default-framed-top-fbg.gif); + background-position: 0 top; + background-color: #3a4155; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-top { + background-image: url(images/panel-header/panel-header-default-framed-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-top-frameInfo { + font-family: dh-3-3-0-0-1-1-0-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tr, +.x-panel-header-default-framed-top-br, +.x-panel-header-default-framed-top-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl, +.x-panel-header-default-framed-top-bl, +.x-panel-header-default-framed-top-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl, +.x-panel-header-default-framed-top-bl, +.x-panel-header-default-framed-top-tr, +.x-panel-header-default-framed-top-br, +.x-panel-header-default-framed-top-tc, +.x-panel-header-default-framed-top-bc, +.x-panel-header-default-framed-top-ml, +.x-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-ml, +.x-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mc { + padding: 2px 3px 4px 3px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-top-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomright: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 4px 5px 4px; + border-width: 1px 1px 1px 0; + border-style: solid; + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-right-fbg.gif); + background-position: right 0; + background-color: #3a4155; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-right { + background-image: url(images/panel-header/panel-header-default-framed-right-bg.gif); + background-position: right 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-right-frameInfo { + font-family: dv-0-3-3-0-1-1-1-0-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tr { + background-position: 0 -3px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bl { + background-position: 0 -6px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-br { + background-position: 0 -9px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-ml { + background-position: -3px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc { + background-position: right 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bc { + background-position: right -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tr, +.x-panel-header-default-framed-right-br, +.x-panel-header-default-framed-right-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl, +.x-panel-header-default-framed-right-bl, +.x-panel-header-default-framed-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl, +.x-panel-header-default-framed-right-bl, +.x-panel-header-default-framed-right-tr, +.x-panel-header-default-framed-right-br, +.x-panel-header-default-framed-right-tc, +.x-panel-header-default-framed-right-bc, +.x-panel-header-default-framed-right-ml, +.x-panel-header-default-framed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-corners.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc, +.x-panel-header-default-framed-right-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-sides.gif); + background-repeat: repeat-x; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mc { + padding: 3px 2px 3px 4px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-right-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-right:after { + display: none; + content: "x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-right-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-right-bg.gif), corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; + -moz-border-radius-bottomleft: 3px; + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + padding: 4px 5px 4px 5px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mc { + background-image: url(images/panel-header/panel-header-default-framed-bottom-fbg.gif); + background-position: 0 bottom; + background-color: #3a4155; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-bottom { + background-image: url(images/panel-header/panel-header-default-framed-bottom-bg.gif); + background-position: 0 bottom; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-bottom-frameInfo { + font-family: dh-0-0-3-3-0-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tr, +.x-panel-header-default-framed-bottom-br, +.x-panel-header-default-framed-bottom-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl, +.x-panel-header-default-framed-bottom-bl, +.x-panel-header-default-framed-bottom-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl, +.x-panel-header-default-framed-bottom-bl, +.x-panel-header-default-framed-bottom-tr, +.x-panel-header-default-framed-bottom-br, +.x-panel-header-default-framed-bottom-tc, +.x-panel-header-default-framed-bottom-bc, +.x-panel-header-default-framed-bottom-ml, +.x-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-ml, +.x-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mc { + padding: 4px 3px 2px 3px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-bottom:after { + display: none; + content: "x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 3px; + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + padding: 5px 4px 5px 4px; + border-width: 1px 0 1px 1px; + border-style: solid; + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-left-fbg.gif); + background-position: left 0; + background-color: #3a4155; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-left { + background-image: url(images/panel-header/panel-header-default-framed-left-bg.gif); + background-position: left 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-left-frameInfo { + font-family: dv-3-0-0-3-1-0-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tr { + background-position: 0 -3px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bl { + background-position: 0 -6px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-br { + background-position: 0 -9px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-ml { + background-position: -3px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc { + background-position: left 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bc { + background-position: left -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tr, +.x-panel-header-default-framed-left-br, +.x-panel-header-default-framed-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl, +.x-panel-header-default-framed-left-bl, +.x-panel-header-default-framed-left-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl, +.x-panel-header-default-framed-left-bl, +.x-panel-header-default-framed-left-tr, +.x-panel-header-default-framed-left-br, +.x-panel-header-default-framed-left-tc, +.x-panel-header-default-framed-left-bc, +.x-panel-header-default-framed-left-ml, +.x-panel-header-default-framed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-corners.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc, +.x-panel-header-default-framed-left-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-sides.gif); + background-repeat: repeat-x; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mc { + padding: 3px 4px 3px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-left-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-left:after { + display: none; + content: "x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-left-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-left-bg.gif), corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomright: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; + -moz-border-radius-bottomleft: 3px; + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif); + background-position: 0 top; + background-color: #3a4155; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-top { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-top-frameInfo { + font-family: dh-3-3-3-3-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tr, +.x-panel-header-default-framed-collapsed-top-br, +.x-panel-header-default-framed-collapsed-top-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl, +.x-panel-header-default-framed-collapsed-top-bl, +.x-panel-header-default-framed-collapsed-top-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl, +.x-panel-header-default-framed-collapsed-top-bl, +.x-panel-header-default-framed-collapsed-top-tr, +.x-panel-header-default-framed-collapsed-top-br, +.x-panel-header-default-framed-collapsed-top-tc, +.x-panel-header-default-framed-collapsed-top-bc, +.x-panel-header-default-framed-collapsed-top-ml, +.x-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-ml, +.x-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mc { + padding: 2px 3px 2px 3px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomright: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; + -moz-border-radius-bottomleft: 3px; + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif); + background-position: right 0; + background-color: #3a4155; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-right { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif); + background-position: right 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-right-frameInfo { + font-family: dv-3-3-3-3-1-1-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tr { + background-position: 0 -3px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bl { + background-position: 0 -6px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-br { + background-position: 0 -9px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-ml { + background-position: -3px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc { + background-position: right 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bc { + background-position: right -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tr, +.x-panel-header-default-framed-collapsed-right-br, +.x-panel-header-default-framed-collapsed-right-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl, +.x-panel-header-default-framed-collapsed-right-bl, +.x-panel-header-default-framed-collapsed-right-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl, +.x-panel-header-default-framed-collapsed-right-bl, +.x-panel-header-default-framed-collapsed-right-tr, +.x-panel-header-default-framed-collapsed-right-br, +.x-panel-header-default-framed-collapsed-right-tc, +.x-panel-header-default-framed-collapsed-right-bc, +.x-panel-header-default-framed-collapsed-right-ml, +.x-panel-header-default-framed-collapsed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc, +.x-panel-header-default-framed-collapsed-right-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif); + background-repeat: repeat-x; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mc { + padding: 3px 2px 3px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-right:after { + display: none; + content: "x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomright: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; + -moz-border-radius-bottomleft: 3px; + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif); + background-position: 0 bottom; + background-color: #3a4155; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-bottom { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif); + background-position: 0 bottom; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-bottom-frameInfo { + font-family: dh-3-3-3-3-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tr, +.x-panel-header-default-framed-collapsed-bottom-br, +.x-panel-header-default-framed-collapsed-bottom-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl, +.x-panel-header-default-framed-collapsed-bottom-bl, +.x-panel-header-default-framed-collapsed-bottom-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl, +.x-panel-header-default-framed-collapsed-bottom-bl, +.x-panel-header-default-framed-collapsed-bottom-tr, +.x-panel-header-default-framed-collapsed-bottom-br, +.x-panel-header-default-framed-collapsed-bottom-tc, +.x-panel-header-default-framed-collapsed-bottom-bc, +.x-panel-header-default-framed-collapsed-bottom-ml, +.x-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-ml, +.x-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mc { + padding: 2px 3px 2px 3px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-bottom:after { + display: none; + content: "x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomright: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; + -moz-border-radius-bottomleft: 3px; + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif); + background-position: left 0; + background-color: #3a4155; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-left { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif); + background-position: left 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-left-frameInfo { + font-family: dv-3-3-3-3-1-1-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tr { + background-position: 0 -3px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bl { + background-position: 0 -6px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-br { + background-position: 0 -9px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-ml { + background-position: -3px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc { + background-position: left 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bc { + background-position: left -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tr, +.x-panel-header-default-framed-collapsed-left-br, +.x-panel-header-default-framed-collapsed-left-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl, +.x-panel-header-default-framed-collapsed-left-bl, +.x-panel-header-default-framed-collapsed-left-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl, +.x-panel-header-default-framed-collapsed-left-bl, +.x-panel-header-default-framed-collapsed-left-tr, +.x-panel-header-default-framed-collapsed-left-br, +.x-panel-header-default-framed-collapsed-left-tc, +.x-panel-header-default-framed-collapsed-left-bc, +.x-panel-header-default-framed-collapsed-left-ml, +.x-panel-header-default-framed-collapsed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc, +.x-panel-header-default-framed-collapsed-left-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif); + background-repeat: repeat-x; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mc { + padding: 3px 2px 3px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-left:after { + display: none; + content: "x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 396, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-top { + border-bottom-width: 1px !important; +} +/* line 400, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-right { + border-left-width: 1px !important; +} +/* line 404, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-bottom { + border-top-width: 1px !important; +} +/* line 408, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-left { + border-right-width: 1px !important; +} + +/* line 414, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-top { + border-bottom-width: 0 !important; +} +/* line 418, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-right { + border-left-width: 0 !important; +} +/* line 422, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-bottom { + border-top-width: 0 !important; +} +/* line 426, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-left { + border-right-width: 0 !important; +} + +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-framed-vertical .x-panel-header-text-container { + background-color: #3a4155; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#3a4155); +} + +/* line 533, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-top { + -webkit-box-shadow: #606877 0 1px 0px 0 inset, #606877 -1px 0 0px 0 inset, #606877 1px 0 0px 0 inset; + -moz-box-shadow: #606877 0 1px 0px 0 inset, #606877 -1px 0 0px 0 inset, #606877 1px 0 0px 0 inset; + box-shadow: #606877 0 1px 0px 0 inset, #606877 -1px 0 0px 0 inset, #606877 1px 0 0px 0 inset; +} + +/* line 537, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-right { + -webkit-box-shadow: #606877 0 1px 0px 0 inset, #606877 0 -1px 0px 0 inset, #606877 -1px 0 0px 0 inset; + -moz-box-shadow: #606877 0 1px 0px 0 inset, #606877 0 -1px 0px 0 inset, #606877 -1px 0 0px 0 inset; + box-shadow: #606877 0 1px 0px 0 inset, #606877 0 -1px 0px 0 inset, #606877 -1px 0 0px 0 inset; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-bottom { + -webkit-box-shadow: #606877 0 -1px 0px 0 inset, #606877 -1px 0 0px 0 inset, #606877 1px 0 0px 0 inset; + -moz-box-shadow: #606877 0 -1px 0px 0 inset, #606877 -1px 0 0px 0 inset, #606877 1px 0 0px 0 inset; + box-shadow: #606877 0 -1px 0px 0 inset, #606877 -1px 0 0px 0 inset, #606877 1px 0 0px 0 inset; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-left { + -webkit-box-shadow: #606877 0 1px 0px 0 inset, #606877 0 -1px 0px 0 inset, #606877 1px 0 0px 0 inset; + -moz-box-shadow: #606877 0 1px 0px 0 inset, #606877 0 -1px 0px 0 inset, #606877 1px 0 0px 0 inset; + box-shadow: #606877 0 1px 0px 0 inset, #606877 0 -1px 0px 0 inset, #606877 1px 0 0px 0 inset; +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed .x-panel-header-glyph { + color: white; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-default-framed .x-panel-header-glyph { + color: #9ca0aa; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-panel-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 2px; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-tool-after-title { + margin: 0 0 0 2px; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-tool-before-title { + margin: 0 2px 0 0; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 687, ../../../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; +} + +/** + * Creates a visual theme for a Ext.tip.Tip + * + * @param {string} $ui-label + * 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-body-padding=$tip-header-body-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 167, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor { + position: absolute; + overflow: hidden; + height: 10px; + width: 10px; + border-style: solid; + border-width: 5px; + border-color: #122d5e; + zoom: 1; +} +/* line 182, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-content-box .x-tip-anchor { + height: 0; + width: 0; +} + +/* line 189, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-top { + border-top-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-bottom { + border-bottom-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-bottom-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-left { + border-top-color: transparent; + border-bottom-color: transparent; + border-left-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-left-color: pink; + _filter: chroma(color=pink); +} + +/* line 228, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-right { + border-top-color: transparent; + border-bottom-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 137, ../../../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: #5e6986; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mc { + background-color: #5e6986; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tip-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tip-default-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tr, +.x-tip-default-br, +.x-tip-default-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl, +.x-tip-default-bl, +.x-tip-default-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl, +.x-tip-default-bl, +.x-tip-default-tr, +.x-tip-default-br, +.x-tip-default-tc, +.x-tip-default-bc, +.x-tip-default-ml, +.x-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-ml, +.x-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tip-default-tl, +.x-strict .x-ie7 .x-tip-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tip-default:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-default { + border-color: #122d5e; +} +/* line 109, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-default .x-tool-img { + background-color: #5e6986; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-tool-before-title { + margin: 0 6px 0 0; +} + +/* line 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-body-default { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-text-container-default { + color: black; + font-size: 14px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-default { + padding: 3px; + color: black; + font-size: 14px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-default a { + color: black; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: white; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mc { + background-color: white; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tip-form-invalid { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tip-form-invalid-frameInfo { + font-family: th-5-5-5-5-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tr, +.x-tip-form-invalid-br, +.x-tip-form-invalid-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl, +.x-tip-form-invalid-bl, +.x-tip-form-invalid-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl, +.x-tip-form-invalid-bl, +.x-tip-form-invalid-tr, +.x-tip-form-invalid-br, +.x-tip-form-invalid-tc, +.x-tip-form-invalid-bc, +.x-tip-form-invalid-ml, +.x-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-ml, +.x-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tip-form-invalid-tl, +.x-strict .x-ie7 .x-tip-form-invalid-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tip-form-invalid:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-form-invalid { + border-color: #a1311f; + -webkit-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; + -moz-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; + box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; +} +/* line 109, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-form-invalid .x-tool-img { + background-color: white; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-form-invalid .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-form-invalid .x-tool-before-title { + margin: 0 6px 0 0; +} + +/* line 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-body-form-invalid { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-text-container-form-invalid { + color: black; + font-size: 14px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid { + padding: 3px 3px 3px 22px; + color: black; + font-size: 14px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid a { + color: black; +} + +/* line 265, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid { + background: 1px 1px no-repeat; + background-image: url(images/form/exclamation.gif); +} +/* line 268, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid li { + margin-bottom: 4px; +} +/* line 270, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid li.last { + margin-bottom: 0; +} + +/** + * Creates a visual theme for a ButtonGroup. + * + * @param {string} $ui-label + * 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 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-default { + border-color: #606068; + -webkit-box-shadow: #757478 0 1px 0px 0 inset, #757478 0 -1px 0px 0 inset, #757478 -1px 0 0px 0 inset, #757478 1px 0 0px 0 inset; + -moz-box-shadow: #757478 0 1px 0px 0 inset, #757478 0 -1px 0px 0 inset, #757478 -1px 0 0px 0 inset, #757478 1px 0 0px 0 inset; + box-shadow: #757478 0 1px 0px 0 inset, #757478 0 -1px 0px 0 inset, #757478 -1px 0 0px 0 inset, #757478 1px 0 0px 0 inset; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default { + margin: 2px 2px 0 2px; + padding: 1px 0; + line-height: 15px; + background: #676772; + -moz-border-radius-topleft: 0px; + -webkit-border-top-left-radius: 0px; + border-top-left-radius: 0px; + -moz-border-radius-topright: 0px; + -webkit-border-top-right-radius: 0px; + border-top-right-radius: 0px; +} +/* line 109, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default .x-tool-img { + background-color: #676772; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-text-container-default { + font: normal 14px tahoma, arial, verdana, sans-serif; + line-height: 15px; + color: #d2d2d2; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default { + padding: 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default .x-table-layout { + border-spacing: 0; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed { + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + padding: 1px 1px 1px 1px; + border-width: 1px; + border-style: solid; + background-color: #4b515f; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mc { + background-color: #4b515f; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-group-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-group-default-framed-frameInfo { + font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl { + background-position: 0 -4px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tr { + background-position: right -6px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bl { + background-position: 0 -8px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-br { + background-position: right -10px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bc { + background-position: 0 -2px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tr, +.x-btn-group-default-framed-br, +.x-btn-group-default-framed-mr { + padding-right: 2px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl, +.x-btn-group-default-framed-bl, +.x-btn-group-default-framed-ml { + padding-left: 2px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tc { + height: 2px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bc { + height: 2px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl, +.x-btn-group-default-framed-bl, +.x-btn-group-default-framed-tr, +.x-btn-group-default-framed-br, +.x-btn-group-default-framed-tc, +.x-btn-group-default-framed-bc, +.x-btn-group-default-framed-ml, +.x-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-ml, +.x-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-group-default-framed-tl, +.x-strict .x-ie7 .x-btn-group-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-group-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle { + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + padding: 1px 1px 1px 1px; + border-width: 1px; + border-style: solid; + background-color: #4b515f; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mc { + background-color: #4b515f; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-group-default-framed-notitle { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-group-default-framed-notitle-frameInfo { + font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl { + background-position: 0 -4px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tr { + background-position: right -6px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bl { + background-position: 0 -8px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-br { + background-position: right -10px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bc { + background-position: 0 -2px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tr, +.x-btn-group-default-framed-notitle-br, +.x-btn-group-default-framed-notitle-mr { + padding-right: 2px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl, +.x-btn-group-default-framed-notitle-bl, +.x-btn-group-default-framed-notitle-ml { + padding-left: 2px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tc { + height: 2px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bc { + height: 2px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl, +.x-btn-group-default-framed-notitle-bl, +.x-btn-group-default-framed-notitle-tr, +.x-btn-group-default-framed-notitle-br, +.x-btn-group-default-framed-notitle-tc, +.x-btn-group-default-framed-notitle-bc, +.x-btn-group-default-framed-notitle-ml, +.x-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-ml, +.x-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-group-default-framed-notitle-tl, +.x-strict .x-ie7 .x-btn-group-default-framed-notitle-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-group-default-framed-notitle:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"; +} + +/**/ +/* */ +/* line 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-default-framed { + border-color: #606068; + -webkit-box-shadow: #757478 0 1px 0px 0 inset, #757478 0 -1px 0px 0 inset, #757478 -1px 0 0px 0 inset, #757478 1px 0 0px 0 inset; + -moz-box-shadow: #757478 0 1px 0px 0 inset, #757478 0 -1px 0px 0 inset, #757478 -1px 0 0px 0 inset, #757478 1px 0 0px 0 inset; + box-shadow: #757478 0 1px 0px 0 inset, #757478 0 -1px 0px 0 inset, #757478 -1px 0 0px 0 inset, #757478 1px 0 0px 0 inset; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default-framed { + margin: 2px 2px 0 2px; + padding: 1px 0; + line-height: 15px; + background: #676772; + -moz-border-radius-topleft: 2px; + -webkit-border-top-left-radius: 2px; + border-top-left-radius: 2px; + -moz-border-radius-topright: 2px; + -webkit-border-top-right-radius: 2px; + border-top-right-radius: 2px; +} +/* line 109, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default-framed .x-tool-img { + background-color: #676772; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-text-container-default-framed { + font: normal 14px tahoma, arial, verdana, sans-serif; + line-height: 15px; + color: #d2d2d2; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default-framed { + padding: 0 1px 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default-framed .x-table-layout { + border-spacing: 0; +} + +/** + * Creates a visual theme for a Window + * + * @param {string} $ui-label + * 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`. + * + * @member Ext.window.Window + */ +/* line 545, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65); + opacity: 0.65; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default { + border-color: #282828; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + -webkit-box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c 0 -1px 0px 0 inset, #414b5c -1px 0 0px 0 inset, #414b5c 1px 0 0px 0 inset; + -moz-box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c 0 -1px 0px 0 inset, #414b5c -1px 0 0px 0 inset, #414b5c 1px 0 0px 0 inset; + box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c 0 -1px 0px 0 inset, #414b5c -1px 0 0px 0 inset, #414b5c 1px 0 0px 0 inset; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-default-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tr, +.x-window-default-br, +.x-window-default-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl, +.x-window-default-bl, +.x-window-default-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl, +.x-window-default-bl, +.x-window-default-tr, +.x-window-default-br, +.x-window-default-tc, +.x-window-default-bc, +.x-window-default-ml, +.x-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-ml, +.x-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-default-tl, +.x-strict .x-ie7 .x-window-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-default:after { + display: none; + content: "x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"; +} + +/**/ +/* */ +/* line 195, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-body-default { + border-color: #18181a; + border-width: 1px; + border-style: solid; + background: #1f2833; + color: white; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default { + font-size: 14px; + border-color: #282828; + zoom: 1; + background-color: #3f4757; +} +/* line 212, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-tool-img { + background-color: #3f4757; +} + +/* line 223, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-window-header-default-vertical .x-window-header-text-container { + background-color: #3f4757; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#3f4757); +} + +/* line 233, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-text-container-default { + color: white; + font-weight: bold; + line-height: 15px; + font-family: tahoma, arial, verdana, sans-serif; + font-size: 14px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-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: 4px 5px 0 5px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-top-frameInfo { + font-family: dh-5-5-0-0-1-1-0-1-4-5-0-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tr, +.x-window-header-default-top-br, +.x-window-header-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl, +.x-window-header-default-top-bl, +.x-window-header-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl, +.x-window-header-default-top-bl, +.x-window-header-default-top-tr, +.x-window-header-default-top-br, +.x-window-header-default-top-tc, +.x-window-header-default-top-bc, +.x-window-header-default-top-ml, +.x-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-ml, +.x-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mc { + padding: 0px 1px 0 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-top-tl, +.x-strict .x-ie7 .x-window-header-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px; + -webkit-border-top-right-radius: 5px; + border-top-right-radius: 5px; + -moz-border-radius-bottomright: 5px; + -webkit-border-bottom-right-radius: 5px; + border-bottom-right-radius: 5px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 4px 5px 0; + border-width: 1px 1px 1px 0; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-right-frameInfo { + font-family: dh-0-5-5-0-1-1-1-0-5-4-5-0; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tr, +.x-window-header-default-right-br, +.x-window-header-default-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl, +.x-window-header-default-right-bl, +.x-window-header-default-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl, +.x-window-header-default-right-bl, +.x-window-header-default-right-tr, +.x-window-header-default-right-br, +.x-window-header-default-right-tc, +.x-window-header-default-right-bc, +.x-window-header-default-right-ml, +.x-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-ml, +.x-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mc { + padding: 1px 0px 1px 0; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-right-tl, +.x-strict .x-ie7 .x-window-header-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 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: 0 5px 4px 5px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-bottom-frameInfo { + font-family: dh-0-0-5-5-0-1-1-1-0-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tr, +.x-window-header-default-bottom-br, +.x-window-header-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl, +.x-window-header-default-bottom-bl, +.x-window-header-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl, +.x-window-header-default-bottom-bl, +.x-window-header-default-bottom-tr, +.x-window-header-default-bottom-br, +.x-window-header-default-bottom-tc, +.x-window-header-default-bottom-bc, +.x-window-header-default-bottom-ml, +.x-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-ml, +.x-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mc { + padding: 0 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-bottom-tl, +.x-strict .x-ie7 .x-window-header-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left { + -moz-border-radius-topleft: 5px; + -webkit-border-top-left-radius: 5px; + border-top-left-radius: 5px; + -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: 5px; + -webkit-border-bottom-left-radius: 5px; + border-bottom-left-radius: 5px; + padding: 5px 0 5px 4px; + border-width: 1px 0 1px 1px; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-left-frameInfo { + font-family: dh-5-0-0-5-1-0-1-1-5-0-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tr, +.x-window-header-default-left-br, +.x-window-header-default-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl, +.x-window-header-default-left-bl, +.x-window-header-default-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl, +.x-window-header-default-left-bl, +.x-window-header-default-left-tr, +.x-window-header-default-left-br, +.x-window-header-default-left-tc, +.x-window-header-default-left-bc, +.x-window-header-default-left-ml, +.x-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-ml, +.x-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mc { + padding: 1px 0 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-left-tl, +.x-strict .x-ie7 .x-window-header-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-top-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tr, +.x-window-header-default-collapsed-top-br, +.x-window-header-default-collapsed-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl, +.x-window-header-default-collapsed-top-bl, +.x-window-header-default-collapsed-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl, +.x-window-header-default-collapsed-top-bl, +.x-window-header-default-collapsed-top-tr, +.x-window-header-default-collapsed-top-br, +.x-window-header-default-collapsed-top-tc, +.x-window-header-default-collapsed-top-bc, +.x-window-header-default-collapsed-top-ml, +.x-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-ml, +.x-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-right-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-5-4-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tr, +.x-window-header-default-collapsed-right-br, +.x-window-header-default-collapsed-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl, +.x-window-header-default-collapsed-right-bl, +.x-window-header-default-collapsed-right-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl, +.x-window-header-default-collapsed-right-bl, +.x-window-header-default-collapsed-right-tr, +.x-window-header-default-collapsed-right-br, +.x-window-header-default-collapsed-right-tc, +.x-window-header-default-collapsed-right-bc, +.x-window-header-default-collapsed-right-ml, +.x-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-ml, +.x-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mc { + padding: 1px 0px 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-bottom-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tr, +.x-window-header-default-collapsed-bottom-br, +.x-window-header-default-collapsed-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl, +.x-window-header-default-collapsed-bottom-bl, +.x-window-header-default-collapsed-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl, +.x-window-header-default-collapsed-bottom-bl, +.x-window-header-default-collapsed-bottom-tr, +.x-window-header-default-collapsed-bottom-br, +.x-window-header-default-collapsed-bottom-tc, +.x-window-header-default-collapsed-bottom-bc, +.x-window-header-default-collapsed-bottom-ml, +.x-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-ml, +.x-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-left-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-5-4-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tr, +.x-window-header-default-collapsed-left-br, +.x-window-header-default-collapsed-left-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl, +.x-window-header-default-collapsed-left-bl, +.x-window-header-default-collapsed-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl, +.x-window-header-default-collapsed-left-bl, +.x-window-header-default-collapsed-left-tr, +.x-window-header-default-collapsed-left-br, +.x-window-header-default-collapsed-left-tc, +.x-window-header-default-collapsed-left-bc, +.x-window-header-default-collapsed-left-ml, +.x-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-ml, +.x-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mc { + padding: 1px 0px 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 337, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-top { + -webkit-box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c -1px 0 0px 0 inset, #414b5c 1px 0 0px 0 inset; + -moz-box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c -1px 0 0px 0 inset, #414b5c 1px 0 0px 0 inset; + box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c -1px 0 0px 0 inset, #414b5c 1px 0 0px 0 inset; +} + +/* line 341, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-right { + -webkit-box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c 0 -1px 0px 0 inset, #414b5c -1px 0 0px 0 inset; + -moz-box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c 0 -1px 0px 0 inset, #414b5c -1px 0 0px 0 inset; + box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c 0 -1px 0px 0 inset, #414b5c -1px 0 0px 0 inset; +} + +/* line 345, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-bottom { + -webkit-box-shadow: #414b5c 0 -1px 0px 0 inset, #414b5c -1px 0 0px 0 inset, #414b5c 1px 0 0px 0 inset; + -moz-box-shadow: #414b5c 0 -1px 0px 0 inset, #414b5c -1px 0 0px 0 inset, #414b5c 1px 0 0px 0 inset; + box-shadow: #414b5c 0 -1px 0px 0 inset, #414b5c -1px 0 0px 0 inset, #414b5c 1px 0 0px 0 inset; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-left { + -webkit-box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c 0 -1px 0px 0 inset, #414b5c 1px 0 0px 0 inset; + -moz-box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c 0 -1px 0px 0 inset, #414b5c 1px 0 0px 0 inset; + box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c 0 -1px 0px 0 inset, #414b5c 1px 0 0px 0 inset; +} + +/* line 355, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-window-header-icon { + width: 16px; + height: 16px; + color: white; + font-size: 16px; + line-height: 16px; + background-position: center center; +} +/* line 364, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-window-header-glyph { + color: white; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 380, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-ie8m .x-window-header-default .x-window-header-glyph { + color: #9fa3ab; +} + +/* line 388, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-window-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 398, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-window-header-icon-after-title { + margin: 0 0 0 2px; +} + +/* line 410, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 420, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 433, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-tool-after-title { + margin: 0 0 0 2px; +} +/* line 443, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-tool-before-title { + margin: 0 2px 0 0; +} + +/* line 455, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 465, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 483, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-collapsed .x-window-header { + border-width: 1px !important; +} + +/* line 489, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-nbr .x-window-default-collapsed .x-window-header { + border-width: 0 !important; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-invalid-under { + padding: 2px 2px 2px 20px; + color: #c0272b; + font: normal 14px tahoma, arial, verdana, sans-serif; + line-height: 16px; + background: no-repeat 0 2px; + background-image: url(images/form/exclamation.gif); +} + +/* line 14, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +div.x-lbl-top-err-icon { + margin-bottom: 5px; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-invalid-icon { + width: 16px; + height: 16px; + margin: 0 1px; + background-image: url(images/form/exclamation.gif); + background-repeat: no-repeat; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-item-label { + color: white; + font: normal 15px/17px tahoma, arial, verdana, sans-serif; + margin-top: 5px; +} +/* line 31, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-toolbar-item .x-form-item-label { + font: normal 14px/16px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} + +/* line 45, ../../../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; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-ie6 .x-form-form-item td { + border-top-width: 0; +} +/* line 59, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-ie6 td.x-form-item-pad { + height: 5px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-field { + color: white; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-item, +.x-form-field { + font: normal 15px tahoma, arial, verdana, sans-serif; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-type-text textarea.x-form-invalid-field, .x-form-type-text input.x-form-invalid-field, +.x-form-type-password textarea.x-form-invalid-field, +.x-form-type-password input.x-form-invalid-field, +.x-form-type-number textarea.x-form-invalid-field, +.x-form-type-number input.x-form-invalid-field, +.x-form-type-email textarea.x-form-invalid-field, +.x-form-type-email input.x-form-invalid-field, +.x-form-type-search textarea.x-form-invalid-field, +.x-form-type-search input.x-form-invalid-field, +.x-form-type-tel textarea.x-form-invalid-field, +.x-form-type-tel input.x-form-invalid-field { + background-color: #15171a; + background-image: url(images/grid/invalid_line.gif); + background-repeat: repeat-x; + background-position: bottom; + border-color: #cc3300; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-item-disabled .x-form-item-label, +.x-item-disabled .x-form-field, +.x-item-disabled .x-form-display-field, +.x-item-disabled .x-form-cb-label, +.x-item-disabled .x-form-trigger { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-text { + color: white; + padding: 2px 4px 2px 4px; + background: #34383f repeat-x 0 0; + border-width: 2px; + border-style: solid; + border-color: #737b8c; + background-image: url(images/form/text-bg.gif); + height: 26px; + line-height: 18px; +} +/* line 14, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-field-toolbar .x-form-text { + height: 24px; + line-height: 16px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-content-box .x-form-text { + height: 18px; +} +/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-content-box .x-field-toolbar .x-form-text { + height: 16px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-focus { + border-color: #ff9c33; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-empty-field, +textarea.x-form-empty-field { + color: gray; +} + +/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-quirks .x-ie .x-form-text, +.x-ie7m .x-form-text { + margin-top: -1px; + margin-bottom: -1px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/TextArea.scss */ +.x-form-textarea { + line-height: normal; + height: auto; + background-image: url(images/form/text-bg.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-form-display-field-body { + height: 26px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-toolbar-item .x-form-display-field-body { + height: 24px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-form-display-field { + font: normal 15px/17px tahoma, arial, verdana, sans-serif; + color: white; + margin-top: 5px; +} +/* line 17, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-toolbar-item .x-form-display-field { + margin-top: 4px; + font: normal 14px/16px tahoma, arial, verdana, sans-serif; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box .x-window-body { + background-color: #3f4757; + border-width: 0; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-info, +.x-message-box-warning, +.x-message-box-question, +.x-message-box-error { + background-position: top left; + background-repeat: no-repeat; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-info { + background-image: url(images/shared/icon-info.gif); +} + +/* line 33, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-warning { + background-image: url(images/shared/icon-warning.gif); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-question { + background-image: url(images/shared/icon-question.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-error { + background-image: url(images/shared/icon-error.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-wrap { + height: 26px; +} +/* line 4, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-toolbar-item .x-form-cb-wrap { + height: 24px; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb { + margin-top: 4px; +} +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-toolbar-item .x-form-cb { + margin-top: 3px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-checkbox { + width: 19px; + height: 19px; + background: url(images/form/checkbox.gif) no-repeat; +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-checked .x-form-checkbox { + background-position: 0 -19px; +} + +/* Focused */ +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-checkbox-focus { + background-position: -19px 0; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-checked .x-form-checkbox-focus { + background-position: -19px -19px; +} + +/* boxLabel */ +/* line 40, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label { + margin-top: 5px; + font: normal 15px/17px tahoma, arial, verdana, sans-serif; +} +/* line 43, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-toolbar-item .x-form-cb-label { + font: normal 14px/16px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label-before { + margin-right: 4px; +} + +/* line 64, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label-after { + margin-left: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-checkboxgroup-body { + padding: 0 4px; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-invalid .x-form-checkboxgroup-body { + border: 1px solid #cc3300; + background-image: url(images/grid/invalid_line.gif); + background-repeat: repeat-x; + background-position: bottom; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-check-group-alt { + background: #4d515c; + border-top: 1px dotted #333333; + border-bottom: 1px dotted #333333; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-check-group-label { + color: white; + padding: 2px; + margin: 0 30px 5px 0; + border-width: 0 0 1px 0; + border-style: solid; + border-color: white; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset { + border: 1px solid #727c8c; + padding: 0 10px; + margin: 0 0 10px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie8m .x-fieldset, +.x-quirks .x-ie .x-fieldset { + padding-top: 0; +} +/* line 13, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie8m .x-fieldset .x-fieldset-body, +.x-quirks .x-ie .x-fieldset .x-fieldset-body { + padding-top: 0; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-checkbox { + line-height: 14px; + margin: 1px 3px 0 0; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header { + padding: 0 3px 1px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-tool { + margin-top: 1px; + padding: 0; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text { + font: 14px/14px bold tahoma, arial, verdana, sans-serif; + color: white; + padding: 1px 0; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text-collapsible { + cursor: pointer; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-with-title .x-fieldset-header-checkbox, +.x-fieldset-with-title .x-tool { + margin: 1px 3px 0 0; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-webkit .x-fieldset-header { + -webkit-padding-start: 3px; + -webkit-padding-end: 3px; +} + +/* line 76, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-opera .x-fieldset-with-legend { + margin-top: -1px; +} +/* line 79, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-opera.x-mac .x-fieldset-header-text { + padding: 2px 0 0; +} + +/* line 87, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-strict .x-ie8 .x-fieldset-header { + margin-bottom: -1px; +} +/* line 91, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-strict .x-ie8 .x-fieldset-header .x-tool, +.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text, +.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox { + position: relative; + top: -1px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-quirks .x-ie .x-fieldset-header, +.x-ie8m .x-fieldset-header { + padding-left: 1px; + padding-right: 1px; +} + +/* line 109, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-fieldset-body { + display: none; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed { + padding-bottom: 0 !important; + border-width: 1px 1px 0 1px !important; + border-left-color: transparent !important; + border-right-color: transparent !important; +} + +/* line 123, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie6 .x-fieldset-collapsed { + border-width: 1px 0 0 0 !important; + padding-bottom: 0 !important; + margin-left: 1px; + margin-right: 1px; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-bwrap { + zoom: 1; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset .x-tool-toggle { + background-position: 0 -60px; +} +/* line 144, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset .x-tool-over .x-tool-toggle { + background-position: -15px -60px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-tool-toggle { + background-position: 0 -75px; +} +/* line 156, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-tool-over .x-tool-toggle { + background-position: -15px -75px; +} + +/* IE legend positioning bug */ +/* line 164, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-noborder legend { + position: relative; + margin-bottom: 23px; +} + +/* line 170, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-noborder legend span { + position: absolute; + left: 16px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset { + overflow: hidden; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-bwrap { + overflow: hidden; + zoom: 1; +} + +/* line 186, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-body { + overflow: hidden; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-radio { + width: 19px; + height: 19px; + background: url(images/form/radio.gif) no-repeat; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-cb-checked .x-form-radio { + background-position: 0 -19px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-radio-focus { + background-position: -19px 0; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-cb-checked .x-form-radio-focus { + background-position: -19px -19px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + background: url(images/form/trigger.gif); + width: 20px; + border-width: 0 0 2px; + border-color: #737b8c; + border-style: solid; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-trigger-cell { + background-color: #34383f; + width: 20px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-over { + background-position: -20px 0; + border-color: #ff9c33; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap-focus .x-form-trigger { + background-position: -60px 0; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap-focus .x-form-trigger-over { + background-position: -80px 0; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-click, +.x-form-trigger-wrap-focus .x-form-trigger-click { + background-position: -40px 0; + border-color: #c76e12; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-clear-trigger { + background-image: url(images/form/clear-trigger.gif); +} + +/* line 59, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-search-trigger { + background-image: url(images/form/search-trigger.gif); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-quirks .prefixie6 .x-form-trigger-input-cell { + height: 26px; +} +/* line 77, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-quirks .prefixie6 .x-field-toolbar .x-form-trigger-input-cell { + height: 24px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +div.x-form-spinner-up, +div.x-form-spinner-down { + background-image: url(images/form/spinner.gif); + background-color: #34383f; + width: 20px; + height: 13px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-spinner-down { + background-position: 0 -13px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap-focus .x-form-spinner-down { + background-position: -60px -13px; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap .x-form-spinner-down-over { + background-position: -20px -13px; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap-focus .x-form-spinner-down-over { + background-position: -80px -13px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap .x-form-spinner-down-click { + background-position: -40px -13px; +} + +/* line 41, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item div.x-form-spinner-up, +.x-toolbar-item div.x-form-spinner-down { + background-image: url(images/form/spinner-small.gif); + height: 12px; +} +/* line 45, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-spinner-down { + background-position: 0 -12px; +} +/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down { + background-position: -60px -12px; +} +/* line 51, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-over { + background-position: -20px -12px; +} +/* line 54, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down-over { + background-position: -80px -12px; +} +/* line 57, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-click { + background-position: -40px -12px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-number { + width: 30px; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-first { + background-image: url(images/grid/page-first.gif); +} + +/* line 9, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-prev { + background-image: url(images/grid/page-prev.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-next { + background-image: url(images/grid/page-next.gif); +} + +/* line 17, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-last { + background-image: url(images/grid/page-last.gif); +} + +/* line 21, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-loading { + background-image: url(images/grid/refresh.gif); +} + +/* line 27, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-first { + background-image: url(images/grid/page-first-disabled.gif); +} +/* line 31, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-prev { + background-image: url(images/grid/page-prev-disabled.gif); +} +/* line 35, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-next { + background-image: url(images/grid/page-next-disabled.gif); +} +/* line 39, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-last { + background-image: url(images/grid/page-last-disabled.gif); +} +/* line 43, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-loading { + background-image: url(images/grid/refresh-disabled.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist { + border-width: 2px; + border-style: solid; + border-color: #222732; + background: #404551; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-strict .x-ie7m .x-boundlist-list-ct { + position: relative; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-item { + padding: 0 3px; + line-height: 22px; + cursor: pointer; + cursor: hand; + position: relative; + /*allow hover in IE on empty items*/ + zoom: 1; + border-width: 0; + border-style: dotted; + border-color: #404551; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-selected { + background: #e5872c; + border-color: #242838; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-item-over { + background: #e5872c; + border-color: #2e3347; +} + +/* line 43, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-floating { + border-top-width: 0; +} + +/* line 47, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-above { + border-top-width: 1px; + border-bottom-width: 1px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker { + border-width: 1px; + border-style: solid; + border-color: #798294; + background-color: #21252e; + width: 177px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-header { + padding: 3px 6px; + text-align: center; + background-image: none; + background-color: #5c6980; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #627089), color-stop(100%, #535f74)); + background-image: -webkit-linear-gradient(top, #627089, #535f74); + background-image: -moz-linear-gradient(top, #627089, #535f74); + background-image: -o-linear-gradient(top, #627089, #535f74); + background-image: linear-gradient(top, #627089, #535f74); +} + +/* line 32, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-arrow { + width: 15px; + height: 15px; + top: 6px; + cursor: pointer; + background-color: #5c6980; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-datepicker-arrow:hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 55, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-next { + right: 6px; + background-image: url(images/shared/right-btn.gif); +} + +/* line 60, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-prev { + left: 6px; + background-image: url(images/shared/left-btn.gif); +} + +/* line 76, ../../../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 83, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-month .x-btn-inner { + color: white; +} +/* line 88, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-month .x-btn-split-right { + background-image: url(images/button/s-arrow-light.gif); + padding-right: 14px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-column-header { + width: 25px; + color: white; + font: normal 10px tahoma, arial, verdana, sans-serif; + text-align: right; + border-width: 0 0 1px; + border-style: solid; + border-color: #535b5c; + background-image: none; + background-color: #3a4051; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #40475a), color-stop(100%, #313745)); + background-image: -webkit-linear-gradient(top, #40475a, #313745); + background-image: -moz-linear-gradient(top, #40475a, #313745); + background-image: -o-linear-gradient(top, #40475a, #313745); + background-image: linear-gradient(top, #40475a, #313745); +} + +/* line 113, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-column-header-inner { + line-height: 20px; + padding: 0 7px 0 0; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-cell { + text-align: right; + border-width: 1px; + border-style: solid; + border-color: #21252e; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-date { + padding: 0 4px 0 0; + font: normal 14px tahoma, arial, verdana, sans-serif; + color: white; + cursor: pointer; + line-height: 19px; +} + +/* line 138, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-datepicker-date:hover { + color: white; + background-color: #7e5530; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-selected { + border-style: solid; + border-color: #864900; +} +/* line 146, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-selected .x-datepicker-date { + background-color: #e5872c; + font-weight: bold; +} + +/* line 152, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-today { + border-color: #9999aa; + border-style: solid; +} + +/* line 159, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-prevday .x-datepicker-date, +.x-datepicker-nextday .x-datepicker-date { + color: #aaaaaa; +} + +/* line 166, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-disabled a.x-datepicker-date { + background-color: #eeeeee; + cursor: default; + color: #bbbbbb; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-disabled a.x-datepicker-date:hover { + background-color: #eeeeee; +} + +/* line 179, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-footer, +.x-monthpicker-buttons { + padding: 4px 0; + border-width: 1px 0 0; + border-style: solid; + border-color: #535b5c; + background-image: none; + background-color: #3a4051; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #51596b), color-stop(49%, #4b525f), color-stop(51%, #454b58), color-stop(100%, #484e5a)); + background-image: -webkit-linear-gradient(top, #51596b, #4b525f 49%, #454b58 51%, #484e5a); + background-image: -moz-linear-gradient(top, #51596b, #4b525f 49%, #454b58 51%, #484e5a); + background-image: -o-linear-gradient(top, #51596b, #4b525f 49%, #454b58 51%, #484e5a); + background-image: linear-gradient(top, #51596b, #4b525f 49%, #454b58 51%, #484e5a); + text-align: center; +} +/* line 195, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-footer .x-btn, +.x-monthpicker-buttons .x-btn { + margin: 0 2px 0 2px; +} + +/* line 201, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker { + width: 177px; + border-width: 1px; + border-style: solid; + border-color: #798294; + background-color: #21252e; +} + +/* line 211, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-months { + border-width: 0 1px 0 0; + border-color: #798294; + border-style: solid; + width: 87px; +} +/* line 220, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-months .x-monthpicker-item { + width: 43px; +} + +/* line 225, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-years { + width: 88px; +} +/* line 228, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-years .x-monthpicker-item { + width: 44px; +} + +/* line 233, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-item { + margin: 5px 0 4px; + font: normal 14px tahoma, arial, verdana, sans-serif; + text-align: center; +} + +/* line 239, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-item-inner { + margin: 0 5px 0 5px; + color: white; + border-width: 1px; + border-style: solid; + border-color: #21252e; + line-height: 16px; + cursor: pointer; +} + +/* line 254, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-monthpicker-item-inner:hover { + background-color: #7e5530; +} + +/* line 258, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-selected { + background-color: #e5872c; + border-style: solid; + border-color: #864900; +} + +/* line 264, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav { + height: 27px; +} + +/* line 268, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button-ct { + width: 44px; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button { + height: 15px; + width: 15px; + cursor: pointer; + margin-top: 6px; + background-color: #21252e; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-next { + background-image: url(images/tools/tool-sprites.gif); + background-position: 0 -120px; +} + +/* line 299, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-next-over { + background-position: -15px -120px; +} + +/* line 303, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-prev { + background-image: url(images/tools/tool-sprites.gif); + background-position: 0 -105px; +} + +/* line 308, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-prev-over { + background-position: -15px -105px; +} + +/* line 313, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-item { + margin: 2px 0 2px; +} +/* line 317, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-item-inner { + margin: 0 5px 0 5px; +} +/* line 321, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-yearnav { + height: 22px; +} +/* line 325, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-yearnav-button { + margin-top: 3px; +} + +/* line 334, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-nlg .x-datepicker-header { + background-image: url(images/datepicker/datepicker-header-bg.gif); + background-repeat: repeat-x; + background-position: top left; +} +/* line 343, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-nlg .x-datepicker-footer, +.x-nlg .x-monthpicker-buttons { + background-image: url(images/datepicker/datepicker-footer-bg.gif); + background-repeat: repeat-x; + background-position: top left; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-datepicker-header:after { + display: none; + content: "x-slicer:bg:url(images/datepicker/datepicker-header-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-datepicker-footer:after { + display: none; + content: "x-slicer:bg:url(images/datepicker/datepicker-footer-bg.gif)"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */ +.x-form-date-trigger { + background-image: url(images/form/date-trigger.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/File.scss */ +.x-form-file-wrap .x-form-text { + color: gray; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker { + width: 144px; + height: 90px; + background-color: white; + border-color: white; + border-width: 0; + border-style: solid; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-item { + width: 18px; + height: 18px; + border-width: 1px; + border-color: white; + border-style: solid; + background-color: white; + cursor: pointer; + padding: 2px; +} +/* line 20, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-content-box .x-color-picker-item { + width: 12px; + height: 12px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +a.x-color-picker-item:hover { + border-color: #8bb8f3; + background-color: #deecfd; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-selected { + border-color: #8bb8f3; + background-color: #deecfd; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-item-inner { + line-height: 10px; + border-color: #aca899; + border-width: 1px; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-btn-text { + background: transparent no-repeat; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-bold, +.x-menu-item div.x-edit-bold { + background-position: 0 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-italic, +.x-menu-item div.x-edit-italic { + background-position: -16px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-underline, +.x-menu-item div.x-edit-underline { + background-position: -32px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-forecolor, +.x-menu-item div.x-edit-forecolor { + background-position: -160px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 31, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-backcolor, +.x-menu-item div.x-edit-backcolor { + background-position: -176px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifyleft, +.x-menu-item div.x-edit-justifyleft { + background-position: -112px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifycenter, +.x-menu-item div.x-edit-justifycenter { + background-position: -128px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifyright, +.x-menu-item div.x-edit-justifyright { + background-position: -144px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 55, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-insertorderedlist, +.x-menu-item div.x-edit-insertorderedlist { + background-position: -80px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 61, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-insertunorderedlist, +.x-menu-item div.x-edit-insertunorderedlist { + background-position: -96px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 67, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-increasefontsize, +.x-menu-item div.x-edit-increasefontsize { + background-position: -48px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-decreasefontsize, +.x-menu-item div.x-edit-decreasefontsize { + background-position: -64px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 79, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-sourceedit, +.x-menu-item div.x-edit-sourceedit { + background-position: -192px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 85, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-createlink, +.x-menu-item div.x-edit-createlink { + background-position: -208px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 90, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tip .x-tip-bd .x-tip-bd-inner { + padding: 5px; + padding-bottom: 1px; +} + +/* line 95, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-font-select { + font-size: 11px; + font-family: inherit; +} + +/* line 100, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-wrap textarea { + font: normal 15px tahoma, arial, verdana, sans-serif; + background-color: #34383f; + resize: none; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-body { + background: #232d38; + border-width: 1px; + border-style: solid; + border-color: #18181a; +} + +/* line 8, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-empty { + padding: 10px; + color: gray; + background-color: #232d38; + font: normal 14px tahoma, arial, verdana, sans-serif; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell { + color: white; + font: normal 14px/17px tahoma, arial, verdana, sans-serif; + background-color: #1f2933; + border-color: #ededed #454545 #ededed #454545; + border-style: solid; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-alt .x-grid-td { + background-color: #1a232b; +} +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-over .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #101010; +} +/* line 35, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-over .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #101010; +} +/* line 40, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-selected .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #101010; +} +/* line 45, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #101010; +} +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-focused .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #464646; + border-bottom-width: 1px; +} +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-td { + background-color: #efefef; +} +/* line 65, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-over .x-grid-td { + background-color: #7e552f; +} +/* line 73, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-td { + background-color: #e48627; +} +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #464646; + border-bottom-width: 1px; +} +/* line 92, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-table .x-grid-row-focused-first .x-grid-td { + border-top: 1px dotted #464646; +} +/* line 103, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-row-summary .x-grid-td { + border-bottom-color: #e48627; + border-top-width: 0; +} +/* line 108, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-row-summary .x-grid-td { + border-bottom-color: #efefef; + border-top-width: 0; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-td { + border-bottom-width: 1px; +} +/* line 121, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table { + border-top: 1px solid #1f2933; +} +/* line 125, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table-over-first { + border-top-style: solid; + border-top-color: #101010; +} +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table-selected-first { + border-top-style: dotted; + border-top-color: #101010; +} + +/* line 139, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-body .x-grid-table-focused-first { + border-top: 1px dotted #464646; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell-inner { + text-overflow: ellipsis; + padding: 2px 6px 3px 6px; +} + +/* line 163, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner { + padding-top: 1px; + padding-bottom: 2px; +} + +/* line 178, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell-special { + border-color: #ededed #454545 #ededed #454545; + border-style: solid; + border-right-width: 1px; + background-image: none; + background-color: #f6f6f6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: -moz-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: -o-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: linear-gradient(top, #f6f6f6, #e9e9e9); + /**/ + /**/ + /* */ + /**/ + /**/ + /* */ +} +/* line 191, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-cell-special { + border-right-color: #ededed #283b61; + background-image: none; + background-color: #e48627; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #e48627), color-stop(100%, #d7791b)); + background-image: -webkit-linear-gradient(left, #e48627, #d7791b); + background-image: -moz-linear-gradient(left, #e48627, #d7791b); + background-image: -o-linear-gradient(left, #e48627, #d7791b); + background-image: linear-gradient(left, #e48627, #d7791b); +} +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-nlg .x-grid-cell-special { + background-repeat: repeat-y; + background-image: url(images/grid/cell-special-bg.gif); +} +/* line 211, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-nlg .x-grid-row-selected .x-grid-cell-special { + background-image: url(images/grid/cell-special-selected-bg.gif); +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-cell-special .x-grid-cell-special:after { + display: none; + content: "x-slicer:bg:url(images/grid/cell-special-bg.gif)"; +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-cell-special .x-grid-cell-special-selected:after { + display: none; + content: "x-slicer:bg:url(images/grid/cell-special-selected-bg.gif)"; +} + +/* line 228, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-dirty-cell { + background: url(images/grid/dirty.gif) no-repeat 0 0; +} + +/* line 241, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row .x-grid-cell-selected { + color: white; + background-color: #b8cfee; +} + +/* line 247, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-col-lines .x-grid-cell { + border-right-width: 1px; +} + +/* line 259, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-resize-marker { + width: 1px; + background-color: #0f0f0f; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator { + position: absolute; + height: 1px; + line-height: 0px; + background-color: #77BC71; + overflow: visible; + pointer-events: none; +} +/* line 9, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator .x-grid-drop-indicator-left { + position: absolute; + top: -8px; + left: -12px; + background-image: url(images/grid/dd-insert-arrow-right.png); + height: 16px; + width: 16px; +} +/* line 18, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator .x-grid-drop-indicator-right { + position: absolute; + top: -8px; + right: -11px; + background-image: url(images/grid/dd-insert-arrow-left.png); + height: 16px; + width: 16px; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-ie6 .x-grid-drop-indicator-left { + background-image: url(images/grid/dd-insert-arrow-right.gif); +} +/* line 33, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-ie6 .x-grid-drop-indicator-right { + background-image: url(images/grid/dd-insert-arrow-left.gif); +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + width: 9px; + height: 9px; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top { + background-image: url(images/grid/col-move-top.gif); +} + +/* line 11, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-bottom { + background-image: url(images/grid/col-move-bottom.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-grid-header-ct { + border: 1px solid #18181a; + border-bottom-color: #373c4b; + background-color: #373c4b; + background-image: none; + background-color: #373c4b; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #575f77), color-stop(50%, #42485a), color-stop(51%, #373c4b), color-stop(100%, #2c303c)); + background-image: -webkit-linear-gradient(top, #575f77, #42485a 50%, #373c4b 51%, #2c303c); + background-image: -moz-linear-gradient(top, #575f77, #42485a 50%, #373c4b 51%, #2c303c); + background-image: -o-linear-gradient(top, #575f77, #42485a 50%, #373c4b 51%, #2c303c); + background-image: linear-gradient(top, #575f77, #42485a 50%, #373c4b 51%, #2c303c); +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-accordion-item .x-grid-header-ct { + border-width: 0 0 1px !important; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-accordion-item .x-grid-header-ct-hidden { + border: 0 !important; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-grid-body { + border-top-color: #c5c5c5; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-hmenu-sort-asc .x-menu-item-icon { + background-image: url(images/grid/hmenu-asc.gif); +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-hmenu-sort-desc .x-menu-item-icon { + background-image: url(images/grid/hmenu-desc.gif); +} + +/* line 40, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-cols-icon .x-menu-item-icon { + background-image: url(images/grid/columns.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header { + border-right: 1px solid #c5c5c5; + color: white; + font: normal 14px/16px tahoma, arial, verdana, sans-serif; + background-image: none; + background-color: #373c4b; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #575f77), color-stop(50%, #42485a), color-stop(51%, #373c4b), color-stop(100%, #2c303c)); + background-image: -webkit-linear-gradient(top, #575f77, #42485a 50%, #373c4b 51%, #2c303c); + background-image: -moz-linear-gradient(top, #575f77, #42485a 50%, #373c4b 51%, #2c303c); + background-image: -o-linear-gradient(top, #575f77, #42485a 50%, #373c4b 51%, #2c303c); + background-image: linear-gradient(top, #575f77, #42485a 50%, #373c4b 51%, #2c303c); +} + +/* line 24, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-group-sub-header { + background: transparent; + border-top: 1px solid #c5c5c5; +} +/* line 29, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-group-sub-header .x-column-header-inner { + padding: 3px 6px 5px 6px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-inner { + padding: 4px 6px 5px 6px; + text-overflow: ellipsis; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-over, +.x-column-header-sort-ASC, +.x-column-header-sort-DESC { + background-image: none; + background-color: #496085; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6c86ae), color-stop(50%, #526c95), color-stop(51%, #496085), color-stop(100%, #405475)); + background-image: -webkit-linear-gradient(top, #6c86ae, #526c95 50%, #496085 51%, #405475); + background-image: -moz-linear-gradient(top, #6c86ae, #526c95 50%, #496085 51%, #405475); + background-image: -o-linear-gradient(top, #6c86ae, #526c95 50%, #496085 51%, #405475); + background-image: linear-gradient(top, #6c86ae, #526c95 50%, #496085 51%, #405475); +} + +/* line 51, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-nlg .x-grid-header-ct, +.x-nlg .x-column-header { + background-image: url(images/grid/column-header-bg.gif); +} + +/* line 62, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-nlg .x-column-header-over, +.x-nlg .x-column-header-sort-ASC, +.x-nlg .x-column-header-sort-DESC { + background-image: url(images/grid/column-header-over-bg.gif); +} + +/* line 70, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-open { + background-color: transparent; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-open .x-column-header-trigger { + background-color: transparent; +} + +/* line 78, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-trigger { + width: 14px; + cursor: pointer; + background-color: transparent; + background-position: 0 center; +} + +/* line 96, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-align-right .x-column-header-text { + margin-right: 9px; +} + +/* line 110, ../../../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: 18px; + background-position: right center; +} + +/* line 127, ../../../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.gif); +} + +/* line 130, ../../../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.gif); +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-column-header:after { + display: none; + content: "x-slicer:bg:url(images/grid/column-header-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-column-header-over:after { + display: none; + content: "x-slicer:bg:url(images/grid/column-header-over-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-grid-cell-inner-action-col { + padding: 3px 2px 3px 2px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-action-col { + padding-top: 2px; + padding-bottom: 2px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-action-col-cell .x-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-action-col-icon { + height: 16px; + width: 16px; + cursor: pointer; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-cell-inner-checkcolumn { + padding: 2px 6px 1px 6px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-checkcolumn { + padding-top: 1px; + padding-bottom: 0px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-checkcolumn { + width: 19px; + height: 19px; + background: url(images/form/checkbox.gif) 0 0 no-repeat; +} +/* line 17, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-item-disabled .x-grid-checkcolumn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-checkcolumn-checked { + background-position: 0 -19px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/RowNumberer.scss */ +.x-grid-cell-inner-row-numberer { + padding: 2px 5px 3px 3px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd { + border-width: 0 0 2px 0; + border-style: solid; + border-color: #283042; + padding: 10px 4px 4px 4px; + background: white; + cursor: pointer; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-not-collapsible { + cursor: default; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-collapsible .x-grid-group-title { + background-repeat: no-repeat; + background-position: left center; + background-image: url(images/grid/group-collapse.gif); + padding: 0 0 0 14px; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-title { + color: black; + font: bold 14px/16px tahoma, arial, verdana, sans-serif; +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-collapsed .x-grid-group-title { + background-image: url(images/grid/group-expand.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-collapsed .x-grid-group-title { + background-image: url(images/grid/group-expand.gif); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-group-by-icon { + background-image: url(images/grid/group-by.gif); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-show-groups-icon { + background-image: url(images/grid/group-by.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ +.x-grid-rowbody { + font: normal 14px/17px tahoma, arial, verdana, sans-serif; + padding: 5px 6px 5px 6px; +} +/* line 6, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-rowbody { + padding-top: 6px; + padding-bottom: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowWrap.scss */ +.x-grid-rowwrap { + border-color: #101010; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-summary-bottom { + border-bottom-color: #373c4b; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-docked-summary { + border-width: 1px; + border-color: #18181a; + border-style: solid; +} +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-docked-summary .x-grid-table { + width: 100%; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-grid-row-summary .x-grid-cell, +.x-grid-row-summary .x-grid-rowwrap, +.x-grid-row-summary .x-grid-cell-rowbody { + border-color: #ededed #454545 #ededed #454545; + background-color: transparent !important; + border-top-width: 0; + font: normal 14px/17px tahoma, arial, verdana, sans-serif; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-grid-with-row-lines .x-grid-table-summary { + border: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-grid-locked .x-grid-inner-locked { + border-width: 0 1px 0 0; + border-style: solid; +} + +/* line 17, ../../../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 39, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-hmenu-lock .x-menu-item-icon { + background-image: url(images/grid/hmenu-lock.gif); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-hmenu-unlock .x-menu-item-icon { + background-image: url(images/grid/hmenu-unlock.gif); +} + +/* line 4, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-text { + font: normal 14px/15px tahoma, arial, verdana, sans-serif; + padding: 1px 4px 2px 4px; + height: 22px; +} +/* line 15, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-content-box .x-grid-editor .x-form-text { + height: 15px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-gecko .x-grid-editor .x-form-text { + padding-left: 3px; + padding-right: 3px; +} +/* line 31, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-trigger { + height: 22px; +} +/* line 39, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-spinner-up, .x-grid-editor .x-form-spinner-down { + height: 11px; +} +/* line 47, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb { + margin-top: 2px; +} +/* line 51, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb-wrap { + height: 22px; +} +/* line 58, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field-body { + height: 22px; +} +/* line 62, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field { + font: normal 14px/15px tahoma, arial, verdana, sans-serif; + padding: 3px 6px 4px 6px; + text-overflow: ellipsis; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-action-col-field { + padding: 3px 2px 3px 2px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x-tree-cell-editor .x-form-text { + padding-left: 1px; + padding-right: 1px; +} +/* line 8, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x-gecko .x-tree-cell-editor .x-form-text { + padding-left: 0px; + padding-right: 0px; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-field { + margin: 0 1px 0 1px; +} +/* line 7, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-display-field { + padding: 3px 5px 4px 5px; +} +/* line 16, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-action-col-field { + padding: 3px 1px 3px 1px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-text { + padding: 1px 3px 2px 3px; +} +/* line 30, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-gecko .x-grid-row-editor .x-form-text { + padding-left: 2px; + padding-right: 2px; +} +/* line 38, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-panel-body { + border-top: 1px solid #18181a !important; + border-bottom: 1px solid #18181a !important; + padding: 4px 0 4px 0; + background-color: #4b5d83; +} +/* line 48, ../../../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 137, ../../../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: 4px 4px 4px 4px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-color: #4b5d83; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mc { + background-color: #4b5d83; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-grid-row-editor-buttons-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-grid-row-editor-buttons-default-bottom-frameInfo { + font-family: th-0-0-5-5-0-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tr, +.x-grid-row-editor-buttons-default-bottom-br, +.x-grid-row-editor-buttons-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl, +.x-grid-row-editor-buttons-default-bottom-bl, +.x-grid-row-editor-buttons-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl, +.x-grid-row-editor-buttons-default-bottom-bl, +.x-grid-row-editor-buttons-default-bottom-tr, +.x-grid-row-editor-buttons-default-bottom-br, +.x-grid-row-editor-buttons-default-bottom-tc, +.x-grid-row-editor-buttons-default-bottom-bc, +.x-grid-row-editor-buttons-default-bottom-ml, +.x-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-ml, +.x-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mc { + padding: 4px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-tl, +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-row-editor-buttons-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 4px 4px 4px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #4b5d83; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mc { + background-color: #4b5d83; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-grid-row-editor-buttons-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-grid-row-editor-buttons-default-top-frameInfo { + font-family: th-5-5-0-0-1-1-0-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tr, +.x-grid-row-editor-buttons-default-top-br, +.x-grid-row-editor-buttons-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl, +.x-grid-row-editor-buttons-default-top-bl, +.x-grid-row-editor-buttons-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl, +.x-grid-row-editor-buttons-default-top-bl, +.x-grid-row-editor-buttons-default-top-tr, +.x-grid-row-editor-buttons-default-top-br, +.x-grid-row-editor-buttons-default-top-tc, +.x-grid-row-editor-buttons-default-top-bc, +.x-grid-row-editor-buttons-default-top-ml, +.x-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-ml, +.x-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mc { + padding: 0px 0px 4px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-tl, +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-row-editor-buttons-default-top:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 97, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons-default-bottom { + top: 31px; +} + +/* line 103, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons-default-top { + bottom: 31px; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons { + border-color: #18181a; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-row-editor-update-button { + margin-right: 2px; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-row-editor-cancel-button { + margin-left: 2px; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-errors .x-tip-body { + padding: 5px; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-errors-item { + list-style: disc; + margin-left: 15px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-cell-inner-row-expander { + padding: 7px 7px 6px 7px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-row-expander { + padding-top: 6px; + padding-bottom: 5px; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-expander { + width: 9px; + height: 9px; + cursor: pointer; + background-image: url(images/grid/group-collapse.gif); +} +/* line 20, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-collapsed .x-grid-row-expander { + background-image: url(images/grid/group-expand.gif); +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/property/Grid.scss */ +.x-grid-cell-inner-property-name { + background-image: url(images/grid/property-cell-bg.gif); + background-repeat: no-repeat; + background-position: -16px 2px; + padding-left: 12px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-layout-ct { + background-color: white; + padding: 0; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-panel-header-text-container { + color: white; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + text-transform: none; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item { + margin: 0; +} +/* line 16, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd { + background: #5c6b82; + border-top-color: #606877; + padding: 4px 5px 5px 5px; +} +/* line 22, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd-sibling-expanded { + border-top-color: #18181a; +} +/* line 26, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd-last-collapsed { + border-bottom-color: #5c6b82; +} +/* line 30, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-body { + border-width: 0; +} + +/* line 37, ../../../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 -255px; +} +/* line 42, ../../../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 -240px; +} +/* line 50, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-over .x-tool-collapse-top, +.x-accordion-hd .x-tool-over .x-tool-collapse-bottom { + background-position: -15px -255px; +} +/* line 55, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-over .x-tool-expand-top, +.x-accordion-hd .x-tool-over .x-tool-expand-bottom { + background-position: -15px -240px; +} +/* line 61, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-img { + background-color: #5c6b82; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-collapse-el { + cursor: pointer; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-left, +.x-layout-split-right { + top: 50%; + margin-top: -18px; + width: 5px; + height: 35px; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-top, +.x-layout-split-bottom { + left: 50%; + width: 35px; + height: 5px; + margin-left: -18px; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-left { + background-image: url(images/util/splitter/mini-left.gif); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-right { + background-image: url(images/util/splitter/mini-right.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-top { + background-image: url(images/util/splitter/mini-top.gif); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-bottom { + background-image: url(images/util/splitter/mini-bottom.gif); +} + +/* line 50, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-left { + background-image: url(images/util/splitter/mini-right.gif); +} +/* line 54, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-right { + background-image: url(images/util/splitter/mini-left.gif); +} +/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-top { + background-image: url(images/util/splitter/mini-bottom.gif); +} +/* line 74, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-bottom { + background-image: url(images/util/splitter/mini-top.gif); +} + +/* line 79, ../../../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 83, ../../../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 1, ../../../ext-theme-neutral/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + background-color: #3f4757; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-body { + background: #414551; + padding: 2px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-icon-separator { + left: 24px; + border-left: solid 1px #222233; + background-color: #666666; + width: 2px; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item { + padding: 1px; + cursor: pointer; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-indent { + margin-left: 30px; +} + +/* line 57, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-active { + background-image: none; + background-color: #ed9200; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fc9b00), color-stop(100%, #d98500)); + background-image: -webkit-linear-gradient(top, #fc9b00, #d98500); + background-image: -moz-linear-gradient(top, #fc9b00, #d98500); + background-image: -o-linear-gradient(top, #fc9b00, #d98500); + background-image: linear-gradient(top, #fc9b00, #d98500); + border-color: #d38200; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + border-width: 1px; + border-style: solid; + padding: 0; +} +/* line 75, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-nlg .x-menu-item-active { + background: #ed9200 repeat-x left top; + background-image: url(images/menu/menu-item-active-bg.gif); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-link { + line-height: 22px; + padding: 0 0 0 30px; + display: inline-block; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-right-check-item-text { + padding-right: 22px; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-icon { + width: 16px; + height: 16px; + top: 4px; + left: 3px; + background-position: center center; +} + +/* line 116, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-glyph { + font-size: 16px; + line-height: 16px; + color: white; + opacity: 0.5; +} +/* line 132, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie8m .x-menu-item-glyph { + color: #a0a2a8; +} + +/* line 142, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-gecko .x-menu-item-active .x-menu-item-icon, +.x-quirks .x-menu-item-active .x-menu-item-icon, +.x-ie9m .x-menu-item-active .x-menu-item-icon { + top: 3px; + left: 2px; +} + +/* line 168, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-icon-right { + width: 16px; + height: 16px; + top: 3px; + right: 3px; + background-position: center center; +} + +/* line 183, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-text { + font-size: 14px; + color: white; + cursor: pointer; + margin-right: 16px; +} + +/* line 201, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-checked .x-menu-item-icon, .x-menu-item-checked .x-menu-item-icon-right { + background-image: url(images/menu/checked.gif); +} +/* line 204, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-checked .x-menu-group-icon { + background-image: url(images/menu/group-checked.gif); +} + +/* line 210, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-unchecked .x-menu-item-icon, .x-menu-item-unchecked .x-menu-item-icon-right { + background-image: url(images/menu/unchecked.gif); +} +/* line 213, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-unchecked .x-menu-group-icon { + background-image: none; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-separator { + height: 2px; + border-top: solid 1px #222233; + background-color: #666666; + margin: 2px 0; + padding: 0; +} + +/* line 226, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-arrow { + width: 12px; + height: 9px; + top: 7px; + right: 0; + background-image: url(images/menu/menu-parent.gif); +} + +/* line 239, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-gecko .x-menu-item-active .x-menu-item-arrow, +.x-quirks .x-menu-item-active .x-menu-item-arrow, +.x-ie9m .x-menu-item-active .x-menu-item-arrow { + top: 6px; + right: -1px; +} + +/* line 264, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/* line 270, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-content-box .x-menu-icon-separator { + width: 1px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-content-box .x-menu-item-separator { + height: 1px; +} + +/* line 281, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie .x-menu-item-disabled .x-menu-item-icon { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 285, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie .x-menu-item-disabled .x-menu-item-text { + background-color: transparent; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-date-item { + border-color: #99BBE8; +} + +/* line 300, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item .x-form-item-label { + font-size: 14px; + color: white; +} + +/* line 306, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top { + height: 8px; + background-image: url(images/menu/scroll-top.gif); +} + +/* line 310, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-bottom { + height: 8px; + background-image: url(images/menu/scroll-bottom.gif); +} + +/* line 316, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top, .x-menu-scroll-bottom { + background-color: #414551; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-menu-item-link:after { + display: none; + content: "x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool { + cursor: pointer; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-img { + overflow: hidden; + width: 15px; + height: 15px; + background-image: url(images/tools/tool-sprites.gif); + margin: 0; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-placeholder { + visibility: hidden; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-close { + background-position: 0 0; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-minimize { + background-position: 0 -15px; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-maximize { + background-position: 0 -30px; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-restore { + background-position: 0 -45px; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-toggle { + background-position: 0 -60px; +} +/* line 53, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-panel-collapsed .x-tool-toggle { + background-position: 0 -75px; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-gear { + background-position: 0 -90px; +} + +/* line 62, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-prev { + background-position: 0 -105px; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-next { + background-position: 0 -120px; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-pin { + background-position: 0 -135px; +} + +/* line 74, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-unpin { + background-position: 0 -150px; +} + +/* line 78, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-right { + background-position: 0 -165px; +} + +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-left { + background-position: 0 -180px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-down { + background-position: 0 -195px; +} + +/* line 90, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-up { + background-position: 0 -210px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-refresh { + background-position: 0 -225px; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-plus { + background-position: 0 -240px; +} + +/* line 102, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-minus { + background-position: 0 -255px; +} + +/* line 106, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-search { + background-position: 0 -270px; +} + +/* line 110, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-save { + background-position: 0 -285px; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-help { + background-position: 0 -300px; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-print { + background-position: 0 -315px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand { + background-position: 0 -330px; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-collapse { + background-position: 0 -345px; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-resize { + background-position: 0 -360px; +} + +/* line 134, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-move { + background-position: 0 -375px; +} + +/* line 139, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-bottom, +.x-tool-collapse-bottom { + background-position: 0 -195px; +} + +/* line 144, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-top, +.x-tool-collapse-top { + background-position: 0 -210px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-left, +.x-tool-collapse-left { + background-position: 0 -180px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-right, +.x-tool-collapse-right { + background-position: 0 -165px; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-close { + background-position: -15px 0; +} +/* line 178, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-minimize { + background-position: -15px -15px; +} +/* line 182, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-maximize { + background-position: -15px -30px; +} +/* line 186, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-restore { + background-position: -15px -45px; +} +/* line 190, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-toggle { + background-position: -15px -60px; +} +/* line 195, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-panel-collapsed .x-tool-over .x-tool-toggle { + background-position: -15px -75px; +} +/* line 200, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-gear { + background-position: -15px -90px; +} +/* line 204, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-prev { + background-position: -15px -105px; +} +/* line 208, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-next { + background-position: -15px -120px; +} +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-pin { + background-position: -15px -135px; +} +/* line 216, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-unpin { + background-position: -15px -150px; +} +/* line 220, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-right { + background-position: -15px -165px; +} +/* line 224, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-left { + background-position: -15px -180px; +} +/* line 228, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-down { + background-position: -15px -195px; +} +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-up { + background-position: -15px -210px; +} +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-refresh { + background-position: -15px -225px; +} +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-plus { + background-position: -15px -240px; +} +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-minus { + background-position: -15px -255px; +} +/* line 248, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-search { + background-position: -15px -270px; +} +/* line 252, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-save { + background-position: -15px -285px; +} +/* line 256, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-help { + background-position: -15px -300px; +} +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-print { + background-position: -15px -315px; +} +/* line 264, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand { + background-position: -15px -330px; +} +/* line 268, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-collapse { + background-position: -15px -345px; +} +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-resize { + background-position: -15px -360px; +} +/* line 276, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-move { + background-position: -15px -375px; +} +/* line 281, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-bottom, +.x-tool-over .x-tool-collapse-bottom { + background-position: -15px -195px; +} +/* line 286, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-top, +.x-tool-over .x-tool-collapse-top { + background-position: -15px -210px; +} +/* line 291, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-left, +.x-tool-over .x-tool-collapse-left { + background-position: -15px -180px; +} +/* line 296, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-right, +.x-tool-over .x-tool-collapse-right { + background-position: -15px -165px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle { + position: absolute; + z-index: 100; + font-size: 1px; + line-height: 6px; + overflow: hidden; + zoom: 1; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + background-color: #fff; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-collapsed .x-resizable-handle { + display: none; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-north { + cursor: n-resize; +} +/* line 26, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south { + cursor: s-resize; +} +/* line 29, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east { + cursor: e-resize; +} +/* line 32, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-west { + cursor: w-resize; +} +/* line 35, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast { + cursor: se-resize; +} +/* line 38, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest { + cursor: nw-resize; +} +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast { + cursor: ne-resize; +} +/* line 44, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest { + cursor: sw-resize; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-east { + width: 6px; + height: 100%; + right: 0; + top: 0; +} + +/* line 56, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-south { + width: 100%; + height: 6px; + left: 0; + bottom: 0; +} + +/* line 63, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-west { + width: 6px; + height: 100%; + left: 0; + top: 0; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-north { + width: 100%; + height: 6px; + left: 0; + top: 0; +} + +/* line 77, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-southeast { + width: 6px; + height: 6px; + right: 0; + bottom: 0; + z-index: 101; +} + +/* line 85, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-northwest { + width: 6px; + height: 6px; + left: 0; + top: 0; + z-index: 101; +} + +/* line 93, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-northeast { + width: 6px; + height: 6px; + right: 0; + top: 0; + z-index: 101; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-southwest { + width: 6px; + height: 6px; + left: 0; + bottom: 0; + z-index: 101; +} + +/*IE rounding error*/ +/* line 111, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-ie .x-resizable-handle-east { + margin-right: -1px; + /*IE rounding error*/ +} +/* line 115, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-ie .x-resizable-handle-south { + margin-bottom: -1px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-pinned .x-resizable-handle, +.x-resizable-over .x-resizable-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 127, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-window .x-window-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-window-collapsed .x-window-handle { + display: none; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-proxy { + border: 1px dashed #3b5a82; + position: absolute; + overflow: hidden; + z-index: 50000; +} + +/* line 148, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east, +.x-resizable-over .x-resizable-handle-west, +.x-resizable-pinned .x-resizable-handle-east, +.x-resizable-pinned .x-resizable-handle-west { + background-image: url(images/sizer/e-handle.gif); +} +/* line 154, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south, +.x-resizable-over .x-resizable-handle-north, +.x-resizable-pinned .x-resizable-handle-south, +.x-resizable-pinned .x-resizable-handle-north { + background-image: url(images/sizer/s-handle.gif); +} +/* line 159, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast, +.x-resizable-pinned .x-resizable-handle-southeast { + background-position: top left; + background-image: url(images/sizer/se-handle.gif); +} +/* line 164, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest, +.x-resizable-pinned .x-resizable-handle-northwest { + background-position: bottom right; + background-image: url(images/sizer/nw-handle.gif); +} +/* line 169, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast, +.x-resizable-pinned .x-resizable-handle-northeast { + background-position: bottom left; + background-image: url(images/sizer/ne-handle.gif); +} +/* line 174, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest, +.x-resizable-pinned .x-resizable-handle-southwest { + background-position: top right; + background-image: url(images/sizer/sw-handle.gif); +} + +/* Horizontal styles */ +/* line 2, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz { + padding-left: 7px; + background: no-repeat 0 -15px; +} +/* line 6, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-end { + padding-right: 7px; + background: no-repeat right -30px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-inner { + height: 15px; +} + +/* line 20, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-ie6 .x-form-item .x-slider-horz, +.x-ie7 .x-form-item .x-slider-horz, +.x-quirks .x-ie .x-form-item .x-slider-horz { + margin-top: 6px; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb { + width: 14px; + height: 15px; + margin-left: -7px; + background-image: url(images/slider/slider-thumb.png); +} + +/* line 33, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb-over { + background-position: -14px -15px; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb-drag { + background-position: -28px -30px; +} + +/* Vertical styles */ +/* line 60, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert { + padding-top: 7px; + background: no-repeat -30px 0; +} + +/* line 65, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-end { + padding-bottom: 7px; + background: no-repeat -15px bottom; + width: 15px; +} + +/* line 71, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-inner { + width: 15px; +} + +/* line 75, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb { + width: 15px; + height: 14px; + margin-bottom: -7px; + background-image: url(images/slider/slider-v-thumb.png); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb-over { + background-position: -15px -14px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb-drag { + background-position: -30px -28px; +} + +/* line 92, ../../../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 98, ../../../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); +} + +/** + * 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-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-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} [$ui-border-width=$tab-border-width] + * The border-width of 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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 + * + * @param {color} [$ui-border-bottom-color=$tabbar-strip-border-color] + * The bottom border color of inactive tabs. + * + * @member Ext.tab.Tab + */ +/** + * Creates a visual theme for a Tab Bar + * + * @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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 {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 {number} [$ui-tab-height] + * The height of tabs that will be used in this tabbar UI. The tabbar body is given + * a fixed height to leave room for the tabs, and so that the tabbar does not collapse + * when it does not contain any tabs. + * + * @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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-tab-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 137, ../../../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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #616f8c; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mc { + background-color: #616f8c; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-top-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tr, +.x-tab-default-top-br, +.x-tab-default-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl, +.x-tab-default-top-bl, +.x-tab-default-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl, +.x-tab-default-top-bl, +.x-tab-default-top-tr, +.x-tab-default-top-br, +.x-tab-default-top-tc, +.x-tab-default-top-bc, +.x-tab-default-top-ml, +.x-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-ml, +.x-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-top-tl, +.x-strict .x-ie7 .x-tab-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 3px 9px 3px 9px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-color: #616f8c; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mc { + background-color: #616f8c; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-bottom-frameInfo { + font-family: th-0-0-4-4-0-1-1-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tr, +.x-tab-default-bottom-br, +.x-tab-default-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl, +.x-tab-default-bottom-bl, +.x-tab-default-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl, +.x-tab-default-bottom-bl, +.x-tab-default-bottom-tr, +.x-tab-default-bottom-br, +.x-tab-default-bottom-tc, +.x-tab-default-bottom-bc, +.x-tab-default-bottom-ml, +.x-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-ml, +.x-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mc { + padding: 3px 6px 0px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-bottom-tl, +.x-strict .x-ie7 .x-tab-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #616f8c; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mc { + background-color: #616f8c; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-left-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tr, +.x-tab-default-left-br, +.x-tab-default-left-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl, +.x-tab-default-left-bl, +.x-tab-default-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl, +.x-tab-default-left-bl, +.x-tab-default-left-tr, +.x-tab-default-left-br, +.x-tab-default-left-tc, +.x-tab-default-left-bc, +.x-tab-default-left-ml, +.x-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-ml, +.x-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-left-tl, +.x-strict .x-ie7 .x-tab-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-left:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-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: 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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #616f8c; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mc { + background-color: #616f8c; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-right-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tr, +.x-tab-default-right-br, +.x-tab-default-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl, +.x-tab-default-right-bl, +.x-tab-default-right-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl, +.x-tab-default-right-bl, +.x-tab-default-right-tr, +.x-tab-default-right-br, +.x-tab-default-right-tc, +.x-tab-default-right-bc, +.x-tab-default-right-ml, +.x-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-ml, +.x-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-right-tl, +.x-strict .x-ie7 .x-tab-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-right:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 307, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default { + border-color: #2e3746; + margin: 0 0 0 2px; + cursor: pointer; +} +/* line 312, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-inner { + font-size: 14px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + color: white; + line-height: 13px; +} +/* line 322, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-icon-el { + width: 16px; + height: 16px; + line-height: 16px; + background-position: center center; +} +/* line 329, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-glyph { + font-size: 16px; + color: white; + opacity: 0.5; +} +/* line 343, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default .x-tab-glyph { + color: #b0b7c5; +} +/* line 351, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default { + padding-left: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-button { + padding-left: 9px; +} +/* line 358, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-icon-el { + left: 9px; +} + +/* line 366, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-icon .x-tab-inner { + width: 16px; +} + +/* line 384, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-left { + margin: 0 2px 0 0; +} + +/* line 396, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top, +.x-tab-default-left, +.x-tab-default-right { + border-bottom: 1px solid #18181a; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom { + border-top: 1px solid #18181a; +} + +/* line 438, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-tab-default-left { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} + +/* line 454, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-tab-default-right { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +} + +/* line 471, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-icon-text-left .x-tab-inner { + padding-left: 20px; +} + +/* line 485, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-over { + background-color: #6d7b9a; +} +/* line 509, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-over .x-tab-glyph { + color: white; +} +/* line 516, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-over .x-tab-glyph { + color: #b6bdcc; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active { + border-color: #74400e; + background-color: #ed9200; +} +/* line 566, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active .x-tab-glyph { + color: white; +} +/* line 573, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-active .x-tab-glyph { + color: #f6c87f; +} + +/* line 581, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active, +.x-tab-default-left-active, +.x-tab-default-right-active { + border-bottom: 1px solid #ed9200; +} + +/* line 594, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active { + border-top: 1px solid #ed9200; +} + +/* line 607, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled { + border-color: #39445a; + cursor: default; +} +/* line 620, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-inner { + color: #c3b3b3; +} +/* line 639, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 644, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-glyph { + color: #c3b3b3; + opacity: 0.3; + filter: none; +} +/* line 658, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-disabled .x-tab-glyph { + color: #697390; +} + +/* line 667, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled, +.x-tab-default-left-disabled, +.x-tab-default-right-disabled { + border-color: #39445a #39445a #18181a; +} + +/* line 671, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled { + border-color: #18181a #39445a #39445a #39445a; +} + +/* line 699, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default { + background-image: none; +} + +/* line 710, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-tl, +.x-tab-default-top-over .x-frame-bl, +.x-tab-default-top-over .x-frame-tr, +.x-tab-default-top-over .x-frame-br, +.x-tab-default-top-over .x-frame-tc, +.x-tab-default-top-over .x-frame-bc, +.x-tab-default-left-over .x-frame-tl, +.x-tab-default-left-over .x-frame-bl, +.x-tab-default-left-over .x-frame-tr, +.x-tab-default-left-over .x-frame-br, +.x-tab-default-left-over .x-frame-tc, +.x-tab-default-left-over .x-frame-bc, +.x-tab-default-right-over .x-frame-tl, +.x-tab-default-right-over .x-frame-bl, +.x-tab-default-right-over .x-frame-tr, +.x-tab-default-right-over .x-frame-br, +.x-tab-default-right-over .x-frame-tc, +.x-tab-default-right-over .x-frame-bc { + background-image: url(images/tab/tab-default-top-over-corners.gif); +} +/* line 714, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-ml, +.x-tab-default-top-over .x-frame-mr, +.x-tab-default-left-over .x-frame-ml, +.x-tab-default-left-over .x-frame-mr, +.x-tab-default-right-over .x-frame-ml, +.x-tab-default-right-over .x-frame-mr { + background-image: url(images/tab/tab-default-top-over-sides.gif); +} +/* line 717, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-mc, +.x-tab-default-left-over .x-frame-mc, +.x-tab-default-right-over .x-frame-mc { + background-color: #6d7b9a; +} + +/* line 732, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-tl, +.x-tab-default-bottom-over .x-frame-bl, +.x-tab-default-bottom-over .x-frame-tr, +.x-tab-default-bottom-over .x-frame-br, +.x-tab-default-bottom-over .x-frame-tc, +.x-tab-default-bottom-over .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-over-corners.gif); +} +/* line 736, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-ml, +.x-tab-default-bottom-over .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-over-sides.gif); +} +/* line 739, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-mc { + background-color: #6d7b9a; +} + +/* line 756, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-tl, +.x-tab-default-top-active .x-frame-bl, +.x-tab-default-top-active .x-frame-tr, +.x-tab-default-top-active .x-frame-br, +.x-tab-default-top-active .x-frame-tc, +.x-tab-default-top-active .x-frame-bc, +.x-tab-default-left-active .x-frame-tl, +.x-tab-default-left-active .x-frame-bl, +.x-tab-default-left-active .x-frame-tr, +.x-tab-default-left-active .x-frame-br, +.x-tab-default-left-active .x-frame-tc, +.x-tab-default-left-active .x-frame-bc, +.x-tab-default-right-active .x-frame-tl, +.x-tab-default-right-active .x-frame-bl, +.x-tab-default-right-active .x-frame-tr, +.x-tab-default-right-active .x-frame-br, +.x-tab-default-right-active .x-frame-tc, +.x-tab-default-right-active .x-frame-bc { + background-image: url(images/tab/tab-default-top-active-corners.gif); +} +/* line 760, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-ml, +.x-tab-default-top-active .x-frame-mr, +.x-tab-default-left-active .x-frame-ml, +.x-tab-default-left-active .x-frame-mr, +.x-tab-default-right-active .x-frame-ml, +.x-tab-default-right-active .x-frame-mr { + background-image: url(images/tab/tab-default-top-active-sides.gif); +} +/* line 763, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-mc, +.x-tab-default-left-active .x-frame-mc, +.x-tab-default-right-active .x-frame-mc { + background-color: #ed9200; +} + +/* line 778, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-tl, +.x-tab-default-bottom-active .x-frame-bl, +.x-tab-default-bottom-active .x-frame-tr, +.x-tab-default-bottom-active .x-frame-br, +.x-tab-default-bottom-active .x-frame-tc, +.x-tab-default-bottom-active .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-active-corners.gif); +} +/* line 782, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-ml, +.x-tab-default-bottom-active .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-active-sides.gif); +} +/* line 785, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-mc { + background-color: #ed9200; +} + +/* line 802, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-tl, +.x-tab-default-top-disabled .x-frame-bl, +.x-tab-default-top-disabled .x-frame-tr, +.x-tab-default-top-disabled .x-frame-br, +.x-tab-default-top-disabled .x-frame-tc, +.x-tab-default-top-disabled .x-frame-bc, +.x-tab-default-left-disabled .x-frame-tl, +.x-tab-default-left-disabled .x-frame-bl, +.x-tab-default-left-disabled .x-frame-tr, +.x-tab-default-left-disabled .x-frame-br, +.x-tab-default-left-disabled .x-frame-tc, +.x-tab-default-left-disabled .x-frame-bc, +.x-tab-default-right-disabled .x-frame-tl, +.x-tab-default-right-disabled .x-frame-bl, +.x-tab-default-right-disabled .x-frame-tr, +.x-tab-default-right-disabled .x-frame-br, +.x-tab-default-right-disabled .x-frame-tc, +.x-tab-default-right-disabled .x-frame-bc { + background-image: url(images/tab/tab-default-top-disabled-corners.gif); +} +/* line 806, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-ml, +.x-tab-default-top-disabled .x-frame-mr, +.x-tab-default-left-disabled .x-frame-ml, +.x-tab-default-left-disabled .x-frame-mr, +.x-tab-default-right-disabled .x-frame-ml, +.x-tab-default-right-disabled .x-frame-mr { + background-image: url(images/tab/tab-default-top-disabled-sides.gif); +} +/* line 809, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-mc, +.x-tab-default-left-disabled .x-frame-mc, +.x-tab-default-right-disabled .x-frame-mc { + background-color: #435881; +} + +/* line 824, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-tl, +.x-tab-default-bottom-disabled .x-frame-bl, +.x-tab-default-bottom-disabled .x-frame-tr, +.x-tab-default-bottom-disabled .x-frame-br, +.x-tab-default-bottom-disabled .x-frame-tc, +.x-tab-default-bottom-disabled .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-disabled-corners.gif); +} +/* line 828, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-ml, +.x-tab-default-bottom-disabled .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-disabled-sides.gif); +} +/* line 831, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-mc { + background-color: #435881; +} + +/* line 850, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default-top, +.x-nbr .x-tab-default-left, +.x-nbr .x-tab-default-right { + border-bottom-width: 1px !important; +} +/* line 853, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default-bottom { + border-top-width: 1px !important; +} + +/* line 861, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn { + width: 11px; + height: 11px; + background-image: url(images/tab/tab-default-close.gif); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 870, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn-over { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 880, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn { + top: 2px; + right: 2px; +} + +/* line 924, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-close-btn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 939, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-closable .x-tab-wrap { + padding-right: 14px; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-over:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-over:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-active:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-active:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-disabled:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-disabled:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 94, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default { + border-style: solid; + border-color: #18181a; +} + +/* line 100, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top { + padding: 1px 0 0; + border-width: 1px 1px 0; +} + +/* line 107, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom { + padding: 0 0 1px 0; + border-width: 0 1px 1px 1px; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left { + padding: 0 0 0 1px; + border-width: 1px 0 1px 1px; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right { + padding: 0 1px 0 0; + border-width: 1px 1px 1px 0; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-horizontal { + height: 25px; +} +/* line 153, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-default-horizontal { + height: 23px; +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-vertical { + width: 25px; +} +/* line 165, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-default-vertical { + width: 23px; +} + +/* line 172, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-top { + padding-bottom: 2px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-bottom { + padding-top: 2px; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-left { + padding-right: 2px; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-right { + padding-left: 2px; +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default { + border-style: solid; + border-color: #18181a; + background-color: #ed9200; +} + +/* line 210, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-strip-default-horizontal { + height: 2px; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-strip-default-vertical { + width: 2px; +} + +/* line 224, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-top { + border-width: 1px 0 0 0; + height: 3px; +} +/* line 227, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-top { + border-width: 1px 1px 0; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-bottom { + border-width: 0 0 1px 0; + height: 3px; +} +/* line 235, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-bottom { + border-width: 0 1px 1px 1px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-left { + border-width: 0 0 0 1px; + width: 3px; +} +/* line 243, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-left { + border-width: 1px 0 1px 1px; +} + +/* line 257, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-right { + border-width: 0 1px 0 0; + width: 3px; +} +/* line 260, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-right { + border-width: 1px 1px 1px 0; +} + +/* line 274, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default { + background-color: #474e5c; +} + +/* line 279, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top { + background-image: none; + background-color: #474e5c; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4f596c), color-stop(100%, #474e5c)); + background-image: -webkit-linear-gradient(top, #4f596c, #474e5c); + background-image: -moz-linear-gradient(top, #4f596c, #474e5c); + background-image: -o-linear-gradient(top, #4f596c, #474e5c); + background-image: linear-gradient(top, #4f596c, #474e5c); +} +/* line 283, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-top { + background: url(images/tab-bar/tab-bar-default-top-bg.gif); +} + +/* line 289, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom { + background-image: none; + background-color: #474e5c; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #4f596c), color-stop(100%, #474e5c)); + background-image: -webkit-linear-gradient(bottom, #4f596c, #474e5c); + background-image: -moz-linear-gradient(bottom, #4f596c, #474e5c); + background-image: -o-linear-gradient(bottom, #4f596c, #474e5c); + background-image: linear-gradient(bottom, #4f596c, #474e5c); +} +/* line 293, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-bottom { + background: url(images/tab-bar/tab-bar-default-bottom-bg.gif) bottom 0; +} + +/* line 299, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left { + background-image: none; + background-color: #474e5c; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #4f596c), color-stop(100%, #474e5c)); + background-image: -webkit-linear-gradient(left, #4f596c, #474e5c); + background-image: -moz-linear-gradient(left, #4f596c, #474e5c); + background-image: -o-linear-gradient(left, #4f596c, #474e5c); + background-image: linear-gradient(left, #4f596c, #474e5c); +} +/* line 303, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-left { + background: url(images/tab-bar/tab-bar-default-left-bg.gif); +} + +/* line 309, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right { + background-image: none; + background-color: #474e5c; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #4f596c), color-stop(100%, #474e5c)); + background-image: -webkit-linear-gradient(right, #4f596c, #474e5c); + background-image: -moz-linear-gradient(right, #4f596c, #474e5c); + background-image: -o-linear-gradient(right, #4f596c, #474e5c); + background-image: linear-gradient(right, #4f596c, #474e5c); +} +/* line 313, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-right { + background: url(images/tab-bar/tab-bar-default-right-bg.gif) 0 right; +} + +/* line 323, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller { + cursor: pointer; +} +/* line 363, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-left, +.x-tab-bar-default .x-tabbar-scroll-right { + height: 20px; + width: 18px; +} +/* line 369, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-top, +.x-tab-bar-default .x-tabbar-scroll-bottom { + width: 20px; + height: 18px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-box-scroller { + margin-top: 1px; +} +/* line 381, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-box-scroller { + margin-left: 1px; +} + +/* line 456, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-left-top.gif); +} +/* line 459, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-right-top.gif); +} + +/* line 476, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-left-bottom.gif); +} +/* line 479, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-right-bottom.gif); +} + +/* line 496, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-left.gif); +} +/* line 499, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-left.gif); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-right.gif); +} +/* line 519, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-right.gif); +} + +/* line 539, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-left-hover, +.x-tab-bar-default .x-tabbar-scroll-right-hover { + background-position: -18px 0; +} +/* line 544, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-top-hover, +.x-tab-bar-default .x-tabbar-scroll-bottom-hover { + background-position: 0 -18px; +} +/* line 549, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + cursor: default; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-top:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-top-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-bottom:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-bottom-bg.gif), stretch:top"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-left:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-left-bg.gif), stretch:right"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-right:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-right-bg.gif), stretch:left"; +} + +/**/ +/* */ +/* line 998, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain { + border-width: 0; + padding: 0; + height: 23px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox { + border-color: #373c4b; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-row-checker, +.x-column-header-checkbox .x-column-header-text { + height: 19px; + width: 19px; + background-image: url(images/form/checkbox.gif); + line-height: 19px; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox .x-column-header-inner { + padding: 3px 5px 3px 5px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-cell-row-checker .x-grid-cell-inner { + padding: 2px 5px 1px 5px; +} +/* line 23, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-row-checker .x-grid-cell-inner { + padding-top: 1px; + padding-bottom: 0px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-hd-checker-on .x-column-header-text, +.x-grid-row-selected .x-grid-row-checker, +.x-grid-row-checked .x-grid-row-checker { + background-position: 0 -19px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-expander { + cursor: pointer; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander { + background-image: url(images/tree/arrows.gif); +} +/* line 11, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander-over .x-tree-expander { + background-position: -32px center; +} +/* line 15, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander { + background-position: -16px center; +} +/* line 19, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander { + background-position: -48px center; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow { + background-image: url(images/tree/elbow.gif); +} +/* line 48, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-end { + background-image: url(images/tree/elbow-end.gif); +} +/* line 52, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-plus { + background-image: url(images/tree/elbow-plus.gif); +} +/* line 56, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-plus.gif); +} +/* line 60, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus { + background-image: url(images/tree/elbow-minus.gif); +} +/* line 64, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-minus.gif); +} +/* line 68, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-line { + background-image: url(images/tree/elbow-line.gif); +} + +/* line 104, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-tree-expander { + background-image: url(images/tree/elbow-plus-nl.gif); +} +/* line 108, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-grid-tree-node-expanded .x-tree-expander { + background-image: url(images/tree/elbow-minus-nl.gif); +} + +/* line 123, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon { + width: 16px; + height: 22px; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-elbow-img { + width: 16px; + height: 22px; + margin-right: 0; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon, +.x-tree-elbow-img, +.x-tree-checkbox { + margin-top: -2px; + margin-bottom: -3px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon-leaf { + background-image: url(images/tree/leaf.gif); +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon-parent { + background-image: url(images/tree/folder.gif); +} + +/* line 171, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-node-expanded .x-tree-icon-parent { + background-image: url(images/tree/folder-open.gif); +} + +/* line 181, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-checkbox { + margin-right: 3px; + top: 2px; + width: 19px; + height: 19px; + background-image: url(images/form/checkbox.gif); +} + +/* line 196, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-checkbox-checked { + background-position: 0 -19px; +} + +/* line 200, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-loading .x-tree-icon { + background-image: url(images/tree/loading.gif); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-cell-inner-treecolumn { + font-size: 1px; + line-height: 0; +} + +/* line 221, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-node-text { + font-size: 14px; + line-height: 17px; + padding-left: 3px; +} + +/* line 235, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-cell-inner-treecolumn { + padding: 2px 6px 3px 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-append .x-dd-drop-icon { + background-image: url(images/tree/drop-append.gif); +} + +/* line 5, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-above .x-dd-drop-icon { + background-image: url(images/tree/drop-above.gif); +} + +/* line 9, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-below .x-dd-drop-icon { + background-image: url(images/tree/drop-below.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-between .x-dd-drop-icon { + background-image: url(images/tree/drop-between.gif); +} + +/* line 17, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-ddindicator { + height: 1px; + border-width: 1px 0px 0px; + border-style: dotted; + border-color: green; +} + +/* including package ext-theme-classic */ +/* line 2, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tl { + background: transparent no-repeat 0 0; + zoom: 1; +} + +/* line 7, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tc { + height: 8px; + background: transparent repeat-x 0 0; + overflow: hidden; +} + +/* line 13, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tr { + background: transparent no-repeat right -8px; +} + +/* line 17, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-ml { + background: transparent repeat-y 0; + padding-left: 4px; + overflow: hidden; + zoom: 1; +} + +/* line 24, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mc { + background: repeat-x 0 -16px; + padding: 4px 10px; +} + +/* line 29, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mc h3 { + margin: 0 0 4px 0; + zoom: 1; +} + +/* line 34, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mr { + background: transparent repeat-y right; + padding-right: 4px; + overflow: hidden; +} + +/* line 40, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-bl { + background: transparent no-repeat 0 -16px; + zoom: 1; +} + +/* line 45, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-bc { + background: transparent repeat-x 0 -8px; + height: 8px; + overflow: hidden; +} + +/* line 51, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-br { + background: transparent no-repeat right -24px; +} + +/* line 55, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tl, .x-box-bl { + padding-left: 8px; + overflow: hidden; +} + +/* line 60, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tr, .x-box-br { + padding-right: 8px; + overflow: hidden; +} + +/* line 65, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tl { + background-image: url(images/box/corners.gif); +} + +/* line 69, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tc { + background-image: url(images/box/tb.gif); +} + +/* line 73, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tr { + background-image: url(images/box/corners.gif); +} + +/* line 77, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-ml { + background-image: url(images/box/l.gif); +} + +/* line 81, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mc { + background-color: #eee; + background-image: url(images/box/tb.gif); + font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif; + color: #393939; + font-size: 15px; +} + +/* line 89, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mc h3 { + font-size: 18px; + font-weight: bold; +} + +/* line 94, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mr { + background-image: url(images/box/r.gif); +} + +/* line 98, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-bl { + background-image: url(images/box/corners.gif); +} + +/* line 102, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-bc { + background-image: url(images/box/tb.gif); +} + +/* line 106, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-br { + background-image: url(images/box/corners.gif); +} + +/* line 110, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr { + background-image: url(images/box/corners-blue.gif); +} + +/* line 114, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc { + background-image: url(images/box/tb-blue.gif); +} + +/* line 118, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-mc { + background-color: #c3daf9; +} + +/* line 122, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-mc h3 { + color: #17385b; +} + +/* line 126, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-ml { + background-image: url(images/box/l-blue.gif); +} + +/* line 130, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-mr { + background-image: url(images/box/r-blue.gif); +} + +/* line 2, ../../../ext-theme-classic/sass/src/window/MessageBox.scss */ +.x-message-box .x-msg-box-wait { + background-image: url(images/shared/blue-loading.gif); +} + +/* line 1, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + height: 26px; +} +/* line 5, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x-content-box .x-form-trigger { + height: 24px; +} + +/* line 12, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x-field-toolbar .x-form-trigger { + height: 24px; +} +/* line 16, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x-content-box .x-field-toolbar .x-form-trigger { + height: 22px; +} + +/* line 4, ../../../ext-theme-classic/sass/src/form/field/Spinner.scss */ +.x-content-box div.x-form-spinner-up, +.x-content-box div.x-form-spinner-down { + height: 11px; +} +/* line 10, ../../../ext-theme-classic/sass/src/form/field/Spinner.scss */ +.x-content-box .x-toolbar-item div.x-form-spinner-up, +.x-content-box .x-toolbar-item div.x-form-spinner-down { + height: 10px; +} + +/* line 2, ../../../ext-theme-classic/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-wrap .x-toolbar { + border-left-color: #737b8c; + border-top-color: #737b8c; + border-right-color: #737b8c; +} + +/* line 9, ../../../ext-theme-classic/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-input { + border: 1px solid #737b8c; + border-top-width: 0; +} + +/* line 1, ../../../ext-theme-classic/sass/src/grid/column/Column.scss */ +.x-column-header-trigger { + background-color: #373c4b; + background-image: url(images/grid/grid3-hd-btn.gif); +} + +/* line 6, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x-content-box .x-grid-editor .x-form-trigger { + height: 20px; +} +/* line 13, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-spinner-up, .x-grid-editor .x-form-spinner-down { + background-image: url(images/form/spinner-small.gif); +} +/* line 16, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x-content-box .x-grid-editor .x-form-spinner-up, .x-content-box .x-grid-editor .x-form-spinner-down { + height: 9px; +} + +/* line 1, ../../../ext-theme-classic/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd { + border-width: 1px 0 !important; + -webkit-box-shadow: inset 0 0 0 0 #5c6b82; + -moz-box-shadow: inset 0 0 0 0 #5c6b82; + box-shadow: inset 0 0 0 0 #5c6b82; +} + +/* line 6, ../../../ext-theme-classic/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd-sibling-expanded { + -webkit-box-shadow: inset 0 1px 0 0 #606877; + -moz-box-shadow: inset 0 1px 0 0 #606877; + box-shadow: inset 0 1px 0 0 #606877; +} + +/* line 5, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east, +.x-resizable-over .x-resizable-handle-west, +.x-resizable-pinned .x-resizable-handle-east, +.x-resizable-pinned .x-resizable-handle-west { + background-position: left; +} +/* line 10, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south, +.x-resizable-over .x-resizable-handle-north, +.x-resizable-pinned .x-resizable-handle-south, +.x-resizable-pinned .x-resizable-handle-north { + background-position: top; +} +/* line 14, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast, +.x-resizable-pinned .x-resizable-handle-southeast { + background-position: top left; +} +/* line 18, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest, +.x-resizable-pinned .x-resizable-handle-northwest { + background-position: bottom right; +} +/* line 22, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast, +.x-resizable-pinned .x-resizable-handle-northeast { + background-position: bottom left; +} +/* line 26, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest, +.x-resizable-pinned .x-resizable-handle-southwest { + background-position: top right; +} + +/* line 6, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-horz, +.x-ie6 .x-slider-horz .x-slider-end, +.x-ie6 .x-slider-horz .x-slider-inner { + background-image: url(images/slider/slider-bg.gif); +} +/* line 10, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-horz .x-slider-thumb { + background-image: url(images/slider/slider-thumb.gif); +} +/* line 16, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-vert, +.x-ie6 .x-slider-vert .x-slider-end, +.x-ie6 .x-slider-vert .x-slider-inner { + background-image: url(images/slider/slider-v-bg.gif); +} +/* line 20, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-vert .x-slider-thumb { + background-image: url(images/slider/slider-v-thumb.gif); +} + +/* line 1, ../../../ext-theme-classic/sass/src/tab/Panel.scss */ +.x-tab-icon-el { + top: -1px; +} + +/* line 6, ../../../ext-theme-classic/sass/src/tab/Panel.scss */ +.x-tab-noicon .x-tab-icon { + display: none; +} diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/ext-theme-access-all-rtl-debug.css b/extjs-django/marvel/static/extjs/resources/ext-theme-access/ext-theme-access-all-rtl-debug.css new file mode 100644 index 0000000..8592f85 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-access/ext-theme-access-all-rtl-debug.css @@ -0,0 +1,20615 @@ +/* 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. + */ +/* including package ext-theme-neutral */ +/* including package ext-theme-classic */ +/* including package ext-theme-access */ +/* including package ext-theme-access */ +/* including package ext-theme-classic */ +/* including package ext-theme-neutral */ +/** + * @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 {string} $font-size + * The default font-family 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 + */ +/** + * @class Ext.FocusManager + */ +/** + * @var {color} + * The border-color of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-style of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-width of the focusFrame. See {@link #method-enable}. + */ +/** + * @class Ext.LoadMask + */ +/** + * @var {number} + * Opacity of the LoadMask + */ +/** + * @var {color} + * The background-color of the LoadMask + */ +/** + * @var {string} + * The type of cursor to dislay when the cursor is over the LoadMask + */ +/** + * @var {number/list} + * The padding to apply to the LoadMask's message element + */ +/** + * @var {string} + * The border-style of the LoadMask's message element + */ +/** + * @var {color} + * The border-color of the LoadMask's message element + */ +/** + * @var {number} + * The border-width of the LoadMask's message element + */ +/** + * @var {color} + * The background-color of the LoadMask's message element + */ +/** + * @var {string/list} + * The background-gradient of the LoadMask's message element. Can be either the name + * of a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the message inner element + */ +/** + * @var {string} + * The icon to display in the message inner element + */ +/** + * @var {list} + * The background-position of the icon + */ +/** + * @var {string} + * The border-style of the message inner element + */ +/** + * @var {color} + * The border-color of the message inner element + */ +/** + * @var {number} + * The border-width of the message inner element + */ +/** + * @var {color} + * The background-color of the message inner element + */ +/** + * @var {color} + * The text color of the message inner element + */ +/** + * @var {number} + * The font-size of the message inner element + */ +/** + * @var {string} + * The font-weight of the message inner element + */ +/** + * @var {string} + * The font-family of the message inner element + */ +/** + * @var {number/list} + * The padding of the message element + */ +/** + * @var {number} + * The border-radius of the message element + */ +/** + * @class Ext.ProgressBar + */ +/** + * @var {number} + * The height of the ProgressBar + */ +/** + * @var {color} + * The border-color of the ProgressBar + */ +/** + * @var {number} + * The border-width of the ProgressBar + */ +/** + * @var {number} + * The border-radius of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar's moving element + */ +/** + * @var {string/list} + * The background-gradient of the ProgressBar's moving element. Can be either the name of + * a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The color of the ProgressBar's text when in front of the ProgressBar's moving element + */ +/** + * @var {color} + * The color of the ProgressBar's text when the ProgressBar's 'moving element is not under it + */ +/** + * @var {string} + * The text-align of the ProgressBar's text + */ +/** + * @var {number} + * The font-size of the ProgressBar's text + */ +/** + * @var {string} + * The font-weight of the ProgressBar's text + */ +/** + * @var {boolean} + * True to include the "default" ProgressBar UI + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a small {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a medium {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a large {@link #scale} button + */ +/** + * @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 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 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 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 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 disabled + */ +/** + * @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 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 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 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 disabled + */ +/** + * @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-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 buton 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-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 + */ +/** + * @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 {number/list} + * The margin 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 {number/list} + * The margin of Toolbar text + */ +/** + * @var {color} + * The text-color of Toolbar text + */ +/** + * @var {number/list} + * The padding of Toolbar text + */ +/** + * @var {number} + * The line-height of Toolbar text + */ +/** + * @var {number} + * The width of Toolbar scrollers + */ +/** + * @var {number} + * The height of Toolbar scrollers + */ +/** + * @var {color} + * The border-color of Toolbar scrollers + */ +/** + * @var {number} + * The border-width of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of disabled Toolbar scrollers + */ +/** + * @var {number} + * The opacity of disabled Toolbar scrollers + */ +/** + * @var {string} + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + */ +/** + * @var {boolean} + * True to include the "default" toolbar UI + */ +/** + * @class Ext.panel.Panel + */ +/** + * @var {number} + * The default border-width of Panels + */ +/** + * @var {color} + * The base color of Panels + */ +/** + * @var {color} + * The default border-color of Panels + */ +/** + * @var {$border-width-threshold} + * 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 {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 {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 {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 + */ +/** + * @class Ext.tip.Tip + */ +/** + * @var {color} + * The background-color of the Tip + */ +/** + * @var {string/list} + * The background-gradient of the Tip. Can be either the name of a predefined gradient or a + * list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The text color of the Tip body + */ +/** + * @var {number} + * The font-size of the Tip body + */ +/** + * @var {string} + * The font-weight of the Tip body + */ +/** + * @var {number/list} + * The padding of the Tip body + */ +/** + * @var {color} + * The text color of any anchor tags inside the Tip body + */ +/** + * @var {color} + * The text color of the Tip header + */ +/** + * @var {number} + * The font-size of the Tip header + */ +/** + * @var {string} + * The font-weight of the Tip header + */ +/** + * @var {number/list} + * The padding of the Tip header's body element + */ +/** + * @var {color} + * The border-color of the Tip + */ +/** + * @var {number} + * The border-width of the Tip + */ +/** + * @var {number} + * The border-radius of the Tip + */ +/** + * @var {color} + * The inner border-color of the form field error Tip + */ +/** + * @var {number} + * The inner border-width of the form field error Tip + */ +/** + * @var {color} + * The border-color of the form field error Tip + */ +/** + * @var {number} + * The border-radius of the form field error Tip + */ +/** + * @var {number} + * The border-width of the form field error Tip + */ +/** + * @var {color} + * The background-color of the form field error Tip + */ +/** + * @var {number/list} + * The padding of the form field error Tip's body element + */ +/** + * @var {color} + * The text color of the form field error Tip's body element + */ +/** + * @var {number} + * The font-size of the form field error Tip's body element + */ +/** + * @var {string} + * The font-weight of the form field error Tip's body element + */ +/** + * @var {color} + * The color of anchor tags in the form field error Tip's body element + */ +/** + * @var {number} + * The space between {@link Ext.panel.Tool Tools} in the header + */ +/** + * @var {string} + * The sprite to use for the header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" tip UI + */ +/** + * @var {boolean} + * True to include the "form-invalid" tip UI + */ +/** + * @class Ext.container.ButtonGroup + */ +/** + * @var {color} + * The background-color of the ButtonGroup + */ +/** + * @var {color} + * The border-color of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of the ButtonGroup + */ +/** + * @var {number/list} + * The body padding of the ButtonGroup + */ +/** + * @var {number/list} + * The inner border-width of the ButtonGroup + */ +/** + * @var {color} + * The inner border-color of the ButtonGroup + */ +/** + * @var {number/list} + * The margin of the header element. Used to add space around the header. + */ +/** + * @var {number} + * The font-size of the header + */ +/** + * @var {number} + * The font-weight of the header + */ +/** + * @var {number} + * The font-family of the header + */ +/** + * @var {number} + * The line-height of the header + */ +/** + * @var {number} + * The text color of the header + */ +/** + * @var {number} + * The padding of the header + */ +/** + * @var {number} + * The background-color of the header + */ +/** + * @var {number} + * The border-spacing to use on the table layout element + */ +/** + * @var {number} + * The background-color of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of framed ButtonGroups + */ +/** + * @var {string} + * Sprite image to use for header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" button group UI + */ +/** + * @var {boolean} + * True to include the "default-framed" button group UI + */ +/** + * @class Ext.window.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 + */ +/** + * @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 {color} + * The text color of toolbar field labels + */ +/** + * @var {string} + * The font-weight of toolbar field labels + */ +/** + * @var {number} + * The font-size of toolbar field labels + */ +/** + * @var {string} + * The font-family of toolbar field labels + */ +/** + * @var {number} + * The line-height of toolbar field labels + */ +/** + * @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 {measurement} $form-item-margin-bottom + * The bottom margin to apply to form items when in auto, anchor, vbox, or table layout + */ +/** + * @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 {font} $form-field-font + * Font 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 {font} $form-toolbar-field-font + * Font 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. + */ +/** + * @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 {number} $form-field-disabled-opacity + */ +/** + * @class Ext.form.field.TextArea + */ +/** + * @var {number/string} + * The line-height to use for the TextArea's text + */ +/** + * @class Ext.form.field.Display + */ +/** + * @var {color} + * The text color of display fields + */ +/** + * @var {string} + * The font-weight of display fields + */ +/** + * @var {number} + * The font-size of display fields + */ +/** + * @var {string} + * The font-family of display fields + */ +/** + * @var {number} + * The line-height of display fields + */ +/** + * @var {string} + * The font-weight of toolbar display fields + */ +/** + * @var {number} + * The font-size of toolbar display fields + */ +/** + * @var {string} + * The font-family of toolbar display fields + */ +/** + * @var {number} + * The line-height of toolbar display fields + */ +/** + * @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 + */ +/** + * @class Ext.form.field.Checkbox + */ +/** + * @var {number} + * The size of the checkbox + */ +/** + * @var {number} + * The space between the boxLabel and the checkbox. + */ +/** + * @class Ext.form.CheckboxGroup + */ +/** + * @var {number/list} + * The padding of the CheckboxGroup body element + */ +/** + * @var {color} + * The text color of the CheckboxGroup label + */ +/** + * @var {number} + * The padding of the CheckboxGroup label + */ +/** + * @var {number} + * The margin of the CheckboxGroup label + */ +/** + * @var {number} + * The border-width of the CheckboxGroup label + */ +/** + * @var {number} + * The border-style of the CheckboxGroup label + */ +/** + * @var {number} + * The border-color of the CheckboxGroup label + */ +/** + * @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/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/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 {number/list} + * The margin to apply to the FieldSet's checkbox (for FieldSets that use + * {@link #checkboxToggle}) + */ +/** + * @var {number} + * The size of the FieldSet's collapse tool + */ +/** + * @var {string} $fieldset-collapse-tool-background-image + * The background-image to use for the collapse tool. If null the default tool + * sprite will be used. Defaults to null. + */ +/** + * @class Ext.form.field.Radio + */ +/** + * @var {number} + * The size of the radio button + */ +/** + * @class Ext.form.field.Trigger + */ +/** + * @var {number} + * The width of the Trigger field's trigger element + */ +/** + * @var {number/list} + * The width of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border + */ +/** + * @var {string} + * The style of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border when hovered + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused and the trigger is hovered + */ +/** + * @class Ext.form.field.Spinner + */ +/** + * @var {number} + * The height of the Spinner trigger buttons + */ +/** + * @var {number} + * The height of the Spinner trigger buttons when the Spinner is used on a + * {@link Ext.toolbar.Toolbar Toolbar} + */ +/** + * @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 {number/list} + * The padding of BoundList items + */ +/** + * @var {number} + * The border-width of BoundList items + */ +/** + * @var {string} + * The border-style of BoundList items + */ +/** + * @var {color} + * The border-color of BoundList items + */ +/** + * @var {color} + * The border-color of hovered BoundList items + */ +/** + * @var {color} + * The border-color of selected BoundList items + */ +/** + * @var {color} + * The background-color of hovered BoundList items + */ +/** + * @var {color} + * The background-color of selected BoundList items + */ +/** + * @class Ext.picker.Date + */ +/** + * @var {number} + * The border-width of the DatePicker + */ +/** + * @var {string} + * The border-style of the DatePicker + */ +/** + * @var {color} + * The background-color of the DatePicker + */ +/** + * @var {string} + * The background-image of the DatePicker next arrow + */ +/** + * @var {string} + * The background-image of the DatePicker previous arrow + */ +/** + * @var {number} + * The width of DatePicker arrows + */ +/** + * @var {number} + * The height of DatePicker arrows + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a DatePicker arrow + */ +/** + * @var {number} + * The opacity of the DatePicker arrows + */ +/** + * @var {number} + * The opacity of the DatePicker arrows when hovered + */ +/** + * @var {string/list} + * The Date Picker header background gradient. Can be either the name of a predefined gradient + * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the Date Picker header + */ +/** + * @var {color} + * The color of the Date Picker month button + */ +/** + * @var {number} + * The width of the arrow on the Date Picker month button + */ +/** + * @var {string} + * The background-image of the arrow on the Date Picker month button + */ +/** + * @var {boolean} + * True to render the month button as transparent + */ +/** + * @var {string} + * The text-align of the Date Picker header + */ +/** + * @var {number} + * The height of Date Picker items + */ +/** + * @var {number} + * The width of Date Picker items + */ +/** + * @var {number/list} + * The padding of Date Picker items + */ +/** + * @var {string} + * The font-family of Date Picker items + */ +/** + * @var {number} + * The font-size of Date Picker items + */ +/** + * @var {string} + * The font-weight of Date Picker items + */ +/** + * @var {string} + * The text-align of Date Picker items + */ +/** + * @var {color} + * The text color of Date Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Date Picker item + */ +/** + * @var {string} + * The font-family of Date Picker column headers + */ +/** + * @var {number} + * The font-size of Date Picker column headers + */ +/** + * @var {string} + * The font-weight of Date Picker column headers + */ +/** + * @var {string/list} + * The background-gradient of Date Picker column headers. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {string} + * The border-style of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker column headers + */ +/** + * @var {string} + * The text-align of Date Picker column headers + */ +/** + * @var {number} + * The height of Date Picker column headers + */ +/** + * @var {number/list} + * The padding of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker items + */ +/** + * @var {string} + * The border-style of Date Picker items + */ +/** + * @var {color} + * The border-color of Date Picker items + */ +/** + * @var {string} + * The border-style of today's date on the Date Picker + */ +/** + * @var {string} + * The border-style of the selected item + */ +/** + * @var {string} + * The font-weight of the selected item + */ +/** + * @var {color} + * The text color of the items in the previous and next months + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a disabled item + */ +/** + * @var {color} + * The text color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of the Date Picker footer + */ +/** + * @var {string/list} + * The background-gradient of the Date Picker footer. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The border-width of the Date Picker footer + */ +/** + * @var {string} + * The border-style of the Date Picker footer + */ +/** + * @var {string} + * The text-align of the Date Picker footer + */ +/** + * @var {number/list} + * The padding of the Date Picker footer + */ +/** + * @var {number} + * The space between the footer buttons + */ +/** + * @var {color} + * The border-color of the Month Picker + */ +/** + * @var {number} + * The border-width of the Month Picker + */ +/** + * @var {string} + * The border-style of the Month Picker + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The border-color of Month Picker items + */ +/** + * @var {string} + * The border-style of Month Picker items + */ +/** + * @var {string} + * The font-family of Month Picker items + */ +/** + * @var {number} + * The font-size of Month Picker items + */ +/** + * @var {string} + * The font-weight of Month Picker items + */ +/** + * @var {number/list} + * The margin of Month Picker items + */ +/** + * @var {string} + * The text-align of Month Picker items + */ +/** + * @var {number} + * The height of Month Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker item + */ +/** + * @var {color} + * The background-color of hovered Month Picker items + */ +/** + * @var {color} + * The background-color of selected Month Picker items + */ +/** + * @var {string} + * The border-style of selected Month Picker items + */ +/** + * @var {color} + * The border-color of selected Month Picker items + */ +/** + * @var {number} + * The height of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The width of the Month Picker year navigation buttons + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker year navigation button + */ +/** + * @var {number} + * The opacity of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The opacity of hovered Month Picker year navigation buttons + */ +/** + * @var {string} + * The background-image of the Month Picker next year navigation button + */ +/** + * @var {string} + * The background-image of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker previous year navigation button + */ +/** + * @var {string} + * The border-style of the Month Picker separator + */ +/** + * @var {number} + * The border-width of the Month Picker separator + */ +/** + * @var {color} + * The border-color of the Month Picker separator + */ +/** + * @var {number/list} + * The margin of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @var {number} + * The height of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @class Ext.picker.Color + */ +/** + * @var {color} + * The background-color of Color Pickers + */ +/** + * @var {color} + * The border-color of Color Pickers + */ +/** + * @var {number} + * The border-width of Color Pickers + */ +/** + * @var {string} + * The border-style of Color Pickers + */ +/** + * @var {number} + * The number of columns to display in the Color Picker + */ +/** + * @var {number} + * The number of rows to display in the Color Picker + */ +/** + * @var {number} + * The height of each Color Picker item + */ +/** + * @var {number} + * The width of each Color Picker item + */ +/** + * @var {number} + * The padding of each Color Picker item + */ +/** + * @var {string} + * The cursor to display when the mouse is over a Color Picker item + */ +/** + * @var {color} + * The border-color of Color Picker items + */ +/** + * @var {number} + * The border-width of Color Picker items + */ +/** + * @var {string} + * The border-style of Color Picker items + */ +/** + * @var {color} + * The border-color of hovered Color Picker items + */ +/** + * @var {color} + * The background-color of Color Picker items + */ +/** + * @var {color} + * The background-color of hovered Color Picker items + */ +/** + * @var {color} + * The border-color of the selected Color Picker item + */ +/** + * @var {color} + * The background-color of the selected Color Picker item + */ +/** + * @var {color} + * The inner border-color of Color Picker items + */ +/** + * @var {number} + * The inner border-width of Color Picker items + */ +/** + * @var {string} + * The inner border-style of Color Picker items + */ +/** + * @class Ext.form.field.HtmlEditor + */ +/** + * @var {number} + * The border-width of the HtmlEditor + */ +/** + * @var {color} + * The border-color of the HtmlEditor + */ +/** + * @var {color} + * The background-color of the HtmlEditor + */ +/** + * @var {number} + * The size of the HtmlEditor toolbar icons + */ +/** + * @var {number} + * The font-size of the HtmlEditor's font selection control + */ +/** + * @var {number} + * The font-family of the HtmlEditor's font selection control + */ +/** + * @class Ext.panel.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} $grid-row-cell-line-height + * 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 {color} + * The border-color of the focused row + */ +/** + * @var {string} + * The border-style of the focused row + */ +/** + * @var {color} + * The text color of the focused row + */ +/** + * @var {color} + * The background-color of the focused row + */ +/** + * @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.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 {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 + */ +/** + * @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.CheckColumn + */ +/** + * @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.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.grid.feature.RowWrap + */ +/** + * @var {color} + * The border-color of wrapped rows + */ +/** + * @var {string} + * The border-style of wrapped rows + */ +/** + * @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 + */ +/** + * @class Ext.grid.plugin.Editing + */ +/** + * The height of grid editor text fields. 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 caluclated by adding $grid-row-cell-line-height to the top and bottom values of + * $grid-cell-inner-padding. + */ +/** + * The padding of grid editor text fields. + */ +/** + * @var {number} + * The font size of the grid editor text + */ +/** + * @var {string} + * The font-weight of the grid editor text + */ +/** + * @var {string} + * The font-family of the grid editor text + */ +/** + * @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 {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 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 {string} + * The text-transform property of Accordion headers + */ +/** + * @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.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 {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. + */ +/** + * @class Ext.layout.container.Border + */ +/** + * @var {color} + * The background-color of the Border layout element + */ +/** + * @class Ext.menu.Menu + */ +/** + * @var {color} + * The background-color of the 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 {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} + * The font-size of {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The margin 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 {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 {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {list} + * The background-position of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} text + */ +/** + * @var {number/list} + * The margin of {@link Ext.menu.Separator Menu Separators} + */ +/** + * @var {number} + * The padding to the right of {@link Ext.menu.CheckItem Check Items}, to make room + * for the checkbox + */ +/** + * @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 space to the left and right of {@link Ext.menu.Item Menu Item} arrows + */ +/** + * @var {number} + * The opacity of disabled {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The height of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers when hovered + */ +/** + * @var {number} + * The opacity of Menu crollers when pressed + */ +/** + * @var {number/list} + * The padding to apply to the Menu body element + */ +/** + * @var {color} + * The color of Menu Item text + */ +/** + * @var {number/list} + * The margin non-MenuItems placed in a Menu + */ +/** + * @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} + */ +/** + * @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.slider.Multi + */ +/** + * @var {number} + * The horizontal slider thumb width + */ +/** + * @var {number} + * The horizontal slider thumb height + */ +/** + * @var {number} + * The width of the horizontal slider end caps + */ +/** + * @var {number} + * The vertical slider thumb width + */ +/** + * @var {number} + * The vertical slider thumb height + */ +/** + * @var {number} + * The height of the vertical slider end caps + */ +/** + * @class Ext.tab.Tab + */ +/** + * @var {color} + * The base color of Tabs + */ +/** + * @var {color} + * The base color of hovered Tabs + */ +/** + * @var {color} + * The base color of the active Tabs + */ +/** + * @var {color} + * The base color of disabled Tabs + */ +/** + * @var {color} + * The text color of Tabs + */ +/** + * @var {color} + * The text color of hovered Tabs + */ +/** + * @var {color} + * The text color of the active Tab + */ +/** + * @var {color} + * The text color of disabled Tabs + */ +/** + * @var {number} + * The font-size of Tabs + */ +/** + * @var {number} + * The font-size of hovered Tabs + */ +/** + * @var {number} + * The font-size of the active Tab + */ +/** + * @var {number} + * The font-size of disabled Tabs + */ +/** + * @var {string} + * The font-family of Tabs + */ +/** + * @var {string} + * The font-family of hovered Tabs + */ +/** + * @var {string} + * The font-family of the active Tab + */ +/** + * @var {string} + * The font-family of disabled Tabs + */ +/** + * @var {string} + * The font-weight of Tabs + */ +/** + * @var {string} + * The font-weight of hovered Tabs + */ +/** + * @var {string} + * The font-weight of the active Tab + */ +/** + * @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 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 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} + * The border-width of Tabs + */ +/** + * @var {number/list} + * The inner border-width of Tabs + */ +/** + * @var {color} + * The inner border-color of Tabs + */ +/** + * @var {color} + * The border-color of Tabs + */ +/** + * @var {color} + * The border-color of hovered Tabs + */ +/** + * @var {color} + * The border-color of the active Tab + */ +/** + * @var {color} + * The border-color of disabled Tabs + */ +/** + * @var {number/list} + * The padding of Tabs + */ +/** + * @var {number/list} + * The padding of the Tab's text element + */ +/** + * @var {number} + * The line-height of Tabs + */ +/** + * @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 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 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 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 {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a left-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `left`. + */ +/** + * @var {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a right-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `right`. + */ +/** + * @var {boolean} + * True to include the "default" tab UI + */ +/** + * @class Ext.tab.Bar + */ +/** + * @var {number/list} + * The padding of the Tab Bar + */ +/** + * @var {number/list} + * The padding of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} Tab Bar strip + */ +/** + * @var {number} + * The width of the Tab Bar scrollers + */ +/** + * @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 change the x postition of the background image on hover to allow for a + * horizonatlly alined background image sprite + */ +/** + * @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.selection.CheckboxModel + */ +/** + * @var {number} + * The horizontal space before the checkbox + */ +/** + * @var {number} + * The horizontal space after the checkbox + */ +/** + * @class Ext.tree.Panel + */ +/** + * @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 + */ +/* 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 + */ +/** + * @var {boolean} $include-content-box + * True to include rules for browsers that do not support the border-box model + * (IE6 strict and IE7 strict) + */ +/** + * @var {boolean} $include-ff + * True to include Firefox specific rules + */ +/** + * @var {boolean} $include-chrome + * True to include Chrome specific rules + */ +/** + * @var {boolean} $include-safari + * True to include Safari specific rules + */ +/** + * @var {boolean} $include-opera + * True to include Opera specific rules + */ +/** + * @var {boolean} $include-webkit + * True to include Webkit specific rules + */ +/** + * @var {measurement} $css-shadow-border-radius + * The border radius for CSS shadows + */ +/** + * @var {color} $include-shadow-images + * True to include all shadow images. + */ +/** + * @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 {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. + */ +/* including package ext-theme-base */ +/* + * 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 + */ +/* line 1, ../../../ext-theme-base/sass/src/Component.scss */ +.x-body { + margin: 0; +} + +/* line 5, ../../../ext-theme-base/sass/src/Component.scss */ +img { + border: 0; +} + +/* line 10, ../../../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 17, ../../../ext-theme-base/sass/src/Component.scss */ +.x-rtl { + direction: rtl; +} + +/* line 21, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ltr { + direction: ltr; +} + +/* line 25, ../../../ext-theme-base/sass/src/Component.scss */ +.x-clear { + overflow: hidden; + clear: both; + font-size: 0; + line-height: 0; + display: table; +} + +/* line 33, ../../../ext-theme-base/sass/src/Component.scss */ +.x-strict .x-ie7 .x-clear { + height: 0; + width: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/Component.scss */ +.x-layer { + position: absolute !important; + overflow: hidden; + zoom: 1; +} + +/* line 49, ../../../ext-theme-base/sass/src/Component.scss */ +.x-fixed-layer { + position: fixed !important; + overflow: hidden; + zoom: 1; +} + +/* line 55, ../../../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 63, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-display { + display: none !important; +} + +/* line 67, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-visibility { + visibility: hidden !important; +} + +/* line 72, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ie6 .x-item-disabled { + filter: none; +} + +/* line 78, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hidden, +.x-hide-offsets { + display: block !important; + visibility: hidden !important; + position: absolute !important; + top: -10000px !important; +} + +/* line 88, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-nosize { + height: 0 !important; + width: 0 !important; +} + +/* line 94, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-clip { + position: absolute!important; + clip: rect(0, 0, 0, 0); + clip: rect(0 0 0 0); +} + +/* line 102, ../../../ext-theme-base/sass/src/Component.scss */ +.x-masked-relative { + position: relative; +} + +/* line 108, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ie-shadow { + background-color: #777; + display: none; + position: absolute; + overflow: hidden; + zoom: 1; +} + +/* line 117, ../../../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; + cursor: default; +} + +/* line 121, ../../../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 136, ../../../ext-theme-base/sass/src/Component.scss */ +.x-list-plain { + list-style-type: none; + margin: 0; + padding: 0; +} + +/* line 143, ../../../ext-theme-base/sass/src/Component.scss */ +.x-table-plain { + border-collapse: collapse; + border-spacing: 0; + font-size: 1em; +} + +/* line 156, ../../../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 162, ../../../ext-theme-base/sass/src/Component.scss */ +.x-frame-tc, +.x-frame-bc { + background-repeat: repeat-x; +} + +/* line 166, ../../../ext-theme-base/sass/src/Component.scss */ +.x-frame-mc { + background-repeat: repeat-x; + overflow: hidden; +} + +/* line 171, ../../../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 178, ../../../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 184, ../../../ext-theme-base/sass/src/Component.scss */ +.x-item-disabled, +.x-item-disabled * { + cursor: default; +} + +/* line 3, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x-box-item { + position: absolute !important; + left: 0; + top: 0; +} + +/* line 10, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x-rtl > .x-box-item { + right: 0; + left: auto; +} + +/* line 20, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x-ie6 .x-rtl .x-box-item, +.x-quirks .x-ie .x-rtl .x-box-item { + right: 0; + left: auto; +} + +/* line 4, ../../../ext-theme-base/sass/src/Editor.scss */ +div.x-editor { + overflow: visible; +} + +/* line 1, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask { + z-index: 100; + position: absolute; + width: 100%; + height: 100%; + zoom: 1; +} + +/* line 10, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask-shim { + z-index: 100; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +/* line 20, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask-msg { + z-index: 20001; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress { + position: relative; + border-style: solid; + overflow: hidden; +} + +/* line 7, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress-bar { + overflow: hidden; + position: absolute; + width: 0; + height: 100%; +} + +/* line 14, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress-text { + overflow: hidden; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn { + display: inline-block; + position: relative; + zoom: 1; + *display: inline; + outline: 0; + cursor: pointer; + white-space: nowrap; + vertical-align: middle; + text-decoration: none; +} + +/* line 15, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-wrap { + position: relative; + display: block; +} + +/* line 20, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-button { + position: relative; + display: block; + text-decoration: none; + overflow: hidden; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner { + display: block; + white-space: nowrap; + overflow: hidden; + zoom: 1; +} + +/* line 35, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 45, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-center { + text-align: center; +} + +/* line 49, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-left { + text-align: left; +} + +/* line 54, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-rtl.x-btn-inner-left { + text-align: right; +} + +/* line 59, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-right { + text-align: right; +} + +/* line 64, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-rtl.x-btn-inner-right { + text-align: left; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-target { + position: absolute; + width: 20000px; + top: 0; + left: 0; + height: 1px; +} + +/* line 25, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-rtl.x-box-target { + left: auto; + right: 0; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-inner { + overflow: hidden; + zoom: 1; + position: relative; + left: 0; + top: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-horizontal-box-overflow-body { + float: left; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller { + position: relative; + background-repeat: no-repeat; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller-left, +.x-box-scroller-right { + float: left; + height: 100%; + z-index: 5; +} + +/* line 59, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller-top .x-box-scroller, +.x-box-scroller-bottom .x-box-scroller { + line-height: 0; + font-size: 0; + background-position: center 0; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-menu-after { + float: right; +} + +/* line 71, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-rtl.x-box-menu-after { + float: left; +} + +/* line 1, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-text { + white-space: nowrap; +} + +/* line 5, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-separator { + display: block; + font-size: 1px; + overflow: hidden; + cursor: default; + border: 0; + width: 0; + height: 0; + line-height: 0px; +} + +/* line 17, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal { + width: 2px; +} + +/* line 22, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroller { + padding-left: 0; +} + +/* line 29, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-plain { + border: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked { + position: absolute !important; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-vertical { + position: static; +} + +/* line 11, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-top { + border-bottom-width: 0 !important; +} + +/* line 15, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-bottom { + border-top-width: 0 !important; +} + +/* line 19, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-left { + border-right-width: 0 !important; +} + +/* line 23, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-right { + border-left-width: 0 !important; +} + +/* line 27, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-top { + border-top-width: 0 !important; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-right { + border-right-width: 0 !important; +} + +/* line 35, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-bottom { + border-bottom-width: 0 !important; +} + +/* line 39, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-left { + border-left-width: 0 !important; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-l { + border-left-width: 0 !important; +} + +/* line 48, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-b { + border-bottom-width: 0 !important; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-bl { + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 55, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-r { + border-right-width: 0 !important; +} + +/* line 58, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rl { + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 62, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rb { + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rbl { + border-right-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 71, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-t { + border-top-width: 0 !important; +} + +/* line 74, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tl { + border-top-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 78, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tb { + border-top-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 82, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tbl { + border-top-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 87, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tr { + border-top-width: 0 !important; + border-right-width: 0 !important; +} + +/* line 91, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trl { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 96, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trb { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 101, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trbl { + border-width: 0 !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-header-icon { + background-repeat: no-repeat; + background-position: 0 0; + vertical-align: middle; + text-align: center; +} + +/* line 8, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-header-text-container { + overflow: hidden; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +/* line 15, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-rtl.x-header-text-container { + -o-text-overflow: clip; + text-overflow: clip; +} + +/* line 4, ../../../ext-theme-base/sass/src/dd/DD.scss */ +.x-dd-drag-proxy, +.x-dd-drag-current { + z-index: 1000000!important; + pointer-events: none; +} + +/* line 2, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-repair .x-dd-drag-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 6, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-repair .x-dd-drop-icon { + display: none; +} + +/* line 11, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85); + opacity: 0.85; + padding: 5px; + padding-left: 20px; + white-space: nowrap; + color: #000; + font: normal 14px tahoma, arial, verdana, sans-serif; + border: 1px solid; + border-color: #ddd #bbb #bbb #ddd; + background-color: #fff; +} + +/* line 28, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-icon { + position: absolute; + top: 3px; + left: 3px; + display: block; + width: 16px; + height: 16px; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + z-index: 1; +} + +/* line 51, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-rtl .x-dd-drag-ghost { + padding-left: 5px; + padding-right: 20px; +} +/* line 55, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-rtl .x-dd-drop-icon { + left: auto; + right: 3px; +} + +/* line 66, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-ok .x-dd-drop-icon { + background-image: url(images/dd/drop-yes.gif); +} + +/* line 70, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-ok-add .x-dd-drop-icon { + background-image: url(images/dd/drop-add.gif); +} + +/* line 75, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-nodrop div.x-dd-drop-icon { + background-image: url(images/dd/drop-no.gif); +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel, +.x-plain { + overflow: hidden; + position: relative; +} + +/* line 7, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel { + outline: none; +} + +/* line 23, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-ie .x-panel-header, +.x-ie .x-panel-header-tl, +.x-ie .x-panel-header-tc, +.x-ie .x-panel-header-tr, +.x-ie .x-panel-header-ml, +.x-ie .x-panel-header-mc, +.x-ie .x-panel-header-mr, +.x-ie .x-panel-header-bl, +.x-ie .x-panel-header-bc, +.x-ie .x-panel-header-br { + zoom: 1; +} + +/* line 29, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-ie8 td.x-frame-mc { + vertical-align: top; +} + +/* line 35, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel-body { + overflow: hidden; + position: relative; +} + +/* line 42, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-vertical .x-frame-mc { + background-repeat: repeat-y; +} + +/* line 49, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel-header-plain, +.x-panel-body-plain { + border: 0; + padding: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip { + position: absolute; + overflow: visible; + /*pointer needs to be able to stick out*/ +} + +/* line 6, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip-body { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip-anchor { + position: absolute; + overflow: hidden; + border-style: solid; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Table.scss */ +.x-table-layout { + font-size: 1em; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group { + position: relative; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body { + position: relative; + zoom: 1; +} +/* line 9, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body .x-table-layout-cell { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/Viewport.scss */ +.x-viewport, .x-viewport body { + margin: 0; + padding: 0; + border: 0 none; + overflow: hidden; + height: 100%; + position: static; +} + +/* line 1, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window { + outline: none; + overflow: hidden; +} +/* line 5, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window .x-window-wrap { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window-body { + position: relative; + overflow: hidden; +} + +/* line 15, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window-body-plain { + background: transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label { + display: block; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label-right { + text-align: right; +} + +/* line 9, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label-top { + display: block; + zoom: 1; +} + +/* line 15, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-invalid-icon { + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-invalid-icon ul { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x-form-textarea { + overflow: auto; + resize: none; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x-safari.x-mac .x-form-textarea { + margin-bottom: -2px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Display.scss */ +.x-form-display-field-body { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb-wrap { + vertical-align: top; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb { + vertical-align: top; + overflow: hidden; + padding: 0; + border: 0; +} +/* line 10, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb::-moz-focus-inner { + padding: 0; + border: 0; +} + +/* line 16, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label { + display: inline-block; + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset { + display: block; + /* preserve margins in IE */ + position: relative; +} + +/* line 6, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header { + overflow: hidden; +} +/* line 10, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-item, +.x-fieldset-header .x-tool { + float: left; +} +/* line 14, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb-wrap { + font-size: 0; + line-height: 0; +} +/* line 19, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb { + margin: 0; +} + +/* line 27, ../../../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 33, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text { + float: left; +} + +/*misc*/ +/* line 4, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-webkit *:focus { + outline: none !important; +} + +/* line 11, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-item { + vertical-align: top; + table-layout: fixed; +} + +/* line 17, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-item-body { + position: relative; +} + +/* line 26, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-rtl.x-form-item .x-form-item-input-row { + position: relative; + right: 0; +} + +/* line 33, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-form-item td { + border-top: 1px solid transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + cursor: pointer; + overflow: hidden; + background-repeat: no-repeat; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-item-disabled .x-form-trigger { + cursor: default; +} + +/* line 10, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-trigger-noedit { + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap { + vertical-align: top; + border-collapse: separate; +} + +/* line 2, ../../../ext-theme-base/sass/src/form/field/Spinner.scss */ +.x-form-spinner-up, +.x-form-spinner-down { + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-inner { + table-layout: fixed; + width: 100%; + border-collapse: separate; +} + +/* line 11, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-cell { + padding: 0; +} + +/* line 15, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-header { + position: relative; + zoom: 1; +} + +/* line 20, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-arrow { + position: absolute; + outline: none; + font-size: 0; +} + +/* line 26, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-column-header { + padding: 0; +} + +/* line 30, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-date { + display: block; + zoom: 1; + text-decoration: none; +} + +/* line 36, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker { + position: absolute; + left: 0; + top: 0; +} + +/* line 42, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-body { + height: 100%; +} + +/* line 47, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-months, +.x-monthpicker-years { + float: left; + height: 100%; +} + +/* line 52, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-item { + float: left; +} + +/* line 56, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-item-inner { + display: block; + text-decoration: none; +} + +/* line 61, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button-ct { + float: left; + text-align: center; +} + +/* line 66, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button { + display: inline-block; + outline: none; + font-size: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-buttons { + position: absolute; + bottom: 0; + width: 100%; +} +/* line 78, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-strict .x-ie6 .x-monthpicker-buttons { + bottom: -1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/File.scss */ +.x-form-file-btn { + overflow: hidden; +} + +/* line 5, ../../../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 29, ../../../ext-theme-base/sass/src/form/field/File.scss */ +.x-rtl.x-form-file-input { + right: auto; + left: -2px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Hidden.scss */ +.x-form-item-hidden { + margin: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x-color-picker-item { + float: left; + text-decoration: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x-color-picker-item-inner { + display: block; + font-size: 1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-toolbar { + position: static !important; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x-htmleditor-iframe { + display: block; + overflow: auto; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Fit.scss */ +.x-fit-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-row, +.x-grid-data-row { + outline: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-view { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-table { + table-layout: fixed; + border-collapse: separate; +} + +/* line 16, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-td { + overflow: hidden; + border-width: 0; + vertical-align: top; +} + +/* line 22, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-cell-inner { + overflow: hidden; + white-space: nowrap; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-resize-marker { + position: absolute; + z-index: 5; + top: 0; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + position: absolute; + top: 0; + line-height: 0; + font-size: 0; + overflow: hidden; + z-index: 20000; + background: no-repeat center top transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/header/Container.scss */ +.x-grid-header-ct { + cursor: default; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header { + position: absolute; + overflow: hidden; + background-repeat: repeat-x; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-inner { + zoom: 1; + white-space: nowrap; + position: relative; + overflow: hidden; +} + +/* line 14, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-text { + white-space: nowrap; + background-repeat: no-repeat; + zoom: 1; + display: inline-block; +} + +/* line 25, ../../../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 36, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-trigger { + left: 0; + right: auto; +} + +/* line 43, ../../../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 48, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-right { + text-align: right; +} + +/* line 53, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-align-right { + text-align: left; +} + +/* line 58, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-left { + text-align: left; +} + +/* line 63, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-align-left { + text-align: right; +} + +/* line 68, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-center { + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Action.scss */ +.x-grid-cell-inner-action-col { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/CheckColumn.scss */ +.x-grid-cell-inner-checkcolumn { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/RowNumberer.scss */ +.x-row-numberer .x-column-header-inner { + text-overflow: clip; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-group, +.x-grid-group-body, +.x-grid-group-hd { + zoom: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd { + white-space: nowrap; +} + +/* line 11, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-row-body-hidden, .x-grid-group-collapsed { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x-grid-rowbody { + zoom: 1; +} + +/* line 5, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x-grid-row-body-hidden { + display: none; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x-grid-rowwrap .x-grid-table { + border: 0; +} +/* line 6, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x-grid-rowwrap .x-grid-cell { + border-bottom: 0; + background-color: transparent; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb-wrap { + text-align: center; +} + +/* line 9, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field { + margin: 0; + white-space: nowrap; + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor div.x-form-action-col-field { + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor { + position: absolute; + overflow: visible; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons { + position: absolute; + white-space: nowrap; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-expander { + font-size: 0; + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x-abs-layout-ct { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x-abs-layout-item { + position: absolute !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter { + font-size: 1px; +} + +/* line 5, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-horizontal { + cursor: e-resize; + cursor: row-resize; +} + +/* line 10, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-vertical { + cursor: e-resize; + cursor: col-resize; +} + +/* line 17, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed, +.x-splitter-horizontal-noresize, +.x-splitter-vertical-noresize { + cursor: default; +} + +/* line 21, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-active { + z-index: 4; +} + +/* line 25, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-collapse-el { + position: absolute; + background-repeat: no-repeat; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-region-slide-in { + z-index: 5; +} + +/* line 14, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-region-collapsed-placeholder { + z-index: 4; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-column { + float: left; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-rtl > .x-column { + float: right; +} + +/* line 13, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-ie6 .x-rtl .x-column, .x-quirks .x-ie .x-rtl .x-column { + float: right; +} + +/* line 21, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-ie6 .x-column { + display: inline; + /*prevent IE6 double-margin bug*/ +} + +/* line 25, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-quirks .x-ie .x-form-layout-table, .x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x-form-layout-table { + border-collapse: separate; + border-spacing: 0 2px; +} + +/* line 9, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x-ie6 .x-form-layout-table { + border-collapse: collapse; + border-spacing: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu { + outline: none; +} + +/* line 5, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item { + white-space: nowrap; + overflow: hidden; +} + +/* line 14, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-cmp .x-field-label-cell { + vertical-align: middle; +} + +/* line 22, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-icon-separator { + position: absolute; + top: 0px; + z-index: 0; + height: 100%; + overflow: hidden; +} +/* line 28, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-plain .x-menu-icon-separator { + display: none; +} + +/* line 33, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-link { + text-decoration: none; + outline: 0; + zoom: 1; +} + +/* line 40, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-text { + zoom: 1; +} + +/* line 47, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-icon, +.x-menu-item-icon-right, +.x-menu-item-arrow { + position: absolute; + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/SplitterTracker.scss */ +.x-resizable-overlay { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + display: none; + z-index: 200000; + background-color: #fff; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider { + outline: none; + zoom: 1; + position: relative; +} + +/* line 9, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-inner { + position: relative; + left: 0; + top: 0; + overflow: visible; + zoom: 1; +} +/* line 17, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-inner { + background: repeat-y 0 0; +} + +/* line 23, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-end { + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-thumb { + position: absolute; + background: no-repeat 0 0; +} +/* line 31, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb { + left: 0; +} +/* line 34, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb { + bottom: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Tab.scss */ +a.x-tab { + text-decoration: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Bar.scss */ +.x-tab-bar { + position: relative; +} + +/* line 1, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox .x-column-header-text { + display: block; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 7, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x-grid-cell-row-checker { + vertical-align: middle; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab { + display: block; + white-space: nowrap; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-active { + z-index: 3; +} + +/* line 11, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-wrap { + display: block; + position: relative; +} + +/* line 16, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-button { + zoom: 1; + display: block; + outline: none; +} + +/* line 22, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-inner { + display: block; + text-align: center; + white-space: nowrap; + text-overflow: ellipsis; + -o-text-overflow: ellipsis; + overflow: hidden; + zoom: 1; +} + +/* line 32, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 42, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar { + z-index: 1; +} + +/* line 46, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-body { + z-index: 2; + position: relative; +} + +/* line 51, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip { + position: absolute; + line-height: 0; + font-size: 0; + z-index: 1; +} + +/* line 58, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-horizontal .x-tab-bar-strip { + width: 100%; + left: 0; +} + +/* line 63, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-vertical .x-tab-bar-strip { + height: 100%; + top: 0; +} + +/* line 68, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-top { + bottom: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-bottom { + top: 0; +} + +/* line 76, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-left { + right: 0; +} + +/* line 81, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-rtl.x-tab-bar .x-tab-bar-strip-left { + right: auto; + left: 0; +} + +/* line 87, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-right { + left: 0; +} + +/* line 92, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-rtl.x-tab-bar .x-tab-bar-strip-right { + left: auto; + right: 0; +} + +/* line 98, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-plain { + background: transparent !important; +} + +/* line 102, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-icon-el { + position: absolute; + background-repeat: no-repeat; + top: 0; + left: 0; + right: auto; + bottom: 0; +} + +/* line 112, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-rtl.x-tab-icon-el { + left: auto; + right: 0; +} + +/* line 118, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-close-btn { + display: block; + position: absolute; + font-size: 0; + line-height: 0; + background: no-repeat; +} + +/* line 126, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-mc { + overflow: visible; +} + +/* line 3, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-autowidth-table .x-grid-table { + table-layout: auto; + width: auto !important; +} + +/* line 8, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-view { + overflow: hidden; +} + +/* line 13, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-elbow-img, +.x-tree-icon { + background-repeat: no-repeat; + background-position: 0 center; + vertical-align: top; +} + +/* line 19, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-checkbox { + border: 0; + padding: 0; + vertical-align: top; + position: relative; + background-color: transparent; +} + +/* line 27, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-animator-wrap { + overflow: hidden; +} + +/* line 31, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-node-text { + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-surface { + display: -moz-inline-stack; + display: inline-block; + vertical-align: middle; + *vertical-align: auto; + zoom: 1; + *display: inline; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.rvml { + behavior: url(#default#VML); +} + +/* line 10, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-surface tspan { + user-select: none; + -o-user-select: none; + -ms-user-select: none; + -moz-user-select: -moz-none; + -webkit-user-select: none; + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-sprite { + position: absolute; + left: 0; + top: 0; + width: 1px; + height: 1px; +} + +/* line 22, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-group { + position: absolute; + left: 0; + top: 0; + width: 1000px; + height: 1000px; +} + +/* line 30, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-measure-span { + position: absolute; + left: -9999em; + top: -9999em; + padding: 0; + margin: 0; + display: inline; +} + +/* line 39, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 47, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 55, ../../../ext-theme-base/sass/src/draw/Component.scss */ +svg, vml { + overflow: hidden; +} + +/* including package ext-theme-neutral */ +/* line 1, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x-body { + color: white; + font-size: 15px; + font-family: tahoma, arial, verdana, sans-serif; + background: black; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x-animating-size, +.x-collapsed { + overflow: hidden!important; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/Editor.scss */ +.x-editor .x-form-item-body { + padding-bottom: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-element { + position: absolute; + top: -10px; + left: -10px; + width: 0px; + height: 0px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame { + position: absolute; + left: 0px; + top: 0px; + z-index: 100000000; + width: 0px; + height: 0px; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-top, +.x-focus-frame-bottom, +.x-focus-frame-left, +.x-focus-frame-right { + position: absolute; + top: 0px; + left: 0px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-top, +.x-focus-frame-bottom { + border-top: solid 2px #15428b; + height: 2px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-left, +.x-focus-frame-right { + border-left: solid 2px #15428b; + width: 2px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + background: #cccccc; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg { + padding: 2px; + border-style: solid; + border-width: 1px; + border-color: #222233; + background-image: none; + background-color: #3f4757; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg-inner { + padding: 5px 10px; + border-style: solid; + border-width: 1px; + border-color: #555566; + background-color: #232d38; + color: white; + font: normal 14px tahoma, arial, verdana, sans-serif; +} + +/* line 41, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg-text { + padding: 5px 5px 5px 20px; +} + +/* line 52, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-rtl.x-mask-msg-text { + padding: 5px 20px 5px 5px; +} + +/** + * Creates a visual theme for an Ext.ProgressBar + * + * @param {string} $ui-label + * 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 67, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default { + background-color: #232d38; + border-width: 1px; + height: 20px; + border-color: #18181a; + /**/ + /**/ + /* */ +} +/* line 72, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-content-box .x-progress-default { + height: 18px; +} +/* line 84, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-bar-default { + background-image: none; + background-color: #ed9200; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffb43b), color-stop(50%, #ffa007), color-stop(51%, #ed9200), color-stop(100%, #d38200)); + background-image: -webkit-linear-gradient(top, #ffb43b, #ffa007 50%, #ed9200 51%, #d38200); + background-image: -moz-linear-gradient(top, #ffb43b, #ffa007 50%, #ed9200 51%, #d38200); + background-image: -o-linear-gradient(top, #ffb43b, #ffa007 50%, #ed9200 51%, #d38200); + background-image: linear-gradient(top, #ffb43b, #ffa007 50%, #ed9200 51%, #d38200); +} +/* line 92, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-nlg .x-progress-default .x-progress-bar-default { + background: repeat-x; + background-image: url(images/progress/progress-default-bg.gif); +} +/* line 99, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-text { + color: white; + font-weight: bold; + font-size: 14px; + text-align: center; + line-height: 18px; +} +/* line 107, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-text-back { + color: #aaaaaa; + line-height: 18px; +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-progress-default .x-progress-bar-default:after { + display: none; + content: "x-slicer:bg:url(images/progress/progress-default-bg.gif)"; +} + +/** + * Creates a visual theme for a 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-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-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-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-disabled + * The text color of the button when the button is disabled + * + * @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-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-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-disabled + * The font-family of the button when the button is disabled + * + * @param {number} $icon-size + * The size of the button icon + * + * @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=false] + * 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 + */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small { + border-color: #06070a; +} + +/* line 137, ../../../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: 2px 2px 2px 2px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #2a3142; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a3142), color-stop(48%, #252c3b), color-stop(52%, #13171f), color-stop(100%, #171b25)); + background-image: -webkit-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); + background-image: -moz-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); + background-image: -o-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); + background-image: linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mc { + background-image: url(images/btn/btn-default-small-fbg.gif); + background-position: 0 top; + background-color: #2a3142; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-small { + background-image: url(images/btn/btn-default-small-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tr, +.x-btn-default-small-br, +.x-btn-default-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl, +.x-btn-default-small-bl, +.x-btn-default-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl, +.x-btn-default-small-bl, +.x-btn-default-small-tr, +.x-btn-default-small-br, +.x-btn-default-small-tc, +.x-btn-default-small-bc, +.x-btn-default-small-ml, +.x-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-ml, +.x-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-small-tl, +.x-strict .x-ie7 .x-btn-default-small-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-inner { + font-size: 14px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: white; + padding: 0 4px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow-right { + padding-right: 14px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 14px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-glyph { + font-size: 16px; + line-height: 16px; + color: white; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-small .x-btn-glyph { + color: #9498a0; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled { + border-color: #565656; + background-image: none; + background-color: #6b6b6b; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6b6b6b), color-stop(48%, #656565), color-stop(52%, #4e4e4e), color-stop(100%, #535353)); + background-image: -webkit-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); + background-image: -moz-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); + background-image: -o-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); + background-image: linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-button, +.x-btn-default-small-noicon .x-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-inner, +.x-btn-default-small-noicon .x-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-small-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-small-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 4px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-inner { + line-height: 16px; + padding-left: 20px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-rtl.x-btn-inner { + padding-left: 4px; + padding-right: 20px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 20px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-small-icon-text-left .x-btn-icon-el { + height: 16px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-inner { + line-height: 16px; + padding-right: 20px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-rtl.x-btn-inner { + padding-right: 4px; + padding-left: 20px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-small-icon-text-right .x-btn-icon-el { + height: 16px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-top .x-btn-inner { + padding-top: 20px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-top .x-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-bottom .x-btn-inner { + padding-bottom: 20px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-bottom .x-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over { + border-color: #947518; + background-image: none; + background-color: #ed9200; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ed9200), color-stop(48%, #e29200), color-stop(52%, #9d7921), color-stop(100%, #ab821b)); + background-image: -webkit-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -moz-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -o-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus { + border-color: #947518; + background-image: none; + background-color: #ed9200; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ed9200), color-stop(48%, #e29200), color-stop(52%, #9d7921), color-stop(100%, #ab821b)); + background-image: -webkit-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -moz-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -o-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active, +.x-btn-default-small-pressed { + border-color: #c9750f; + background-image: none; + background-color: #da7b19; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #da7b19), color-stop(48%, #e17b1d), color-stop(52%, #db6800), color-stop(100%, #e66e00)); + background-image: -webkit-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); + background-image: -moz-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); + background-image: -o-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); + background-image: linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-tl, +.x-btn-default-small-over .x-frame-bl, +.x-btn-default-small-over .x-frame-tr, +.x-btn-default-small-over .x-frame-br, +.x-btn-default-small-over .x-frame-tc, +.x-btn-default-small-over .x-frame-bc { + background-image: url(images/btn/btn-default-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-ml, +.x-btn-default-small-over .x-frame-mr { + background-image: url(images/btn/btn-default-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-mc { + background-color: #ed9200; + background-image: url(images/btn/btn-default-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-tl, +.x-btn-default-small-focus .x-frame-bl, +.x-btn-default-small-focus .x-frame-tr, +.x-btn-default-small-focus .x-frame-br, +.x-btn-default-small-focus .x-frame-tc, +.x-btn-default-small-focus .x-frame-bc { + background-image: url(images/btn/btn-default-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-ml, +.x-btn-default-small-focus .x-frame-mr { + background-image: url(images/btn/btn-default-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-mc { + background-color: #ed9200; + background-image: url(images/btn/btn-default-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-tl, +.x-btn-default-small-menu-active .x-frame-bl, +.x-btn-default-small-menu-active .x-frame-tr, +.x-btn-default-small-menu-active .x-frame-br, +.x-btn-default-small-menu-active .x-frame-tc, +.x-btn-default-small-menu-active .x-frame-bc, +.x-btn-default-small-pressed .x-frame-tl, +.x-btn-default-small-pressed .x-frame-bl, +.x-btn-default-small-pressed .x-frame-tr, +.x-btn-default-small-pressed .x-frame-br, +.x-btn-default-small-pressed .x-frame-tc, +.x-btn-default-small-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-ml, +.x-btn-default-small-menu-active .x-frame-mr, +.x-btn-default-small-pressed .x-frame-ml, +.x-btn-default-small-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-mc, +.x-btn-default-small-pressed .x-frame-mc { + background-color: #da7b19; + background-image: url(images/btn/btn-default-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-tl, +.x-btn-default-small-disabled .x-frame-bl, +.x-btn-default-small-disabled .x-frame-tr, +.x-btn-default-small-disabled .x-frame-br, +.x-btn-default-small-disabled .x-frame-tc, +.x-btn-default-small-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-ml, +.x-btn-default-small-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-mc { + background-color: #6b6b6b; + background-image: url(images/btn/btn-default-small-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-over { + background-image: url(images/btn/btn-default-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-focus { + background-image: url(images/btn/btn-default-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-menu-active, +.x-nlg .x-btn-default-small-pressed { + background-image: url(images/btn/btn-default-small-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-disabled { + background-image: url(images/btn/btn-default-small-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 18px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-rtl.gif); + padding-right: 0; + padding-left: 18px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 16px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-btn-inner, +.x-btn-default-small-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium { + border-color: #06070a; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #2a3142; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a3142), color-stop(48%, #252c3b), color-stop(52%, #13171f), color-stop(100%, #171b25)); + background-image: -webkit-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); + background-image: -moz-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); + background-image: -o-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); + background-image: linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mc { + background-image: url(images/btn/btn-default-medium-fbg.gif); + background-position: 0 top; + background-color: #2a3142; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-medium { + background-image: url(images/btn/btn-default-medium-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tr, +.x-btn-default-medium-br, +.x-btn-default-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl, +.x-btn-default-medium-bl, +.x-btn-default-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl, +.x-btn-default-medium-bl, +.x-btn-default-medium-tr, +.x-btn-default-medium-br, +.x-btn-default-medium-tc, +.x-btn-default-medium-bc, +.x-btn-default-medium-ml, +.x-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-ml, +.x-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-medium-tl, +.x-strict .x-ie7 .x-btn-default-medium-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-inner { + font-size: 14px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: white; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow-right { + padding-right: 14px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 14px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-glyph { + font-size: 24px; + line-height: 24px; + color: white; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-medium .x-btn-glyph { + color: #9498a0; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled { + border-color: #565656; + background-image: none; + background-color: #6b6b6b; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6b6b6b), color-stop(48%, #656565), color-stop(52%, #4e4e4e), color-stop(100%, #535353)); + background-image: -webkit-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); + background-image: -moz-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); + background-image: -o-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); + background-image: linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-button, +.x-btn-default-medium-noicon .x-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-inner, +.x-btn-default-medium-noicon .x-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-medium-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-medium-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-inner { + line-height: 24px; + padding-left: 28px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-rtl.x-btn-inner { + padding-left: 3px; + padding-right: 28px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 28px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon-el { + height: 24px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-inner { + line-height: 24px; + padding-right: 28px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 28px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon-el { + height: 24px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-top .x-btn-inner { + padding-top: 28px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-top .x-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-bottom .x-btn-inner { + padding-bottom: 28px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-bottom .x-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over { + border-color: #947518; + background-image: none; + background-color: #ed9200; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ed9200), color-stop(48%, #e29200), color-stop(52%, #9d7921), color-stop(100%, #ab821b)); + background-image: -webkit-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -moz-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -o-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus { + border-color: #947518; + background-image: none; + background-color: #ed9200; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ed9200), color-stop(48%, #e29200), color-stop(52%, #9d7921), color-stop(100%, #ab821b)); + background-image: -webkit-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -moz-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -o-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active, +.x-btn-default-medium-pressed { + border-color: #c9750f; + background-image: none; + background-color: #da7b19; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #da7b19), color-stop(48%, #e17b1d), color-stop(52%, #db6800), color-stop(100%, #e66e00)); + background-image: -webkit-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); + background-image: -moz-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); + background-image: -o-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); + background-image: linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-tl, +.x-btn-default-medium-over .x-frame-bl, +.x-btn-default-medium-over .x-frame-tr, +.x-btn-default-medium-over .x-frame-br, +.x-btn-default-medium-over .x-frame-tc, +.x-btn-default-medium-over .x-frame-bc { + background-image: url(images/btn/btn-default-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-ml, +.x-btn-default-medium-over .x-frame-mr { + background-image: url(images/btn/btn-default-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-mc { + background-color: #ed9200; + background-image: url(images/btn/btn-default-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-tl, +.x-btn-default-medium-focus .x-frame-bl, +.x-btn-default-medium-focus .x-frame-tr, +.x-btn-default-medium-focus .x-frame-br, +.x-btn-default-medium-focus .x-frame-tc, +.x-btn-default-medium-focus .x-frame-bc { + background-image: url(images/btn/btn-default-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-ml, +.x-btn-default-medium-focus .x-frame-mr { + background-image: url(images/btn/btn-default-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-mc { + background-color: #ed9200; + background-image: url(images/btn/btn-default-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-tl, +.x-btn-default-medium-menu-active .x-frame-bl, +.x-btn-default-medium-menu-active .x-frame-tr, +.x-btn-default-medium-menu-active .x-frame-br, +.x-btn-default-medium-menu-active .x-frame-tc, +.x-btn-default-medium-menu-active .x-frame-bc, +.x-btn-default-medium-pressed .x-frame-tl, +.x-btn-default-medium-pressed .x-frame-bl, +.x-btn-default-medium-pressed .x-frame-tr, +.x-btn-default-medium-pressed .x-frame-br, +.x-btn-default-medium-pressed .x-frame-tc, +.x-btn-default-medium-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-ml, +.x-btn-default-medium-menu-active .x-frame-mr, +.x-btn-default-medium-pressed .x-frame-ml, +.x-btn-default-medium-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-mc, +.x-btn-default-medium-pressed .x-frame-mc { + background-color: #da7b19; + background-image: url(images/btn/btn-default-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-tl, +.x-btn-default-medium-disabled .x-frame-bl, +.x-btn-default-medium-disabled .x-frame-tr, +.x-btn-default-medium-disabled .x-frame-br, +.x-btn-default-medium-disabled .x-frame-tc, +.x-btn-default-medium-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-ml, +.x-btn-default-medium-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-mc { + background-color: #6b6b6b; + background-image: url(images/btn/btn-default-medium-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-over { + background-image: url(images/btn/btn-default-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-focus { + background-image: url(images/btn/btn-default-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-menu-active, +.x-nlg .x-btn-default-medium-pressed { + background-image: url(images/btn/btn-default-medium-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-disabled { + background-image: url(images/btn/btn-default-medium-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 18px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-rtl.gif); + padding-right: 0; + padding-left: 18px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 16px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-btn-inner, +.x-btn-default-medium-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large { + border-color: #06070a; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #2a3142; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a3142), color-stop(48%, #252c3b), color-stop(52%, #13171f), color-stop(100%, #171b25)); + background-image: -webkit-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); + background-image: -moz-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); + background-image: -o-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); + background-image: linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mc { + background-image: url(images/btn/btn-default-large-fbg.gif); + background-position: 0 top; + background-color: #2a3142; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-large { + background-image: url(images/btn/btn-default-large-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tr, +.x-btn-default-large-br, +.x-btn-default-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl, +.x-btn-default-large-bl, +.x-btn-default-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl, +.x-btn-default-large-bl, +.x-btn-default-large-tr, +.x-btn-default-large-br, +.x-btn-default-large-tc, +.x-btn-default-large-bc, +.x-btn-default-large-ml, +.x-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-ml, +.x-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-large-tl, +.x-strict .x-ie7 .x-btn-default-large-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-inner { + font-size: 14px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: white; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow-right { + padding-right: 14px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 14px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-glyph { + font-size: 32px; + line-height: 32px; + color: white; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-large .x-btn-glyph { + color: #9498a0; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled { + border-color: #565656; + background-image: none; + background-color: #6b6b6b; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6b6b6b), color-stop(48%, #656565), color-stop(52%, #4e4e4e), color-stop(100%, #535353)); + background-image: -webkit-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); + background-image: -moz-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); + background-image: -o-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); + background-image: linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-button, +.x-btn-default-large-noicon .x-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-inner, +.x-btn-default-large-noicon .x-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-large-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-large-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-inner { + line-height: 32px; + padding-left: 36px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-rtl.x-btn-inner { + padding-left: 3px; + padding-right: 36px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 36px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-large-icon-text-left .x-btn-icon-el { + height: 32px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-inner { + line-height: 32px; + padding-right: 36px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 36px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-large-icon-text-right .x-btn-icon-el { + height: 32px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-top .x-btn-inner { + padding-top: 36px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-top .x-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-bottom .x-btn-inner { + padding-bottom: 36px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-bottom .x-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over { + border-color: #947518; + background-image: none; + background-color: #ed9200; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ed9200), color-stop(48%, #e29200), color-stop(52%, #9d7921), color-stop(100%, #ab821b)); + background-image: -webkit-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -moz-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -o-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus { + border-color: #947518; + background-image: none; + background-color: #ed9200; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ed9200), color-stop(48%, #e29200), color-stop(52%, #9d7921), color-stop(100%, #ab821b)); + background-image: -webkit-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -moz-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: -o-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); + background-image: linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active, +.x-btn-default-large-pressed { + border-color: #c9750f; + background-image: none; + background-color: #da7b19; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #da7b19), color-stop(48%, #e17b1d), color-stop(52%, #db6800), color-stop(100%, #e66e00)); + background-image: -webkit-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); + background-image: -moz-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); + background-image: -o-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); + background-image: linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-tl, +.x-btn-default-large-over .x-frame-bl, +.x-btn-default-large-over .x-frame-tr, +.x-btn-default-large-over .x-frame-br, +.x-btn-default-large-over .x-frame-tc, +.x-btn-default-large-over .x-frame-bc { + background-image: url(images/btn/btn-default-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-ml, +.x-btn-default-large-over .x-frame-mr { + background-image: url(images/btn/btn-default-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-mc { + background-color: #ed9200; + background-image: url(images/btn/btn-default-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-tl, +.x-btn-default-large-focus .x-frame-bl, +.x-btn-default-large-focus .x-frame-tr, +.x-btn-default-large-focus .x-frame-br, +.x-btn-default-large-focus .x-frame-tc, +.x-btn-default-large-focus .x-frame-bc { + background-image: url(images/btn/btn-default-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-ml, +.x-btn-default-large-focus .x-frame-mr { + background-image: url(images/btn/btn-default-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-mc { + background-color: #ed9200; + background-image: url(images/btn/btn-default-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-tl, +.x-btn-default-large-menu-active .x-frame-bl, +.x-btn-default-large-menu-active .x-frame-tr, +.x-btn-default-large-menu-active .x-frame-br, +.x-btn-default-large-menu-active .x-frame-tc, +.x-btn-default-large-menu-active .x-frame-bc, +.x-btn-default-large-pressed .x-frame-tl, +.x-btn-default-large-pressed .x-frame-bl, +.x-btn-default-large-pressed .x-frame-tr, +.x-btn-default-large-pressed .x-frame-br, +.x-btn-default-large-pressed .x-frame-tc, +.x-btn-default-large-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-ml, +.x-btn-default-large-menu-active .x-frame-mr, +.x-btn-default-large-pressed .x-frame-ml, +.x-btn-default-large-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-mc, +.x-btn-default-large-pressed .x-frame-mc { + background-color: #da7b19; + background-image: url(images/btn/btn-default-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-tl, +.x-btn-default-large-disabled .x-frame-bl, +.x-btn-default-large-disabled .x-frame-tr, +.x-btn-default-large-disabled .x-frame-br, +.x-btn-default-large-disabled .x-frame-tc, +.x-btn-default-large-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-ml, +.x-btn-default-large-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-mc { + background-color: #6b6b6b; + background-image: url(images/btn/btn-default-large-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-over { + background-image: url(images/btn/btn-default-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-focus { + background-image: url(images/btn/btn-default-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-menu-active, +.x-nlg .x-btn-default-large-pressed { + background-image: url(images/btn/btn-default-large-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-disabled { + background-image: url(images/btn/btn-default-large-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 18px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-rtl.gif); + padding-right: 0; + padding-left: 18px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 16px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-btn-inner, +.x-btn-default-large-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small { + border-color: transparent; +} + +/* line 137, ../../../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: 2px 2px 2px 2px; + border-width: 1px; + border-style: solid; + background-color: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tr, +.x-btn-default-toolbar-small-br, +.x-btn-default-toolbar-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl, +.x-btn-default-toolbar-small-bl, +.x-btn-default-toolbar-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl, +.x-btn-default-toolbar-small-bl, +.x-btn-default-toolbar-small-tr, +.x-btn-default-toolbar-small-br, +.x-btn-default-toolbar-small-tc, +.x-btn-default-toolbar-small-bc, +.x-btn-default-toolbar-small-ml, +.x-btn-default-toolbar-small-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-ml, +.x-btn-default-toolbar-small-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-small-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-small-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-inner { + font-size: 14px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: white; + padding: 0 4px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow-right { + padding-right: 14px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 14px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-glyph { + font-size: 16px; + line-height: 16px; + color: white; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-small .x-btn-glyph { + color: white; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled { + border-color: #565656; + background-image: none; + background-color: transparent; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-button, +.x-btn-default-toolbar-small-noicon .x-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 4px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-inner { + line-height: 16px; + padding-left: 20px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-rtl.x-btn-inner { + padding-left: 4px; + padding-right: 20px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 20px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el { + height: 16px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-inner { + line-height: 16px; + padding-right: 20px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-rtl.x-btn-inner { + padding-right: 4px; + padding-left: 20px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el { + height: 16px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-top .x-btn-inner { + padding-top: 20px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner { + padding-bottom: 20px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over { + border-color: #d97e27; + background-image: none; + background-color: #ed9200; +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus { + border-color: #d97e27; + background-image: none; + background-color: #ed9200; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active, +.x-btn-default-toolbar-small-pressed { + border-color: #c86e19; + background-image: none; + background-color: #db7b1f; +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-tl, +.x-btn-default-toolbar-small-over .x-frame-bl, +.x-btn-default-toolbar-small-over .x-frame-tr, +.x-btn-default-toolbar-small-over .x-frame-br, +.x-btn-default-toolbar-small-over .x-frame-tc, +.x-btn-default-toolbar-small-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-ml, +.x-btn-default-toolbar-small-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-mc { + background-color: #ed9200; +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-tl, +.x-btn-default-toolbar-small-focus .x-frame-bl, +.x-btn-default-toolbar-small-focus .x-frame-tr, +.x-btn-default-toolbar-small-focus .x-frame-br, +.x-btn-default-toolbar-small-focus .x-frame-tc, +.x-btn-default-toolbar-small-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-ml, +.x-btn-default-toolbar-small-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-mc { + background-color: #ed9200; +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-tl, +.x-btn-default-toolbar-small-menu-active .x-frame-bl, +.x-btn-default-toolbar-small-menu-active .x-frame-tr, +.x-btn-default-toolbar-small-menu-active .x-frame-br, +.x-btn-default-toolbar-small-menu-active .x-frame-tc, +.x-btn-default-toolbar-small-menu-active .x-frame-bc, +.x-btn-default-toolbar-small-pressed .x-frame-tl, +.x-btn-default-toolbar-small-pressed .x-frame-bl, +.x-btn-default-toolbar-small-pressed .x-frame-tr, +.x-btn-default-toolbar-small-pressed .x-frame-br, +.x-btn-default-toolbar-small-pressed .x-frame-tc, +.x-btn-default-toolbar-small-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-ml, +.x-btn-default-toolbar-small-menu-active .x-frame-mr, +.x-btn-default-toolbar-small-pressed .x-frame-ml, +.x-btn-default-toolbar-small-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-mc, +.x-btn-default-toolbar-small-pressed .x-frame-mc { + background-color: #db7b1f; +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-tl, +.x-btn-default-toolbar-small-disabled .x-frame-bl, +.x-btn-default-toolbar-small-disabled .x-frame-tr, +.x-btn-default-toolbar-small-disabled .x-frame-br, +.x-btn-default-toolbar-small-disabled .x-frame-tc, +.x-btn-default-toolbar-small-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-ml, +.x-btn-default-toolbar-small-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-mc { + background-color: transparent; +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 18px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-noline-rtl.gif); + padding-right: 0; + padding-left: 18px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 16px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium { + border-color: transparent; +} + +/* line 137, ../../../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: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tr, +.x-btn-default-toolbar-medium-br, +.x-btn-default-toolbar-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl, +.x-btn-default-toolbar-medium-bl, +.x-btn-default-toolbar-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl, +.x-btn-default-toolbar-medium-bl, +.x-btn-default-toolbar-medium-tr, +.x-btn-default-toolbar-medium-br, +.x-btn-default-toolbar-medium-tc, +.x-btn-default-toolbar-medium-bc, +.x-btn-default-toolbar-medium-ml, +.x-btn-default-toolbar-medium-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-ml, +.x-btn-default-toolbar-medium-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-medium-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-medium-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-inner { + font-size: 14px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: white; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow-right { + padding-right: 14px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 14px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-glyph { + font-size: 24px; + line-height: 24px; + color: white; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-medium .x-btn-glyph { + color: white; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled { + border-color: #565656; + background-image: none; + background-color: transparent; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-button, +.x-btn-default-toolbar-medium-noicon .x-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-inner { + line-height: 24px; + padding-left: 28px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-rtl.x-btn-inner { + padding-left: 3px; + padding-right: 28px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 28px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el { + height: 24px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-inner { + line-height: 24px; + padding-right: 28px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 28px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el { + height: 24px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-top .x-btn-inner { + padding-top: 28px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner { + padding-bottom: 28px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over { + border-color: #d97e27; + background-image: none; + background-color: #ed9200; +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus { + border-color: #d97e27; + background-image: none; + background-color: #ed9200; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active, +.x-btn-default-toolbar-medium-pressed { + border-color: #c86e19; + background-image: none; + background-color: #db7b1f; +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-tl, +.x-btn-default-toolbar-medium-over .x-frame-bl, +.x-btn-default-toolbar-medium-over .x-frame-tr, +.x-btn-default-toolbar-medium-over .x-frame-br, +.x-btn-default-toolbar-medium-over .x-frame-tc, +.x-btn-default-toolbar-medium-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-ml, +.x-btn-default-toolbar-medium-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-mc { + background-color: #ed9200; +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-tl, +.x-btn-default-toolbar-medium-focus .x-frame-bl, +.x-btn-default-toolbar-medium-focus .x-frame-tr, +.x-btn-default-toolbar-medium-focus .x-frame-br, +.x-btn-default-toolbar-medium-focus .x-frame-tc, +.x-btn-default-toolbar-medium-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-ml, +.x-btn-default-toolbar-medium-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-mc { + background-color: #ed9200; +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-tl, +.x-btn-default-toolbar-medium-menu-active .x-frame-bl, +.x-btn-default-toolbar-medium-menu-active .x-frame-tr, +.x-btn-default-toolbar-medium-menu-active .x-frame-br, +.x-btn-default-toolbar-medium-menu-active .x-frame-tc, +.x-btn-default-toolbar-medium-menu-active .x-frame-bc, +.x-btn-default-toolbar-medium-pressed .x-frame-tl, +.x-btn-default-toolbar-medium-pressed .x-frame-bl, +.x-btn-default-toolbar-medium-pressed .x-frame-tr, +.x-btn-default-toolbar-medium-pressed .x-frame-br, +.x-btn-default-toolbar-medium-pressed .x-frame-tc, +.x-btn-default-toolbar-medium-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-ml, +.x-btn-default-toolbar-medium-menu-active .x-frame-mr, +.x-btn-default-toolbar-medium-pressed .x-frame-ml, +.x-btn-default-toolbar-medium-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-mc, +.x-btn-default-toolbar-medium-pressed .x-frame-mc { + background-color: #db7b1f; +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-tl, +.x-btn-default-toolbar-medium-disabled .x-frame-bl, +.x-btn-default-toolbar-medium-disabled .x-frame-tr, +.x-btn-default-toolbar-medium-disabled .x-frame-br, +.x-btn-default-toolbar-medium-disabled .x-frame-tc, +.x-btn-default-toolbar-medium-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-ml, +.x-btn-default-toolbar-medium-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-mc { + background-color: transparent; +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 18px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-noline-rtl.gif); + padding-right: 0; + padding-left: 18px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 16px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large { + border-color: transparent; +} + +/* line 137, ../../../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: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tr, +.x-btn-default-toolbar-large-br, +.x-btn-default-toolbar-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl, +.x-btn-default-toolbar-large-bl, +.x-btn-default-toolbar-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl, +.x-btn-default-toolbar-large-bl, +.x-btn-default-toolbar-large-tr, +.x-btn-default-toolbar-large-br, +.x-btn-default-toolbar-large-tc, +.x-btn-default-toolbar-large-bc, +.x-btn-default-toolbar-large-ml, +.x-btn-default-toolbar-large-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-ml, +.x-btn-default-toolbar-large-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-large-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-large-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-inner { + font-size: 14px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: white; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow-right { + padding-right: 14px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 14px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-glyph { + font-size: 32px; + line-height: 32px; + color: white; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-large .x-btn-glyph { + color: white; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled { + border-color: #565656; + background-image: none; + background-color: transparent; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-button, +.x-btn-default-toolbar-large-noicon .x-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-inner { + line-height: 32px; + padding-left: 36px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-rtl.x-btn-inner { + padding-left: 3px; + padding-right: 36px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 36px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el { + height: 32px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-inner { + line-height: 32px; + padding-right: 36px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 36px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el { + height: 32px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-top .x-btn-inner { + padding-top: 36px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner { + padding-bottom: 36px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over { + border-color: #d97e27; + background-image: none; + background-color: #ed9200; +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus { + border-color: #d97e27; + background-image: none; + background-color: #ed9200; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active, +.x-btn-default-toolbar-large-pressed { + border-color: #c86e19; + background-image: none; + background-color: #db7b1f; +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-tl, +.x-btn-default-toolbar-large-over .x-frame-bl, +.x-btn-default-toolbar-large-over .x-frame-tr, +.x-btn-default-toolbar-large-over .x-frame-br, +.x-btn-default-toolbar-large-over .x-frame-tc, +.x-btn-default-toolbar-large-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-ml, +.x-btn-default-toolbar-large-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-mc { + background-color: #ed9200; +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-tl, +.x-btn-default-toolbar-large-focus .x-frame-bl, +.x-btn-default-toolbar-large-focus .x-frame-tr, +.x-btn-default-toolbar-large-focus .x-frame-br, +.x-btn-default-toolbar-large-focus .x-frame-tc, +.x-btn-default-toolbar-large-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-ml, +.x-btn-default-toolbar-large-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-mc { + background-color: #ed9200; +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-tl, +.x-btn-default-toolbar-large-menu-active .x-frame-bl, +.x-btn-default-toolbar-large-menu-active .x-frame-tr, +.x-btn-default-toolbar-large-menu-active .x-frame-br, +.x-btn-default-toolbar-large-menu-active .x-frame-tc, +.x-btn-default-toolbar-large-menu-active .x-frame-bc, +.x-btn-default-toolbar-large-pressed .x-frame-tl, +.x-btn-default-toolbar-large-pressed .x-frame-bl, +.x-btn-default-toolbar-large-pressed .x-frame-tr, +.x-btn-default-toolbar-large-pressed .x-frame-br, +.x-btn-default-toolbar-large-pressed .x-frame-tc, +.x-btn-default-toolbar-large-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-ml, +.x-btn-default-toolbar-large-menu-active .x-frame-mr, +.x-btn-default-toolbar-large-pressed .x-frame-ml, +.x-btn-default-toolbar-large-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-mc, +.x-btn-default-toolbar-large-pressed .x-frame-mc { + background-color: #db7b1f; +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-tl, +.x-btn-default-toolbar-large-disabled .x-frame-bl, +.x-btn-default-toolbar-large-disabled .x-frame-tr, +.x-btn-default-toolbar-large-disabled .x-frame-br, +.x-btn-default-toolbar-large-disabled .x-frame-tc, +.x-btn-default-toolbar-large-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-ml, +.x-btn-default-toolbar-large-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-mc { + background-color: transparent; +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 18px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-noline-rtl.gif); + padding-right: 0; + padding-left: 18px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 16px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 1161, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-left .x-btn-icon-el { + background-position: left center; +} +/* line 1166, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-left .x-rtl.x-btn-icon-el { + background-position: right center; +} + +/* line 1173, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-right .x-btn-icon-el { + background-position: right center; +} +/* line 1178, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-right .x-rtl.x-btn-icon-el { + background-position: left center; +} + +/* line 1184, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-top .x-btn-icon-el { + background-position: center top; +} + +/* line 1188, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-bottom .x-btn-icon-el { + background-position: center bottom; +} + +/* line 1192, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow-right { + background-position: right center; +} + +/* line 1197, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-rtl.x-btn-arrow-right { + background-position: left center; +} + +/* line 1202, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow-bottom { + background-position: center bottom; +} + +/* line 1206, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow { + background-repeat: no-repeat; +} + +/* line 1211, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split { + display: block; + background-repeat: no-repeat; +} + +/* line 1216, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split-right { + background-position: right center; +} + +/* line 1221, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-rtl.x-btn-split-right { + background-position: 0 center; +} + +/* line 1226, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split-bottom { + background-position: center bottom; +} + +/* line 1230, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-cycle-fixed-width .x-btn-inner { + text-align: inherit; +} + +/** + * Creates a visual theme for a Toolbar. + * @param {String} $ui + * The name of the UI + * + * @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 {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 {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-disabled=$toolbar-scroller-opacity-disabled] + * The opacity of disabled Toolbar scrollers + * + * @param {string} [$tool-background-image=$toolbar-tool-background-image] + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + * + * @member Ext.toolbar.Toolbar + */ +/* line 94, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar { + font-size: 14px; + border-style: solid; + padding: 2px 0 2px 2px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-item { + margin: 0 2px 0 0; +} + +/* line 107, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-rtl.x-toolbar-item { + margin: 0 0 0 2px; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-text { + margin: 0 6px 0 4px; + color: white; + line-height: 16px; + font-family: tahoma, arial, verdana, sans-serif; + font-size: 14px; + font-weight: normal; +} + +/* line 121, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-separator-horizontal { + margin: 0 2px 0 0; + height: 14px; + border-style: solid; + border-width: 0 1px; + border-left-color: #1b1b29; + border-right-color: #5d5d6e; +} + +/* line 132, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-rtl.x-toolbar { + padding: 2px 2px 2px 0; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-footer { + background: transparent; + border: 0; + margin: 3px 0 0; + padding: 2px 0 2px 6px; +} +/* line 144, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-footer .x-toolbar-item { + margin: 0 6px 0 0; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-spacer { + width: 2px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-more-icon { + background-image: url(images/toolbar/more.gif) !important; + background-position: center center !important; + background-repeat: no-repeat; +} + +/* line 45, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default { + border-color: #18181a; + border-width: 1px; + background-image: none; + background-color: #3a3e4f; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #404558), color-stop(100%, #3a3e4f)); + background-image: -webkit-linear-gradient(top, #404558, #3a3e4f); + background-image: -moz-linear-gradient(top, #404558, #3a3e4f); + background-image: -o-linear-gradient(top, #404558, #3a3e4f); + background-image: linear-gradient(top, #404558, #3a3e4f); +} +/* line 51, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller { + cursor: pointer; +} +/* line 55, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + cursor: default; +} + +/* line 82, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-nlg .x-toolbar-default { + background-image: url(images/toolbar/toolbar-default-bg.gif) !important; + background-repeat: repeat-x; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-toolbar-default:after { + display: none; + content: "x-slicer:bg:url(images/toolbar/toolbar-default-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/* line 166, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-left { + background-image: url(images/toolbar/scroll-left.gif); + background-position: -14px 0; + width: 14px; + height: 22px; + border-style: solid; + border-color: #8db2e3; + border-width: 0 0 1px; + margin-top: 0; +} + +/* line 177, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-left-hover { + background-position: 0 0; +} + +/* line 181, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-right { + background-image: url(images/toolbar/scroll-right.gif); + width: 14px; + height: 22px; + border-style: solid; + border-color: #8db2e3; + border-width: 0 0 1px; + margin-top: 0; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-right-hover { + background-position: -14px 0; +} + +/* line 195, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar .x-box-menu-after { + margin: 0 2px 0 2px; +} + +/* line 199, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical { + padding: 2px 2px 0 2px; +} +/* line 202, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-item { + margin: 0 0 2px 0; +} +/* line 206, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-text { + margin: 4px 0 6px 0; +} +/* line 210, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-separator-vertical { + margin: 0 5px 2px; + border-style: solid none; + border-width: 1px 0; + border-top-color: #1b1b29; + border-bottom-color: #5d5d6e; +} +/* line 219, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-box-menu-after, +.x-toolbar-vertical .x-rtl.x-box-menu-after { + margin: 2px 0 2px 0; + display: block; + float: none; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x-header-draggable .x-header-body, +.x-header-ghost { + cursor: move; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x-header-text { + white-space: nowrap; +} + +/** + * Creates a visual theme for a Panel + * + * @param {string} $ui-label + * 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 {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-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`. + * + * @member Ext.panel.Panel + */ +/* line 736, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65); + opacity: 0.65; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default { + border-color: #18181a; + padding: 0; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default { + font-size: 14px; + border: 1px solid #18181a; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal { + padding: 4px 5px 4px 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal-noborder { + padding: 5px 6px 4px 6px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical-noborder { + padding: 6px 5px 6px 4px; +} + +/* line 249, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-vertical-noborder { + padding: 6px 4px 6px 5px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-default { + color: white; + font-size: 14px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + line-height: 15px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-default { + background: #232d38; + border-color: #18181a; + color: white; + font-size: 15px; + font-size: normal; + border-width: 1px; + border-style: solid; +} + +/* line 432, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default { + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 436, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical { + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 441, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-vertical { + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 454, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-top { + background: url(images/panel-header/panel-header-default-top-bg.gif); +} +/* line 459, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-bottom { + background: url(images/panel-header/panel-header-default-bottom-bg.gif); +} +/* line 464, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-left { + background: url(images/panel-header/panel-header-default-left-bg.gif) top right; +} +/* line 469, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-right { + background: url(images/panel-header/panel-header-default-right-bg.gif) top right; +} +/* line 476, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-rtl.x-panel-header-default-left { + background: url(images/panel-header/panel-header-default-left-bg-rtl.gif); +} +/* line 480, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-rtl.x-panel-header-default-right { + background: url(images/panel-header/panel-header-default-right-bg-rtl.gif); +} + +/* line 494, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-top { + border-bottom-width: 1px !important; +} +/* line 498, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-right { + border-left-width: 1px !important; +} +/* line 502, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-bottom { + border-top-width: 1px !important; +} +/* line 506, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-left { + border-right-width: 1px !important; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-top:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-top-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-bottom:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-bottom-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-left:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-left-bg-rtl.gif), stretch:left"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-right:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-right-bg-rtl.gif), stretch:left"; +} + +/**/ +/* */ +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-vertical .x-panel-header-text-container { + background-color: #3a4155; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#3a4155); +} + +/* line 527, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-rtl.x-panel-header-text-container { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-vertical .x-rtl.x-panel-header-text-container { + background-color: #3a4155; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#3a4155); +} + +/* line 533, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-top { + -webkit-box-shadow: #606877 0 1px 0px 0 inset; + -moz-box-shadow: #606877 0 1px 0px 0 inset; + box-shadow: #606877 0 1px 0px 0 inset; +} + +/* line 537, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-right { + -webkit-box-shadow: #606877 -1px 0 0px 0 inset; + -moz-box-shadow: #606877 -1px 0 0px 0 inset; + box-shadow: #606877 -1px 0 0px 0 inset; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-bottom { + -webkit-box-shadow: #606877 0 -1px 0px 0 inset; + -moz-box-shadow: #606877 0 -1px 0px 0 inset; + box-shadow: #606877 0 -1px 0px 0 inset; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-left { + -webkit-box-shadow: #606877 1px 0 0px 0 inset; + -moz-box-shadow: #606877 1px 0 0px 0 inset; + box-shadow: #606877 1px 0 0px 0 inset; +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default .x-panel-header-glyph { + color: white; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-default .x-panel-header-glyph { + color: #9ca0aa; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-panel-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 585, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 0 2px; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 2px; +} +/* line 595, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-rtl.x-panel-header-icon-after-title { + margin: 0 2px 0 0; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 607, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-icon-after-title { + margin: 2px 0 0 0; +} +/* line 617, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-rtl.x-panel-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-tool-after-title { + margin: 0 0 0 2px; +} +/* line 630, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-rtl.x-tool-after-title { + margin: 0 2px 0 0; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-tool-before-title { + margin: 0 2px 0 0; +} +/* line 640, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-rtl.x-tool-before-title { + margin: 0 0 0 2px; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 652, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-rtl.x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-tool-before-title { + margin: 0 0 2px 0; +} +/* line 662, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-rtl.x-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 670, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-collapsed-border-right { + border-right-width: 1px !important; +} +/* line 673, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-collapsed-border-left { + border-left-width: 1px !important; +} + +/* line 687, ../../../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 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed { + border-color: #18181a; + padding: 4px; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed { + font-size: 14px; + border: 1px solid #18181a; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal { + padding: 4px 5px 4px 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal-noborder { + padding: 5px 6px 4px 6px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical-noborder { + padding: 6px 5px 6px 4px; +} + +/* line 249, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-framed-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-framed-vertical-noborder { + padding: 6px 4px 6px 5px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-default-framed { + color: white; + font-size: 14px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + line-height: 15px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-default-framed { + background: #3f4757; + border-color: #18181a; + color: white; + font-size: 15px; + font-size: normal; + border-width: 0; + border-style: solid; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-default-framed-frameInfo { + font-family: dh-3-3-3-3-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tr, +.x-panel-default-framed-br, +.x-panel-default-framed-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl, +.x-panel-default-framed-bl, +.x-panel-default-framed-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl, +.x-panel-default-framed-bl, +.x-panel-default-framed-tr, +.x-panel-default-framed-br, +.x-panel-default-framed-tc, +.x-panel-default-framed-bc, +.x-panel-default-framed-ml, +.x-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-ml, +.x-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mc { + padding: 2px 2px 2px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-default-framed-tl, +.x-strict .x-ie7 .x-panel-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 4px 5px 4px 5px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mc { + background-image: url(images/panel-header/panel-header-default-framed-top-fbg.gif); + background-position: 0 top; + background-color: #3a4155; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-top { + background-image: url(images/panel-header/panel-header-default-framed-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-top-frameInfo { + font-family: dh-3-3-0-0-1-1-0-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tr, +.x-panel-header-default-framed-top-br, +.x-panel-header-default-framed-top-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl, +.x-panel-header-default-framed-top-bl, +.x-panel-header-default-framed-top-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl, +.x-panel-header-default-framed-top-bl, +.x-panel-header-default-framed-top-tr, +.x-panel-header-default-framed-top-br, +.x-panel-header-default-framed-top-tc, +.x-panel-header-default-framed-top-bc, +.x-panel-header-default-framed-top-ml, +.x-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-ml, +.x-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mc { + padding: 2px 3px 4px 3px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-top-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomright: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 4px 5px 4px; + border-width: 1px 1px 1px 0; + border-style: solid; + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right { + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-right-fbg.gif); + background-position: right 0; + background-color: #3a4155; +} + +/* line 204, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-right-fbg-rtl.gif); + background-position: 0 0; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-right { + background-image: url(images/panel-header/panel-header-default-framed-right-bg.gif); + background-position: right 0; +} +/* line 223, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-rtl.x-panel-header-default-framed-right { + background-image: url(images/panel-header/panel-header-default-framed-right-bg-rtl.gif); + background-position: 0 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-right-frameInfo { + font-family: dv-0-3-3-0-1-1-1-0-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tr { + background-position: 0 -3px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bl { + background-position: 0 -6px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-br { + background-position: 0 -9px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-ml { + background-position: -3px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc { + background-position: right 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bc { + background-position: right -3px; +} + +/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right-tc { + background-position: 0 0; +} + +/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tr, +.x-panel-header-default-framed-right-br, +.x-panel-header-default-framed-right-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl, +.x-panel-header-default-framed-right-bl, +.x-panel-header-default-framed-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl, +.x-panel-header-default-framed-right-bl, +.x-panel-header-default-framed-right-tr, +.x-panel-header-default-framed-right-br, +.x-panel-header-default-framed-right-tc, +.x-panel-header-default-framed-right-bc, +.x-panel-header-default-framed-right-ml, +.x-panel-header-default-framed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right-tl, .x-rtl.x-panel-header-default-framed-right-ml, .x-rtl.x-panel-header-default-framed-right-bl, .x-rtl.x-panel-header-default-framed-right-tr, .x-rtl.x-panel-header-default-framed-right-mr, .x-rtl.x-panel-header-default-framed-right-br { + background-image: url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc, +.x-panel-header-default-framed-right-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-sides.gif); + background-repeat: repeat-x; +} + +/* line 418, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right-tc, .x-rtl.x-panel-header-default-framed-right-bc { + background-image: url(images/panel-header/panel-header-default-framed-right-sides-rtl.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mc { + padding: 3px 2px 3px 4px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-right-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-right:after { + display: none; + content: "x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-right-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-right-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-right-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-right-sides-rtl.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; + -moz-border-radius-bottomleft: 3px; + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + padding: 4px 5px 4px 5px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mc { + background-image: url(images/panel-header/panel-header-default-framed-bottom-fbg.gif); + background-position: 0 bottom; + background-color: #3a4155; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-bottom { + background-image: url(images/panel-header/panel-header-default-framed-bottom-bg.gif); + background-position: 0 bottom; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-bottom-frameInfo { + font-family: dh-0-0-3-3-0-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tr, +.x-panel-header-default-framed-bottom-br, +.x-panel-header-default-framed-bottom-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl, +.x-panel-header-default-framed-bottom-bl, +.x-panel-header-default-framed-bottom-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl, +.x-panel-header-default-framed-bottom-bl, +.x-panel-header-default-framed-bottom-tr, +.x-panel-header-default-framed-bottom-br, +.x-panel-header-default-framed-bottom-tc, +.x-panel-header-default-framed-bottom-bc, +.x-panel-header-default-framed-bottom-ml, +.x-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-ml, +.x-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mc { + padding: 4px 3px 2px 3px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-bottom:after { + display: none; + content: "x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 3px; + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + padding: 5px 4px 5px 4px; + border-width: 1px 0 1px 1px; + border-style: solid; + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left { + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-left-fbg.gif); + background-position: left 0; + background-color: #3a4155; +} + +/* line 204, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-left-fbg-rtl.gif); + background-position: right 0; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-left { + background-image: url(images/panel-header/panel-header-default-framed-left-bg.gif); + background-position: left 0; +} +/* line 223, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-rtl.x-panel-header-default-framed-left { + background-image: url(images/panel-header/panel-header-default-framed-left-bg-rtl.gif); + background-position: right 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-left-frameInfo { + font-family: dv-3-0-0-3-1-0-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tr { + background-position: 0 -3px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bl { + background-position: 0 -6px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-br { + background-position: 0 -9px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-ml { + background-position: -3px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc { + background-position: left 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bc { + background-position: left -3px; +} + +/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left-tc { + background-position: right 0; +} + +/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left-bc { + background-position: right -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tr, +.x-panel-header-default-framed-left-br, +.x-panel-header-default-framed-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl, +.x-panel-header-default-framed-left-bl, +.x-panel-header-default-framed-left-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl, +.x-panel-header-default-framed-left-bl, +.x-panel-header-default-framed-left-tr, +.x-panel-header-default-framed-left-br, +.x-panel-header-default-framed-left-tc, +.x-panel-header-default-framed-left-bc, +.x-panel-header-default-framed-left-ml, +.x-panel-header-default-framed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left-tl, .x-rtl.x-panel-header-default-framed-left-ml, .x-rtl.x-panel-header-default-framed-left-bl, .x-rtl.x-panel-header-default-framed-left-tr, .x-rtl.x-panel-header-default-framed-left-mr, .x-rtl.x-panel-header-default-framed-left-br { + background-image: url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc, +.x-panel-header-default-framed-left-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-sides.gif); + background-repeat: repeat-x; +} + +/* line 418, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left-tc, .x-rtl.x-panel-header-default-framed-left-bc { + background-image: url(images/panel-header/panel-header-default-framed-left-sides-rtl.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mc { + padding: 3px 4px 3px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-left-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-left:after { + display: none; + content: "x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-left-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-left-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-left-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-left-sides-rtl.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomright: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; + -moz-border-radius-bottomleft: 3px; + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif); + background-position: 0 top; + background-color: #3a4155; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-top { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-top-frameInfo { + font-family: dh-3-3-3-3-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tr, +.x-panel-header-default-framed-collapsed-top-br, +.x-panel-header-default-framed-collapsed-top-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl, +.x-panel-header-default-framed-collapsed-top-bl, +.x-panel-header-default-framed-collapsed-top-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl, +.x-panel-header-default-framed-collapsed-top-bl, +.x-panel-header-default-framed-collapsed-top-tr, +.x-panel-header-default-framed-collapsed-top-br, +.x-panel-header-default-framed-collapsed-top-tc, +.x-panel-header-default-framed-collapsed-top-bc, +.x-panel-header-default-framed-collapsed-top-ml, +.x-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-ml, +.x-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mc { + padding: 2px 3px 2px 3px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomright: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; + -moz-border-radius-bottomleft: 3px; + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right { + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif); + background-position: right 0; + background-color: #3a4155; +} + +/* line 204, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif); + background-position: 0 0; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-right { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif); + background-position: right 0; +} +/* line 223, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-rtl.x-panel-header-default-framed-collapsed-right { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif); + background-position: 0 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-right-frameInfo { + font-family: dv-3-3-3-3-1-1-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tr { + background-position: 0 -3px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bl { + background-position: 0 -6px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-br { + background-position: 0 -9px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-ml { + background-position: -3px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc { + background-position: right 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bc { + background-position: right -3px; +} + +/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right-tc { + background-position: 0 0; +} + +/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tr, +.x-panel-header-default-framed-collapsed-right-br, +.x-panel-header-default-framed-collapsed-right-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl, +.x-panel-header-default-framed-collapsed-right-bl, +.x-panel-header-default-framed-collapsed-right-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl, +.x-panel-header-default-framed-collapsed-right-bl, +.x-panel-header-default-framed-collapsed-right-tr, +.x-panel-header-default-framed-collapsed-right-br, +.x-panel-header-default-framed-collapsed-right-tc, +.x-panel-header-default-framed-collapsed-right-bc, +.x-panel-header-default-framed-collapsed-right-ml, +.x-panel-header-default-framed-collapsed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right-tl, .x-rtl.x-panel-header-default-framed-collapsed-right-ml, .x-rtl.x-panel-header-default-framed-collapsed-right-bl, .x-rtl.x-panel-header-default-framed-collapsed-right-tr, .x-rtl.x-panel-header-default-framed-collapsed-right-mr, .x-rtl.x-panel-header-default-framed-collapsed-right-br { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc, +.x-panel-header-default-framed-collapsed-right-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif); + background-repeat: repeat-x; +} + +/* line 418, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right-tc, .x-rtl.x-panel-header-default-framed-collapsed-right-bc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mc { + padding: 3px 2px 3px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-right:after { + display: none; + content: "x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomright: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; + -moz-border-radius-bottomleft: 3px; + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(top, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif); + background-position: 0 bottom; + background-color: #3a4155; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-bottom { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif); + background-position: 0 bottom; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-bottom-frameInfo { + font-family: dh-3-3-3-3-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tr, +.x-panel-header-default-framed-collapsed-bottom-br, +.x-panel-header-default-framed-collapsed-bottom-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl, +.x-panel-header-default-framed-collapsed-bottom-bl, +.x-panel-header-default-framed-collapsed-bottom-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl, +.x-panel-header-default-framed-collapsed-bottom-bl, +.x-panel-header-default-framed-collapsed-bottom-tr, +.x-panel-header-default-framed-collapsed-bottom-br, +.x-panel-header-default-framed-collapsed-bottom-tc, +.x-panel-header-default-framed-collapsed-bottom-bc, +.x-panel-header-default-framed-collapsed-bottom-ml, +.x-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-ml, +.x-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mc { + padding: 2px 3px 2px 3px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-bottom:after { + display: none; + content: "x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomright: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; + -moz-border-radius-bottomleft: 3px; + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(right, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left { + background-image: none; + background-color: #3a4155; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #434a5e), color-stop(45%, #3c4255), color-stop(46%, #2a2f3e), color-stop(50%, #2a2f3e), color-stop(51%, #313646), color-stop(100%, #3a4155)); + background-image: -webkit-linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -moz-linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: -o-linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); + background-image: linear-gradient(left, #434a5e, #3c4255 45%, #2a2f3e 46%, #2a2f3e 50%, #313646 51%, #3a4155); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif); + background-position: left 0; + background-color: #3a4155; +} + +/* line 204, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif); + background-position: right 0; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-left { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif); + background-position: left 0; +} +/* line 223, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-rtl.x-panel-header-default-framed-collapsed-left { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif); + background-position: right 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-left-frameInfo { + font-family: dv-3-3-3-3-1-1-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tr { + background-position: 0 -3px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bl { + background-position: 0 -6px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-br { + background-position: 0 -9px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-ml { + background-position: -3px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc { + background-position: left 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bc { + background-position: left -3px; +} + +/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left-tc { + background-position: right 0; +} + +/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left-bc { + background-position: right -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tr, +.x-panel-header-default-framed-collapsed-left-br, +.x-panel-header-default-framed-collapsed-left-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl, +.x-panel-header-default-framed-collapsed-left-bl, +.x-panel-header-default-framed-collapsed-left-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl, +.x-panel-header-default-framed-collapsed-left-bl, +.x-panel-header-default-framed-collapsed-left-tr, +.x-panel-header-default-framed-collapsed-left-br, +.x-panel-header-default-framed-collapsed-left-tc, +.x-panel-header-default-framed-collapsed-left-bc, +.x-panel-header-default-framed-collapsed-left-ml, +.x-panel-header-default-framed-collapsed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left-tl, .x-rtl.x-panel-header-default-framed-collapsed-left-ml, .x-rtl.x-panel-header-default-framed-collapsed-left-bl, .x-rtl.x-panel-header-default-framed-collapsed-left-tr, .x-rtl.x-panel-header-default-framed-collapsed-left-mr, .x-rtl.x-panel-header-default-framed-collapsed-left-br { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc, +.x-panel-header-default-framed-collapsed-left-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif); + background-repeat: repeat-x; +} + +/* line 418, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left-tc, .x-rtl.x-panel-header-default-framed-collapsed-left-bc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mc { + padding: 3px 2px 3px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-left:after { + display: none; + content: "x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif)"; +} + +/**/ +/* */ +/* line 396, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-top { + border-bottom-width: 1px !important; +} +/* line 400, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-right { + border-left-width: 1px !important; +} +/* line 404, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-bottom { + border-top-width: 1px !important; +} +/* line 408, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-left { + border-right-width: 1px !important; +} + +/* line 414, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-top { + border-bottom-width: 0 !important; +} +/* line 418, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-right { + border-left-width: 0 !important; +} +/* line 422, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-bottom { + border-top-width: 0 !important; +} +/* line 426, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-left { + border-right-width: 0 !important; +} + +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-framed-vertical .x-panel-header-text-container { + background-color: #3a4155; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#3a4155); +} + +/* line 527, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-text-container { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-framed-vertical .x-rtl.x-panel-header-text-container { + background-color: #3a4155; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#3a4155); +} + +/* line 533, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-top { + -webkit-box-shadow: #606877 0 1px 0px 0 inset, #606877 -1px 0 0px 0 inset, #606877 1px 0 0px 0 inset; + -moz-box-shadow: #606877 0 1px 0px 0 inset, #606877 -1px 0 0px 0 inset, #606877 1px 0 0px 0 inset; + box-shadow: #606877 0 1px 0px 0 inset, #606877 -1px 0 0px 0 inset, #606877 1px 0 0px 0 inset; +} + +/* line 537, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-right { + -webkit-box-shadow: #606877 0 1px 0px 0 inset, #606877 0 -1px 0px 0 inset, #606877 -1px 0 0px 0 inset; + -moz-box-shadow: #606877 0 1px 0px 0 inset, #606877 0 -1px 0px 0 inset, #606877 -1px 0 0px 0 inset; + box-shadow: #606877 0 1px 0px 0 inset, #606877 0 -1px 0px 0 inset, #606877 -1px 0 0px 0 inset; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-bottom { + -webkit-box-shadow: #606877 0 -1px 0px 0 inset, #606877 -1px 0 0px 0 inset, #606877 1px 0 0px 0 inset; + -moz-box-shadow: #606877 0 -1px 0px 0 inset, #606877 -1px 0 0px 0 inset, #606877 1px 0 0px 0 inset; + box-shadow: #606877 0 -1px 0px 0 inset, #606877 -1px 0 0px 0 inset, #606877 1px 0 0px 0 inset; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-left { + -webkit-box-shadow: #606877 0 1px 0px 0 inset, #606877 0 -1px 0px 0 inset, #606877 1px 0 0px 0 inset; + -moz-box-shadow: #606877 0 1px 0px 0 inset, #606877 0 -1px 0px 0 inset, #606877 1px 0 0px 0 inset; + box-shadow: #606877 0 1px 0px 0 inset, #606877 0 -1px 0px 0 inset, #606877 1px 0 0px 0 inset; +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed .x-panel-header-glyph { + color: white; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-default-framed .x-panel-header-glyph { + color: #9ca0aa; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-panel-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 585, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 0 2px; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 2px; +} +/* line 595, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-rtl.x-panel-header-icon-after-title { + margin: 0 2px 0 0; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 607, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-icon-after-title { + margin: 2px 0 0 0; +} +/* line 617, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-tool-after-title { + margin: 0 0 0 2px; +} +/* line 630, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-rtl.x-tool-after-title { + margin: 0 2px 0 0; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-tool-before-title { + margin: 0 2px 0 0; +} +/* line 640, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-rtl.x-tool-before-title { + margin: 0 0 0 2px; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 652, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-rtl.x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-tool-before-title { + margin: 0 0 2px 0; +} +/* line 662, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-rtl.x-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 670, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-border-right { + border-right-width: 1px !important; +} +/* line 673, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-border-left { + border-left-width: 1px !important; +} + +/* line 687, ../../../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; +} + +/** + * Creates a visual theme for a Ext.tip.Tip + * + * @param {string} $ui-label + * 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-body-padding=$tip-header-body-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 167, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor { + position: absolute; + overflow: hidden; + height: 10px; + width: 10px; + border-style: solid; + border-width: 5px; + border-color: #122d5e; + zoom: 1; +} +/* line 182, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-content-box .x-tip-anchor { + height: 0; + width: 0; +} + +/* line 189, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-top { + border-top-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-bottom { + border-bottom-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-bottom-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-left { + border-top-color: transparent; + border-bottom-color: transparent; + border-left-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-left-color: pink; + _filter: chroma(color=pink); +} + +/* line 228, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-right { + border-top-color: transparent; + border-bottom-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 137, ../../../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: #5e6986; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mc { + background-color: #5e6986; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tip-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tip-default-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tr, +.x-tip-default-br, +.x-tip-default-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl, +.x-tip-default-bl, +.x-tip-default-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl, +.x-tip-default-bl, +.x-tip-default-tr, +.x-tip-default-br, +.x-tip-default-tc, +.x-tip-default-bc, +.x-tip-default-ml, +.x-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-ml, +.x-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tip-default-tl, +.x-strict .x-ie7 .x-tip-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tip-default:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-default { + border-color: #122d5e; +} +/* line 109, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-default .x-tool-img { + background-color: #5e6986; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 129, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-rtl.x-tool-after-title { + margin: 0 6px 0 0; +} +/* line 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-tool-before-title { + margin: 0 6px 0 0; +} +/* line 139, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-rtl.x-tool-before-title { + margin: 0 0 0 6px; +} + +/* line 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-body-default { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-text-container-default { + color: black; + font-size: 14px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-default { + padding: 3px; + color: black; + font-size: 14px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-default a { + color: black; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: white; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mc { + background-color: white; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tip-form-invalid { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tip-form-invalid-frameInfo { + font-family: th-5-5-5-5-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tr, +.x-tip-form-invalid-br, +.x-tip-form-invalid-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl, +.x-tip-form-invalid-bl, +.x-tip-form-invalid-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl, +.x-tip-form-invalid-bl, +.x-tip-form-invalid-tr, +.x-tip-form-invalid-br, +.x-tip-form-invalid-tc, +.x-tip-form-invalid-bc, +.x-tip-form-invalid-ml, +.x-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-ml, +.x-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tip-form-invalid-tl, +.x-strict .x-ie7 .x-tip-form-invalid-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tip-form-invalid:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-form-invalid { + border-color: #a1311f; + -webkit-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; + -moz-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; + box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; +} +/* line 109, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-form-invalid .x-tool-img { + background-color: white; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-form-invalid .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 129, ../../../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 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-form-invalid .x-tool-before-title { + margin: 0 6px 0 0; +} +/* line 139, ../../../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 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-body-form-invalid { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-text-container-form-invalid { + color: black; + font-size: 14px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid { + padding: 3px 3px 3px 22px; + color: black; + font-size: 14px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid a { + color: black; +} + +/* line 265, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid { + background: 1px 1px no-repeat; + background-image: url(images/form/exclamation.gif); +} +/* line 268, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid li { + margin-bottom: 4px; +} +/* line 270, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid li.last { + margin-bottom: 0; +} + +/** + * Creates a visual theme for a ButtonGroup. + * + * @param {string} $ui-label + * 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 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-default { + border-color: #606068; + -webkit-box-shadow: #757478 0 1px 0px 0 inset, #757478 0 -1px 0px 0 inset, #757478 -1px 0 0px 0 inset, #757478 1px 0 0px 0 inset; + -moz-box-shadow: #757478 0 1px 0px 0 inset, #757478 0 -1px 0px 0 inset, #757478 -1px 0 0px 0 inset, #757478 1px 0 0px 0 inset; + box-shadow: #757478 0 1px 0px 0 inset, #757478 0 -1px 0px 0 inset, #757478 -1px 0 0px 0 inset, #757478 1px 0 0px 0 inset; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default { + margin: 2px 2px 0 2px; + padding: 1px 0; + line-height: 15px; + background: #676772; + -moz-border-radius-topleft: 0px; + -webkit-border-top-left-radius: 0px; + border-top-left-radius: 0px; + -moz-border-radius-topright: 0px; + -webkit-border-top-right-radius: 0px; + border-top-right-radius: 0px; +} +/* line 109, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default .x-tool-img { + background-color: #676772; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-text-container-default { + font: normal 14px tahoma, arial, verdana, sans-serif; + line-height: 15px; + color: #d2d2d2; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default { + padding: 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default .x-table-layout { + border-spacing: 0; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed { + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + padding: 1px 1px 1px 1px; + border-width: 1px; + border-style: solid; + background-color: #4b515f; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mc { + background-color: #4b515f; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-group-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-group-default-framed-frameInfo { + font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl { + background-position: 0 -4px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tr { + background-position: right -6px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bl { + background-position: 0 -8px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-br { + background-position: right -10px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bc { + background-position: 0 -2px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tr, +.x-btn-group-default-framed-br, +.x-btn-group-default-framed-mr { + padding-right: 2px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl, +.x-btn-group-default-framed-bl, +.x-btn-group-default-framed-ml { + padding-left: 2px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tc { + height: 2px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bc { + height: 2px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl, +.x-btn-group-default-framed-bl, +.x-btn-group-default-framed-tr, +.x-btn-group-default-framed-br, +.x-btn-group-default-framed-tc, +.x-btn-group-default-framed-bc, +.x-btn-group-default-framed-ml, +.x-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-ml, +.x-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-group-default-framed-tl, +.x-strict .x-ie7 .x-btn-group-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-group-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle { + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + padding: 1px 1px 1px 1px; + border-width: 1px; + border-style: solid; + background-color: #4b515f; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mc { + background-color: #4b515f; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-group-default-framed-notitle { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-group-default-framed-notitle-frameInfo { + font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl { + background-position: 0 -4px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tr { + background-position: right -6px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bl { + background-position: 0 -8px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-br { + background-position: right -10px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bc { + background-position: 0 -2px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tr, +.x-btn-group-default-framed-notitle-br, +.x-btn-group-default-framed-notitle-mr { + padding-right: 2px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl, +.x-btn-group-default-framed-notitle-bl, +.x-btn-group-default-framed-notitle-ml { + padding-left: 2px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tc { + height: 2px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bc { + height: 2px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl, +.x-btn-group-default-framed-notitle-bl, +.x-btn-group-default-framed-notitle-tr, +.x-btn-group-default-framed-notitle-br, +.x-btn-group-default-framed-notitle-tc, +.x-btn-group-default-framed-notitle-bc, +.x-btn-group-default-framed-notitle-ml, +.x-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-ml, +.x-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-group-default-framed-notitle-tl, +.x-strict .x-ie7 .x-btn-group-default-framed-notitle-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-group-default-framed-notitle:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"; +} + +/**/ +/* */ +/* line 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-default-framed { + border-color: #606068; + -webkit-box-shadow: #757478 0 1px 0px 0 inset, #757478 0 -1px 0px 0 inset, #757478 -1px 0 0px 0 inset, #757478 1px 0 0px 0 inset; + -moz-box-shadow: #757478 0 1px 0px 0 inset, #757478 0 -1px 0px 0 inset, #757478 -1px 0 0px 0 inset, #757478 1px 0 0px 0 inset; + box-shadow: #757478 0 1px 0px 0 inset, #757478 0 -1px 0px 0 inset, #757478 -1px 0 0px 0 inset, #757478 1px 0 0px 0 inset; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default-framed { + margin: 2px 2px 0 2px; + padding: 1px 0; + line-height: 15px; + background: #676772; + -moz-border-radius-topleft: 2px; + -webkit-border-top-left-radius: 2px; + border-top-left-radius: 2px; + -moz-border-radius-topright: 2px; + -webkit-border-top-right-radius: 2px; + border-top-right-radius: 2px; +} +/* line 109, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default-framed .x-tool-img { + background-color: #676772; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-text-container-default-framed { + font: normal 14px tahoma, arial, verdana, sans-serif; + line-height: 15px; + color: #d2d2d2; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default-framed { + padding: 0 1px 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default-framed .x-table-layout { + border-spacing: 0; +} + +/** + * Creates a visual theme for a Window + * + * @param {string} $ui-label + * 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`. + * + * @member Ext.window.Window + */ +/* line 545, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65); + opacity: 0.65; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default { + border-color: #282828; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + -webkit-box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c 0 -1px 0px 0 inset, #414b5c -1px 0 0px 0 inset, #414b5c 1px 0 0px 0 inset; + -moz-box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c 0 -1px 0px 0 inset, #414b5c -1px 0 0px 0 inset, #414b5c 1px 0 0px 0 inset; + box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c 0 -1px 0px 0 inset, #414b5c -1px 0 0px 0 inset, #414b5c 1px 0 0px 0 inset; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-default-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tr, +.x-window-default-br, +.x-window-default-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl, +.x-window-default-bl, +.x-window-default-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl, +.x-window-default-bl, +.x-window-default-tr, +.x-window-default-br, +.x-window-default-tc, +.x-window-default-bc, +.x-window-default-ml, +.x-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-ml, +.x-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-default-tl, +.x-strict .x-ie7 .x-window-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-default:after { + display: none; + content: "x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"; +} + +/**/ +/* */ +/* line 195, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-body-default { + border-color: #18181a; + border-width: 1px; + border-style: solid; + background: #1f2833; + color: white; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default { + font-size: 14px; + border-color: #282828; + zoom: 1; + background-color: #3f4757; +} +/* line 212, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-tool-img { + background-color: #3f4757; +} + +/* line 223, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-window-header-default-vertical .x-window-header-text-container { + background-color: #3f4757; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#3f4757); +} + +/* line 228, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-rtl.x-window-header-text-container { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-window-header-default-vertical .x-rtl.x-window-header-text-container { + background-color: #3f4757; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#3f4757); +} + +/* line 233, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-text-container-default { + color: white; + font-weight: bold; + line-height: 15px; + font-family: tahoma, arial, verdana, sans-serif; + font-size: 14px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-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: 4px 5px 0 5px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-top-frameInfo { + font-family: dh-5-5-0-0-1-1-0-1-4-5-0-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tr, +.x-window-header-default-top-br, +.x-window-header-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl, +.x-window-header-default-top-bl, +.x-window-header-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl, +.x-window-header-default-top-bl, +.x-window-header-default-top-tr, +.x-window-header-default-top-br, +.x-window-header-default-top-tc, +.x-window-header-default-top-bc, +.x-window-header-default-top-ml, +.x-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-ml, +.x-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mc { + padding: 0px 1px 0 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-top-tl, +.x-strict .x-ie7 .x-window-header-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px; + -webkit-border-top-right-radius: 5px; + border-top-right-radius: 5px; + -moz-border-radius-bottomright: 5px; + -webkit-border-bottom-right-radius: 5px; + border-bottom-right-radius: 5px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 4px 5px 0; + border-width: 1px 1px 1px 0; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-right-frameInfo { + font-family: dh-0-5-5-0-1-1-1-0-5-4-5-0; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tr, +.x-window-header-default-right-br, +.x-window-header-default-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl, +.x-window-header-default-right-bl, +.x-window-header-default-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl, +.x-window-header-default-right-bl, +.x-window-header-default-right-tr, +.x-window-header-default-right-br, +.x-window-header-default-right-tc, +.x-window-header-default-right-bc, +.x-window-header-default-right-ml, +.x-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-window-header-default-right-tl, .x-rtl.x-window-header-default-right-ml, .x-rtl.x-window-header-default-right-bl, .x-rtl.x-window-header-default-right-tr, .x-rtl.x-window-header-default-right-mr, .x-rtl.x-window-header-default-right-br { + background-image: url(images/window-header/window-header-default-right-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-ml, +.x-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mc { + padding: 1px 0px 1px 0; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-right-tl, +.x-strict .x-ie7 .x-window-header-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 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: 0 5px 4px 5px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-bottom-frameInfo { + font-family: dh-0-0-5-5-0-1-1-1-0-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tr, +.x-window-header-default-bottom-br, +.x-window-header-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl, +.x-window-header-default-bottom-bl, +.x-window-header-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl, +.x-window-header-default-bottom-bl, +.x-window-header-default-bottom-tr, +.x-window-header-default-bottom-br, +.x-window-header-default-bottom-tc, +.x-window-header-default-bottom-bc, +.x-window-header-default-bottom-ml, +.x-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-ml, +.x-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mc { + padding: 0 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-bottom-tl, +.x-strict .x-ie7 .x-window-header-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left { + -moz-border-radius-topleft: 5px; + -webkit-border-top-left-radius: 5px; + border-top-left-radius: 5px; + -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: 5px; + -webkit-border-bottom-left-radius: 5px; + border-bottom-left-radius: 5px; + padding: 5px 0 5px 4px; + border-width: 1px 0 1px 1px; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-left-frameInfo { + font-family: dh-5-0-0-5-1-0-1-1-5-0-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tr, +.x-window-header-default-left-br, +.x-window-header-default-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl, +.x-window-header-default-left-bl, +.x-window-header-default-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl, +.x-window-header-default-left-bl, +.x-window-header-default-left-tr, +.x-window-header-default-left-br, +.x-window-header-default-left-tc, +.x-window-header-default-left-bc, +.x-window-header-default-left-ml, +.x-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-window-header-default-left-tl, .x-rtl.x-window-header-default-left-ml, .x-rtl.x-window-header-default-left-bl, .x-rtl.x-window-header-default-left-tr, .x-rtl.x-window-header-default-left-mr, .x-rtl.x-window-header-default-left-br { + background-image: url(images/window-header/window-header-default-left-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-ml, +.x-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mc { + padding: 1px 0 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-left-tl, +.x-strict .x-ie7 .x-window-header-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-top-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tr, +.x-window-header-default-collapsed-top-br, +.x-window-header-default-collapsed-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl, +.x-window-header-default-collapsed-top-bl, +.x-window-header-default-collapsed-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl, +.x-window-header-default-collapsed-top-bl, +.x-window-header-default-collapsed-top-tr, +.x-window-header-default-collapsed-top-br, +.x-window-header-default-collapsed-top-tc, +.x-window-header-default-collapsed-top-bc, +.x-window-header-default-collapsed-top-ml, +.x-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-ml, +.x-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-right-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-5-4-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tr, +.x-window-header-default-collapsed-right-br, +.x-window-header-default-collapsed-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl, +.x-window-header-default-collapsed-right-bl, +.x-window-header-default-collapsed-right-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl, +.x-window-header-default-collapsed-right-bl, +.x-window-header-default-collapsed-right-tr, +.x-window-header-default-collapsed-right-br, +.x-window-header-default-collapsed-right-tc, +.x-window-header-default-collapsed-right-bc, +.x-window-header-default-collapsed-right-ml, +.x-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-window-header-default-collapsed-right-tl, .x-rtl.x-window-header-default-collapsed-right-ml, .x-rtl.x-window-header-default-collapsed-right-bl, .x-rtl.x-window-header-default-collapsed-right-tr, .x-rtl.x-window-header-default-collapsed-right-mr, .x-rtl.x-window-header-default-collapsed-right-br { + background-image: url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-ml, +.x-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mc { + padding: 1px 0px 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-bottom-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tr, +.x-window-header-default-collapsed-bottom-br, +.x-window-header-default-collapsed-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl, +.x-window-header-default-collapsed-bottom-bl, +.x-window-header-default-collapsed-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl, +.x-window-header-default-collapsed-bottom-bl, +.x-window-header-default-collapsed-bottom-tr, +.x-window-header-default-collapsed-bottom-br, +.x-window-header-default-collapsed-bottom-tc, +.x-window-header-default-collapsed-bottom-bc, +.x-window-header-default-collapsed-bottom-ml, +.x-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-ml, +.x-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-color: #3f4757; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mc { + background-color: #3f4757; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-left-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-5-4-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tr, +.x-window-header-default-collapsed-left-br, +.x-window-header-default-collapsed-left-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl, +.x-window-header-default-collapsed-left-bl, +.x-window-header-default-collapsed-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl, +.x-window-header-default-collapsed-left-bl, +.x-window-header-default-collapsed-left-tr, +.x-window-header-default-collapsed-left-br, +.x-window-header-default-collapsed-left-tc, +.x-window-header-default-collapsed-left-bc, +.x-window-header-default-collapsed-left-ml, +.x-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-window-header-default-collapsed-left-tl, .x-rtl.x-window-header-default-collapsed-left-ml, .x-rtl.x-window-header-default-collapsed-left-bl, .x-rtl.x-window-header-default-collapsed-left-tr, .x-rtl.x-window-header-default-collapsed-left-mr, .x-rtl.x-window-header-default-collapsed-left-br { + background-image: url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-ml, +.x-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mc { + padding: 1px 0px 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 337, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-top { + -webkit-box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c -1px 0 0px 0 inset, #414b5c 1px 0 0px 0 inset; + -moz-box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c -1px 0 0px 0 inset, #414b5c 1px 0 0px 0 inset; + box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c -1px 0 0px 0 inset, #414b5c 1px 0 0px 0 inset; +} + +/* line 341, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-right { + -webkit-box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c 0 -1px 0px 0 inset, #414b5c -1px 0 0px 0 inset; + -moz-box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c 0 -1px 0px 0 inset, #414b5c -1px 0 0px 0 inset; + box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c 0 -1px 0px 0 inset, #414b5c -1px 0 0px 0 inset; +} + +/* line 345, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-bottom { + -webkit-box-shadow: #414b5c 0 -1px 0px 0 inset, #414b5c -1px 0 0px 0 inset, #414b5c 1px 0 0px 0 inset; + -moz-box-shadow: #414b5c 0 -1px 0px 0 inset, #414b5c -1px 0 0px 0 inset, #414b5c 1px 0 0px 0 inset; + box-shadow: #414b5c 0 -1px 0px 0 inset, #414b5c -1px 0 0px 0 inset, #414b5c 1px 0 0px 0 inset; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-left { + -webkit-box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c 0 -1px 0px 0 inset, #414b5c 1px 0 0px 0 inset; + -moz-box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c 0 -1px 0px 0 inset, #414b5c 1px 0 0px 0 inset; + box-shadow: #414b5c 0 1px 0px 0 inset, #414b5c 0 -1px 0px 0 inset, #414b5c 1px 0 0px 0 inset; +} + +/* line 355, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-window-header-icon { + width: 16px; + height: 16px; + color: white; + font-size: 16px; + line-height: 16px; + background-position: center center; +} +/* line 364, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-window-header-glyph { + color: white; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 380, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-ie8m .x-window-header-default .x-window-header-glyph { + color: #9fa3ab; +} + +/* line 388, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-window-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 393, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-rtl.x-window-header-icon-before-title { + margin: 0 0 0 2px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-window-header-icon-after-title { + margin: 0 0 0 2px; +} +/* line 403, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-rtl.x-window-header-icon-after-title { + margin: 0 2px 0 0; +} + +/* line 410, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 415, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-rtl.x-window-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 420, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-icon-after-title { + margin: 2px 0 0 0; +} +/* line 425, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-rtl.x-window-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 433, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-tool-after-title { + margin: 0 0 0 2px; +} +/* line 438, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-rtl.x-tool-after-title { + margin: 0 2px 0 0; +} +/* line 443, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-tool-before-title { + margin: 0 2px 0 0; +} +/* line 448, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-rtl.x-tool-before-title { + margin: 0 0 0 2px; +} + +/* line 455, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 460, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-rtl.x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 465, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-tool-before-title { + margin: 0 0 2px 0; +} +/* line 470, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-rtl.x-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 483, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-collapsed .x-window-header { + border-width: 1px !important; +} + +/* line 489, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-nbr .x-window-default-collapsed .x-window-header { + border-width: 0 !important; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-invalid-under { + padding: 2px 2px 2px 20px; + color: #c0272b; + font: normal 14px tahoma, arial, verdana, sans-serif; + line-height: 16px; + background: no-repeat 0 2px; + background-image: url(images/form/exclamation.gif); +} + +/* line 14, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +div.x-lbl-top-err-icon { + margin-bottom: 5px; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-invalid-icon { + width: 16px; + height: 16px; + margin: 0 1px; + background-image: url(images/form/exclamation.gif); + background-repeat: no-repeat; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-item-label { + color: white; + font: normal 15px/17px tahoma, arial, verdana, sans-serif; + margin-top: 5px; +} +/* line 31, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-toolbar-item .x-form-item-label { + font: normal 14px/16px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} + +/* line 45, ../../../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; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-ie6 .x-form-form-item td { + border-top-width: 0; +} +/* line 59, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-ie6 td.x-form-item-pad { + height: 5px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-field { + color: white; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-item, +.x-form-field { + font: normal 15px tahoma, arial, verdana, sans-serif; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-type-text textarea.x-form-invalid-field, .x-form-type-text input.x-form-invalid-field, +.x-form-type-password textarea.x-form-invalid-field, +.x-form-type-password input.x-form-invalid-field, +.x-form-type-number textarea.x-form-invalid-field, +.x-form-type-number input.x-form-invalid-field, +.x-form-type-email textarea.x-form-invalid-field, +.x-form-type-email input.x-form-invalid-field, +.x-form-type-search textarea.x-form-invalid-field, +.x-form-type-search input.x-form-invalid-field, +.x-form-type-tel textarea.x-form-invalid-field, +.x-form-type-tel input.x-form-invalid-field { + background-color: #15171a; + background-image: url(images/grid/invalid_line.gif); + background-repeat: repeat-x; + background-position: bottom; + border-color: #cc3300; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-item-disabled .x-form-item-label, +.x-item-disabled .x-form-field, +.x-item-disabled .x-form-display-field, +.x-item-disabled .x-form-cb-label, +.x-item-disabled .x-form-trigger { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-text { + color: white; + padding: 2px 4px 2px 4px; + background: #34383f repeat-x 0 0; + border-width: 2px; + border-style: solid; + border-color: #737b8c; + background-image: url(images/form/text-bg.gif); + height: 26px; + line-height: 18px; +} +/* line 14, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-field-toolbar .x-form-text { + height: 24px; + line-height: 16px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-content-box .x-form-text { + height: 18px; +} +/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-content-box .x-field-toolbar .x-form-text { + height: 16px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-focus { + border-color: #ff9c33; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-empty-field, +textarea.x-form-empty-field { + color: gray; +} + +/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-quirks .x-ie .x-form-text, +.x-ie7m .x-form-text { + margin-top: -1px; + margin-bottom: -1px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/TextArea.scss */ +.x-form-textarea { + line-height: normal; + height: auto; + background-image: url(images/form/text-bg.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-form-display-field-body { + height: 26px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-toolbar-item .x-form-display-field-body { + height: 24px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-form-display-field { + font: normal 15px/17px tahoma, arial, verdana, sans-serif; + color: white; + margin-top: 5px; +} +/* line 17, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-toolbar-item .x-form-display-field { + margin-top: 4px; + font: normal 14px/16px tahoma, arial, verdana, sans-serif; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box .x-window-body { + background-color: #3f4757; + border-width: 0; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-info, +.x-message-box-warning, +.x-message-box-question, +.x-message-box-error { + background-position: top left; + background-repeat: no-repeat; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-rtl.x-message-box-info, .x-rtl.x-message-box-warning, .x-rtl.x-message-box-question, .x-rtl.x-message-box-error { + background-position: top left; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-info { + background-image: url(images/shared/icon-info.gif); +} + +/* line 33, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-warning { + background-image: url(images/shared/icon-warning.gif); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-question { + background-image: url(images/shared/icon-question.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-error { + background-image: url(images/shared/icon-error.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-wrap { + height: 26px; +} +/* line 4, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-toolbar-item .x-form-cb-wrap { + height: 24px; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb { + margin-top: 4px; +} +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-toolbar-item .x-form-cb { + margin-top: 3px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-checkbox { + width: 19px; + height: 19px; + background: url(images/form/checkbox.gif) no-repeat; +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-checked .x-form-checkbox { + background-position: 0 -19px; +} + +/* Focused */ +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-checkbox-focus { + background-position: -19px 0; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-checked .x-form-checkbox-focus { + background-position: -19px -19px; +} + +/* boxLabel */ +/* line 40, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label { + margin-top: 5px; + font: normal 15px/17px tahoma, arial, verdana, sans-serif; +} +/* line 43, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-toolbar-item .x-form-cb-label { + font: normal 14px/16px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label-before { + margin-right: 4px; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-rtl.x-field .x-form-cb-label-before { + margin-right: 0; + margin-left: 4px; +} + +/* line 64, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label-after { + margin-left: 4px; +} + +/* line 69, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-rtl.x-field .x-form-cb-label-after { + margin-left: 0; + margin-right: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-checkboxgroup-body { + padding: 0 4px; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-invalid .x-form-checkboxgroup-body { + border: 1px solid #cc3300; + background-image: url(images/grid/invalid_line.gif); + background-repeat: repeat-x; + background-position: bottom; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-check-group-alt { + background: #4d515c; + border-top: 1px dotted #333333; + border-bottom: 1px dotted #333333; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-check-group-label { + color: white; + padding: 2px; + margin: 0 30px 5px 0; + border-width: 0 0 1px 0; + border-style: solid; + border-color: white; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-rtl.x-form-check-group-label { + margin: 0 0 5px 30px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset { + border: 1px solid #727c8c; + padding: 0 10px; + margin: 0 0 10px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie8m .x-fieldset, +.x-quirks .x-ie .x-fieldset { + padding-top: 0; +} +/* line 13, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie8m .x-fieldset .x-fieldset-body, +.x-quirks .x-ie .x-fieldset .x-fieldset-body { + padding-top: 0; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-checkbox { + line-height: 14px; + margin: 1px 3px 0 0; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header { + padding: 0 3px 1px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-tool { + margin-top: 1px; + padding: 0; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text { + font: 14px/14px bold tahoma, arial, verdana, sans-serif; + color: white; + padding: 1px 0; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text-collapsible { + cursor: pointer; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-with-title .x-fieldset-header-checkbox, +.x-fieldset-with-title .x-tool { + margin: 1px 3px 0 0; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-with-title .x-rtl .x-fieldset-header-checkbox, +.x-fieldset-with-title .x-rtl .x-tool { + margin: 1px 0 0 3px; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-webkit .x-fieldset-header { + -webkit-padding-start: 3px; + -webkit-padding-end: 3px; +} + +/* line 76, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-opera .x-fieldset-with-legend { + margin-top: -1px; +} +/* line 79, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-opera.x-mac .x-fieldset-header-text { + padding: 2px 0 0; +} + +/* line 87, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-strict .x-ie8 .x-fieldset-header { + margin-bottom: -1px; +} +/* line 91, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-strict .x-ie8 .x-fieldset-header .x-tool, +.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text, +.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox { + position: relative; + top: -1px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-quirks .x-ie .x-fieldset-header, +.x-ie8m .x-fieldset-header { + padding-left: 1px; + padding-right: 1px; +} + +/* line 109, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-fieldset-body { + display: none; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed { + padding-bottom: 0 !important; + border-width: 1px 1px 0 1px !important; + border-left-color: transparent !important; + border-right-color: transparent !important; +} + +/* line 123, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie6 .x-fieldset-collapsed { + border-width: 1px 0 0 0 !important; + padding-bottom: 0 !important; + margin-left: 1px; + margin-right: 1px; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-bwrap { + zoom: 1; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset .x-tool-toggle { + background-position: 0 -60px; +} +/* line 144, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset .x-tool-over .x-tool-toggle { + background-position: -15px -60px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-tool-toggle { + background-position: 0 -75px; +} +/* line 156, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-tool-over .x-tool-toggle { + background-position: -15px -75px; +} + +/* IE legend positioning bug */ +/* line 164, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-noborder legend { + position: relative; + margin-bottom: 23px; +} + +/* line 170, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-noborder legend span { + position: absolute; + left: 16px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset { + overflow: hidden; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-bwrap { + overflow: hidden; + zoom: 1; +} + +/* line 186, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-body { + overflow: hidden; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-radio { + width: 19px; + height: 19px; + background: url(images/form/radio.gif) no-repeat; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-cb-checked .x-form-radio { + background-position: 0 -19px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-radio-focus { + background-position: -19px 0; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-cb-checked .x-form-radio-focus { + background-position: -19px -19px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + background: url(images/form/trigger.gif); + width: 20px; + border-width: 0 0 2px; + border-color: #737b8c; + border-style: solid; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-rtl.x-form-trigger-wrap .x-form-trigger { + background-image: url(images/form/trigger-rtl.gif); +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-trigger-cell { + background-color: #34383f; + width: 20px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-over { + background-position: -20px 0; + border-color: #ff9c33; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap-focus .x-form-trigger { + background-position: -60px 0; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap-focus .x-form-trigger-over { + background-position: -80px 0; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-click, +.x-form-trigger-wrap-focus .x-form-trigger-click { + background-position: -40px 0; + border-color: #c76e12; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-clear-trigger { + background-image: url(images/form/clear-trigger.gif); +} + +/* line 54, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-rtl.x-form-trigger-wrap .x-form-clear-trigger { + background-image: url(images/form/clear-trigger-rtl.gif); +} + +/* line 59, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-search-trigger { + background-image: url(images/form/search-trigger.gif); +} + +/* line 64, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-rtl.x-form-trigger-wrap .x-form-search-trigger { + background-image: url(images/form/search-trigger-rtl.gif); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-quirks .prefixie6 .x-form-trigger-input-cell { + height: 26px; +} +/* line 77, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-quirks .prefixie6 .x-field-toolbar .x-form-trigger-input-cell { + height: 24px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +div.x-form-spinner-up, +div.x-form-spinner-down { + background-image: url(images/form/spinner.gif); + background-color: #34383f; + width: 20px; + height: 13px; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-rtl.x-form-trigger-wrap .x-form-spinner-up, +.x-rtl.x-form-trigger-wrap .x-form-spinner-down { + background-image: url(images/form/spinner-rtl.gif); +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-spinner-down { + background-position: 0 -13px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap-focus .x-form-spinner-down { + background-position: -60px -13px; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap .x-form-spinner-down-over { + background-position: -20px -13px; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap-focus .x-form-spinner-down-over { + background-position: -80px -13px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap .x-form-spinner-down-click { + background-position: -40px -13px; +} + +/* line 41, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item div.x-form-spinner-up, +.x-toolbar-item div.x-form-spinner-down { + background-image: url(images/form/spinner-small.gif); + height: 12px; +} +/* line 45, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-spinner-down { + background-position: 0 -12px; +} +/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down { + background-position: -60px -12px; +} +/* line 51, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-over { + background-position: -20px -12px; +} +/* line 54, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down-over { + background-position: -80px -12px; +} +/* line 57, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-click { + background-position: -40px -12px; +} + +/* line 65, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-rtl.x-form-trigger-wrap .x-form-spinner-up, +.x-toolbar-item .x-rtl.x-form-trigger-wrap .x-form-spinner-down { + background-image: url(images/form/spinner-small-rtl.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-number { + width: 30px; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-first { + background-image: url(images/grid/page-first.gif); +} + +/* line 9, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-prev { + background-image: url(images/grid/page-prev.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-next { + background-image: url(images/grid/page-next.gif); +} + +/* line 17, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-last { + background-image: url(images/grid/page-last.gif); +} + +/* line 21, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-loading { + background-image: url(images/grid/refresh.gif); +} + +/* line 27, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-first { + background-image: url(images/grid/page-first-disabled.gif); +} +/* line 31, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-prev { + background-image: url(images/grid/page-prev-disabled.gif); +} +/* line 35, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-next { + background-image: url(images/grid/page-next-disabled.gif); +} +/* line 39, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-last { + background-image: url(images/grid/page-last-disabled.gif); +} +/* line 43, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-loading { + background-image: url(images/grid/refresh-disabled.gif); +} + +/* line 51, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-rtl.x-tbar-page-first { + background-image: url(images/grid/page-last.gif); +} +/* line 55, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-rtl.x-tbar-page-prev { + background-image: url(images/grid/page-next.gif); +} +/* line 59, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-rtl.x-tbar-page-next { + background-image: url(images/grid/page-prev.gif); +} +/* line 63, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-rtl.x-tbar-page-last { + background-image: url(images/grid/page-first.gif); +} + +/* line 71, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-rtl.x-tbar-page-first { + background-image: url(images/grid/page-last-disabled.gif); +} +/* line 75, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-rtl.x-tbar-page-prev { + background-image: url(images/grid/page-next-disabled.gif); +} +/* line 79, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-rtl.x-tbar-page-next { + background-image: url(images/grid/page-prev-disabled.gif); +} +/* line 83, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-rtl.x-tbar-page-last { + background-image: url(images/grid/page-first-disabled.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist { + border-width: 2px; + border-style: solid; + border-color: #222732; + background: #404551; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-strict .x-ie7m .x-boundlist-list-ct { + position: relative; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-item { + padding: 0 3px; + line-height: 22px; + cursor: pointer; + cursor: hand; + position: relative; + /*allow hover in IE on empty items*/ + zoom: 1; + border-width: 0; + border-style: dotted; + border-color: #404551; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-selected { + background: #e5872c; + border-color: #242838; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-item-over { + background: #e5872c; + border-color: #2e3347; +} + +/* line 43, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-floating { + border-top-width: 0; +} + +/* line 47, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-above { + border-top-width: 1px; + border-bottom-width: 1px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker { + border-width: 1px; + border-style: solid; + border-color: #798294; + background-color: #21252e; + width: 177px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-header { + padding: 3px 6px; + text-align: center; + background-image: none; + background-color: #5c6980; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #627089), color-stop(100%, #535f74)); + background-image: -webkit-linear-gradient(top, #627089, #535f74); + background-image: -moz-linear-gradient(top, #627089, #535f74); + background-image: -o-linear-gradient(top, #627089, #535f74); + background-image: linear-gradient(top, #627089, #535f74); +} + +/* line 32, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-arrow { + width: 15px; + height: 15px; + top: 6px; + cursor: pointer; + background-color: #5c6980; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-datepicker-arrow:hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 55, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-next { + right: 6px; + background-image: url(images/shared/right-btn.gif); +} + +/* line 60, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-prev { + left: 6px; + background-image: url(images/shared/left-btn.gif); +} + +/* line 76, ../../../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 83, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-month .x-btn-inner { + color: white; +} +/* line 88, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-month .x-btn-split-right { + background-image: url(images/button/s-arrow-light.gif); + padding-right: 14px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-column-header { + width: 25px; + color: white; + font: normal 10px tahoma, arial, verdana, sans-serif; + text-align: right; + border-width: 0 0 1px; + border-style: solid; + border-color: #535b5c; + background-image: none; + background-color: #3a4051; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #40475a), color-stop(100%, #313745)); + background-image: -webkit-linear-gradient(top, #40475a, #313745); + background-image: -moz-linear-gradient(top, #40475a, #313745); + background-image: -o-linear-gradient(top, #40475a, #313745); + background-image: linear-gradient(top, #40475a, #313745); +} + +/* line 113, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-column-header-inner { + line-height: 20px; + padding: 0 7px 0 0; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-cell { + text-align: right; + border-width: 1px; + border-style: solid; + border-color: #21252e; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-date { + padding: 0 4px 0 0; + font: normal 14px tahoma, arial, verdana, sans-serif; + color: white; + cursor: pointer; + line-height: 19px; +} + +/* line 138, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-datepicker-date:hover { + color: white; + background-color: #7e5530; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-selected { + border-style: solid; + border-color: #864900; +} +/* line 146, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-selected .x-datepicker-date { + background-color: #e5872c; + font-weight: bold; +} + +/* line 152, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-today { + border-color: #9999aa; + border-style: solid; +} + +/* line 159, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-prevday .x-datepicker-date, +.x-datepicker-nextday .x-datepicker-date { + color: #aaaaaa; +} + +/* line 166, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-disabled a.x-datepicker-date { + background-color: #eeeeee; + cursor: default; + color: #bbbbbb; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-disabled a.x-datepicker-date:hover { + background-color: #eeeeee; +} + +/* line 179, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-footer, +.x-monthpicker-buttons { + padding: 4px 0; + border-width: 1px 0 0; + border-style: solid; + border-color: #535b5c; + background-image: none; + background-color: #3a4051; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #51596b), color-stop(49%, #4b525f), color-stop(51%, #454b58), color-stop(100%, #484e5a)); + background-image: -webkit-linear-gradient(top, #51596b, #4b525f 49%, #454b58 51%, #484e5a); + background-image: -moz-linear-gradient(top, #51596b, #4b525f 49%, #454b58 51%, #484e5a); + background-image: -o-linear-gradient(top, #51596b, #4b525f 49%, #454b58 51%, #484e5a); + background-image: linear-gradient(top, #51596b, #4b525f 49%, #454b58 51%, #484e5a); + text-align: center; +} +/* line 195, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-footer .x-btn, +.x-monthpicker-buttons .x-btn { + margin: 0 2px 0 2px; +} + +/* line 201, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker { + width: 177px; + border-width: 1px; + border-style: solid; + border-color: #798294; + background-color: #21252e; +} + +/* line 211, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-months { + border-width: 0 1px 0 0; + border-color: #798294; + border-style: solid; + width: 87px; +} +/* line 220, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-months .x-monthpicker-item { + width: 43px; +} + +/* line 225, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-years { + width: 88px; +} +/* line 228, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-years .x-monthpicker-item { + width: 44px; +} + +/* line 233, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-item { + margin: 5px 0 4px; + font: normal 14px tahoma, arial, verdana, sans-serif; + text-align: center; +} + +/* line 239, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-item-inner { + margin: 0 5px 0 5px; + color: white; + border-width: 1px; + border-style: solid; + border-color: #21252e; + line-height: 16px; + cursor: pointer; +} + +/* line 254, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-monthpicker-item-inner:hover { + background-color: #7e5530; +} + +/* line 258, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-selected { + background-color: #e5872c; + border-style: solid; + border-color: #864900; +} + +/* line 264, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav { + height: 27px; +} + +/* line 268, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button-ct { + width: 44px; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button { + height: 15px; + width: 15px; + cursor: pointer; + margin-top: 6px; + background-color: #21252e; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-next { + background-image: url(images/tools/tool-sprites.gif); + background-position: 0 -120px; +} + +/* line 299, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-next-over { + background-position: -15px -120px; +} + +/* line 303, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-prev { + background-image: url(images/tools/tool-sprites.gif); + background-position: 0 -105px; +} + +/* line 308, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-prev-over { + background-position: -15px -105px; +} + +/* line 313, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-item { + margin: 2px 0 2px; +} +/* line 317, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-item-inner { + margin: 0 5px 0 5px; +} +/* line 321, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-yearnav { + height: 22px; +} +/* line 325, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-yearnav-button { + margin-top: 3px; +} + +/* line 334, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-nlg .x-datepicker-header { + background-image: url(images/datepicker/datepicker-header-bg.gif); + background-repeat: repeat-x; + background-position: top left; +} +/* line 343, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-nlg .x-datepicker-footer, +.x-nlg .x-monthpicker-buttons { + background-image: url(images/datepicker/datepicker-footer-bg.gif); + background-repeat: repeat-x; + background-position: top left; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-datepicker-header:after { + display: none; + content: "x-slicer:bg:url(images/datepicker/datepicker-header-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-datepicker-footer:after { + display: none; + content: "x-slicer:bg:url(images/datepicker/datepicker-footer-bg.gif)"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */ +.x-form-date-trigger { + background-image: url(images/form/date-trigger.gif); +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */ +.x-rtl.x-form-trigger-wrap .x-form-date-trigger { + background-image: url(images/form/date-trigger-rtl.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/File.scss */ +.x-form-file-wrap .x-form-text { + color: gray; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker { + width: 144px; + height: 90px; + background-color: white; + border-color: white; + border-width: 0; + border-style: solid; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-item { + width: 18px; + height: 18px; + border-width: 1px; + border-color: white; + border-style: solid; + background-color: white; + cursor: pointer; + padding: 2px; +} +/* line 20, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-content-box .x-color-picker-item { + width: 12px; + height: 12px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +a.x-color-picker-item:hover { + border-color: #8bb8f3; + background-color: #deecfd; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-selected { + border-color: #8bb8f3; + background-color: #deecfd; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-item-inner { + line-height: 10px; + border-color: #aca899; + border-width: 1px; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-btn-text { + background: transparent no-repeat; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-bold, +.x-menu-item div.x-edit-bold { + background-position: 0 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-italic, +.x-menu-item div.x-edit-italic { + background-position: -16px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-underline, +.x-menu-item div.x-edit-underline { + background-position: -32px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-forecolor, +.x-menu-item div.x-edit-forecolor { + background-position: -160px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 31, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-backcolor, +.x-menu-item div.x-edit-backcolor { + background-position: -176px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifyleft, +.x-menu-item div.x-edit-justifyleft { + background-position: -112px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifycenter, +.x-menu-item div.x-edit-justifycenter { + background-position: -128px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifyright, +.x-menu-item div.x-edit-justifyright { + background-position: -144px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 55, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-insertorderedlist, +.x-menu-item div.x-edit-insertorderedlist { + background-position: -80px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 61, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-insertunorderedlist, +.x-menu-item div.x-edit-insertunorderedlist { + background-position: -96px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 67, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-increasefontsize, +.x-menu-item div.x-edit-increasefontsize { + background-position: -48px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-decreasefontsize, +.x-menu-item div.x-edit-decreasefontsize { + background-position: -64px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 79, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-sourceedit, +.x-menu-item div.x-edit-sourceedit { + background-position: -192px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 85, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-createlink, +.x-menu-item div.x-edit-createlink { + background-position: -208px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 90, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tip .x-tip-bd .x-tip-bd-inner { + padding: 5px; + padding-bottom: 1px; +} + +/* line 95, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-font-select { + font-size: 11px; + font-family: inherit; +} + +/* line 100, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-wrap textarea { + font: normal 15px tahoma, arial, verdana, sans-serif; + background-color: #34383f; + resize: none; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-body { + background: #232d38; + border-width: 1px; + border-style: solid; + border-color: #18181a; +} + +/* line 8, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-empty { + padding: 10px; + color: gray; + background-color: #232d38; + font: normal 14px tahoma, arial, verdana, sans-serif; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell { + color: white; + font: normal 14px/17px tahoma, arial, verdana, sans-serif; + background-color: #1f2933; + border-color: #ededed #454545 #ededed #454545; + border-style: solid; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-alt .x-grid-td { + background-color: #1a232b; +} +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-over .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #101010; +} +/* line 35, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-over .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #101010; +} +/* line 40, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-selected .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #101010; +} +/* line 45, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #101010; +} +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-focused .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #464646; + border-bottom-width: 1px; +} +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-td { + background-color: #efefef; +} +/* line 65, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-over .x-grid-td { + background-color: #7e552f; +} +/* line 73, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-td { + background-color: #e48627; +} +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #464646; + border-bottom-width: 1px; +} +/* line 92, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-table .x-grid-row-focused-first .x-grid-td { + border-top: 1px dotted #464646; +} +/* line 103, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-row-summary .x-grid-td { + border-bottom-color: #e48627; + border-top-width: 0; +} +/* line 108, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-row-summary .x-grid-td { + border-bottom-color: #efefef; + border-top-width: 0; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-td { + border-bottom-width: 1px; +} +/* line 121, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table { + border-top: 1px solid #1f2933; +} +/* line 125, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table-over-first { + border-top-style: solid; + border-top-color: #101010; +} +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table-selected-first { + border-top-style: dotted; + border-top-color: #101010; +} + +/* line 139, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-body .x-grid-table-focused-first { + border-top: 1px dotted #464646; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell-inner { + text-overflow: ellipsis; + padding: 2px 6px 3px 6px; +} + +/* line 163, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner { + padding-top: 1px; + padding-bottom: 2px; +} + +/* line 178, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell-special { + border-color: #ededed #454545 #ededed #454545; + border-style: solid; + border-right-width: 1px; + background-image: none; + background-color: #f6f6f6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: -moz-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: -o-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: linear-gradient(top, #f6f6f6, #e9e9e9); + /**/ + /**/ + /* */ + /**/ + /**/ + /* */ +} +/* line 191, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-cell-special { + border-right-color: #ededed #283b61; + background-image: none; + background-color: #e48627; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #e48627), color-stop(100%, #d7791b)); + background-image: -webkit-linear-gradient(left, #e48627, #d7791b); + background-image: -moz-linear-gradient(left, #e48627, #d7791b); + background-image: -o-linear-gradient(left, #e48627, #d7791b); + background-image: linear-gradient(left, #e48627, #d7791b); +} +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-nlg .x-grid-cell-special { + background-repeat: repeat-y; + background-image: url(images/grid/cell-special-bg.gif); +} +/* line 211, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-nlg .x-grid-row-selected .x-grid-cell-special { + background-image: url(images/grid/cell-special-selected-bg.gif); +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-cell-special .x-grid-cell-special:after { + display: none; + content: "x-slicer:bg:url(images/grid/cell-special-bg.gif)"; +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-cell-special .x-grid-cell-special-selected:after { + display: none; + content: "x-slicer:bg:url(images/grid/cell-special-selected-bg.gif)"; +} + +/* line 221, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-rtl.x-grid-cell-special { + border-right-width: 0; + border-left-width: 1px; +} + +/* line 228, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-dirty-cell { + background: url(images/grid/dirty.gif) no-repeat 0 0; +} + +/* line 233, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-rtl.x-grid-dirty-cell { + background-image: url(images/grid/dirty-rtl.gif); + background-position: right 0; +} + +/* line 241, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row .x-grid-cell-selected { + color: white; + background-color: #b8cfee; +} + +/* line 247, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-col-lines .x-grid-cell { + border-right-width: 1px; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-rtl.x-grid-with-col-lines .x-grid-cell { + border-right-width: 0; + border-left-width: 1px; +} + +/* line 259, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-resize-marker { + width: 1px; + background-color: #0f0f0f; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator { + position: absolute; + height: 1px; + line-height: 0px; + background-color: #77BC71; + overflow: visible; + pointer-events: none; +} +/* line 9, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator .x-grid-drop-indicator-left { + position: absolute; + top: -8px; + left: -12px; + background-image: url(images/grid/dd-insert-arrow-right.png); + height: 16px; + width: 16px; +} +/* line 18, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator .x-grid-drop-indicator-right { + position: absolute; + top: -8px; + right: -11px; + background-image: url(images/grid/dd-insert-arrow-left.png); + height: 16px; + width: 16px; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-ie6 .x-grid-drop-indicator-left { + background-image: url(images/grid/dd-insert-arrow-right.gif); +} +/* line 33, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-ie6 .x-grid-drop-indicator-right { + background-image: url(images/grid/dd-insert-arrow-left.gif); +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + width: 9px; + height: 9px; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top { + background-image: url(images/grid/col-move-top.gif); +} + +/* line 11, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-bottom { + background-image: url(images/grid/col-move-bottom.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-grid-header-ct { + border: 1px solid #18181a; + border-bottom-color: #373c4b; + background-color: #373c4b; + background-image: none; + background-color: #373c4b; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #575f77), color-stop(50%, #42485a), color-stop(51%, #373c4b), color-stop(100%, #2c303c)); + background-image: -webkit-linear-gradient(top, #575f77, #42485a 50%, #373c4b 51%, #2c303c); + background-image: -moz-linear-gradient(top, #575f77, #42485a 50%, #373c4b 51%, #2c303c); + background-image: -o-linear-gradient(top, #575f77, #42485a 50%, #373c4b 51%, #2c303c); + background-image: linear-gradient(top, #575f77, #42485a 50%, #373c4b 51%, #2c303c); +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-accordion-item .x-grid-header-ct { + border-width: 0 0 1px !important; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-accordion-item .x-grid-header-ct-hidden { + border: 0 !important; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-grid-body { + border-top-color: #c5c5c5; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-hmenu-sort-asc .x-menu-item-icon { + background-image: url(images/grid/hmenu-asc.gif); +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-hmenu-sort-desc .x-menu-item-icon { + background-image: url(images/grid/hmenu-desc.gif); +} + +/* line 40, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-cols-icon .x-menu-item-icon { + background-image: url(images/grid/columns.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header { + border-right: 1px solid #c5c5c5; + color: white; + font: normal 14px/16px tahoma, arial, verdana, sans-serif; + background-image: none; + background-color: #373c4b; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #575f77), color-stop(50%, #42485a), color-stop(51%, #373c4b), color-stop(100%, #2c303c)); + background-image: -webkit-linear-gradient(top, #575f77, #42485a 50%, #373c4b 51%, #2c303c); + background-image: -moz-linear-gradient(top, #575f77, #42485a 50%, #373c4b 51%, #2c303c); + background-image: -o-linear-gradient(top, #575f77, #42485a 50%, #373c4b 51%, #2c303c); + background-image: linear-gradient(top, #575f77, #42485a 50%, #373c4b 51%, #2c303c); +} + +/* line 18, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header { + border-right: 0 none; + border-left: 1px solid #c5c5c5; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-group-sub-header { + background: transparent; + border-top: 1px solid #c5c5c5; +} +/* line 29, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-group-sub-header .x-column-header-inner { + padding: 3px 6px 5px 6px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-inner { + padding: 4px 6px 5px 6px; + text-overflow: ellipsis; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-over, +.x-column-header-sort-ASC, +.x-column-header-sort-DESC { + background-image: none; + background-color: #496085; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6c86ae), color-stop(50%, #526c95), color-stop(51%, #496085), color-stop(100%, #405475)); + background-image: -webkit-linear-gradient(top, #6c86ae, #526c95 50%, #496085 51%, #405475); + background-image: -moz-linear-gradient(top, #6c86ae, #526c95 50%, #496085 51%, #405475); + background-image: -o-linear-gradient(top, #6c86ae, #526c95 50%, #496085 51%, #405475); + background-image: linear-gradient(top, #6c86ae, #526c95 50%, #496085 51%, #405475); +} + +/* line 51, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-nlg .x-grid-header-ct, +.x-nlg .x-column-header { + background-image: url(images/grid/column-header-bg.gif); +} + +/* line 62, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-nlg .x-column-header-over, +.x-nlg .x-column-header-sort-ASC, +.x-nlg .x-column-header-sort-DESC { + background-image: url(images/grid/column-header-over-bg.gif); +} + +/* line 70, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-open { + background-color: transparent; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-open .x-column-header-trigger { + background-color: transparent; +} + +/* line 78, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-trigger { + width: 14px; + cursor: pointer; + background-color: transparent; + background-position: 0 center; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-trigger { + background-position: right center; +} + +/* line 96, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-align-right .x-column-header-text { + margin-right: 9px; +} + +/* line 101, ../../../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: 9px; +} + +/* line 110, ../../../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: 18px; + background-position: right center; +} + +/* line 119, ../../../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: 18px; + background-position: 0 center; +} + +/* line 127, ../../../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.gif); +} + +/* line 130, ../../../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.gif); +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-column-header:after { + display: none; + content: "x-slicer:bg:url(images/grid/column-header-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-column-header-over:after { + display: none; + content: "x-slicer:bg:url(images/grid/column-header-over-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-grid-cell-inner-action-col { + padding: 3px 2px 3px 2px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-action-col { + padding-top: 2px; + padding-bottom: 2px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-action-col-cell .x-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-action-col-icon { + height: 16px; + width: 16px; + cursor: pointer; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-cell-inner-checkcolumn { + padding: 2px 6px 1px 6px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-checkcolumn { + padding-top: 1px; + padding-bottom: 0px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-checkcolumn { + width: 19px; + height: 19px; + background: url(images/form/checkbox.gif) 0 0 no-repeat; +} +/* line 17, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-item-disabled .x-grid-checkcolumn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-checkcolumn-checked { + background-position: 0 -19px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/RowNumberer.scss */ +.x-grid-cell-inner-row-numberer { + padding: 2px 5px 3px 3px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd { + border-width: 0 0 2px 0; + border-style: solid; + border-color: #283042; + padding: 10px 4px 4px 4px; + background: white; + cursor: pointer; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-not-collapsible { + cursor: default; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-collapsible .x-grid-group-title { + background-repeat: no-repeat; + background-position: left center; + background-image: url(images/grid/group-collapse.gif); + padding: 0 0 0 14px; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-rtl.x-grid-view .x-grid-group-hd-collapsible .x-grid-group-title { + background-position: right center; + padding: 0 14px 0 0; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-title { + color: black; + font: bold 14px/16px tahoma, arial, verdana, sans-serif; +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-collapsed .x-grid-group-title { + background-image: url(images/grid/group-expand.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-collapsed .x-grid-group-title { + background-image: url(images/grid/group-expand.gif); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-group-by-icon { + background-image: url(images/grid/group-by.gif); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-show-groups-icon { + background-image: url(images/grid/group-by.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ +.x-grid-rowbody { + font: normal 14px/17px tahoma, arial, verdana, sans-serif; + padding: 5px 6px 5px 6px; +} +/* line 6, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-rowbody { + padding-top: 6px; + padding-bottom: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowWrap.scss */ +.x-grid-rowwrap { + border-color: #101010; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-summary-bottom { + border-bottom-color: #373c4b; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-docked-summary { + border-width: 1px; + border-color: #18181a; + border-style: solid; +} +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-docked-summary .x-grid-table { + width: 100%; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-grid-row-summary .x-grid-cell, +.x-grid-row-summary .x-grid-rowwrap, +.x-grid-row-summary .x-grid-cell-rowbody { + border-color: #ededed #454545 #ededed #454545; + background-color: transparent !important; + border-top-width: 0; + font: normal 14px/17px tahoma, arial, verdana, sans-serif; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-grid-with-row-lines .x-grid-table-summary { + border: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-grid-locked .x-grid-inner-locked { + border-width: 0 1px 0 0; + border-style: solid; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-grid-locked .x-rtl.x-grid-inner-locked { + border-width: 0 0 0 1px; +} + +/* line 17, ../../../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 21, ../../../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 29, ../../../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 32, ../../../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 39, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-hmenu-lock .x-menu-item-icon { + background-image: url(images/grid/hmenu-lock.gif); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-hmenu-unlock .x-menu-item-icon { + background-image: url(images/grid/hmenu-unlock.gif); +} + +/* line 4, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-text { + font: normal 14px/15px tahoma, arial, verdana, sans-serif; + padding: 1px 4px 2px 4px; + height: 22px; +} +/* line 15, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-content-box .x-grid-editor .x-form-text { + height: 15px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-gecko .x-grid-editor .x-form-text { + padding-left: 3px; + padding-right: 3px; +} +/* line 31, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-trigger { + height: 22px; +} +/* line 39, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-spinner-up, .x-grid-editor .x-form-spinner-down { + height: 11px; +} +/* line 47, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb { + margin-top: 2px; +} +/* line 51, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb-wrap { + height: 22px; +} +/* line 58, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field-body { + height: 22px; +} +/* line 62, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field { + font: normal 14px/15px tahoma, arial, verdana, sans-serif; + padding: 3px 6px 4px 6px; + text-overflow: ellipsis; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-action-col-field { + padding: 3px 2px 3px 2px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x-tree-cell-editor .x-form-text { + padding-left: 1px; + padding-right: 1px; +} +/* line 8, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x-gecko .x-tree-cell-editor .x-form-text { + padding-left: 0px; + padding-right: 0px; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-field { + margin: 0 1px 0 1px; +} +/* line 7, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-display-field { + padding: 3px 5px 4px 5px; +} +/* line 16, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-action-col-field { + padding: 3px 1px 3px 1px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-text { + padding: 1px 3px 2px 3px; +} +/* line 30, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-gecko .x-grid-row-editor .x-form-text { + padding-left: 2px; + padding-right: 2px; +} +/* line 38, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-panel-body { + border-top: 1px solid #18181a !important; + border-bottom: 1px solid #18181a !important; + padding: 4px 0 4px 0; + background-color: #4b5d83; +} +/* line 48, ../../../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 53, ../../../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 137, ../../../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: 4px 4px 4px 4px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-color: #4b5d83; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mc { + background-color: #4b5d83; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-grid-row-editor-buttons-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-grid-row-editor-buttons-default-bottom-frameInfo { + font-family: th-0-0-5-5-0-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tr, +.x-grid-row-editor-buttons-default-bottom-br, +.x-grid-row-editor-buttons-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl, +.x-grid-row-editor-buttons-default-bottom-bl, +.x-grid-row-editor-buttons-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl, +.x-grid-row-editor-buttons-default-bottom-bl, +.x-grid-row-editor-buttons-default-bottom-tr, +.x-grid-row-editor-buttons-default-bottom-br, +.x-grid-row-editor-buttons-default-bottom-tc, +.x-grid-row-editor-buttons-default-bottom-bc, +.x-grid-row-editor-buttons-default-bottom-ml, +.x-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-ml, +.x-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mc { + padding: 4px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-tl, +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-row-editor-buttons-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 4px 4px 4px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #4b5d83; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mc { + background-color: #4b5d83; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-grid-row-editor-buttons-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-grid-row-editor-buttons-default-top-frameInfo { + font-family: th-5-5-0-0-1-1-0-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tr, +.x-grid-row-editor-buttons-default-top-br, +.x-grid-row-editor-buttons-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl, +.x-grid-row-editor-buttons-default-top-bl, +.x-grid-row-editor-buttons-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl, +.x-grid-row-editor-buttons-default-top-bl, +.x-grid-row-editor-buttons-default-top-tr, +.x-grid-row-editor-buttons-default-top-br, +.x-grid-row-editor-buttons-default-top-tc, +.x-grid-row-editor-buttons-default-top-bc, +.x-grid-row-editor-buttons-default-top-ml, +.x-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-ml, +.x-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mc { + padding: 0px 0px 4px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-tl, +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-row-editor-buttons-default-top:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 97, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons-default-bottom { + top: 31px; +} + +/* line 103, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons-default-top { + bottom: 31px; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons { + border-color: #18181a; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-row-editor-update-button { + margin-right: 2px; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-row-editor-cancel-button { + margin-left: 2px; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-rtl.x-row-editor-update-button { + margin-left: 2px; + margin-right: auto; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-rtl.x-row-editor-cancel-button { + margin-right: 2px; + margin-left: auto; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-errors .x-tip-body { + padding: 5px; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-errors-item { + list-style: disc; + margin-left: 15px; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-rtl.x-grid-row-editor-errors .x-grid-row-editor-errors-item { + margin-left: 0; + margin-right: 15px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-cell-inner-row-expander { + padding: 7px 7px 6px 7px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-row-expander { + padding-top: 6px; + padding-bottom: 5px; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-expander { + width: 9px; + height: 9px; + cursor: pointer; + background-image: url(images/grid/group-collapse.gif); +} +/* line 20, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-collapsed .x-grid-row-expander { + background-image: url(images/grid/group-expand.gif); +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/property/Grid.scss */ +.x-grid-cell-inner-property-name { + background-image: url(images/grid/property-cell-bg.gif); + background-repeat: no-repeat; + background-position: -16px 2px; + padding-left: 12px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-layout-ct { + background-color: white; + padding: 0; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-panel-header-text-container { + color: white; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + text-transform: none; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item { + margin: 0; +} +/* line 16, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd { + background: #5c6b82; + border-top-color: #606877; + padding: 4px 5px 5px 5px; +} +/* line 22, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd-sibling-expanded { + border-top-color: #18181a; +} +/* line 26, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd-last-collapsed { + border-bottom-color: #5c6b82; +} +/* line 30, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-body { + border-width: 0; +} + +/* line 37, ../../../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 -255px; +} +/* line 42, ../../../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 -240px; +} +/* line 50, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-over .x-tool-collapse-top, +.x-accordion-hd .x-tool-over .x-tool-collapse-bottom { + background-position: -15px -255px; +} +/* line 55, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-over .x-tool-expand-top, +.x-accordion-hd .x-tool-over .x-tool-expand-bottom { + background-position: -15px -240px; +} +/* line 61, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-img { + background-color: #5c6b82; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-collapse-el { + cursor: pointer; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-left, +.x-layout-split-right { + top: 50%; + margin-top: -18px; + width: 5px; + height: 35px; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-top, +.x-layout-split-bottom { + left: 50%; + width: 35px; + height: 5px; + margin-left: -18px; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-left { + background-image: url(images/util/splitter/mini-left.gif); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-right { + background-image: url(images/util/splitter/mini-right.gif); +} + +/* line 31, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-rtl.x-layout-split-left { + background-image: url(images/util/splitter/mini-right.gif); +} +/* line 35, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-rtl.x-layout-split-right { + background-image: url(images/util/splitter/mini-left.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-top { + background-image: url(images/util/splitter/mini-top.gif); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-bottom { + background-image: url(images/util/splitter/mini-bottom.gif); +} + +/* line 50, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-left { + background-image: url(images/util/splitter/mini-right.gif); +} +/* line 54, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-right { + background-image: url(images/util/splitter/mini-left.gif); +} +/* line 60, ../../../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.gif); +} +/* line 64, ../../../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.gif); +} +/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-top { + background-image: url(images/util/splitter/mini-bottom.gif); +} +/* line 74, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-bottom { + background-image: url(images/util/splitter/mini-top.gif); +} + +/* line 79, ../../../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 83, ../../../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 1, ../../../ext-theme-neutral/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + background-color: #3f4757; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-body { + background: #414551; + padding: 2px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-icon-separator { + left: 24px; + border-left: solid 1px #222233; + background-color: #666666; + width: 2px; +} + +/* line 27, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu .x-menu-icon-separator { + left: auto; + right: 24px; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item { + padding: 1px; + cursor: pointer; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-indent { + margin-left: 30px; +} + +/* line 51, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-indent { + margin-left: 0; + margin-right: 30px; +} + +/* line 57, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-active { + background-image: none; + background-color: #ed9200; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fc9b00), color-stop(100%, #d98500)); + background-image: -webkit-linear-gradient(top, #fc9b00, #d98500); + background-image: -moz-linear-gradient(top, #fc9b00, #d98500); + background-image: -o-linear-gradient(top, #fc9b00, #d98500); + background-image: linear-gradient(top, #fc9b00, #d98500); + border-color: #d38200; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + border-width: 1px; + border-style: solid; + padding: 0; +} +/* line 75, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-nlg .x-menu-item-active { + background: #ed9200 repeat-x left top; + background-image: url(images/menu/menu-item-active-bg.gif); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-link { + line-height: 22px; + padding: 0 0 0 30px; + display: inline-block; +} + +/* line 91, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-link { + padding: 0 30px 0 0; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-right-check-item-text { + padding-right: 22px; +} + +/* line 102, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-right-check-item-text { + padding-left: 22px; + padding-right: 0; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-icon { + width: 16px; + height: 16px; + top: 4px; + left: 3px; + background-position: center center; +} + +/* line 116, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-glyph { + font-size: 16px; + line-height: 16px; + color: white; + opacity: 0.5; +} +/* line 132, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie8m .x-menu-item-glyph { + color: #a0a2a8; +} + +/* line 142, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-gecko .x-menu-item-active .x-menu-item-icon, +.x-quirks .x-menu-item-active .x-menu-item-icon, +.x-ie9m .x-menu-item-active .x-menu-item-icon { + top: 3px; + left: 2px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-icon { + left: auto; + right: 3px; +} + +/* line 159, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-gecko .x-menu-item-active .x-rtl.x-menu-item-icon, +.x-quirks .x-menu-item-active .x-rtl.x-menu-item-icon, +.x-ie9m .x-menu-item-active .x-rtl.x-menu-item-icon { + left: auto; + right: 2px; +} + +/* line 168, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-icon-right { + width: 16px; + height: 16px; + top: 3px; + right: 3px; + background-position: center center; +} + +/* line 177, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-icon-right { + right: auto; + left: 3px; +} + +/* line 183, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-text { + font-size: 14px; + color: white; + cursor: pointer; + margin-right: 16px; +} + +/* line 193, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +a.x-rtl .x-menu-item-text { + margin-right: 0; + margin-left: 16px; +} + +/* line 201, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-checked .x-menu-item-icon, .x-menu-item-checked .x-menu-item-icon-right { + background-image: url(images/menu/checked.gif); +} +/* line 204, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-checked .x-menu-group-icon { + background-image: url(images/menu/group-checked.gif); +} + +/* line 210, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-unchecked .x-menu-item-icon, .x-menu-item-unchecked .x-menu-item-icon-right { + background-image: url(images/menu/unchecked.gif); +} +/* line 213, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-unchecked .x-menu-group-icon { + background-image: none; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-separator { + height: 2px; + border-top: solid 1px #222233; + background-color: #666666; + margin: 2px 0; + padding: 0; +} + +/* line 226, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-arrow { + width: 12px; + height: 9px; + top: 7px; + right: 0; + background-image: url(images/menu/menu-parent.gif); +} + +/* line 239, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-gecko .x-menu-item-active .x-menu-item-arrow, +.x-quirks .x-menu-item-active .x-menu-item-arrow, +.x-ie9m .x-menu-item-active .x-menu-item-arrow { + top: 6px; + right: -1px; +} + +/* line 246, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-arrow { + left: 0; + right: auto; + background-image: url(images/menu/menu-parent-left.gif); +} + +/* line 257, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-gecko .x-menu-item-active .x-rtl.x-menu-item-arrow, +.x-ie9m .x-menu-item-active .x-rtl.x-menu-item-arrow, +.x-quirks .x-menu-item-active .x-rtl.x-menu-item-arrow { + right: auto; + left: -1px; +} + +/* line 264, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/* line 270, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-content-box .x-menu-icon-separator { + width: 1px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-content-box .x-menu-item-separator { + height: 1px; +} + +/* line 281, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie .x-menu-item-disabled .x-menu-item-icon { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 285, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie .x-menu-item-disabled .x-menu-item-text { + background-color: transparent; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-date-item { + border-color: #99BBE8; +} + +/* line 300, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item .x-form-item-label { + font-size: 14px; + color: white; +} + +/* line 306, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top { + height: 8px; + background-image: url(images/menu/scroll-top.gif); +} + +/* line 310, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-bottom { + height: 8px; + background-image: url(images/menu/scroll-bottom.gif); +} + +/* line 316, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top, .x-menu-scroll-bottom { + background-color: #414551; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-menu-item-link:after { + display: none; + content: "x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool { + cursor: pointer; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-img { + overflow: hidden; + width: 15px; + height: 15px; + background-image: url(images/tools/tool-sprites.gif); + margin: 0; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-placeholder { + visibility: hidden; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-close { + background-position: 0 0; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-minimize { + background-position: 0 -15px; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-maximize { + background-position: 0 -30px; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-restore { + background-position: 0 -45px; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-toggle { + background-position: 0 -60px; +} +/* line 53, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-panel-collapsed .x-tool-toggle { + background-position: 0 -75px; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-gear { + background-position: 0 -90px; +} + +/* line 62, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-prev { + background-position: 0 -105px; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-next { + background-position: 0 -120px; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-pin { + background-position: 0 -135px; +} + +/* line 74, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-unpin { + background-position: 0 -150px; +} + +/* line 78, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-right { + background-position: 0 -165px; +} + +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-left { + background-position: 0 -180px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-down { + background-position: 0 -195px; +} + +/* line 90, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-up { + background-position: 0 -210px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-refresh { + background-position: 0 -225px; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-plus { + background-position: 0 -240px; +} + +/* line 102, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-minus { + background-position: 0 -255px; +} + +/* line 106, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-search { + background-position: 0 -270px; +} + +/* line 110, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-save { + background-position: 0 -285px; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-help { + background-position: 0 -300px; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-print { + background-position: 0 -315px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand { + background-position: 0 -330px; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-collapse { + background-position: 0 -345px; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-resize { + background-position: 0 -360px; +} + +/* line 134, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-move { + background-position: 0 -375px; +} + +/* line 139, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-bottom, +.x-tool-collapse-bottom { + background-position: 0 -195px; +} + +/* line 144, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-top, +.x-tool-collapse-top { + background-position: 0 -210px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-left, +.x-tool-collapse-left { + background-position: 0 -180px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-right, +.x-tool-collapse-right { + background-position: 0 -165px; +} + +/* line 161, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-rtl.x-tool-expand-left, .x-rtl.x-tool-collapse-left { + background-position: 0 -165px; +} +/* line 166, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-rtl.x-tool-expand-right, .x-rtl.x-tool-collapse-right { + background-position: 0 -180px; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-close { + background-position: -15px 0; +} +/* line 178, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-minimize { + background-position: -15px -15px; +} +/* line 182, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-maximize { + background-position: -15px -30px; +} +/* line 186, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-restore { + background-position: -15px -45px; +} +/* line 190, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-toggle { + background-position: -15px -60px; +} +/* line 195, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-panel-collapsed .x-tool-over .x-tool-toggle { + background-position: -15px -75px; +} +/* line 200, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-gear { + background-position: -15px -90px; +} +/* line 204, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-prev { + background-position: -15px -105px; +} +/* line 208, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-next { + background-position: -15px -120px; +} +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-pin { + background-position: -15px -135px; +} +/* line 216, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-unpin { + background-position: -15px -150px; +} +/* line 220, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-right { + background-position: -15px -165px; +} +/* line 224, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-left { + background-position: -15px -180px; +} +/* line 228, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-down { + background-position: -15px -195px; +} +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-up { + background-position: -15px -210px; +} +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-refresh { + background-position: -15px -225px; +} +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-plus { + background-position: -15px -240px; +} +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-minus { + background-position: -15px -255px; +} +/* line 248, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-search { + background-position: -15px -270px; +} +/* line 252, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-save { + background-position: -15px -285px; +} +/* line 256, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-help { + background-position: -15px -300px; +} +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-print { + background-position: -15px -315px; +} +/* line 264, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand { + background-position: -15px -330px; +} +/* line 268, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-collapse { + background-position: -15px -345px; +} +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-resize { + background-position: -15px -360px; +} +/* line 276, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-move { + background-position: -15px -375px; +} +/* line 281, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-bottom, +.x-tool-over .x-tool-collapse-bottom { + background-position: -15px -195px; +} +/* line 286, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-top, +.x-tool-over .x-tool-collapse-top { + background-position: -15px -210px; +} +/* line 291, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-left, +.x-tool-over .x-tool-collapse-left { + background-position: -15px -180px; +} +/* line 296, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-right, +.x-tool-over .x-tool-collapse-right { + background-position: -15px -165px; +} +/* line 303, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-rtl.x-tool-expand-left, .x-tool-over .x-rtl.x-tool-collapse-left { + background-position: -15px -165px; +} +/* line 308, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-rtl.x-tool-expand-right, .x-tool-over .x-rtl.x-tool-collapse-right { + background-position: -15px -180px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle { + position: absolute; + z-index: 100; + font-size: 1px; + line-height: 6px; + overflow: hidden; + zoom: 1; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + background-color: #fff; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-collapsed .x-resizable-handle { + display: none; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-north { + cursor: n-resize; +} +/* line 26, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south { + cursor: s-resize; +} +/* line 29, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east { + cursor: e-resize; +} +/* line 32, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-west { + cursor: w-resize; +} +/* line 35, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast { + cursor: se-resize; +} +/* line 38, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest { + cursor: nw-resize; +} +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast { + cursor: ne-resize; +} +/* line 44, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest { + cursor: sw-resize; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-east { + width: 6px; + height: 100%; + right: 0; + top: 0; +} + +/* line 56, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-south { + width: 100%; + height: 6px; + left: 0; + bottom: 0; +} + +/* line 63, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-west { + width: 6px; + height: 100%; + left: 0; + top: 0; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-north { + width: 100%; + height: 6px; + left: 0; + top: 0; +} + +/* line 77, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-southeast { + width: 6px; + height: 6px; + right: 0; + bottom: 0; + z-index: 101; +} + +/* line 85, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-northwest { + width: 6px; + height: 6px; + left: 0; + top: 0; + z-index: 101; +} + +/* line 93, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-northeast { + width: 6px; + height: 6px; + right: 0; + top: 0; + z-index: 101; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-southwest { + width: 6px; + height: 6px; + left: 0; + bottom: 0; + z-index: 101; +} + +/*IE rounding error*/ +/* line 111, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-ie .x-resizable-handle-east { + margin-right: -1px; + /*IE rounding error*/ +} +/* line 115, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-ie .x-resizable-handle-south { + margin-bottom: -1px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-pinned .x-resizable-handle, +.x-resizable-over .x-resizable-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 127, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-window .x-window-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-window-collapsed .x-window-handle { + display: none; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-proxy { + border: 1px dashed #3b5a82; + position: absolute; + overflow: hidden; + z-index: 50000; +} + +/* line 148, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east, +.x-resizable-over .x-resizable-handle-west, +.x-resizable-pinned .x-resizable-handle-east, +.x-resizable-pinned .x-resizable-handle-west { + background-image: url(images/sizer/e-handle.gif); +} +/* line 154, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south, +.x-resizable-over .x-resizable-handle-north, +.x-resizable-pinned .x-resizable-handle-south, +.x-resizable-pinned .x-resizable-handle-north { + background-image: url(images/sizer/s-handle.gif); +} +/* line 159, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast, +.x-resizable-pinned .x-resizable-handle-southeast { + background-position: top left; + background-image: url(images/sizer/se-handle.gif); +} +/* line 164, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest, +.x-resizable-pinned .x-resizable-handle-northwest { + background-position: bottom right; + background-image: url(images/sizer/nw-handle.gif); +} +/* line 169, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast, +.x-resizable-pinned .x-resizable-handle-northeast { + background-position: bottom left; + background-image: url(images/sizer/ne-handle.gif); +} +/* line 174, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest, +.x-resizable-pinned .x-resizable-handle-southwest { + background-position: top right; + background-image: url(images/sizer/sw-handle.gif); +} + +/* Horizontal styles */ +/* line 2, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz { + padding-left: 7px; + background: no-repeat 0 -15px; +} +/* line 6, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-end { + padding-right: 7px; + background: no-repeat right -30px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-inner { + height: 15px; +} + +/* line 20, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-ie6 .x-form-item .x-slider-horz, +.x-ie7 .x-form-item .x-slider-horz, +.x-quirks .x-ie .x-form-item .x-slider-horz { + margin-top: 6px; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb { + width: 14px; + height: 15px; + margin-left: -7px; + background-image: url(images/slider/slider-thumb.png); +} + +/* line 33, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb-over { + background-position: -14px -15px; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb-drag { + background-position: -28px -30px; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-rtl.x-slider-horz { + padding-left: 0; + padding-right: 7px; + background-position: right -30px; +} +/* line 47, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-rtl.x-slider-horz .x-slider-end { + padding-right: 0; + padding-left: 7px; + background-position: left -15px; +} +/* line 53, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-rtl.x-slider-horz .x-slider-thumb { + margin-right: -7px; +} + +/* Vertical styles */ +/* line 60, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert { + padding-top: 7px; + background: no-repeat -30px 0; +} + +/* line 65, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-end { + padding-bottom: 7px; + background: no-repeat -15px bottom; + width: 15px; +} + +/* line 71, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-inner { + width: 15px; +} + +/* line 75, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb { + width: 15px; + height: 14px; + margin-bottom: -7px; + background-image: url(images/slider/slider-v-thumb.png); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb-over { + background-position: -15px -14px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb-drag { + background-position: -30px -28px; +} + +/* line 92, ../../../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 98, ../../../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); +} + +/** + * 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-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-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} [$ui-border-width=$tab-border-width] + * The border-width of 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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 + * + * @param {color} [$ui-border-bottom-color=$tabbar-strip-border-color] + * The bottom border color of inactive tabs. + * + * @member Ext.tab.Tab + */ +/** + * Creates a visual theme for a Tab Bar + * + * @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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 {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 {number} [$ui-tab-height] + * The height of tabs that will be used in this tabbar UI. The tabbar body is given + * a fixed height to leave room for the tabs, and so that the tabbar does not collapse + * when it does not contain any tabs. + * + * @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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-tab-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 137, ../../../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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #616f8c; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mc { + background-color: #616f8c; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-top-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tr, +.x-tab-default-top-br, +.x-tab-default-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl, +.x-tab-default-top-bl, +.x-tab-default-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl, +.x-tab-default-top-bl, +.x-tab-default-top-tr, +.x-tab-default-top-br, +.x-tab-default-top-tc, +.x-tab-default-top-bc, +.x-tab-default-top-ml, +.x-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-ml, +.x-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-top-tl, +.x-strict .x-ie7 .x-tab-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 3px 9px 3px 9px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-color: #616f8c; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mc { + background-color: #616f8c; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-bottom-frameInfo { + font-family: th-0-0-4-4-0-1-1-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tr, +.x-tab-default-bottom-br, +.x-tab-default-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl, +.x-tab-default-bottom-bl, +.x-tab-default-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl, +.x-tab-default-bottom-bl, +.x-tab-default-bottom-tr, +.x-tab-default-bottom-br, +.x-tab-default-bottom-tc, +.x-tab-default-bottom-bc, +.x-tab-default-bottom-ml, +.x-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-ml, +.x-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mc { + padding: 3px 6px 0px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-bottom-tl, +.x-strict .x-ie7 .x-tab-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #616f8c; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mc { + background-color: #616f8c; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-left-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tr, +.x-tab-default-left-br, +.x-tab-default-left-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl, +.x-tab-default-left-bl, +.x-tab-default-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl, +.x-tab-default-left-bl, +.x-tab-default-left-tr, +.x-tab-default-left-br, +.x-tab-default-left-tc, +.x-tab-default-left-bc, +.x-tab-default-left-ml, +.x-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-ml, +.x-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-left-tl, +.x-strict .x-ie7 .x-tab-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-left:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-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: 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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #616f8c; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mc { + background-color: #616f8c; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-right-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tr, +.x-tab-default-right-br, +.x-tab-default-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl, +.x-tab-default-right-bl, +.x-tab-default-right-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl, +.x-tab-default-right-bl, +.x-tab-default-right-tr, +.x-tab-default-right-br, +.x-tab-default-right-tc, +.x-tab-default-right-bc, +.x-tab-default-right-ml, +.x-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-ml, +.x-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-right-tl, +.x-strict .x-ie7 .x-tab-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-right:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 307, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default { + border-color: #2e3746; + margin: 0 0 0 2px; + cursor: pointer; +} +/* line 312, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-inner { + font-size: 14px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + color: white; + line-height: 13px; +} +/* line 322, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-icon-el { + width: 16px; + height: 16px; + line-height: 16px; + background-position: center center; +} +/* line 329, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-glyph { + font-size: 16px; + color: white; + opacity: 0.5; +} +/* line 343, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default .x-tab-glyph { + color: #b0b7c5; +} +/* line 351, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default { + padding-left: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-button { + padding-left: 9px; +} +/* line 358, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-icon-el { + left: 9px; +} + +/* line 366, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-icon .x-tab-inner { + width: 16px; +} + +/* line 373, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default { + margin: 0 2px 0 0; +} + +/* line 379, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default { + margin: 0 2px 0 0; +} + +/* line 384, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-left { + margin: 0 2px 0 0; +} + +/* line 389, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-left { + margin: 0 0 0 2px; +} + +/* line 396, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top, +.x-tab-default-left, +.x-tab-default-right { + border-bottom: 1px solid #18181a; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom { + border-top: 1px solid #18181a; +} + +/* line 438, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-tab-default-left { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} + +/* line 449, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-left { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-rtl.x-tab-default-left { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +} + +/* line 454, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-tab-default-right { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +} + +/* line 465, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-right { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-rtl.x-tab-default-right { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} + +/* line 471, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-icon-text-left .x-tab-inner { + padding-left: 20px; +} + +/* line 478, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-icon-text-left .x-tab-inner { + padding-left: 0; + padding-right: 20px; +} + +/* line 485, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-over { + background-color: #6d7b9a; +} +/* line 509, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-over .x-tab-glyph { + color: white; +} +/* line 516, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-over .x-tab-glyph { + color: #b6bdcc; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active { + border-color: #74400e; + background-color: #ed9200; +} +/* line 566, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active .x-tab-glyph { + color: white; +} +/* line 573, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-active .x-tab-glyph { + color: #f6c87f; +} + +/* line 581, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active, +.x-tab-default-left-active, +.x-tab-default-right-active { + border-bottom: 1px solid #ed9200; +} + +/* line 594, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active { + border-top: 1px solid #ed9200; +} + +/* line 607, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled { + border-color: #39445a; + cursor: default; +} +/* line 620, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-inner { + color: #c3b3b3; +} +/* line 639, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 644, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-glyph { + color: #c3b3b3; + opacity: 0.3; + filter: none; +} +/* line 658, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-disabled .x-tab-glyph { + color: #697390; +} + +/* line 667, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled, +.x-tab-default-left-disabled, +.x-tab-default-right-disabled { + border-color: #39445a #39445a #18181a; +} + +/* line 671, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled { + border-color: #18181a #39445a #39445a #39445a; +} + +/* line 699, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default { + background-image: none; +} + +/* line 710, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-tl, +.x-tab-default-top-over .x-frame-bl, +.x-tab-default-top-over .x-frame-tr, +.x-tab-default-top-over .x-frame-br, +.x-tab-default-top-over .x-frame-tc, +.x-tab-default-top-over .x-frame-bc, +.x-tab-default-left-over .x-frame-tl, +.x-tab-default-left-over .x-frame-bl, +.x-tab-default-left-over .x-frame-tr, +.x-tab-default-left-over .x-frame-br, +.x-tab-default-left-over .x-frame-tc, +.x-tab-default-left-over .x-frame-bc, +.x-tab-default-right-over .x-frame-tl, +.x-tab-default-right-over .x-frame-bl, +.x-tab-default-right-over .x-frame-tr, +.x-tab-default-right-over .x-frame-br, +.x-tab-default-right-over .x-frame-tc, +.x-tab-default-right-over .x-frame-bc { + background-image: url(images/tab/tab-default-top-over-corners.gif); +} +/* line 714, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-ml, +.x-tab-default-top-over .x-frame-mr, +.x-tab-default-left-over .x-frame-ml, +.x-tab-default-left-over .x-frame-mr, +.x-tab-default-right-over .x-frame-ml, +.x-tab-default-right-over .x-frame-mr { + background-image: url(images/tab/tab-default-top-over-sides.gif); +} +/* line 717, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-mc, +.x-tab-default-left-over .x-frame-mc, +.x-tab-default-right-over .x-frame-mc { + background-color: #6d7b9a; +} + +/* line 732, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-tl, +.x-tab-default-bottom-over .x-frame-bl, +.x-tab-default-bottom-over .x-frame-tr, +.x-tab-default-bottom-over .x-frame-br, +.x-tab-default-bottom-over .x-frame-tc, +.x-tab-default-bottom-over .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-over-corners.gif); +} +/* line 736, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-ml, +.x-tab-default-bottom-over .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-over-sides.gif); +} +/* line 739, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-mc { + background-color: #6d7b9a; +} + +/* line 756, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-tl, +.x-tab-default-top-active .x-frame-bl, +.x-tab-default-top-active .x-frame-tr, +.x-tab-default-top-active .x-frame-br, +.x-tab-default-top-active .x-frame-tc, +.x-tab-default-top-active .x-frame-bc, +.x-tab-default-left-active .x-frame-tl, +.x-tab-default-left-active .x-frame-bl, +.x-tab-default-left-active .x-frame-tr, +.x-tab-default-left-active .x-frame-br, +.x-tab-default-left-active .x-frame-tc, +.x-tab-default-left-active .x-frame-bc, +.x-tab-default-right-active .x-frame-tl, +.x-tab-default-right-active .x-frame-bl, +.x-tab-default-right-active .x-frame-tr, +.x-tab-default-right-active .x-frame-br, +.x-tab-default-right-active .x-frame-tc, +.x-tab-default-right-active .x-frame-bc { + background-image: url(images/tab/tab-default-top-active-corners.gif); +} +/* line 760, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-ml, +.x-tab-default-top-active .x-frame-mr, +.x-tab-default-left-active .x-frame-ml, +.x-tab-default-left-active .x-frame-mr, +.x-tab-default-right-active .x-frame-ml, +.x-tab-default-right-active .x-frame-mr { + background-image: url(images/tab/tab-default-top-active-sides.gif); +} +/* line 763, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-mc, +.x-tab-default-left-active .x-frame-mc, +.x-tab-default-right-active .x-frame-mc { + background-color: #ed9200; +} + +/* line 778, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-tl, +.x-tab-default-bottom-active .x-frame-bl, +.x-tab-default-bottom-active .x-frame-tr, +.x-tab-default-bottom-active .x-frame-br, +.x-tab-default-bottom-active .x-frame-tc, +.x-tab-default-bottom-active .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-active-corners.gif); +} +/* line 782, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-ml, +.x-tab-default-bottom-active .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-active-sides.gif); +} +/* line 785, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-mc { + background-color: #ed9200; +} + +/* line 802, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-tl, +.x-tab-default-top-disabled .x-frame-bl, +.x-tab-default-top-disabled .x-frame-tr, +.x-tab-default-top-disabled .x-frame-br, +.x-tab-default-top-disabled .x-frame-tc, +.x-tab-default-top-disabled .x-frame-bc, +.x-tab-default-left-disabled .x-frame-tl, +.x-tab-default-left-disabled .x-frame-bl, +.x-tab-default-left-disabled .x-frame-tr, +.x-tab-default-left-disabled .x-frame-br, +.x-tab-default-left-disabled .x-frame-tc, +.x-tab-default-left-disabled .x-frame-bc, +.x-tab-default-right-disabled .x-frame-tl, +.x-tab-default-right-disabled .x-frame-bl, +.x-tab-default-right-disabled .x-frame-tr, +.x-tab-default-right-disabled .x-frame-br, +.x-tab-default-right-disabled .x-frame-tc, +.x-tab-default-right-disabled .x-frame-bc { + background-image: url(images/tab/tab-default-top-disabled-corners.gif); +} +/* line 806, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-ml, +.x-tab-default-top-disabled .x-frame-mr, +.x-tab-default-left-disabled .x-frame-ml, +.x-tab-default-left-disabled .x-frame-mr, +.x-tab-default-right-disabled .x-frame-ml, +.x-tab-default-right-disabled .x-frame-mr { + background-image: url(images/tab/tab-default-top-disabled-sides.gif); +} +/* line 809, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-mc, +.x-tab-default-left-disabled .x-frame-mc, +.x-tab-default-right-disabled .x-frame-mc { + background-color: #435881; +} + +/* line 824, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-tl, +.x-tab-default-bottom-disabled .x-frame-bl, +.x-tab-default-bottom-disabled .x-frame-tr, +.x-tab-default-bottom-disabled .x-frame-br, +.x-tab-default-bottom-disabled .x-frame-tc, +.x-tab-default-bottom-disabled .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-disabled-corners.gif); +} +/* line 828, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-ml, +.x-tab-default-bottom-disabled .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-disabled-sides.gif); +} +/* line 831, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-mc { + background-color: #435881; +} + +/* line 850, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default-top, +.x-nbr .x-tab-default-left, +.x-nbr .x-tab-default-right { + border-bottom-width: 1px !important; +} +/* line 853, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default-bottom { + border-top-width: 1px !important; +} + +/* line 861, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn { + width: 11px; + height: 11px; + background-image: url(images/tab/tab-default-close.gif); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 870, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn-over { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 880, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn { + top: 2px; + right: 2px; +} + +/* line 886, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default .x-tab-close-btn { + right: auto; + left: 2px; +} + +/* line 924, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-close-btn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 939, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-closable .x-tab-wrap { + padding-right: 14px; +} + +/* line 944, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-closable .x-tab-wrap { + padding-right: 0px; + padding-left: 14px; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-over:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-over:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-active:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-active:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-disabled:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-disabled:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 94, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default { + border-style: solid; + border-color: #18181a; +} + +/* line 100, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top { + padding: 1px 0 0; + border-width: 1px 1px 0; +} + +/* line 107, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom { + padding: 0 0 1px 0; + border-width: 0 1px 1px 1px; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left { + padding: 0 0 0 1px; + border-width: 1px 0 1px 1px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-left { + padding: 0 1px 0 0; + border-width: 1px 1px 1px 0; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right { + padding: 0 1px 0 0; + border-width: 1px 1px 1px 0; +} + +/* line 138, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-right { + padding: 0 0 0 1px; + border-width: 1px 0 1px 1px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-horizontal { + height: 25px; +} +/* line 153, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-default-horizontal { + height: 23px; +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-vertical { + width: 25px; +} +/* line 165, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-default-vertical { + width: 23px; +} + +/* line 172, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-top { + padding-bottom: 2px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-bottom { + padding-top: 2px; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-left { + padding-right: 2px; +} + +/* line 185, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-body-default-left { + padding-right: 0; + padding-left: 2px; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-right { + padding-left: 2px; +} + +/* line 196, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-body-default-right { + padding-left: 0; + padding-right: 2px; +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default { + border-style: solid; + border-color: #18181a; + background-color: #ed9200; +} + +/* line 210, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-strip-default-horizontal { + height: 2px; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-strip-default-vertical { + width: 2px; +} + +/* line 224, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-top { + border-width: 1px 0 0 0; + height: 3px; +} +/* line 227, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-top { + border-width: 1px 1px 0; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-bottom { + border-width: 0 0 1px 0; + height: 3px; +} +/* line 235, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-bottom { + border-width: 0 1px 1px 1px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-left { + border-width: 0 0 0 1px; + width: 3px; +} +/* line 243, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-left { + border-width: 1px 0 1px 1px; +} + +/* line 249, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-strip-default-left { + border-width: 0 1px 0 0; +} +/* line 251, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-rtl.x-tab-bar-strip-default-left { + border-width: 1px 1px 1px 0; +} + +/* line 257, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-right { + border-width: 0 1px 0 0; + width: 3px; +} +/* line 260, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-right { + border-width: 1px 1px 1px 0; +} + +/* line 266, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-strip-default-right { + border-width: 0 0 0 1px; +} +/* line 268, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-rtl.x-tab-bar-strip-default-right { + border-width: 1px 0 1px 1px; +} + +/* line 274, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default { + background-color: #474e5c; +} + +/* line 279, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top { + background-image: none; + background-color: #474e5c; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4f596c), color-stop(100%, #474e5c)); + background-image: -webkit-linear-gradient(top, #4f596c, #474e5c); + background-image: -moz-linear-gradient(top, #4f596c, #474e5c); + background-image: -o-linear-gradient(top, #4f596c, #474e5c); + background-image: linear-gradient(top, #4f596c, #474e5c); +} +/* line 283, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-top { + background: url(images/tab-bar/tab-bar-default-top-bg.gif); +} + +/* line 289, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom { + background-image: none; + background-color: #474e5c; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #4f596c), color-stop(100%, #474e5c)); + background-image: -webkit-linear-gradient(bottom, #4f596c, #474e5c); + background-image: -moz-linear-gradient(bottom, #4f596c, #474e5c); + background-image: -o-linear-gradient(bottom, #4f596c, #474e5c); + background-image: linear-gradient(bottom, #4f596c, #474e5c); +} +/* line 293, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-bottom { + background: url(images/tab-bar/tab-bar-default-bottom-bg.gif) bottom 0; +} + +/* line 299, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left { + background-image: none; + background-color: #474e5c; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #4f596c), color-stop(100%, #474e5c)); + background-image: -webkit-linear-gradient(left, #4f596c, #474e5c); + background-image: -moz-linear-gradient(left, #4f596c, #474e5c); + background-image: -o-linear-gradient(left, #4f596c, #474e5c); + background-image: linear-gradient(left, #4f596c, #474e5c); +} +/* line 303, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-left { + background: url(images/tab-bar/tab-bar-default-left-bg.gif); +} + +/* line 309, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right { + background-image: none; + background-color: #474e5c; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #4f596c), color-stop(100%, #474e5c)); + background-image: -webkit-linear-gradient(right, #4f596c, #474e5c); + background-image: -moz-linear-gradient(right, #4f596c, #474e5c); + background-image: -o-linear-gradient(right, #4f596c, #474e5c); + background-image: linear-gradient(right, #4f596c, #474e5c); +} +/* line 313, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-right { + background: url(images/tab-bar/tab-bar-default-right-bg.gif) 0 right; +} + +/* line 323, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller { + cursor: pointer; +} +/* line 363, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-left, +.x-tab-bar-default .x-tabbar-scroll-right { + height: 20px; + width: 18px; +} +/* line 369, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-top, +.x-tab-bar-default .x-tabbar-scroll-bottom { + width: 20px; + height: 18px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-box-scroller { + margin-top: 1px; +} +/* line 381, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-box-scroller { + margin-left: 1px; +} +/* line 386, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-right .x-box-scroller { + margin-left: 0; + margin-right: 1px; +} + +/* line 456, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-left-top.gif); +} +/* line 459, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-right-top.gif); +} + +/* line 466, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-top .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-right-top.gif); +} +/* line 469, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-top .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-left-top.gif); +} + +/* line 476, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-left-bottom.gif); +} +/* line 479, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-right-bottom.gif); +} + +/* line 486, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-bottom .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-right-bottom.gif); +} +/* line 489, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-bottom .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-left-bottom.gif); +} + +/* line 496, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-left.gif); +} +/* line 499, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-left.gif); +} + +/* line 506, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-left .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-right.gif); +} +/* line 509, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-left .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-right.gif); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-right.gif); +} +/* line 519, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-right.gif); +} + +/* line 526, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-right .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-left.gif); +} +/* line 529, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-right .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-left.gif); +} + +/* line 539, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-left-hover, +.x-tab-bar-default .x-tabbar-scroll-right-hover { + background-position: -18px 0; +} +/* line 544, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-top-hover, +.x-tab-bar-default .x-tabbar-scroll-bottom-hover { + background-position: 0 -18px; +} +/* line 549, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + cursor: default; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-top:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-top-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-bottom:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-bottom-bg.gif), stretch:top"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-left:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-left-bg.gif), stretch:right"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-right:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-right-bg.gif), stretch:left"; +} + +/**/ +/* */ +/* line 998, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain { + border-width: 0; + padding: 0; + height: 23px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox { + border-color: #373c4b; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-row-checker, +.x-column-header-checkbox .x-column-header-text { + height: 19px; + width: 19px; + background-image: url(images/form/checkbox.gif); + line-height: 19px; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox .x-column-header-inner { + padding: 3px 5px 3px 5px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-cell-row-checker .x-grid-cell-inner { + padding: 2px 5px 1px 5px; +} +/* line 23, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-row-checker .x-grid-cell-inner { + padding-top: 1px; + padding-bottom: 0px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-hd-checker-on .x-column-header-text, +.x-grid-row-selected .x-grid-row-checker, +.x-grid-row-checked .x-grid-row-checker { + background-position: 0 -19px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-expander { + cursor: pointer; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander { + background-image: url(images/tree/arrows.gif); +} +/* line 11, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander-over .x-tree-expander { + background-position: -32px center; +} +/* line 15, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander { + background-position: -16px center; +} +/* line 19, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander { + background-position: -48px center; +} +/* line 24, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-rtl.x-tree-expander { + background: url(images/tree/arrows-rtl.gif) no-repeat -48px center; +} +/* line 28, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander-over .x-rtl.x-tree-expander { + background-position: -16px center; +} +/* line 32, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-rtl.x-tree-expander { + background-position: -32px center; +} +/* line 36, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-rtl.x-tree-expander { + background-position: 0 center; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow { + background-image: url(images/tree/elbow.gif); +} +/* line 48, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-end { + background-image: url(images/tree/elbow-end.gif); +} +/* line 52, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-plus { + background-image: url(images/tree/elbow-plus.gif); +} +/* line 56, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-plus.gif); +} +/* line 60, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus { + background-image: url(images/tree/elbow-minus.gif); +} +/* line 64, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-minus.gif); +} +/* line 68, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-line { + background-image: url(images/tree/elbow-line.gif); +} +/* line 73, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow { + background-image: url(images/tree/elbow-rtl.gif); +} +/* line 77, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow-end { + background-image: url(images/tree/elbow-end-rtl.gif); +} +/* line 81, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow-plus { + background-image: url(images/tree/elbow-plus-rtl.gif); +} +/* line 85, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-plus-rtl.gif); +} +/* line 89, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-rtl.x-tree-elbow-plus { + background-image: url(images/tree/elbow-minus-rtl.gif); +} +/* line 93, ../../../ext-theme-neutral/sass/src/tree/Panel.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.gif); +} +/* line 97, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow-line { + background-image: url(images/tree/elbow-line-rtl.gif); +} + +/* line 104, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-tree-expander { + background-image: url(images/tree/elbow-plus-nl.gif); +} +/* line 108, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-grid-tree-node-expanded .x-tree-expander { + background-image: url(images/tree/elbow-minus-nl.gif); +} +/* line 113, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-rtl.x-tree-expander { + background-image: url(images/tree/elbow-plus-nl-rtl.gif); +} +/* line 117, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-grid-tree-node-expanded .x-rtl.x-tree-expander { + background-image: url(images/tree/elbow-minus-nl-rtl.gif); +} + +/* line 123, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon { + width: 16px; + height: 22px; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-elbow-img { + width: 16px; + height: 22px; + margin-right: 0; +} + +/* line 135, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-elbow-img { + margin-right: 0; + margin-left: 0; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon, +.x-tree-elbow-img, +.x-tree-checkbox { + margin-top: -2px; + margin-bottom: -3px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon-leaf { + background-image: url(images/tree/leaf.gif); +} + +/* line 156, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-icon-leaf { + background-image: url(images/tree/leaf-rtl.gif); +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon-parent { + background-image: url(images/tree/folder.gif); +} + +/* line 166, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-icon-parent { + background-image: url(images/tree/folder-rtl.gif); +} + +/* line 171, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-node-expanded .x-tree-icon-parent { + background-image: url(images/tree/folder-open.gif); +} + +/* line 176, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-node-expanded .x-rtl.x-tree-icon-parent { + background-image: url(images/tree/folder-open-rtl.gif); +} + +/* line 181, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-checkbox { + margin-right: 3px; + top: 2px; + width: 19px; + height: 19px; + background-image: url(images/form/checkbox.gif); +} + +/* line 190, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-checkbox { + margin-right: 0; + margin-left: 3px; +} + +/* line 196, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-checkbox-checked { + background-position: 0 -19px; +} + +/* line 200, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-loading .x-tree-icon { + background-image: url(images/tree/loading.gif); +} + +/* line 205, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-loading .x-rtl.x-tree-icon { + background-image: url(images/tree/loading.gif); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-cell-inner-treecolumn { + font-size: 1px; + line-height: 0; +} + +/* line 221, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-node-text { + font-size: 14px; + line-height: 17px; + padding-left: 3px; +} + +/* line 228, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-node-text { + padding-left: 0; + padding-right: 3px; +} + +/* line 235, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-cell-inner-treecolumn { + padding: 2px 6px 3px 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-append .x-dd-drop-icon { + background-image: url(images/tree/drop-append.gif); +} + +/* line 5, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-above .x-dd-drop-icon { + background-image: url(images/tree/drop-above.gif); +} + +/* line 9, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-below .x-dd-drop-icon { + background-image: url(images/tree/drop-below.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-between .x-dd-drop-icon { + background-image: url(images/tree/drop-between.gif); +} + +/* line 17, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-ddindicator { + height: 1px; + border-width: 1px 0px 0px; + border-style: dotted; + border-color: green; +} + +/* including package ext-theme-classic */ +/* line 2, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tl { + background: transparent no-repeat 0 0; + zoom: 1; +} + +/* line 7, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tc { + height: 8px; + background: transparent repeat-x 0 0; + overflow: hidden; +} + +/* line 13, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tr { + background: transparent no-repeat right -8px; +} + +/* line 17, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-ml { + background: transparent repeat-y 0; + padding-left: 4px; + overflow: hidden; + zoom: 1; +} + +/* line 24, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mc { + background: repeat-x 0 -16px; + padding: 4px 10px; +} + +/* line 29, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mc h3 { + margin: 0 0 4px 0; + zoom: 1; +} + +/* line 34, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mr { + background: transparent repeat-y right; + padding-right: 4px; + overflow: hidden; +} + +/* line 40, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-bl { + background: transparent no-repeat 0 -16px; + zoom: 1; +} + +/* line 45, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-bc { + background: transparent repeat-x 0 -8px; + height: 8px; + overflow: hidden; +} + +/* line 51, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-br { + background: transparent no-repeat right -24px; +} + +/* line 55, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tl, .x-box-bl { + padding-left: 8px; + overflow: hidden; +} + +/* line 60, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tr, .x-box-br { + padding-right: 8px; + overflow: hidden; +} + +/* line 65, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tl { + background-image: url(images/box/corners.gif); +} + +/* line 69, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tc { + background-image: url(images/box/tb.gif); +} + +/* line 73, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tr { + background-image: url(images/box/corners.gif); +} + +/* line 77, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-ml { + background-image: url(images/box/l.gif); +} + +/* line 81, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mc { + background-color: #eee; + background-image: url(images/box/tb.gif); + font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif; + color: #393939; + font-size: 15px; +} + +/* line 89, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mc h3 { + font-size: 18px; + font-weight: bold; +} + +/* line 94, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mr { + background-image: url(images/box/r.gif); +} + +/* line 98, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-bl { + background-image: url(images/box/corners.gif); +} + +/* line 102, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-bc { + background-image: url(images/box/tb.gif); +} + +/* line 106, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-br { + background-image: url(images/box/corners.gif); +} + +/* line 110, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr { + background-image: url(images/box/corners-blue.gif); +} + +/* line 114, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc { + background-image: url(images/box/tb-blue.gif); +} + +/* line 118, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-mc { + background-color: #c3daf9; +} + +/* line 122, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-mc h3 { + color: #17385b; +} + +/* line 126, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-ml { + background-image: url(images/box/l-blue.gif); +} + +/* line 130, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-mr { + background-image: url(images/box/r-blue.gif); +} + +/* line 3, ../../../ext-theme-classic/sass/src/toolbar/Toolbar.scss */ +.x-rtl.x-toolbar-more-icon { + background-image: url(images/toolbar/more-left.gif) !important; +} + +/* line 2, ../../../ext-theme-classic/sass/src/window/MessageBox.scss */ +.x-message-box .x-msg-box-wait { + background-image: url(images/shared/blue-loading.gif); +} + +/* line 1, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + height: 26px; +} +/* line 5, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x-content-box .x-form-trigger { + height: 24px; +} + +/* line 12, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x-field-toolbar .x-form-trigger { + height: 24px; +} +/* line 16, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x-content-box .x-field-toolbar .x-form-trigger { + height: 22px; +} + +/* line 4, ../../../ext-theme-classic/sass/src/form/field/Spinner.scss */ +.x-content-box div.x-form-spinner-up, +.x-content-box div.x-form-spinner-down { + height: 11px; +} +/* line 10, ../../../ext-theme-classic/sass/src/form/field/Spinner.scss */ +.x-content-box .x-toolbar-item div.x-form-spinner-up, +.x-content-box .x-toolbar-item div.x-form-spinner-down { + height: 10px; +} + +/* line 2, ../../../ext-theme-classic/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-wrap .x-toolbar { + border-left-color: #737b8c; + border-top-color: #737b8c; + border-right-color: #737b8c; +} + +/* line 9, ../../../ext-theme-classic/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-input { + border: 1px solid #737b8c; + border-top-width: 0; +} + +/* line 1, ../../../ext-theme-classic/sass/src/grid/column/Column.scss */ +.x-column-header-trigger { + background-color: #373c4b; + background-image: url(images/grid/grid3-hd-btn.gif); +} + +/* line 8, ../../../ext-theme-classic/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-trigger { + background-image: url(images/grid/grid3-hd-btn-left.gif); +} + +/* line 6, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x-content-box .x-grid-editor .x-form-trigger { + height: 20px; +} +/* line 13, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-spinner-up, .x-grid-editor .x-form-spinner-down { + background-image: url(images/form/spinner-small.gif); +} +/* line 16, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x-content-box .x-grid-editor .x-form-spinner-up, .x-content-box .x-grid-editor .x-form-spinner-down { + height: 9px; +} +/* line 24, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-rtl.x-form-trigger-wrap .x-form-spinner-up, .x-grid-editor .x-rtl.x-form-trigger-wrap .x-form-spinner-down { + background-image: url(images/form/spinner-small-rtl.gif); +} + +/* line 1, ../../../ext-theme-classic/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd { + border-width: 1px 0 !important; + -webkit-box-shadow: inset 0 0 0 0 #5c6b82; + -moz-box-shadow: inset 0 0 0 0 #5c6b82; + box-shadow: inset 0 0 0 0 #5c6b82; +} + +/* line 6, ../../../ext-theme-classic/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd-sibling-expanded { + -webkit-box-shadow: inset 0 1px 0 0 #606877; + -moz-box-shadow: inset 0 1px 0 0 #606877; + box-shadow: inset 0 1px 0 0 #606877; +} + +/* line 5, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east, +.x-resizable-over .x-resizable-handle-west, +.x-resizable-pinned .x-resizable-handle-east, +.x-resizable-pinned .x-resizable-handle-west { + background-position: left; +} +/* line 10, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south, +.x-resizable-over .x-resizable-handle-north, +.x-resizable-pinned .x-resizable-handle-south, +.x-resizable-pinned .x-resizable-handle-north { + background-position: top; +} +/* line 14, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast, +.x-resizable-pinned .x-resizable-handle-southeast { + background-position: top left; +} +/* line 18, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest, +.x-resizable-pinned .x-resizable-handle-northwest { + background-position: bottom right; +} +/* line 22, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast, +.x-resizable-pinned .x-resizable-handle-northeast { + background-position: bottom left; +} +/* line 26, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest, +.x-resizable-pinned .x-resizable-handle-southwest { + background-position: top right; +} + +/* line 6, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-horz, +.x-ie6 .x-slider-horz .x-slider-end, +.x-ie6 .x-slider-horz .x-slider-inner { + background-image: url(images/slider/slider-bg.gif); +} +/* line 10, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-horz .x-slider-thumb { + background-image: url(images/slider/slider-thumb.gif); +} +/* line 16, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-vert, +.x-ie6 .x-slider-vert .x-slider-end, +.x-ie6 .x-slider-vert .x-slider-inner { + background-image: url(images/slider/slider-v-bg.gif); +} +/* line 20, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-vert .x-slider-thumb { + background-image: url(images/slider/slider-v-thumb.gif); +} + +/* line 1, ../../../ext-theme-classic/sass/src/tab/Panel.scss */ +.x-tab-icon-el { + top: -1px; +} + +/* line 6, ../../../ext-theme-classic/sass/src/tab/Panel.scss */ +.x-tab-noicon .x-tab-icon { + display: none; +} diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/ext-theme-access-all-rtl.css b/extjs-django/marvel/static/extjs/resources/ext-theme-access/ext-theme-access-all-rtl.css new file mode 100644 index 0000000..1b27e35 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-access/ext-theme-access-all-rtl.css @@ -0,0 +1 @@ +.x-body{margin:0}img{border:0}.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}.x-rtl{direction:rtl}.x-ltr{direction:ltr}.x-clear{overflow:hidden;clear:both;font-size:0;line-height:0;display:table}.x-strict .x-ie7 .x-clear{height:0;width:0}.x-layer{position:absolute!important;overflow:hidden;zoom:1}.x-fixed-layer{position:fixed!important;overflow:hidden;zoom:1}.x-shim{position:absolute;left:0;top:0;overflow:hidden;filter:alpha(opacity=0);opacity:0}.x-hide-display{display:none!important}.x-hide-visibility{visibility:hidden!important}.x-ie6 .x-item-disabled{filter:none}.x-hidden,.x-hide-offsets{display:block!important;visibility:hidden!important;position:absolute!important;top:-10000px!important}.x-hide-nosize{height:0!important;width:0!important}.x-hide-clip{position:absolute!important;clip:rect(0,0,0,0);clip:rect(0 0 0 0)}.x-masked-relative{position:relative}.x-ie-shadow{background-color:#777;display:none;position:absolute;overflow:hidden;zoom:1}.x-unselectable{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x-selectable{cursor:auto;-moz-user-select:text;-webkit-user-select:text;-ms-user-select:text;user-select:text;-o-user-select:text}.x-list-plain{list-style-type:none;margin:0;padding:0}.x-table-plain{border-collapse:collapse;border-spacing:0;font-size:1em}.x-frame-tl,.x-frame-tr,.x-frame-tc,.x-frame-bl,.x-frame-br,.x-frame-bc{overflow:hidden;background-repeat:no-repeat}.x-frame-tc,.x-frame-bc{background-repeat:repeat-x}.x-frame-mc{background-repeat:repeat-x;overflow:hidden}.x-proxy-el{position:absolute;background:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x-css-shadow{position:absolute;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px}.x-item-disabled,.x-item-disabled *{cursor:default}.x-box-item{position:absolute!important;left:0;top:0}.x-rtl>.x-box-item{right:0;left:auto}.x-ie6 .x-rtl .x-box-item,.x-quirks .x-ie .x-rtl .x-box-item{right:0;left:auto}div.x-editor{overflow:visible}.x-mask{z-index:100;position:absolute;width:100%;height:100%;zoom:1}.x-mask-shim{z-index:100;position:absolute;top:0;left:0;width:100%;height:100%}.x-mask-msg{z-index:20001;position:absolute}.x-progress{position:relative;border-style:solid;overflow:hidden}.x-progress-bar{overflow:hidden;position:absolute;width:0;height:100%}.x-progress-text{overflow:hidden;position:absolute}.x-btn{display:inline-block;position:relative;zoom:1;*display:inline;outline:0;cursor:pointer;white-space:nowrap;vertical-align:middle;text-decoration:none}.x-btn-wrap{position:relative;display:block}.x-btn-button{position:relative;display:block;text-decoration:none;overflow:hidden;zoom:1}.x-btn-inner{display:block;white-space:nowrap;overflow:hidden;zoom:1}.x-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x-btn-inner-center{text-align:center}.x-btn-inner-left{text-align:left}.x-rtl.x-btn-inner-left{text-align:right}.x-btn-inner-right{text-align:right}.x-rtl.x-btn-inner-right{text-align:left}.x-box-layout-ct{overflow:hidden;zoom:1}.x-box-target{position:absolute;width:20000px;top:0;left:0;height:1px}.x-rtl.x-box-target{left:auto;right:0}.x-box-inner{overflow:hidden;zoom:1;position:relative;left:0;top:0}.x-horizontal-box-overflow-body{float:left}.x-box-scroller{position:relative;background-repeat:no-repeat}.x-box-scroller-left,.x-box-scroller-right{float:left;height:100%;z-index:5}.x-box-scroller-top .x-box-scroller,.x-box-scroller-bottom .x-box-scroller{line-height:0;font-size:0;background-position:center 0}.x-box-menu-after{float:right}.x-rtl.x-box-menu-after{float:left}.x-toolbar-text{white-space:nowrap}.x-toolbar-separator{display:block;font-size:1px;overflow:hidden;cursor:default;border:0;width:0;height:0;line-height:0}.x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal{width:2px}.x-toolbar-scroller{padding-left:0}.x-toolbar-plain{border:0}.x-docked{position:absolute!important;z-index:1}.x-docked-vertical{position:static}.x-docked-top{border-bottom-width:0!important}.x-docked-bottom{border-top-width:0!important}.x-docked-left{border-right-width:0!important}.x-docked-right{border-left-width:0!important}.x-docked-noborder-top{border-top-width:0!important}.x-docked-noborder-right{border-right-width:0!important}.x-docked-noborder-bottom{border-bottom-width:0!important}.x-docked-noborder-left{border-left-width:0!important}.x-noborder-l{border-left-width:0!important}.x-noborder-b{border-bottom-width:0!important}.x-noborder-bl{border-bottom-width:0!important;border-left-width:0!important}.x-noborder-r{border-right-width:0!important}.x-noborder-rl{border-right-width:0!important;border-left-width:0!important}.x-noborder-rb{border-right-width:0!important;border-bottom-width:0!important}.x-noborder-rbl{border-right-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x-noborder-t{border-top-width:0!important}.x-noborder-tl{border-top-width:0!important;border-left-width:0!important}.x-noborder-tb{border-top-width:0!important;border-bottom-width:0!important}.x-noborder-tbl{border-top-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x-noborder-tr{border-top-width:0!important;border-right-width:0!important}.x-noborder-trl{border-top-width:0!important;border-right-width:0!important;border-left-width:0!important}.x-noborder-trb{border-top-width:0!important;border-right-width:0!important;border-bottom-width:0!important}.x-noborder-trbl{border-width:0!important}.x-header-icon{background-repeat:no-repeat;background-position:0 0;vertical-align:middle;text-align:center}.x-header-text-container{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.x-rtl.x-header-text-container{-o-text-overflow:clip;text-overflow:clip}.x-dd-drag-proxy,.x-dd-drag-current{z-index:1000000!important;pointer-events:none}.x-dd-drag-repair .x-dd-drag-ghost{filter:alpha(opacity=60);opacity:.6}.x-dd-drag-repair .x-dd-drop-icon{display:none}.x-dd-drag-ghost{filter:alpha(opacity=85);opacity:.85;padding:5px;padding-left:20px;white-space:nowrap;color:#000;font:normal 14px tahoma,arial,verdana,sans-serif;border:1px solid;border-color:#ddd #bbb #bbb #ddd;background-color:#fff}.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}.x-rtl .x-dd-drag-ghost{padding-left:5px;padding-right:20px}.x-rtl .x-dd-drop-icon{left:auto;right:3px}.x-dd-drop-ok .x-dd-drop-icon{background-image:url(images/dd/drop-yes.gif)}.x-dd-drop-ok-add .x-dd-drop-icon{background-image:url(images/dd/drop-add.gif)}.x-dd-drop-nodrop div.x-dd-drop-icon{background-image:url(images/dd/drop-no.gif)}.x-panel,.x-plain{overflow:hidden;position:relative}.x-panel{outline:0}.x-ie .x-panel-header,.x-ie .x-panel-header-tl,.x-ie .x-panel-header-tc,.x-ie .x-panel-header-tr,.x-ie .x-panel-header-ml,.x-ie .x-panel-header-mc,.x-ie .x-panel-header-mr,.x-ie .x-panel-header-bl,.x-ie .x-panel-header-bc,.x-ie .x-panel-header-br{zoom:1}.x-ie8 td.x-frame-mc{vertical-align:top}.x-panel-body{overflow:hidden;position:relative}.x-nlg .x-panel-header-vertical .x-frame-mc{background-repeat:repeat-y}.x-panel-header-plain,.x-panel-body-plain{border:0;padding:0}.x-tip{position:absolute;overflow:visible}.x-tip-body{overflow:hidden;position:relative}.x-tip-anchor{position:absolute;overflow:hidden;border-style:solid}.x-table-layout{font-size:1em}.x-btn-group{position:relative;overflow:hidden}.x-btn-group-body{position:relative;zoom:1}.x-btn-group-body .x-table-layout-cell{vertical-align:top}.x-viewport,.x-viewport body{margin:0;padding:0;border:0 none;overflow:hidden;height:100%;position:static}.x-window{outline:0;overflow:hidden}.x-window .x-window-wrap{position:relative}.x-window-body{position:relative;overflow:hidden}.x-window-body-plain{background:transparent}.x-form-item-label{display:block}.x-form-item-label-right{text-align:right}.x-form-item-label-top{display:block;zoom:1}.x-form-invalid-icon{overflow:hidden}.x-form-invalid-icon ul{display:none}.x-form-textarea{overflow:auto;resize:none}.x-safari.x-mac .x-form-textarea{margin-bottom:-2px}.x-form-display-field-body{vertical-align:top}.x-form-cb-wrap{vertical-align:top}.x-form-cb{vertical-align:top;overflow:hidden;padding:0;border:0}.x-form-cb::-moz-focus-inner{padding:0;border:0}.x-form-cb-label{display:inline-block;zoom:1}.x-fieldset{display:block;position:relative}.x-fieldset-header{overflow:hidden}.x-fieldset-header .x-form-item,.x-fieldset-header .x-tool{float:left}.x-fieldset-header .x-form-cb-wrap{font-size:0;line-height:0}.x-fieldset-header .x-form-cb{margin:0}.x-rtl.x-fieldset-header .x-form-item,.x-rtl.x-fieldset-header .x-tool{float:right}.x-fieldset-header-text{float:left}.x-webkit *:focus{outline:none!important}.x-form-item{vertical-align:top;table-layout:fixed}.x-form-item-body{position:relative}.x-rtl.x-form-item .x-form-item-input-row{position:relative;right:0}.x-form-form-item td{border-top:1px solid transparent}.x-form-trigger{cursor:pointer;overflow:hidden;background-repeat:no-repeat}.x-item-disabled .x-form-trigger{cursor:default}.x-trigger-noedit{cursor:default}.x-form-trigger-wrap{vertical-align:top;border-collapse:separate}.x-form-spinner-up,.x-form-spinner-down{font-size:0}.x-datepicker{position:relative}.x-datepicker-inner{table-layout:fixed;width:100%;border-collapse:separate}.x-datepicker-cell{padding:0}.x-datepicker-header{position:relative;zoom:1}.x-datepicker-arrow{position:absolute;outline:0;font-size:0}.x-datepicker-column-header{padding:0}.x-datepicker-date{display:block;zoom:1;text-decoration:none}.x-monthpicker{position:absolute;left:0;top:0}.x-monthpicker-body{height:100%}.x-monthpicker-months,.x-monthpicker-years{float:left;height:100%}.x-monthpicker-item{float:left}.x-monthpicker-item-inner{display:block;text-decoration:none}.x-monthpicker-yearnav-button-ct{float:left;text-align:center}.x-monthpicker-yearnav-button{display:inline-block;outline:0;font-size:0}.x-monthpicker-buttons{position:absolute;bottom:0;width:100%}.x-strict .x-ie6 .x-monthpicker-buttons{bottom:-1px}.x-form-file-btn{overflow:hidden}.x-form-file-input{border:0;position:absolute;cursor:pointer;top:-2px;right:-2px;filter:alpha(opacity=0);opacity:0;font-size:1000px}.x-rtl.x-form-file-input{right:auto;left:-2px}.x-form-item-hidden{margin:0}.x-color-picker-item{float:left;text-decoration:none}.x-color-picker-item-inner{display:block;font-size:1px}.x-html-editor-tb .x-toolbar{position:static!important}.x-htmleditor-iframe{display:block;overflow:auto}.x-fit-item{position:relative}.x-grid-row,.x-grid-data-row{outline:0}.x-grid-view{overflow:hidden;position:relative}.x-grid-table{table-layout:fixed;border-collapse:separate}.x-grid-td{overflow:hidden;border-width:0;vertical-align:top}.x-grid-cell-inner{overflow:hidden;white-space:nowrap;zoom:1}.x-grid-resize-marker{position:absolute;z-index:5;top:0}.col-move-top,.col-move-bottom{position:absolute;top:0;line-height:0;font-size:0;overflow:hidden;z-index:20000;background:no-repeat center top transparent}.x-grid-header-ct{cursor:default}.x-column-header{position:absolute;overflow:hidden;background-repeat:repeat-x}.x-column-header-inner{zoom:1;white-space:nowrap;position:relative;overflow:hidden}.x-column-header-text{white-space:nowrap;background-repeat:no-repeat;zoom:1;display:inline-block}.x-column-header-trigger{display:none;height:100%;background-repeat:no-repeat;position:absolute;right:0;top:0;z-index:2}.x-rtl.x-column-header-trigger{left:0;right:auto}.x-column-header-over .x-column-header-trigger,.x-column-header-open .x-column-header-trigger{display:block}.x-column-header-align-right{text-align:right}.x-rtl.x-column-header-align-right{text-align:left}.x-column-header-align-left{text-align:left}.x-rtl.x-column-header-align-left{text-align:right}.x-column-header-align-center{text-align:center}.x-grid-cell-inner-action-col{line-height:0;font-size:0}.x-grid-cell-inner-checkcolumn{line-height:0;font-size:0}.x-row-numberer .x-column-header-inner{text-overflow:clip}.x-grid-group,.x-grid-group-body,.x-grid-group-hd{zoom:1}.x-grid-group-hd{white-space:nowrap}.x-grid-row-body-hidden,.x-grid-group-collapsed{display:none}.x-grid-rowbody{zoom:1}.x-grid-row-body-hidden{display:none}td.x-grid-rowwrap .x-grid-table{border:0}td.x-grid-rowwrap .x-grid-cell{border-bottom:0;background-color:transparent}.x-grid-editor .x-form-cb-wrap{text-align:center}.x-grid-editor .x-form-display-field{margin:0;white-space:nowrap;overflow:hidden}.x-grid-editor div.x-form-action-col-field{line-height:0}.x-grid-row-editor{position:absolute;overflow:visible;z-index:1}.x-grid-row-editor-buttons{position:absolute;white-space:nowrap}.x-grid-row-expander{font-size:0;line-height:0}.x-abs-layout-ct{position:relative}.x-abs-layout-item{position:absolute!important}.x-splitter{font-size:1px}.x-splitter-horizontal{cursor:e-resize;cursor:row-resize}.x-splitter-vertical{cursor:e-resize;cursor:col-resize}.x-splitter-collapsed,.x-splitter-horizontal-noresize,.x-splitter-vertical-noresize{cursor:default}.x-splitter-active{z-index:4}.x-collapse-el{position:absolute;background-repeat:no-repeat}.x-border-layout-ct{overflow:hidden;zoom:1}.x-border-layout-ct{position:relative}.x-border-region-slide-in{z-index:5}.x-region-collapsed-placeholder{z-index:4}.x-column{float:left}.x-rtl>.x-column{float:right}.x-ie6 .x-rtl .x-column,.x-quirks .x-ie .x-rtl .x-column{float:right}.x-ie6 .x-column{display:inline}.x-quirks .x-ie .x-form-layout-table,.x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item{position:relative}.x-form-layout-table{border-collapse:separate;border-spacing:0 2px}.x-ie6 .x-form-layout-table{border-collapse:collapse;border-spacing:0}.x-menu{outline:0}.x-menu-item{white-space:nowrap;overflow:hidden}.x-menu-item-cmp .x-field-label-cell{vertical-align:middle}.x-menu-icon-separator{position:absolute;top:0;z-index:0;height:100%;overflow:hidden}.x-menu-plain .x-menu-icon-separator{display:none}.x-menu-item-link{text-decoration:none;outline:0;zoom:1}.x-menu-item-text{zoom:1}.x-menu-item-icon,.x-menu-item-icon-right,.x-menu-item-arrow{position:absolute;text-align:center}.x-resizable-overlay{position:absolute;left:0;top:0;width:100%;height:100%;display:none;z-index:200000;background-color:#fff;filter:alpha(opacity=0);opacity:0}.x-slider{outline:0;zoom:1;position:relative}.x-slider-inner{position:relative;left:0;top:0;overflow:visible;zoom:1}.x-slider-vert .x-slider-inner{background:repeat-y 0 0}.x-slider-end{zoom:1}.x-slider-thumb{position:absolute;background:no-repeat 0 0}.x-slider-horz .x-slider-thumb{left:0}.x-slider-vert .x-slider-thumb{bottom:0}a.x-tab{text-decoration:none}.x-tab-bar{position:relative}.x-column-header-checkbox .x-column-header-text{display:block;background-repeat:no-repeat;font-size:0}.x-grid-cell-row-checker{vertical-align:middle;background-repeat:no-repeat;font-size:0}.x-tab{display:block;white-space:nowrap;z-index:1}.x-tab-active{z-index:3}.x-tab-wrap{display:block;position:relative}.x-tab-button{zoom:1;display:block;outline:0}.x-tab-inner{display:block;text-align:center;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis;overflow:hidden;zoom:1}.x-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x-tab-bar{z-index:1}.x-tab-bar-body{z-index:2;position:relative}.x-tab-bar-strip{position:absolute;line-height:0;font-size:0;z-index:1}.x-tab-bar-horizontal .x-tab-bar-strip{width:100%;left:0}.x-tab-bar-vertical .x-tab-bar-strip{height:100%;top:0}.x-tab-bar-strip-top{bottom:0}.x-tab-bar-strip-bottom{top:0}.x-tab-bar-strip-left{right:0}.x-rtl.x-tab-bar .x-tab-bar-strip-left{right:auto;left:0}.x-tab-bar-strip-right{left:0}.x-rtl.x-tab-bar .x-tab-bar-strip-right{left:auto;right:0}.x-tab-bar-plain{background:transparent!important}.x-tab-icon-el{position:absolute;background-repeat:no-repeat;top:0;left:0;right:auto;bottom:0}.x-rtl.x-tab-icon-el{left:auto;right:0}.x-tab-close-btn{display:block;position:absolute;font-size:0;line-height:0;background:no-repeat}.x-tab-mc{overflow:visible}.x-autowidth-table .x-grid-table{table-layout:auto;width:auto!important}.x-tree-view{overflow:hidden}.x-tree-elbow-img,.x-tree-icon{background-repeat:no-repeat;background-position:0 center;vertical-align:top}.x-tree-checkbox{border:0;padding:0;vertical-align:top;position:relative;background-color:transparent}.x-tree-animator-wrap{overflow:hidden}.x-tree-node-text{zoom:1}.x-surface{display:-moz-inline-stack;display:inline-block;vertical-align:middle;*vertical-align:auto;zoom:1;*display:inline;overflow:hidden}.rvml{behavior:url(#default#VML)}.x-surface tspan{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x-vml-sprite{position:absolute;left:0;top:0;width:1px;height:1px}.x-vml-group{position:absolute;left:0;top:0;width:1000px;height:1000px}.x-vml-measure-span{position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;display:inline}.x-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}.x-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}svg,vml{overflow:hidden}.x-body{color:white;font-size:15px;font-family:tahoma,arial,verdana,sans-serif;background:black}.x-animating-size,.x-collapsed{overflow:hidden!important}.x-editor .x-form-item-body{padding-bottom:0}.x-focus-element{position:absolute;top:-10px;left:-10px;width:0;height:0}.x-focus-frame{position:absolute;left:0;top:0;z-index:100000000;width:0;height:0}.x-focus-frame-top,.x-focus-frame-bottom,.x-focus-frame-left,.x-focus-frame-right{position:absolute;top:0;left:0}.x-focus-frame-top,.x-focus-frame-bottom{border-top:solid 2px #15428b;height:2px}.x-focus-frame-left,.x-focus-frame-right{border-left:solid 2px #15428b;width:2px}.x-mask{filter:alpha(opacity=50);opacity:.5;background:#ccc}.x-mask-msg{padding:2px;border-style:solid;border-width:1px;border-color:#223;background-image:none;background-color:#3f4757}.x-mask-msg-inner{padding:5px 10px;border-style:solid;border-width:1px;border-color:#556;background-color:#232d38;color:white;font:normal 14px tahoma,arial,verdana,sans-serif}.x-mask-msg-text{padding:5px 5px 5px 20px}.x-rtl.x-mask-msg-text{padding:5px 20px 5px 5px}.x-progress-default{background-color:#232d38;border-width:1px;height:20px;border-color:#18181a}.x-content-box .x-progress-default{height:18px}.x-progress-default .x-progress-bar-default{background-image:none;background-color:#ed9200;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ffb43b),color-stop(50%,#ffa007),color-stop(51%,#ed9200),color-stop(100%,#d38200));background-image:-webkit-linear-gradient(top,#ffb43b,#ffa007 50%,#ed9200 51%,#d38200);background-image:-moz-linear-gradient(top,#ffb43b,#ffa007 50%,#ed9200 51%,#d38200);background-image:-o-linear-gradient(top,#ffb43b,#ffa007 50%,#ed9200 51%,#d38200);background-image:linear-gradient(top,#ffb43b,#ffa007 50%,#ed9200 51%,#d38200)}.x-nlg .x-progress-default .x-progress-bar-default{background:repeat-x;background-image:url(images/progress/progress-default-bg.gif)}.x-progress-default .x-progress-text{color:white;font-weight:bold;font-size:14px;text-align:center;line-height:18px}.x-progress-default .x-progress-text-back{color:#aaa;line-height:18px}.x-progress-default .x-progress-bar-default:after{display:none;content:"x-slicer:bg:url(images/progress/progress-default-bg.gif)"}.x-btn-default-small{border-color:#06070a}.x-btn-default-small{-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-image:none;background-color:#2a3142;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#2a3142),color-stop(48%,#252c3b),color-stop(52%,#13171f),color-stop(100%,#171b25));background-image:-webkit-linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25);background-image:-moz-linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25);background-image:-o-linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25);background-image:linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25)}.x-btn-default-small-mc{background-image:url(images/btn/btn-default-small-fbg.gif);background-position:0 top;background-color:#2a3142}.x-nlg .x-btn-default-small{background-image:url(images/btn/btn-default-small-bg.gif);background-position:0 top}.x-nbr .x-btn-default-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-btn-default-small-tl{background-position:0 -6px}.x-btn-default-small-tr{background-position:right -9px}.x-btn-default-small-bl{background-position:0 -12px}.x-btn-default-small-br{background-position:right -15px}.x-btn-default-small-ml{background-position:0 top}.x-btn-default-small-mr{background-position:right top}.x-btn-default-small-tc{background-position:0 0}.x-btn-default-small-bc{background-position:0 -3px}.x-btn-default-small-tr,.x-btn-default-small-br,.x-btn-default-small-mr{padding-right:3px}.x-btn-default-small-tl,.x-btn-default-small-bl,.x-btn-default-small-ml{padding-left:3px}.x-btn-default-small-tc{height:3px}.x-btn-default-small-bc{height:3px}.x-btn-default-small-tl,.x-btn-default-small-bl,.x-btn-default-small-tr,.x-btn-default-small-br,.x-btn-default-small-tc,.x-btn-default-small-bc,.x-btn-default-small-ml,.x-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-corners.gif)}.x-btn-default-small-ml,.x-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-sides.gif)}.x-btn-default-small-mc{padding:0}.x-strict .x-ie7 .x-btn-default-small-tl,.x-strict .x-ie7 .x-btn-default-small-bl{position:relative;right:0}.x-btn-default-small:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"}.x-btn-default-small .x-btn-inner{font-size:14px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:white;padding:0 4px}.x-btn-default-small .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-small .x-btn-arrow-right{padding-right:14px}.x-btn-default-small .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:14px}.x-btn-default-small .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-small .x-btn-glyph{font-size:16px;line-height:16px;color:white;opacity:.5}.x-ie8m .x-btn-default-small .x-btn-glyph{color:#9498a0}.x-btn-default-small-disabled{border-color:#565656;background-image:none;background-color:#6b6b6b;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#6b6b6b),color-stop(48%,#656565),color-stop(52%,#4e4e4e),color-stop(100%,#535353));background-image:-webkit-linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353);background-image:-moz-linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353);background-image:-o-linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353);background-image:linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353)}.x-btn-default-small-icon .x-btn-button,.x-btn-default-small-noicon .x-btn-button{height:16px}.x-btn-default-small-icon .x-btn-inner,.x-btn-default-small-noicon .x-btn-inner{line-height:16px}.x-btn-default-small-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-small-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-small-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-small-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:4px;padding-left:0}.x-btn-default-small-icon .x-btn-inner{width:16px;padding:0}.x-btn-default-small-icon .x-btn-icon-el{width:16px;height:16px}.x-btn-default-small-icon-text-left .x-btn-button{height:16px}.x-btn-default-small-icon-text-left .x-btn-inner{line-height:16px;padding-left:20px}.x-btn-default-small-icon-text-left .x-rtl.x-btn-inner{padding-left:4px;padding-right:20px}.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:20px}.x-btn-default-small-icon-text-left .x-btn-icon-el{width:16px;right:auto}.x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-small-icon-text-left .x-btn-icon-el{height:16px}.x-btn-default-small-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-small-icon-text-right .x-btn-button{height:16px}.x-btn-default-small-icon-text-right .x-btn-inner{line-height:16px;padding-right:20px}.x-btn-default-small-icon-text-right .x-rtl.x-btn-inner{padding-right:4px;padding-left:20px}.x-btn-default-small-icon-text-right .x-btn-icon-el{width:16px;left:auto}.x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-small-icon-text-right .x-btn-icon-el{height:16px}.x-btn-default-small-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-small-icon-text-top .x-btn-inner{padding-top:20px}.x-btn-default-small-icon-text-top .x-btn-icon-el{height:16px;bottom:auto}.x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-small-icon-text-bottom .x-btn-inner{padding-bottom:20px}.x-btn-default-small-icon-text-bottom .x-btn-icon-el{height:16px;top:auto}.x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-small-over{border-color:#947518;background-image:none;background-color:#ed9200;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ed9200),color-stop(48%,#e29200),color-stop(52%,#9d7921),color-stop(100%,#ab821b));background-image:-webkit-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-moz-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-o-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b)}.x-btn-default-small-focus{border-color:#947518;background-image:none;background-color:#ed9200;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ed9200),color-stop(48%,#e29200),color-stop(52%,#9d7921),color-stop(100%,#ab821b));background-image:-webkit-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-moz-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-o-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b)}.x-btn-default-small-menu-active,.x-btn-default-small-pressed{border-color:#c9750f;background-image:none;background-color:#da7b19;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#da7b19),color-stop(48%,#e17b1d),color-stop(52%,#db6800),color-stop(100%,#e66e00));background-image:-webkit-linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00);background-image:-moz-linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00);background-image:-o-linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00);background-image:linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00)}.x-btn-default-small-over .x-frame-tl,.x-btn-default-small-over .x-frame-bl,.x-btn-default-small-over .x-frame-tr,.x-btn-default-small-over .x-frame-br,.x-btn-default-small-over .x-frame-tc,.x-btn-default-small-over .x-frame-bc{background-image:url(images/btn/btn-default-small-over-corners.gif)}.x-btn-default-small-over .x-frame-ml,.x-btn-default-small-over .x-frame-mr{background-image:url(images/btn/btn-default-small-over-sides.gif)}.x-btn-default-small-over .x-frame-mc{background-color:#ed9200;background-image:url(images/btn/btn-default-small-over-fbg.gif)}.x-btn-default-small-focus .x-frame-tl,.x-btn-default-small-focus .x-frame-bl,.x-btn-default-small-focus .x-frame-tr,.x-btn-default-small-focus .x-frame-br,.x-btn-default-small-focus .x-frame-tc,.x-btn-default-small-focus .x-frame-bc{background-image:url(images/btn/btn-default-small-focus-corners.gif)}.x-btn-default-small-focus .x-frame-ml,.x-btn-default-small-focus .x-frame-mr{background-image:url(images/btn/btn-default-small-focus-sides.gif)}.x-btn-default-small-focus .x-frame-mc{background-color:#ed9200;background-image:url(images/btn/btn-default-small-focus-fbg.gif)}.x-btn-default-small-menu-active .x-frame-tl,.x-btn-default-small-menu-active .x-frame-bl,.x-btn-default-small-menu-active .x-frame-tr,.x-btn-default-small-menu-active .x-frame-br,.x-btn-default-small-menu-active .x-frame-tc,.x-btn-default-small-menu-active .x-frame-bc,.x-btn-default-small-pressed .x-frame-tl,.x-btn-default-small-pressed .x-frame-bl,.x-btn-default-small-pressed .x-frame-tr,.x-btn-default-small-pressed .x-frame-br,.x-btn-default-small-pressed .x-frame-tc,.x-btn-default-small-pressed .x-frame-bc{background-image:url(images/btn/btn-default-small-pressed-corners.gif)}.x-btn-default-small-menu-active .x-frame-ml,.x-btn-default-small-menu-active .x-frame-mr,.x-btn-default-small-pressed .x-frame-ml,.x-btn-default-small-pressed .x-frame-mr{background-image:url(images/btn/btn-default-small-pressed-sides.gif)}.x-btn-default-small-menu-active .x-frame-mc,.x-btn-default-small-pressed .x-frame-mc{background-color:#da7b19;background-image:url(images/btn/btn-default-small-pressed-fbg.gif)}.x-btn-default-small-disabled .x-frame-tl,.x-btn-default-small-disabled .x-frame-bl,.x-btn-default-small-disabled .x-frame-tr,.x-btn-default-small-disabled .x-frame-br,.x-btn-default-small-disabled .x-frame-tc,.x-btn-default-small-disabled .x-frame-bc{background-image:url(images/btn/btn-default-small-disabled-corners.gif)}.x-btn-default-small-disabled .x-frame-ml,.x-btn-default-small-disabled .x-frame-mr{background-image:url(images/btn/btn-default-small-disabled-sides.gif)}.x-btn-default-small-disabled .x-frame-mc{background-color:#6b6b6b;background-image:url(images/btn/btn-default-small-disabled-fbg.gif)}.x-nlg .x-btn-default-small-over{background-image:url(images/btn/btn-default-small-over-bg.gif)}.x-nlg .x-btn-default-small-focus{background-image:url(images/btn/btn-default-small-focus-bg.gif)}.x-nlg .x-btn-default-small-menu-active,.x-nlg .x-btn-default-small-pressed{background-image:url(images/btn/btn-default-small-pressed-bg.gif)}.x-nlg .x-btn-default-small-disabled{background-image:url(images/btn/btn-default-small-disabled-bg.gif)}.x-nbr .x-btn-default-small{background-image:none}.x-btn-default-small .x-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:18px}.x-btn-default-small .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-rtl.gif);padding-right:0;padding-left:18px}.x-btn-default-small .x-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:16px}.x-btn-default-small-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-small-over .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x-btn-default-small-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-small-disabled .x-btn-inner,.x-btn-default-small-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-btn-default-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"}.x-btn-default-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"}.x-btn-default-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"}.x-btn-default-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"}.x-btn-default-medium{border-color:#06070a}.x-btn-default-medium{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#2a3142;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#2a3142),color-stop(48%,#252c3b),color-stop(52%,#13171f),color-stop(100%,#171b25));background-image:-webkit-linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25);background-image:-moz-linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25);background-image:-o-linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25);background-image:linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25)}.x-btn-default-medium-mc{background-image:url(images/btn/btn-default-medium-fbg.gif);background-position:0 top;background-color:#2a3142}.x-nlg .x-btn-default-medium{background-image:url(images/btn/btn-default-medium-bg.gif);background-position:0 top}.x-nbr .x-btn-default-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-medium-tl{background-position:0 -6px}.x-btn-default-medium-tr{background-position:right -9px}.x-btn-default-medium-bl{background-position:0 -12px}.x-btn-default-medium-br{background-position:right -15px}.x-btn-default-medium-ml{background-position:0 top}.x-btn-default-medium-mr{background-position:right top}.x-btn-default-medium-tc{background-position:0 0}.x-btn-default-medium-bc{background-position:0 -3px}.x-btn-default-medium-tr,.x-btn-default-medium-br,.x-btn-default-medium-mr{padding-right:3px}.x-btn-default-medium-tl,.x-btn-default-medium-bl,.x-btn-default-medium-ml{padding-left:3px}.x-btn-default-medium-tc{height:3px}.x-btn-default-medium-bc{height:3px}.x-btn-default-medium-tl,.x-btn-default-medium-bl,.x-btn-default-medium-tr,.x-btn-default-medium-br,.x-btn-default-medium-tc,.x-btn-default-medium-bc,.x-btn-default-medium-ml,.x-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-corners.gif)}.x-btn-default-medium-ml,.x-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-sides.gif)}.x-btn-default-medium-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-medium-tl,.x-strict .x-ie7 .x-btn-default-medium-bl{position:relative;right:0}.x-btn-default-medium:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"}.x-btn-default-medium .x-btn-inner{font-size:14px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:white;padding:0 3px}.x-btn-default-medium .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-medium .x-btn-arrow-right{padding-right:14px}.x-btn-default-medium .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:14px}.x-btn-default-medium .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-medium .x-btn-glyph{font-size:24px;line-height:24px;color:white;opacity:.5}.x-ie8m .x-btn-default-medium .x-btn-glyph{color:#9498a0}.x-btn-default-medium-disabled{border-color:#565656;background-image:none;background-color:#6b6b6b;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#6b6b6b),color-stop(48%,#656565),color-stop(52%,#4e4e4e),color-stop(100%,#535353));background-image:-webkit-linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353);background-image:-moz-linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353);background-image:-o-linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353);background-image:linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353)}.x-btn-default-medium-icon .x-btn-button,.x-btn-default-medium-noicon .x-btn-button{height:24px}.x-btn-default-medium-icon .x-btn-inner,.x-btn-default-medium-noicon .x-btn-inner{line-height:24px}.x-btn-default-medium-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-medium-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-medium-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-medium-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:0}.x-btn-default-medium-icon .x-btn-inner{width:24px;padding:0}.x-btn-default-medium-icon .x-btn-icon-el{width:24px;height:24px}.x-btn-default-medium-icon-text-left .x-btn-button{height:24px}.x-btn-default-medium-icon-text-left .x-btn-inner{line-height:24px;padding-left:28px}.x-btn-default-medium-icon-text-left .x-rtl.x-btn-inner{padding-left:3px;padding-right:28px}.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:28px}.x-btn-default-medium-icon-text-left .x-btn-icon-el{width:24px;right:auto}.x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon-el{height:24px}.x-btn-default-medium-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-medium-icon-text-right .x-btn-button{height:24px}.x-btn-default-medium-icon-text-right .x-btn-inner{line-height:24px;padding-right:28px}.x-btn-default-medium-icon-text-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:28px}.x-btn-default-medium-icon-text-right .x-btn-icon-el{width:24px;left:auto}.x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon-el{height:24px}.x-btn-default-medium-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-medium-icon-text-top .x-btn-inner{padding-top:28px}.x-btn-default-medium-icon-text-top .x-btn-icon-el{height:24px;bottom:auto}.x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-medium-icon-text-bottom .x-btn-inner{padding-bottom:28px}.x-btn-default-medium-icon-text-bottom .x-btn-icon-el{height:24px;top:auto}.x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-medium-over{border-color:#947518;background-image:none;background-color:#ed9200;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ed9200),color-stop(48%,#e29200),color-stop(52%,#9d7921),color-stop(100%,#ab821b));background-image:-webkit-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-moz-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-o-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b)}.x-btn-default-medium-focus{border-color:#947518;background-image:none;background-color:#ed9200;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ed9200),color-stop(48%,#e29200),color-stop(52%,#9d7921),color-stop(100%,#ab821b));background-image:-webkit-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-moz-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-o-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b)}.x-btn-default-medium-menu-active,.x-btn-default-medium-pressed{border-color:#c9750f;background-image:none;background-color:#da7b19;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#da7b19),color-stop(48%,#e17b1d),color-stop(52%,#db6800),color-stop(100%,#e66e00));background-image:-webkit-linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00);background-image:-moz-linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00);background-image:-o-linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00);background-image:linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00)}.x-btn-default-medium-over .x-frame-tl,.x-btn-default-medium-over .x-frame-bl,.x-btn-default-medium-over .x-frame-tr,.x-btn-default-medium-over .x-frame-br,.x-btn-default-medium-over .x-frame-tc,.x-btn-default-medium-over .x-frame-bc{background-image:url(images/btn/btn-default-medium-over-corners.gif)}.x-btn-default-medium-over .x-frame-ml,.x-btn-default-medium-over .x-frame-mr{background-image:url(images/btn/btn-default-medium-over-sides.gif)}.x-btn-default-medium-over .x-frame-mc{background-color:#ed9200;background-image:url(images/btn/btn-default-medium-over-fbg.gif)}.x-btn-default-medium-focus .x-frame-tl,.x-btn-default-medium-focus .x-frame-bl,.x-btn-default-medium-focus .x-frame-tr,.x-btn-default-medium-focus .x-frame-br,.x-btn-default-medium-focus .x-frame-tc,.x-btn-default-medium-focus .x-frame-bc{background-image:url(images/btn/btn-default-medium-focus-corners.gif)}.x-btn-default-medium-focus .x-frame-ml,.x-btn-default-medium-focus .x-frame-mr{background-image:url(images/btn/btn-default-medium-focus-sides.gif)}.x-btn-default-medium-focus .x-frame-mc{background-color:#ed9200;background-image:url(images/btn/btn-default-medium-focus-fbg.gif)}.x-btn-default-medium-menu-active .x-frame-tl,.x-btn-default-medium-menu-active .x-frame-bl,.x-btn-default-medium-menu-active .x-frame-tr,.x-btn-default-medium-menu-active .x-frame-br,.x-btn-default-medium-menu-active .x-frame-tc,.x-btn-default-medium-menu-active .x-frame-bc,.x-btn-default-medium-pressed .x-frame-tl,.x-btn-default-medium-pressed .x-frame-bl,.x-btn-default-medium-pressed .x-frame-tr,.x-btn-default-medium-pressed .x-frame-br,.x-btn-default-medium-pressed .x-frame-tc,.x-btn-default-medium-pressed .x-frame-bc{background-image:url(images/btn/btn-default-medium-pressed-corners.gif)}.x-btn-default-medium-menu-active .x-frame-ml,.x-btn-default-medium-menu-active .x-frame-mr,.x-btn-default-medium-pressed .x-frame-ml,.x-btn-default-medium-pressed .x-frame-mr{background-image:url(images/btn/btn-default-medium-pressed-sides.gif)}.x-btn-default-medium-menu-active .x-frame-mc,.x-btn-default-medium-pressed .x-frame-mc{background-color:#da7b19;background-image:url(images/btn/btn-default-medium-pressed-fbg.gif)}.x-btn-default-medium-disabled .x-frame-tl,.x-btn-default-medium-disabled .x-frame-bl,.x-btn-default-medium-disabled .x-frame-tr,.x-btn-default-medium-disabled .x-frame-br,.x-btn-default-medium-disabled .x-frame-tc,.x-btn-default-medium-disabled .x-frame-bc{background-image:url(images/btn/btn-default-medium-disabled-corners.gif)}.x-btn-default-medium-disabled .x-frame-ml,.x-btn-default-medium-disabled .x-frame-mr{background-image:url(images/btn/btn-default-medium-disabled-sides.gif)}.x-btn-default-medium-disabled .x-frame-mc{background-color:#6b6b6b;background-image:url(images/btn/btn-default-medium-disabled-fbg.gif)}.x-nlg .x-btn-default-medium-over{background-image:url(images/btn/btn-default-medium-over-bg.gif)}.x-nlg .x-btn-default-medium-focus{background-image:url(images/btn/btn-default-medium-focus-bg.gif)}.x-nlg .x-btn-default-medium-menu-active,.x-nlg .x-btn-default-medium-pressed{background-image:url(images/btn/btn-default-medium-pressed-bg.gif)}.x-nlg .x-btn-default-medium-disabled{background-image:url(images/btn/btn-default-medium-disabled-bg.gif)}.x-nbr .x-btn-default-medium{background-image:none}.x-btn-default-medium .x-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:18px}.x-btn-default-medium .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-rtl.gif);padding-right:0;padding-left:18px}.x-btn-default-medium .x-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:16px}.x-btn-default-medium-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-medium-over .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x-btn-default-medium-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-medium-disabled .x-btn-inner,.x-btn-default-medium-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-btn-default-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"}.x-btn-default-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"}.x-btn-default-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"}.x-btn-default-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"}.x-btn-default-large{border-color:#06070a}.x-btn-default-large{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#2a3142;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#2a3142),color-stop(48%,#252c3b),color-stop(52%,#13171f),color-stop(100%,#171b25));background-image:-webkit-linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25);background-image:-moz-linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25);background-image:-o-linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25);background-image:linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25)}.x-btn-default-large-mc{background-image:url(images/btn/btn-default-large-fbg.gif);background-position:0 top;background-color:#2a3142}.x-nlg .x-btn-default-large{background-image:url(images/btn/btn-default-large-bg.gif);background-position:0 top}.x-nbr .x-btn-default-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-large-tl{background-position:0 -6px}.x-btn-default-large-tr{background-position:right -9px}.x-btn-default-large-bl{background-position:0 -12px}.x-btn-default-large-br{background-position:right -15px}.x-btn-default-large-ml{background-position:0 top}.x-btn-default-large-mr{background-position:right top}.x-btn-default-large-tc{background-position:0 0}.x-btn-default-large-bc{background-position:0 -3px}.x-btn-default-large-tr,.x-btn-default-large-br,.x-btn-default-large-mr{padding-right:3px}.x-btn-default-large-tl,.x-btn-default-large-bl,.x-btn-default-large-ml{padding-left:3px}.x-btn-default-large-tc{height:3px}.x-btn-default-large-bc{height:3px}.x-btn-default-large-tl,.x-btn-default-large-bl,.x-btn-default-large-tr,.x-btn-default-large-br,.x-btn-default-large-tc,.x-btn-default-large-bc,.x-btn-default-large-ml,.x-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-corners.gif)}.x-btn-default-large-ml,.x-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-sides.gif)}.x-btn-default-large-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-large-tl,.x-strict .x-ie7 .x-btn-default-large-bl{position:relative;right:0}.x-btn-default-large:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"}.x-btn-default-large .x-btn-inner{font-size:14px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:white;padding:0 3px}.x-btn-default-large .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-large .x-btn-arrow-right{padding-right:14px}.x-btn-default-large .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:14px}.x-btn-default-large .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-large .x-btn-glyph{font-size:32px;line-height:32px;color:white;opacity:.5}.x-ie8m .x-btn-default-large .x-btn-glyph{color:#9498a0}.x-btn-default-large-disabled{border-color:#565656;background-image:none;background-color:#6b6b6b;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#6b6b6b),color-stop(48%,#656565),color-stop(52%,#4e4e4e),color-stop(100%,#535353));background-image:-webkit-linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353);background-image:-moz-linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353);background-image:-o-linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353);background-image:linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353)}.x-btn-default-large-icon .x-btn-button,.x-btn-default-large-noicon .x-btn-button{height:32px}.x-btn-default-large-icon .x-btn-inner,.x-btn-default-large-noicon .x-btn-inner{line-height:32px}.x-btn-default-large-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-large-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-large-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-large-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:0}.x-btn-default-large-icon .x-btn-inner{width:32px;padding:0}.x-btn-default-large-icon .x-btn-icon-el{width:32px;height:32px}.x-btn-default-large-icon-text-left .x-btn-button{height:32px}.x-btn-default-large-icon-text-left .x-btn-inner{line-height:32px;padding-left:36px}.x-btn-default-large-icon-text-left .x-rtl.x-btn-inner{padding-left:3px;padding-right:36px}.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:36px}.x-btn-default-large-icon-text-left .x-btn-icon-el{width:32px;right:auto}.x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-large-icon-text-left .x-btn-icon-el{height:32px}.x-btn-default-large-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-large-icon-text-right .x-btn-button{height:32px}.x-btn-default-large-icon-text-right .x-btn-inner{line-height:32px;padding-right:36px}.x-btn-default-large-icon-text-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:36px}.x-btn-default-large-icon-text-right .x-btn-icon-el{width:32px;left:auto}.x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-large-icon-text-right .x-btn-icon-el{height:32px}.x-btn-default-large-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-large-icon-text-top .x-btn-inner{padding-top:36px}.x-btn-default-large-icon-text-top .x-btn-icon-el{height:32px;bottom:auto}.x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-large-icon-text-bottom .x-btn-inner{padding-bottom:36px}.x-btn-default-large-icon-text-bottom .x-btn-icon-el{height:32px;top:auto}.x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-large-over{border-color:#947518;background-image:none;background-color:#ed9200;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ed9200),color-stop(48%,#e29200),color-stop(52%,#9d7921),color-stop(100%,#ab821b));background-image:-webkit-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-moz-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-o-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b)}.x-btn-default-large-focus{border-color:#947518;background-image:none;background-color:#ed9200;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ed9200),color-stop(48%,#e29200),color-stop(52%,#9d7921),color-stop(100%,#ab821b));background-image:-webkit-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-moz-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-o-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b)}.x-btn-default-large-menu-active,.x-btn-default-large-pressed{border-color:#c9750f;background-image:none;background-color:#da7b19;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#da7b19),color-stop(48%,#e17b1d),color-stop(52%,#db6800),color-stop(100%,#e66e00));background-image:-webkit-linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00);background-image:-moz-linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00);background-image:-o-linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00);background-image:linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00)}.x-btn-default-large-over .x-frame-tl,.x-btn-default-large-over .x-frame-bl,.x-btn-default-large-over .x-frame-tr,.x-btn-default-large-over .x-frame-br,.x-btn-default-large-over .x-frame-tc,.x-btn-default-large-over .x-frame-bc{background-image:url(images/btn/btn-default-large-over-corners.gif)}.x-btn-default-large-over .x-frame-ml,.x-btn-default-large-over .x-frame-mr{background-image:url(images/btn/btn-default-large-over-sides.gif)}.x-btn-default-large-over .x-frame-mc{background-color:#ed9200;background-image:url(images/btn/btn-default-large-over-fbg.gif)}.x-btn-default-large-focus .x-frame-tl,.x-btn-default-large-focus .x-frame-bl,.x-btn-default-large-focus .x-frame-tr,.x-btn-default-large-focus .x-frame-br,.x-btn-default-large-focus .x-frame-tc,.x-btn-default-large-focus .x-frame-bc{background-image:url(images/btn/btn-default-large-focus-corners.gif)}.x-btn-default-large-focus .x-frame-ml,.x-btn-default-large-focus .x-frame-mr{background-image:url(images/btn/btn-default-large-focus-sides.gif)}.x-btn-default-large-focus .x-frame-mc{background-color:#ed9200;background-image:url(images/btn/btn-default-large-focus-fbg.gif)}.x-btn-default-large-menu-active .x-frame-tl,.x-btn-default-large-menu-active .x-frame-bl,.x-btn-default-large-menu-active .x-frame-tr,.x-btn-default-large-menu-active .x-frame-br,.x-btn-default-large-menu-active .x-frame-tc,.x-btn-default-large-menu-active .x-frame-bc,.x-btn-default-large-pressed .x-frame-tl,.x-btn-default-large-pressed .x-frame-bl,.x-btn-default-large-pressed .x-frame-tr,.x-btn-default-large-pressed .x-frame-br,.x-btn-default-large-pressed .x-frame-tc,.x-btn-default-large-pressed .x-frame-bc{background-image:url(images/btn/btn-default-large-pressed-corners.gif)}.x-btn-default-large-menu-active .x-frame-ml,.x-btn-default-large-menu-active .x-frame-mr,.x-btn-default-large-pressed .x-frame-ml,.x-btn-default-large-pressed .x-frame-mr{background-image:url(images/btn/btn-default-large-pressed-sides.gif)}.x-btn-default-large-menu-active .x-frame-mc,.x-btn-default-large-pressed .x-frame-mc{background-color:#da7b19;background-image:url(images/btn/btn-default-large-pressed-fbg.gif)}.x-btn-default-large-disabled .x-frame-tl,.x-btn-default-large-disabled .x-frame-bl,.x-btn-default-large-disabled .x-frame-tr,.x-btn-default-large-disabled .x-frame-br,.x-btn-default-large-disabled .x-frame-tc,.x-btn-default-large-disabled .x-frame-bc{background-image:url(images/btn/btn-default-large-disabled-corners.gif)}.x-btn-default-large-disabled .x-frame-ml,.x-btn-default-large-disabled .x-frame-mr{background-image:url(images/btn/btn-default-large-disabled-sides.gif)}.x-btn-default-large-disabled .x-frame-mc{background-color:#6b6b6b;background-image:url(images/btn/btn-default-large-disabled-fbg.gif)}.x-nlg .x-btn-default-large-over{background-image:url(images/btn/btn-default-large-over-bg.gif)}.x-nlg .x-btn-default-large-focus{background-image:url(images/btn/btn-default-large-focus-bg.gif)}.x-nlg .x-btn-default-large-menu-active,.x-nlg .x-btn-default-large-pressed{background-image:url(images/btn/btn-default-large-pressed-bg.gif)}.x-nlg .x-btn-default-large-disabled{background-image:url(images/btn/btn-default-large-disabled-bg.gif)}.x-nbr .x-btn-default-large{background-image:none}.x-btn-default-large .x-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:18px}.x-btn-default-large .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-rtl.gif);padding-right:0;padding-left:18px}.x-btn-default-large .x-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:16px}.x-btn-default-large-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-large-over .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x-btn-default-large-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-large-disabled .x-btn-inner,.x-btn-default-large-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-btn-default-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"}.x-btn-default-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"}.x-btn-default-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"}.x-btn-default-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"}.x-btn-default-toolbar-small{border-color:transparent}.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:2px 2px 2px 2px;border-width:1px;border-style:solid;background-color:transparent}.x-btn-default-toolbar-small-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-default-toolbar-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-btn-default-toolbar-small-tl{background-position:0 -6px}.x-btn-default-toolbar-small-tr{background-position:right -9px}.x-btn-default-toolbar-small-bl{background-position:0 -12px}.x-btn-default-toolbar-small-br{background-position:right -15px}.x-btn-default-toolbar-small-ml{background-position:0 top}.x-btn-default-toolbar-small-mr{background-position:right top}.x-btn-default-toolbar-small-tc{background-position:0 0}.x-btn-default-toolbar-small-bc{background-position:0 -3px}.x-btn-default-toolbar-small-tr,.x-btn-default-toolbar-small-br,.x-btn-default-toolbar-small-mr{padding-right:3px}.x-btn-default-toolbar-small-tl,.x-btn-default-toolbar-small-bl,.x-btn-default-toolbar-small-ml{padding-left:3px}.x-btn-default-toolbar-small-tc{height:3px}.x-btn-default-toolbar-small-bc{height:3px}.x-btn-default-toolbar-small-tl,.x-btn-default-toolbar-small-bl,.x-btn-default-toolbar-small-tr,.x-btn-default-toolbar-small-br,.x-btn-default-toolbar-small-tc,.x-btn-default-toolbar-small-bc,.x-btn-default-toolbar-small-ml,.x-btn-default-toolbar-small-mr{zoom:1}.x-btn-default-toolbar-small-ml,.x-btn-default-toolbar-small-mr{zoom:1}.x-btn-default-toolbar-small-mc{padding:0}.x-strict .x-ie7 .x-btn-default-toolbar-small-tl,.x-strict .x-ie7 .x-btn-default-toolbar-small-bl{position:relative;right:0}.x-btn-default-toolbar-small .x-btn-inner{font-size:14px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:white;padding:0 4px}.x-btn-default-toolbar-small .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-toolbar-small .x-btn-arrow-right{padding-right:14px}.x-btn-default-toolbar-small .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:14px}.x-btn-default-toolbar-small .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-toolbar-small .x-btn-glyph{font-size:16px;line-height:16px;color:white;opacity:.5}.x-ie8m .x-btn-default-toolbar-small .x-btn-glyph{color:white}.x-btn-default-toolbar-small-disabled{border-color:#565656;background-image:none;background-color:transparent}.x-btn-default-toolbar-small-icon .x-btn-button,.x-btn-default-toolbar-small-noicon .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon .x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-inner{line-height:16px}.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:4px;padding-left:0}.x-btn-default-toolbar-small-icon .x-btn-inner{width:16px;padding:0}.x-btn-default-toolbar-small-icon .x-btn-icon-el{width:16px;height:16px}.x-btn-default-toolbar-small-icon-text-left .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon-text-left .x-btn-inner{line-height:16px;padding-left:20px}.x-btn-default-toolbar-small-icon-text-left .x-rtl.x-btn-inner{padding-left:4px;padding-right:20px}.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:20px}.x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el{width:16px;right:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el{height:16px}.x-btn-default-toolbar-small-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-toolbar-small-icon-text-right .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon-text-right .x-btn-inner{line-height:16px;padding-right:20px}.x-btn-default-toolbar-small-icon-text-right .x-rtl.x-btn-inner{padding-right:4px;padding-left:20px}.x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el{width:16px;left:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el{height:16px}.x-btn-default-toolbar-small-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-toolbar-small-icon-text-top .x-btn-inner{padding-top:20px}.x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el{height:16px;bottom:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner{padding-bottom:20px}.x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el{height:16px;top:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-small-over{border-color:#d97e27;background-image:none;background-color:#ed9200}.x-btn-default-toolbar-small-focus{border-color:#d97e27;background-image:none;background-color:#ed9200}.x-btn-default-toolbar-small-menu-active,.x-btn-default-toolbar-small-pressed{border-color:#c86e19;background-image:none;background-color:#db7b1f}.x-btn-default-toolbar-small-over .x-frame-tl,.x-btn-default-toolbar-small-over .x-frame-bl,.x-btn-default-toolbar-small-over .x-frame-tr,.x-btn-default-toolbar-small-over .x-frame-br,.x-btn-default-toolbar-small-over .x-frame-tc,.x-btn-default-toolbar-small-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-over-corners.gif)}.x-btn-default-toolbar-small-over .x-frame-ml,.x-btn-default-toolbar-small-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-over-sides.gif)}.x-btn-default-toolbar-small-over .x-frame-mc{background-color:#ed9200}.x-btn-default-toolbar-small-focus .x-frame-tl,.x-btn-default-toolbar-small-focus .x-frame-bl,.x-btn-default-toolbar-small-focus .x-frame-tr,.x-btn-default-toolbar-small-focus .x-frame-br,.x-btn-default-toolbar-small-focus .x-frame-tc,.x-btn-default-toolbar-small-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-focus-corners.gif)}.x-btn-default-toolbar-small-focus .x-frame-ml,.x-btn-default-toolbar-small-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-focus-sides.gif)}.x-btn-default-toolbar-small-focus .x-frame-mc{background-color:#ed9200}.x-btn-default-toolbar-small-menu-active .x-frame-tl,.x-btn-default-toolbar-small-menu-active .x-frame-bl,.x-btn-default-toolbar-small-menu-active .x-frame-tr,.x-btn-default-toolbar-small-menu-active .x-frame-br,.x-btn-default-toolbar-small-menu-active .x-frame-tc,.x-btn-default-toolbar-small-menu-active .x-frame-bc,.x-btn-default-toolbar-small-pressed .x-frame-tl,.x-btn-default-toolbar-small-pressed .x-frame-bl,.x-btn-default-toolbar-small-pressed .x-frame-tr,.x-btn-default-toolbar-small-pressed .x-frame-br,.x-btn-default-toolbar-small-pressed .x-frame-tc,.x-btn-default-toolbar-small-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-pressed-corners.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-ml,.x-btn-default-toolbar-small-menu-active .x-frame-mr,.x-btn-default-toolbar-small-pressed .x-frame-ml,.x-btn-default-toolbar-small-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-pressed-sides.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-mc,.x-btn-default-toolbar-small-pressed .x-frame-mc{background-color:#db7b1f}.x-btn-default-toolbar-small-disabled .x-frame-tl,.x-btn-default-toolbar-small-disabled .x-frame-bl,.x-btn-default-toolbar-small-disabled .x-frame-tr,.x-btn-default-toolbar-small-disabled .x-frame-br,.x-btn-default-toolbar-small-disabled .x-frame-tc,.x-btn-default-toolbar-small-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-disabled-corners.gif)}.x-btn-default-toolbar-small-disabled .x-frame-ml,.x-btn-default-toolbar-small-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)}.x-btn-default-toolbar-small-disabled .x-frame-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-small{background-image:none}.x-btn-default-toolbar-small .x-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:18px}.x-btn-default-toolbar-small .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-noline-rtl.gif);padding-right:0;padding-left:18px}.x-btn-default-toolbar-small .x-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:16px}.x-btn-default-toolbar-small-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-toolbar-small-over .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x-btn-default-toolbar-small-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-toolbar-small-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif)"}.x-btn-default-toolbar-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif)"}.x-btn-default-toolbar-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif)"}.x-btn-default-toolbar-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)"}.x-btn-default-toolbar-medium{border-color:transparent}.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:transparent}.x-btn-default-toolbar-medium-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-default-toolbar-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-toolbar-medium-tl{background-position:0 -6px}.x-btn-default-toolbar-medium-tr{background-position:right -9px}.x-btn-default-toolbar-medium-bl{background-position:0 -12px}.x-btn-default-toolbar-medium-br{background-position:right -15px}.x-btn-default-toolbar-medium-ml{background-position:0 top}.x-btn-default-toolbar-medium-mr{background-position:right top}.x-btn-default-toolbar-medium-tc{background-position:0 0}.x-btn-default-toolbar-medium-bc{background-position:0 -3px}.x-btn-default-toolbar-medium-tr,.x-btn-default-toolbar-medium-br,.x-btn-default-toolbar-medium-mr{padding-right:3px}.x-btn-default-toolbar-medium-tl,.x-btn-default-toolbar-medium-bl,.x-btn-default-toolbar-medium-ml{padding-left:3px}.x-btn-default-toolbar-medium-tc{height:3px}.x-btn-default-toolbar-medium-bc{height:3px}.x-btn-default-toolbar-medium-tl,.x-btn-default-toolbar-medium-bl,.x-btn-default-toolbar-medium-tr,.x-btn-default-toolbar-medium-br,.x-btn-default-toolbar-medium-tc,.x-btn-default-toolbar-medium-bc,.x-btn-default-toolbar-medium-ml,.x-btn-default-toolbar-medium-mr{zoom:1}.x-btn-default-toolbar-medium-ml,.x-btn-default-toolbar-medium-mr{zoom:1}.x-btn-default-toolbar-medium-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-toolbar-medium-tl,.x-strict .x-ie7 .x-btn-default-toolbar-medium-bl{position:relative;right:0}.x-btn-default-toolbar-medium .x-btn-inner{font-size:14px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:white;padding:0 3px}.x-btn-default-toolbar-medium .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-toolbar-medium .x-btn-arrow-right{padding-right:14px}.x-btn-default-toolbar-medium .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:14px}.x-btn-default-toolbar-medium .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-toolbar-medium .x-btn-glyph{font-size:24px;line-height:24px;color:white;opacity:.5}.x-ie8m .x-btn-default-toolbar-medium .x-btn-glyph{color:white}.x-btn-default-toolbar-medium-disabled{border-color:#565656;background-image:none;background-color:transparent}.x-btn-default-toolbar-medium-icon .x-btn-button,.x-btn-default-toolbar-medium-noicon .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon .x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-inner{line-height:24px}.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:0}.x-btn-default-toolbar-medium-icon .x-btn-inner{width:24px;padding:0}.x-btn-default-toolbar-medium-icon .x-btn-icon-el{width:24px;height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-inner{line-height:24px;padding-left:28px}.x-btn-default-toolbar-medium-icon-text-left .x-rtl.x-btn-inner{padding-left:3px;padding-right:28px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:28px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el{width:24px;right:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el{height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-toolbar-medium-icon-text-right .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-inner{line-height:24px;padding-right:28px}.x-btn-default-toolbar-medium-icon-text-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:28px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el{width:24px;left:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el{height:24px}.x-btn-default-toolbar-medium-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-toolbar-medium-icon-text-top .x-btn-inner{padding-top:28px}.x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el{height:24px;bottom:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner{padding-bottom:28px}.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el{height:24px;top:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-medium-over{border-color:#d97e27;background-image:none;background-color:#ed9200}.x-btn-default-toolbar-medium-focus{border-color:#d97e27;background-image:none;background-color:#ed9200}.x-btn-default-toolbar-medium-menu-active,.x-btn-default-toolbar-medium-pressed{border-color:#c86e19;background-image:none;background-color:#db7b1f}.x-btn-default-toolbar-medium-over .x-frame-tl,.x-btn-default-toolbar-medium-over .x-frame-bl,.x-btn-default-toolbar-medium-over .x-frame-tr,.x-btn-default-toolbar-medium-over .x-frame-br,.x-btn-default-toolbar-medium-over .x-frame-tc,.x-btn-default-toolbar-medium-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-over-corners.gif)}.x-btn-default-toolbar-medium-over .x-frame-ml,.x-btn-default-toolbar-medium-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-over-sides.gif)}.x-btn-default-toolbar-medium-over .x-frame-mc{background-color:#ed9200}.x-btn-default-toolbar-medium-focus .x-frame-tl,.x-btn-default-toolbar-medium-focus .x-frame-bl,.x-btn-default-toolbar-medium-focus .x-frame-tr,.x-btn-default-toolbar-medium-focus .x-frame-br,.x-btn-default-toolbar-medium-focus .x-frame-tc,.x-btn-default-toolbar-medium-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-focus-corners.gif)}.x-btn-default-toolbar-medium-focus .x-frame-ml,.x-btn-default-toolbar-medium-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-focus-sides.gif)}.x-btn-default-toolbar-medium-focus .x-frame-mc{background-color:#ed9200}.x-btn-default-toolbar-medium-menu-active .x-frame-tl,.x-btn-default-toolbar-medium-menu-active .x-frame-bl,.x-btn-default-toolbar-medium-menu-active .x-frame-tr,.x-btn-default-toolbar-medium-menu-active .x-frame-br,.x-btn-default-toolbar-medium-menu-active .x-frame-tc,.x-btn-default-toolbar-medium-menu-active .x-frame-bc,.x-btn-default-toolbar-medium-pressed .x-frame-tl,.x-btn-default-toolbar-medium-pressed .x-frame-bl,.x-btn-default-toolbar-medium-pressed .x-frame-tr,.x-btn-default-toolbar-medium-pressed .x-frame-br,.x-btn-default-toolbar-medium-pressed .x-frame-tc,.x-btn-default-toolbar-medium-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-ml,.x-btn-default-toolbar-medium-menu-active .x-frame-mr,.x-btn-default-toolbar-medium-pressed .x-frame-ml,.x-btn-default-toolbar-medium-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-mc,.x-btn-default-toolbar-medium-pressed .x-frame-mc{background-color:#db7b1f}.x-btn-default-toolbar-medium-disabled .x-frame-tl,.x-btn-default-toolbar-medium-disabled .x-frame-bl,.x-btn-default-toolbar-medium-disabled .x-frame-tr,.x-btn-default-toolbar-medium-disabled .x-frame-br,.x-btn-default-toolbar-medium-disabled .x-frame-tc,.x-btn-default-toolbar-medium-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-ml,.x-btn-default-toolbar-medium-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-medium{background-image:none}.x-btn-default-toolbar-medium .x-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:18px}.x-btn-default-toolbar-medium .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-noline-rtl.gif);padding-right:0;padding-left:18px}.x-btn-default-toolbar-medium .x-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:16px}.x-btn-default-toolbar-medium-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-toolbar-medium-over .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x-btn-default-toolbar-medium-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-toolbar-medium-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif)"}.x-btn-default-toolbar-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif)"}.x-btn-default-toolbar-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif)"}.x-btn-default-toolbar-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)"}.x-btn-default-toolbar-large{border-color:transparent}.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:transparent}.x-btn-default-toolbar-large-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-default-toolbar-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-toolbar-large-tl{background-position:0 -6px}.x-btn-default-toolbar-large-tr{background-position:right -9px}.x-btn-default-toolbar-large-bl{background-position:0 -12px}.x-btn-default-toolbar-large-br{background-position:right -15px}.x-btn-default-toolbar-large-ml{background-position:0 top}.x-btn-default-toolbar-large-mr{background-position:right top}.x-btn-default-toolbar-large-tc{background-position:0 0}.x-btn-default-toolbar-large-bc{background-position:0 -3px}.x-btn-default-toolbar-large-tr,.x-btn-default-toolbar-large-br,.x-btn-default-toolbar-large-mr{padding-right:3px}.x-btn-default-toolbar-large-tl,.x-btn-default-toolbar-large-bl,.x-btn-default-toolbar-large-ml{padding-left:3px}.x-btn-default-toolbar-large-tc{height:3px}.x-btn-default-toolbar-large-bc{height:3px}.x-btn-default-toolbar-large-tl,.x-btn-default-toolbar-large-bl,.x-btn-default-toolbar-large-tr,.x-btn-default-toolbar-large-br,.x-btn-default-toolbar-large-tc,.x-btn-default-toolbar-large-bc,.x-btn-default-toolbar-large-ml,.x-btn-default-toolbar-large-mr{zoom:1}.x-btn-default-toolbar-large-ml,.x-btn-default-toolbar-large-mr{zoom:1}.x-btn-default-toolbar-large-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-toolbar-large-tl,.x-strict .x-ie7 .x-btn-default-toolbar-large-bl{position:relative;right:0}.x-btn-default-toolbar-large .x-btn-inner{font-size:14px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:white;padding:0 3px}.x-btn-default-toolbar-large .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-toolbar-large .x-btn-arrow-right{padding-right:14px}.x-btn-default-toolbar-large .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:14px}.x-btn-default-toolbar-large .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-toolbar-large .x-btn-glyph{font-size:32px;line-height:32px;color:white;opacity:.5}.x-ie8m .x-btn-default-toolbar-large .x-btn-glyph{color:white}.x-btn-default-toolbar-large-disabled{border-color:#565656;background-image:none;background-color:transparent}.x-btn-default-toolbar-large-icon .x-btn-button,.x-btn-default-toolbar-large-noicon .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon .x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-inner{line-height:32px}.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:0}.x-btn-default-toolbar-large-icon .x-btn-inner{width:32px;padding:0}.x-btn-default-toolbar-large-icon .x-btn-icon-el{width:32px;height:32px}.x-btn-default-toolbar-large-icon-text-left .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon-text-left .x-btn-inner{line-height:32px;padding-left:36px}.x-btn-default-toolbar-large-icon-text-left .x-rtl.x-btn-inner{padding-left:3px;padding-right:36px}.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:36px}.x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el{width:32px;right:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el{height:32px}.x-btn-default-toolbar-large-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-toolbar-large-icon-text-right .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon-text-right .x-btn-inner{line-height:32px;padding-right:36px}.x-btn-default-toolbar-large-icon-text-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:36px}.x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el{width:32px;left:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el{height:32px}.x-btn-default-toolbar-large-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-toolbar-large-icon-text-top .x-btn-inner{padding-top:36px}.x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el{height:32px;bottom:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner{padding-bottom:36px}.x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el{height:32px;top:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-large-over{border-color:#d97e27;background-image:none;background-color:#ed9200}.x-btn-default-toolbar-large-focus{border-color:#d97e27;background-image:none;background-color:#ed9200}.x-btn-default-toolbar-large-menu-active,.x-btn-default-toolbar-large-pressed{border-color:#c86e19;background-image:none;background-color:#db7b1f}.x-btn-default-toolbar-large-over .x-frame-tl,.x-btn-default-toolbar-large-over .x-frame-bl,.x-btn-default-toolbar-large-over .x-frame-tr,.x-btn-default-toolbar-large-over .x-frame-br,.x-btn-default-toolbar-large-over .x-frame-tc,.x-btn-default-toolbar-large-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-over-corners.gif)}.x-btn-default-toolbar-large-over .x-frame-ml,.x-btn-default-toolbar-large-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-over-sides.gif)}.x-btn-default-toolbar-large-over .x-frame-mc{background-color:#ed9200}.x-btn-default-toolbar-large-focus .x-frame-tl,.x-btn-default-toolbar-large-focus .x-frame-bl,.x-btn-default-toolbar-large-focus .x-frame-tr,.x-btn-default-toolbar-large-focus .x-frame-br,.x-btn-default-toolbar-large-focus .x-frame-tc,.x-btn-default-toolbar-large-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-focus-corners.gif)}.x-btn-default-toolbar-large-focus .x-frame-ml,.x-btn-default-toolbar-large-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-focus-sides.gif)}.x-btn-default-toolbar-large-focus .x-frame-mc{background-color:#ed9200}.x-btn-default-toolbar-large-menu-active .x-frame-tl,.x-btn-default-toolbar-large-menu-active .x-frame-bl,.x-btn-default-toolbar-large-menu-active .x-frame-tr,.x-btn-default-toolbar-large-menu-active .x-frame-br,.x-btn-default-toolbar-large-menu-active .x-frame-tc,.x-btn-default-toolbar-large-menu-active .x-frame-bc,.x-btn-default-toolbar-large-pressed .x-frame-tl,.x-btn-default-toolbar-large-pressed .x-frame-bl,.x-btn-default-toolbar-large-pressed .x-frame-tr,.x-btn-default-toolbar-large-pressed .x-frame-br,.x-btn-default-toolbar-large-pressed .x-frame-tc,.x-btn-default-toolbar-large-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-pressed-corners.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-ml,.x-btn-default-toolbar-large-menu-active .x-frame-mr,.x-btn-default-toolbar-large-pressed .x-frame-ml,.x-btn-default-toolbar-large-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-pressed-sides.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-mc,.x-btn-default-toolbar-large-pressed .x-frame-mc{background-color:#db7b1f}.x-btn-default-toolbar-large-disabled .x-frame-tl,.x-btn-default-toolbar-large-disabled .x-frame-bl,.x-btn-default-toolbar-large-disabled .x-frame-tr,.x-btn-default-toolbar-large-disabled .x-frame-br,.x-btn-default-toolbar-large-disabled .x-frame-tc,.x-btn-default-toolbar-large-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-disabled-corners.gif)}.x-btn-default-toolbar-large-disabled .x-frame-ml,.x-btn-default-toolbar-large-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)}.x-btn-default-toolbar-large-disabled .x-frame-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-large{background-image:none}.x-btn-default-toolbar-large .x-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:18px}.x-btn-default-toolbar-large .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-noline-rtl.gif);padding-right:0;padding-left:18px}.x-btn-default-toolbar-large .x-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:16px}.x-btn-default-toolbar-large-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-toolbar-large-over .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x-btn-default-toolbar-large-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-toolbar-large-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif)"}.x-btn-default-toolbar-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif)"}.x-btn-default-toolbar-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif)"}.x-btn-default-toolbar-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)"}.x-btn-icon-text-left .x-btn-icon-el{background-position:left center}.x-btn-icon-text-left .x-rtl.x-btn-icon-el{background-position:right center}.x-btn-icon-text-right .x-btn-icon-el{background-position:right center}.x-btn-icon-text-right .x-rtl.x-btn-icon-el{background-position:left center}.x-btn-icon-text-top .x-btn-icon-el{background-position:center top}.x-btn-icon-text-bottom .x-btn-icon-el{background-position:center bottom}.x-btn-arrow-right{background-position:right center}.x-rtl.x-btn-arrow-right{background-position:left center}.x-btn-arrow-bottom{background-position:center bottom}.x-btn-arrow{background-repeat:no-repeat}.x-btn-split{display:block;background-repeat:no-repeat}.x-btn-split-right{background-position:right center}.x-rtl.x-btn-split-right{background-position:0 center}.x-btn-split-bottom{background-position:center bottom}.x-cycle-fixed-width .x-btn-inner{text-align:inherit}.x-toolbar{font-size:14px;border-style:solid;padding:2px 0 2px 2px}.x-toolbar-item{margin:0 2px 0 0}.x-rtl.x-toolbar-item{margin:0 0 0 2px}.x-toolbar-text{margin:0 6px 0 4px;color:white;line-height:16px;font-family:tahoma,arial,verdana,sans-serif;font-size:14px;font-weight:normal}.x-toolbar-separator-horizontal{margin:0 2px 0 0;height:14px;border-style:solid;border-width:0 1px;border-left-color:#1b1b29;border-right-color:#5d5d6e}.x-rtl.x-toolbar{padding:2px 2px 2px 0}.x-toolbar-footer{background:transparent;border:0;margin:3px 0 0;padding:2px 0 2px 6px}.x-toolbar-footer .x-toolbar-item{margin:0 6px 0 0}.x-toolbar-spacer{width:2px}.x-toolbar-more-icon{background-image:url(images/toolbar/more.gif)!important;background-position:center center!important;background-repeat:no-repeat}.x-toolbar-default{border-color:#18181a;border-width:1px;background-image:none;background-color:#3a3e4f;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#404558),color-stop(100%,#3a3e4f));background-image:-webkit-linear-gradient(top,#404558,#3a3e4f);background-image:-moz-linear-gradient(top,#404558,#3a3e4f);background-image:-o-linear-gradient(top,#404558,#3a3e4f);background-image:linear-gradient(top,#404558,#3a3e4f)}.x-toolbar-default .x-box-scroller{cursor:pointer}.x-toolbar-default .x-box-scroller-disabled{filter:alpha(opacity=50);opacity:.5;cursor:default}.x-nlg .x-toolbar-default{background-image:url(images/toolbar/toolbar-default-bg.gif)!important;background-repeat:repeat-x}.x-toolbar-default:after{display:none;content:"x-slicer:bg:url(images/toolbar/toolbar-default-bg.gif), stretch:bottom"}.x-toolbar-scroll-left{background-image:url(images/toolbar/scroll-left.gif);background-position:-14px 0;width:14px;height:22px;border-style:solid;border-color:#8db2e3;border-width:0 0 1px;margin-top:0}.x-toolbar-scroll-left-hover{background-position:0 0}.x-toolbar-scroll-right{background-image:url(images/toolbar/scroll-right.gif);width:14px;height:22px;border-style:solid;border-color:#8db2e3;border-width:0 0 1px;margin-top:0}.x-toolbar-scroll-right-hover{background-position:-14px 0}.x-toolbar .x-box-menu-after{margin:0 2px 0 2px}.x-toolbar-vertical{padding:2px 2px 0 2px}.x-toolbar-vertical .x-toolbar-item{margin:0 0 2px 0}.x-toolbar-vertical .x-toolbar-text{margin:4px 0 6px 0}.x-toolbar-vertical .x-toolbar-separator-vertical{margin:0 5px 2px;border-style:solid none;border-width:1px 0;border-top-color:#1b1b29;border-bottom-color:#5d5d6e}.x-toolbar-vertical .x-box-menu-after,.x-toolbar-vertical .x-rtl.x-box-menu-after{margin:2px 0 2px 0;display:block;float:none}.x-header-draggable .x-header-body,.x-header-ghost{cursor:move}.x-header-text{white-space:nowrap}.x-panel-ghost{filter:alpha(opacity=65);opacity:.65}.x-panel-default{border-color:#18181a;padding:0}.x-panel-header-default{font-size:14px;border:1px solid #18181a}.x-panel-header-default-horizontal{padding:4px 5px 4px 5px}.x-panel-header-default-horizontal-noborder{padding:5px 6px 4px 6px}.x-panel-header-default-vertical{padding:5px 4px 5px 4px}.x-panel-header-default-vertical-noborder{padding:6px 5px 6px 4px}.x-rtl.x-panel-header-default-vertical{padding:5px 4px 5px 4px}.x-rtl.x-panel-header-default-vertical-noborder{padding:6px 4px 6px 5px}.x-panel-header-text-container-default{color:white;font-size:14px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;line-height:15px;padding:0 2px 1px;text-transform:none}.x-panel-body-default{background:#232d38;border-color:#18181a;color:white;font-size:15px;font-size:normal;border-width:1px;border-style:solid}.x-panel-header-default{background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-panel-header-default-vertical{background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-rtl.x-panel-header-default-vertical{background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-nlg .x-panel-header-default-top{background:url(images/panel-header/panel-header-default-top-bg.gif)}.x-nlg .x-panel-header-default-bottom{background:url(images/panel-header/panel-header-default-bottom-bg.gif)}.x-nlg .x-panel-header-default-left{background:url(images/panel-header/panel-header-default-left-bg.gif) top right}.x-nlg .x-panel-header-default-right{background:url(images/panel-header/panel-header-default-right-bg.gif) top right}.x-nlg .x-rtl.x-panel-header-default-left{background:url(images/panel-header/panel-header-default-left-bg-rtl.gif)}.x-nlg .x-rtl.x-panel-header-default-right{background:url(images/panel-header/panel-header-default-right-bg-rtl.gif)}.x-panel .x-panel-header-default-collapsed-border-top{border-bottom-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-right{border-left-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-bottom{border-top-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-left{border-right-width:1px!important}.x-panel-header-default-top:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-top-bg.gif), stretch:bottom"}.x-panel-header-default-bottom:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-bottom-bg.gif), stretch:bottom"}.x-panel-header-default-left:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-left-bg-rtl.gif), stretch:left"}.x-panel-header-default-right:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-right-bg-rtl.gif), stretch:left"}.x-panel-header-default-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-default-vertical .x-panel-header-text-container{background-color:#3a4155;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#3a4155)}.x-panel-header-default-vertical .x-rtl.x-panel-header-text-container{-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-panel-header-default-vertical .x-rtl.x-panel-header-text-container{background-color:#3a4155;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3),progid:DXImageTransform.Microsoft.Chroma(color=#3a4155)}.x-panel-header-default-top{-webkit-box-shadow:#606877 0 1px 0 0 inset;-moz-box-shadow:#606877 0 1px 0 0 inset;box-shadow:#606877 0 1px 0 0 inset}.x-panel-header-default-right{-webkit-box-shadow:#606877 -1px 0 0 0 inset;-moz-box-shadow:#606877 -1px 0 0 0 inset;box-shadow:#606877 -1px 0 0 0 inset}.x-panel-header-default-bottom{-webkit-box-shadow:#606877 0 -1px 0 0 inset;-moz-box-shadow:#606877 0 -1px 0 0 inset;box-shadow:#606877 0 -1px 0 0 inset}.x-panel-header-default-left{-webkit-box-shadow:#606877 1px 0 0 0 inset;-moz-box-shadow:#606877 1px 0 0 0 inset;box-shadow:#606877 1px 0 0 0 inset}.x-panel-header-default .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-default .x-panel-header-glyph{color:white;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-default .x-panel-header-glyph{color:#9ca0aa}.x-panel-header-default-horizontal .x-panel-header-icon-before-title{margin:0 2px 0 0}.x-panel-header-default-horizontal .x-rtl.x-panel-header-icon-before-title{margin:0 0 0 2px}.x-panel-header-default-horizontal .x-panel-header-icon-after-title{margin:0 0 0 2px}.x-panel-header-default-horizontal .x-rtl.x-panel-header-icon-after-title{margin:0 2px 0 0}.x-panel-header-default-vertical .x-panel-header-icon-before-title{margin:0 0 2px 0}.x-panel-header-default-vertical .x-rtl.x-panel-header-icon-before-title{margin:0 0 2px 0}.x-panel-header-default-vertical .x-panel-header-icon-after-title{margin:2px 0 0 0}.x-panel-header-default-vertical .x-rtl.x-panel-header-icon-after-title{margin:2px 0 0 0}.x-panel-header-default-horizontal .x-tool-after-title{margin:0 0 0 2px}.x-panel-header-default-horizontal .x-rtl.x-tool-after-title{margin:0 2px 0 0}.x-panel-header-default-horizontal .x-tool-before-title{margin:0 2px 0 0}.x-panel-header-default-horizontal .x-rtl.x-tool-before-title{margin:0 0 0 2px}.x-panel-header-default-vertical .x-tool-after-title{margin:2px 0 0 0}.x-panel-header-default-vertical .x-rtl.x-tool-after-title{margin:2px 0 0 0}.x-panel-header-default-vertical .x-tool-before-title{margin:0 0 2px 0}.x-panel-header-default-vertical .x-rtl.x-tool-before-title{margin:0 0 2px 0}.x-rtl.x-panel-header-default-collapsed-border-right{border-right-width:1px!important}.x-rtl.x-panel-header-default-collapsed-border-left{border-left-width:1px!important}.x-panel-default-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-panel-default-framed{border-color:#18181a;padding:4px}.x-panel-header-default-framed{font-size:14px;border:1px solid #18181a}.x-panel-header-default-framed-horizontal{padding:4px 5px 4px 5px}.x-panel-header-default-framed-horizontal-noborder{padding:5px 6px 4px 6px}.x-panel-header-default-framed-vertical{padding:5px 4px 5px 4px}.x-panel-header-default-framed-vertical-noborder{padding:6px 5px 6px 4px}.x-rtl.x-panel-header-default-framed-vertical{padding:5px 4px 5px 4px}.x-rtl.x-panel-header-default-framed-vertical-noborder{padding:6px 4px 6px 5px}.x-panel-header-text-container-default-framed{color:white;font-size:14px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;line-height:15px;padding:0 2px 1px;text-transform:none}.x-panel-body-default-framed{background:#3f4757;border-color:#18181a;color:white;font-size:15px;font-size:normal;border-width:0;border-style:solid}.x-panel-default-framed{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:#3f4757}.x-panel-default-framed-mc{background-color:#3f4757}.x-nbr .x-panel-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-default-framed-frameInfo{font-family:dh-3-3-3-3-1-1-1-1-4-4-4-4}.x-panel-default-framed-tl{background-position:0 -6px}.x-panel-default-framed-tr{background-position:right -9px}.x-panel-default-framed-bl{background-position:0 -12px}.x-panel-default-framed-br{background-position:right -15px}.x-panel-default-framed-ml{background-position:0 top}.x-panel-default-framed-mr{background-position:right top}.x-panel-default-framed-tc{background-position:0 0}.x-panel-default-framed-bc{background-position:0 -3px}.x-panel-default-framed-tr,.x-panel-default-framed-br,.x-panel-default-framed-mr{padding-right:3px}.x-panel-default-framed-tl,.x-panel-default-framed-bl,.x-panel-default-framed-ml{padding-left:3px}.x-panel-default-framed-tc{height:3px}.x-panel-default-framed-bc{height:3px}.x-panel-default-framed-tl,.x-panel-default-framed-bl,.x-panel-default-framed-tr,.x-panel-default-framed-br,.x-panel-default-framed-tc,.x-panel-default-framed-bc,.x-panel-default-framed-ml,.x-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-corners.gif)}.x-panel-default-framed-ml,.x-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-sides.gif);background-repeat:repeat-y}.x-panel-default-framed-mc{padding:2px 2px 2px 2px}.x-strict .x-ie7 .x-panel-default-framed-tl,.x-strict .x-ie7 .x-panel-default-framed-bl{position:relative;right:0}.x-panel-default-framed:after{display:none;content:"x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"}.x-panel-header-default-framed-top{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:4px 5px 4px 5px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-panel-header-default-framed-top-mc{background-image:url(images/panel-header/panel-header-default-framed-top-fbg.gif);background-position:0 top;background-color:#3a4155}.x-nlg .x-panel-header-default-framed-top{background-image:url(images/panel-header/panel-header-default-framed-top-bg.gif);background-position:0 top}.x-nbr .x-panel-header-default-framed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-top-frameInfo{font-family:dh-3-3-0-0-1-1-0-1-4-5-4-5}.x-panel-header-default-framed-top-tl{background-position:0 -6px}.x-panel-header-default-framed-top-tr{background-position:right -9px}.x-panel-header-default-framed-top-bl{background-position:0 -12px}.x-panel-header-default-framed-top-br{background-position:right -15px}.x-panel-header-default-framed-top-ml{background-position:0 top}.x-panel-header-default-framed-top-mr{background-position:right top}.x-panel-header-default-framed-top-tc{background-position:0 0}.x-panel-header-default-framed-top-bc{background-position:0 -3px}.x-panel-header-default-framed-top-tr,.x-panel-header-default-framed-top-br,.x-panel-header-default-framed-top-mr{padding-right:3px}.x-panel-header-default-framed-top-tl,.x-panel-header-default-framed-top-bl,.x-panel-header-default-framed-top-ml{padding-left:3px}.x-panel-header-default-framed-top-tc{height:3px}.x-panel-header-default-framed-top-bc{height:0}.x-panel-header-default-framed-top-tl,.x-panel-header-default-framed-top-bl,.x-panel-header-default-framed-top-tr,.x-panel-header-default-framed-top-br,.x-panel-header-default-framed-top-tc,.x-panel-header-default-framed-top-bc,.x-panel-header-default-framed-top-ml,.x-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-corners.gif)}.x-panel-header-default-framed-top-ml,.x-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-sides.gif)}.x-panel-header-default-framed-top-mc{padding:2px 3px 4px 3px}.x-strict .x-ie7 .x-panel-header-default-framed-top-tl,.x-strict .x-ie7 .x-panel-header-default-framed-top-bl{position:relative;right:0}.x-panel-header-default-framed-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"}.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:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 4px 5px 4px;border-width:1px 1px 1px 0;border-style:solid;background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-rtl.x-panel-header-default-framed-right{background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-panel-header-default-framed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-right-fbg.gif);background-position:right 0;background-color:#3a4155}.x-rtl.x-panel-header-default-framed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-right-fbg-rtl.gif);background-position:0 0}.x-nlg .x-panel-header-default-framed-right{background-image:url(images/panel-header/panel-header-default-framed-right-bg.gif);background-position:right 0}.x-nlg .x-rtl.x-panel-header-default-framed-right{background-image:url(images/panel-header/panel-header-default-framed-right-bg-rtl.gif);background-position:0 0}.x-nbr .x-panel-header-default-framed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-right-frameInfo{font-family:dv-0-3-3-0-1-1-1-0-5-4-5-4}.x-panel-header-default-framed-right-tl{background-position:0 0}.x-panel-header-default-framed-right-tr{background-position:0 -3px}.x-panel-header-default-framed-right-bl{background-position:0 -6px}.x-panel-header-default-framed-right-br{background-position:0 -9px}.x-panel-header-default-framed-right-ml{background-position:-3px 0}.x-panel-header-default-framed-right-mr{background-position:right 0}.x-panel-header-default-framed-right-tc{background-position:right 0}.x-panel-header-default-framed-right-bc{background-position:right -3px}.x-rtl.x-panel-header-default-framed-right-tc{background-position:0 0}.x-rtl.x-panel-header-default-framed-right-bc{background-position:0 -3px}.x-panel-header-default-framed-right-tr,.x-panel-header-default-framed-right-br,.x-panel-header-default-framed-right-mr{padding-right:3px}.x-panel-header-default-framed-right-tl,.x-panel-header-default-framed-right-bl,.x-panel-header-default-framed-right-ml{padding-left:0}.x-panel-header-default-framed-right-tc{height:3px}.x-panel-header-default-framed-right-bc{height:3px}.x-panel-header-default-framed-right-tl,.x-panel-header-default-framed-right-bl,.x-panel-header-default-framed-right-tr,.x-panel-header-default-framed-right-br,.x-panel-header-default-framed-right-tc,.x-panel-header-default-framed-right-bc,.x-panel-header-default-framed-right-ml,.x-panel-header-default-framed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-corners.gif)}.x-rtl.x-panel-header-default-framed-right-tl,.x-rtl.x-panel-header-default-framed-right-ml,.x-rtl.x-panel-header-default-framed-right-bl,.x-rtl.x-panel-header-default-framed-right-tr,.x-rtl.x-panel-header-default-framed-right-mr,.x-rtl.x-panel-header-default-framed-right-br{background-image:url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif)}.x-panel-header-default-framed-right-tc,.x-panel-header-default-framed-right-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-sides.gif);background-repeat:repeat-x}.x-rtl.x-panel-header-default-framed-right-tc,.x-rtl.x-panel-header-default-framed-right-bc{background-image:url(images/panel-header/panel-header-default-framed-right-sides-rtl.gif)}.x-panel-header-default-framed-right-mc{padding:3px 2px 3px 4px}.x-strict .x-ie7 .x-panel-header-default-framed-right-tl,.x-strict .x-ie7 .x-panel-header-default-framed-right-bl{position:relative;right:0}.x-panel-header-default-framed-right:after{display:none;content:"x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-right-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-right-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-right-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-right-sides-rtl.gif)"}.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:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;padding:4px 5px 4px 5px;border-width:0 1px 1px 1px;border-style:solid;background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-panel-header-default-framed-bottom-mc{background-image:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif);background-position:0 bottom;background-color:#3a4155}.x-nlg .x-panel-header-default-framed-bottom{background-image:url(images/panel-header/panel-header-default-framed-bottom-bg.gif);background-position:0 bottom}.x-nbr .x-panel-header-default-framed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-bottom-frameInfo{font-family:dh-0-0-3-3-0-1-1-1-4-5-4-5}.x-panel-header-default-framed-bottom-tl{background-position:0 -6px}.x-panel-header-default-framed-bottom-tr{background-position:right -9px}.x-panel-header-default-framed-bottom-bl{background-position:0 -12px}.x-panel-header-default-framed-bottom-br{background-position:right -15px}.x-panel-header-default-framed-bottom-ml{background-position:0 bottom}.x-panel-header-default-framed-bottom-mr{background-position:right bottom}.x-panel-header-default-framed-bottom-tc{background-position:0 0}.x-panel-header-default-framed-bottom-bc{background-position:0 -3px}.x-panel-header-default-framed-bottom-tr,.x-panel-header-default-framed-bottom-br,.x-panel-header-default-framed-bottom-mr{padding-right:3px}.x-panel-header-default-framed-bottom-tl,.x-panel-header-default-framed-bottom-bl,.x-panel-header-default-framed-bottom-ml{padding-left:3px}.x-panel-header-default-framed-bottom-tc{height:0}.x-panel-header-default-framed-bottom-bc{height:3px}.x-panel-header-default-framed-bottom-tl,.x-panel-header-default-framed-bottom-bl,.x-panel-header-default-framed-bottom-tr,.x-panel-header-default-framed-bottom-br,.x-panel-header-default-framed-bottom-tc,.x-panel-header-default-framed-bottom-bc,.x-panel-header-default-framed-bottom-ml,.x-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-corners.gif)}.x-panel-header-default-framed-bottom-ml,.x-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)}.x-panel-header-default-framed-bottom-mc{padding:4px 3px 2px 3px}.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl,.x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl{position:relative;right:0}.x-panel-header-default-framed-bottom:after{display:none;content:"x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"}.x-panel-header-default-framed-left{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;padding:5px 4px 5px 4px;border-width:1px 0 1px 1px;border-style:solid;background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-rtl.x-panel-header-default-framed-left{background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-panel-header-default-framed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-left-fbg.gif);background-position:left 0;background-color:#3a4155}.x-rtl.x-panel-header-default-framed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-left-fbg-rtl.gif);background-position:right 0}.x-nlg .x-panel-header-default-framed-left{background-image:url(images/panel-header/panel-header-default-framed-left-bg.gif);background-position:left 0}.x-nlg .x-rtl.x-panel-header-default-framed-left{background-image:url(images/panel-header/panel-header-default-framed-left-bg-rtl.gif);background-position:right 0}.x-nbr .x-panel-header-default-framed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-left-frameInfo{font-family:dv-3-0-0-3-1-0-1-1-5-4-5-4}.x-panel-header-default-framed-left-tl{background-position:0 0}.x-panel-header-default-framed-left-tr{background-position:0 -3px}.x-panel-header-default-framed-left-bl{background-position:0 -6px}.x-panel-header-default-framed-left-br{background-position:0 -9px}.x-panel-header-default-framed-left-ml{background-position:-3px 0}.x-panel-header-default-framed-left-mr{background-position:right 0}.x-panel-header-default-framed-left-tc{background-position:left 0}.x-panel-header-default-framed-left-bc{background-position:left -3px}.x-rtl.x-panel-header-default-framed-left-tc{background-position:right 0}.x-rtl.x-panel-header-default-framed-left-bc{background-position:right -3px}.x-panel-header-default-framed-left-tr,.x-panel-header-default-framed-left-br,.x-panel-header-default-framed-left-mr{padding-right:0}.x-panel-header-default-framed-left-tl,.x-panel-header-default-framed-left-bl,.x-panel-header-default-framed-left-ml{padding-left:3px}.x-panel-header-default-framed-left-tc{height:3px}.x-panel-header-default-framed-left-bc{height:3px}.x-panel-header-default-framed-left-tl,.x-panel-header-default-framed-left-bl,.x-panel-header-default-framed-left-tr,.x-panel-header-default-framed-left-br,.x-panel-header-default-framed-left-tc,.x-panel-header-default-framed-left-bc,.x-panel-header-default-framed-left-ml,.x-panel-header-default-framed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-corners.gif)}.x-rtl.x-panel-header-default-framed-left-tl,.x-rtl.x-panel-header-default-framed-left-ml,.x-rtl.x-panel-header-default-framed-left-bl,.x-rtl.x-panel-header-default-framed-left-tr,.x-rtl.x-panel-header-default-framed-left-mr,.x-rtl.x-panel-header-default-framed-left-br{background-image:url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif)}.x-panel-header-default-framed-left-tc,.x-panel-header-default-framed-left-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-sides.gif);background-repeat:repeat-x}.x-rtl.x-panel-header-default-framed-left-tc,.x-rtl.x-panel-header-default-framed-left-bc{background-image:url(images/panel-header/panel-header-default-framed-left-sides-rtl.gif)}.x-panel-header-default-framed-left-mc{padding:3px 4px 3px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-left-tl,.x-strict .x-ie7 .x-panel-header-default-framed-left-bl{position:relative;right:0}.x-panel-header-default-framed-left:after{display:none;content:"x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-left-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-left-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-left-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-left-sides-rtl.gif)"}.x-panel-header-default-framed-collapsed-top{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-panel-header-default-framed-collapsed-top-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif);background-position:0 top;background-color:#3a4155}.x-nlg .x-panel-header-default-framed-collapsed-top{background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif);background-position:0 top}.x-nbr .x-panel-header-default-framed-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-top-frameInfo{font-family:dh-3-3-3-3-1-1-1-1-4-5-4-5}.x-panel-header-default-framed-collapsed-top-tl{background-position:0 -6px}.x-panel-header-default-framed-collapsed-top-tr{background-position:right -9px}.x-panel-header-default-framed-collapsed-top-bl{background-position:0 -12px}.x-panel-header-default-framed-collapsed-top-br{background-position:right -15px}.x-panel-header-default-framed-collapsed-top-ml{background-position:0 top}.x-panel-header-default-framed-collapsed-top-mr{background-position:right top}.x-panel-header-default-framed-collapsed-top-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-top-bc{background-position:0 -3px}.x-panel-header-default-framed-collapsed-top-tr,.x-panel-header-default-framed-collapsed-top-br,.x-panel-header-default-framed-collapsed-top-mr{padding-right:3px}.x-panel-header-default-framed-collapsed-top-tl,.x-panel-header-default-framed-collapsed-top-bl,.x-panel-header-default-framed-collapsed-top-ml{padding-left:3px}.x-panel-header-default-framed-collapsed-top-tc{height:3px}.x-panel-header-default-framed-collapsed-top-bc{height:3px}.x-panel-header-default-framed-collapsed-top-tl,.x-panel-header-default-framed-collapsed-top-bl,.x-panel-header-default-framed-collapsed-top-tr,.x-panel-header-default-framed-collapsed-top-br,.x-panel-header-default-framed-collapsed-top-tc,.x-panel-header-default-framed-collapsed-top-bc,.x-panel-header-default-framed-collapsed-top-ml,.x-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif)}.x-panel-header-default-framed-collapsed-top-ml,.x-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)}.x-panel-header-default-framed-collapsed-top-mc{padding:2px 3px 2px 3px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"}.x-panel-header-default-framed-collapsed-right{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-rtl.x-panel-header-default-framed-collapsed-right{background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-panel-header-default-framed-collapsed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif);background-position:right 0;background-color:#3a4155}.x-rtl.x-panel-header-default-framed-collapsed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif);background-position:0 0}.x-nlg .x-panel-header-default-framed-collapsed-right{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif);background-position:right 0}.x-nlg .x-rtl.x-panel-header-default-framed-collapsed-right{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif);background-position:0 0}.x-nbr .x-panel-header-default-framed-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-right-frameInfo{font-family:dv-3-3-3-3-1-1-1-1-5-4-5-4}.x-panel-header-default-framed-collapsed-right-tl{background-position:0 0}.x-panel-header-default-framed-collapsed-right-tr{background-position:0 -3px}.x-panel-header-default-framed-collapsed-right-bl{background-position:0 -6px}.x-panel-header-default-framed-collapsed-right-br{background-position:0 -9px}.x-panel-header-default-framed-collapsed-right-ml{background-position:-3px 0}.x-panel-header-default-framed-collapsed-right-mr{background-position:right 0}.x-panel-header-default-framed-collapsed-right-tc{background-position:right 0}.x-panel-header-default-framed-collapsed-right-bc{background-position:right -3px}.x-rtl.x-panel-header-default-framed-collapsed-right-tc{background-position:0 0}.x-rtl.x-panel-header-default-framed-collapsed-right-bc{background-position:0 -3px}.x-panel-header-default-framed-collapsed-right-tr,.x-panel-header-default-framed-collapsed-right-br,.x-panel-header-default-framed-collapsed-right-mr{padding-right:3px}.x-panel-header-default-framed-collapsed-right-tl,.x-panel-header-default-framed-collapsed-right-bl,.x-panel-header-default-framed-collapsed-right-ml{padding-left:3px}.x-panel-header-default-framed-collapsed-right-tc{height:3px}.x-panel-header-default-framed-collapsed-right-bc{height:3px}.x-panel-header-default-framed-collapsed-right-tl,.x-panel-header-default-framed-collapsed-right-bl,.x-panel-header-default-framed-collapsed-right-tr,.x-panel-header-default-framed-collapsed-right-br,.x-panel-header-default-framed-collapsed-right-tc,.x-panel-header-default-framed-collapsed-right-bc,.x-panel-header-default-framed-collapsed-right-ml,.x-panel-header-default-framed-collapsed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif)}.x-rtl.x-panel-header-default-framed-collapsed-right-tl,.x-rtl.x-panel-header-default-framed-collapsed-right-ml,.x-rtl.x-panel-header-default-framed-collapsed-right-bl,.x-rtl.x-panel-header-default-framed-collapsed-right-tr,.x-rtl.x-panel-header-default-framed-collapsed-right-mr,.x-rtl.x-panel-header-default-framed-collapsed-right-br{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif)}.x-panel-header-default-framed-collapsed-right-tc,.x-panel-header-default-framed-collapsed-right-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif);background-repeat:repeat-x}.x-rtl.x-panel-header-default-framed-collapsed-right-tc,.x-rtl.x-panel-header-default-framed-collapsed-right-bc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif)}.x-panel-header-default-framed-collapsed-right-mc{padding:3px 2px 3px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-right:after{display:none;content:"x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif)"}.x-panel-header-default-framed-collapsed-bottom{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-panel-header-default-framed-collapsed-bottom-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif);background-position:0 bottom;background-color:#3a4155}.x-nlg .x-panel-header-default-framed-collapsed-bottom{background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif);background-position:0 bottom}.x-nbr .x-panel-header-default-framed-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-bottom-frameInfo{font-family:dh-3-3-3-3-1-1-1-1-4-5-4-5}.x-panel-header-default-framed-collapsed-bottom-tl{background-position:0 -6px}.x-panel-header-default-framed-collapsed-bottom-tr{background-position:right -9px}.x-panel-header-default-framed-collapsed-bottom-bl{background-position:0 -12px}.x-panel-header-default-framed-collapsed-bottom-br{background-position:right -15px}.x-panel-header-default-framed-collapsed-bottom-ml{background-position:0 bottom}.x-panel-header-default-framed-collapsed-bottom-mr{background-position:right bottom}.x-panel-header-default-framed-collapsed-bottom-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-bottom-bc{background-position:0 -3px}.x-panel-header-default-framed-collapsed-bottom-tr,.x-panel-header-default-framed-collapsed-bottom-br,.x-panel-header-default-framed-collapsed-bottom-mr{padding-right:3px}.x-panel-header-default-framed-collapsed-bottom-tl,.x-panel-header-default-framed-collapsed-bottom-bl,.x-panel-header-default-framed-collapsed-bottom-ml{padding-left:3px}.x-panel-header-default-framed-collapsed-bottom-tc{height:3px}.x-panel-header-default-framed-collapsed-bottom-bc{height:3px}.x-panel-header-default-framed-collapsed-bottom-tl,.x-panel-header-default-framed-collapsed-bottom-bl,.x-panel-header-default-framed-collapsed-bottom-tr,.x-panel-header-default-framed-collapsed-bottom-br,.x-panel-header-default-framed-collapsed-bottom-tc,.x-panel-header-default-framed-collapsed-bottom-bc,.x-panel-header-default-framed-collapsed-bottom-ml,.x-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif)}.x-panel-header-default-framed-collapsed-bottom-ml,.x-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)}.x-panel-header-default-framed-collapsed-bottom-mc{padding:2px 3px 2px 3px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-bottom:after{display:none;content:"x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"}.x-panel-header-default-framed-collapsed-left{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-rtl.x-panel-header-default-framed-collapsed-left{background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(left,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-panel-header-default-framed-collapsed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif);background-position:left 0;background-color:#3a4155}.x-rtl.x-panel-header-default-framed-collapsed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif);background-position:right 0}.x-nlg .x-panel-header-default-framed-collapsed-left{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif);background-position:left 0}.x-nlg .x-rtl.x-panel-header-default-framed-collapsed-left{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif);background-position:right 0}.x-nbr .x-panel-header-default-framed-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-left-frameInfo{font-family:dv-3-3-3-3-1-1-1-1-5-4-5-4}.x-panel-header-default-framed-collapsed-left-tl{background-position:0 0}.x-panel-header-default-framed-collapsed-left-tr{background-position:0 -3px}.x-panel-header-default-framed-collapsed-left-bl{background-position:0 -6px}.x-panel-header-default-framed-collapsed-left-br{background-position:0 -9px}.x-panel-header-default-framed-collapsed-left-ml{background-position:-3px 0}.x-panel-header-default-framed-collapsed-left-mr{background-position:right 0}.x-panel-header-default-framed-collapsed-left-tc{background-position:left 0}.x-panel-header-default-framed-collapsed-left-bc{background-position:left -3px}.x-rtl.x-panel-header-default-framed-collapsed-left-tc{background-position:right 0}.x-rtl.x-panel-header-default-framed-collapsed-left-bc{background-position:right -3px}.x-panel-header-default-framed-collapsed-left-tr,.x-panel-header-default-framed-collapsed-left-br,.x-panel-header-default-framed-collapsed-left-mr{padding-right:3px}.x-panel-header-default-framed-collapsed-left-tl,.x-panel-header-default-framed-collapsed-left-bl,.x-panel-header-default-framed-collapsed-left-ml{padding-left:3px}.x-panel-header-default-framed-collapsed-left-tc{height:3px}.x-panel-header-default-framed-collapsed-left-bc{height:3px}.x-panel-header-default-framed-collapsed-left-tl,.x-panel-header-default-framed-collapsed-left-bl,.x-panel-header-default-framed-collapsed-left-tr,.x-panel-header-default-framed-collapsed-left-br,.x-panel-header-default-framed-collapsed-left-tc,.x-panel-header-default-framed-collapsed-left-bc,.x-panel-header-default-framed-collapsed-left-ml,.x-panel-header-default-framed-collapsed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif)}.x-rtl.x-panel-header-default-framed-collapsed-left-tl,.x-rtl.x-panel-header-default-framed-collapsed-left-ml,.x-rtl.x-panel-header-default-framed-collapsed-left-bl,.x-rtl.x-panel-header-default-framed-collapsed-left-tr,.x-rtl.x-panel-header-default-framed-collapsed-left-mr,.x-rtl.x-panel-header-default-framed-collapsed-left-br{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif)}.x-panel-header-default-framed-collapsed-left-tc,.x-panel-header-default-framed-collapsed-left-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif);background-repeat:repeat-x}.x-rtl.x-panel-header-default-framed-collapsed-left-tc,.x-rtl.x-panel-header-default-framed-collapsed-left-bc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif)}.x-panel-header-default-framed-collapsed-left-mc{padding:3px 2px 3px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-left:after{display:none;content:"x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif)"}.x-panel .x-panel-header-default-framed-top{border-bottom-width:1px!important}.x-panel .x-panel-header-default-framed-right{border-left-width:1px!important}.x-panel .x-panel-header-default-framed-bottom{border-top-width:1px!important}.x-panel .x-panel-header-default-framed-left{border-right-width:1px!important}.x-nbr .x-panel-header-default-framed-collapsed-top{border-bottom-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-right{border-left-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-bottom{border-top-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-left{border-right-width:0!important}.x-panel-header-default-framed-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-default-framed-vertical .x-panel-header-text-container{background-color:#3a4155;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#3a4155)}.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-text-container{-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-panel-header-default-framed-vertical .x-rtl.x-panel-header-text-container{background-color:#3a4155;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3),progid:DXImageTransform.Microsoft.Chroma(color=#3a4155)}.x-panel-header-default-framed-top{-webkit-box-shadow:#606877 0 1px 0 0 inset,#606877 -1px 0 0 0 inset,#606877 1px 0 0 0 inset;-moz-box-shadow:#606877 0 1px 0 0 inset,#606877 -1px 0 0 0 inset,#606877 1px 0 0 0 inset;box-shadow:#606877 0 1px 0 0 inset,#606877 -1px 0 0 0 inset,#606877 1px 0 0 0 inset}.x-panel-header-default-framed-right{-webkit-box-shadow:#606877 0 1px 0 0 inset,#606877 0 -1px 0 0 inset,#606877 -1px 0 0 0 inset;-moz-box-shadow:#606877 0 1px 0 0 inset,#606877 0 -1px 0 0 inset,#606877 -1px 0 0 0 inset;box-shadow:#606877 0 1px 0 0 inset,#606877 0 -1px 0 0 inset,#606877 -1px 0 0 0 inset}.x-panel-header-default-framed-bottom{-webkit-box-shadow:#606877 0 -1px 0 0 inset,#606877 -1px 0 0 0 inset,#606877 1px 0 0 0 inset;-moz-box-shadow:#606877 0 -1px 0 0 inset,#606877 -1px 0 0 0 inset,#606877 1px 0 0 0 inset;box-shadow:#606877 0 -1px 0 0 inset,#606877 -1px 0 0 0 inset,#606877 1px 0 0 0 inset}.x-panel-header-default-framed-left{-webkit-box-shadow:#606877 0 1px 0 0 inset,#606877 0 -1px 0 0 inset,#606877 1px 0 0 0 inset;-moz-box-shadow:#606877 0 1px 0 0 inset,#606877 0 -1px 0 0 inset,#606877 1px 0 0 0 inset;box-shadow:#606877 0 1px 0 0 inset,#606877 0 -1px 0 0 inset,#606877 1px 0 0 0 inset}.x-panel-header-default-framed .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-default-framed .x-panel-header-glyph{color:white;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-default-framed .x-panel-header-glyph{color:#9ca0aa}.x-panel-header-default-framed-horizontal .x-panel-header-icon-before-title{margin:0 2px 0 0}.x-panel-header-default-framed-horizontal .x-rtl.x-panel-header-icon-before-title{margin:0 0 0 2px}.x-panel-header-default-framed-horizontal .x-panel-header-icon-after-title{margin:0 0 0 2px}.x-panel-header-default-framed-horizontal .x-rtl.x-panel-header-icon-after-title{margin:0 2px 0 0}.x-panel-header-default-framed-vertical .x-panel-header-icon-before-title{margin:0 0 2px 0}.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-icon-before-title{margin:0 0 2px 0}.x-panel-header-default-framed-vertical .x-panel-header-icon-after-title{margin:2px 0 0 0}.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-icon-after-title{margin:2px 0 0 0}.x-panel-header-default-framed-horizontal .x-tool-after-title{margin:0 0 0 2px}.x-panel-header-default-framed-horizontal .x-rtl.x-tool-after-title{margin:0 2px 0 0}.x-panel-header-default-framed-horizontal .x-tool-before-title{margin:0 2px 0 0}.x-panel-header-default-framed-horizontal .x-rtl.x-tool-before-title{margin:0 0 0 2px}.x-panel-header-default-framed-vertical .x-tool-after-title{margin:2px 0 0 0}.x-panel-header-default-framed-vertical .x-rtl.x-tool-after-title{margin:2px 0 0 0}.x-panel-header-default-framed-vertical .x-tool-before-title{margin:0 0 2px 0}.x-panel-header-default-framed-vertical .x-rtl.x-tool-before-title{margin:0 0 2px 0}.x-rtl.x-panel-header-default-framed-collapsed-border-right{border-right-width:1px!important}.x-rtl.x-panel-header-default-framed-collapsed-border-left{border-left-width:1px!important}.x-panel-default-framed-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-tip-anchor{position:absolute;overflow:hidden;height:10px;width:10px;border-style:solid;border-width:5px;border-color:#122d5e;zoom:1}.x-content-box .x-tip-anchor{height:0;width:0}.x-tip-anchor-top{border-top-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-bottom{border-bottom-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-bottom-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-left{border-top-color:transparent;border-bottom-color:transparent;border-left-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-left-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-right{border-top-color:transparent;border-bottom-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.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:#5e6986}.x-tip-default-mc{background-color:#5e6986}.x-nbr .x-tip-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tip-default-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-tip-default-tl{background-position:0 -6px}.x-tip-default-tr{background-position:right -9px}.x-tip-default-bl{background-position:0 -12px}.x-tip-default-br{background-position:right -15px}.x-tip-default-ml{background-position:0 top}.x-tip-default-mr{background-position:right top}.x-tip-default-tc{background-position:0 0}.x-tip-default-bc{background-position:0 -3px}.x-tip-default-tr,.x-tip-default-br,.x-tip-default-mr{padding-right:3px}.x-tip-default-tl,.x-tip-default-bl,.x-tip-default-ml{padding-left:3px}.x-tip-default-tc{height:3px}.x-tip-default-bc{height:3px}.x-tip-default-tl,.x-tip-default-bl,.x-tip-default-tr,.x-tip-default-br,.x-tip-default-tc,.x-tip-default-bc,.x-tip-default-ml,.x-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-corners.gif)}.x-tip-default-ml,.x-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-sides.gif);background-repeat:repeat-y}.x-tip-default-mc{padding:0}.x-strict .x-ie7 .x-tip-default-tl,.x-strict .x-ie7 .x-tip-default-bl{position:relative;right:0}.x-tip-default:after{display:none;content:"x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"}.x-tip-default{border-color:#122d5e}.x-tip-default .x-tool-img{background-color:#5e6986}.x-tip-header-default .x-tool-after-title{margin:0 0 0 6px}.x-tip-header-default .x-rtl.x-tool-after-title{margin:0 6px 0 0}.x-tip-header-default .x-tool-before-title{margin:0 6px 0 0}.x-tip-header-default .x-rtl.x-tool-before-title{margin:0 0 0 6px}.x-tip-header-body-default{padding:3px 3px 0 3px}.x-tip-header-text-container-default{color:black;font-size:14px;font-weight:bold}.x-tip-body-default{padding:3px;color:black;font-size:14px;font-weight:normal}.x-tip-body-default a{color:black}.x-tip-form-invalid{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:white}.x-tip-form-invalid-mc{background-color:white}.x-nbr .x-tip-form-invalid{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tip-form-invalid-frameInfo{font-family:th-5-5-5-5-1-1-1-1-4-4-4-4}.x-tip-form-invalid-tl{background-position:0 -10px}.x-tip-form-invalid-tr{background-position:right -15px}.x-tip-form-invalid-bl{background-position:0 -20px}.x-tip-form-invalid-br{background-position:right -25px}.x-tip-form-invalid-ml{background-position:0 top}.x-tip-form-invalid-mr{background-position:right top}.x-tip-form-invalid-tc{background-position:0 0}.x-tip-form-invalid-bc{background-position:0 -5px}.x-tip-form-invalid-tr,.x-tip-form-invalid-br,.x-tip-form-invalid-mr{padding-right:5px}.x-tip-form-invalid-tl,.x-tip-form-invalid-bl,.x-tip-form-invalid-ml{padding-left:5px}.x-tip-form-invalid-tc{height:5px}.x-tip-form-invalid-bc{height:5px}.x-tip-form-invalid-tl,.x-tip-form-invalid-bl,.x-tip-form-invalid-tr,.x-tip-form-invalid-br,.x-tip-form-invalid-tc,.x-tip-form-invalid-bc,.x-tip-form-invalid-ml,.x-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-corners.gif)}.x-tip-form-invalid-ml,.x-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-sides.gif);background-repeat:repeat-y}.x-tip-form-invalid-mc{padding:0}.x-strict .x-ie7 .x-tip-form-invalid-tl,.x-strict .x-ie7 .x-tip-form-invalid-bl{position:relative;right:0}.x-tip-form-invalid:after{display:none;content:"x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"}.x-tip-form-invalid{border-color:#a1311f;-webkit-box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset;-moz-box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset;box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset}.x-tip-form-invalid .x-tool-img{background-color:white}.x-tip-header-form-invalid .x-tool-after-title{margin:0 0 0 6px}.x-tip-header-form-invalid .x-rtl.x-tool-after-title{margin:0 6px 0 0}.x-tip-header-form-invalid .x-tool-before-title{margin:0 6px 0 0}.x-tip-header-form-invalid .x-rtl.x-tool-before-title{margin:0 0 0 6px}.x-tip-header-body-form-invalid{padding:3px 3px 0 3px}.x-tip-header-text-container-form-invalid{color:black;font-size:14px;font-weight:bold}.x-tip-body-form-invalid{padding:3px 3px 3px 22px;color:black;font-size:14px;font-weight:normal}.x-tip-body-form-invalid a{color:black}.x-tip-body-form-invalid{background:1px 1px no-repeat;background-image:url(images/form/exclamation.gif)}.x-tip-body-form-invalid li{margin-bottom:4px}.x-tip-body-form-invalid li.last{margin-bottom:0}.x-btn-group-default{border-color:#606068;-webkit-box-shadow:#757478 0 1px 0 0 inset,#757478 0 -1px 0 0 inset,#757478 -1px 0 0 0 inset,#757478 1px 0 0 0 inset;-moz-box-shadow:#757478 0 1px 0 0 inset,#757478 0 -1px 0 0 inset,#757478 -1px 0 0 0 inset,#757478 1px 0 0 0 inset;box-shadow:#757478 0 1px 0 0 inset,#757478 0 -1px 0 0 inset,#757478 -1px 0 0 0 inset,#757478 1px 0 0 0 inset}.x-btn-group-header-default{margin:2px 2px 0 2px;padding:1px 0;line-height:15px;background:#676772;-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}.x-btn-group-header-default .x-tool-img{background-color:#676772}.x-btn-group-header-text-container-default{font:normal 14px tahoma,arial,verdana,sans-serif;line-height:15px;color:#d2d2d2}.x-btn-group-body-default{padding:0 1px}.x-btn-group-body-default .x-table-layout{border-spacing:0}.x-btn-group-default-framed{-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:1px 1px 1px 1px;border-width:1px;border-style:solid;background-color:#4b515f}.x-btn-group-default-framed-mc{background-color:#4b515f}.x-nbr .x-btn-group-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-group-default-framed-frameInfo{font-family:dh-2-2-2-2-1-1-1-1-1-1-1-1}.x-btn-group-default-framed-tl{background-position:0 -4px}.x-btn-group-default-framed-tr{background-position:right -6px}.x-btn-group-default-framed-bl{background-position:0 -8px}.x-btn-group-default-framed-br{background-position:right -10px}.x-btn-group-default-framed-ml{background-position:0 top}.x-btn-group-default-framed-mr{background-position:right top}.x-btn-group-default-framed-tc{background-position:0 0}.x-btn-group-default-framed-bc{background-position:0 -2px}.x-btn-group-default-framed-tr,.x-btn-group-default-framed-br,.x-btn-group-default-framed-mr{padding-right:2px}.x-btn-group-default-framed-tl,.x-btn-group-default-framed-bl,.x-btn-group-default-framed-ml{padding-left:2px}.x-btn-group-default-framed-tc{height:2px}.x-btn-group-default-framed-bc{height:2px}.x-btn-group-default-framed-tl,.x-btn-group-default-framed-bl,.x-btn-group-default-framed-tr,.x-btn-group-default-framed-br,.x-btn-group-default-framed-tc,.x-btn-group-default-framed-bc,.x-btn-group-default-framed-ml,.x-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-corners.gif)}.x-btn-group-default-framed-ml,.x-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-sides.gif);background-repeat:repeat-y}.x-btn-group-default-framed-mc{padding:0}.x-strict .x-ie7 .x-btn-group-default-framed-tl,.x-strict .x-ie7 .x-btn-group-default-framed-bl{position:relative;right:0}.x-btn-group-default-framed:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"}.x-btn-group-default-framed-notitle{-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:1px 1px 1px 1px;border-width:1px;border-style:solid;background-color:#4b515f}.x-btn-group-default-framed-notitle-mc{background-color:#4b515f}.x-nbr .x-btn-group-default-framed-notitle{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-group-default-framed-notitle-frameInfo{font-family:dh-2-2-2-2-1-1-1-1-1-1-1-1}.x-btn-group-default-framed-notitle-tl{background-position:0 -4px}.x-btn-group-default-framed-notitle-tr{background-position:right -6px}.x-btn-group-default-framed-notitle-bl{background-position:0 -8px}.x-btn-group-default-framed-notitle-br{background-position:right -10px}.x-btn-group-default-framed-notitle-ml{background-position:0 top}.x-btn-group-default-framed-notitle-mr{background-position:right top}.x-btn-group-default-framed-notitle-tc{background-position:0 0}.x-btn-group-default-framed-notitle-bc{background-position:0 -2px}.x-btn-group-default-framed-notitle-tr,.x-btn-group-default-framed-notitle-br,.x-btn-group-default-framed-notitle-mr{padding-right:2px}.x-btn-group-default-framed-notitle-tl,.x-btn-group-default-framed-notitle-bl,.x-btn-group-default-framed-notitle-ml{padding-left:2px}.x-btn-group-default-framed-notitle-tc{height:2px}.x-btn-group-default-framed-notitle-bc{height:2px}.x-btn-group-default-framed-notitle-tl,.x-btn-group-default-framed-notitle-bl,.x-btn-group-default-framed-notitle-tr,.x-btn-group-default-framed-notitle-br,.x-btn-group-default-framed-notitle-tc,.x-btn-group-default-framed-notitle-bc,.x-btn-group-default-framed-notitle-ml,.x-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-corners.gif)}.x-btn-group-default-framed-notitle-ml,.x-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-sides.gif);background-repeat:repeat-y}.x-btn-group-default-framed-notitle-mc{padding:0}.x-strict .x-ie7 .x-btn-group-default-framed-notitle-tl,.x-strict .x-ie7 .x-btn-group-default-framed-notitle-bl{position:relative;right:0}.x-btn-group-default-framed-notitle:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"}.x-btn-group-default-framed{border-color:#606068;-webkit-box-shadow:#757478 0 1px 0 0 inset,#757478 0 -1px 0 0 inset,#757478 -1px 0 0 0 inset,#757478 1px 0 0 0 inset;-moz-box-shadow:#757478 0 1px 0 0 inset,#757478 0 -1px 0 0 inset,#757478 -1px 0 0 0 inset,#757478 1px 0 0 0 inset;box-shadow:#757478 0 1px 0 0 inset,#757478 0 -1px 0 0 inset,#757478 -1px 0 0 0 inset,#757478 1px 0 0 0 inset}.x-btn-group-header-default-framed{margin:2px 2px 0 2px;padding:1px 0;line-height:15px;background:#676772;-moz-border-radius-topleft:2px;-webkit-border-top-left-radius:2px;border-top-left-radius:2px;-moz-border-radius-topright:2px;-webkit-border-top-right-radius:2px;border-top-right-radius:2px}.x-btn-group-header-default-framed .x-tool-img{background-color:#676772}.x-btn-group-header-text-container-default-framed{font:normal 14px tahoma,arial,verdana,sans-serif;line-height:15px;color:#d2d2d2}.x-btn-group-body-default-framed{padding:0 1px 0 1px}.x-btn-group-body-default-framed .x-table-layout{border-spacing:0}.x-window-ghost{filter:alpha(opacity=65);opacity:.65}.x-window-default{border-color:#282828;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;-webkit-box-shadow:#414b5c 0 1px 0 0 inset,#414b5c 0 -1px 0 0 inset,#414b5c -1px 0 0 0 inset,#414b5c 1px 0 0 0 inset;-moz-box-shadow:#414b5c 0 1px 0 0 inset,#414b5c 0 -1px 0 0 inset,#414b5c -1px 0 0 0 inset,#414b5c 1px 0 0 0 inset;box-shadow:#414b5c 0 1px 0 0 inset,#414b5c 0 -1px 0 0 inset,#414b5c -1px 0 0 0 inset,#414b5c 1px 0 0 0 inset}.x-window-default{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:#3f4757}.x-window-default-mc{background-color:#3f4757}.x-nbr .x-window-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-default-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-4-4-4}.x-window-default-tl{background-position:0 -10px}.x-window-default-tr{background-position:right -15px}.x-window-default-bl{background-position:0 -20px}.x-window-default-br{background-position:right -25px}.x-window-default-ml{background-position:0 top}.x-window-default-mr{background-position:right top}.x-window-default-tc{background-position:0 0}.x-window-default-bc{background-position:0 -5px}.x-window-default-tr,.x-window-default-br,.x-window-default-mr{padding-right:5px}.x-window-default-tl,.x-window-default-bl,.x-window-default-ml{padding-left:5px}.x-window-default-tc{height:5px}.x-window-default-bc{height:5px}.x-window-default-tl,.x-window-default-bl,.x-window-default-tr,.x-window-default-br,.x-window-default-tc,.x-window-default-bc,.x-window-default-ml,.x-window-default-mr{zoom:1;background-image:url(images/window/window-default-corners.gif)}.x-window-default-ml,.x-window-default-mr{zoom:1;background-image:url(images/window/window-default-sides.gif);background-repeat:repeat-y}.x-window-default-mc{padding:0}.x-strict .x-ie7 .x-window-default-tl,.x-strict .x-ie7 .x-window-default-bl{position:relative;right:0}.x-window-default:after{display:none;content:"x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"}.x-window-body-default{border-color:#18181a;border-width:1px;border-style:solid;background:#1f2833;color:white}.x-window-header-default{font-size:14px;border-color:#282828;zoom:1;background-color:#3f4757}.x-window-header-default .x-tool-img{background-color:#3f4757}.x-window-header-default-vertical .x-window-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-window-header-default-vertical .x-window-header-text-container{background-color:#3f4757;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#3f4757)}.x-window-header-default-vertical .x-rtl.x-window-header-text-container{-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-window-header-default-vertical .x-rtl.x-window-header-text-container{background-color:#3f4757;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3),progid:DXImageTransform.Microsoft.Chroma(color=#3f4757)}.x-window-header-text-container-default{color:white;font-weight:bold;line-height:15px;font-family:tahoma,arial,verdana,sans-serif;font-size:14px;padding:0 2px 1px;text-transform:none}.x-window-header-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:4px 5px 0 5px;border-width:1px 1px 0 1px;border-style:solid;background-color:#3f4757}.x-window-header-default-top-mc{background-color:#3f4757}.x-nbr .x-window-header-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-top-frameInfo{font-family:dh-5-5-0-0-1-1-0-1-4-5-0-5}.x-window-header-default-top-tl{background-position:0 -10px}.x-window-header-default-top-tr{background-position:right -15px}.x-window-header-default-top-bl{background-position:0 -20px}.x-window-header-default-top-br{background-position:right -25px}.x-window-header-default-top-ml{background-position:0 top}.x-window-header-default-top-mr{background-position:right top}.x-window-header-default-top-tc{background-position:0 0}.x-window-header-default-top-bc{background-position:0 -5px}.x-window-header-default-top-tr,.x-window-header-default-top-br,.x-window-header-default-top-mr{padding-right:5px}.x-window-header-default-top-tl,.x-window-header-default-top-bl,.x-window-header-default-top-ml{padding-left:5px}.x-window-header-default-top-tc{height:5px}.x-window-header-default-top-bc{height:0}.x-window-header-default-top-tl,.x-window-header-default-top-bl,.x-window-header-default-top-tr,.x-window-header-default-top-br,.x-window-header-default-top-tc,.x-window-header-default-top-bc,.x-window-header-default-top-ml,.x-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-corners.gif)}.x-window-header-default-top-ml,.x-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-sides.gif);background-repeat:repeat-y}.x-window-header-default-top-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-top-tl,.x-strict .x-ie7 .x-window-header-default-top-bl{position:relative;right:0}.x-window-header-default-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"}.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:5px;-webkit-border-top-right-radius:5px;border-top-right-radius:5px;-moz-border-radius-bottomright:5px;-webkit-border-bottom-right-radius:5px;border-bottom-right-radius:5px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 4px 5px 0;border-width:1px 1px 1px 0;border-style:solid;background-color:#3f4757}.x-window-header-default-right-mc{background-color:#3f4757}.x-nbr .x-window-header-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-right-frameInfo{font-family:dh-0-5-5-0-1-1-1-0-5-4-5-0}.x-window-header-default-right-tl{background-position:0 -10px}.x-window-header-default-right-tr{background-position:right -15px}.x-window-header-default-right-bl{background-position:0 -20px}.x-window-header-default-right-br{background-position:right -25px}.x-window-header-default-right-ml{background-position:0 top}.x-window-header-default-right-mr{background-position:right top}.x-window-header-default-right-tc{background-position:0 0}.x-window-header-default-right-bc{background-position:0 -5px}.x-window-header-default-right-tr,.x-window-header-default-right-br,.x-window-header-default-right-mr{padding-right:5px}.x-window-header-default-right-tl,.x-window-header-default-right-bl,.x-window-header-default-right-ml{padding-left:0}.x-window-header-default-right-tc{height:5px}.x-window-header-default-right-bc{height:5px}.x-window-header-default-right-tl,.x-window-header-default-right-bl,.x-window-header-default-right-tr,.x-window-header-default-right-br,.x-window-header-default-right-tc,.x-window-header-default-right-bc,.x-window-header-default-right-ml,.x-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-corners.gif)}.x-rtl.x-window-header-default-right-tl,.x-rtl.x-window-header-default-right-ml,.x-rtl.x-window-header-default-right-bl,.x-rtl.x-window-header-default-right-tr,.x-rtl.x-window-header-default-right-mr,.x-rtl.x-window-header-default-right-br{background-image:url(images/window-header/window-header-default-right-corners-rtl.gif)}.x-window-header-default-right-ml,.x-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-sides.gif);background-repeat:repeat-y}.x-window-header-default-right-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-right-tl,.x-strict .x-ie7 .x-window-header-default-right-bl{position:relative;right:0}.x-window-header-default-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"}.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: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:0 5px 4px 5px;border-width:0 1px 1px 1px;border-style:solid;background-color:#3f4757}.x-window-header-default-bottom-mc{background-color:#3f4757}.x-nbr .x-window-header-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-bottom-frameInfo{font-family:dh-0-0-5-5-0-1-1-1-0-5-4-5}.x-window-header-default-bottom-tl{background-position:0 -10px}.x-window-header-default-bottom-tr{background-position:right -15px}.x-window-header-default-bottom-bl{background-position:0 -20px}.x-window-header-default-bottom-br{background-position:right -25px}.x-window-header-default-bottom-ml{background-position:0 top}.x-window-header-default-bottom-mr{background-position:right top}.x-window-header-default-bottom-tc{background-position:0 0}.x-window-header-default-bottom-bc{background-position:0 -5px}.x-window-header-default-bottom-tr,.x-window-header-default-bottom-br,.x-window-header-default-bottom-mr{padding-right:5px}.x-window-header-default-bottom-tl,.x-window-header-default-bottom-bl,.x-window-header-default-bottom-ml{padding-left:5px}.x-window-header-default-bottom-tc{height:0}.x-window-header-default-bottom-bc{height:5px}.x-window-header-default-bottom-tl,.x-window-header-default-bottom-bl,.x-window-header-default-bottom-tr,.x-window-header-default-bottom-br,.x-window-header-default-bottom-tc,.x-window-header-default-bottom-bc,.x-window-header-default-bottom-ml,.x-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-corners.gif)}.x-window-header-default-bottom-ml,.x-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-sides.gif);background-repeat:repeat-y}.x-window-header-default-bottom-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-bottom-tl,.x-strict .x-ie7 .x-window-header-default-bottom-bl{position:relative;right:0}.x-window-header-default-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"}.x-window-header-default-left{-moz-border-radius-topleft:5px;-webkit-border-top-left-radius:5px;border-top-left-radius:5px;-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:5px;-webkit-border-bottom-left-radius:5px;border-bottom-left-radius:5px;padding:5px 0 5px 4px;border-width:1px 0 1px 1px;border-style:solid;background-color:#3f4757}.x-window-header-default-left-mc{background-color:#3f4757}.x-nbr .x-window-header-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-left-frameInfo{font-family:dh-5-0-0-5-1-0-1-1-5-0-5-4}.x-window-header-default-left-tl{background-position:0 -10px}.x-window-header-default-left-tr{background-position:right -15px}.x-window-header-default-left-bl{background-position:0 -20px}.x-window-header-default-left-br{background-position:right -25px}.x-window-header-default-left-ml{background-position:0 top}.x-window-header-default-left-mr{background-position:right top}.x-window-header-default-left-tc{background-position:0 0}.x-window-header-default-left-bc{background-position:0 -5px}.x-window-header-default-left-tr,.x-window-header-default-left-br,.x-window-header-default-left-mr{padding-right:0}.x-window-header-default-left-tl,.x-window-header-default-left-bl,.x-window-header-default-left-ml{padding-left:5px}.x-window-header-default-left-tc{height:5px}.x-window-header-default-left-bc{height:5px}.x-window-header-default-left-tl,.x-window-header-default-left-bl,.x-window-header-default-left-tr,.x-window-header-default-left-br,.x-window-header-default-left-tc,.x-window-header-default-left-bc,.x-window-header-default-left-ml,.x-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-corners.gif)}.x-rtl.x-window-header-default-left-tl,.x-rtl.x-window-header-default-left-ml,.x-rtl.x-window-header-default-left-bl,.x-rtl.x-window-header-default-left-tr,.x-rtl.x-window-header-default-left-mr,.x-rtl.x-window-header-default-left-br{background-image:url(images/window-header/window-header-default-left-corners-rtl.gif)}.x-window-header-default-left-ml,.x-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-sides.gif);background-repeat:repeat-y}.x-window-header-default-left-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-left-tl,.x-strict .x-ie7 .x-window-header-default-left-bl{position:relative;right:0}.x-window-header-default-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"}.x-window-header-default-collapsed-top{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-color:#3f4757}.x-window-header-default-collapsed-top-mc{background-color:#3f4757}.x-nbr .x-window-header-default-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-top-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-5-4-5}.x-window-header-default-collapsed-top-tl{background-position:0 -10px}.x-window-header-default-collapsed-top-tr{background-position:right -15px}.x-window-header-default-collapsed-top-bl{background-position:0 -20px}.x-window-header-default-collapsed-top-br{background-position:right -25px}.x-window-header-default-collapsed-top-ml{background-position:0 top}.x-window-header-default-collapsed-top-mr{background-position:right top}.x-window-header-default-collapsed-top-tc{background-position:0 0}.x-window-header-default-collapsed-top-bc{background-position:0 -5px}.x-window-header-default-collapsed-top-tr,.x-window-header-default-collapsed-top-br,.x-window-header-default-collapsed-top-mr{padding-right:5px}.x-window-header-default-collapsed-top-tl,.x-window-header-default-collapsed-top-bl,.x-window-header-default-collapsed-top-ml{padding-left:5px}.x-window-header-default-collapsed-top-tc{height:5px}.x-window-header-default-collapsed-top-bc{height:5px}.x-window-header-default-collapsed-top-tl,.x-window-header-default-collapsed-top-bl,.x-window-header-default-collapsed-top-tr,.x-window-header-default-collapsed-top-br,.x-window-header-default-collapsed-top-tc,.x-window-header-default-collapsed-top-bc,.x-window-header-default-collapsed-top-ml,.x-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-corners.gif)}.x-window-header-default-collapsed-top-ml,.x-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-top-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-top-bl{position:relative;right:0}.x-window-header-default-collapsed-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"}.x-window-header-default-collapsed-right{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-color:#3f4757}.x-window-header-default-collapsed-right-mc{background-color:#3f4757}.x-nbr .x-window-header-default-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-right-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-5-4-5-4}.x-window-header-default-collapsed-right-tl{background-position:0 -10px}.x-window-header-default-collapsed-right-tr{background-position:right -15px}.x-window-header-default-collapsed-right-bl{background-position:0 -20px}.x-window-header-default-collapsed-right-br{background-position:right -25px}.x-window-header-default-collapsed-right-ml{background-position:0 top}.x-window-header-default-collapsed-right-mr{background-position:right top}.x-window-header-default-collapsed-right-tc{background-position:0 0}.x-window-header-default-collapsed-right-bc{background-position:0 -5px}.x-window-header-default-collapsed-right-tr,.x-window-header-default-collapsed-right-br,.x-window-header-default-collapsed-right-mr{padding-right:5px}.x-window-header-default-collapsed-right-tl,.x-window-header-default-collapsed-right-bl,.x-window-header-default-collapsed-right-ml{padding-left:5px}.x-window-header-default-collapsed-right-tc{height:5px}.x-window-header-default-collapsed-right-bc{height:5px}.x-window-header-default-collapsed-right-tl,.x-window-header-default-collapsed-right-bl,.x-window-header-default-collapsed-right-tr,.x-window-header-default-collapsed-right-br,.x-window-header-default-collapsed-right-tc,.x-window-header-default-collapsed-right-bc,.x-window-header-default-collapsed-right-ml,.x-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-corners.gif)}.x-rtl.x-window-header-default-collapsed-right-tl,.x-rtl.x-window-header-default-collapsed-right-ml,.x-rtl.x-window-header-default-collapsed-right-bl,.x-rtl.x-window-header-default-collapsed-right-tr,.x-rtl.x-window-header-default-collapsed-right-mr,.x-rtl.x-window-header-default-collapsed-right-br{background-image:url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif)}.x-window-header-default-collapsed-right-ml,.x-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-right-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-right-bl{position:relative;right:0}.x-window-header-default-collapsed-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"}.x-window-header-default-collapsed-bottom{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-color:#3f4757}.x-window-header-default-collapsed-bottom-mc{background-color:#3f4757}.x-nbr .x-window-header-default-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-bottom-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-5-4-5}.x-window-header-default-collapsed-bottom-tl{background-position:0 -10px}.x-window-header-default-collapsed-bottom-tr{background-position:right -15px}.x-window-header-default-collapsed-bottom-bl{background-position:0 -20px}.x-window-header-default-collapsed-bottom-br{background-position:right -25px}.x-window-header-default-collapsed-bottom-ml{background-position:0 top}.x-window-header-default-collapsed-bottom-mr{background-position:right top}.x-window-header-default-collapsed-bottom-tc{background-position:0 0}.x-window-header-default-collapsed-bottom-bc{background-position:0 -5px}.x-window-header-default-collapsed-bottom-tr,.x-window-header-default-collapsed-bottom-br,.x-window-header-default-collapsed-bottom-mr{padding-right:5px}.x-window-header-default-collapsed-bottom-tl,.x-window-header-default-collapsed-bottom-bl,.x-window-header-default-collapsed-bottom-ml{padding-left:5px}.x-window-header-default-collapsed-bottom-tc{height:5px}.x-window-header-default-collapsed-bottom-bc{height:5px}.x-window-header-default-collapsed-bottom-tl,.x-window-header-default-collapsed-bottom-bl,.x-window-header-default-collapsed-bottom-tr,.x-window-header-default-collapsed-bottom-br,.x-window-header-default-collapsed-bottom-tc,.x-window-header-default-collapsed-bottom-bc,.x-window-header-default-collapsed-bottom-ml,.x-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-corners.gif)}.x-window-header-default-collapsed-bottom-ml,.x-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-bottom-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl{position:relative;right:0}.x-window-header-default-collapsed-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"}.x-window-header-default-collapsed-left{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-color:#3f4757}.x-window-header-default-collapsed-left-mc{background-color:#3f4757}.x-nbr .x-window-header-default-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-left-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-5-4-5-4}.x-window-header-default-collapsed-left-tl{background-position:0 -10px}.x-window-header-default-collapsed-left-tr{background-position:right -15px}.x-window-header-default-collapsed-left-bl{background-position:0 -20px}.x-window-header-default-collapsed-left-br{background-position:right -25px}.x-window-header-default-collapsed-left-ml{background-position:0 top}.x-window-header-default-collapsed-left-mr{background-position:right top}.x-window-header-default-collapsed-left-tc{background-position:0 0}.x-window-header-default-collapsed-left-bc{background-position:0 -5px}.x-window-header-default-collapsed-left-tr,.x-window-header-default-collapsed-left-br,.x-window-header-default-collapsed-left-mr{padding-right:5px}.x-window-header-default-collapsed-left-tl,.x-window-header-default-collapsed-left-bl,.x-window-header-default-collapsed-left-ml{padding-left:5px}.x-window-header-default-collapsed-left-tc{height:5px}.x-window-header-default-collapsed-left-bc{height:5px}.x-window-header-default-collapsed-left-tl,.x-window-header-default-collapsed-left-bl,.x-window-header-default-collapsed-left-tr,.x-window-header-default-collapsed-left-br,.x-window-header-default-collapsed-left-tc,.x-window-header-default-collapsed-left-bc,.x-window-header-default-collapsed-left-ml,.x-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-corners.gif)}.x-rtl.x-window-header-default-collapsed-left-tl,.x-rtl.x-window-header-default-collapsed-left-ml,.x-rtl.x-window-header-default-collapsed-left-bl,.x-rtl.x-window-header-default-collapsed-left-tr,.x-rtl.x-window-header-default-collapsed-left-mr,.x-rtl.x-window-header-default-collapsed-left-br{background-image:url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif)}.x-window-header-default-collapsed-left-ml,.x-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-left-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-left-bl{position:relative;right:0}.x-window-header-default-collapsed-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"}.x-window-header-default-top{-webkit-box-shadow:#414b5c 0 1px 0 0 inset,#414b5c -1px 0 0 0 inset,#414b5c 1px 0 0 0 inset;-moz-box-shadow:#414b5c 0 1px 0 0 inset,#414b5c -1px 0 0 0 inset,#414b5c 1px 0 0 0 inset;box-shadow:#414b5c 0 1px 0 0 inset,#414b5c -1px 0 0 0 inset,#414b5c 1px 0 0 0 inset}.x-window-header-default-right{-webkit-box-shadow:#414b5c 0 1px 0 0 inset,#414b5c 0 -1px 0 0 inset,#414b5c -1px 0 0 0 inset;-moz-box-shadow:#414b5c 0 1px 0 0 inset,#414b5c 0 -1px 0 0 inset,#414b5c -1px 0 0 0 inset;box-shadow:#414b5c 0 1px 0 0 inset,#414b5c 0 -1px 0 0 inset,#414b5c -1px 0 0 0 inset}.x-window-header-default-bottom{-webkit-box-shadow:#414b5c 0 -1px 0 0 inset,#414b5c -1px 0 0 0 inset,#414b5c 1px 0 0 0 inset;-moz-box-shadow:#414b5c 0 -1px 0 0 inset,#414b5c -1px 0 0 0 inset,#414b5c 1px 0 0 0 inset;box-shadow:#414b5c 0 -1px 0 0 inset,#414b5c -1px 0 0 0 inset,#414b5c 1px 0 0 0 inset}.x-window-header-default-left{-webkit-box-shadow:#414b5c 0 1px 0 0 inset,#414b5c 0 -1px 0 0 inset,#414b5c 1px 0 0 0 inset;-moz-box-shadow:#414b5c 0 1px 0 0 inset,#414b5c 0 -1px 0 0 inset,#414b5c 1px 0 0 0 inset;box-shadow:#414b5c 0 1px 0 0 inset,#414b5c 0 -1px 0 0 inset,#414b5c 1px 0 0 0 inset}.x-window-header-default .x-window-header-icon{width:16px;height:16px;color:white;font-size:16px;line-height:16px;background-position:center center}.x-window-header-default .x-window-header-glyph{color:white;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-window-header-default .x-window-header-glyph{color:#9fa3ab}.x-window-header-default-horizontal .x-window-header-icon-before-title{margin:0 2px 0 0}.x-window-header-default-horizontal .x-rtl.x-window-header-icon-before-title{margin:0 0 0 2px}.x-window-header-default-horizontal .x-window-header-icon-after-title{margin:0 0 0 2px}.x-window-header-default-horizontal .x-rtl.x-window-header-icon-after-title{margin:0 2px 0 0}.x-window-header-default-vertical .x-window-header-icon-before-title{margin:0 0 2px 0}.x-window-header-default-vertical .x-rtl.x-window-header-icon-before-title{margin:0 0 2px 0}.x-window-header-default-vertical .x-window-header-icon-after-title{margin:2px 0 0 0}.x-window-header-default-vertical .x-rtl.x-window-header-icon-after-title{margin:2px 0 0 0}.x-window-header-default-horizontal .x-tool-after-title{margin:0 0 0 2px}.x-window-header-default-horizontal .x-rtl.x-tool-after-title{margin:0 2px 0 0}.x-window-header-default-horizontal .x-tool-before-title{margin:0 2px 0 0}.x-window-header-default-horizontal .x-rtl.x-tool-before-title{margin:0 0 0 2px}.x-window-header-default-vertical .x-tool-after-title{margin:2px 0 0 0}.x-window-header-default-vertical .x-rtl.x-tool-after-title{margin:2px 0 0 0}.x-window-header-default-vertical .x-tool-before-title{margin:0 0 2px 0}.x-window-header-default-vertical .x-rtl.x-tool-before-title{margin:0 0 2px 0}.x-window-default-collapsed .x-window-header{border-width:1px!important}.x-nbr .x-window-default-collapsed .x-window-header{border-width:0!important}.x-form-invalid-under{padding:2px 2px 2px 20px;color:#c0272b;font:normal 14px tahoma,arial,verdana,sans-serif;line-height:16px;background:no-repeat 0 2px;background-image:url(images/form/exclamation.gif)}div.x-lbl-top-err-icon{margin-bottom:5px}.x-form-invalid-icon{width:16px;height:16px;margin:0 1px;background-image:url(images/form/exclamation.gif);background-repeat:no-repeat}.x-form-item-label{color:white;font:normal 15px/17px tahoma,arial,verdana,sans-serif;margin-top:5px}.x-toolbar-item .x-form-item-label{font:normal 14px/16px tahoma,arial,verdana,sans-serif;margin-top:4px}.x-autocontainer-form-item,.x-anchor-form-item,.x-vbox-form-item,.x-table-form-item{margin-bottom:5px}.x-ie6 .x-form-form-item td{border-top-width:0}.x-ie6 td.x-form-item-pad{height:5px}.x-form-field{color:white}.x-form-item,.x-form-field{font:normal 15px tahoma,arial,verdana,sans-serif}.x-form-type-text textarea.x-form-invalid-field,.x-form-type-text input.x-form-invalid-field,.x-form-type-password textarea.x-form-invalid-field,.x-form-type-password input.x-form-invalid-field,.x-form-type-number textarea.x-form-invalid-field,.x-form-type-number input.x-form-invalid-field,.x-form-type-email textarea.x-form-invalid-field,.x-form-type-email input.x-form-invalid-field,.x-form-type-search textarea.x-form-invalid-field,.x-form-type-search input.x-form-invalid-field,.x-form-type-tel textarea.x-form-invalid-field,.x-form-type-tel input.x-form-invalid-field{background-color:#15171a;background-image:url(images/grid/invalid_line.gif);background-repeat:repeat-x;background-position:bottom;border-color:#c30}.x-item-disabled .x-form-item-label,.x-item-disabled .x-form-field,.x-item-disabled .x-form-display-field,.x-item-disabled .x-form-cb-label,.x-item-disabled .x-form-trigger{filter:alpha(opacity=30);opacity:.3}.x-form-text{color:white;padding:2px 4px 2px 4px;background:#34383f repeat-x 0 0;border-width:2px;border-style:solid;border-color:#737b8c;background-image:url(images/form/text-bg.gif);height:26px;line-height:18px}.x-field-toolbar .x-form-text{height:24px;line-height:16px}.x-content-box .x-form-text{height:18px}.x-content-box .x-field-toolbar .x-form-text{height:16px}.x-form-focus{border-color:#ff9c33}.x-form-empty-field,textarea.x-form-empty-field{color:gray}.x-quirks .x-ie .x-form-text,.x-ie7m .x-form-text{margin-top:-1px;margin-bottom:-1px}.x-form-textarea{line-height:normal;height:auto;background-image:url(images/form/text-bg.gif)}.x-form-display-field-body{height:26px}.x-toolbar-item .x-form-display-field-body{height:24px}.x-form-display-field{font:normal 15px/17px tahoma,arial,verdana,sans-serif;color:white;margin-top:5px}.x-toolbar-item .x-form-display-field{margin-top:4px;font:normal 14px/16px tahoma,arial,verdana,sans-serif}.x-message-box .x-window-body{background-color:#3f4757;border-width:0}.x-message-box-info,.x-message-box-warning,.x-message-box-question,.x-message-box-error{background-position:top left;background-repeat:no-repeat}.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:top left}.x-message-box-info{background-image:url(images/shared/icon-info.gif)}.x-message-box-warning{background-image:url(images/shared/icon-warning.gif)}.x-message-box-question{background-image:url(images/shared/icon-question.gif)}.x-message-box-error{background-image:url(images/shared/icon-error.gif)}.x-form-cb-wrap{height:26px}.x-toolbar-item .x-form-cb-wrap{height:24px}.x-form-cb{margin-top:4px}.x-toolbar-item .x-form-cb{margin-top:3px}.x-form-checkbox{width:19px;height:19px;background:url(images/form/checkbox.gif) no-repeat}.x-form-cb-checked .x-form-checkbox{background-position:0 -19px}.x-form-checkbox-focus{background-position:-19px 0}.x-form-cb-checked .x-form-checkbox-focus{background-position:-19px -19px}.x-form-cb-label{margin-top:5px;font:normal 15px/17px tahoma,arial,verdana,sans-serif}.x-toolbar-item .x-form-cb-label{font:normal 14px/16px tahoma,arial,verdana,sans-serif;margin-top:4px}.x-form-cb-label-before{margin-right:4px}.x-rtl.x-field .x-form-cb-label-before{margin-right:0;margin-left:4px}.x-form-cb-label-after{margin-left:4px}.x-rtl.x-field .x-form-cb-label-after{margin-left:0;margin-right:4px}.x-form-checkboxgroup-body{padding:0 4px}.x-form-invalid .x-form-checkboxgroup-body{border:1px solid #c30;background-image:url(images/grid/invalid_line.gif);background-repeat:repeat-x;background-position:bottom}.x-check-group-alt{background:#4d515c;border-top:1px dotted #333;border-bottom:1px dotted #333}.x-form-check-group-label{color:white;padding:2px;margin:0 30px 5px 0;border-width:0 0 1px 0;border-style:solid;border-color:white}.x-rtl.x-form-check-group-label{margin:0 0 5px 30px}.x-fieldset{border:1px solid #727c8c;padding:0 10px;margin:0 0 10px}.x-ie8m .x-fieldset,.x-quirks .x-ie .x-fieldset{padding-top:0}.x-ie8m .x-fieldset .x-fieldset-body,.x-quirks .x-ie .x-fieldset .x-fieldset-body{padding-top:0}.x-fieldset-header-checkbox{line-height:14px;margin:1px 3px 0 0}.x-fieldset-header{padding:0 3px 1px}.x-fieldset-header .x-tool{margin-top:1px;padding:0}.x-fieldset-header-text{font:14px/14px bold tahoma,arial,verdana,sans-serif;color:white;padding:1px 0}.x-fieldset-header-text-collapsible{cursor:pointer}.x-fieldset-with-title .x-fieldset-header-checkbox,.x-fieldset-with-title .x-tool{margin:1px 3px 0 0}.x-fieldset-with-title .x-rtl .x-fieldset-header-checkbox,.x-fieldset-with-title .x-rtl .x-tool{margin:1px 0 0 3px}.x-webkit .x-fieldset-header{-webkit-padding-start:3px;-webkit-padding-end:3px}.x-opera .x-fieldset-with-legend{margin-top:-1px}.x-opera.x-mac .x-fieldset-header-text{padding:2px 0 0}.x-strict .x-ie8 .x-fieldset-header{margin-bottom:-1px}.x-strict .x-ie8 .x-fieldset-header .x-tool,.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text,.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox{position:relative;top:-1px}.x-quirks .x-ie .x-fieldset-header,.x-ie8m .x-fieldset-header{padding-left:1px;padding-right:1px}.x-fieldset-collapsed .x-fieldset-body{display:none}.x-fieldset-collapsed{padding-bottom:0!important;border-width:1px 1px 0 1px!important;border-left-color:transparent!important;border-right-color:transparent!important}.x-ie6 .x-fieldset-collapsed{border-width:1px 0 0 0!important;padding-bottom:0!important;margin-left:1px;margin-right:1px}.x-ie .x-fieldset-bwrap{zoom:1}.x-fieldset .x-tool-toggle{background-position:0 -60px}.x-fieldset .x-tool-over .x-tool-toggle{background-position:-15px -60px}.x-fieldset-collapsed .x-tool-toggle{background-position:0 -75px}.x-fieldset-collapsed .x-tool-over .x-tool-toggle{background-position:-15px -75px}.x-ie .x-fieldset-noborder legend{position:relative;margin-bottom:23px}.x-ie .x-fieldset-noborder legend span{position:absolute;left:16px}.x-fieldset{overflow:hidden}.x-fieldset-bwrap{overflow:hidden;zoom:1}.x-fieldset-body{overflow:hidden}.x-form-radio{width:19px;height:19px;background:url(images/form/radio.gif) no-repeat}.x-form-cb-checked .x-form-radio{background-position:0 -19px}.x-form-radio-focus{background-position:-19px 0}.x-form-cb-checked .x-form-radio-focus{background-position:-19px -19px}.x-form-trigger{background:url(images/form/trigger.gif);width:20px;border-width:0 0 2px;border-color:#737b8c;border-style:solid}.x-rtl.x-form-trigger-wrap .x-form-trigger{background-image:url(images/form/trigger-rtl.gif)}.x-trigger-cell{background-color:#34383f;width:20px}.x-form-trigger-over{background-position:-20px 0;border-color:#ff9c33}.x-form-trigger-wrap-focus .x-form-trigger{background-position:-60px 0}.x-form-trigger-wrap-focus .x-form-trigger-over{background-position:-80px 0}.x-form-trigger-click,.x-form-trigger-wrap-focus .x-form-trigger-click{background-position:-40px 0;border-color:#c76e12}.x-form-clear-trigger{background-image:url(images/form/clear-trigger.gif)}.x-rtl.x-form-trigger-wrap .x-form-clear-trigger{background-image:url(images/form/clear-trigger-rtl.gif)}.x-form-search-trigger{background-image:url(images/form/search-trigger.gif)}.x-rtl.x-form-trigger-wrap .x-form-search-trigger{background-image:url(images/form/search-trigger-rtl.gif)}.x-quirks .prefixie6 .x-form-trigger-input-cell{height:26px}.x-quirks .prefixie6 .x-field-toolbar .x-form-trigger-input-cell{height:24px}div.x-form-spinner-up,div.x-form-spinner-down{background-image:url(images/form/spinner.gif);background-color:#34383f;width:20px;height:13px}.x-rtl.x-form-trigger-wrap .x-form-spinner-up,.x-rtl.x-form-trigger-wrap .x-form-spinner-down{background-image:url(images/form/spinner-rtl.gif)}.x-form-spinner-down{background-position:0 -13px}.x-form-trigger-wrap-focus .x-form-spinner-down{background-position:-60px -13px}.x-form-trigger-wrap .x-form-spinner-down-over{background-position:-20px -13px}.x-form-trigger-wrap-focus .x-form-spinner-down-over{background-position:-80px -13px}.x-form-trigger-wrap .x-form-spinner-down-click{background-position:-40px -13px}.x-toolbar-item div.x-form-spinner-up,.x-toolbar-item div.x-form-spinner-down{background-image:url(images/form/spinner-small.gif);height:12px}.x-toolbar-item .x-form-spinner-down{background-position:0 -12px}.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down{background-position:-60px -12px}.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-over{background-position:-20px -12px}.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down-over{background-position:-80px -12px}.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-click{background-position:-40px -12px}.x-toolbar-item .x-rtl.x-form-trigger-wrap .x-form-spinner-up,.x-toolbar-item .x-rtl.x-form-trigger-wrap .x-form-spinner-down{background-image:url(images/form/spinner-small-rtl.gif)}.x-tbar-page-number{width:30px}.x-tbar-page-first{background-image:url(images/grid/page-first.gif)}.x-tbar-page-prev{background-image:url(images/grid/page-prev.gif)}.x-tbar-page-next{background-image:url(images/grid/page-next.gif)}.x-tbar-page-last{background-image:url(images/grid/page-last.gif)}.x-tbar-loading{background-image:url(images/grid/refresh.gif)}.x-item-disabled .x-tbar-page-first{background-image:url(images/grid/page-first-disabled.gif)}.x-item-disabled .x-tbar-page-prev{background-image:url(images/grid/page-prev-disabled.gif)}.x-item-disabled .x-tbar-page-next{background-image:url(images/grid/page-next-disabled.gif)}.x-item-disabled .x-tbar-page-last{background-image:url(images/grid/page-last-disabled.gif)}.x-item-disabled .x-tbar-loading{background-image:url(images/grid/refresh-disabled.gif)}.x-rtl.x-tbar-page-first{background-image:url(images/grid/page-last.gif)}.x-rtl.x-tbar-page-prev{background-image:url(images/grid/page-next.gif)}.x-rtl.x-tbar-page-next{background-image:url(images/grid/page-prev.gif)}.x-rtl.x-tbar-page-last{background-image:url(images/grid/page-first.gif)}.x-item-disabled .x-rtl.x-tbar-page-first{background-image:url(images/grid/page-last-disabled.gif)}.x-item-disabled .x-rtl.x-tbar-page-prev{background-image:url(images/grid/page-next-disabled.gif)}.x-item-disabled .x-rtl.x-tbar-page-next{background-image:url(images/grid/page-prev-disabled.gif)}.x-item-disabled .x-rtl.x-tbar-page-last{background-image:url(images/grid/page-first-disabled.gif)}.x-boundlist{border-width:2px;border-style:solid;border-color:#222732;background:#404551}.x-strict .x-ie7m .x-boundlist-list-ct{position:relative}.x-boundlist-item{padding:0 3px;line-height:22px;cursor:pointer;cursor:hand;position:relative;zoom:1;border-width:0;border-style:dotted;border-color:#404551}.x-boundlist-selected{background:#e5872c;border-color:#242838}.x-boundlist-item-over{background:#e5872c;border-color:#2e3347}.x-boundlist-floating{border-top-width:0}.x-boundlist-above{border-top-width:1px;border-bottom-width:1px}.x-datepicker{border-width:1px;border-style:solid;border-color:#798294;background-color:#21252e;width:177px}.x-datepicker-header{padding:3px 6px;text-align:center;background-image:none;background-color:#5c6980;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#627089),color-stop(100%,#535f74));background-image:-webkit-linear-gradient(top,#627089,#535f74);background-image:-moz-linear-gradient(top,#627089,#535f74);background-image:-o-linear-gradient(top,#627089,#535f74);background-image:linear-gradient(top,#627089,#535f74)}.x-datepicker-arrow{width:15px;height:15px;top:6px;cursor:pointer;background-color:#5c6980;filter:alpha(opacity=70);opacity:.7}a.x-datepicker-arrow:hover{filter:alpha(opacity=100);opacity:1}.x-datepicker-next{right:6px;background-image:url(images/shared/right-btn.gif)}.x-datepicker-prev{left:6px;background-image:url(images/shared/left-btn.gif)}.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}.x-datepicker-month .x-btn-inner{color:white}.x-datepicker-month .x-btn-split-right{background-image:url(images/button/s-arrow-light.gif);padding-right:14px}.x-datepicker-column-header{width:25px;color:white;font:normal 10px tahoma,arial,verdana,sans-serif;text-align:right;border-width:0 0 1px;border-style:solid;border-color:#535b5c;background-image:none;background-color:#3a4051;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#40475a),color-stop(100%,#313745));background-image:-webkit-linear-gradient(top,#40475a,#313745);background-image:-moz-linear-gradient(top,#40475a,#313745);background-image:-o-linear-gradient(top,#40475a,#313745);background-image:linear-gradient(top,#40475a,#313745)}.x-datepicker-column-header-inner{line-height:20px;padding:0 7px 0 0}.x-datepicker-cell{text-align:right;border-width:1px;border-style:solid;border-color:#21252e}.x-datepicker-date{padding:0 4px 0 0;font:normal 14px tahoma,arial,verdana,sans-serif;color:white;cursor:pointer;line-height:19px}a.x-datepicker-date:hover{color:white;background-color:#7e5530}.x-datepicker-selected{border-style:solid;border-color:#864900}.x-datepicker-selected .x-datepicker-date{background-color:#e5872c;font-weight:bold}.x-datepicker-today{border-color:#99a;border-style:solid}.x-datepicker-prevday .x-datepicker-date,.x-datepicker-nextday .x-datepicker-date{color:#aaa}.x-datepicker-disabled a.x-datepicker-date{background-color:#eee;cursor:default;color:#bbb}.x-datepicker-disabled a.x-datepicker-date:hover{background-color:#eee}.x-datepicker-footer,.x-monthpicker-buttons{padding:4px 0;border-width:1px 0 0;border-style:solid;border-color:#535b5c;background-image:none;background-color:#3a4051;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#51596b),color-stop(49%,#4b525f),color-stop(51%,#454b58),color-stop(100%,#484e5a));background-image:-webkit-linear-gradient(top,#51596b,#4b525f 49%,#454b58 51%,#484e5a);background-image:-moz-linear-gradient(top,#51596b,#4b525f 49%,#454b58 51%,#484e5a);background-image:-o-linear-gradient(top,#51596b,#4b525f 49%,#454b58 51%,#484e5a);background-image:linear-gradient(top,#51596b,#4b525f 49%,#454b58 51%,#484e5a);text-align:center}.x-datepicker-footer .x-btn,.x-monthpicker-buttons .x-btn{margin:0 2px 0 2px}.x-monthpicker{width:177px;border-width:1px;border-style:solid;border-color:#798294;background-color:#21252e}.x-monthpicker-months{border-width:0 1px 0 0;border-color:#798294;border-style:solid;width:87px}.x-monthpicker-months .x-monthpicker-item{width:43px}.x-monthpicker-years{width:88px}.x-monthpicker-years .x-monthpicker-item{width:44px}.x-monthpicker-item{margin:5px 0 4px;font:normal 14px tahoma,arial,verdana,sans-serif;text-align:center}.x-monthpicker-item-inner{margin:0 5px 0 5px;color:white;border-width:1px;border-style:solid;border-color:#21252e;line-height:16px;cursor:pointer}a.x-monthpicker-item-inner:hover{background-color:#7e5530}.x-monthpicker-selected{background-color:#e5872c;border-style:solid;border-color:#864900}.x-monthpicker-yearnav{height:27px}.x-monthpicker-yearnav-button-ct{width:44px}.x-monthpicker-yearnav-button{height:15px;width:15px;cursor:pointer;margin-top:6px;background-color:#21252e}.x-monthpicker-yearnav-next{background-image:url(images/tools/tool-sprites.gif);background-position:0 -120px}.x-monthpicker-yearnav-next-over{background-position:-15px -120px}.x-monthpicker-yearnav-prev{background-image:url(images/tools/tool-sprites.gif);background-position:0 -105px}.x-monthpicker-yearnav-prev-over{background-position:-15px -105px}.x-monthpicker-small .x-monthpicker-item{margin:2px 0 2px}.x-monthpicker-small .x-monthpicker-item-inner{margin:0 5px 0 5px}.x-monthpicker-small .x-monthpicker-yearnav{height:22px}.x-monthpicker-small .x-monthpicker-yearnav-button{margin-top:3px}.x-nlg .x-datepicker-header{background-image:url(images/datepicker/datepicker-header-bg.gif);background-repeat:repeat-x;background-position:top left}.x-nlg .x-datepicker-footer,.x-nlg .x-monthpicker-buttons{background-image:url(images/datepicker/datepicker-footer-bg.gif);background-repeat:repeat-x;background-position:top left}.x-datepicker-header:after{display:none;content:"x-slicer:bg:url(images/datepicker/datepicker-header-bg.gif)"}.x-datepicker-footer:after{display:none;content:"x-slicer:bg:url(images/datepicker/datepicker-footer-bg.gif)"}.x-form-date-trigger{background-image:url(images/form/date-trigger.gif)}.x-rtl.x-form-trigger-wrap .x-form-date-trigger{background-image:url(images/form/date-trigger-rtl.gif)}.x-form-file-wrap .x-form-text{color:gray}.x-color-picker{width:144px;height:90px;background-color:white;border-color:white;border-width:0;border-style:solid}.x-color-picker-item{width:18px;height:18px;border-width:1px;border-color:white;border-style:solid;background-color:white;cursor:pointer;padding:2px}.x-content-box .x-color-picker-item{width:12px;height:12px}a.x-color-picker-item:hover{border-color:#8bb8f3;background-color:#deecfd}.x-color-picker-selected{border-color:#8bb8f3;background-color:#deecfd}.x-color-picker-item-inner{line-height:10px;border-color:#aca899;border-width:1px;border-style:solid}.x-html-editor-tb .x-btn-text{background:transparent no-repeat;background-image:url(images/editor/tb-sprite.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.x-html-editor-tip .x-tip-bd .x-tip-bd-inner{padding:5px;padding-bottom:1px}.x-html-editor-tb .x-font-select{font-size:11px;font-family:inherit}.x-html-editor-wrap textarea{font:normal 15px tahoma,arial,verdana,sans-serif;background-color:#34383f;resize:none}.x-grid-body{background:#232d38;border-width:1px;border-style:solid;border-color:#18181a}.x-grid-empty{padding:10px;color:gray;background-color:#232d38;font:normal 14px tahoma,arial,verdana,sans-serif}.x-grid-cell{color:white;font:normal 14px/17px tahoma,arial,verdana,sans-serif;background-color:#1f2933;border-color:#ededed #454545 #ededed #454545;border-style:solid}.x-grid-row-alt .x-grid-td{background-color:#1a232b}.x-grid-row-before-over .x-grid-td{border-bottom-style:solid;border-bottom-color:#101010}.x-grid-row-over .x-grid-td{border-bottom-style:solid;border-bottom-color:#101010}.x-grid-row-before-selected .x-grid-td{border-bottom-style:dotted;border-bottom-color:#101010}.x-grid-row-selected .x-grid-td{border-bottom-style:dotted;border-bottom-color:#101010}.x-grid-row-before-focused .x-grid-td{border-bottom-style:dotted;border-bottom-color:#464646;border-bottom-width:1px}.x-grid-row-focused .x-grid-td{background-color:#efefef}.x-grid-row-over .x-grid-td{background-color:#7e552f}.x-grid-row-selected .x-grid-td{background-color:#e48627}.x-grid-row-focused .x-grid-td{border-bottom-style:dotted;border-bottom-color:#464646;border-bottom-width:1px}.x-grid-table .x-grid-row-focused-first .x-grid-td{border-top:1px dotted #464646}.x-grid-row-selected .x-grid-row-summary .x-grid-td{border-bottom-color:#e48627;border-top-width:0}.x-grid-row-focused .x-grid-row-summary .x-grid-td{border-bottom-color:#efefef;border-top-width:0}.x-grid-with-row-lines .x-grid-td{border-bottom-width:1px}.x-grid-with-row-lines .x-grid-table{border-top:1px solid #1f2933}.x-grid-with-row-lines .x-grid-table-over-first{border-top-style:solid;border-top-color:#101010}.x-grid-with-row-lines .x-grid-table-selected-first{border-top-style:dotted;border-top-color:#101010}.x-grid-body .x-grid-table-focused-first{border-top:1px dotted #464646}.x-grid-cell-inner{text-overflow:ellipsis;padding:2px 6px 3px 6px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner{padding-top:1px;padding-bottom:2px}.x-grid-cell-special{border-color:#ededed #454545 #ededed #454545;border-style:solid;border-right-width:1px;background-image:none;background-color:#f6f6f6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:-moz-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:-o-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:linear-gradient(top,#f6f6f6,#e9e9e9)}.x-grid-row-selected .x-grid-cell-special{border-right-color:#ededed #283b61;background-image:none;background-color:#e48627;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#e48627),color-stop(100%,#d7791b));background-image:-webkit-linear-gradient(left,#e48627,#d7791b);background-image:-moz-linear-gradient(left,#e48627,#d7791b);background-image:-o-linear-gradient(left,#e48627,#d7791b);background-image:linear-gradient(left,#e48627,#d7791b)}.x-nlg .x-grid-cell-special{background-repeat:repeat-y;background-image:url(images/grid/cell-special-bg.gif)}.x-nlg .x-grid-row-selected .x-grid-cell-special{background-image:url(images/grid/cell-special-selected-bg.gif)}.x-grid-cell-special .x-grid-cell-special:after{display:none;content:"x-slicer:bg:url(images/grid/cell-special-bg.gif)"}.x-grid-cell-special .x-grid-cell-special-selected:after{display:none;content:"x-slicer:bg:url(images/grid/cell-special-selected-bg.gif)"}.x-rtl.x-grid-cell-special{border-right-width:0;border-left-width:1px}.x-grid-dirty-cell{background:url(images/grid/dirty.gif) no-repeat 0 0}.x-rtl.x-grid-dirty-cell{background-image:url(images/grid/dirty-rtl.gif);background-position:right 0}.x-grid-row .x-grid-cell-selected{color:white;background-color:#b8cfee}.x-grid-with-col-lines .x-grid-cell{border-right-width:1px}.x-rtl.x-grid-with-col-lines .x-grid-cell{border-right-width:0;border-left-width:1px}.x-grid-resize-marker{width:1px;background-color:#0f0f0f}.x-grid-drop-indicator{position:absolute;height:1px;line-height:0;background-color:#77bc71;overflow:visible;pointer-events:none}.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}.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}.x-ie6 .x-grid-drop-indicator-left{background-image:url(images/grid/dd-insert-arrow-right.gif)}.x-ie6 .x-grid-drop-indicator-right{background-image:url(images/grid/dd-insert-arrow-left.gif)}.col-move-top,.col-move-bottom{width:9px;height:9px}.col-move-top{background-image:url(images/grid/col-move-top.gif)}.col-move-bottom{background-image:url(images/grid/col-move-bottom.gif)}.x-grid-header-ct{border:1px solid #18181a;border-bottom-color:#373c4b;background-color:#373c4b;background-image:none;background-color:#373c4b;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#575f77),color-stop(50%,#42485a),color-stop(51%,#373c4b),color-stop(100%,#2c303c));background-image:-webkit-linear-gradient(top,#575f77,#42485a 50%,#373c4b 51%,#2c303c);background-image:-moz-linear-gradient(top,#575f77,#42485a 50%,#373c4b 51%,#2c303c);background-image:-o-linear-gradient(top,#575f77,#42485a 50%,#373c4b 51%,#2c303c);background-image:linear-gradient(top,#575f77,#42485a 50%,#373c4b 51%,#2c303c)}.x-accordion-item .x-grid-header-ct{border-width:0 0 1px!important}.x-accordion-item .x-grid-header-ct-hidden{border:0!important}.x-grid-body{border-top-color:#c5c5c5}.x-hmenu-sort-asc .x-menu-item-icon{background-image:url(images/grid/hmenu-asc.gif)}.x-hmenu-sort-desc .x-menu-item-icon{background-image:url(images/grid/hmenu-desc.gif)}.x-cols-icon .x-menu-item-icon{background-image:url(images/grid/columns.gif)}.x-column-header{border-right:1px solid #c5c5c5;color:white;font:normal 14px/16px tahoma,arial,verdana,sans-serif;background-image:none;background-color:#373c4b;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#575f77),color-stop(50%,#42485a),color-stop(51%,#373c4b),color-stop(100%,#2c303c));background-image:-webkit-linear-gradient(top,#575f77,#42485a 50%,#373c4b 51%,#2c303c);background-image:-moz-linear-gradient(top,#575f77,#42485a 50%,#373c4b 51%,#2c303c);background-image:-o-linear-gradient(top,#575f77,#42485a 50%,#373c4b 51%,#2c303c);background-image:linear-gradient(top,#575f77,#42485a 50%,#373c4b 51%,#2c303c)}.x-rtl.x-column-header{border-right:0 none;border-left:1px solid #c5c5c5}.x-group-sub-header{background:transparent;border-top:1px solid #c5c5c5}.x-group-sub-header .x-column-header-inner{padding:3px 6px 5px 6px}.x-column-header-inner{padding:4px 6px 5px 6px;text-overflow:ellipsis}.x-column-header-over,.x-column-header-sort-ASC,.x-column-header-sort-DESC{background-image:none;background-color:#496085;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#6c86ae),color-stop(50%,#526c95),color-stop(51%,#496085),color-stop(100%,#405475));background-image:-webkit-linear-gradient(top,#6c86ae,#526c95 50%,#496085 51%,#405475);background-image:-moz-linear-gradient(top,#6c86ae,#526c95 50%,#496085 51%,#405475);background-image:-o-linear-gradient(top,#6c86ae,#526c95 50%,#496085 51%,#405475);background-image:linear-gradient(top,#6c86ae,#526c95 50%,#496085 51%,#405475)}.x-nlg .x-grid-header-ct,.x-nlg .x-column-header{background-image:url(images/grid/column-header-bg.gif)}.x-nlg .x-column-header-over,.x-nlg .x-column-header-sort-ASC,.x-nlg .x-column-header-sort-DESC{background-image:url(images/grid/column-header-over-bg.gif)}.x-column-header-open{background-color:transparent}.x-column-header-open .x-column-header-trigger{background-color:transparent}.x-column-header-trigger{width:14px;cursor:pointer;background-color:transparent;background-position:0 center}.x-rtl.x-column-header-trigger{background-position:right center}.x-column-header-align-right .x-column-header-text{margin-right:9px}.x-column-header-align-right .x-rtl.x-column-header-text{margin-right:0;margin-left:9px}.x-column-header-sort-ASC .x-column-header-text,.x-column-header-sort-DESC .x-column-header-text{padding-right:18px;background-position:right center}.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:18px;background-position:0 center}.x-column-header-sort-ASC .x-column-header-text{background-image:url(images/grid/sort_asc.gif)}.x-column-header-sort-DESC .x-column-header-text{background-image:url(images/grid/sort_desc.gif)}.x-column-header:after{display:none;content:"x-slicer:bg:url(images/grid/column-header-bg.gif), stretch:bottom"}.x-column-header-over:after{display:none;content:"x-slicer:bg:url(images/grid/column-header-over-bg.gif), stretch:bottom"}.x-grid-cell-inner-action-col{padding:3px 2px 3px 2px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-action-col{padding-top:2px;padding-bottom:2px}.x-action-col-cell .x-item-disabled{filter:alpha(opacity=30);opacity:.3}.x-action-col-icon{height:16px;width:16px;cursor:pointer}.x-grid-cell-inner-checkcolumn{padding:2px 6px 1px 6px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-checkcolumn{padding-top:1px;padding-bottom:0}.x-grid-checkcolumn{width:19px;height:19px;background:url(images/form/checkbox.gif) 0 0 no-repeat}.x-item-disabled .x-grid-checkcolumn{filter:alpha(opacity=30);opacity:.3}.x-grid-checkcolumn-checked{background-position:0 -19px}.x-grid-cell-inner-row-numberer{padding:2px 5px 3px 3px}.x-grid-group-hd{border-width:0 0 2px 0;border-style:solid;border-color:#283042;padding:10px 4px 4px 4px;background:white;cursor:pointer}.x-grid-group-hd-not-collapsible{cursor:default}.x-grid-group-hd-collapsible .x-grid-group-title{background-repeat:no-repeat;background-position:left center;background-image:url(images/grid/group-collapse.gif);padding:0 0 0 14px}.x-rtl.x-grid-view .x-grid-group-hd-collapsible .x-grid-group-title{background-position:right center;padding:0 14px 0 0}.x-grid-group-title{color:black;font:bold 14px/16px tahoma,arial,verdana,sans-serif}.x-grid-group-hd-collapsed .x-grid-group-title{background-image:url(images/grid/group-expand.gif)}.x-grid-group-collapsed .x-grid-group-title{background-image:url(images/grid/group-expand.gif)}.x-group-by-icon{background-image:url(images/grid/group-by.gif)}.x-show-groups-icon{background-image:url(images/grid/group-by.gif)}.x-grid-rowbody{font:normal 14px/17px tahoma,arial,verdana,sans-serif;padding:5px 6px 5px 6px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-rowbody{padding-top:6px;padding-bottom:4px}.x-grid-rowwrap{border-color:#101010;border-style:solid}.x-summary-bottom{border-bottom-color:#373c4b}.x-docked-summary{border-width:1px;border-color:#18181a;border-style:solid}.x-docked-summary .x-grid-table{width:100%}.x-grid-row-summary .x-grid-cell,.x-grid-row-summary .x-grid-rowwrap,.x-grid-row-summary .x-grid-cell-rowbody{border-color:#ededed #454545 #ededed #454545;background-color:transparent!important;border-top-width:0;font:normal 14px/17px tahoma,arial,verdana,sans-serif}.x-grid-with-row-lines .x-grid-table-summary{border:0}.x-grid-locked .x-grid-inner-locked{border-width:0 1px 0 0;border-style:solid}.x-grid-locked .x-rtl.x-grid-inner-locked{border-width:0 0 0 1px}.x-grid-inner-locked .x-column-header-last,.x-grid-inner-locked .x-grid-cell-last{border-right-width:0!important}.x-grid-inner-locked .x-rtl.x-column-header-last{border-left-width:0!important}.x-rtl.x-grid-inner-locked .x-grid-row .x-column-header-last{border-left:0 none}.x-rtl.x-grid-inner-locked .x-grid-row .x-grid-cell-last{border-left:0 none}.x-hmenu-lock .x-menu-item-icon{background-image:url(images/grid/hmenu-lock.gif)}.x-hmenu-unlock .x-menu-item-icon{background-image:url(images/grid/hmenu-unlock.gif)}.x-grid-editor .x-form-text{font:normal 14px/15px tahoma,arial,verdana,sans-serif;padding:1px 4px 2px 4px;height:22px}.x-content-box .x-grid-editor .x-form-text{height:15px}.x-gecko .x-grid-editor .x-form-text{padding-left:3px;padding-right:3px}.x-grid-editor .x-form-trigger{height:22px}.x-grid-editor .x-form-spinner-up,.x-grid-editor .x-form-spinner-down{height:11px}.x-grid-editor .x-form-cb{margin-top:2px}.x-grid-editor .x-form-cb-wrap{height:22px}.x-grid-editor .x-form-display-field-body{height:22px}.x-grid-editor .x-form-display-field{font:normal 14px/15px tahoma,arial,verdana,sans-serif;padding:3px 6px 4px 6px;text-overflow:ellipsis}.x-grid-editor .x-form-action-col-field{padding:3px 2px 3px 2px}.x-tree-cell-editor .x-form-text{padding-left:1px;padding-right:1px}.x-gecko .x-tree-cell-editor .x-form-text{padding-left:0;padding-right:0}.x-grid-row-editor .x-field{margin:0 1px 0 1px}.x-grid-row-editor .x-form-display-field{padding:3px 5px 4px 5px}.x-grid-row-editor .x-form-action-col-field{padding:3px 1px 3px 1px}.x-grid-row-editor .x-form-text{padding:1px 3px 2px 3px}.x-gecko .x-grid-row-editor .x-form-text{padding-left:2px;padding-right:2px}.x-grid-row-editor .x-panel-body{border-top:1px solid #18181a!important;border-bottom:1px solid #18181a!important;padding:4px 0 4px 0;background-color:#4b5d83}.x-grid-with-col-lines .x-grid-row-editor .x-form-cb{margin-right:1px}.x-grid-with-col-lines .x-grid-row-editor .x-rtl.x-form-cb{margin-right:0;margin-left:1px}.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:4px 4px 4px 4px;border-width:0 1px 1px 1px;border-style:solid;background-color:#4b5d83}.x-grid-row-editor-buttons-default-bottom-mc{background-color:#4b5d83}.x-nbr .x-grid-row-editor-buttons-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-grid-row-editor-buttons-default-bottom-frameInfo{font-family:th-0-0-5-5-0-1-1-1-4-4-4-4}.x-grid-row-editor-buttons-default-bottom-tl{background-position:0 -10px}.x-grid-row-editor-buttons-default-bottom-tr{background-position:right -15px}.x-grid-row-editor-buttons-default-bottom-bl{background-position:0 -20px}.x-grid-row-editor-buttons-default-bottom-br{background-position:right -25px}.x-grid-row-editor-buttons-default-bottom-ml{background-position:0 top}.x-grid-row-editor-buttons-default-bottom-mr{background-position:right top}.x-grid-row-editor-buttons-default-bottom-tc{background-position:0 0}.x-grid-row-editor-buttons-default-bottom-bc{background-position:0 -5px}.x-grid-row-editor-buttons-default-bottom-tr,.x-grid-row-editor-buttons-default-bottom-br,.x-grid-row-editor-buttons-default-bottom-mr{padding-right:5px}.x-grid-row-editor-buttons-default-bottom-tl,.x-grid-row-editor-buttons-default-bottom-bl,.x-grid-row-editor-buttons-default-bottom-ml{padding-left:5px}.x-grid-row-editor-buttons-default-bottom-tc{height:0}.x-grid-row-editor-buttons-default-bottom-bc{height:5px}.x-grid-row-editor-buttons-default-bottom-tl,.x-grid-row-editor-buttons-default-bottom-bl,.x-grid-row-editor-buttons-default-bottom-tr,.x-grid-row-editor-buttons-default-bottom-br,.x-grid-row-editor-buttons-default-bottom-tc,.x-grid-row-editor-buttons-default-bottom-bc,.x-grid-row-editor-buttons-default-bottom-ml,.x-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif)}.x-grid-row-editor-buttons-default-bottom-ml,.x-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif);background-repeat:repeat-y}.x-grid-row-editor-buttons-default-bottom-mc{padding:4px 0 0 0}.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-tl,.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-bl{position:relative;right:0}.x-grid-row-editor-buttons-default-bottom:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"}.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:4px 4px 4px 4px;border-width:1px 1px 0 1px;border-style:solid;background-color:#4b5d83}.x-grid-row-editor-buttons-default-top-mc{background-color:#4b5d83}.x-nbr .x-grid-row-editor-buttons-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-grid-row-editor-buttons-default-top-frameInfo{font-family:th-5-5-0-0-1-1-0-1-4-4-4-4}.x-grid-row-editor-buttons-default-top-tl{background-position:0 -10px}.x-grid-row-editor-buttons-default-top-tr{background-position:right -15px}.x-grid-row-editor-buttons-default-top-bl{background-position:0 -20px}.x-grid-row-editor-buttons-default-top-br{background-position:right -25px}.x-grid-row-editor-buttons-default-top-ml{background-position:0 top}.x-grid-row-editor-buttons-default-top-mr{background-position:right top}.x-grid-row-editor-buttons-default-top-tc{background-position:0 0}.x-grid-row-editor-buttons-default-top-bc{background-position:0 -5px}.x-grid-row-editor-buttons-default-top-tr,.x-grid-row-editor-buttons-default-top-br,.x-grid-row-editor-buttons-default-top-mr{padding-right:5px}.x-grid-row-editor-buttons-default-top-tl,.x-grid-row-editor-buttons-default-top-bl,.x-grid-row-editor-buttons-default-top-ml{padding-left:5px}.x-grid-row-editor-buttons-default-top-tc{height:5px}.x-grid-row-editor-buttons-default-top-bc{height:0}.x-grid-row-editor-buttons-default-top-tl,.x-grid-row-editor-buttons-default-top-bl,.x-grid-row-editor-buttons-default-top-tr,.x-grid-row-editor-buttons-default-top-br,.x-grid-row-editor-buttons-default-top-tc,.x-grid-row-editor-buttons-default-top-bc,.x-grid-row-editor-buttons-default-top-ml,.x-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif)}.x-grid-row-editor-buttons-default-top-ml,.x-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif);background-repeat:repeat-y}.x-grid-row-editor-buttons-default-top-mc{padding:0 0 4px 0}.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-tl,.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-bl{position:relative;right:0}.x-grid-row-editor-buttons-default-top:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"}.x-grid-row-editor-buttons-default-bottom{top:31px}.x-grid-row-editor-buttons-default-top{bottom:31px}.x-grid-row-editor-buttons{border-color:#18181a}.x-row-editor-update-button{margin-right:2px}.x-row-editor-cancel-button{margin-left:2px}.x-rtl.x-row-editor-update-button{margin-left:2px;margin-right:auto}.x-rtl.x-row-editor-cancel-button{margin-right:2px;margin-left:auto}.x-grid-row-editor-errors .x-tip-body{padding:5px}.x-grid-row-editor-errors-item{list-style:disc;margin-left:15px}.x-rtl.x-grid-row-editor-errors .x-grid-row-editor-errors-item{margin-left:0;margin-right:15px}.x-grid-cell-inner-row-expander{padding:7px 7px 6px 7px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-row-expander{padding-top:6px;padding-bottom:5px}.x-grid-row-expander{width:9px;height:9px;cursor:pointer;background-image:url(images/grid/group-collapse.gif)}.x-grid-row-collapsed .x-grid-row-expander{background-image:url(images/grid/group-expand.gif)}.x-grid-cell-inner-property-name{background-image:url(images/grid/property-cell-bg.gif);background-repeat:no-repeat;background-position:-16px 2px;padding-left:12px}.x-accordion-layout-ct{background-color:white;padding:0}.x-accordion-hd .x-panel-header-text-container{color:white;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;text-transform:none}.x-accordion-item{margin:0}.x-accordion-item .x-accordion-hd{background:#5c6b82;border-top-color:#606877;padding:4px 5px 5px 5px}.x-accordion-item .x-accordion-hd-sibling-expanded{border-top-color:#18181a}.x-accordion-item .x-accordion-hd-last-collapsed{border-bottom-color:#5c6b82}.x-accordion-item .x-accordion-body{border-width:0}.x-accordion-hd .x-tool-collapse-top,.x-accordion-hd .x-tool-collapse-bottom{background-position:0 -255px}.x-accordion-hd .x-tool-expand-top,.x-accordion-hd .x-tool-expand-bottom{background-position:0 -240px}.x-accordion-hd .x-tool-over .x-tool-collapse-top,.x-accordion-hd .x-tool-over .x-tool-collapse-bottom{background-position:-15px -255px}.x-accordion-hd .x-tool-over .x-tool-expand-top,.x-accordion-hd .x-tool-over .x-tool-expand-bottom{background-position:-15px -240px}.x-accordion-hd .x-tool-img{background-color:#5c6b82}.x-collapse-el{cursor:pointer}.x-layout-split-left,.x-layout-split-right{top:50%;margin-top:-18px;width:5px;height:35px}.x-layout-split-top,.x-layout-split-bottom{left:50%;width:35px;height:5px;margin-left:-18px}.x-layout-split-left{background-image:url(images/util/splitter/mini-left.gif)}.x-layout-split-right{background-image:url(images/util/splitter/mini-right.gif)}.x-rtl.x-layout-split-left{background-image:url(images/util/splitter/mini-right.gif)}.x-rtl.x-layout-split-right{background-image:url(images/util/splitter/mini-left.gif)}.x-layout-split-top{background-image:url(images/util/splitter/mini-top.gif)}.x-layout-split-bottom{background-image:url(images/util/splitter/mini-bottom.gif)}.x-splitter-collapsed .x-layout-split-left{background-image:url(images/util/splitter/mini-right.gif)}.x-splitter-collapsed .x-layout-split-right{background-image:url(images/util/splitter/mini-left.gif)}.x-splitter-collapsed .x-rtl.x-layout-split-left{background-image:url(images/util/splitter/mini-left.gif)}.x-splitter-collapsed .x-rtl.x-layout-split-right{background-image:url(images/util/splitter/mini-right.gif)}.x-splitter-collapsed .x-layout-split-top{background-image:url(images/util/splitter/mini-bottom.gif)}.x-splitter-collapsed .x-layout-split-bottom{background-image:url(images/util/splitter/mini-top.gif)}.x-splitter-active{background-color:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x-splitter-active .x-collapse-el{filter:alpha(opacity=30);opacity:.3}.x-border-layout-ct{background-color:#3f4757}.x-menu-body{background:#414551;padding:2px}.x-menu-icon-separator{left:24px;border-left:solid 1px #223;background-color:#666;width:2px}.x-rtl.x-menu .x-menu-icon-separator{left:auto;right:24px}.x-menu-item{padding:1px;cursor:pointer}.x-menu-item-indent{margin-left:30px}.x-rtl.x-menu-item-indent{margin-left:0;margin-right:30px}.x-menu-item-active{background-image:none;background-color:#ed9200;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fc9b00),color-stop(100%,#d98500));background-image:-webkit-linear-gradient(top,#fc9b00,#d98500);background-image:-moz-linear-gradient(top,#fc9b00,#d98500);background-image:-o-linear-gradient(top,#fc9b00,#d98500);background-image:linear-gradient(top,#fc9b00,#d98500);border-color:#d38200;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;border-width:1px;border-style:solid;padding:0}.x-nlg .x-menu-item-active{background:#ed9200 repeat-x left top;background-image:url(images/menu/menu-item-active-bg.gif)}.x-menu-item-link{line-height:22px;padding:0 0 0 30px;display:inline-block}.x-rtl.x-menu-item-link{padding:0 30px 0 0}.x-right-check-item-text{padding-right:22px}.x-rtl.x-right-check-item-text{padding-left:22px;padding-right:0}.x-menu-item-icon{width:16px;height:16px;top:4px;left:3px;background-position:center center}.x-menu-item-glyph{font-size:16px;line-height:16px;color:white;opacity:.5}.x-ie8m .x-menu-item-glyph{color:#a0a2a8}.x-gecko .x-menu-item-active .x-menu-item-icon,.x-quirks .x-menu-item-active .x-menu-item-icon,.x-ie9m .x-menu-item-active .x-menu-item-icon{top:3px;left:2px}.x-rtl.x-menu-item-icon{left:auto;right:3px}.x-gecko .x-menu-item-active .x-rtl.x-menu-item-icon,.x-quirks .x-menu-item-active .x-rtl.x-menu-item-icon,.x-ie9m .x-menu-item-active .x-rtl.x-menu-item-icon{left:auto;right:2px}.x-menu-item-icon-right{width:16px;height:16px;top:3px;right:3px;background-position:center center}.x-rtl.x-menu-item-icon-right{right:auto;left:3px}.x-menu-item-text{font-size:14px;color:white;cursor:pointer;margin-right:16px}a.x-rtl .x-menu-item-text{margin-right:0;margin-left:16px}.x-menu-item-checked .x-menu-item-icon,.x-menu-item-checked .x-menu-item-icon-right{background-image:url(images/menu/checked.gif)}.x-menu-item-checked .x-menu-group-icon{background-image:url(images/menu/group-checked.gif)}.x-menu-item-unchecked .x-menu-item-icon,.x-menu-item-unchecked .x-menu-item-icon-right{background-image:url(images/menu/unchecked.gif)}.x-menu-item-unchecked .x-menu-group-icon{background-image:none}.x-menu-item-separator{height:2px;border-top:solid 1px #223;background-color:#666;margin:2px 0;padding:0}.x-menu-item-arrow{width:12px;height:9px;top:7px;right:0;background-image:url(images/menu/menu-parent.gif)}.x-gecko .x-menu-item-active .x-menu-item-arrow,.x-quirks .x-menu-item-active .x-menu-item-arrow,.x-ie9m .x-menu-item-active .x-menu-item-arrow{top:6px;right:-1px}.x-rtl.x-menu-item-arrow{left:0;right:auto;background-image:url(images/menu/menu-parent-left.gif)}.x-gecko .x-menu-item-active .x-rtl.x-menu-item-arrow,.x-ie9m .x-menu-item-active .x-rtl.x-menu-item-arrow,.x-quirks .x-menu-item-active .x-rtl.x-menu-item-arrow{right:auto;left:-1px}.x-menu-item-disabled{filter:alpha(opacity=50);opacity:.5}.x-content-box .x-menu-icon-separator{width:1px}.x-content-box .x-menu-item-separator{height:1px}.x-ie .x-menu-item-disabled .x-menu-item-icon{filter:alpha(opacity=50);opacity:.5}.x-ie .x-menu-item-disabled .x-menu-item-text{background-color:transparent}.x-menu-date-item{border-color:#99bbe8}.x-menu-item .x-form-item-label{font-size:14px;color:white}.x-menu-scroll-top{height:8px;background-image:url(images/menu/scroll-top.gif)}.x-menu-scroll-bottom{height:8px;background-image:url(images/menu/scroll-bottom.gif)}.x-menu-scroll-top,.x-menu-scroll-bottom{background-color:#414551}.x-menu-item-link:after{display:none;content:"x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"}.x-tool{cursor:pointer}.x-tool-img{overflow:hidden;width:15px;height:15px;background-image:url(images/tools/tool-sprites.gif);margin:0}.x-tool-placeholder{visibility:hidden}.x-tool-close{background-position:0 0}.x-tool-minimize{background-position:0 -15px}.x-tool-maximize{background-position:0 -30px}.x-tool-restore{background-position:0 -45px}.x-tool-toggle{background-position:0 -60px}.x-panel-collapsed .x-tool-toggle{background-position:0 -75px}.x-tool-gear{background-position:0 -90px}.x-tool-prev{background-position:0 -105px}.x-tool-next{background-position:0 -120px}.x-tool-pin{background-position:0 -135px}.x-tool-unpin{background-position:0 -150px}.x-tool-right{background-position:0 -165px}.x-tool-left{background-position:0 -180px}.x-tool-down{background-position:0 -195px}.x-tool-up{background-position:0 -210px}.x-tool-refresh{background-position:0 -225px}.x-tool-plus{background-position:0 -240px}.x-tool-minus{background-position:0 -255px}.x-tool-search{background-position:0 -270px}.x-tool-save{background-position:0 -285px}.x-tool-help{background-position:0 -300px}.x-tool-print{background-position:0 -315px}.x-tool-expand{background-position:0 -330px}.x-tool-collapse{background-position:0 -345px}.x-tool-resize{background-position:0 -360px}.x-tool-move{background-position:0 -375px}.x-tool-expand-bottom,.x-tool-collapse-bottom{background-position:0 -195px}.x-tool-expand-top,.x-tool-collapse-top{background-position:0 -210px}.x-tool-expand-left,.x-tool-collapse-left{background-position:0 -180px}.x-tool-expand-right,.x-tool-collapse-right{background-position:0 -165px}.x-rtl.x-tool-expand-left,.x-rtl.x-tool-collapse-left{background-position:0 -165px}.x-rtl.x-tool-expand-right,.x-rtl.x-tool-collapse-right{background-position:0 -180px}.x-tool-over .x-tool-close{background-position:-15px 0}.x-tool-over .x-tool-minimize{background-position:-15px -15px}.x-tool-over .x-tool-maximize{background-position:-15px -30px}.x-tool-over .x-tool-restore{background-position:-15px -45px}.x-tool-over .x-tool-toggle{background-position:-15px -60px}.x-panel-collapsed .x-tool-over .x-tool-toggle{background-position:-15px -75px}.x-tool-over .x-tool-gear{background-position:-15px -90px}.x-tool-over .x-tool-prev{background-position:-15px -105px}.x-tool-over .x-tool-next{background-position:-15px -120px}.x-tool-over .x-tool-pin{background-position:-15px -135px}.x-tool-over .x-tool-unpin{background-position:-15px -150px}.x-tool-over .x-tool-right{background-position:-15px -165px}.x-tool-over .x-tool-left{background-position:-15px -180px}.x-tool-over .x-tool-down{background-position:-15px -195px}.x-tool-over .x-tool-up{background-position:-15px -210px}.x-tool-over .x-tool-refresh{background-position:-15px -225px}.x-tool-over .x-tool-plus{background-position:-15px -240px}.x-tool-over .x-tool-minus{background-position:-15px -255px}.x-tool-over .x-tool-search{background-position:-15px -270px}.x-tool-over .x-tool-save{background-position:-15px -285px}.x-tool-over .x-tool-help{background-position:-15px -300px}.x-tool-over .x-tool-print{background-position:-15px -315px}.x-tool-over .x-tool-expand{background-position:-15px -330px}.x-tool-over .x-tool-collapse{background-position:-15px -345px}.x-tool-over .x-tool-resize{background-position:-15px -360px}.x-tool-over .x-tool-move{background-position:-15px -375px}.x-tool-over .x-tool-expand-bottom,.x-tool-over .x-tool-collapse-bottom{background-position:-15px -195px}.x-tool-over .x-tool-expand-top,.x-tool-over .x-tool-collapse-top{background-position:-15px -210px}.x-tool-over .x-tool-expand-left,.x-tool-over .x-tool-collapse-left{background-position:-15px -180px}.x-tool-over .x-tool-expand-right,.x-tool-over .x-tool-collapse-right{background-position:-15px -165px}.x-tool-over .x-rtl.x-tool-expand-left,.x-tool-over .x-rtl.x-tool-collapse-left{background-position:-15px -165px}.x-tool-over .x-rtl.x-tool-expand-right,.x-tool-over .x-rtl.x-tool-collapse-right{background-position:-15px -180px}.x-resizable-handle{position:absolute;z-index:100;font-size:1px;line-height:6px;overflow:hidden;zoom:1;filter:alpha(opacity=0);opacity:0;background-color:#fff}.x-collapsed .x-resizable-handle{display:none}.x-resizable-over .x-resizable-handle-north{cursor:n-resize}.x-resizable-over .x-resizable-handle-south{cursor:s-resize}.x-resizable-over .x-resizable-handle-east{cursor:e-resize}.x-resizable-over .x-resizable-handle-west{cursor:w-resize}.x-resizable-over .x-resizable-handle-southeast{cursor:se-resize}.x-resizable-over .x-resizable-handle-northwest{cursor:nw-resize}.x-resizable-over .x-resizable-handle-northeast{cursor:ne-resize}.x-resizable-over .x-resizable-handle-southwest{cursor:sw-resize}.x-resizable-handle-east{width:6px;height:100%;right:0;top:0}.x-resizable-handle-south{width:100%;height:6px;left:0;bottom:0}.x-resizable-handle-west{width:6px;height:100%;left:0;top:0}.x-resizable-handle-north{width:100%;height:6px;left:0;top:0}.x-resizable-handle-southeast{width:6px;height:6px;right:0;bottom:0;z-index:101}.x-resizable-handle-northwest{width:6px;height:6px;left:0;top:0;z-index:101}.x-resizable-handle-northeast{width:6px;height:6px;right:0;top:0;z-index:101}.x-resizable-handle-southwest{width:6px;height:6px;left:0;bottom:0;z-index:101}.x-ie .x-resizable-handle-east{margin-right:-1px}.x-ie .x-resizable-handle-south{margin-bottom:-1px}.x-resizable-pinned .x-resizable-handle,.x-resizable-over .x-resizable-handle{filter:alpha(opacity=100);opacity:1}.x-window .x-window-handle{filter:alpha(opacity=0);opacity:0}.x-window-collapsed .x-window-handle{display:none}.x-resizable-proxy{border:1px dashed #3b5a82;position:absolute;overflow:hidden;z-index:50000}.x-resizable-over .x-resizable-handle-east,.x-resizable-over .x-resizable-handle-west,.x-resizable-pinned .x-resizable-handle-east,.x-resizable-pinned .x-resizable-handle-west{background-image:url(images/sizer/e-handle.gif)}.x-resizable-over .x-resizable-handle-south,.x-resizable-over .x-resizable-handle-north,.x-resizable-pinned .x-resizable-handle-south,.x-resizable-pinned .x-resizable-handle-north{background-image:url(images/sizer/s-handle.gif)}.x-resizable-over .x-resizable-handle-southeast,.x-resizable-pinned .x-resizable-handle-southeast{background-position:top left;background-image:url(images/sizer/se-handle.gif)}.x-resizable-over .x-resizable-handle-northwest,.x-resizable-pinned .x-resizable-handle-northwest{background-position:bottom right;background-image:url(images/sizer/nw-handle.gif)}.x-resizable-over .x-resizable-handle-northeast,.x-resizable-pinned .x-resizable-handle-northeast{background-position:bottom left;background-image:url(images/sizer/ne-handle.gif)}.x-resizable-over .x-resizable-handle-southwest,.x-resizable-pinned .x-resizable-handle-southwest{background-position:top right;background-image:url(images/sizer/sw-handle.gif)}.x-slider-horz{padding-left:7px;background:no-repeat 0 -15px}.x-slider-horz .x-slider-end{padding-right:7px;background:no-repeat right -30px}.x-slider-horz .x-slider-inner{height:15px}.x-ie6 .x-form-item .x-slider-horz,.x-ie7 .x-form-item .x-slider-horz,.x-quirks .x-ie .x-form-item .x-slider-horz{margin-top:6px}.x-slider-horz .x-slider-thumb{width:14px;height:15px;margin-left:-7px;background-image:url(images/slider/slider-thumb.png)}.x-slider-horz .x-slider-thumb-over{background-position:-14px -15px}.x-slider-horz .x-slider-thumb-drag{background-position:-28px -30px}.x-rtl.x-slider-horz{padding-left:0;padding-right:7px;background-position:right -30px}.x-rtl.x-slider-horz .x-slider-end{padding-right:0;padding-left:7px;background-position:left -15px}.x-rtl.x-slider-horz .x-slider-thumb{margin-right:-7px}.x-slider-vert{padding-top:7px;background:no-repeat -30px 0}.x-slider-vert .x-slider-end{padding-bottom:7px;background:no-repeat -15px bottom;width:15px}.x-slider-vert .x-slider-inner{width:15px}.x-slider-vert .x-slider-thumb{width:15px;height:14px;margin-bottom:-7px;background-image:url(images/slider/slider-v-thumb.png)}.x-slider-vert .x-slider-thumb-over{background-position:-15px -14px}.x-slider-vert .x-slider-thumb-drag{background-position:-30px -28px}.x-slider-horz,.x-slider-horz .x-slider-end,.x-slider-horz .x-slider-inner{background-image:url(images/slider/slider-bg.png)}.x-slider-vert,.x-slider-vert .x-slider-end,.x-slider-vert .x-slider-inner{background-image:url(images/slider/slider-v-bg.png)}.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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-color:#616f8c}.x-tab-default-top-mc{background-color:#616f8c}.x-nbr .x-tab-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tab-default-top-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x-tab-default-top-tl{background-position:0 -8px}.x-tab-default-top-tr{background-position:right -12px}.x-tab-default-top-bl{background-position:0 -16px}.x-tab-default-top-br{background-position:right -20px}.x-tab-default-top-ml{background-position:0 top}.x-tab-default-top-mr{background-position:right top}.x-tab-default-top-tc{background-position:0 0}.x-tab-default-top-bc{background-position:0 -4px}.x-tab-default-top-tr,.x-tab-default-top-br,.x-tab-default-top-mr{padding-right:4px}.x-tab-default-top-tl,.x-tab-default-top-bl,.x-tab-default-top-ml{padding-left:4px}.x-tab-default-top-tc{height:4px}.x-tab-default-top-bc{height:0}.x-tab-default-top-tl,.x-tab-default-top-bl,.x-tab-default-top-tr,.x-tab-default-top-br,.x-tab-default-top-tc,.x-tab-default-top-bc,.x-tab-default-top-ml,.x-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-top-ml,.x-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif);background-repeat:repeat-y}.x-tab-default-top-mc{padding:0 6px 3px 6px}.x-strict .x-ie7 .x-tab-default-top-tl,.x-strict .x-ie7 .x-tab-default-top-bl{position:relative;right:0}.x-tab-default-top:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.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:3px 9px 3px 9px;border-width:0 1px 1px 1px;border-style:solid;background-color:#616f8c}.x-tab-default-bottom-mc{background-color:#616f8c}.x-nbr .x-tab-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tab-default-bottom-frameInfo{font-family:th-0-0-4-4-0-1-1-1-3-9-3-9}.x-tab-default-bottom-tl{background-position:0 -8px}.x-tab-default-bottom-tr{background-position:right -12px}.x-tab-default-bottom-bl{background-position:0 -16px}.x-tab-default-bottom-br{background-position:right -20px}.x-tab-default-bottom-ml{background-position:0 top}.x-tab-default-bottom-mr{background-position:right top}.x-tab-default-bottom-tc{background-position:0 0}.x-tab-default-bottom-bc{background-position:0 -4px}.x-tab-default-bottom-tr,.x-tab-default-bottom-br,.x-tab-default-bottom-mr{padding-right:4px}.x-tab-default-bottom-tl,.x-tab-default-bottom-bl,.x-tab-default-bottom-ml{padding-left:4px}.x-tab-default-bottom-tc{height:0}.x-tab-default-bottom-bc{height:4px}.x-tab-default-bottom-tl,.x-tab-default-bottom-bl,.x-tab-default-bottom-tr,.x-tab-default-bottom-br,.x-tab-default-bottom-tc,.x-tab-default-bottom-bc,.x-tab-default-bottom-ml,.x-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-corners.gif)}.x-tab-default-bottom-ml,.x-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-sides.gif);background-repeat:repeat-y}.x-tab-default-bottom-mc{padding:3px 6px 0 6px}.x-strict .x-ie7 .x-tab-default-bottom-tl,.x-strict .x-ie7 .x-tab-default-bottom-bl{position:relative;right:0}.x-tab-default-bottom:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"}.x-tab-default-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: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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-color:#616f8c}.x-tab-default-left-mc{background-color:#616f8c}.x-nbr .x-tab-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tab-default-left-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x-tab-default-left-tl{background-position:0 -8px}.x-tab-default-left-tr{background-position:right -12px}.x-tab-default-left-bl{background-position:0 -16px}.x-tab-default-left-br{background-position:right -20px}.x-tab-default-left-ml{background-position:0 top}.x-tab-default-left-mr{background-position:right top}.x-tab-default-left-tc{background-position:0 0}.x-tab-default-left-bc{background-position:0 -4px}.x-tab-default-left-tr,.x-tab-default-left-br,.x-tab-default-left-mr{padding-right:4px}.x-tab-default-left-tl,.x-tab-default-left-bl,.x-tab-default-left-ml{padding-left:4px}.x-tab-default-left-tc{height:4px}.x-tab-default-left-bc{height:0}.x-tab-default-left-tl,.x-tab-default-left-bl,.x-tab-default-left-tr,.x-tab-default-left-br,.x-tab-default-left-tc,.x-tab-default-left-bc,.x-tab-default-left-ml,.x-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-left-ml,.x-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif);background-repeat:repeat-y}.x-tab-default-left-mc{padding:0 6px 3px 6px}.x-strict .x-ie7 .x-tab-default-left-tl,.x-strict .x-ie7 .x-tab-default-left-bl{position:relative;right:0}.x-tab-default-left:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x-tab-default-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: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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-color:#616f8c}.x-tab-default-right-mc{background-color:#616f8c}.x-nbr .x-tab-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tab-default-right-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x-tab-default-right-tl{background-position:0 -8px}.x-tab-default-right-tr{background-position:right -12px}.x-tab-default-right-bl{background-position:0 -16px}.x-tab-default-right-br{background-position:right -20px}.x-tab-default-right-ml{background-position:0 top}.x-tab-default-right-mr{background-position:right top}.x-tab-default-right-tc{background-position:0 0}.x-tab-default-right-bc{background-position:0 -4px}.x-tab-default-right-tr,.x-tab-default-right-br,.x-tab-default-right-mr{padding-right:4px}.x-tab-default-right-tl,.x-tab-default-right-bl,.x-tab-default-right-ml{padding-left:4px}.x-tab-default-right-tc{height:4px}.x-tab-default-right-bc{height:0}.x-tab-default-right-tl,.x-tab-default-right-bl,.x-tab-default-right-tr,.x-tab-default-right-br,.x-tab-default-right-tc,.x-tab-default-right-bc,.x-tab-default-right-ml,.x-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-right-ml,.x-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif);background-repeat:repeat-y}.x-tab-default-right-mc{padding:0 6px 3px 6px}.x-strict .x-ie7 .x-tab-default-right-tl,.x-strict .x-ie7 .x-tab-default-right-bl{position:relative;right:0}.x-tab-default-right:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x-tab-default{border-color:#2e3746;margin:0 0 0 2px;cursor:pointer}.x-tab-default .x-tab-inner{font-size:14px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;color:white;line-height:13px}.x-tab-default .x-tab-icon-el{width:16px;height:16px;line-height:16px;background-position:center center}.x-tab-default .x-tab-glyph{font-size:16px;color:white;opacity:.5}.x-ie8m .x-tab-default .x-tab-glyph{color:#b0b7c5}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default{padding-left:0}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-button{padding-left:9px}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-icon-el{left:9px}.x-tab-default-icon .x-tab-inner{width:16px}.x-rtl.x-tab-default{margin:0 2px 0 0}.x-rtl.x-tab-default{margin:0 2px 0 0}.x-tab-default-left{margin:0 2px 0 0}.x-rtl.x-tab-default-left{margin:0 0 0 2px}.x-tab-default-top,.x-tab-default-left,.x-tab-default-right{border-bottom:1px solid #18181a}.x-tab-default-bottom{border-top:1px solid #18181a}.x-tab-default-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-tab-default-left{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.x-rtl.x-tab-default-left{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-rtl.x-tab-default-left{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.x-tab-default-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-tab-default-right{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.x-rtl.x-tab-default-right{-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-rtl.x-tab-default-right{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.x-tab-default-icon-text-left .x-tab-inner{padding-left:20px}.x-rtl.x-tab-default-icon-text-left .x-tab-inner{padding-left:0;padding-right:20px}.x-tab-default-over{background-color:#6d7b9a}.x-tab-default-over .x-tab-glyph{color:white}.x-ie8m .x-tab-default-over .x-tab-glyph{color:#b6bdcc}.x-tab-default-active{border-color:#74400e;background-color:#ed9200}.x-tab-default-active .x-tab-glyph{color:white}.x-ie8m .x-tab-default-active .x-tab-glyph{color:#f6c87f}.x-tab-default-top-active,.x-tab-default-left-active,.x-tab-default-right-active{border-bottom:1px solid #ed9200}.x-tab-default-bottom-active{border-top:1px solid #ed9200}.x-tab-default-disabled{border-color:#39445a;cursor:default}.x-tab-default-disabled .x-tab-inner{color:#c3b3b3}.x-tab-default-disabled .x-tab-icon-el{filter:alpha(opacity=50);opacity:.5}.x-tab-default-disabled .x-tab-glyph{color:#c3b3b3;opacity:.3;filter:none}.x-ie8m .x-tab-default-disabled .x-tab-glyph{color:#697390}.x-tab-default-top-disabled,.x-tab-default-left-disabled,.x-tab-default-right-disabled{border-color:#39445a #39445a #18181a}.x-tab-default-bottom-disabled{border-color:#18181a #39445a #39445a #39445a}.x-nbr .x-tab-default{background-image:none}.x-tab-default-top-over .x-frame-tl,.x-tab-default-top-over .x-frame-bl,.x-tab-default-top-over .x-frame-tr,.x-tab-default-top-over .x-frame-br,.x-tab-default-top-over .x-frame-tc,.x-tab-default-top-over .x-frame-bc,.x-tab-default-left-over .x-frame-tl,.x-tab-default-left-over .x-frame-bl,.x-tab-default-left-over .x-frame-tr,.x-tab-default-left-over .x-frame-br,.x-tab-default-left-over .x-frame-tc,.x-tab-default-left-over .x-frame-bc,.x-tab-default-right-over .x-frame-tl,.x-tab-default-right-over .x-frame-bl,.x-tab-default-right-over .x-frame-tr,.x-tab-default-right-over .x-frame-br,.x-tab-default-right-over .x-frame-tc,.x-tab-default-right-over .x-frame-bc{background-image:url(images/tab/tab-default-top-over-corners.gif)}.x-tab-default-top-over .x-frame-ml,.x-tab-default-top-over .x-frame-mr,.x-tab-default-left-over .x-frame-ml,.x-tab-default-left-over .x-frame-mr,.x-tab-default-right-over .x-frame-ml,.x-tab-default-right-over .x-frame-mr{background-image:url(images/tab/tab-default-top-over-sides.gif)}.x-tab-default-top-over .x-frame-mc,.x-tab-default-left-over .x-frame-mc,.x-tab-default-right-over .x-frame-mc{background-color:#6d7b9a}.x-tab-default-bottom-over .x-frame-tl,.x-tab-default-bottom-over .x-frame-bl,.x-tab-default-bottom-over .x-frame-tr,.x-tab-default-bottom-over .x-frame-br,.x-tab-default-bottom-over .x-frame-tc,.x-tab-default-bottom-over .x-frame-bc{background-image:url(images/tab/tab-default-bottom-over-corners.gif)}.x-tab-default-bottom-over .x-frame-ml,.x-tab-default-bottom-over .x-frame-mr{background-image:url(images/tab/tab-default-bottom-over-sides.gif)}.x-tab-default-bottom-over .x-frame-mc{background-color:#6d7b9a}.x-tab-default-top-active .x-frame-tl,.x-tab-default-top-active .x-frame-bl,.x-tab-default-top-active .x-frame-tr,.x-tab-default-top-active .x-frame-br,.x-tab-default-top-active .x-frame-tc,.x-tab-default-top-active .x-frame-bc,.x-tab-default-left-active .x-frame-tl,.x-tab-default-left-active .x-frame-bl,.x-tab-default-left-active .x-frame-tr,.x-tab-default-left-active .x-frame-br,.x-tab-default-left-active .x-frame-tc,.x-tab-default-left-active .x-frame-bc,.x-tab-default-right-active .x-frame-tl,.x-tab-default-right-active .x-frame-bl,.x-tab-default-right-active .x-frame-tr,.x-tab-default-right-active .x-frame-br,.x-tab-default-right-active .x-frame-tc,.x-tab-default-right-active .x-frame-bc{background-image:url(images/tab/tab-default-top-active-corners.gif)}.x-tab-default-top-active .x-frame-ml,.x-tab-default-top-active .x-frame-mr,.x-tab-default-left-active .x-frame-ml,.x-tab-default-left-active .x-frame-mr,.x-tab-default-right-active .x-frame-ml,.x-tab-default-right-active .x-frame-mr{background-image:url(images/tab/tab-default-top-active-sides.gif)}.x-tab-default-top-active .x-frame-mc,.x-tab-default-left-active .x-frame-mc,.x-tab-default-right-active .x-frame-mc{background-color:#ed9200}.x-tab-default-bottom-active .x-frame-tl,.x-tab-default-bottom-active .x-frame-bl,.x-tab-default-bottom-active .x-frame-tr,.x-tab-default-bottom-active .x-frame-br,.x-tab-default-bottom-active .x-frame-tc,.x-tab-default-bottom-active .x-frame-bc{background-image:url(images/tab/tab-default-bottom-active-corners.gif)}.x-tab-default-bottom-active .x-frame-ml,.x-tab-default-bottom-active .x-frame-mr{background-image:url(images/tab/tab-default-bottom-active-sides.gif)}.x-tab-default-bottom-active .x-frame-mc{background-color:#ed9200}.x-tab-default-top-disabled .x-frame-tl,.x-tab-default-top-disabled .x-frame-bl,.x-tab-default-top-disabled .x-frame-tr,.x-tab-default-top-disabled .x-frame-br,.x-tab-default-top-disabled .x-frame-tc,.x-tab-default-top-disabled .x-frame-bc,.x-tab-default-left-disabled .x-frame-tl,.x-tab-default-left-disabled .x-frame-bl,.x-tab-default-left-disabled .x-frame-tr,.x-tab-default-left-disabled .x-frame-br,.x-tab-default-left-disabled .x-frame-tc,.x-tab-default-left-disabled .x-frame-bc,.x-tab-default-right-disabled .x-frame-tl,.x-tab-default-right-disabled .x-frame-bl,.x-tab-default-right-disabled .x-frame-tr,.x-tab-default-right-disabled .x-frame-br,.x-tab-default-right-disabled .x-frame-tc,.x-tab-default-right-disabled .x-frame-bc{background-image:url(images/tab/tab-default-top-disabled-corners.gif)}.x-tab-default-top-disabled .x-frame-ml,.x-tab-default-top-disabled .x-frame-mr,.x-tab-default-left-disabled .x-frame-ml,.x-tab-default-left-disabled .x-frame-mr,.x-tab-default-right-disabled .x-frame-ml,.x-tab-default-right-disabled .x-frame-mr{background-image:url(images/tab/tab-default-top-disabled-sides.gif)}.x-tab-default-top-disabled .x-frame-mc,.x-tab-default-left-disabled .x-frame-mc,.x-tab-default-right-disabled .x-frame-mc{background-color:#435881}.x-tab-default-bottom-disabled .x-frame-tl,.x-tab-default-bottom-disabled .x-frame-bl,.x-tab-default-bottom-disabled .x-frame-tr,.x-tab-default-bottom-disabled .x-frame-br,.x-tab-default-bottom-disabled .x-frame-tc,.x-tab-default-bottom-disabled .x-frame-bc{background-image:url(images/tab/tab-default-bottom-disabled-corners.gif)}.x-tab-default-bottom-disabled .x-frame-ml,.x-tab-default-bottom-disabled .x-frame-mr{background-image:url(images/tab/tab-default-bottom-disabled-sides.gif)}.x-tab-default-bottom-disabled .x-frame-mc{background-color:#435881}.x-nbr .x-tab-default-top,.x-nbr .x-tab-default-left,.x-nbr .x-tab-default-right{border-bottom-width:1px!important}.x-nbr .x-tab-default-bottom{border-top-width:1px!important}.x-tab-default .x-tab-close-btn{width:11px;height:11px;background-image:url(images/tab/tab-default-close.gif);filter:alpha(opacity=60);opacity:.6}.x-tab-default .x-tab-close-btn-over{filter:alpha(opacity=100);opacity:1}.x-tab-default .x-tab-close-btn{top:2px;right:2px}.x-rtl.x-tab-default .x-tab-close-btn{right:auto;left:2px}.x-tab-default-disabled .x-tab-close-btn{filter:alpha(opacity=30);opacity:.3}.x-tab-default-closable .x-tab-wrap{padding-right:14px}.x-rtl.x-tab-default-closable .x-tab-wrap{padding-right:0;padding-left:14px}.x-tab-default-top-over:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif)"}.x-tab-default-bottom-over:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif)"}.x-tab-default-top-active:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif)"}.x-tab-default-bottom-active:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif)"}.x-tab-default-top-disabled:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif)"}.x-tab-default-bottom-disabled:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif)"}.x-tab-bar-default{border-style:solid;border-color:#18181a}.x-tab-bar-default-top{padding:1px 0 0;border-width:1px 1px 0}.x-tab-bar-default-bottom{padding:0 0 1px 0;border-width:0 1px 1px 1px}.x-tab-bar-default-left{padding:0 0 0 1px;border-width:1px 0 1px 1px}.x-rtl.x-tab-bar-default-left{padding:0 1px 0 0;border-width:1px 1px 1px 0}.x-tab-bar-default-right{padding:0 1px 0 0;border-width:1px 1px 1px 0}.x-rtl.x-tab-bar-default-right{padding:0 0 0 1px;border-width:1px 0 1px 1px}.x-tab-bar-default-horizontal{height:25px}.x-content-box .x-tab-bar-default-horizontal{height:23px}.x-tab-bar-default-vertical{width:25px}.x-content-box .x-tab-bar-default-vertical{width:23px}.x-tab-bar-body-default-top{padding-bottom:2px}.x-tab-bar-body-default-bottom{padding-top:2px}.x-tab-bar-body-default-left{padding-right:2px}.x-rtl.x-tab-bar-body-default-left{padding-right:0;padding-left:2px}.x-tab-bar-body-default-right{padding-left:2px}.x-rtl.x-tab-bar-body-default-right{padding-left:0;padding-right:2px}.x-tab-bar-strip-default{border-style:solid;border-color:#18181a;background-color:#ed9200}.x-content-box .x-tab-bar-strip-default-horizontal{height:2px}.x-content-box .x-tab-bar-strip-default-vertical{width:2px}.x-tab-bar-strip-default-top{border-width:1px 0 0 0;height:3px}.x-tab-bar-plain .x-tab-bar-strip-default-top{border-width:1px 1px 0}.x-tab-bar-strip-default-bottom{border-width:0 0 1px 0;height:3px}.x-tab-bar-plain .x-tab-bar-strip-default-bottom{border-width:0 1px 1px 1px}.x-tab-bar-strip-default-left{border-width:0 0 0 1px;width:3px}.x-tab-bar-plain .x-tab-bar-strip-default-left{border-width:1px 0 1px 1px}.x-rtl.x-tab-bar-strip-default-left{border-width:0 1px 0 0}.x-tab-bar-plain .x-rtl.x-tab-bar-strip-default-left{border-width:1px 1px 1px 0}.x-tab-bar-strip-default-right{border-width:0 1px 0 0;width:3px}.x-tab-bar-plain .x-tab-bar-strip-default-right{border-width:1px 1px 1px 0}.x-rtl.x-tab-bar-strip-default-right{border-width:0 0 0 1px}.x-tab-bar-plain .x-rtl.x-tab-bar-strip-default-right{border-width:1px 0 1px 1px}.x-tab-bar-default{background-color:#474e5c}.x-tab-bar-default-top{background-image:none;background-color:#474e5c;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4f596c),color-stop(100%,#474e5c));background-image:-webkit-linear-gradient(top,#4f596c,#474e5c);background-image:-moz-linear-gradient(top,#4f596c,#474e5c);background-image:-o-linear-gradient(top,#4f596c,#474e5c);background-image:linear-gradient(top,#4f596c,#474e5c)}.x-nlg .x-tab-bar-default-top{background:url(images/tab-bar/tab-bar-default-top-bg.gif)}.x-tab-bar-default-bottom{background-image:none;background-color:#474e5c;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#4f596c),color-stop(100%,#474e5c));background-image:-webkit-linear-gradient(bottom,#4f596c,#474e5c);background-image:-moz-linear-gradient(bottom,#4f596c,#474e5c);background-image:-o-linear-gradient(bottom,#4f596c,#474e5c);background-image:linear-gradient(bottom,#4f596c,#474e5c)}.x-nlg .x-tab-bar-default-bottom{background:url(images/tab-bar/tab-bar-default-bottom-bg.gif) bottom 0}.x-tab-bar-default-left{background-image:none;background-color:#474e5c;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#4f596c),color-stop(100%,#474e5c));background-image:-webkit-linear-gradient(left,#4f596c,#474e5c);background-image:-moz-linear-gradient(left,#4f596c,#474e5c);background-image:-o-linear-gradient(left,#4f596c,#474e5c);background-image:linear-gradient(left,#4f596c,#474e5c)}.x-nlg .x-tab-bar-default-left{background:url(images/tab-bar/tab-bar-default-left-bg.gif)}.x-tab-bar-default-right{background-image:none;background-color:#474e5c;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#4f596c),color-stop(100%,#474e5c));background-image:-webkit-linear-gradient(right,#4f596c,#474e5c);background-image:-moz-linear-gradient(right,#4f596c,#474e5c);background-image:-o-linear-gradient(right,#4f596c,#474e5c);background-image:linear-gradient(right,#4f596c,#474e5c)}.x-nlg .x-tab-bar-default-right{background:url(images/tab-bar/tab-bar-default-right-bg.gif) 0 right}.x-tab-bar-default .x-box-scroller{cursor:pointer}.x-tab-bar-default .x-tabbar-scroll-left,.x-tab-bar-default .x-tabbar-scroll-right{height:20px;width:18px}.x-tab-bar-default .x-tabbar-scroll-top,.x-tab-bar-default .x-tabbar-scroll-bottom{width:20px;height:18px}.x-tab-bar-default-bottom .x-box-scroller{margin-top:1px}.x-tab-bar-default-right .x-box-scroller{margin-left:1px}.x-rtl.x-tab-bar-default-right .x-box-scroller{margin-left:0;margin-right:1px}.x-tab-bar-default-top .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-left-top.gif)}.x-tab-bar-default-top .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-right-top.gif)}.x-rtl.x-tab-bar-default-top .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-right-top.gif)}.x-rtl.x-tab-bar-default-top .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-left-top.gif)}.x-tab-bar-default-bottom .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-left-bottom.gif)}.x-tab-bar-default-bottom .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-right-bottom.gif)}.x-rtl.x-tab-bar-default-bottom .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-right-bottom.gif)}.x-rtl.x-tab-bar-default-bottom .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-left-bottom.gif)}.x-tab-bar-default-left .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-left.gif)}.x-tab-bar-default-left .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-left.gif)}.x-rtl.x-tab-bar-default-left .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-right.gif)}.x-rtl.x-tab-bar-default-left .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-right.gif)}.x-tab-bar-default-right .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-right.gif)}.x-tab-bar-default-right .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-right.gif)}.x-rtl.x-tab-bar-default-right .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-left.gif)}.x-rtl.x-tab-bar-default-right .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-left.gif)}.x-tab-bar-default .x-tabbar-scroll-left-hover,.x-tab-bar-default .x-tabbar-scroll-right-hover{background-position:-18px 0}.x-tab-bar-default .x-tabbar-scroll-top-hover,.x-tab-bar-default .x-tabbar-scroll-bottom-hover{background-position:0 -18px}.x-tab-bar-default .x-box-scroller-disabled{filter:alpha(opacity=50);opacity:.5;cursor:default}.x-tab-bar-default-top:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-top-bg.gif), stretch:bottom"}.x-tab-bar-default-bottom:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-bottom-bg.gif), stretch:top"}.x-tab-bar-default-left:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-left-bg.gif), stretch:right"}.x-tab-bar-default-right:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-right-bg.gif), stretch:left"}.x-tab-bar-plain{border-width:0;padding:0;height:23px}.x-column-header-checkbox{border-color:#373c4b}.x-grid-row-checker,.x-column-header-checkbox .x-column-header-text{height:19px;width:19px;background-image:url(images/form/checkbox.gif);line-height:19px}.x-column-header-checkbox .x-column-header-inner{padding:3px 5px 3px 5px}.x-grid-cell-row-checker .x-grid-cell-inner{padding:2px 5px 1px 5px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-row-checker .x-grid-cell-inner{padding-top:1px;padding-bottom:0}.x-grid-hd-checker-on .x-column-header-text,.x-grid-row-selected .x-grid-row-checker,.x-grid-row-checked .x-grid-row-checker{background-position:0 -19px}.x-tree-expander{cursor:pointer}.x-tree-arrows .x-tree-expander{background-image:url(images/tree/arrows.gif)}.x-tree-arrows .x-tree-expander-over .x-tree-expander{background-position:-32px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander{background-position:-16px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander{background-position:-48px center}.x-tree-arrows .x-rtl.x-tree-expander{background:url(images/tree/arrows-rtl.gif) no-repeat -48px center}.x-tree-arrows .x-tree-expander-over .x-rtl.x-tree-expander{background-position:-16px center}.x-tree-arrows .x-grid-tree-node-expanded .x-rtl.x-tree-expander{background-position:-32px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-rtl.x-tree-expander{background-position:0 center}.x-tree-lines .x-tree-elbow{background-image:url(images/tree/elbow.gif)}.x-tree-lines .x-tree-elbow-end{background-image:url(images/tree/elbow-end.gif)}.x-tree-lines .x-tree-elbow-plus{background-image:url(images/tree/elbow-plus.gif)}.x-tree-lines .x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-plus.gif)}.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus{background-image:url(images/tree/elbow-minus.gif)}.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-minus.gif)}.x-tree-lines .x-tree-elbow-line{background-image:url(images/tree/elbow-line.gif)}.x-tree-lines .x-rtl.x-tree-elbow{background-image:url(images/tree/elbow-rtl.gif)}.x-tree-lines .x-rtl.x-tree-elbow-end{background-image:url(images/tree/elbow-end-rtl.gif)}.x-tree-lines .x-rtl.x-tree-elbow-plus{background-image:url(images/tree/elbow-plus-rtl.gif)}.x-tree-lines .x-rtl.x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-plus-rtl.gif)}.x-tree-lines .x-grid-tree-node-expanded .x-rtl.x-tree-elbow-plus{background-image:url(images/tree/elbow-minus-rtl.gif)}.x-tree-lines .x-grid-tree-node-expanded .x-rtl.x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-minus-rtl.gif)}.x-tree-lines .x-rtl.x-tree-elbow-line{background-image:url(images/tree/elbow-line-rtl.gif)}.x-tree-no-row-lines .x-tree-expander{background-image:url(images/tree/elbow-plus-nl.gif)}.x-tree-no-row-lines .x-grid-tree-node-expanded .x-tree-expander{background-image:url(images/tree/elbow-minus-nl.gif)}.x-tree-no-row-lines .x-rtl.x-tree-expander{background-image:url(images/tree/elbow-plus-nl-rtl.gif)}.x-tree-no-row-lines .x-grid-tree-node-expanded .x-rtl.x-tree-expander{background-image:url(images/tree/elbow-minus-nl-rtl.gif)}.x-tree-icon{width:16px;height:22px}.x-tree-elbow-img{width:16px;height:22px;margin-right:0}.x-rtl.x-tree-elbow-img{margin-right:0;margin-left:0}.x-tree-icon,.x-tree-elbow-img,.x-tree-checkbox{margin-top:-2px;margin-bottom:-3px}.x-tree-icon-leaf{background-image:url(images/tree/leaf.gif)}.x-rtl.x-tree-icon-leaf{background-image:url(images/tree/leaf-rtl.gif)}.x-tree-icon-parent{background-image:url(images/tree/folder.gif)}.x-rtl.x-tree-icon-parent{background-image:url(images/tree/folder-rtl.gif)}.x-grid-tree-node-expanded .x-tree-icon-parent{background-image:url(images/tree/folder-open.gif)}.x-grid-tree-node-expanded .x-rtl.x-tree-icon-parent{background-image:url(images/tree/folder-open-rtl.gif)}.x-tree-checkbox{margin-right:3px;top:2px;width:19px;height:19px;background-image:url(images/form/checkbox.gif)}.x-rtl.x-tree-checkbox{margin-right:0;margin-left:3px}.x-tree-checkbox-checked{background-position:0 -19px}.x-grid-tree-loading .x-tree-icon{background-image:url(images/tree/loading.gif)}.x-grid-tree-loading .x-rtl.x-tree-icon{background-image:url(images/tree/loading.gif)}.x-grid-cell-inner-treecolumn{font-size:1px;line-height:0}.x-tree-node-text{font-size:14px;line-height:17px;padding-left:3px}.x-rtl.x-tree-node-text{padding-left:0;padding-right:3px}.x-grid-cell-inner-treecolumn{padding:2px 6px 3px 0}.x-tree-drop-ok-append .x-dd-drop-icon{background-image:url(images/tree/drop-append.gif)}.x-tree-drop-ok-above .x-dd-drop-icon{background-image:url(images/tree/drop-above.gif)}.x-tree-drop-ok-below .x-dd-drop-icon{background-image:url(images/tree/drop-below.gif)}.x-tree-drop-ok-between .x-dd-drop-icon{background-image:url(images/tree/drop-between.gif)}.x-tree-ddindicator{height:1px;border-width:1px 0 0;border-style:dotted;border-color:green}.x-box-tl{background:transparent no-repeat 0 0;zoom:1}.x-box-tc{height:8px;background:transparent repeat-x 0 0;overflow:hidden}.x-box-tr{background:transparent no-repeat right -8px}.x-box-ml{background:transparent repeat-y 0;padding-left:4px;overflow:hidden;zoom:1}.x-box-mc{background:repeat-x 0 -16px;padding:4px 10px}.x-box-mc h3{margin:0 0 4px 0;zoom:1}.x-box-mr{background:transparent repeat-y right;padding-right:4px;overflow:hidden}.x-box-bl{background:transparent no-repeat 0 -16px;zoom:1}.x-box-bc{background:transparent repeat-x 0 -8px;height:8px;overflow:hidden}.x-box-br{background:transparent no-repeat right -24px}.x-box-tl,.x-box-bl{padding-left:8px;overflow:hidden}.x-box-tr,.x-box-br{padding-right:8px;overflow:hidden}.x-box-tl{background-image:url(images/box/corners.gif)}.x-box-tc{background-image:url(images/box/tb.gif)}.x-box-tr{background-image:url(images/box/corners.gif)}.x-box-ml{background-image:url(images/box/l.gif)}.x-box-mc{background-color:#eee;background-image:url(images/box/tb.gif);font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:15px}.x-box-mc h3{font-size:18px;font-weight:bold}.x-box-mr{background-image:url(images/box/r.gif)}.x-box-bl{background-image:url(images/box/corners.gif)}.x-box-bc{background-image:url(images/box/tb.gif)}.x-box-br{background-image:url(images/box/corners.gif)}.x-box-blue .x-box-bl,.x-box-blue .x-box-br,.x-box-blue .x-box-tl,.x-box-blue .x-box-tr{background-image:url(images/box/corners-blue.gif)}.x-box-blue .x-box-bc,.x-box-blue .x-box-mc,.x-box-blue .x-box-tc{background-image:url(images/box/tb-blue.gif)}.x-box-blue .x-box-mc{background-color:#c3daf9}.x-box-blue .x-box-mc h3{color:#17385b}.x-box-blue .x-box-ml{background-image:url(images/box/l-blue.gif)}.x-box-blue .x-box-mr{background-image:url(images/box/r-blue.gif)}.x-rtl.x-toolbar-more-icon{background-image:url(images/toolbar/more-left.gif)!important}.x-message-box .x-msg-box-wait{background-image:url(images/shared/blue-loading.gif)}.x-form-trigger{height:26px}.x-content-box .x-form-trigger{height:24px}.x-field-toolbar .x-form-trigger{height:24px}.x-content-box .x-field-toolbar .x-form-trigger{height:22px}.x-content-box div.x-form-spinner-up,.x-content-box div.x-form-spinner-down{height:11px}.x-content-box .x-toolbar-item div.x-form-spinner-up,.x-content-box .x-toolbar-item div.x-form-spinner-down{height:10px}.x-html-editor-wrap .x-toolbar{border-left-color:#737b8c;border-top-color:#737b8c;border-right-color:#737b8c}.x-html-editor-input{border:1px solid #737b8c;border-top-width:0}.x-column-header-trigger{background-color:#373c4b;background-image:url(images/grid/grid3-hd-btn.gif)}.x-rtl.x-column-header-trigger{background-image:url(images/grid/grid3-hd-btn-left.gif)}.x-content-box .x-grid-editor .x-form-trigger{height:20px}.x-grid-editor .x-form-spinner-up,.x-grid-editor .x-form-spinner-down{background-image:url(images/form/spinner-small.gif)}.x-content-box .x-grid-editor .x-form-spinner-up,.x-content-box .x-grid-editor .x-form-spinner-down{height:9px}.x-grid-editor .x-rtl.x-form-trigger-wrap .x-form-spinner-up,.x-grid-editor .x-rtl.x-form-trigger-wrap .x-form-spinner-down{background-image:url(images/form/spinner-small-rtl.gif)}.x-accordion-hd{border-width:1px 0!important;-webkit-box-shadow:inset 0 0 0 0 #5c6b82;-moz-box-shadow:inset 0 0 0 0 #5c6b82;box-shadow:inset 0 0 0 0 #5c6b82}.x-accordion-hd-sibling-expanded{-webkit-box-shadow:inset 0 1px 0 0 #606877;-moz-box-shadow:inset 0 1px 0 0 #606877;box-shadow:inset 0 1px 0 0 #606877}.x-resizable-over .x-resizable-handle-east,.x-resizable-over .x-resizable-handle-west,.x-resizable-pinned .x-resizable-handle-east,.x-resizable-pinned .x-resizable-handle-west{background-position:left}.x-resizable-over .x-resizable-handle-south,.x-resizable-over .x-resizable-handle-north,.x-resizable-pinned .x-resizable-handle-south,.x-resizable-pinned .x-resizable-handle-north{background-position:top}.x-resizable-over .x-resizable-handle-southeast,.x-resizable-pinned .x-resizable-handle-southeast{background-position:top left}.x-resizable-over .x-resizable-handle-northwest,.x-resizable-pinned .x-resizable-handle-northwest{background-position:bottom right}.x-resizable-over .x-resizable-handle-northeast,.x-resizable-pinned .x-resizable-handle-northeast{background-position:bottom left}.x-resizable-over .x-resizable-handle-southwest,.x-resizable-pinned .x-resizable-handle-southwest{background-position:top right}.x-ie6 .x-slider-horz,.x-ie6 .x-slider-horz .x-slider-end,.x-ie6 .x-slider-horz .x-slider-inner{background-image:url(images/slider/slider-bg.gif)}.x-ie6 .x-slider-horz .x-slider-thumb{background-image:url(images/slider/slider-thumb.gif)}.x-ie6 .x-slider-vert,.x-ie6 .x-slider-vert .x-slider-end,.x-ie6 .x-slider-vert .x-slider-inner{background-image:url(images/slider/slider-v-bg.gif)}.x-ie6 .x-slider-vert .x-slider-thumb{background-image:url(images/slider/slider-v-thumb.gif)}.x-tab-icon-el{top:-1px}.x-tab-noicon .x-tab-icon{display:none} \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/ext-theme-access-all.css b/extjs-django/marvel/static/extjs/resources/ext-theme-access/ext-theme-access-all.css new file mode 100644 index 0000000..1df631a --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-access/ext-theme-access-all.css @@ -0,0 +1 @@ +.x-body{margin:0}img{border:0}.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}.x-rtl{direction:rtl}.x-ltr{direction:ltr}.x-clear{overflow:hidden;clear:both;font-size:0;line-height:0;display:table}.x-strict .x-ie7 .x-clear{height:0;width:0}.x-layer{position:absolute!important;overflow:hidden;zoom:1}.x-fixed-layer{position:fixed!important;overflow:hidden;zoom:1}.x-shim{position:absolute;left:0;top:0;overflow:hidden;filter:alpha(opacity=0);opacity:0}.x-hide-display{display:none!important}.x-hide-visibility{visibility:hidden!important}.x-ie6 .x-item-disabled{filter:none}.x-hidden,.x-hide-offsets{display:block!important;visibility:hidden!important;position:absolute!important;top:-10000px!important}.x-hide-nosize{height:0!important;width:0!important}.x-hide-clip{position:absolute!important;clip:rect(0,0,0,0);clip:rect(0 0 0 0)}.x-masked-relative{position:relative}.x-ie-shadow{background-color:#777;display:none;position:absolute;overflow:hidden;zoom:1}.x-unselectable{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x-selectable{cursor:auto;-moz-user-select:text;-webkit-user-select:text;-ms-user-select:text;user-select:text;-o-user-select:text}.x-list-plain{list-style-type:none;margin:0;padding:0}.x-table-plain{border-collapse:collapse;border-spacing:0;font-size:1em}.x-frame-tl,.x-frame-tr,.x-frame-tc,.x-frame-bl,.x-frame-br,.x-frame-bc{overflow:hidden;background-repeat:no-repeat}.x-frame-tc,.x-frame-bc{background-repeat:repeat-x}.x-frame-mc{background-repeat:repeat-x;overflow:hidden}.x-proxy-el{position:absolute;background:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x-css-shadow{position:absolute;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px}.x-item-disabled,.x-item-disabled *{cursor:default}.x-box-item{position:absolute!important;left:0;top:0}div.x-editor{overflow:visible}.x-mask{z-index:100;position:absolute;width:100%;height:100%;zoom:1}.x-mask-shim{z-index:100;position:absolute;top:0;left:0;width:100%;height:100%}.x-mask-msg{z-index:20001;position:absolute}.x-progress{position:relative;border-style:solid;overflow:hidden}.x-progress-bar{overflow:hidden;position:absolute;width:0;height:100%}.x-progress-text{overflow:hidden;position:absolute}.x-btn{display:inline-block;position:relative;zoom:1;*display:inline;outline:0;cursor:pointer;white-space:nowrap;vertical-align:middle;text-decoration:none}.x-btn-wrap{position:relative;display:block}.x-btn-button{position:relative;display:block;text-decoration:none;overflow:hidden;zoom:1}.x-btn-inner{display:block;white-space:nowrap;overflow:hidden;zoom:1}.x-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x-btn-inner-center{text-align:center}.x-btn-inner-left{text-align:left}.x-btn-inner-right{text-align:right}.x-box-layout-ct{overflow:hidden;zoom:1}.x-box-target{position:absolute;width:20000px;top:0;left:0;height:1px}.x-box-inner{overflow:hidden;zoom:1;position:relative;left:0;top:0}.x-horizontal-box-overflow-body{float:left}.x-box-scroller{position:relative;background-repeat:no-repeat}.x-box-scroller-left,.x-box-scroller-right{float:left;height:100%;z-index:5}.x-box-scroller-top .x-box-scroller,.x-box-scroller-bottom .x-box-scroller{line-height:0;font-size:0;background-position:center 0}.x-box-menu-after{float:right}.x-toolbar-text{white-space:nowrap}.x-toolbar-separator{display:block;font-size:1px;overflow:hidden;cursor:default;border:0;width:0;height:0;line-height:0}.x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal{width:2px}.x-toolbar-scroller{padding-left:0}.x-toolbar-plain{border:0}.x-docked{position:absolute!important;z-index:1}.x-docked-vertical{position:static}.x-docked-top{border-bottom-width:0!important}.x-docked-bottom{border-top-width:0!important}.x-docked-left{border-right-width:0!important}.x-docked-right{border-left-width:0!important}.x-docked-noborder-top{border-top-width:0!important}.x-docked-noborder-right{border-right-width:0!important}.x-docked-noborder-bottom{border-bottom-width:0!important}.x-docked-noborder-left{border-left-width:0!important}.x-noborder-l{border-left-width:0!important}.x-noborder-b{border-bottom-width:0!important}.x-noborder-bl{border-bottom-width:0!important;border-left-width:0!important}.x-noborder-r{border-right-width:0!important}.x-noborder-rl{border-right-width:0!important;border-left-width:0!important}.x-noborder-rb{border-right-width:0!important;border-bottom-width:0!important}.x-noborder-rbl{border-right-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x-noborder-t{border-top-width:0!important}.x-noborder-tl{border-top-width:0!important;border-left-width:0!important}.x-noborder-tb{border-top-width:0!important;border-bottom-width:0!important}.x-noborder-tbl{border-top-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x-noborder-tr{border-top-width:0!important;border-right-width:0!important}.x-noborder-trl{border-top-width:0!important;border-right-width:0!important;border-left-width:0!important}.x-noborder-trb{border-top-width:0!important;border-right-width:0!important;border-bottom-width:0!important}.x-noborder-trbl{border-width:0!important}.x-header-icon{background-repeat:no-repeat;background-position:0 0;vertical-align:middle;text-align:center}.x-header-text-container{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.x-dd-drag-proxy,.x-dd-drag-current{z-index:1000000!important;pointer-events:none}.x-dd-drag-repair .x-dd-drag-ghost{filter:alpha(opacity=60);opacity:.6}.x-dd-drag-repair .x-dd-drop-icon{display:none}.x-dd-drag-ghost{filter:alpha(opacity=85);opacity:.85;padding:5px;padding-left:20px;white-space:nowrap;color:#000;font:normal 14px tahoma,arial,verdana,sans-serif;border:1px solid;border-color:#ddd #bbb #bbb #ddd;background-color:#fff}.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}.x-dd-drop-ok .x-dd-drop-icon{background-image:url(images/dd/drop-yes.gif)}.x-dd-drop-ok-add .x-dd-drop-icon{background-image:url(images/dd/drop-add.gif)}.x-dd-drop-nodrop div.x-dd-drop-icon{background-image:url(images/dd/drop-no.gif)}.x-panel,.x-plain{overflow:hidden;position:relative}.x-panel{outline:0}.x-ie .x-panel-header,.x-ie .x-panel-header-tl,.x-ie .x-panel-header-tc,.x-ie .x-panel-header-tr,.x-ie .x-panel-header-ml,.x-ie .x-panel-header-mc,.x-ie .x-panel-header-mr,.x-ie .x-panel-header-bl,.x-ie .x-panel-header-bc,.x-ie .x-panel-header-br{zoom:1}.x-ie8 td.x-frame-mc{vertical-align:top}.x-panel-body{overflow:hidden;position:relative}.x-nlg .x-panel-header-vertical .x-frame-mc{background-repeat:repeat-y}.x-panel-header-plain,.x-panel-body-plain{border:0;padding:0}.x-tip{position:absolute;overflow:visible}.x-tip-body{overflow:hidden;position:relative}.x-tip-anchor{position:absolute;overflow:hidden;border-style:solid}.x-table-layout{font-size:1em}.x-btn-group{position:relative;overflow:hidden}.x-btn-group-body{position:relative;zoom:1}.x-btn-group-body .x-table-layout-cell{vertical-align:top}.x-viewport,.x-viewport body{margin:0;padding:0;border:0 none;overflow:hidden;height:100%;position:static}.x-window{outline:0;overflow:hidden}.x-window .x-window-wrap{position:relative}.x-window-body{position:relative;overflow:hidden}.x-window-body-plain{background:transparent}.x-form-item-label{display:block}.x-form-item-label-right{text-align:right}.x-form-item-label-top{display:block;zoom:1}.x-form-invalid-icon{overflow:hidden}.x-form-invalid-icon ul{display:none}.x-form-textarea{overflow:auto;resize:none}.x-safari.x-mac .x-form-textarea{margin-bottom:-2px}.x-form-display-field-body{vertical-align:top}.x-form-cb-wrap{vertical-align:top}.x-form-cb{vertical-align:top;overflow:hidden;padding:0;border:0}.x-form-cb::-moz-focus-inner{padding:0;border:0}.x-form-cb-label{display:inline-block;zoom:1}.x-fieldset{display:block;position:relative}.x-fieldset-header{overflow:hidden}.x-fieldset-header .x-form-item,.x-fieldset-header .x-tool{float:left}.x-fieldset-header .x-form-cb-wrap{font-size:0;line-height:0}.x-fieldset-header .x-form-cb{margin:0}.x-fieldset-header-text{float:left}.x-webkit *:focus{outline:none!important}.x-form-item{vertical-align:top;table-layout:fixed}.x-form-item-body{position:relative}.x-form-form-item td{border-top:1px solid transparent}.x-form-trigger{cursor:pointer;overflow:hidden;background-repeat:no-repeat}.x-item-disabled .x-form-trigger{cursor:default}.x-trigger-noedit{cursor:default}.x-form-trigger-wrap{vertical-align:top;border-collapse:separate}.x-form-spinner-up,.x-form-spinner-down{font-size:0}.x-datepicker{position:relative}.x-datepicker-inner{table-layout:fixed;width:100%;border-collapse:separate}.x-datepicker-cell{padding:0}.x-datepicker-header{position:relative;zoom:1}.x-datepicker-arrow{position:absolute;outline:0;font-size:0}.x-datepicker-column-header{padding:0}.x-datepicker-date{display:block;zoom:1;text-decoration:none}.x-monthpicker{position:absolute;left:0;top:0}.x-monthpicker-body{height:100%}.x-monthpicker-months,.x-monthpicker-years{float:left;height:100%}.x-monthpicker-item{float:left}.x-monthpicker-item-inner{display:block;text-decoration:none}.x-monthpicker-yearnav-button-ct{float:left;text-align:center}.x-monthpicker-yearnav-button{display:inline-block;outline:0;font-size:0}.x-monthpicker-buttons{position:absolute;bottom:0;width:100%}.x-strict .x-ie6 .x-monthpicker-buttons{bottom:-1px}.x-form-file-btn{overflow:hidden}.x-form-file-input{border:0;position:absolute;cursor:pointer;top:-2px;right:-2px;filter:alpha(opacity=0);opacity:0;font-size:1000px}.x-form-item-hidden{margin:0}.x-color-picker-item{float:left;text-decoration:none}.x-color-picker-item-inner{display:block;font-size:1px}.x-html-editor-tb .x-toolbar{position:static!important}.x-htmleditor-iframe{display:block;overflow:auto}.x-fit-item{position:relative}.x-grid-row,.x-grid-data-row{outline:0}.x-grid-view{overflow:hidden;position:relative}.x-grid-table{table-layout:fixed;border-collapse:separate}.x-grid-td{overflow:hidden;border-width:0;vertical-align:top}.x-grid-cell-inner{overflow:hidden;white-space:nowrap;zoom:1}.x-grid-resize-marker{position:absolute;z-index:5;top:0}.col-move-top,.col-move-bottom{position:absolute;top:0;line-height:0;font-size:0;overflow:hidden;z-index:20000;background:no-repeat center top transparent}.x-grid-header-ct{cursor:default}.x-column-header{position:absolute;overflow:hidden;background-repeat:repeat-x}.x-column-header-inner{zoom:1;white-space:nowrap;position:relative;overflow:hidden}.x-column-header-text{white-space:nowrap;background-repeat:no-repeat;zoom:1;display:inline-block}.x-column-header-trigger{display:none;height:100%;background-repeat:no-repeat;position:absolute;right:0;top:0;z-index:2}.x-column-header-over .x-column-header-trigger,.x-column-header-open .x-column-header-trigger{display:block}.x-column-header-align-right{text-align:right}.x-column-header-align-left{text-align:left}.x-column-header-align-center{text-align:center}.x-grid-cell-inner-action-col{line-height:0;font-size:0}.x-grid-cell-inner-checkcolumn{line-height:0;font-size:0}.x-row-numberer .x-column-header-inner{text-overflow:clip}.x-grid-group,.x-grid-group-body,.x-grid-group-hd{zoom:1}.x-grid-group-hd{white-space:nowrap}.x-grid-row-body-hidden,.x-grid-group-collapsed{display:none}.x-grid-rowbody{zoom:1}.x-grid-row-body-hidden{display:none}td.x-grid-rowwrap .x-grid-table{border:0}td.x-grid-rowwrap .x-grid-cell{border-bottom:0;background-color:transparent}.x-grid-editor .x-form-cb-wrap{text-align:center}.x-grid-editor .x-form-display-field{margin:0;white-space:nowrap;overflow:hidden}.x-grid-editor div.x-form-action-col-field{line-height:0}.x-grid-row-editor{position:absolute;overflow:visible;z-index:1}.x-grid-row-editor-buttons{position:absolute;white-space:nowrap}.x-grid-row-expander{font-size:0;line-height:0}.x-abs-layout-ct{position:relative}.x-abs-layout-item{position:absolute!important}.x-splitter{font-size:1px}.x-splitter-horizontal{cursor:e-resize;cursor:row-resize}.x-splitter-vertical{cursor:e-resize;cursor:col-resize}.x-splitter-collapsed,.x-splitter-horizontal-noresize,.x-splitter-vertical-noresize{cursor:default}.x-splitter-active{z-index:4}.x-collapse-el{position:absolute;background-repeat:no-repeat}.x-border-layout-ct{overflow:hidden;zoom:1}.x-border-layout-ct{position:relative}.x-border-region-slide-in{z-index:5}.x-region-collapsed-placeholder{z-index:4}.x-column{float:left}.x-ie6 .x-column{display:inline}.x-quirks .x-ie .x-form-layout-table,.x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item{position:relative}.x-form-layout-table{border-collapse:separate;border-spacing:0 2px}.x-ie6 .x-form-layout-table{border-collapse:collapse;border-spacing:0}.x-menu{outline:0}.x-menu-item{white-space:nowrap;overflow:hidden}.x-menu-item-cmp .x-field-label-cell{vertical-align:middle}.x-menu-icon-separator{position:absolute;top:0;z-index:0;height:100%;overflow:hidden}.x-menu-plain .x-menu-icon-separator{display:none}.x-menu-item-link{text-decoration:none;outline:0;zoom:1}.x-menu-item-text{zoom:1}.x-menu-item-icon,.x-menu-item-icon-right,.x-menu-item-arrow{position:absolute;text-align:center}.x-resizable-overlay{position:absolute;left:0;top:0;width:100%;height:100%;display:none;z-index:200000;background-color:#fff;filter:alpha(opacity=0);opacity:0}.x-slider{outline:0;zoom:1;position:relative}.x-slider-inner{position:relative;left:0;top:0;overflow:visible;zoom:1}.x-slider-vert .x-slider-inner{background:repeat-y 0 0}.x-slider-end{zoom:1}.x-slider-thumb{position:absolute;background:no-repeat 0 0}.x-slider-horz .x-slider-thumb{left:0}.x-slider-vert .x-slider-thumb{bottom:0}a.x-tab{text-decoration:none}.x-tab-bar{position:relative}.x-column-header-checkbox .x-column-header-text{display:block;background-repeat:no-repeat;font-size:0}.x-grid-cell-row-checker{vertical-align:middle;background-repeat:no-repeat;font-size:0}.x-tab{display:block;white-space:nowrap;z-index:1}.x-tab-active{z-index:3}.x-tab-wrap{display:block;position:relative}.x-tab-button{zoom:1;display:block;outline:0}.x-tab-inner{display:block;text-align:center;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis;overflow:hidden;zoom:1}.x-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x-tab-bar{z-index:1}.x-tab-bar-body{z-index:2;position:relative}.x-tab-bar-strip{position:absolute;line-height:0;font-size:0;z-index:1}.x-tab-bar-horizontal .x-tab-bar-strip{width:100%;left:0}.x-tab-bar-vertical .x-tab-bar-strip{height:100%;top:0}.x-tab-bar-strip-top{bottom:0}.x-tab-bar-strip-bottom{top:0}.x-tab-bar-strip-left{right:0}.x-tab-bar-strip-right{left:0}.x-tab-bar-plain{background:transparent!important}.x-tab-icon-el{position:absolute;background-repeat:no-repeat;top:0;left:0;right:auto;bottom:0}.x-tab-close-btn{display:block;position:absolute;font-size:0;line-height:0;background:no-repeat}.x-tab-mc{overflow:visible}.x-autowidth-table .x-grid-table{table-layout:auto;width:auto!important}.x-tree-view{overflow:hidden}.x-tree-elbow-img,.x-tree-icon{background-repeat:no-repeat;background-position:0 center;vertical-align:top}.x-tree-checkbox{border:0;padding:0;vertical-align:top;position:relative;background-color:transparent}.x-tree-animator-wrap{overflow:hidden}.x-tree-node-text{zoom:1}.x-surface{display:-moz-inline-stack;display:inline-block;vertical-align:middle;*vertical-align:auto;zoom:1;*display:inline;overflow:hidden}.rvml{behavior:url(#default#VML)}.x-surface tspan{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x-vml-sprite{position:absolute;left:0;top:0;width:1px;height:1px}.x-vml-group{position:absolute;left:0;top:0;width:1000px;height:1000px}.x-vml-measure-span{position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;display:inline}.x-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}.x-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}svg,vml{overflow:hidden}.x-body{color:white;font-size:15px;font-family:tahoma,arial,verdana,sans-serif;background:black}.x-animating-size,.x-collapsed{overflow:hidden!important}.x-editor .x-form-item-body{padding-bottom:0}.x-focus-element{position:absolute;top:-10px;left:-10px;width:0;height:0}.x-focus-frame{position:absolute;left:0;top:0;z-index:100000000;width:0;height:0}.x-focus-frame-top,.x-focus-frame-bottom,.x-focus-frame-left,.x-focus-frame-right{position:absolute;top:0;left:0}.x-focus-frame-top,.x-focus-frame-bottom{border-top:solid 2px #15428b;height:2px}.x-focus-frame-left,.x-focus-frame-right{border-left:solid 2px #15428b;width:2px}.x-mask{filter:alpha(opacity=50);opacity:.5;background:#ccc}.x-mask-msg{padding:2px;border-style:solid;border-width:1px;border-color:#223;background-image:none;background-color:#3f4757}.x-mask-msg-inner{padding:5px 10px;border-style:solid;border-width:1px;border-color:#556;background-color:#232d38;color:white;font:normal 14px tahoma,arial,verdana,sans-serif}.x-mask-msg-text{padding:5px 5px 5px 20px}.x-progress-default{background-color:#232d38;border-width:1px;height:20px;border-color:#18181a}.x-content-box .x-progress-default{height:18px}.x-progress-default .x-progress-bar-default{background-image:none;background-color:#ed9200;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ffb43b),color-stop(50%,#ffa007),color-stop(51%,#ed9200),color-stop(100%,#d38200));background-image:-webkit-linear-gradient(top,#ffb43b,#ffa007 50%,#ed9200 51%,#d38200);background-image:-moz-linear-gradient(top,#ffb43b,#ffa007 50%,#ed9200 51%,#d38200);background-image:-o-linear-gradient(top,#ffb43b,#ffa007 50%,#ed9200 51%,#d38200);background-image:linear-gradient(top,#ffb43b,#ffa007 50%,#ed9200 51%,#d38200)}.x-nlg .x-progress-default .x-progress-bar-default{background:repeat-x;background-image:url(images/progress/progress-default-bg.gif)}.x-progress-default .x-progress-text{color:white;font-weight:bold;font-size:14px;text-align:center;line-height:18px}.x-progress-default .x-progress-text-back{color:#aaa;line-height:18px}.x-progress-default .x-progress-bar-default:after{display:none;content:"x-slicer:bg:url(images/progress/progress-default-bg.gif)"}.x-btn-default-small{border-color:#06070a}.x-btn-default-small{-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-image:none;background-color:#2a3142;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#2a3142),color-stop(48%,#252c3b),color-stop(52%,#13171f),color-stop(100%,#171b25));background-image:-webkit-linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25);background-image:-moz-linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25);background-image:-o-linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25);background-image:linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25)}.x-btn-default-small-mc{background-image:url(images/btn/btn-default-small-fbg.gif);background-position:0 top;background-color:#2a3142}.x-nlg .x-btn-default-small{background-image:url(images/btn/btn-default-small-bg.gif);background-position:0 top}.x-nbr .x-btn-default-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-btn-default-small-tl{background-position:0 -6px}.x-btn-default-small-tr{background-position:right -9px}.x-btn-default-small-bl{background-position:0 -12px}.x-btn-default-small-br{background-position:right -15px}.x-btn-default-small-ml{background-position:0 top}.x-btn-default-small-mr{background-position:right top}.x-btn-default-small-tc{background-position:0 0}.x-btn-default-small-bc{background-position:0 -3px}.x-btn-default-small-tr,.x-btn-default-small-br,.x-btn-default-small-mr{padding-right:3px}.x-btn-default-small-tl,.x-btn-default-small-bl,.x-btn-default-small-ml{padding-left:3px}.x-btn-default-small-tc{height:3px}.x-btn-default-small-bc{height:3px}.x-btn-default-small-tl,.x-btn-default-small-bl,.x-btn-default-small-tr,.x-btn-default-small-br,.x-btn-default-small-tc,.x-btn-default-small-bc,.x-btn-default-small-ml,.x-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-corners.gif)}.x-btn-default-small-ml,.x-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-sides.gif)}.x-btn-default-small-mc{padding:0}.x-strict .x-ie7 .x-btn-default-small-tl,.x-strict .x-ie7 .x-btn-default-small-bl{position:relative;right:0}.x-btn-default-small:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"}.x-btn-default-small .x-btn-inner{font-size:14px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:white;padding:0 4px}.x-btn-default-small .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-small .x-btn-arrow-right{padding-right:14px}.x-btn-default-small .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-small .x-btn-glyph{font-size:16px;line-height:16px;color:white;opacity:.5}.x-ie8m .x-btn-default-small .x-btn-glyph{color:#9498a0}.x-btn-default-small-disabled{border-color:#565656;background-image:none;background-color:#6b6b6b;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#6b6b6b),color-stop(48%,#656565),color-stop(52%,#4e4e4e),color-stop(100%,#535353));background-image:-webkit-linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353);background-image:-moz-linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353);background-image:-o-linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353);background-image:linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353)}.x-btn-default-small-icon .x-btn-button,.x-btn-default-small-noicon .x-btn-button{height:16px}.x-btn-default-small-icon .x-btn-inner,.x-btn-default-small-noicon .x-btn-inner{line-height:16px}.x-btn-default-small-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-small-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-small-icon .x-btn-inner{width:16px;padding:0}.x-btn-default-small-icon .x-btn-icon-el{width:16px;height:16px}.x-btn-default-small-icon-text-left .x-btn-button{height:16px}.x-btn-default-small-icon-text-left .x-btn-inner{line-height:16px;padding-left:20px}.x-btn-default-small-icon-text-left .x-btn-icon-el{width:16px;right:auto}.x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-small-icon-text-left .x-btn-icon-el{height:16px}.x-btn-default-small-icon-text-right .x-btn-button{height:16px}.x-btn-default-small-icon-text-right .x-btn-inner{line-height:16px;padding-right:20px}.x-btn-default-small-icon-text-right .x-btn-icon-el{width:16px;left:auto}.x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-small-icon-text-right .x-btn-icon-el{height:16px}.x-btn-default-small-icon-text-top .x-btn-inner{padding-top:20px}.x-btn-default-small-icon-text-top .x-btn-icon-el{height:16px;bottom:auto}.x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-small-icon-text-bottom .x-btn-inner{padding-bottom:20px}.x-btn-default-small-icon-text-bottom .x-btn-icon-el{height:16px;top:auto}.x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-small-over{border-color:#947518;background-image:none;background-color:#ed9200;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ed9200),color-stop(48%,#e29200),color-stop(52%,#9d7921),color-stop(100%,#ab821b));background-image:-webkit-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-moz-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-o-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b)}.x-btn-default-small-focus{border-color:#947518;background-image:none;background-color:#ed9200;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ed9200),color-stop(48%,#e29200),color-stop(52%,#9d7921),color-stop(100%,#ab821b));background-image:-webkit-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-moz-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-o-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b)}.x-btn-default-small-menu-active,.x-btn-default-small-pressed{border-color:#c9750f;background-image:none;background-color:#da7b19;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#da7b19),color-stop(48%,#e17b1d),color-stop(52%,#db6800),color-stop(100%,#e66e00));background-image:-webkit-linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00);background-image:-moz-linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00);background-image:-o-linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00);background-image:linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00)}.x-btn-default-small-over .x-frame-tl,.x-btn-default-small-over .x-frame-bl,.x-btn-default-small-over .x-frame-tr,.x-btn-default-small-over .x-frame-br,.x-btn-default-small-over .x-frame-tc,.x-btn-default-small-over .x-frame-bc{background-image:url(images/btn/btn-default-small-over-corners.gif)}.x-btn-default-small-over .x-frame-ml,.x-btn-default-small-over .x-frame-mr{background-image:url(images/btn/btn-default-small-over-sides.gif)}.x-btn-default-small-over .x-frame-mc{background-color:#ed9200;background-image:url(images/btn/btn-default-small-over-fbg.gif)}.x-btn-default-small-focus .x-frame-tl,.x-btn-default-small-focus .x-frame-bl,.x-btn-default-small-focus .x-frame-tr,.x-btn-default-small-focus .x-frame-br,.x-btn-default-small-focus .x-frame-tc,.x-btn-default-small-focus .x-frame-bc{background-image:url(images/btn/btn-default-small-focus-corners.gif)}.x-btn-default-small-focus .x-frame-ml,.x-btn-default-small-focus .x-frame-mr{background-image:url(images/btn/btn-default-small-focus-sides.gif)}.x-btn-default-small-focus .x-frame-mc{background-color:#ed9200;background-image:url(images/btn/btn-default-small-focus-fbg.gif)}.x-btn-default-small-menu-active .x-frame-tl,.x-btn-default-small-menu-active .x-frame-bl,.x-btn-default-small-menu-active .x-frame-tr,.x-btn-default-small-menu-active .x-frame-br,.x-btn-default-small-menu-active .x-frame-tc,.x-btn-default-small-menu-active .x-frame-bc,.x-btn-default-small-pressed .x-frame-tl,.x-btn-default-small-pressed .x-frame-bl,.x-btn-default-small-pressed .x-frame-tr,.x-btn-default-small-pressed .x-frame-br,.x-btn-default-small-pressed .x-frame-tc,.x-btn-default-small-pressed .x-frame-bc{background-image:url(images/btn/btn-default-small-pressed-corners.gif)}.x-btn-default-small-menu-active .x-frame-ml,.x-btn-default-small-menu-active .x-frame-mr,.x-btn-default-small-pressed .x-frame-ml,.x-btn-default-small-pressed .x-frame-mr{background-image:url(images/btn/btn-default-small-pressed-sides.gif)}.x-btn-default-small-menu-active .x-frame-mc,.x-btn-default-small-pressed .x-frame-mc{background-color:#da7b19;background-image:url(images/btn/btn-default-small-pressed-fbg.gif)}.x-btn-default-small-disabled .x-frame-tl,.x-btn-default-small-disabled .x-frame-bl,.x-btn-default-small-disabled .x-frame-tr,.x-btn-default-small-disabled .x-frame-br,.x-btn-default-small-disabled .x-frame-tc,.x-btn-default-small-disabled .x-frame-bc{background-image:url(images/btn/btn-default-small-disabled-corners.gif)}.x-btn-default-small-disabled .x-frame-ml,.x-btn-default-small-disabled .x-frame-mr{background-image:url(images/btn/btn-default-small-disabled-sides.gif)}.x-btn-default-small-disabled .x-frame-mc{background-color:#6b6b6b;background-image:url(images/btn/btn-default-small-disabled-fbg.gif)}.x-nlg .x-btn-default-small-over{background-image:url(images/btn/btn-default-small-over-bg.gif)}.x-nlg .x-btn-default-small-focus{background-image:url(images/btn/btn-default-small-focus-bg.gif)}.x-nlg .x-btn-default-small-menu-active,.x-nlg .x-btn-default-small-pressed{background-image:url(images/btn/btn-default-small-pressed-bg.gif)}.x-nlg .x-btn-default-small-disabled{background-image:url(images/btn/btn-default-small-disabled-bg.gif)}.x-nbr .x-btn-default-small{background-image:none}.x-btn-default-small .x-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:18px}.x-btn-default-small .x-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:16px}.x-btn-default-small-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-small-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-small-disabled .x-btn-inner,.x-btn-default-small-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-btn-default-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"}.x-btn-default-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"}.x-btn-default-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"}.x-btn-default-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"}.x-btn-default-medium{border-color:#06070a}.x-btn-default-medium{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#2a3142;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#2a3142),color-stop(48%,#252c3b),color-stop(52%,#13171f),color-stop(100%,#171b25));background-image:-webkit-linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25);background-image:-moz-linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25);background-image:-o-linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25);background-image:linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25)}.x-btn-default-medium-mc{background-image:url(images/btn/btn-default-medium-fbg.gif);background-position:0 top;background-color:#2a3142}.x-nlg .x-btn-default-medium{background-image:url(images/btn/btn-default-medium-bg.gif);background-position:0 top}.x-nbr .x-btn-default-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-medium-tl{background-position:0 -6px}.x-btn-default-medium-tr{background-position:right -9px}.x-btn-default-medium-bl{background-position:0 -12px}.x-btn-default-medium-br{background-position:right -15px}.x-btn-default-medium-ml{background-position:0 top}.x-btn-default-medium-mr{background-position:right top}.x-btn-default-medium-tc{background-position:0 0}.x-btn-default-medium-bc{background-position:0 -3px}.x-btn-default-medium-tr,.x-btn-default-medium-br,.x-btn-default-medium-mr{padding-right:3px}.x-btn-default-medium-tl,.x-btn-default-medium-bl,.x-btn-default-medium-ml{padding-left:3px}.x-btn-default-medium-tc{height:3px}.x-btn-default-medium-bc{height:3px}.x-btn-default-medium-tl,.x-btn-default-medium-bl,.x-btn-default-medium-tr,.x-btn-default-medium-br,.x-btn-default-medium-tc,.x-btn-default-medium-bc,.x-btn-default-medium-ml,.x-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-corners.gif)}.x-btn-default-medium-ml,.x-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-sides.gif)}.x-btn-default-medium-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-medium-tl,.x-strict .x-ie7 .x-btn-default-medium-bl{position:relative;right:0}.x-btn-default-medium:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"}.x-btn-default-medium .x-btn-inner{font-size:14px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:white;padding:0 3px}.x-btn-default-medium .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-medium .x-btn-arrow-right{padding-right:14px}.x-btn-default-medium .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-medium .x-btn-glyph{font-size:24px;line-height:24px;color:white;opacity:.5}.x-ie8m .x-btn-default-medium .x-btn-glyph{color:#9498a0}.x-btn-default-medium-disabled{border-color:#565656;background-image:none;background-color:#6b6b6b;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#6b6b6b),color-stop(48%,#656565),color-stop(52%,#4e4e4e),color-stop(100%,#535353));background-image:-webkit-linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353);background-image:-moz-linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353);background-image:-o-linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353);background-image:linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353)}.x-btn-default-medium-icon .x-btn-button,.x-btn-default-medium-noicon .x-btn-button{height:24px}.x-btn-default-medium-icon .x-btn-inner,.x-btn-default-medium-noicon .x-btn-inner{line-height:24px}.x-btn-default-medium-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-medium-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-medium-icon .x-btn-inner{width:24px;padding:0}.x-btn-default-medium-icon .x-btn-icon-el{width:24px;height:24px}.x-btn-default-medium-icon-text-left .x-btn-button{height:24px}.x-btn-default-medium-icon-text-left .x-btn-inner{line-height:24px;padding-left:28px}.x-btn-default-medium-icon-text-left .x-btn-icon-el{width:24px;right:auto}.x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon-el{height:24px}.x-btn-default-medium-icon-text-right .x-btn-button{height:24px}.x-btn-default-medium-icon-text-right .x-btn-inner{line-height:24px;padding-right:28px}.x-btn-default-medium-icon-text-right .x-btn-icon-el{width:24px;left:auto}.x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon-el{height:24px}.x-btn-default-medium-icon-text-top .x-btn-inner{padding-top:28px}.x-btn-default-medium-icon-text-top .x-btn-icon-el{height:24px;bottom:auto}.x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-medium-icon-text-bottom .x-btn-inner{padding-bottom:28px}.x-btn-default-medium-icon-text-bottom .x-btn-icon-el{height:24px;top:auto}.x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-medium-over{border-color:#947518;background-image:none;background-color:#ed9200;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ed9200),color-stop(48%,#e29200),color-stop(52%,#9d7921),color-stop(100%,#ab821b));background-image:-webkit-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-moz-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-o-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b)}.x-btn-default-medium-focus{border-color:#947518;background-image:none;background-color:#ed9200;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ed9200),color-stop(48%,#e29200),color-stop(52%,#9d7921),color-stop(100%,#ab821b));background-image:-webkit-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-moz-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-o-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b)}.x-btn-default-medium-menu-active,.x-btn-default-medium-pressed{border-color:#c9750f;background-image:none;background-color:#da7b19;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#da7b19),color-stop(48%,#e17b1d),color-stop(52%,#db6800),color-stop(100%,#e66e00));background-image:-webkit-linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00);background-image:-moz-linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00);background-image:-o-linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00);background-image:linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00)}.x-btn-default-medium-over .x-frame-tl,.x-btn-default-medium-over .x-frame-bl,.x-btn-default-medium-over .x-frame-tr,.x-btn-default-medium-over .x-frame-br,.x-btn-default-medium-over .x-frame-tc,.x-btn-default-medium-over .x-frame-bc{background-image:url(images/btn/btn-default-medium-over-corners.gif)}.x-btn-default-medium-over .x-frame-ml,.x-btn-default-medium-over .x-frame-mr{background-image:url(images/btn/btn-default-medium-over-sides.gif)}.x-btn-default-medium-over .x-frame-mc{background-color:#ed9200;background-image:url(images/btn/btn-default-medium-over-fbg.gif)}.x-btn-default-medium-focus .x-frame-tl,.x-btn-default-medium-focus .x-frame-bl,.x-btn-default-medium-focus .x-frame-tr,.x-btn-default-medium-focus .x-frame-br,.x-btn-default-medium-focus .x-frame-tc,.x-btn-default-medium-focus .x-frame-bc{background-image:url(images/btn/btn-default-medium-focus-corners.gif)}.x-btn-default-medium-focus .x-frame-ml,.x-btn-default-medium-focus .x-frame-mr{background-image:url(images/btn/btn-default-medium-focus-sides.gif)}.x-btn-default-medium-focus .x-frame-mc{background-color:#ed9200;background-image:url(images/btn/btn-default-medium-focus-fbg.gif)}.x-btn-default-medium-menu-active .x-frame-tl,.x-btn-default-medium-menu-active .x-frame-bl,.x-btn-default-medium-menu-active .x-frame-tr,.x-btn-default-medium-menu-active .x-frame-br,.x-btn-default-medium-menu-active .x-frame-tc,.x-btn-default-medium-menu-active .x-frame-bc,.x-btn-default-medium-pressed .x-frame-tl,.x-btn-default-medium-pressed .x-frame-bl,.x-btn-default-medium-pressed .x-frame-tr,.x-btn-default-medium-pressed .x-frame-br,.x-btn-default-medium-pressed .x-frame-tc,.x-btn-default-medium-pressed .x-frame-bc{background-image:url(images/btn/btn-default-medium-pressed-corners.gif)}.x-btn-default-medium-menu-active .x-frame-ml,.x-btn-default-medium-menu-active .x-frame-mr,.x-btn-default-medium-pressed .x-frame-ml,.x-btn-default-medium-pressed .x-frame-mr{background-image:url(images/btn/btn-default-medium-pressed-sides.gif)}.x-btn-default-medium-menu-active .x-frame-mc,.x-btn-default-medium-pressed .x-frame-mc{background-color:#da7b19;background-image:url(images/btn/btn-default-medium-pressed-fbg.gif)}.x-btn-default-medium-disabled .x-frame-tl,.x-btn-default-medium-disabled .x-frame-bl,.x-btn-default-medium-disabled .x-frame-tr,.x-btn-default-medium-disabled .x-frame-br,.x-btn-default-medium-disabled .x-frame-tc,.x-btn-default-medium-disabled .x-frame-bc{background-image:url(images/btn/btn-default-medium-disabled-corners.gif)}.x-btn-default-medium-disabled .x-frame-ml,.x-btn-default-medium-disabled .x-frame-mr{background-image:url(images/btn/btn-default-medium-disabled-sides.gif)}.x-btn-default-medium-disabled .x-frame-mc{background-color:#6b6b6b;background-image:url(images/btn/btn-default-medium-disabled-fbg.gif)}.x-nlg .x-btn-default-medium-over{background-image:url(images/btn/btn-default-medium-over-bg.gif)}.x-nlg .x-btn-default-medium-focus{background-image:url(images/btn/btn-default-medium-focus-bg.gif)}.x-nlg .x-btn-default-medium-menu-active,.x-nlg .x-btn-default-medium-pressed{background-image:url(images/btn/btn-default-medium-pressed-bg.gif)}.x-nlg .x-btn-default-medium-disabled{background-image:url(images/btn/btn-default-medium-disabled-bg.gif)}.x-nbr .x-btn-default-medium{background-image:none}.x-btn-default-medium .x-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:18px}.x-btn-default-medium .x-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:16px}.x-btn-default-medium-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-medium-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-medium-disabled .x-btn-inner,.x-btn-default-medium-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-btn-default-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"}.x-btn-default-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"}.x-btn-default-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"}.x-btn-default-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"}.x-btn-default-large{border-color:#06070a}.x-btn-default-large{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#2a3142;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#2a3142),color-stop(48%,#252c3b),color-stop(52%,#13171f),color-stop(100%,#171b25));background-image:-webkit-linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25);background-image:-moz-linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25);background-image:-o-linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25);background-image:linear-gradient(top,#2a3142,#252c3b 48%,#13171f 52%,#171b25)}.x-btn-default-large-mc{background-image:url(images/btn/btn-default-large-fbg.gif);background-position:0 top;background-color:#2a3142}.x-nlg .x-btn-default-large{background-image:url(images/btn/btn-default-large-bg.gif);background-position:0 top}.x-nbr .x-btn-default-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-large-tl{background-position:0 -6px}.x-btn-default-large-tr{background-position:right -9px}.x-btn-default-large-bl{background-position:0 -12px}.x-btn-default-large-br{background-position:right -15px}.x-btn-default-large-ml{background-position:0 top}.x-btn-default-large-mr{background-position:right top}.x-btn-default-large-tc{background-position:0 0}.x-btn-default-large-bc{background-position:0 -3px}.x-btn-default-large-tr,.x-btn-default-large-br,.x-btn-default-large-mr{padding-right:3px}.x-btn-default-large-tl,.x-btn-default-large-bl,.x-btn-default-large-ml{padding-left:3px}.x-btn-default-large-tc{height:3px}.x-btn-default-large-bc{height:3px}.x-btn-default-large-tl,.x-btn-default-large-bl,.x-btn-default-large-tr,.x-btn-default-large-br,.x-btn-default-large-tc,.x-btn-default-large-bc,.x-btn-default-large-ml,.x-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-corners.gif)}.x-btn-default-large-ml,.x-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-sides.gif)}.x-btn-default-large-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-large-tl,.x-strict .x-ie7 .x-btn-default-large-bl{position:relative;right:0}.x-btn-default-large:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"}.x-btn-default-large .x-btn-inner{font-size:14px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:white;padding:0 3px}.x-btn-default-large .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-large .x-btn-arrow-right{padding-right:14px}.x-btn-default-large .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-large .x-btn-glyph{font-size:32px;line-height:32px;color:white;opacity:.5}.x-ie8m .x-btn-default-large .x-btn-glyph{color:#9498a0}.x-btn-default-large-disabled{border-color:#565656;background-image:none;background-color:#6b6b6b;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#6b6b6b),color-stop(48%,#656565),color-stop(52%,#4e4e4e),color-stop(100%,#535353));background-image:-webkit-linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353);background-image:-moz-linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353);background-image:-o-linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353);background-image:linear-gradient(top,#6b6b6b,#656565 48%,#4e4e4e 52%,#535353)}.x-btn-default-large-icon .x-btn-button,.x-btn-default-large-noicon .x-btn-button{height:32px}.x-btn-default-large-icon .x-btn-inner,.x-btn-default-large-noicon .x-btn-inner{line-height:32px}.x-btn-default-large-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-large-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-large-icon .x-btn-inner{width:32px;padding:0}.x-btn-default-large-icon .x-btn-icon-el{width:32px;height:32px}.x-btn-default-large-icon-text-left .x-btn-button{height:32px}.x-btn-default-large-icon-text-left .x-btn-inner{line-height:32px;padding-left:36px}.x-btn-default-large-icon-text-left .x-btn-icon-el{width:32px;right:auto}.x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-large-icon-text-left .x-btn-icon-el{height:32px}.x-btn-default-large-icon-text-right .x-btn-button{height:32px}.x-btn-default-large-icon-text-right .x-btn-inner{line-height:32px;padding-right:36px}.x-btn-default-large-icon-text-right .x-btn-icon-el{width:32px;left:auto}.x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-large-icon-text-right .x-btn-icon-el{height:32px}.x-btn-default-large-icon-text-top .x-btn-inner{padding-top:36px}.x-btn-default-large-icon-text-top .x-btn-icon-el{height:32px;bottom:auto}.x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-large-icon-text-bottom .x-btn-inner{padding-bottom:36px}.x-btn-default-large-icon-text-bottom .x-btn-icon-el{height:32px;top:auto}.x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-large-over{border-color:#947518;background-image:none;background-color:#ed9200;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ed9200),color-stop(48%,#e29200),color-stop(52%,#9d7921),color-stop(100%,#ab821b));background-image:-webkit-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-moz-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-o-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b)}.x-btn-default-large-focus{border-color:#947518;background-image:none;background-color:#ed9200;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ed9200),color-stop(48%,#e29200),color-stop(52%,#9d7921),color-stop(100%,#ab821b));background-image:-webkit-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-moz-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:-o-linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b);background-image:linear-gradient(top,#ed9200,#e29200 48%,#9d7921 52%,#ab821b)}.x-btn-default-large-menu-active,.x-btn-default-large-pressed{border-color:#c9750f;background-image:none;background-color:#da7b19;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#da7b19),color-stop(48%,#e17b1d),color-stop(52%,#db6800),color-stop(100%,#e66e00));background-image:-webkit-linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00);background-image:-moz-linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00);background-image:-o-linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00);background-image:linear-gradient(top,#da7b19,#e17b1d 48%,#db6800 52%,#e66e00)}.x-btn-default-large-over .x-frame-tl,.x-btn-default-large-over .x-frame-bl,.x-btn-default-large-over .x-frame-tr,.x-btn-default-large-over .x-frame-br,.x-btn-default-large-over .x-frame-tc,.x-btn-default-large-over .x-frame-bc{background-image:url(images/btn/btn-default-large-over-corners.gif)}.x-btn-default-large-over .x-frame-ml,.x-btn-default-large-over .x-frame-mr{background-image:url(images/btn/btn-default-large-over-sides.gif)}.x-btn-default-large-over .x-frame-mc{background-color:#ed9200;background-image:url(images/btn/btn-default-large-over-fbg.gif)}.x-btn-default-large-focus .x-frame-tl,.x-btn-default-large-focus .x-frame-bl,.x-btn-default-large-focus .x-frame-tr,.x-btn-default-large-focus .x-frame-br,.x-btn-default-large-focus .x-frame-tc,.x-btn-default-large-focus .x-frame-bc{background-image:url(images/btn/btn-default-large-focus-corners.gif)}.x-btn-default-large-focus .x-frame-ml,.x-btn-default-large-focus .x-frame-mr{background-image:url(images/btn/btn-default-large-focus-sides.gif)}.x-btn-default-large-focus .x-frame-mc{background-color:#ed9200;background-image:url(images/btn/btn-default-large-focus-fbg.gif)}.x-btn-default-large-menu-active .x-frame-tl,.x-btn-default-large-menu-active .x-frame-bl,.x-btn-default-large-menu-active .x-frame-tr,.x-btn-default-large-menu-active .x-frame-br,.x-btn-default-large-menu-active .x-frame-tc,.x-btn-default-large-menu-active .x-frame-bc,.x-btn-default-large-pressed .x-frame-tl,.x-btn-default-large-pressed .x-frame-bl,.x-btn-default-large-pressed .x-frame-tr,.x-btn-default-large-pressed .x-frame-br,.x-btn-default-large-pressed .x-frame-tc,.x-btn-default-large-pressed .x-frame-bc{background-image:url(images/btn/btn-default-large-pressed-corners.gif)}.x-btn-default-large-menu-active .x-frame-ml,.x-btn-default-large-menu-active .x-frame-mr,.x-btn-default-large-pressed .x-frame-ml,.x-btn-default-large-pressed .x-frame-mr{background-image:url(images/btn/btn-default-large-pressed-sides.gif)}.x-btn-default-large-menu-active .x-frame-mc,.x-btn-default-large-pressed .x-frame-mc{background-color:#da7b19;background-image:url(images/btn/btn-default-large-pressed-fbg.gif)}.x-btn-default-large-disabled .x-frame-tl,.x-btn-default-large-disabled .x-frame-bl,.x-btn-default-large-disabled .x-frame-tr,.x-btn-default-large-disabled .x-frame-br,.x-btn-default-large-disabled .x-frame-tc,.x-btn-default-large-disabled .x-frame-bc{background-image:url(images/btn/btn-default-large-disabled-corners.gif)}.x-btn-default-large-disabled .x-frame-ml,.x-btn-default-large-disabled .x-frame-mr{background-image:url(images/btn/btn-default-large-disabled-sides.gif)}.x-btn-default-large-disabled .x-frame-mc{background-color:#6b6b6b;background-image:url(images/btn/btn-default-large-disabled-fbg.gif)}.x-nlg .x-btn-default-large-over{background-image:url(images/btn/btn-default-large-over-bg.gif)}.x-nlg .x-btn-default-large-focus{background-image:url(images/btn/btn-default-large-focus-bg.gif)}.x-nlg .x-btn-default-large-menu-active,.x-nlg .x-btn-default-large-pressed{background-image:url(images/btn/btn-default-large-pressed-bg.gif)}.x-nlg .x-btn-default-large-disabled{background-image:url(images/btn/btn-default-large-disabled-bg.gif)}.x-nbr .x-btn-default-large{background-image:none}.x-btn-default-large .x-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:18px}.x-btn-default-large .x-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:16px}.x-btn-default-large-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-large-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-large-disabled .x-btn-inner,.x-btn-default-large-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-btn-default-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"}.x-btn-default-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"}.x-btn-default-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"}.x-btn-default-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"}.x-btn-default-toolbar-small{border-color:transparent}.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:2px 2px 2px 2px;border-width:1px;border-style:solid;background-color:transparent}.x-btn-default-toolbar-small-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-default-toolbar-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-btn-default-toolbar-small-tl{background-position:0 -6px}.x-btn-default-toolbar-small-tr{background-position:right -9px}.x-btn-default-toolbar-small-bl{background-position:0 -12px}.x-btn-default-toolbar-small-br{background-position:right -15px}.x-btn-default-toolbar-small-ml{background-position:0 top}.x-btn-default-toolbar-small-mr{background-position:right top}.x-btn-default-toolbar-small-tc{background-position:0 0}.x-btn-default-toolbar-small-bc{background-position:0 -3px}.x-btn-default-toolbar-small-tr,.x-btn-default-toolbar-small-br,.x-btn-default-toolbar-small-mr{padding-right:3px}.x-btn-default-toolbar-small-tl,.x-btn-default-toolbar-small-bl,.x-btn-default-toolbar-small-ml{padding-left:3px}.x-btn-default-toolbar-small-tc{height:3px}.x-btn-default-toolbar-small-bc{height:3px}.x-btn-default-toolbar-small-tl,.x-btn-default-toolbar-small-bl,.x-btn-default-toolbar-small-tr,.x-btn-default-toolbar-small-br,.x-btn-default-toolbar-small-tc,.x-btn-default-toolbar-small-bc,.x-btn-default-toolbar-small-ml,.x-btn-default-toolbar-small-mr{zoom:1}.x-btn-default-toolbar-small-ml,.x-btn-default-toolbar-small-mr{zoom:1}.x-btn-default-toolbar-small-mc{padding:0}.x-strict .x-ie7 .x-btn-default-toolbar-small-tl,.x-strict .x-ie7 .x-btn-default-toolbar-small-bl{position:relative;right:0}.x-btn-default-toolbar-small .x-btn-inner{font-size:14px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:white;padding:0 4px}.x-btn-default-toolbar-small .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-toolbar-small .x-btn-arrow-right{padding-right:14px}.x-btn-default-toolbar-small .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-toolbar-small .x-btn-glyph{font-size:16px;line-height:16px;color:white;opacity:.5}.x-ie8m .x-btn-default-toolbar-small .x-btn-glyph{color:white}.x-btn-default-toolbar-small-disabled{border-color:#565656;background-image:none;background-color:transparent}.x-btn-default-toolbar-small-icon .x-btn-button,.x-btn-default-toolbar-small-noicon .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon .x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-inner{line-height:16px}.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-small-icon .x-btn-inner{width:16px;padding:0}.x-btn-default-toolbar-small-icon .x-btn-icon-el{width:16px;height:16px}.x-btn-default-toolbar-small-icon-text-left .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon-text-left .x-btn-inner{line-height:16px;padding-left:20px}.x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el{width:16px;right:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el{height:16px}.x-btn-default-toolbar-small-icon-text-right .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon-text-right .x-btn-inner{line-height:16px;padding-right:20px}.x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el{width:16px;left:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el{height:16px}.x-btn-default-toolbar-small-icon-text-top .x-btn-inner{padding-top:20px}.x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el{height:16px;bottom:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner{padding-bottom:20px}.x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el{height:16px;top:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-small-over{border-color:#d97e27;background-image:none;background-color:#ed9200}.x-btn-default-toolbar-small-focus{border-color:#d97e27;background-image:none;background-color:#ed9200}.x-btn-default-toolbar-small-menu-active,.x-btn-default-toolbar-small-pressed{border-color:#c86e19;background-image:none;background-color:#db7b1f}.x-btn-default-toolbar-small-over .x-frame-tl,.x-btn-default-toolbar-small-over .x-frame-bl,.x-btn-default-toolbar-small-over .x-frame-tr,.x-btn-default-toolbar-small-over .x-frame-br,.x-btn-default-toolbar-small-over .x-frame-tc,.x-btn-default-toolbar-small-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-over-corners.gif)}.x-btn-default-toolbar-small-over .x-frame-ml,.x-btn-default-toolbar-small-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-over-sides.gif)}.x-btn-default-toolbar-small-over .x-frame-mc{background-color:#ed9200}.x-btn-default-toolbar-small-focus .x-frame-tl,.x-btn-default-toolbar-small-focus .x-frame-bl,.x-btn-default-toolbar-small-focus .x-frame-tr,.x-btn-default-toolbar-small-focus .x-frame-br,.x-btn-default-toolbar-small-focus .x-frame-tc,.x-btn-default-toolbar-small-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-focus-corners.gif)}.x-btn-default-toolbar-small-focus .x-frame-ml,.x-btn-default-toolbar-small-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-focus-sides.gif)}.x-btn-default-toolbar-small-focus .x-frame-mc{background-color:#ed9200}.x-btn-default-toolbar-small-menu-active .x-frame-tl,.x-btn-default-toolbar-small-menu-active .x-frame-bl,.x-btn-default-toolbar-small-menu-active .x-frame-tr,.x-btn-default-toolbar-small-menu-active .x-frame-br,.x-btn-default-toolbar-small-menu-active .x-frame-tc,.x-btn-default-toolbar-small-menu-active .x-frame-bc,.x-btn-default-toolbar-small-pressed .x-frame-tl,.x-btn-default-toolbar-small-pressed .x-frame-bl,.x-btn-default-toolbar-small-pressed .x-frame-tr,.x-btn-default-toolbar-small-pressed .x-frame-br,.x-btn-default-toolbar-small-pressed .x-frame-tc,.x-btn-default-toolbar-small-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-pressed-corners.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-ml,.x-btn-default-toolbar-small-menu-active .x-frame-mr,.x-btn-default-toolbar-small-pressed .x-frame-ml,.x-btn-default-toolbar-small-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-pressed-sides.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-mc,.x-btn-default-toolbar-small-pressed .x-frame-mc{background-color:#db7b1f}.x-btn-default-toolbar-small-disabled .x-frame-tl,.x-btn-default-toolbar-small-disabled .x-frame-bl,.x-btn-default-toolbar-small-disabled .x-frame-tr,.x-btn-default-toolbar-small-disabled .x-frame-br,.x-btn-default-toolbar-small-disabled .x-frame-tc,.x-btn-default-toolbar-small-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-disabled-corners.gif)}.x-btn-default-toolbar-small-disabled .x-frame-ml,.x-btn-default-toolbar-small-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)}.x-btn-default-toolbar-small-disabled .x-frame-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-small{background-image:none}.x-btn-default-toolbar-small .x-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:18px}.x-btn-default-toolbar-small .x-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:16px}.x-btn-default-toolbar-small-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-toolbar-small-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-toolbar-small-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif)"}.x-btn-default-toolbar-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif)"}.x-btn-default-toolbar-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif)"}.x-btn-default-toolbar-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)"}.x-btn-default-toolbar-medium{border-color:transparent}.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:transparent}.x-btn-default-toolbar-medium-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-default-toolbar-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-toolbar-medium-tl{background-position:0 -6px}.x-btn-default-toolbar-medium-tr{background-position:right -9px}.x-btn-default-toolbar-medium-bl{background-position:0 -12px}.x-btn-default-toolbar-medium-br{background-position:right -15px}.x-btn-default-toolbar-medium-ml{background-position:0 top}.x-btn-default-toolbar-medium-mr{background-position:right top}.x-btn-default-toolbar-medium-tc{background-position:0 0}.x-btn-default-toolbar-medium-bc{background-position:0 -3px}.x-btn-default-toolbar-medium-tr,.x-btn-default-toolbar-medium-br,.x-btn-default-toolbar-medium-mr{padding-right:3px}.x-btn-default-toolbar-medium-tl,.x-btn-default-toolbar-medium-bl,.x-btn-default-toolbar-medium-ml{padding-left:3px}.x-btn-default-toolbar-medium-tc{height:3px}.x-btn-default-toolbar-medium-bc{height:3px}.x-btn-default-toolbar-medium-tl,.x-btn-default-toolbar-medium-bl,.x-btn-default-toolbar-medium-tr,.x-btn-default-toolbar-medium-br,.x-btn-default-toolbar-medium-tc,.x-btn-default-toolbar-medium-bc,.x-btn-default-toolbar-medium-ml,.x-btn-default-toolbar-medium-mr{zoom:1}.x-btn-default-toolbar-medium-ml,.x-btn-default-toolbar-medium-mr{zoom:1}.x-btn-default-toolbar-medium-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-toolbar-medium-tl,.x-strict .x-ie7 .x-btn-default-toolbar-medium-bl{position:relative;right:0}.x-btn-default-toolbar-medium .x-btn-inner{font-size:14px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:white;padding:0 3px}.x-btn-default-toolbar-medium .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-toolbar-medium .x-btn-arrow-right{padding-right:14px}.x-btn-default-toolbar-medium .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-toolbar-medium .x-btn-glyph{font-size:24px;line-height:24px;color:white;opacity:.5}.x-ie8m .x-btn-default-toolbar-medium .x-btn-glyph{color:white}.x-btn-default-toolbar-medium-disabled{border-color:#565656;background-image:none;background-color:transparent}.x-btn-default-toolbar-medium-icon .x-btn-button,.x-btn-default-toolbar-medium-noicon .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon .x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-inner{line-height:24px}.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-medium-icon .x-btn-inner{width:24px;padding:0}.x-btn-default-toolbar-medium-icon .x-btn-icon-el{width:24px;height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-inner{line-height:24px;padding-left:28px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el{width:24px;right:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el{height:24px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-inner{line-height:24px;padding-right:28px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el{width:24px;left:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el{height:24px}.x-btn-default-toolbar-medium-icon-text-top .x-btn-inner{padding-top:28px}.x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el{height:24px;bottom:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner{padding-bottom:28px}.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el{height:24px;top:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-medium-over{border-color:#d97e27;background-image:none;background-color:#ed9200}.x-btn-default-toolbar-medium-focus{border-color:#d97e27;background-image:none;background-color:#ed9200}.x-btn-default-toolbar-medium-menu-active,.x-btn-default-toolbar-medium-pressed{border-color:#c86e19;background-image:none;background-color:#db7b1f}.x-btn-default-toolbar-medium-over .x-frame-tl,.x-btn-default-toolbar-medium-over .x-frame-bl,.x-btn-default-toolbar-medium-over .x-frame-tr,.x-btn-default-toolbar-medium-over .x-frame-br,.x-btn-default-toolbar-medium-over .x-frame-tc,.x-btn-default-toolbar-medium-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-over-corners.gif)}.x-btn-default-toolbar-medium-over .x-frame-ml,.x-btn-default-toolbar-medium-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-over-sides.gif)}.x-btn-default-toolbar-medium-over .x-frame-mc{background-color:#ed9200}.x-btn-default-toolbar-medium-focus .x-frame-tl,.x-btn-default-toolbar-medium-focus .x-frame-bl,.x-btn-default-toolbar-medium-focus .x-frame-tr,.x-btn-default-toolbar-medium-focus .x-frame-br,.x-btn-default-toolbar-medium-focus .x-frame-tc,.x-btn-default-toolbar-medium-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-focus-corners.gif)}.x-btn-default-toolbar-medium-focus .x-frame-ml,.x-btn-default-toolbar-medium-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-focus-sides.gif)}.x-btn-default-toolbar-medium-focus .x-frame-mc{background-color:#ed9200}.x-btn-default-toolbar-medium-menu-active .x-frame-tl,.x-btn-default-toolbar-medium-menu-active .x-frame-bl,.x-btn-default-toolbar-medium-menu-active .x-frame-tr,.x-btn-default-toolbar-medium-menu-active .x-frame-br,.x-btn-default-toolbar-medium-menu-active .x-frame-tc,.x-btn-default-toolbar-medium-menu-active .x-frame-bc,.x-btn-default-toolbar-medium-pressed .x-frame-tl,.x-btn-default-toolbar-medium-pressed .x-frame-bl,.x-btn-default-toolbar-medium-pressed .x-frame-tr,.x-btn-default-toolbar-medium-pressed .x-frame-br,.x-btn-default-toolbar-medium-pressed .x-frame-tc,.x-btn-default-toolbar-medium-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-ml,.x-btn-default-toolbar-medium-menu-active .x-frame-mr,.x-btn-default-toolbar-medium-pressed .x-frame-ml,.x-btn-default-toolbar-medium-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-mc,.x-btn-default-toolbar-medium-pressed .x-frame-mc{background-color:#db7b1f}.x-btn-default-toolbar-medium-disabled .x-frame-tl,.x-btn-default-toolbar-medium-disabled .x-frame-bl,.x-btn-default-toolbar-medium-disabled .x-frame-tr,.x-btn-default-toolbar-medium-disabled .x-frame-br,.x-btn-default-toolbar-medium-disabled .x-frame-tc,.x-btn-default-toolbar-medium-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-ml,.x-btn-default-toolbar-medium-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-medium{background-image:none}.x-btn-default-toolbar-medium .x-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:18px}.x-btn-default-toolbar-medium .x-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:16px}.x-btn-default-toolbar-medium-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-toolbar-medium-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-toolbar-medium-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif)"}.x-btn-default-toolbar-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif)"}.x-btn-default-toolbar-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif)"}.x-btn-default-toolbar-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)"}.x-btn-default-toolbar-large{border-color:transparent}.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:transparent}.x-btn-default-toolbar-large-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-default-toolbar-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-toolbar-large-tl{background-position:0 -6px}.x-btn-default-toolbar-large-tr{background-position:right -9px}.x-btn-default-toolbar-large-bl{background-position:0 -12px}.x-btn-default-toolbar-large-br{background-position:right -15px}.x-btn-default-toolbar-large-ml{background-position:0 top}.x-btn-default-toolbar-large-mr{background-position:right top}.x-btn-default-toolbar-large-tc{background-position:0 0}.x-btn-default-toolbar-large-bc{background-position:0 -3px}.x-btn-default-toolbar-large-tr,.x-btn-default-toolbar-large-br,.x-btn-default-toolbar-large-mr{padding-right:3px}.x-btn-default-toolbar-large-tl,.x-btn-default-toolbar-large-bl,.x-btn-default-toolbar-large-ml{padding-left:3px}.x-btn-default-toolbar-large-tc{height:3px}.x-btn-default-toolbar-large-bc{height:3px}.x-btn-default-toolbar-large-tl,.x-btn-default-toolbar-large-bl,.x-btn-default-toolbar-large-tr,.x-btn-default-toolbar-large-br,.x-btn-default-toolbar-large-tc,.x-btn-default-toolbar-large-bc,.x-btn-default-toolbar-large-ml,.x-btn-default-toolbar-large-mr{zoom:1}.x-btn-default-toolbar-large-ml,.x-btn-default-toolbar-large-mr{zoom:1}.x-btn-default-toolbar-large-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-toolbar-large-tl,.x-strict .x-ie7 .x-btn-default-toolbar-large-bl{position:relative;right:0}.x-btn-default-toolbar-large .x-btn-inner{font-size:14px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:white;padding:0 3px}.x-btn-default-toolbar-large .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-toolbar-large .x-btn-arrow-right{padding-right:14px}.x-btn-default-toolbar-large .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-toolbar-large .x-btn-glyph{font-size:32px;line-height:32px;color:white;opacity:.5}.x-ie8m .x-btn-default-toolbar-large .x-btn-glyph{color:white}.x-btn-default-toolbar-large-disabled{border-color:#565656;background-image:none;background-color:transparent}.x-btn-default-toolbar-large-icon .x-btn-button,.x-btn-default-toolbar-large-noicon .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon .x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-inner{line-height:32px}.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-large-icon .x-btn-inner{width:32px;padding:0}.x-btn-default-toolbar-large-icon .x-btn-icon-el{width:32px;height:32px}.x-btn-default-toolbar-large-icon-text-left .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon-text-left .x-btn-inner{line-height:32px;padding-left:36px}.x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el{width:32px;right:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el{height:32px}.x-btn-default-toolbar-large-icon-text-right .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon-text-right .x-btn-inner{line-height:32px;padding-right:36px}.x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el{width:32px;left:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el{height:32px}.x-btn-default-toolbar-large-icon-text-top .x-btn-inner{padding-top:36px}.x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el{height:32px;bottom:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner{padding-bottom:36px}.x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el{height:32px;top:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-large-over{border-color:#d97e27;background-image:none;background-color:#ed9200}.x-btn-default-toolbar-large-focus{border-color:#d97e27;background-image:none;background-color:#ed9200}.x-btn-default-toolbar-large-menu-active,.x-btn-default-toolbar-large-pressed{border-color:#c86e19;background-image:none;background-color:#db7b1f}.x-btn-default-toolbar-large-over .x-frame-tl,.x-btn-default-toolbar-large-over .x-frame-bl,.x-btn-default-toolbar-large-over .x-frame-tr,.x-btn-default-toolbar-large-over .x-frame-br,.x-btn-default-toolbar-large-over .x-frame-tc,.x-btn-default-toolbar-large-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-over-corners.gif)}.x-btn-default-toolbar-large-over .x-frame-ml,.x-btn-default-toolbar-large-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-over-sides.gif)}.x-btn-default-toolbar-large-over .x-frame-mc{background-color:#ed9200}.x-btn-default-toolbar-large-focus .x-frame-tl,.x-btn-default-toolbar-large-focus .x-frame-bl,.x-btn-default-toolbar-large-focus .x-frame-tr,.x-btn-default-toolbar-large-focus .x-frame-br,.x-btn-default-toolbar-large-focus .x-frame-tc,.x-btn-default-toolbar-large-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-focus-corners.gif)}.x-btn-default-toolbar-large-focus .x-frame-ml,.x-btn-default-toolbar-large-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-focus-sides.gif)}.x-btn-default-toolbar-large-focus .x-frame-mc{background-color:#ed9200}.x-btn-default-toolbar-large-menu-active .x-frame-tl,.x-btn-default-toolbar-large-menu-active .x-frame-bl,.x-btn-default-toolbar-large-menu-active .x-frame-tr,.x-btn-default-toolbar-large-menu-active .x-frame-br,.x-btn-default-toolbar-large-menu-active .x-frame-tc,.x-btn-default-toolbar-large-menu-active .x-frame-bc,.x-btn-default-toolbar-large-pressed .x-frame-tl,.x-btn-default-toolbar-large-pressed .x-frame-bl,.x-btn-default-toolbar-large-pressed .x-frame-tr,.x-btn-default-toolbar-large-pressed .x-frame-br,.x-btn-default-toolbar-large-pressed .x-frame-tc,.x-btn-default-toolbar-large-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-pressed-corners.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-ml,.x-btn-default-toolbar-large-menu-active .x-frame-mr,.x-btn-default-toolbar-large-pressed .x-frame-ml,.x-btn-default-toolbar-large-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-pressed-sides.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-mc,.x-btn-default-toolbar-large-pressed .x-frame-mc{background-color:#db7b1f}.x-btn-default-toolbar-large-disabled .x-frame-tl,.x-btn-default-toolbar-large-disabled .x-frame-bl,.x-btn-default-toolbar-large-disabled .x-frame-tr,.x-btn-default-toolbar-large-disabled .x-frame-br,.x-btn-default-toolbar-large-disabled .x-frame-tc,.x-btn-default-toolbar-large-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-disabled-corners.gif)}.x-btn-default-toolbar-large-disabled .x-frame-ml,.x-btn-default-toolbar-large-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)}.x-btn-default-toolbar-large-disabled .x-frame-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-large{background-image:none}.x-btn-default-toolbar-large .x-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:18px}.x-btn-default-toolbar-large .x-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:16px}.x-btn-default-toolbar-large-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-toolbar-large-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-toolbar-large-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif)"}.x-btn-default-toolbar-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif)"}.x-btn-default-toolbar-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif)"}.x-btn-default-toolbar-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)"}.x-btn-icon-text-left .x-btn-icon-el{background-position:left center}.x-btn-icon-text-right .x-btn-icon-el{background-position:right center}.x-btn-icon-text-top .x-btn-icon-el{background-position:center top}.x-btn-icon-text-bottom .x-btn-icon-el{background-position:center bottom}.x-btn-arrow-right{background-position:right center}.x-btn-arrow-bottom{background-position:center bottom}.x-btn-arrow{background-repeat:no-repeat}.x-btn-split{display:block;background-repeat:no-repeat}.x-btn-split-right{background-position:right center}.x-btn-split-bottom{background-position:center bottom}.x-cycle-fixed-width .x-btn-inner{text-align:inherit}.x-toolbar{font-size:14px;border-style:solid;padding:2px 0 2px 2px}.x-toolbar-item{margin:0 2px 0 0}.x-toolbar-text{margin:0 6px 0 4px;color:white;line-height:16px;font-family:tahoma,arial,verdana,sans-serif;font-size:14px;font-weight:normal}.x-toolbar-separator-horizontal{margin:0 2px 0 0;height:14px;border-style:solid;border-width:0 1px;border-left-color:#1b1b29;border-right-color:#5d5d6e}.x-toolbar-footer{background:transparent;border:0;margin:3px 0 0;padding:2px 0 2px 6px}.x-toolbar-footer .x-toolbar-item{margin:0 6px 0 0}.x-toolbar-spacer{width:2px}.x-toolbar-more-icon{background-image:url(images/toolbar/more.gif)!important;background-position:center center!important;background-repeat:no-repeat}.x-toolbar-default{border-color:#18181a;border-width:1px;background-image:none;background-color:#3a3e4f;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#404558),color-stop(100%,#3a3e4f));background-image:-webkit-linear-gradient(top,#404558,#3a3e4f);background-image:-moz-linear-gradient(top,#404558,#3a3e4f);background-image:-o-linear-gradient(top,#404558,#3a3e4f);background-image:linear-gradient(top,#404558,#3a3e4f)}.x-toolbar-default .x-box-scroller{cursor:pointer}.x-toolbar-default .x-box-scroller-disabled{filter:alpha(opacity=50);opacity:.5;cursor:default}.x-nlg .x-toolbar-default{background-image:url(images/toolbar/toolbar-default-bg.gif)!important;background-repeat:repeat-x}.x-toolbar-default:after{display:none;content:"x-slicer:bg:url(images/toolbar/toolbar-default-bg.gif), stretch:bottom"}.x-toolbar-scroll-left{background-image:url(images/toolbar/scroll-left.gif);background-position:-14px 0;width:14px;height:22px;border-style:solid;border-color:#8db2e3;border-width:0 0 1px;margin-top:0}.x-toolbar-scroll-left-hover{background-position:0 0}.x-toolbar-scroll-right{background-image:url(images/toolbar/scroll-right.gif);width:14px;height:22px;border-style:solid;border-color:#8db2e3;border-width:0 0 1px;margin-top:0}.x-toolbar-scroll-right-hover{background-position:-14px 0}.x-toolbar .x-box-menu-after{margin:0 2px 0 2px}.x-toolbar-vertical{padding:2px 2px 0 2px}.x-toolbar-vertical .x-toolbar-item{margin:0 0 2px 0}.x-toolbar-vertical .x-toolbar-text{margin:4px 0 6px 0}.x-toolbar-vertical .x-toolbar-separator-vertical{margin:0 5px 2px;border-style:solid none;border-width:1px 0;border-top-color:#1b1b29;border-bottom-color:#5d5d6e}.x-toolbar-vertical .x-box-menu-after,.x-toolbar-vertical .x-rtl.x-box-menu-after{margin:2px 0 2px 0;display:block;float:none}.x-header-draggable .x-header-body,.x-header-ghost{cursor:move}.x-header-text{white-space:nowrap}.x-panel-ghost{filter:alpha(opacity=65);opacity:.65}.x-panel-default{border-color:#18181a;padding:0}.x-panel-header-default{font-size:14px;border:1px solid #18181a}.x-panel-header-default-horizontal{padding:4px 5px 4px 5px}.x-panel-header-default-horizontal-noborder{padding:5px 6px 4px 6px}.x-panel-header-default-vertical{padding:5px 4px 5px 4px}.x-panel-header-default-vertical-noborder{padding:6px 5px 6px 4px}.x-panel-header-text-container-default{color:white;font-size:14px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;line-height:15px;padding:0 2px 1px;text-transform:none}.x-panel-body-default{background:#232d38;border-color:#18181a;color:white;font-size:15px;font-size:normal;border-width:1px;border-style:solid}.x-panel-header-default{background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-panel-header-default-vertical{background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-nlg .x-panel-header-default-top{background:url(images/panel-header/panel-header-default-top-bg.gif)}.x-nlg .x-panel-header-default-bottom{background:url(images/panel-header/panel-header-default-bottom-bg.gif)}.x-nlg .x-panel-header-default-left{background:url(images/panel-header/panel-header-default-left-bg.gif) top right}.x-nlg .x-panel-header-default-right{background:url(images/panel-header/panel-header-default-right-bg.gif) top right}.x-panel .x-panel-header-default-collapsed-border-top{border-bottom-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-right{border-left-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-bottom{border-top-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-left{border-right-width:1px!important}.x-panel-header-default-top:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-top-bg.gif), stretch:bottom"}.x-panel-header-default-bottom:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-bottom-bg.gif), stretch:bottom"}.x-panel-header-default-left:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-left-bg.gif), stretch:left"}.x-panel-header-default-right:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-right-bg.gif), stretch:left"}.x-panel-header-default-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-default-vertical .x-panel-header-text-container{background-color:#3a4155;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#3a4155)}.x-panel-header-default-top{-webkit-box-shadow:#606877 0 1px 0 0 inset;-moz-box-shadow:#606877 0 1px 0 0 inset;box-shadow:#606877 0 1px 0 0 inset}.x-panel-header-default-right{-webkit-box-shadow:#606877 -1px 0 0 0 inset;-moz-box-shadow:#606877 -1px 0 0 0 inset;box-shadow:#606877 -1px 0 0 0 inset}.x-panel-header-default-bottom{-webkit-box-shadow:#606877 0 -1px 0 0 inset;-moz-box-shadow:#606877 0 -1px 0 0 inset;box-shadow:#606877 0 -1px 0 0 inset}.x-panel-header-default-left{-webkit-box-shadow:#606877 1px 0 0 0 inset;-moz-box-shadow:#606877 1px 0 0 0 inset;box-shadow:#606877 1px 0 0 0 inset}.x-panel-header-default .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-default .x-panel-header-glyph{color:white;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-default .x-panel-header-glyph{color:#9ca0aa}.x-panel-header-default-horizontal .x-panel-header-icon-before-title{margin:0 2px 0 0}.x-panel-header-default-horizontal .x-panel-header-icon-after-title{margin:0 0 0 2px}.x-panel-header-default-vertical .x-panel-header-icon-before-title{margin:0 0 2px 0}.x-panel-header-default-vertical .x-panel-header-icon-after-title{margin:2px 0 0 0}.x-panel-header-default-horizontal .x-tool-after-title{margin:0 0 0 2px}.x-panel-header-default-horizontal .x-tool-before-title{margin:0 2px 0 0}.x-panel-header-default-vertical .x-tool-after-title{margin:2px 0 0 0}.x-panel-header-default-vertical .x-tool-before-title{margin:0 0 2px 0}.x-panel-default-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-panel-default-framed{border-color:#18181a;padding:4px}.x-panel-header-default-framed{font-size:14px;border:1px solid #18181a}.x-panel-header-default-framed-horizontal{padding:4px 5px 4px 5px}.x-panel-header-default-framed-horizontal-noborder{padding:5px 6px 4px 6px}.x-panel-header-default-framed-vertical{padding:5px 4px 5px 4px}.x-panel-header-default-framed-vertical-noborder{padding:6px 5px 6px 4px}.x-panel-header-text-container-default-framed{color:white;font-size:14px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;line-height:15px;padding:0 2px 1px;text-transform:none}.x-panel-body-default-framed{background:#3f4757;border-color:#18181a;color:white;font-size:15px;font-size:normal;border-width:0;border-style:solid}.x-panel-default-framed{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:#3f4757}.x-panel-default-framed-mc{background-color:#3f4757}.x-nbr .x-panel-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-default-framed-frameInfo{font-family:dh-3-3-3-3-1-1-1-1-4-4-4-4}.x-panel-default-framed-tl{background-position:0 -6px}.x-panel-default-framed-tr{background-position:right -9px}.x-panel-default-framed-bl{background-position:0 -12px}.x-panel-default-framed-br{background-position:right -15px}.x-panel-default-framed-ml{background-position:0 top}.x-panel-default-framed-mr{background-position:right top}.x-panel-default-framed-tc{background-position:0 0}.x-panel-default-framed-bc{background-position:0 -3px}.x-panel-default-framed-tr,.x-panel-default-framed-br,.x-panel-default-framed-mr{padding-right:3px}.x-panel-default-framed-tl,.x-panel-default-framed-bl,.x-panel-default-framed-ml{padding-left:3px}.x-panel-default-framed-tc{height:3px}.x-panel-default-framed-bc{height:3px}.x-panel-default-framed-tl,.x-panel-default-framed-bl,.x-panel-default-framed-tr,.x-panel-default-framed-br,.x-panel-default-framed-tc,.x-panel-default-framed-bc,.x-panel-default-framed-ml,.x-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-corners.gif)}.x-panel-default-framed-ml,.x-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-sides.gif);background-repeat:repeat-y}.x-panel-default-framed-mc{padding:2px 2px 2px 2px}.x-strict .x-ie7 .x-panel-default-framed-tl,.x-strict .x-ie7 .x-panel-default-framed-bl{position:relative;right:0}.x-panel-default-framed:after{display:none;content:"x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"}.x-panel-header-default-framed-top{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:4px 5px 4px 5px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-panel-header-default-framed-top-mc{background-image:url(images/panel-header/panel-header-default-framed-top-fbg.gif);background-position:0 top;background-color:#3a4155}.x-nlg .x-panel-header-default-framed-top{background-image:url(images/panel-header/panel-header-default-framed-top-bg.gif);background-position:0 top}.x-nbr .x-panel-header-default-framed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-top-frameInfo{font-family:dh-3-3-0-0-1-1-0-1-4-5-4-5}.x-panel-header-default-framed-top-tl{background-position:0 -6px}.x-panel-header-default-framed-top-tr{background-position:right -9px}.x-panel-header-default-framed-top-bl{background-position:0 -12px}.x-panel-header-default-framed-top-br{background-position:right -15px}.x-panel-header-default-framed-top-ml{background-position:0 top}.x-panel-header-default-framed-top-mr{background-position:right top}.x-panel-header-default-framed-top-tc{background-position:0 0}.x-panel-header-default-framed-top-bc{background-position:0 -3px}.x-panel-header-default-framed-top-tr,.x-panel-header-default-framed-top-br,.x-panel-header-default-framed-top-mr{padding-right:3px}.x-panel-header-default-framed-top-tl,.x-panel-header-default-framed-top-bl,.x-panel-header-default-framed-top-ml{padding-left:3px}.x-panel-header-default-framed-top-tc{height:3px}.x-panel-header-default-framed-top-bc{height:0}.x-panel-header-default-framed-top-tl,.x-panel-header-default-framed-top-bl,.x-panel-header-default-framed-top-tr,.x-panel-header-default-framed-top-br,.x-panel-header-default-framed-top-tc,.x-panel-header-default-framed-top-bc,.x-panel-header-default-framed-top-ml,.x-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-corners.gif)}.x-panel-header-default-framed-top-ml,.x-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-sides.gif)}.x-panel-header-default-framed-top-mc{padding:2px 3px 4px 3px}.x-strict .x-ie7 .x-panel-header-default-framed-top-tl,.x-strict .x-ie7 .x-panel-header-default-framed-top-bl{position:relative;right:0}.x-panel-header-default-framed-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"}.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:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 4px 5px 4px;border-width:1px 1px 1px 0;border-style:solid;background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-panel-header-default-framed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-right-fbg.gif);background-position:right 0;background-color:#3a4155}.x-nlg .x-panel-header-default-framed-right{background-image:url(images/panel-header/panel-header-default-framed-right-bg.gif);background-position:right 0}.x-nbr .x-panel-header-default-framed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-right-frameInfo{font-family:dv-0-3-3-0-1-1-1-0-5-4-5-4}.x-panel-header-default-framed-right-tl{background-position:0 0}.x-panel-header-default-framed-right-tr{background-position:0 -3px}.x-panel-header-default-framed-right-bl{background-position:0 -6px}.x-panel-header-default-framed-right-br{background-position:0 -9px}.x-panel-header-default-framed-right-ml{background-position:-3px 0}.x-panel-header-default-framed-right-mr{background-position:right 0}.x-panel-header-default-framed-right-tc{background-position:right 0}.x-panel-header-default-framed-right-bc{background-position:right -3px}.x-panel-header-default-framed-right-tr,.x-panel-header-default-framed-right-br,.x-panel-header-default-framed-right-mr{padding-right:3px}.x-panel-header-default-framed-right-tl,.x-panel-header-default-framed-right-bl,.x-panel-header-default-framed-right-ml{padding-left:0}.x-panel-header-default-framed-right-tc{height:3px}.x-panel-header-default-framed-right-bc{height:3px}.x-panel-header-default-framed-right-tl,.x-panel-header-default-framed-right-bl,.x-panel-header-default-framed-right-tr,.x-panel-header-default-framed-right-br,.x-panel-header-default-framed-right-tc,.x-panel-header-default-framed-right-bc,.x-panel-header-default-framed-right-ml,.x-panel-header-default-framed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-corners.gif)}.x-panel-header-default-framed-right-tc,.x-panel-header-default-framed-right-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-sides.gif);background-repeat:repeat-x}.x-panel-header-default-framed-right-mc{padding:3px 2px 3px 4px}.x-strict .x-ie7 .x-panel-header-default-framed-right-tl,.x-strict .x-ie7 .x-panel-header-default-framed-right-bl{position:relative;right:0}.x-panel-header-default-framed-right:after{display:none;content:"x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-right-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-right-bg.gif), corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif)"}.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:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;padding:4px 5px 4px 5px;border-width:0 1px 1px 1px;border-style:solid;background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-panel-header-default-framed-bottom-mc{background-image:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif);background-position:0 bottom;background-color:#3a4155}.x-nlg .x-panel-header-default-framed-bottom{background-image:url(images/panel-header/panel-header-default-framed-bottom-bg.gif);background-position:0 bottom}.x-nbr .x-panel-header-default-framed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-bottom-frameInfo{font-family:dh-0-0-3-3-0-1-1-1-4-5-4-5}.x-panel-header-default-framed-bottom-tl{background-position:0 -6px}.x-panel-header-default-framed-bottom-tr{background-position:right -9px}.x-panel-header-default-framed-bottom-bl{background-position:0 -12px}.x-panel-header-default-framed-bottom-br{background-position:right -15px}.x-panel-header-default-framed-bottom-ml{background-position:0 bottom}.x-panel-header-default-framed-bottom-mr{background-position:right bottom}.x-panel-header-default-framed-bottom-tc{background-position:0 0}.x-panel-header-default-framed-bottom-bc{background-position:0 -3px}.x-panel-header-default-framed-bottom-tr,.x-panel-header-default-framed-bottom-br,.x-panel-header-default-framed-bottom-mr{padding-right:3px}.x-panel-header-default-framed-bottom-tl,.x-panel-header-default-framed-bottom-bl,.x-panel-header-default-framed-bottom-ml{padding-left:3px}.x-panel-header-default-framed-bottom-tc{height:0}.x-panel-header-default-framed-bottom-bc{height:3px}.x-panel-header-default-framed-bottom-tl,.x-panel-header-default-framed-bottom-bl,.x-panel-header-default-framed-bottom-tr,.x-panel-header-default-framed-bottom-br,.x-panel-header-default-framed-bottom-tc,.x-panel-header-default-framed-bottom-bc,.x-panel-header-default-framed-bottom-ml,.x-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-corners.gif)}.x-panel-header-default-framed-bottom-ml,.x-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)}.x-panel-header-default-framed-bottom-mc{padding:4px 3px 2px 3px}.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl,.x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl{position:relative;right:0}.x-panel-header-default-framed-bottom:after{display:none;content:"x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"}.x-panel-header-default-framed-left{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;padding:5px 4px 5px 4px;border-width:1px 0 1px 1px;border-style:solid;background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-panel-header-default-framed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-left-fbg.gif);background-position:left 0;background-color:#3a4155}.x-nlg .x-panel-header-default-framed-left{background-image:url(images/panel-header/panel-header-default-framed-left-bg.gif);background-position:left 0}.x-nbr .x-panel-header-default-framed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-left-frameInfo{font-family:dv-3-0-0-3-1-0-1-1-5-4-5-4}.x-panel-header-default-framed-left-tl{background-position:0 0}.x-panel-header-default-framed-left-tr{background-position:0 -3px}.x-panel-header-default-framed-left-bl{background-position:0 -6px}.x-panel-header-default-framed-left-br{background-position:0 -9px}.x-panel-header-default-framed-left-ml{background-position:-3px 0}.x-panel-header-default-framed-left-mr{background-position:right 0}.x-panel-header-default-framed-left-tc{background-position:left 0}.x-panel-header-default-framed-left-bc{background-position:left -3px}.x-panel-header-default-framed-left-tr,.x-panel-header-default-framed-left-br,.x-panel-header-default-framed-left-mr{padding-right:0}.x-panel-header-default-framed-left-tl,.x-panel-header-default-framed-left-bl,.x-panel-header-default-framed-left-ml{padding-left:3px}.x-panel-header-default-framed-left-tc{height:3px}.x-panel-header-default-framed-left-bc{height:3px}.x-panel-header-default-framed-left-tl,.x-panel-header-default-framed-left-bl,.x-panel-header-default-framed-left-tr,.x-panel-header-default-framed-left-br,.x-panel-header-default-framed-left-tc,.x-panel-header-default-framed-left-bc,.x-panel-header-default-framed-left-ml,.x-panel-header-default-framed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-corners.gif)}.x-panel-header-default-framed-left-tc,.x-panel-header-default-framed-left-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-sides.gif);background-repeat:repeat-x}.x-panel-header-default-framed-left-mc{padding:3px 4px 3px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-left-tl,.x-strict .x-ie7 .x-panel-header-default-framed-left-bl{position:relative;right:0}.x-panel-header-default-framed-left:after{display:none;content:"x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-left-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-left-bg.gif), corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif)"}.x-panel-header-default-framed-collapsed-top{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-panel-header-default-framed-collapsed-top-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif);background-position:0 top;background-color:#3a4155}.x-nlg .x-panel-header-default-framed-collapsed-top{background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif);background-position:0 top}.x-nbr .x-panel-header-default-framed-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-top-frameInfo{font-family:dh-3-3-3-3-1-1-1-1-4-5-4-5}.x-panel-header-default-framed-collapsed-top-tl{background-position:0 -6px}.x-panel-header-default-framed-collapsed-top-tr{background-position:right -9px}.x-panel-header-default-framed-collapsed-top-bl{background-position:0 -12px}.x-panel-header-default-framed-collapsed-top-br{background-position:right -15px}.x-panel-header-default-framed-collapsed-top-ml{background-position:0 top}.x-panel-header-default-framed-collapsed-top-mr{background-position:right top}.x-panel-header-default-framed-collapsed-top-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-top-bc{background-position:0 -3px}.x-panel-header-default-framed-collapsed-top-tr,.x-panel-header-default-framed-collapsed-top-br,.x-panel-header-default-framed-collapsed-top-mr{padding-right:3px}.x-panel-header-default-framed-collapsed-top-tl,.x-panel-header-default-framed-collapsed-top-bl,.x-panel-header-default-framed-collapsed-top-ml{padding-left:3px}.x-panel-header-default-framed-collapsed-top-tc{height:3px}.x-panel-header-default-framed-collapsed-top-bc{height:3px}.x-panel-header-default-framed-collapsed-top-tl,.x-panel-header-default-framed-collapsed-top-bl,.x-panel-header-default-framed-collapsed-top-tr,.x-panel-header-default-framed-collapsed-top-br,.x-panel-header-default-framed-collapsed-top-tc,.x-panel-header-default-framed-collapsed-top-bc,.x-panel-header-default-framed-collapsed-top-ml,.x-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif)}.x-panel-header-default-framed-collapsed-top-ml,.x-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)}.x-panel-header-default-framed-collapsed-top-mc{padding:2px 3px 2px 3px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"}.x-panel-header-default-framed-collapsed-right{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-panel-header-default-framed-collapsed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif);background-position:right 0;background-color:#3a4155}.x-nlg .x-panel-header-default-framed-collapsed-right{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif);background-position:right 0}.x-nbr .x-panel-header-default-framed-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-right-frameInfo{font-family:dv-3-3-3-3-1-1-1-1-5-4-5-4}.x-panel-header-default-framed-collapsed-right-tl{background-position:0 0}.x-panel-header-default-framed-collapsed-right-tr{background-position:0 -3px}.x-panel-header-default-framed-collapsed-right-bl{background-position:0 -6px}.x-panel-header-default-framed-collapsed-right-br{background-position:0 -9px}.x-panel-header-default-framed-collapsed-right-ml{background-position:-3px 0}.x-panel-header-default-framed-collapsed-right-mr{background-position:right 0}.x-panel-header-default-framed-collapsed-right-tc{background-position:right 0}.x-panel-header-default-framed-collapsed-right-bc{background-position:right -3px}.x-panel-header-default-framed-collapsed-right-tr,.x-panel-header-default-framed-collapsed-right-br,.x-panel-header-default-framed-collapsed-right-mr{padding-right:3px}.x-panel-header-default-framed-collapsed-right-tl,.x-panel-header-default-framed-collapsed-right-bl,.x-panel-header-default-framed-collapsed-right-ml{padding-left:3px}.x-panel-header-default-framed-collapsed-right-tc{height:3px}.x-panel-header-default-framed-collapsed-right-bc{height:3px}.x-panel-header-default-framed-collapsed-right-tl,.x-panel-header-default-framed-collapsed-right-bl,.x-panel-header-default-framed-collapsed-right-tr,.x-panel-header-default-framed-collapsed-right-br,.x-panel-header-default-framed-collapsed-right-tc,.x-panel-header-default-framed-collapsed-right-bc,.x-panel-header-default-framed-collapsed-right-ml,.x-panel-header-default-framed-collapsed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif)}.x-panel-header-default-framed-collapsed-right-tc,.x-panel-header-default-framed-collapsed-right-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif);background-repeat:repeat-x}.x-panel-header-default-framed-collapsed-right-mc{padding:3px 2px 3px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-right:after{display:none;content:"x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif)"}.x-panel-header-default-framed-collapsed-bottom{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(top,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-panel-header-default-framed-collapsed-bottom-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif);background-position:0 bottom;background-color:#3a4155}.x-nlg .x-panel-header-default-framed-collapsed-bottom{background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif);background-position:0 bottom}.x-nbr .x-panel-header-default-framed-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-bottom-frameInfo{font-family:dh-3-3-3-3-1-1-1-1-4-5-4-5}.x-panel-header-default-framed-collapsed-bottom-tl{background-position:0 -6px}.x-panel-header-default-framed-collapsed-bottom-tr{background-position:right -9px}.x-panel-header-default-framed-collapsed-bottom-bl{background-position:0 -12px}.x-panel-header-default-framed-collapsed-bottom-br{background-position:right -15px}.x-panel-header-default-framed-collapsed-bottom-ml{background-position:0 bottom}.x-panel-header-default-framed-collapsed-bottom-mr{background-position:right bottom}.x-panel-header-default-framed-collapsed-bottom-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-bottom-bc{background-position:0 -3px}.x-panel-header-default-framed-collapsed-bottom-tr,.x-panel-header-default-framed-collapsed-bottom-br,.x-panel-header-default-framed-collapsed-bottom-mr{padding-right:3px}.x-panel-header-default-framed-collapsed-bottom-tl,.x-panel-header-default-framed-collapsed-bottom-bl,.x-panel-header-default-framed-collapsed-bottom-ml{padding-left:3px}.x-panel-header-default-framed-collapsed-bottom-tc{height:3px}.x-panel-header-default-framed-collapsed-bottom-bc{height:3px}.x-panel-header-default-framed-collapsed-bottom-tl,.x-panel-header-default-framed-collapsed-bottom-bl,.x-panel-header-default-framed-collapsed-bottom-tr,.x-panel-header-default-framed-collapsed-bottom-br,.x-panel-header-default-framed-collapsed-bottom-tc,.x-panel-header-default-framed-collapsed-bottom-bc,.x-panel-header-default-framed-collapsed-bottom-ml,.x-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif)}.x-panel-header-default-framed-collapsed-bottom-ml,.x-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)}.x-panel-header-default-framed-collapsed-bottom-mc{padding:2px 3px 2px 3px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-bottom:after{display:none;content:"x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"}.x-panel-header-default-framed-collapsed-left{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-image:none;background-color:#3a4155;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#434a5e),color-stop(45%,#3c4255),color-stop(46%,#2a2f3e),color-stop(50%,#2a2f3e),color-stop(51%,#313646),color-stop(100%,#3a4155));background-image:-webkit-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-moz-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:-o-linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155);background-image:linear-gradient(right,#434a5e,#3c4255 45%,#2a2f3e 46%,#2a2f3e 50%,#313646 51%,#3a4155)}.x-panel-header-default-framed-collapsed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif);background-position:left 0;background-color:#3a4155}.x-nlg .x-panel-header-default-framed-collapsed-left{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif);background-position:left 0}.x-nbr .x-panel-header-default-framed-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-left-frameInfo{font-family:dv-3-3-3-3-1-1-1-1-5-4-5-4}.x-panel-header-default-framed-collapsed-left-tl{background-position:0 0}.x-panel-header-default-framed-collapsed-left-tr{background-position:0 -3px}.x-panel-header-default-framed-collapsed-left-bl{background-position:0 -6px}.x-panel-header-default-framed-collapsed-left-br{background-position:0 -9px}.x-panel-header-default-framed-collapsed-left-ml{background-position:-3px 0}.x-panel-header-default-framed-collapsed-left-mr{background-position:right 0}.x-panel-header-default-framed-collapsed-left-tc{background-position:left 0}.x-panel-header-default-framed-collapsed-left-bc{background-position:left -3px}.x-panel-header-default-framed-collapsed-left-tr,.x-panel-header-default-framed-collapsed-left-br,.x-panel-header-default-framed-collapsed-left-mr{padding-right:3px}.x-panel-header-default-framed-collapsed-left-tl,.x-panel-header-default-framed-collapsed-left-bl,.x-panel-header-default-framed-collapsed-left-ml{padding-left:3px}.x-panel-header-default-framed-collapsed-left-tc{height:3px}.x-panel-header-default-framed-collapsed-left-bc{height:3px}.x-panel-header-default-framed-collapsed-left-tl,.x-panel-header-default-framed-collapsed-left-bl,.x-panel-header-default-framed-collapsed-left-tr,.x-panel-header-default-framed-collapsed-left-br,.x-panel-header-default-framed-collapsed-left-tc,.x-panel-header-default-framed-collapsed-left-bc,.x-panel-header-default-framed-collapsed-left-ml,.x-panel-header-default-framed-collapsed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif)}.x-panel-header-default-framed-collapsed-left-tc,.x-panel-header-default-framed-collapsed-left-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif);background-repeat:repeat-x}.x-panel-header-default-framed-collapsed-left-mc{padding:3px 2px 3px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-left:after{display:none;content:"x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif)"}.x-panel .x-panel-header-default-framed-top{border-bottom-width:1px!important}.x-panel .x-panel-header-default-framed-right{border-left-width:1px!important}.x-panel .x-panel-header-default-framed-bottom{border-top-width:1px!important}.x-panel .x-panel-header-default-framed-left{border-right-width:1px!important}.x-nbr .x-panel-header-default-framed-collapsed-top{border-bottom-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-right{border-left-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-bottom{border-top-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-left{border-right-width:0!important}.x-panel-header-default-framed-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-default-framed-vertical .x-panel-header-text-container{background-color:#3a4155;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#3a4155)}.x-panel-header-default-framed-top{-webkit-box-shadow:#606877 0 1px 0 0 inset,#606877 -1px 0 0 0 inset,#606877 1px 0 0 0 inset;-moz-box-shadow:#606877 0 1px 0 0 inset,#606877 -1px 0 0 0 inset,#606877 1px 0 0 0 inset;box-shadow:#606877 0 1px 0 0 inset,#606877 -1px 0 0 0 inset,#606877 1px 0 0 0 inset}.x-panel-header-default-framed-right{-webkit-box-shadow:#606877 0 1px 0 0 inset,#606877 0 -1px 0 0 inset,#606877 -1px 0 0 0 inset;-moz-box-shadow:#606877 0 1px 0 0 inset,#606877 0 -1px 0 0 inset,#606877 -1px 0 0 0 inset;box-shadow:#606877 0 1px 0 0 inset,#606877 0 -1px 0 0 inset,#606877 -1px 0 0 0 inset}.x-panel-header-default-framed-bottom{-webkit-box-shadow:#606877 0 -1px 0 0 inset,#606877 -1px 0 0 0 inset,#606877 1px 0 0 0 inset;-moz-box-shadow:#606877 0 -1px 0 0 inset,#606877 -1px 0 0 0 inset,#606877 1px 0 0 0 inset;box-shadow:#606877 0 -1px 0 0 inset,#606877 -1px 0 0 0 inset,#606877 1px 0 0 0 inset}.x-panel-header-default-framed-left{-webkit-box-shadow:#606877 0 1px 0 0 inset,#606877 0 -1px 0 0 inset,#606877 1px 0 0 0 inset;-moz-box-shadow:#606877 0 1px 0 0 inset,#606877 0 -1px 0 0 inset,#606877 1px 0 0 0 inset;box-shadow:#606877 0 1px 0 0 inset,#606877 0 -1px 0 0 inset,#606877 1px 0 0 0 inset}.x-panel-header-default-framed .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-default-framed .x-panel-header-glyph{color:white;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-default-framed .x-panel-header-glyph{color:#9ca0aa}.x-panel-header-default-framed-horizontal .x-panel-header-icon-before-title{margin:0 2px 0 0}.x-panel-header-default-framed-horizontal .x-panel-header-icon-after-title{margin:0 0 0 2px}.x-panel-header-default-framed-vertical .x-panel-header-icon-before-title{margin:0 0 2px 0}.x-panel-header-default-framed-vertical .x-panel-header-icon-after-title{margin:2px 0 0 0}.x-panel-header-default-framed-horizontal .x-tool-after-title{margin:0 0 0 2px}.x-panel-header-default-framed-horizontal .x-tool-before-title{margin:0 2px 0 0}.x-panel-header-default-framed-vertical .x-tool-after-title{margin:2px 0 0 0}.x-panel-header-default-framed-vertical .x-tool-before-title{margin:0 0 2px 0}.x-panel-default-framed-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-tip-anchor{position:absolute;overflow:hidden;height:10px;width:10px;border-style:solid;border-width:5px;border-color:#122d5e;zoom:1}.x-content-box .x-tip-anchor{height:0;width:0}.x-tip-anchor-top{border-top-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-bottom{border-bottom-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-bottom-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-left{border-top-color:transparent;border-bottom-color:transparent;border-left-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-left-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-right{border-top-color:transparent;border-bottom-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.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:#5e6986}.x-tip-default-mc{background-color:#5e6986}.x-nbr .x-tip-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tip-default-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-tip-default-tl{background-position:0 -6px}.x-tip-default-tr{background-position:right -9px}.x-tip-default-bl{background-position:0 -12px}.x-tip-default-br{background-position:right -15px}.x-tip-default-ml{background-position:0 top}.x-tip-default-mr{background-position:right top}.x-tip-default-tc{background-position:0 0}.x-tip-default-bc{background-position:0 -3px}.x-tip-default-tr,.x-tip-default-br,.x-tip-default-mr{padding-right:3px}.x-tip-default-tl,.x-tip-default-bl,.x-tip-default-ml{padding-left:3px}.x-tip-default-tc{height:3px}.x-tip-default-bc{height:3px}.x-tip-default-tl,.x-tip-default-bl,.x-tip-default-tr,.x-tip-default-br,.x-tip-default-tc,.x-tip-default-bc,.x-tip-default-ml,.x-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-corners.gif)}.x-tip-default-ml,.x-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-sides.gif);background-repeat:repeat-y}.x-tip-default-mc{padding:0}.x-strict .x-ie7 .x-tip-default-tl,.x-strict .x-ie7 .x-tip-default-bl{position:relative;right:0}.x-tip-default:after{display:none;content:"x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"}.x-tip-default{border-color:#122d5e}.x-tip-default .x-tool-img{background-color:#5e6986}.x-tip-header-default .x-tool-after-title{margin:0 0 0 6px}.x-tip-header-default .x-tool-before-title{margin:0 6px 0 0}.x-tip-header-body-default{padding:3px 3px 0 3px}.x-tip-header-text-container-default{color:black;font-size:14px;font-weight:bold}.x-tip-body-default{padding:3px;color:black;font-size:14px;font-weight:normal}.x-tip-body-default a{color:black}.x-tip-form-invalid{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:white}.x-tip-form-invalid-mc{background-color:white}.x-nbr .x-tip-form-invalid{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tip-form-invalid-frameInfo{font-family:th-5-5-5-5-1-1-1-1-4-4-4-4}.x-tip-form-invalid-tl{background-position:0 -10px}.x-tip-form-invalid-tr{background-position:right -15px}.x-tip-form-invalid-bl{background-position:0 -20px}.x-tip-form-invalid-br{background-position:right -25px}.x-tip-form-invalid-ml{background-position:0 top}.x-tip-form-invalid-mr{background-position:right top}.x-tip-form-invalid-tc{background-position:0 0}.x-tip-form-invalid-bc{background-position:0 -5px}.x-tip-form-invalid-tr,.x-tip-form-invalid-br,.x-tip-form-invalid-mr{padding-right:5px}.x-tip-form-invalid-tl,.x-tip-form-invalid-bl,.x-tip-form-invalid-ml{padding-left:5px}.x-tip-form-invalid-tc{height:5px}.x-tip-form-invalid-bc{height:5px}.x-tip-form-invalid-tl,.x-tip-form-invalid-bl,.x-tip-form-invalid-tr,.x-tip-form-invalid-br,.x-tip-form-invalid-tc,.x-tip-form-invalid-bc,.x-tip-form-invalid-ml,.x-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-corners.gif)}.x-tip-form-invalid-ml,.x-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-sides.gif);background-repeat:repeat-y}.x-tip-form-invalid-mc{padding:0}.x-strict .x-ie7 .x-tip-form-invalid-tl,.x-strict .x-ie7 .x-tip-form-invalid-bl{position:relative;right:0}.x-tip-form-invalid:after{display:none;content:"x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"}.x-tip-form-invalid{border-color:#a1311f;-webkit-box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset;-moz-box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset;box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset}.x-tip-form-invalid .x-tool-img{background-color:white}.x-tip-header-form-invalid .x-tool-after-title{margin:0 0 0 6px}.x-tip-header-form-invalid .x-tool-before-title{margin:0 6px 0 0}.x-tip-header-body-form-invalid{padding:3px 3px 0 3px}.x-tip-header-text-container-form-invalid{color:black;font-size:14px;font-weight:bold}.x-tip-body-form-invalid{padding:3px 3px 3px 22px;color:black;font-size:14px;font-weight:normal}.x-tip-body-form-invalid a{color:black}.x-tip-body-form-invalid{background:1px 1px no-repeat;background-image:url(images/form/exclamation.gif)}.x-tip-body-form-invalid li{margin-bottom:4px}.x-tip-body-form-invalid li.last{margin-bottom:0}.x-btn-group-default{border-color:#606068;-webkit-box-shadow:#757478 0 1px 0 0 inset,#757478 0 -1px 0 0 inset,#757478 -1px 0 0 0 inset,#757478 1px 0 0 0 inset;-moz-box-shadow:#757478 0 1px 0 0 inset,#757478 0 -1px 0 0 inset,#757478 -1px 0 0 0 inset,#757478 1px 0 0 0 inset;box-shadow:#757478 0 1px 0 0 inset,#757478 0 -1px 0 0 inset,#757478 -1px 0 0 0 inset,#757478 1px 0 0 0 inset}.x-btn-group-header-default{margin:2px 2px 0 2px;padding:1px 0;line-height:15px;background:#676772;-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}.x-btn-group-header-default .x-tool-img{background-color:#676772}.x-btn-group-header-text-container-default{font:normal 14px tahoma,arial,verdana,sans-serif;line-height:15px;color:#d2d2d2}.x-btn-group-body-default{padding:0 1px}.x-btn-group-body-default .x-table-layout{border-spacing:0}.x-btn-group-default-framed{-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:1px 1px 1px 1px;border-width:1px;border-style:solid;background-color:#4b515f}.x-btn-group-default-framed-mc{background-color:#4b515f}.x-nbr .x-btn-group-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-group-default-framed-frameInfo{font-family:dh-2-2-2-2-1-1-1-1-1-1-1-1}.x-btn-group-default-framed-tl{background-position:0 -4px}.x-btn-group-default-framed-tr{background-position:right -6px}.x-btn-group-default-framed-bl{background-position:0 -8px}.x-btn-group-default-framed-br{background-position:right -10px}.x-btn-group-default-framed-ml{background-position:0 top}.x-btn-group-default-framed-mr{background-position:right top}.x-btn-group-default-framed-tc{background-position:0 0}.x-btn-group-default-framed-bc{background-position:0 -2px}.x-btn-group-default-framed-tr,.x-btn-group-default-framed-br,.x-btn-group-default-framed-mr{padding-right:2px}.x-btn-group-default-framed-tl,.x-btn-group-default-framed-bl,.x-btn-group-default-framed-ml{padding-left:2px}.x-btn-group-default-framed-tc{height:2px}.x-btn-group-default-framed-bc{height:2px}.x-btn-group-default-framed-tl,.x-btn-group-default-framed-bl,.x-btn-group-default-framed-tr,.x-btn-group-default-framed-br,.x-btn-group-default-framed-tc,.x-btn-group-default-framed-bc,.x-btn-group-default-framed-ml,.x-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-corners.gif)}.x-btn-group-default-framed-ml,.x-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-sides.gif);background-repeat:repeat-y}.x-btn-group-default-framed-mc{padding:0}.x-strict .x-ie7 .x-btn-group-default-framed-tl,.x-strict .x-ie7 .x-btn-group-default-framed-bl{position:relative;right:0}.x-btn-group-default-framed:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"}.x-btn-group-default-framed-notitle{-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:1px 1px 1px 1px;border-width:1px;border-style:solid;background-color:#4b515f}.x-btn-group-default-framed-notitle-mc{background-color:#4b515f}.x-nbr .x-btn-group-default-framed-notitle{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-group-default-framed-notitle-frameInfo{font-family:dh-2-2-2-2-1-1-1-1-1-1-1-1}.x-btn-group-default-framed-notitle-tl{background-position:0 -4px}.x-btn-group-default-framed-notitle-tr{background-position:right -6px}.x-btn-group-default-framed-notitle-bl{background-position:0 -8px}.x-btn-group-default-framed-notitle-br{background-position:right -10px}.x-btn-group-default-framed-notitle-ml{background-position:0 top}.x-btn-group-default-framed-notitle-mr{background-position:right top}.x-btn-group-default-framed-notitle-tc{background-position:0 0}.x-btn-group-default-framed-notitle-bc{background-position:0 -2px}.x-btn-group-default-framed-notitle-tr,.x-btn-group-default-framed-notitle-br,.x-btn-group-default-framed-notitle-mr{padding-right:2px}.x-btn-group-default-framed-notitle-tl,.x-btn-group-default-framed-notitle-bl,.x-btn-group-default-framed-notitle-ml{padding-left:2px}.x-btn-group-default-framed-notitle-tc{height:2px}.x-btn-group-default-framed-notitle-bc{height:2px}.x-btn-group-default-framed-notitle-tl,.x-btn-group-default-framed-notitle-bl,.x-btn-group-default-framed-notitle-tr,.x-btn-group-default-framed-notitle-br,.x-btn-group-default-framed-notitle-tc,.x-btn-group-default-framed-notitle-bc,.x-btn-group-default-framed-notitle-ml,.x-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-corners.gif)}.x-btn-group-default-framed-notitle-ml,.x-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-sides.gif);background-repeat:repeat-y}.x-btn-group-default-framed-notitle-mc{padding:0}.x-strict .x-ie7 .x-btn-group-default-framed-notitle-tl,.x-strict .x-ie7 .x-btn-group-default-framed-notitle-bl{position:relative;right:0}.x-btn-group-default-framed-notitle:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"}.x-btn-group-default-framed{border-color:#606068;-webkit-box-shadow:#757478 0 1px 0 0 inset,#757478 0 -1px 0 0 inset,#757478 -1px 0 0 0 inset,#757478 1px 0 0 0 inset;-moz-box-shadow:#757478 0 1px 0 0 inset,#757478 0 -1px 0 0 inset,#757478 -1px 0 0 0 inset,#757478 1px 0 0 0 inset;box-shadow:#757478 0 1px 0 0 inset,#757478 0 -1px 0 0 inset,#757478 -1px 0 0 0 inset,#757478 1px 0 0 0 inset}.x-btn-group-header-default-framed{margin:2px 2px 0 2px;padding:1px 0;line-height:15px;background:#676772;-moz-border-radius-topleft:2px;-webkit-border-top-left-radius:2px;border-top-left-radius:2px;-moz-border-radius-topright:2px;-webkit-border-top-right-radius:2px;border-top-right-radius:2px}.x-btn-group-header-default-framed .x-tool-img{background-color:#676772}.x-btn-group-header-text-container-default-framed{font:normal 14px tahoma,arial,verdana,sans-serif;line-height:15px;color:#d2d2d2}.x-btn-group-body-default-framed{padding:0 1px 0 1px}.x-btn-group-body-default-framed .x-table-layout{border-spacing:0}.x-window-ghost{filter:alpha(opacity=65);opacity:.65}.x-window-default{border-color:#282828;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;-webkit-box-shadow:#414b5c 0 1px 0 0 inset,#414b5c 0 -1px 0 0 inset,#414b5c -1px 0 0 0 inset,#414b5c 1px 0 0 0 inset;-moz-box-shadow:#414b5c 0 1px 0 0 inset,#414b5c 0 -1px 0 0 inset,#414b5c -1px 0 0 0 inset,#414b5c 1px 0 0 0 inset;box-shadow:#414b5c 0 1px 0 0 inset,#414b5c 0 -1px 0 0 inset,#414b5c -1px 0 0 0 inset,#414b5c 1px 0 0 0 inset}.x-window-default{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:#3f4757}.x-window-default-mc{background-color:#3f4757}.x-nbr .x-window-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-default-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-4-4-4}.x-window-default-tl{background-position:0 -10px}.x-window-default-tr{background-position:right -15px}.x-window-default-bl{background-position:0 -20px}.x-window-default-br{background-position:right -25px}.x-window-default-ml{background-position:0 top}.x-window-default-mr{background-position:right top}.x-window-default-tc{background-position:0 0}.x-window-default-bc{background-position:0 -5px}.x-window-default-tr,.x-window-default-br,.x-window-default-mr{padding-right:5px}.x-window-default-tl,.x-window-default-bl,.x-window-default-ml{padding-left:5px}.x-window-default-tc{height:5px}.x-window-default-bc{height:5px}.x-window-default-tl,.x-window-default-bl,.x-window-default-tr,.x-window-default-br,.x-window-default-tc,.x-window-default-bc,.x-window-default-ml,.x-window-default-mr{zoom:1;background-image:url(images/window/window-default-corners.gif)}.x-window-default-ml,.x-window-default-mr{zoom:1;background-image:url(images/window/window-default-sides.gif);background-repeat:repeat-y}.x-window-default-mc{padding:0}.x-strict .x-ie7 .x-window-default-tl,.x-strict .x-ie7 .x-window-default-bl{position:relative;right:0}.x-window-default:after{display:none;content:"x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"}.x-window-body-default{border-color:#18181a;border-width:1px;border-style:solid;background:#1f2833;color:white}.x-window-header-default{font-size:14px;border-color:#282828;zoom:1;background-color:#3f4757}.x-window-header-default .x-tool-img{background-color:#3f4757}.x-window-header-default-vertical .x-window-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-window-header-default-vertical .x-window-header-text-container{background-color:#3f4757;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#3f4757)}.x-window-header-text-container-default{color:white;font-weight:bold;line-height:15px;font-family:tahoma,arial,verdana,sans-serif;font-size:14px;padding:0 2px 1px;text-transform:none}.x-window-header-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:4px 5px 0 5px;border-width:1px 1px 0 1px;border-style:solid;background-color:#3f4757}.x-window-header-default-top-mc{background-color:#3f4757}.x-nbr .x-window-header-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-top-frameInfo{font-family:dh-5-5-0-0-1-1-0-1-4-5-0-5}.x-window-header-default-top-tl{background-position:0 -10px}.x-window-header-default-top-tr{background-position:right -15px}.x-window-header-default-top-bl{background-position:0 -20px}.x-window-header-default-top-br{background-position:right -25px}.x-window-header-default-top-ml{background-position:0 top}.x-window-header-default-top-mr{background-position:right top}.x-window-header-default-top-tc{background-position:0 0}.x-window-header-default-top-bc{background-position:0 -5px}.x-window-header-default-top-tr,.x-window-header-default-top-br,.x-window-header-default-top-mr{padding-right:5px}.x-window-header-default-top-tl,.x-window-header-default-top-bl,.x-window-header-default-top-ml{padding-left:5px}.x-window-header-default-top-tc{height:5px}.x-window-header-default-top-bc{height:0}.x-window-header-default-top-tl,.x-window-header-default-top-bl,.x-window-header-default-top-tr,.x-window-header-default-top-br,.x-window-header-default-top-tc,.x-window-header-default-top-bc,.x-window-header-default-top-ml,.x-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-corners.gif)}.x-window-header-default-top-ml,.x-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-sides.gif);background-repeat:repeat-y}.x-window-header-default-top-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-top-tl,.x-strict .x-ie7 .x-window-header-default-top-bl{position:relative;right:0}.x-window-header-default-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"}.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:5px;-webkit-border-top-right-radius:5px;border-top-right-radius:5px;-moz-border-radius-bottomright:5px;-webkit-border-bottom-right-radius:5px;border-bottom-right-radius:5px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 4px 5px 0;border-width:1px 1px 1px 0;border-style:solid;background-color:#3f4757}.x-window-header-default-right-mc{background-color:#3f4757}.x-nbr .x-window-header-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-right-frameInfo{font-family:dh-0-5-5-0-1-1-1-0-5-4-5-0}.x-window-header-default-right-tl{background-position:0 -10px}.x-window-header-default-right-tr{background-position:right -15px}.x-window-header-default-right-bl{background-position:0 -20px}.x-window-header-default-right-br{background-position:right -25px}.x-window-header-default-right-ml{background-position:0 top}.x-window-header-default-right-mr{background-position:right top}.x-window-header-default-right-tc{background-position:0 0}.x-window-header-default-right-bc{background-position:0 -5px}.x-window-header-default-right-tr,.x-window-header-default-right-br,.x-window-header-default-right-mr{padding-right:5px}.x-window-header-default-right-tl,.x-window-header-default-right-bl,.x-window-header-default-right-ml{padding-left:0}.x-window-header-default-right-tc{height:5px}.x-window-header-default-right-bc{height:5px}.x-window-header-default-right-tl,.x-window-header-default-right-bl,.x-window-header-default-right-tr,.x-window-header-default-right-br,.x-window-header-default-right-tc,.x-window-header-default-right-bc,.x-window-header-default-right-ml,.x-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-corners.gif)}.x-window-header-default-right-ml,.x-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-sides.gif);background-repeat:repeat-y}.x-window-header-default-right-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-right-tl,.x-strict .x-ie7 .x-window-header-default-right-bl{position:relative;right:0}.x-window-header-default-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"}.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: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:0 5px 4px 5px;border-width:0 1px 1px 1px;border-style:solid;background-color:#3f4757}.x-window-header-default-bottom-mc{background-color:#3f4757}.x-nbr .x-window-header-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-bottom-frameInfo{font-family:dh-0-0-5-5-0-1-1-1-0-5-4-5}.x-window-header-default-bottom-tl{background-position:0 -10px}.x-window-header-default-bottom-tr{background-position:right -15px}.x-window-header-default-bottom-bl{background-position:0 -20px}.x-window-header-default-bottom-br{background-position:right -25px}.x-window-header-default-bottom-ml{background-position:0 top}.x-window-header-default-bottom-mr{background-position:right top}.x-window-header-default-bottom-tc{background-position:0 0}.x-window-header-default-bottom-bc{background-position:0 -5px}.x-window-header-default-bottom-tr,.x-window-header-default-bottom-br,.x-window-header-default-bottom-mr{padding-right:5px}.x-window-header-default-bottom-tl,.x-window-header-default-bottom-bl,.x-window-header-default-bottom-ml{padding-left:5px}.x-window-header-default-bottom-tc{height:0}.x-window-header-default-bottom-bc{height:5px}.x-window-header-default-bottom-tl,.x-window-header-default-bottom-bl,.x-window-header-default-bottom-tr,.x-window-header-default-bottom-br,.x-window-header-default-bottom-tc,.x-window-header-default-bottom-bc,.x-window-header-default-bottom-ml,.x-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-corners.gif)}.x-window-header-default-bottom-ml,.x-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-sides.gif);background-repeat:repeat-y}.x-window-header-default-bottom-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-bottom-tl,.x-strict .x-ie7 .x-window-header-default-bottom-bl{position:relative;right:0}.x-window-header-default-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"}.x-window-header-default-left{-moz-border-radius-topleft:5px;-webkit-border-top-left-radius:5px;border-top-left-radius:5px;-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:5px;-webkit-border-bottom-left-radius:5px;border-bottom-left-radius:5px;padding:5px 0 5px 4px;border-width:1px 0 1px 1px;border-style:solid;background-color:#3f4757}.x-window-header-default-left-mc{background-color:#3f4757}.x-nbr .x-window-header-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-left-frameInfo{font-family:dh-5-0-0-5-1-0-1-1-5-0-5-4}.x-window-header-default-left-tl{background-position:0 -10px}.x-window-header-default-left-tr{background-position:right -15px}.x-window-header-default-left-bl{background-position:0 -20px}.x-window-header-default-left-br{background-position:right -25px}.x-window-header-default-left-ml{background-position:0 top}.x-window-header-default-left-mr{background-position:right top}.x-window-header-default-left-tc{background-position:0 0}.x-window-header-default-left-bc{background-position:0 -5px}.x-window-header-default-left-tr,.x-window-header-default-left-br,.x-window-header-default-left-mr{padding-right:0}.x-window-header-default-left-tl,.x-window-header-default-left-bl,.x-window-header-default-left-ml{padding-left:5px}.x-window-header-default-left-tc{height:5px}.x-window-header-default-left-bc{height:5px}.x-window-header-default-left-tl,.x-window-header-default-left-bl,.x-window-header-default-left-tr,.x-window-header-default-left-br,.x-window-header-default-left-tc,.x-window-header-default-left-bc,.x-window-header-default-left-ml,.x-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-corners.gif)}.x-window-header-default-left-ml,.x-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-sides.gif);background-repeat:repeat-y}.x-window-header-default-left-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-left-tl,.x-strict .x-ie7 .x-window-header-default-left-bl{position:relative;right:0}.x-window-header-default-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"}.x-window-header-default-collapsed-top{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-color:#3f4757}.x-window-header-default-collapsed-top-mc{background-color:#3f4757}.x-nbr .x-window-header-default-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-top-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-5-4-5}.x-window-header-default-collapsed-top-tl{background-position:0 -10px}.x-window-header-default-collapsed-top-tr{background-position:right -15px}.x-window-header-default-collapsed-top-bl{background-position:0 -20px}.x-window-header-default-collapsed-top-br{background-position:right -25px}.x-window-header-default-collapsed-top-ml{background-position:0 top}.x-window-header-default-collapsed-top-mr{background-position:right top}.x-window-header-default-collapsed-top-tc{background-position:0 0}.x-window-header-default-collapsed-top-bc{background-position:0 -5px}.x-window-header-default-collapsed-top-tr,.x-window-header-default-collapsed-top-br,.x-window-header-default-collapsed-top-mr{padding-right:5px}.x-window-header-default-collapsed-top-tl,.x-window-header-default-collapsed-top-bl,.x-window-header-default-collapsed-top-ml{padding-left:5px}.x-window-header-default-collapsed-top-tc{height:5px}.x-window-header-default-collapsed-top-bc{height:5px}.x-window-header-default-collapsed-top-tl,.x-window-header-default-collapsed-top-bl,.x-window-header-default-collapsed-top-tr,.x-window-header-default-collapsed-top-br,.x-window-header-default-collapsed-top-tc,.x-window-header-default-collapsed-top-bc,.x-window-header-default-collapsed-top-ml,.x-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-corners.gif)}.x-window-header-default-collapsed-top-ml,.x-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-top-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-top-bl{position:relative;right:0}.x-window-header-default-collapsed-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"}.x-window-header-default-collapsed-right{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-color:#3f4757}.x-window-header-default-collapsed-right-mc{background-color:#3f4757}.x-nbr .x-window-header-default-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-right-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-5-4-5-4}.x-window-header-default-collapsed-right-tl{background-position:0 -10px}.x-window-header-default-collapsed-right-tr{background-position:right -15px}.x-window-header-default-collapsed-right-bl{background-position:0 -20px}.x-window-header-default-collapsed-right-br{background-position:right -25px}.x-window-header-default-collapsed-right-ml{background-position:0 top}.x-window-header-default-collapsed-right-mr{background-position:right top}.x-window-header-default-collapsed-right-tc{background-position:0 0}.x-window-header-default-collapsed-right-bc{background-position:0 -5px}.x-window-header-default-collapsed-right-tr,.x-window-header-default-collapsed-right-br,.x-window-header-default-collapsed-right-mr{padding-right:5px}.x-window-header-default-collapsed-right-tl,.x-window-header-default-collapsed-right-bl,.x-window-header-default-collapsed-right-ml{padding-left:5px}.x-window-header-default-collapsed-right-tc{height:5px}.x-window-header-default-collapsed-right-bc{height:5px}.x-window-header-default-collapsed-right-tl,.x-window-header-default-collapsed-right-bl,.x-window-header-default-collapsed-right-tr,.x-window-header-default-collapsed-right-br,.x-window-header-default-collapsed-right-tc,.x-window-header-default-collapsed-right-bc,.x-window-header-default-collapsed-right-ml,.x-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-corners.gif)}.x-window-header-default-collapsed-right-ml,.x-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-right-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-right-bl{position:relative;right:0}.x-window-header-default-collapsed-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"}.x-window-header-default-collapsed-bottom{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-color:#3f4757}.x-window-header-default-collapsed-bottom-mc{background-color:#3f4757}.x-nbr .x-window-header-default-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-bottom-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-5-4-5}.x-window-header-default-collapsed-bottom-tl{background-position:0 -10px}.x-window-header-default-collapsed-bottom-tr{background-position:right -15px}.x-window-header-default-collapsed-bottom-bl{background-position:0 -20px}.x-window-header-default-collapsed-bottom-br{background-position:right -25px}.x-window-header-default-collapsed-bottom-ml{background-position:0 top}.x-window-header-default-collapsed-bottom-mr{background-position:right top}.x-window-header-default-collapsed-bottom-tc{background-position:0 0}.x-window-header-default-collapsed-bottom-bc{background-position:0 -5px}.x-window-header-default-collapsed-bottom-tr,.x-window-header-default-collapsed-bottom-br,.x-window-header-default-collapsed-bottom-mr{padding-right:5px}.x-window-header-default-collapsed-bottom-tl,.x-window-header-default-collapsed-bottom-bl,.x-window-header-default-collapsed-bottom-ml{padding-left:5px}.x-window-header-default-collapsed-bottom-tc{height:5px}.x-window-header-default-collapsed-bottom-bc{height:5px}.x-window-header-default-collapsed-bottom-tl,.x-window-header-default-collapsed-bottom-bl,.x-window-header-default-collapsed-bottom-tr,.x-window-header-default-collapsed-bottom-br,.x-window-header-default-collapsed-bottom-tc,.x-window-header-default-collapsed-bottom-bc,.x-window-header-default-collapsed-bottom-ml,.x-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-corners.gif)}.x-window-header-default-collapsed-bottom-ml,.x-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-bottom-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl{position:relative;right:0}.x-window-header-default-collapsed-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"}.x-window-header-default-collapsed-left{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-color:#3f4757}.x-window-header-default-collapsed-left-mc{background-color:#3f4757}.x-nbr .x-window-header-default-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-left-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-5-4-5-4}.x-window-header-default-collapsed-left-tl{background-position:0 -10px}.x-window-header-default-collapsed-left-tr{background-position:right -15px}.x-window-header-default-collapsed-left-bl{background-position:0 -20px}.x-window-header-default-collapsed-left-br{background-position:right -25px}.x-window-header-default-collapsed-left-ml{background-position:0 top}.x-window-header-default-collapsed-left-mr{background-position:right top}.x-window-header-default-collapsed-left-tc{background-position:0 0}.x-window-header-default-collapsed-left-bc{background-position:0 -5px}.x-window-header-default-collapsed-left-tr,.x-window-header-default-collapsed-left-br,.x-window-header-default-collapsed-left-mr{padding-right:5px}.x-window-header-default-collapsed-left-tl,.x-window-header-default-collapsed-left-bl,.x-window-header-default-collapsed-left-ml{padding-left:5px}.x-window-header-default-collapsed-left-tc{height:5px}.x-window-header-default-collapsed-left-bc{height:5px}.x-window-header-default-collapsed-left-tl,.x-window-header-default-collapsed-left-bl,.x-window-header-default-collapsed-left-tr,.x-window-header-default-collapsed-left-br,.x-window-header-default-collapsed-left-tc,.x-window-header-default-collapsed-left-bc,.x-window-header-default-collapsed-left-ml,.x-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-corners.gif)}.x-window-header-default-collapsed-left-ml,.x-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-left-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-left-bl{position:relative;right:0}.x-window-header-default-collapsed-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"}.x-window-header-default-top{-webkit-box-shadow:#414b5c 0 1px 0 0 inset,#414b5c -1px 0 0 0 inset,#414b5c 1px 0 0 0 inset;-moz-box-shadow:#414b5c 0 1px 0 0 inset,#414b5c -1px 0 0 0 inset,#414b5c 1px 0 0 0 inset;box-shadow:#414b5c 0 1px 0 0 inset,#414b5c -1px 0 0 0 inset,#414b5c 1px 0 0 0 inset}.x-window-header-default-right{-webkit-box-shadow:#414b5c 0 1px 0 0 inset,#414b5c 0 -1px 0 0 inset,#414b5c -1px 0 0 0 inset;-moz-box-shadow:#414b5c 0 1px 0 0 inset,#414b5c 0 -1px 0 0 inset,#414b5c -1px 0 0 0 inset;box-shadow:#414b5c 0 1px 0 0 inset,#414b5c 0 -1px 0 0 inset,#414b5c -1px 0 0 0 inset}.x-window-header-default-bottom{-webkit-box-shadow:#414b5c 0 -1px 0 0 inset,#414b5c -1px 0 0 0 inset,#414b5c 1px 0 0 0 inset;-moz-box-shadow:#414b5c 0 -1px 0 0 inset,#414b5c -1px 0 0 0 inset,#414b5c 1px 0 0 0 inset;box-shadow:#414b5c 0 -1px 0 0 inset,#414b5c -1px 0 0 0 inset,#414b5c 1px 0 0 0 inset}.x-window-header-default-left{-webkit-box-shadow:#414b5c 0 1px 0 0 inset,#414b5c 0 -1px 0 0 inset,#414b5c 1px 0 0 0 inset;-moz-box-shadow:#414b5c 0 1px 0 0 inset,#414b5c 0 -1px 0 0 inset,#414b5c 1px 0 0 0 inset;box-shadow:#414b5c 0 1px 0 0 inset,#414b5c 0 -1px 0 0 inset,#414b5c 1px 0 0 0 inset}.x-window-header-default .x-window-header-icon{width:16px;height:16px;color:white;font-size:16px;line-height:16px;background-position:center center}.x-window-header-default .x-window-header-glyph{color:white;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-window-header-default .x-window-header-glyph{color:#9fa3ab}.x-window-header-default-horizontal .x-window-header-icon-before-title{margin:0 2px 0 0}.x-window-header-default-horizontal .x-window-header-icon-after-title{margin:0 0 0 2px}.x-window-header-default-vertical .x-window-header-icon-before-title{margin:0 0 2px 0}.x-window-header-default-vertical .x-window-header-icon-after-title{margin:2px 0 0 0}.x-window-header-default-horizontal .x-tool-after-title{margin:0 0 0 2px}.x-window-header-default-horizontal .x-tool-before-title{margin:0 2px 0 0}.x-window-header-default-vertical .x-tool-after-title{margin:2px 0 0 0}.x-window-header-default-vertical .x-tool-before-title{margin:0 0 2px 0}.x-window-default-collapsed .x-window-header{border-width:1px!important}.x-nbr .x-window-default-collapsed .x-window-header{border-width:0!important}.x-form-invalid-under{padding:2px 2px 2px 20px;color:#c0272b;font:normal 14px tahoma,arial,verdana,sans-serif;line-height:16px;background:no-repeat 0 2px;background-image:url(images/form/exclamation.gif)}div.x-lbl-top-err-icon{margin-bottom:5px}.x-form-invalid-icon{width:16px;height:16px;margin:0 1px;background-image:url(images/form/exclamation.gif);background-repeat:no-repeat}.x-form-item-label{color:white;font:normal 15px/17px tahoma,arial,verdana,sans-serif;margin-top:5px}.x-toolbar-item .x-form-item-label{font:normal 14px/16px tahoma,arial,verdana,sans-serif;margin-top:4px}.x-autocontainer-form-item,.x-anchor-form-item,.x-vbox-form-item,.x-table-form-item{margin-bottom:5px}.x-ie6 .x-form-form-item td{border-top-width:0}.x-ie6 td.x-form-item-pad{height:5px}.x-form-field{color:white}.x-form-item,.x-form-field{font:normal 15px tahoma,arial,verdana,sans-serif}.x-form-type-text textarea.x-form-invalid-field,.x-form-type-text input.x-form-invalid-field,.x-form-type-password textarea.x-form-invalid-field,.x-form-type-password input.x-form-invalid-field,.x-form-type-number textarea.x-form-invalid-field,.x-form-type-number input.x-form-invalid-field,.x-form-type-email textarea.x-form-invalid-field,.x-form-type-email input.x-form-invalid-field,.x-form-type-search textarea.x-form-invalid-field,.x-form-type-search input.x-form-invalid-field,.x-form-type-tel textarea.x-form-invalid-field,.x-form-type-tel input.x-form-invalid-field{background-color:#15171a;background-image:url(images/grid/invalid_line.gif);background-repeat:repeat-x;background-position:bottom;border-color:#c30}.x-item-disabled .x-form-item-label,.x-item-disabled .x-form-field,.x-item-disabled .x-form-display-field,.x-item-disabled .x-form-cb-label,.x-item-disabled .x-form-trigger{filter:alpha(opacity=30);opacity:.3}.x-form-text{color:white;padding:2px 4px 2px 4px;background:#34383f repeat-x 0 0;border-width:2px;border-style:solid;border-color:#737b8c;background-image:url(images/form/text-bg.gif);height:26px;line-height:18px}.x-field-toolbar .x-form-text{height:24px;line-height:16px}.x-content-box .x-form-text{height:18px}.x-content-box .x-field-toolbar .x-form-text{height:16px}.x-form-focus{border-color:#ff9c33}.x-form-empty-field,textarea.x-form-empty-field{color:gray}.x-quirks .x-ie .x-form-text,.x-ie7m .x-form-text{margin-top:-1px;margin-bottom:-1px}.x-form-textarea{line-height:normal;height:auto;background-image:url(images/form/text-bg.gif)}.x-form-display-field-body{height:26px}.x-toolbar-item .x-form-display-field-body{height:24px}.x-form-display-field{font:normal 15px/17px tahoma,arial,verdana,sans-serif;color:white;margin-top:5px}.x-toolbar-item .x-form-display-field{margin-top:4px;font:normal 14px/16px tahoma,arial,verdana,sans-serif}.x-message-box .x-window-body{background-color:#3f4757;border-width:0}.x-message-box-info,.x-message-box-warning,.x-message-box-question,.x-message-box-error{background-position:top left;background-repeat:no-repeat}.x-message-box-info{background-image:url(images/shared/icon-info.gif)}.x-message-box-warning{background-image:url(images/shared/icon-warning.gif)}.x-message-box-question{background-image:url(images/shared/icon-question.gif)}.x-message-box-error{background-image:url(images/shared/icon-error.gif)}.x-form-cb-wrap{height:26px}.x-toolbar-item .x-form-cb-wrap{height:24px}.x-form-cb{margin-top:4px}.x-toolbar-item .x-form-cb{margin-top:3px}.x-form-checkbox{width:19px;height:19px;background:url(images/form/checkbox.gif) no-repeat}.x-form-cb-checked .x-form-checkbox{background-position:0 -19px}.x-form-checkbox-focus{background-position:-19px 0}.x-form-cb-checked .x-form-checkbox-focus{background-position:-19px -19px}.x-form-cb-label{margin-top:5px;font:normal 15px/17px tahoma,arial,verdana,sans-serif}.x-toolbar-item .x-form-cb-label{font:normal 14px/16px tahoma,arial,verdana,sans-serif;margin-top:4px}.x-form-cb-label-before{margin-right:4px}.x-form-cb-label-after{margin-left:4px}.x-form-checkboxgroup-body{padding:0 4px}.x-form-invalid .x-form-checkboxgroup-body{border:1px solid #c30;background-image:url(images/grid/invalid_line.gif);background-repeat:repeat-x;background-position:bottom}.x-check-group-alt{background:#4d515c;border-top:1px dotted #333;border-bottom:1px dotted #333}.x-form-check-group-label{color:white;padding:2px;margin:0 30px 5px 0;border-width:0 0 1px 0;border-style:solid;border-color:white}.x-fieldset{border:1px solid #727c8c;padding:0 10px;margin:0 0 10px}.x-ie8m .x-fieldset,.x-quirks .x-ie .x-fieldset{padding-top:0}.x-ie8m .x-fieldset .x-fieldset-body,.x-quirks .x-ie .x-fieldset .x-fieldset-body{padding-top:0}.x-fieldset-header-checkbox{line-height:14px;margin:1px 3px 0 0}.x-fieldset-header{padding:0 3px 1px}.x-fieldset-header .x-tool{margin-top:1px;padding:0}.x-fieldset-header-text{font:14px/14px bold tahoma,arial,verdana,sans-serif;color:white;padding:1px 0}.x-fieldset-header-text-collapsible{cursor:pointer}.x-fieldset-with-title .x-fieldset-header-checkbox,.x-fieldset-with-title .x-tool{margin:1px 3px 0 0}.x-webkit .x-fieldset-header{-webkit-padding-start:3px;-webkit-padding-end:3px}.x-opera .x-fieldset-with-legend{margin-top:-1px}.x-opera.x-mac .x-fieldset-header-text{padding:2px 0 0}.x-strict .x-ie8 .x-fieldset-header{margin-bottom:-1px}.x-strict .x-ie8 .x-fieldset-header .x-tool,.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text,.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox{position:relative;top:-1px}.x-quirks .x-ie .x-fieldset-header,.x-ie8m .x-fieldset-header{padding-left:1px;padding-right:1px}.x-fieldset-collapsed .x-fieldset-body{display:none}.x-fieldset-collapsed{padding-bottom:0!important;border-width:1px 1px 0 1px!important;border-left-color:transparent!important;border-right-color:transparent!important}.x-ie6 .x-fieldset-collapsed{border-width:1px 0 0 0!important;padding-bottom:0!important;margin-left:1px;margin-right:1px}.x-ie .x-fieldset-bwrap{zoom:1}.x-fieldset .x-tool-toggle{background-position:0 -60px}.x-fieldset .x-tool-over .x-tool-toggle{background-position:-15px -60px}.x-fieldset-collapsed .x-tool-toggle{background-position:0 -75px}.x-fieldset-collapsed .x-tool-over .x-tool-toggle{background-position:-15px -75px}.x-ie .x-fieldset-noborder legend{position:relative;margin-bottom:23px}.x-ie .x-fieldset-noborder legend span{position:absolute;left:16px}.x-fieldset{overflow:hidden}.x-fieldset-bwrap{overflow:hidden;zoom:1}.x-fieldset-body{overflow:hidden}.x-form-radio{width:19px;height:19px;background:url(images/form/radio.gif) no-repeat}.x-form-cb-checked .x-form-radio{background-position:0 -19px}.x-form-radio-focus{background-position:-19px 0}.x-form-cb-checked .x-form-radio-focus{background-position:-19px -19px}.x-form-trigger{background:url(images/form/trigger.gif);width:20px;border-width:0 0 2px;border-color:#737b8c;border-style:solid}.x-trigger-cell{background-color:#34383f;width:20px}.x-form-trigger-over{background-position:-20px 0;border-color:#ff9c33}.x-form-trigger-wrap-focus .x-form-trigger{background-position:-60px 0}.x-form-trigger-wrap-focus .x-form-trigger-over{background-position:-80px 0}.x-form-trigger-click,.x-form-trigger-wrap-focus .x-form-trigger-click{background-position:-40px 0;border-color:#c76e12}.x-form-clear-trigger{background-image:url(images/form/clear-trigger.gif)}.x-form-search-trigger{background-image:url(images/form/search-trigger.gif)}.x-quirks .prefixie6 .x-form-trigger-input-cell{height:26px}.x-quirks .prefixie6 .x-field-toolbar .x-form-trigger-input-cell{height:24px}div.x-form-spinner-up,div.x-form-spinner-down{background-image:url(images/form/spinner.gif);background-color:#34383f;width:20px;height:13px}.x-form-spinner-down{background-position:0 -13px}.x-form-trigger-wrap-focus .x-form-spinner-down{background-position:-60px -13px}.x-form-trigger-wrap .x-form-spinner-down-over{background-position:-20px -13px}.x-form-trigger-wrap-focus .x-form-spinner-down-over{background-position:-80px -13px}.x-form-trigger-wrap .x-form-spinner-down-click{background-position:-40px -13px}.x-toolbar-item div.x-form-spinner-up,.x-toolbar-item div.x-form-spinner-down{background-image:url(images/form/spinner-small.gif);height:12px}.x-toolbar-item .x-form-spinner-down{background-position:0 -12px}.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down{background-position:-60px -12px}.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-over{background-position:-20px -12px}.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down-over{background-position:-80px -12px}.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-click{background-position:-40px -12px}.x-tbar-page-number{width:30px}.x-tbar-page-first{background-image:url(images/grid/page-first.gif)}.x-tbar-page-prev{background-image:url(images/grid/page-prev.gif)}.x-tbar-page-next{background-image:url(images/grid/page-next.gif)}.x-tbar-page-last{background-image:url(images/grid/page-last.gif)}.x-tbar-loading{background-image:url(images/grid/refresh.gif)}.x-item-disabled .x-tbar-page-first{background-image:url(images/grid/page-first-disabled.gif)}.x-item-disabled .x-tbar-page-prev{background-image:url(images/grid/page-prev-disabled.gif)}.x-item-disabled .x-tbar-page-next{background-image:url(images/grid/page-next-disabled.gif)}.x-item-disabled .x-tbar-page-last{background-image:url(images/grid/page-last-disabled.gif)}.x-item-disabled .x-tbar-loading{background-image:url(images/grid/refresh-disabled.gif)}.x-boundlist{border-width:2px;border-style:solid;border-color:#222732;background:#404551}.x-strict .x-ie7m .x-boundlist-list-ct{position:relative}.x-boundlist-item{padding:0 3px;line-height:22px;cursor:pointer;cursor:hand;position:relative;zoom:1;border-width:0;border-style:dotted;border-color:#404551}.x-boundlist-selected{background:#e5872c;border-color:#242838}.x-boundlist-item-over{background:#e5872c;border-color:#2e3347}.x-boundlist-floating{border-top-width:0}.x-boundlist-above{border-top-width:1px;border-bottom-width:1px}.x-datepicker{border-width:1px;border-style:solid;border-color:#798294;background-color:#21252e;width:177px}.x-datepicker-header{padding:3px 6px;text-align:center;background-image:none;background-color:#5c6980;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#627089),color-stop(100%,#535f74));background-image:-webkit-linear-gradient(top,#627089,#535f74);background-image:-moz-linear-gradient(top,#627089,#535f74);background-image:-o-linear-gradient(top,#627089,#535f74);background-image:linear-gradient(top,#627089,#535f74)}.x-datepicker-arrow{width:15px;height:15px;top:6px;cursor:pointer;background-color:#5c6980;filter:alpha(opacity=70);opacity:.7}a.x-datepicker-arrow:hover{filter:alpha(opacity=100);opacity:1}.x-datepicker-next{right:6px;background-image:url(images/shared/right-btn.gif)}.x-datepicker-prev{left:6px;background-image:url(images/shared/left-btn.gif)}.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}.x-datepicker-month .x-btn-inner{color:white}.x-datepicker-month .x-btn-split-right{background-image:url(images/button/s-arrow-light.gif);padding-right:14px}.x-datepicker-column-header{width:25px;color:white;font:normal 10px tahoma,arial,verdana,sans-serif;text-align:right;border-width:0 0 1px;border-style:solid;border-color:#535b5c;background-image:none;background-color:#3a4051;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#40475a),color-stop(100%,#313745));background-image:-webkit-linear-gradient(top,#40475a,#313745);background-image:-moz-linear-gradient(top,#40475a,#313745);background-image:-o-linear-gradient(top,#40475a,#313745);background-image:linear-gradient(top,#40475a,#313745)}.x-datepicker-column-header-inner{line-height:20px;padding:0 7px 0 0}.x-datepicker-cell{text-align:right;border-width:1px;border-style:solid;border-color:#21252e}.x-datepicker-date{padding:0 4px 0 0;font:normal 14px tahoma,arial,verdana,sans-serif;color:white;cursor:pointer;line-height:19px}a.x-datepicker-date:hover{color:white;background-color:#7e5530}.x-datepicker-selected{border-style:solid;border-color:#864900}.x-datepicker-selected .x-datepicker-date{background-color:#e5872c;font-weight:bold}.x-datepicker-today{border-color:#99a;border-style:solid}.x-datepicker-prevday .x-datepicker-date,.x-datepicker-nextday .x-datepicker-date{color:#aaa}.x-datepicker-disabled a.x-datepicker-date{background-color:#eee;cursor:default;color:#bbb}.x-datepicker-disabled a.x-datepicker-date:hover{background-color:#eee}.x-datepicker-footer,.x-monthpicker-buttons{padding:4px 0;border-width:1px 0 0;border-style:solid;border-color:#535b5c;background-image:none;background-color:#3a4051;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#51596b),color-stop(49%,#4b525f),color-stop(51%,#454b58),color-stop(100%,#484e5a));background-image:-webkit-linear-gradient(top,#51596b,#4b525f 49%,#454b58 51%,#484e5a);background-image:-moz-linear-gradient(top,#51596b,#4b525f 49%,#454b58 51%,#484e5a);background-image:-o-linear-gradient(top,#51596b,#4b525f 49%,#454b58 51%,#484e5a);background-image:linear-gradient(top,#51596b,#4b525f 49%,#454b58 51%,#484e5a);text-align:center}.x-datepicker-footer .x-btn,.x-monthpicker-buttons .x-btn{margin:0 2px 0 2px}.x-monthpicker{width:177px;border-width:1px;border-style:solid;border-color:#798294;background-color:#21252e}.x-monthpicker-months{border-width:0 1px 0 0;border-color:#798294;border-style:solid;width:87px}.x-monthpicker-months .x-monthpicker-item{width:43px}.x-monthpicker-years{width:88px}.x-monthpicker-years .x-monthpicker-item{width:44px}.x-monthpicker-item{margin:5px 0 4px;font:normal 14px tahoma,arial,verdana,sans-serif;text-align:center}.x-monthpicker-item-inner{margin:0 5px 0 5px;color:white;border-width:1px;border-style:solid;border-color:#21252e;line-height:16px;cursor:pointer}a.x-monthpicker-item-inner:hover{background-color:#7e5530}.x-monthpicker-selected{background-color:#e5872c;border-style:solid;border-color:#864900}.x-monthpicker-yearnav{height:27px}.x-monthpicker-yearnav-button-ct{width:44px}.x-monthpicker-yearnav-button{height:15px;width:15px;cursor:pointer;margin-top:6px;background-color:#21252e}.x-monthpicker-yearnav-next{background-image:url(images/tools/tool-sprites.gif);background-position:0 -120px}.x-monthpicker-yearnav-next-over{background-position:-15px -120px}.x-monthpicker-yearnav-prev{background-image:url(images/tools/tool-sprites.gif);background-position:0 -105px}.x-monthpicker-yearnav-prev-over{background-position:-15px -105px}.x-monthpicker-small .x-monthpicker-item{margin:2px 0 2px}.x-monthpicker-small .x-monthpicker-item-inner{margin:0 5px 0 5px}.x-monthpicker-small .x-monthpicker-yearnav{height:22px}.x-monthpicker-small .x-monthpicker-yearnav-button{margin-top:3px}.x-nlg .x-datepicker-header{background-image:url(images/datepicker/datepicker-header-bg.gif);background-repeat:repeat-x;background-position:top left}.x-nlg .x-datepicker-footer,.x-nlg .x-monthpicker-buttons{background-image:url(images/datepicker/datepicker-footer-bg.gif);background-repeat:repeat-x;background-position:top left}.x-datepicker-header:after{display:none;content:"x-slicer:bg:url(images/datepicker/datepicker-header-bg.gif)"}.x-datepicker-footer:after{display:none;content:"x-slicer:bg:url(images/datepicker/datepicker-footer-bg.gif)"}.x-form-date-trigger{background-image:url(images/form/date-trigger.gif)}.x-form-file-wrap .x-form-text{color:gray}.x-color-picker{width:144px;height:90px;background-color:white;border-color:white;border-width:0;border-style:solid}.x-color-picker-item{width:18px;height:18px;border-width:1px;border-color:white;border-style:solid;background-color:white;cursor:pointer;padding:2px}.x-content-box .x-color-picker-item{width:12px;height:12px}a.x-color-picker-item:hover{border-color:#8bb8f3;background-color:#deecfd}.x-color-picker-selected{border-color:#8bb8f3;background-color:#deecfd}.x-color-picker-item-inner{line-height:10px;border-color:#aca899;border-width:1px;border-style:solid}.x-html-editor-tb .x-btn-text{background:transparent no-repeat;background-image:url(images/editor/tb-sprite.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.x-html-editor-tip .x-tip-bd .x-tip-bd-inner{padding:5px;padding-bottom:1px}.x-html-editor-tb .x-font-select{font-size:11px;font-family:inherit}.x-html-editor-wrap textarea{font:normal 15px tahoma,arial,verdana,sans-serif;background-color:#34383f;resize:none}.x-grid-body{background:#232d38;border-width:1px;border-style:solid;border-color:#18181a}.x-grid-empty{padding:10px;color:gray;background-color:#232d38;font:normal 14px tahoma,arial,verdana,sans-serif}.x-grid-cell{color:white;font:normal 14px/17px tahoma,arial,verdana,sans-serif;background-color:#1f2933;border-color:#ededed #454545 #ededed #454545;border-style:solid}.x-grid-row-alt .x-grid-td{background-color:#1a232b}.x-grid-row-before-over .x-grid-td{border-bottom-style:solid;border-bottom-color:#101010}.x-grid-row-over .x-grid-td{border-bottom-style:solid;border-bottom-color:#101010}.x-grid-row-before-selected .x-grid-td{border-bottom-style:dotted;border-bottom-color:#101010}.x-grid-row-selected .x-grid-td{border-bottom-style:dotted;border-bottom-color:#101010}.x-grid-row-before-focused .x-grid-td{border-bottom-style:dotted;border-bottom-color:#464646;border-bottom-width:1px}.x-grid-row-focused .x-grid-td{background-color:#efefef}.x-grid-row-over .x-grid-td{background-color:#7e552f}.x-grid-row-selected .x-grid-td{background-color:#e48627}.x-grid-row-focused .x-grid-td{border-bottom-style:dotted;border-bottom-color:#464646;border-bottom-width:1px}.x-grid-table .x-grid-row-focused-first .x-grid-td{border-top:1px dotted #464646}.x-grid-row-selected .x-grid-row-summary .x-grid-td{border-bottom-color:#e48627;border-top-width:0}.x-grid-row-focused .x-grid-row-summary .x-grid-td{border-bottom-color:#efefef;border-top-width:0}.x-grid-with-row-lines .x-grid-td{border-bottom-width:1px}.x-grid-with-row-lines .x-grid-table{border-top:1px solid #1f2933}.x-grid-with-row-lines .x-grid-table-over-first{border-top-style:solid;border-top-color:#101010}.x-grid-with-row-lines .x-grid-table-selected-first{border-top-style:dotted;border-top-color:#101010}.x-grid-body .x-grid-table-focused-first{border-top:1px dotted #464646}.x-grid-cell-inner{text-overflow:ellipsis;padding:2px 6px 3px 6px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner{padding-top:1px;padding-bottom:2px}.x-grid-cell-special{border-color:#ededed #454545 #ededed #454545;border-style:solid;border-right-width:1px;background-image:none;background-color:#f6f6f6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:-moz-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:-o-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:linear-gradient(top,#f6f6f6,#e9e9e9)}.x-grid-row-selected .x-grid-cell-special{border-right-color:#ededed #283b61;background-image:none;background-color:#e48627;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#e48627),color-stop(100%,#d7791b));background-image:-webkit-linear-gradient(left,#e48627,#d7791b);background-image:-moz-linear-gradient(left,#e48627,#d7791b);background-image:-o-linear-gradient(left,#e48627,#d7791b);background-image:linear-gradient(left,#e48627,#d7791b)}.x-nlg .x-grid-cell-special{background-repeat:repeat-y;background-image:url(images/grid/cell-special-bg.gif)}.x-nlg .x-grid-row-selected .x-grid-cell-special{background-image:url(images/grid/cell-special-selected-bg.gif)}.x-grid-cell-special .x-grid-cell-special:after{display:none;content:"x-slicer:bg:url(images/grid/cell-special-bg.gif)"}.x-grid-cell-special .x-grid-cell-special-selected:after{display:none;content:"x-slicer:bg:url(images/grid/cell-special-selected-bg.gif)"}.x-grid-dirty-cell{background:url(images/grid/dirty.gif) no-repeat 0 0}.x-grid-row .x-grid-cell-selected{color:white;background-color:#b8cfee}.x-grid-with-col-lines .x-grid-cell{border-right-width:1px}.x-grid-resize-marker{width:1px;background-color:#0f0f0f}.x-grid-drop-indicator{position:absolute;height:1px;line-height:0;background-color:#77bc71;overflow:visible;pointer-events:none}.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}.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}.x-ie6 .x-grid-drop-indicator-left{background-image:url(images/grid/dd-insert-arrow-right.gif)}.x-ie6 .x-grid-drop-indicator-right{background-image:url(images/grid/dd-insert-arrow-left.gif)}.col-move-top,.col-move-bottom{width:9px;height:9px}.col-move-top{background-image:url(images/grid/col-move-top.gif)}.col-move-bottom{background-image:url(images/grid/col-move-bottom.gif)}.x-grid-header-ct{border:1px solid #18181a;border-bottom-color:#373c4b;background-color:#373c4b;background-image:none;background-color:#373c4b;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#575f77),color-stop(50%,#42485a),color-stop(51%,#373c4b),color-stop(100%,#2c303c));background-image:-webkit-linear-gradient(top,#575f77,#42485a 50%,#373c4b 51%,#2c303c);background-image:-moz-linear-gradient(top,#575f77,#42485a 50%,#373c4b 51%,#2c303c);background-image:-o-linear-gradient(top,#575f77,#42485a 50%,#373c4b 51%,#2c303c);background-image:linear-gradient(top,#575f77,#42485a 50%,#373c4b 51%,#2c303c)}.x-accordion-item .x-grid-header-ct{border-width:0 0 1px!important}.x-accordion-item .x-grid-header-ct-hidden{border:0!important}.x-grid-body{border-top-color:#c5c5c5}.x-hmenu-sort-asc .x-menu-item-icon{background-image:url(images/grid/hmenu-asc.gif)}.x-hmenu-sort-desc .x-menu-item-icon{background-image:url(images/grid/hmenu-desc.gif)}.x-cols-icon .x-menu-item-icon{background-image:url(images/grid/columns.gif)}.x-column-header{border-right:1px solid #c5c5c5;color:white;font:normal 14px/16px tahoma,arial,verdana,sans-serif;background-image:none;background-color:#373c4b;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#575f77),color-stop(50%,#42485a),color-stop(51%,#373c4b),color-stop(100%,#2c303c));background-image:-webkit-linear-gradient(top,#575f77,#42485a 50%,#373c4b 51%,#2c303c);background-image:-moz-linear-gradient(top,#575f77,#42485a 50%,#373c4b 51%,#2c303c);background-image:-o-linear-gradient(top,#575f77,#42485a 50%,#373c4b 51%,#2c303c);background-image:linear-gradient(top,#575f77,#42485a 50%,#373c4b 51%,#2c303c)}.x-group-sub-header{background:transparent;border-top:1px solid #c5c5c5}.x-group-sub-header .x-column-header-inner{padding:3px 6px 5px 6px}.x-column-header-inner{padding:4px 6px 5px 6px;text-overflow:ellipsis}.x-column-header-over,.x-column-header-sort-ASC,.x-column-header-sort-DESC{background-image:none;background-color:#496085;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#6c86ae),color-stop(50%,#526c95),color-stop(51%,#496085),color-stop(100%,#405475));background-image:-webkit-linear-gradient(top,#6c86ae,#526c95 50%,#496085 51%,#405475);background-image:-moz-linear-gradient(top,#6c86ae,#526c95 50%,#496085 51%,#405475);background-image:-o-linear-gradient(top,#6c86ae,#526c95 50%,#496085 51%,#405475);background-image:linear-gradient(top,#6c86ae,#526c95 50%,#496085 51%,#405475)}.x-nlg .x-grid-header-ct,.x-nlg .x-column-header{background-image:url(images/grid/column-header-bg.gif)}.x-nlg .x-column-header-over,.x-nlg .x-column-header-sort-ASC,.x-nlg .x-column-header-sort-DESC{background-image:url(images/grid/column-header-over-bg.gif)}.x-column-header-open{background-color:transparent}.x-column-header-open .x-column-header-trigger{background-color:transparent}.x-column-header-trigger{width:14px;cursor:pointer;background-color:transparent;background-position:0 center}.x-column-header-align-right .x-column-header-text{margin-right:9px}.x-column-header-sort-ASC .x-column-header-text,.x-column-header-sort-DESC .x-column-header-text{padding-right:18px;background-position:right center}.x-column-header-sort-ASC .x-column-header-text{background-image:url(images/grid/sort_asc.gif)}.x-column-header-sort-DESC .x-column-header-text{background-image:url(images/grid/sort_desc.gif)}.x-column-header:after{display:none;content:"x-slicer:bg:url(images/grid/column-header-bg.gif), stretch:bottom"}.x-column-header-over:after{display:none;content:"x-slicer:bg:url(images/grid/column-header-over-bg.gif), stretch:bottom"}.x-grid-cell-inner-action-col{padding:3px 2px 3px 2px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-action-col{padding-top:2px;padding-bottom:2px}.x-action-col-cell .x-item-disabled{filter:alpha(opacity=30);opacity:.3}.x-action-col-icon{height:16px;width:16px;cursor:pointer}.x-grid-cell-inner-checkcolumn{padding:2px 6px 1px 6px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-checkcolumn{padding-top:1px;padding-bottom:0}.x-grid-checkcolumn{width:19px;height:19px;background:url(images/form/checkbox.gif) 0 0 no-repeat}.x-item-disabled .x-grid-checkcolumn{filter:alpha(opacity=30);opacity:.3}.x-grid-checkcolumn-checked{background-position:0 -19px}.x-grid-cell-inner-row-numberer{padding:2px 5px 3px 3px}.x-grid-group-hd{border-width:0 0 2px 0;border-style:solid;border-color:#283042;padding:10px 4px 4px 4px;background:white;cursor:pointer}.x-grid-group-hd-not-collapsible{cursor:default}.x-grid-group-hd-collapsible .x-grid-group-title{background-repeat:no-repeat;background-position:left center;background-image:url(images/grid/group-collapse.gif);padding:0 0 0 14px}.x-grid-group-title{color:black;font:bold 14px/16px tahoma,arial,verdana,sans-serif}.x-grid-group-hd-collapsed .x-grid-group-title{background-image:url(images/grid/group-expand.gif)}.x-grid-group-collapsed .x-grid-group-title{background-image:url(images/grid/group-expand.gif)}.x-group-by-icon{background-image:url(images/grid/group-by.gif)}.x-show-groups-icon{background-image:url(images/grid/group-by.gif)}.x-grid-rowbody{font:normal 14px/17px tahoma,arial,verdana,sans-serif;padding:5px 6px 5px 6px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-rowbody{padding-top:6px;padding-bottom:4px}.x-grid-rowwrap{border-color:#101010;border-style:solid}.x-summary-bottom{border-bottom-color:#373c4b}.x-docked-summary{border-width:1px;border-color:#18181a;border-style:solid}.x-docked-summary .x-grid-table{width:100%}.x-grid-row-summary .x-grid-cell,.x-grid-row-summary .x-grid-rowwrap,.x-grid-row-summary .x-grid-cell-rowbody{border-color:#ededed #454545 #ededed #454545;background-color:transparent!important;border-top-width:0;font:normal 14px/17px tahoma,arial,verdana,sans-serif}.x-grid-with-row-lines .x-grid-table-summary{border:0}.x-grid-locked .x-grid-inner-locked{border-width:0 1px 0 0;border-style:solid}.x-grid-inner-locked .x-column-header-last,.x-grid-inner-locked .x-grid-cell-last{border-right-width:0!important}.x-hmenu-lock .x-menu-item-icon{background-image:url(images/grid/hmenu-lock.gif)}.x-hmenu-unlock .x-menu-item-icon{background-image:url(images/grid/hmenu-unlock.gif)}.x-grid-editor .x-form-text{font:normal 14px/15px tahoma,arial,verdana,sans-serif;padding:1px 4px 2px 4px;height:22px}.x-content-box .x-grid-editor .x-form-text{height:15px}.x-gecko .x-grid-editor .x-form-text{padding-left:3px;padding-right:3px}.x-grid-editor .x-form-trigger{height:22px}.x-grid-editor .x-form-spinner-up,.x-grid-editor .x-form-spinner-down{height:11px}.x-grid-editor .x-form-cb{margin-top:2px}.x-grid-editor .x-form-cb-wrap{height:22px}.x-grid-editor .x-form-display-field-body{height:22px}.x-grid-editor .x-form-display-field{font:normal 14px/15px tahoma,arial,verdana,sans-serif;padding:3px 6px 4px 6px;text-overflow:ellipsis}.x-grid-editor .x-form-action-col-field{padding:3px 2px 3px 2px}.x-tree-cell-editor .x-form-text{padding-left:1px;padding-right:1px}.x-gecko .x-tree-cell-editor .x-form-text{padding-left:0;padding-right:0}.x-grid-row-editor .x-field{margin:0 1px 0 1px}.x-grid-row-editor .x-form-display-field{padding:3px 5px 4px 5px}.x-grid-row-editor .x-form-action-col-field{padding:3px 1px 3px 1px}.x-grid-row-editor .x-form-text{padding:1px 3px 2px 3px}.x-gecko .x-grid-row-editor .x-form-text{padding-left:2px;padding-right:2px}.x-grid-row-editor .x-panel-body{border-top:1px solid #18181a!important;border-bottom:1px solid #18181a!important;padding:4px 0 4px 0;background-color:#4b5d83}.x-grid-with-col-lines .x-grid-row-editor .x-form-cb{margin-right:1px}.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:4px 4px 4px 4px;border-width:0 1px 1px 1px;border-style:solid;background-color:#4b5d83}.x-grid-row-editor-buttons-default-bottom-mc{background-color:#4b5d83}.x-nbr .x-grid-row-editor-buttons-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-grid-row-editor-buttons-default-bottom-frameInfo{font-family:th-0-0-5-5-0-1-1-1-4-4-4-4}.x-grid-row-editor-buttons-default-bottom-tl{background-position:0 -10px}.x-grid-row-editor-buttons-default-bottom-tr{background-position:right -15px}.x-grid-row-editor-buttons-default-bottom-bl{background-position:0 -20px}.x-grid-row-editor-buttons-default-bottom-br{background-position:right -25px}.x-grid-row-editor-buttons-default-bottom-ml{background-position:0 top}.x-grid-row-editor-buttons-default-bottom-mr{background-position:right top}.x-grid-row-editor-buttons-default-bottom-tc{background-position:0 0}.x-grid-row-editor-buttons-default-bottom-bc{background-position:0 -5px}.x-grid-row-editor-buttons-default-bottom-tr,.x-grid-row-editor-buttons-default-bottom-br,.x-grid-row-editor-buttons-default-bottom-mr{padding-right:5px}.x-grid-row-editor-buttons-default-bottom-tl,.x-grid-row-editor-buttons-default-bottom-bl,.x-grid-row-editor-buttons-default-bottom-ml{padding-left:5px}.x-grid-row-editor-buttons-default-bottom-tc{height:0}.x-grid-row-editor-buttons-default-bottom-bc{height:5px}.x-grid-row-editor-buttons-default-bottom-tl,.x-grid-row-editor-buttons-default-bottom-bl,.x-grid-row-editor-buttons-default-bottom-tr,.x-grid-row-editor-buttons-default-bottom-br,.x-grid-row-editor-buttons-default-bottom-tc,.x-grid-row-editor-buttons-default-bottom-bc,.x-grid-row-editor-buttons-default-bottom-ml,.x-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif)}.x-grid-row-editor-buttons-default-bottom-ml,.x-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif);background-repeat:repeat-y}.x-grid-row-editor-buttons-default-bottom-mc{padding:4px 0 0 0}.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-tl,.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-bl{position:relative;right:0}.x-grid-row-editor-buttons-default-bottom:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"}.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:4px 4px 4px 4px;border-width:1px 1px 0 1px;border-style:solid;background-color:#4b5d83}.x-grid-row-editor-buttons-default-top-mc{background-color:#4b5d83}.x-nbr .x-grid-row-editor-buttons-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-grid-row-editor-buttons-default-top-frameInfo{font-family:th-5-5-0-0-1-1-0-1-4-4-4-4}.x-grid-row-editor-buttons-default-top-tl{background-position:0 -10px}.x-grid-row-editor-buttons-default-top-tr{background-position:right -15px}.x-grid-row-editor-buttons-default-top-bl{background-position:0 -20px}.x-grid-row-editor-buttons-default-top-br{background-position:right -25px}.x-grid-row-editor-buttons-default-top-ml{background-position:0 top}.x-grid-row-editor-buttons-default-top-mr{background-position:right top}.x-grid-row-editor-buttons-default-top-tc{background-position:0 0}.x-grid-row-editor-buttons-default-top-bc{background-position:0 -5px}.x-grid-row-editor-buttons-default-top-tr,.x-grid-row-editor-buttons-default-top-br,.x-grid-row-editor-buttons-default-top-mr{padding-right:5px}.x-grid-row-editor-buttons-default-top-tl,.x-grid-row-editor-buttons-default-top-bl,.x-grid-row-editor-buttons-default-top-ml{padding-left:5px}.x-grid-row-editor-buttons-default-top-tc{height:5px}.x-grid-row-editor-buttons-default-top-bc{height:0}.x-grid-row-editor-buttons-default-top-tl,.x-grid-row-editor-buttons-default-top-bl,.x-grid-row-editor-buttons-default-top-tr,.x-grid-row-editor-buttons-default-top-br,.x-grid-row-editor-buttons-default-top-tc,.x-grid-row-editor-buttons-default-top-bc,.x-grid-row-editor-buttons-default-top-ml,.x-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif)}.x-grid-row-editor-buttons-default-top-ml,.x-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif);background-repeat:repeat-y}.x-grid-row-editor-buttons-default-top-mc{padding:0 0 4px 0}.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-tl,.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-bl{position:relative;right:0}.x-grid-row-editor-buttons-default-top:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"}.x-grid-row-editor-buttons-default-bottom{top:31px}.x-grid-row-editor-buttons-default-top{bottom:31px}.x-grid-row-editor-buttons{border-color:#18181a}.x-row-editor-update-button{margin-right:2px}.x-row-editor-cancel-button{margin-left:2px}.x-grid-row-editor-errors .x-tip-body{padding:5px}.x-grid-row-editor-errors-item{list-style:disc;margin-left:15px}.x-grid-cell-inner-row-expander{padding:7px 7px 6px 7px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-row-expander{padding-top:6px;padding-bottom:5px}.x-grid-row-expander{width:9px;height:9px;cursor:pointer;background-image:url(images/grid/group-collapse.gif)}.x-grid-row-collapsed .x-grid-row-expander{background-image:url(images/grid/group-expand.gif)}.x-grid-cell-inner-property-name{background-image:url(images/grid/property-cell-bg.gif);background-repeat:no-repeat;background-position:-16px 2px;padding-left:12px}.x-accordion-layout-ct{background-color:white;padding:0}.x-accordion-hd .x-panel-header-text-container{color:white;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;text-transform:none}.x-accordion-item{margin:0}.x-accordion-item .x-accordion-hd{background:#5c6b82;border-top-color:#606877;padding:4px 5px 5px 5px}.x-accordion-item .x-accordion-hd-sibling-expanded{border-top-color:#18181a}.x-accordion-item .x-accordion-hd-last-collapsed{border-bottom-color:#5c6b82}.x-accordion-item .x-accordion-body{border-width:0}.x-accordion-hd .x-tool-collapse-top,.x-accordion-hd .x-tool-collapse-bottom{background-position:0 -255px}.x-accordion-hd .x-tool-expand-top,.x-accordion-hd .x-tool-expand-bottom{background-position:0 -240px}.x-accordion-hd .x-tool-over .x-tool-collapse-top,.x-accordion-hd .x-tool-over .x-tool-collapse-bottom{background-position:-15px -255px}.x-accordion-hd .x-tool-over .x-tool-expand-top,.x-accordion-hd .x-tool-over .x-tool-expand-bottom{background-position:-15px -240px}.x-accordion-hd .x-tool-img{background-color:#5c6b82}.x-collapse-el{cursor:pointer}.x-layout-split-left,.x-layout-split-right{top:50%;margin-top:-18px;width:5px;height:35px}.x-layout-split-top,.x-layout-split-bottom{left:50%;width:35px;height:5px;margin-left:-18px}.x-layout-split-left{background-image:url(images/util/splitter/mini-left.gif)}.x-layout-split-right{background-image:url(images/util/splitter/mini-right.gif)}.x-layout-split-top{background-image:url(images/util/splitter/mini-top.gif)}.x-layout-split-bottom{background-image:url(images/util/splitter/mini-bottom.gif)}.x-splitter-collapsed .x-layout-split-left{background-image:url(images/util/splitter/mini-right.gif)}.x-splitter-collapsed .x-layout-split-right{background-image:url(images/util/splitter/mini-left.gif)}.x-splitter-collapsed .x-layout-split-top{background-image:url(images/util/splitter/mini-bottom.gif)}.x-splitter-collapsed .x-layout-split-bottom{background-image:url(images/util/splitter/mini-top.gif)}.x-splitter-active{background-color:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x-splitter-active .x-collapse-el{filter:alpha(opacity=30);opacity:.3}.x-border-layout-ct{background-color:#3f4757}.x-menu-body{background:#414551;padding:2px}.x-menu-icon-separator{left:24px;border-left:solid 1px #223;background-color:#666;width:2px}.x-menu-item{padding:1px;cursor:pointer}.x-menu-item-indent{margin-left:30px}.x-menu-item-active{background-image:none;background-color:#ed9200;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fc9b00),color-stop(100%,#d98500));background-image:-webkit-linear-gradient(top,#fc9b00,#d98500);background-image:-moz-linear-gradient(top,#fc9b00,#d98500);background-image:-o-linear-gradient(top,#fc9b00,#d98500);background-image:linear-gradient(top,#fc9b00,#d98500);border-color:#d38200;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;border-width:1px;border-style:solid;padding:0}.x-nlg .x-menu-item-active{background:#ed9200 repeat-x left top;background-image:url(images/menu/menu-item-active-bg.gif)}.x-menu-item-link{line-height:22px;padding:0 0 0 30px;display:inline-block}.x-right-check-item-text{padding-right:22px}.x-menu-item-icon{width:16px;height:16px;top:4px;left:3px;background-position:center center}.x-menu-item-glyph{font-size:16px;line-height:16px;color:white;opacity:.5}.x-ie8m .x-menu-item-glyph{color:#a0a2a8}.x-gecko .x-menu-item-active .x-menu-item-icon,.x-quirks .x-menu-item-active .x-menu-item-icon,.x-ie9m .x-menu-item-active .x-menu-item-icon{top:3px;left:2px}.x-menu-item-icon-right{width:16px;height:16px;top:3px;right:3px;background-position:center center}.x-menu-item-text{font-size:14px;color:white;cursor:pointer;margin-right:16px}.x-menu-item-checked .x-menu-item-icon,.x-menu-item-checked .x-menu-item-icon-right{background-image:url(images/menu/checked.gif)}.x-menu-item-checked .x-menu-group-icon{background-image:url(images/menu/group-checked.gif)}.x-menu-item-unchecked .x-menu-item-icon,.x-menu-item-unchecked .x-menu-item-icon-right{background-image:url(images/menu/unchecked.gif)}.x-menu-item-unchecked .x-menu-group-icon{background-image:none}.x-menu-item-separator{height:2px;border-top:solid 1px #223;background-color:#666;margin:2px 0;padding:0}.x-menu-item-arrow{width:12px;height:9px;top:7px;right:0;background-image:url(images/menu/menu-parent.gif)}.x-gecko .x-menu-item-active .x-menu-item-arrow,.x-quirks .x-menu-item-active .x-menu-item-arrow,.x-ie9m .x-menu-item-active .x-menu-item-arrow{top:6px;right:-1px}.x-menu-item-disabled{filter:alpha(opacity=50);opacity:.5}.x-content-box .x-menu-icon-separator{width:1px}.x-content-box .x-menu-item-separator{height:1px}.x-ie .x-menu-item-disabled .x-menu-item-icon{filter:alpha(opacity=50);opacity:.5}.x-ie .x-menu-item-disabled .x-menu-item-text{background-color:transparent}.x-menu-date-item{border-color:#99bbe8}.x-menu-item .x-form-item-label{font-size:14px;color:white}.x-menu-scroll-top{height:8px;background-image:url(images/menu/scroll-top.gif)}.x-menu-scroll-bottom{height:8px;background-image:url(images/menu/scroll-bottom.gif)}.x-menu-scroll-top,.x-menu-scroll-bottom{background-color:#414551}.x-menu-item-link:after{display:none;content:"x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"}.x-tool{cursor:pointer}.x-tool-img{overflow:hidden;width:15px;height:15px;background-image:url(images/tools/tool-sprites.gif);margin:0}.x-tool-placeholder{visibility:hidden}.x-tool-close{background-position:0 0}.x-tool-minimize{background-position:0 -15px}.x-tool-maximize{background-position:0 -30px}.x-tool-restore{background-position:0 -45px}.x-tool-toggle{background-position:0 -60px}.x-panel-collapsed .x-tool-toggle{background-position:0 -75px}.x-tool-gear{background-position:0 -90px}.x-tool-prev{background-position:0 -105px}.x-tool-next{background-position:0 -120px}.x-tool-pin{background-position:0 -135px}.x-tool-unpin{background-position:0 -150px}.x-tool-right{background-position:0 -165px}.x-tool-left{background-position:0 -180px}.x-tool-down{background-position:0 -195px}.x-tool-up{background-position:0 -210px}.x-tool-refresh{background-position:0 -225px}.x-tool-plus{background-position:0 -240px}.x-tool-minus{background-position:0 -255px}.x-tool-search{background-position:0 -270px}.x-tool-save{background-position:0 -285px}.x-tool-help{background-position:0 -300px}.x-tool-print{background-position:0 -315px}.x-tool-expand{background-position:0 -330px}.x-tool-collapse{background-position:0 -345px}.x-tool-resize{background-position:0 -360px}.x-tool-move{background-position:0 -375px}.x-tool-expand-bottom,.x-tool-collapse-bottom{background-position:0 -195px}.x-tool-expand-top,.x-tool-collapse-top{background-position:0 -210px}.x-tool-expand-left,.x-tool-collapse-left{background-position:0 -180px}.x-tool-expand-right,.x-tool-collapse-right{background-position:0 -165px}.x-tool-over .x-tool-close{background-position:-15px 0}.x-tool-over .x-tool-minimize{background-position:-15px -15px}.x-tool-over .x-tool-maximize{background-position:-15px -30px}.x-tool-over .x-tool-restore{background-position:-15px -45px}.x-tool-over .x-tool-toggle{background-position:-15px -60px}.x-panel-collapsed .x-tool-over .x-tool-toggle{background-position:-15px -75px}.x-tool-over .x-tool-gear{background-position:-15px -90px}.x-tool-over .x-tool-prev{background-position:-15px -105px}.x-tool-over .x-tool-next{background-position:-15px -120px}.x-tool-over .x-tool-pin{background-position:-15px -135px}.x-tool-over .x-tool-unpin{background-position:-15px -150px}.x-tool-over .x-tool-right{background-position:-15px -165px}.x-tool-over .x-tool-left{background-position:-15px -180px}.x-tool-over .x-tool-down{background-position:-15px -195px}.x-tool-over .x-tool-up{background-position:-15px -210px}.x-tool-over .x-tool-refresh{background-position:-15px -225px}.x-tool-over .x-tool-plus{background-position:-15px -240px}.x-tool-over .x-tool-minus{background-position:-15px -255px}.x-tool-over .x-tool-search{background-position:-15px -270px}.x-tool-over .x-tool-save{background-position:-15px -285px}.x-tool-over .x-tool-help{background-position:-15px -300px}.x-tool-over .x-tool-print{background-position:-15px -315px}.x-tool-over .x-tool-expand{background-position:-15px -330px}.x-tool-over .x-tool-collapse{background-position:-15px -345px}.x-tool-over .x-tool-resize{background-position:-15px -360px}.x-tool-over .x-tool-move{background-position:-15px -375px}.x-tool-over .x-tool-expand-bottom,.x-tool-over .x-tool-collapse-bottom{background-position:-15px -195px}.x-tool-over .x-tool-expand-top,.x-tool-over .x-tool-collapse-top{background-position:-15px -210px}.x-tool-over .x-tool-expand-left,.x-tool-over .x-tool-collapse-left{background-position:-15px -180px}.x-tool-over .x-tool-expand-right,.x-tool-over .x-tool-collapse-right{background-position:-15px -165px}.x-resizable-handle{position:absolute;z-index:100;font-size:1px;line-height:6px;overflow:hidden;zoom:1;filter:alpha(opacity=0);opacity:0;background-color:#fff}.x-collapsed .x-resizable-handle{display:none}.x-resizable-over .x-resizable-handle-north{cursor:n-resize}.x-resizable-over .x-resizable-handle-south{cursor:s-resize}.x-resizable-over .x-resizable-handle-east{cursor:e-resize}.x-resizable-over .x-resizable-handle-west{cursor:w-resize}.x-resizable-over .x-resizable-handle-southeast{cursor:se-resize}.x-resizable-over .x-resizable-handle-northwest{cursor:nw-resize}.x-resizable-over .x-resizable-handle-northeast{cursor:ne-resize}.x-resizable-over .x-resizable-handle-southwest{cursor:sw-resize}.x-resizable-handle-east{width:6px;height:100%;right:0;top:0}.x-resizable-handle-south{width:100%;height:6px;left:0;bottom:0}.x-resizable-handle-west{width:6px;height:100%;left:0;top:0}.x-resizable-handle-north{width:100%;height:6px;left:0;top:0}.x-resizable-handle-southeast{width:6px;height:6px;right:0;bottom:0;z-index:101}.x-resizable-handle-northwest{width:6px;height:6px;left:0;top:0;z-index:101}.x-resizable-handle-northeast{width:6px;height:6px;right:0;top:0;z-index:101}.x-resizable-handle-southwest{width:6px;height:6px;left:0;bottom:0;z-index:101}.x-ie .x-resizable-handle-east{margin-right:-1px}.x-ie .x-resizable-handle-south{margin-bottom:-1px}.x-resizable-pinned .x-resizable-handle,.x-resizable-over .x-resizable-handle{filter:alpha(opacity=100);opacity:1}.x-window .x-window-handle{filter:alpha(opacity=0);opacity:0}.x-window-collapsed .x-window-handle{display:none}.x-resizable-proxy{border:1px dashed #3b5a82;position:absolute;overflow:hidden;z-index:50000}.x-resizable-over .x-resizable-handle-east,.x-resizable-over .x-resizable-handle-west,.x-resizable-pinned .x-resizable-handle-east,.x-resizable-pinned .x-resizable-handle-west{background-image:url(images/sizer/e-handle.gif)}.x-resizable-over .x-resizable-handle-south,.x-resizable-over .x-resizable-handle-north,.x-resizable-pinned .x-resizable-handle-south,.x-resizable-pinned .x-resizable-handle-north{background-image:url(images/sizer/s-handle.gif)}.x-resizable-over .x-resizable-handle-southeast,.x-resizable-pinned .x-resizable-handle-southeast{background-position:top left;background-image:url(images/sizer/se-handle.gif)}.x-resizable-over .x-resizable-handle-northwest,.x-resizable-pinned .x-resizable-handle-northwest{background-position:bottom right;background-image:url(images/sizer/nw-handle.gif)}.x-resizable-over .x-resizable-handle-northeast,.x-resizable-pinned .x-resizable-handle-northeast{background-position:bottom left;background-image:url(images/sizer/ne-handle.gif)}.x-resizable-over .x-resizable-handle-southwest,.x-resizable-pinned .x-resizable-handle-southwest{background-position:top right;background-image:url(images/sizer/sw-handle.gif)}.x-slider-horz{padding-left:7px;background:no-repeat 0 -15px}.x-slider-horz .x-slider-end{padding-right:7px;background:no-repeat right -30px}.x-slider-horz .x-slider-inner{height:15px}.x-ie6 .x-form-item .x-slider-horz,.x-ie7 .x-form-item .x-slider-horz,.x-quirks .x-ie .x-form-item .x-slider-horz{margin-top:6px}.x-slider-horz .x-slider-thumb{width:14px;height:15px;margin-left:-7px;background-image:url(images/slider/slider-thumb.png)}.x-slider-horz .x-slider-thumb-over{background-position:-14px -15px}.x-slider-horz .x-slider-thumb-drag{background-position:-28px -30px}.x-slider-vert{padding-top:7px;background:no-repeat -30px 0}.x-slider-vert .x-slider-end{padding-bottom:7px;background:no-repeat -15px bottom;width:15px}.x-slider-vert .x-slider-inner{width:15px}.x-slider-vert .x-slider-thumb{width:15px;height:14px;margin-bottom:-7px;background-image:url(images/slider/slider-v-thumb.png)}.x-slider-vert .x-slider-thumb-over{background-position:-15px -14px}.x-slider-vert .x-slider-thumb-drag{background-position:-30px -28px}.x-slider-horz,.x-slider-horz .x-slider-end,.x-slider-horz .x-slider-inner{background-image:url(images/slider/slider-bg.png)}.x-slider-vert,.x-slider-vert .x-slider-end,.x-slider-vert .x-slider-inner{background-image:url(images/slider/slider-v-bg.png)}.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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-color:#616f8c}.x-tab-default-top-mc{background-color:#616f8c}.x-nbr .x-tab-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tab-default-top-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x-tab-default-top-tl{background-position:0 -8px}.x-tab-default-top-tr{background-position:right -12px}.x-tab-default-top-bl{background-position:0 -16px}.x-tab-default-top-br{background-position:right -20px}.x-tab-default-top-ml{background-position:0 top}.x-tab-default-top-mr{background-position:right top}.x-tab-default-top-tc{background-position:0 0}.x-tab-default-top-bc{background-position:0 -4px}.x-tab-default-top-tr,.x-tab-default-top-br,.x-tab-default-top-mr{padding-right:4px}.x-tab-default-top-tl,.x-tab-default-top-bl,.x-tab-default-top-ml{padding-left:4px}.x-tab-default-top-tc{height:4px}.x-tab-default-top-bc{height:0}.x-tab-default-top-tl,.x-tab-default-top-bl,.x-tab-default-top-tr,.x-tab-default-top-br,.x-tab-default-top-tc,.x-tab-default-top-bc,.x-tab-default-top-ml,.x-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-top-ml,.x-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif);background-repeat:repeat-y}.x-tab-default-top-mc{padding:0 6px 3px 6px}.x-strict .x-ie7 .x-tab-default-top-tl,.x-strict .x-ie7 .x-tab-default-top-bl{position:relative;right:0}.x-tab-default-top:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.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:3px 9px 3px 9px;border-width:0 1px 1px 1px;border-style:solid;background-color:#616f8c}.x-tab-default-bottom-mc{background-color:#616f8c}.x-nbr .x-tab-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tab-default-bottom-frameInfo{font-family:th-0-0-4-4-0-1-1-1-3-9-3-9}.x-tab-default-bottom-tl{background-position:0 -8px}.x-tab-default-bottom-tr{background-position:right -12px}.x-tab-default-bottom-bl{background-position:0 -16px}.x-tab-default-bottom-br{background-position:right -20px}.x-tab-default-bottom-ml{background-position:0 top}.x-tab-default-bottom-mr{background-position:right top}.x-tab-default-bottom-tc{background-position:0 0}.x-tab-default-bottom-bc{background-position:0 -4px}.x-tab-default-bottom-tr,.x-tab-default-bottom-br,.x-tab-default-bottom-mr{padding-right:4px}.x-tab-default-bottom-tl,.x-tab-default-bottom-bl,.x-tab-default-bottom-ml{padding-left:4px}.x-tab-default-bottom-tc{height:0}.x-tab-default-bottom-bc{height:4px}.x-tab-default-bottom-tl,.x-tab-default-bottom-bl,.x-tab-default-bottom-tr,.x-tab-default-bottom-br,.x-tab-default-bottom-tc,.x-tab-default-bottom-bc,.x-tab-default-bottom-ml,.x-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-corners.gif)}.x-tab-default-bottom-ml,.x-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-sides.gif);background-repeat:repeat-y}.x-tab-default-bottom-mc{padding:3px 6px 0 6px}.x-strict .x-ie7 .x-tab-default-bottom-tl,.x-strict .x-ie7 .x-tab-default-bottom-bl{position:relative;right:0}.x-tab-default-bottom:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"}.x-tab-default-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: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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-color:#616f8c}.x-tab-default-left-mc{background-color:#616f8c}.x-nbr .x-tab-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tab-default-left-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x-tab-default-left-tl{background-position:0 -8px}.x-tab-default-left-tr{background-position:right -12px}.x-tab-default-left-bl{background-position:0 -16px}.x-tab-default-left-br{background-position:right -20px}.x-tab-default-left-ml{background-position:0 top}.x-tab-default-left-mr{background-position:right top}.x-tab-default-left-tc{background-position:0 0}.x-tab-default-left-bc{background-position:0 -4px}.x-tab-default-left-tr,.x-tab-default-left-br,.x-tab-default-left-mr{padding-right:4px}.x-tab-default-left-tl,.x-tab-default-left-bl,.x-tab-default-left-ml{padding-left:4px}.x-tab-default-left-tc{height:4px}.x-tab-default-left-bc{height:0}.x-tab-default-left-tl,.x-tab-default-left-bl,.x-tab-default-left-tr,.x-tab-default-left-br,.x-tab-default-left-tc,.x-tab-default-left-bc,.x-tab-default-left-ml,.x-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-left-ml,.x-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif);background-repeat:repeat-y}.x-tab-default-left-mc{padding:0 6px 3px 6px}.x-strict .x-ie7 .x-tab-default-left-tl,.x-strict .x-ie7 .x-tab-default-left-bl{position:relative;right:0}.x-tab-default-left:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x-tab-default-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: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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-color:#616f8c}.x-tab-default-right-mc{background-color:#616f8c}.x-nbr .x-tab-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tab-default-right-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x-tab-default-right-tl{background-position:0 -8px}.x-tab-default-right-tr{background-position:right -12px}.x-tab-default-right-bl{background-position:0 -16px}.x-tab-default-right-br{background-position:right -20px}.x-tab-default-right-ml{background-position:0 top}.x-tab-default-right-mr{background-position:right top}.x-tab-default-right-tc{background-position:0 0}.x-tab-default-right-bc{background-position:0 -4px}.x-tab-default-right-tr,.x-tab-default-right-br,.x-tab-default-right-mr{padding-right:4px}.x-tab-default-right-tl,.x-tab-default-right-bl,.x-tab-default-right-ml{padding-left:4px}.x-tab-default-right-tc{height:4px}.x-tab-default-right-bc{height:0}.x-tab-default-right-tl,.x-tab-default-right-bl,.x-tab-default-right-tr,.x-tab-default-right-br,.x-tab-default-right-tc,.x-tab-default-right-bc,.x-tab-default-right-ml,.x-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-right-ml,.x-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif);background-repeat:repeat-y}.x-tab-default-right-mc{padding:0 6px 3px 6px}.x-strict .x-ie7 .x-tab-default-right-tl,.x-strict .x-ie7 .x-tab-default-right-bl{position:relative;right:0}.x-tab-default-right:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x-tab-default{border-color:#2e3746;margin:0 0 0 2px;cursor:pointer}.x-tab-default .x-tab-inner{font-size:14px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;color:white;line-height:13px}.x-tab-default .x-tab-icon-el{width:16px;height:16px;line-height:16px;background-position:center center}.x-tab-default .x-tab-glyph{font-size:16px;color:white;opacity:.5}.x-ie8m .x-tab-default .x-tab-glyph{color:#b0b7c5}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default{padding-left:0}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-button{padding-left:9px}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-icon-el{left:9px}.x-tab-default-icon .x-tab-inner{width:16px}.x-tab-default-left{margin:0 2px 0 0}.x-tab-default-top,.x-tab-default-left,.x-tab-default-right{border-bottom:1px solid #18181a}.x-tab-default-bottom{border-top:1px solid #18181a}.x-tab-default-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-tab-default-left{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.x-tab-default-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-tab-default-right{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.x-tab-default-icon-text-left .x-tab-inner{padding-left:20px}.x-tab-default-over{background-color:#6d7b9a}.x-tab-default-over .x-tab-glyph{color:white}.x-ie8m .x-tab-default-over .x-tab-glyph{color:#b6bdcc}.x-tab-default-active{border-color:#74400e;background-color:#ed9200}.x-tab-default-active .x-tab-glyph{color:white}.x-ie8m .x-tab-default-active .x-tab-glyph{color:#f6c87f}.x-tab-default-top-active,.x-tab-default-left-active,.x-tab-default-right-active{border-bottom:1px solid #ed9200}.x-tab-default-bottom-active{border-top:1px solid #ed9200}.x-tab-default-disabled{border-color:#39445a;cursor:default}.x-tab-default-disabled .x-tab-inner{color:#c3b3b3}.x-tab-default-disabled .x-tab-icon-el{filter:alpha(opacity=50);opacity:.5}.x-tab-default-disabled .x-tab-glyph{color:#c3b3b3;opacity:.3;filter:none}.x-ie8m .x-tab-default-disabled .x-tab-glyph{color:#697390}.x-tab-default-top-disabled,.x-tab-default-left-disabled,.x-tab-default-right-disabled{border-color:#39445a #39445a #18181a}.x-tab-default-bottom-disabled{border-color:#18181a #39445a #39445a #39445a}.x-nbr .x-tab-default{background-image:none}.x-tab-default-top-over .x-frame-tl,.x-tab-default-top-over .x-frame-bl,.x-tab-default-top-over .x-frame-tr,.x-tab-default-top-over .x-frame-br,.x-tab-default-top-over .x-frame-tc,.x-tab-default-top-over .x-frame-bc,.x-tab-default-left-over .x-frame-tl,.x-tab-default-left-over .x-frame-bl,.x-tab-default-left-over .x-frame-tr,.x-tab-default-left-over .x-frame-br,.x-tab-default-left-over .x-frame-tc,.x-tab-default-left-over .x-frame-bc,.x-tab-default-right-over .x-frame-tl,.x-tab-default-right-over .x-frame-bl,.x-tab-default-right-over .x-frame-tr,.x-tab-default-right-over .x-frame-br,.x-tab-default-right-over .x-frame-tc,.x-tab-default-right-over .x-frame-bc{background-image:url(images/tab/tab-default-top-over-corners.gif)}.x-tab-default-top-over .x-frame-ml,.x-tab-default-top-over .x-frame-mr,.x-tab-default-left-over .x-frame-ml,.x-tab-default-left-over .x-frame-mr,.x-tab-default-right-over .x-frame-ml,.x-tab-default-right-over .x-frame-mr{background-image:url(images/tab/tab-default-top-over-sides.gif)}.x-tab-default-top-over .x-frame-mc,.x-tab-default-left-over .x-frame-mc,.x-tab-default-right-over .x-frame-mc{background-color:#6d7b9a}.x-tab-default-bottom-over .x-frame-tl,.x-tab-default-bottom-over .x-frame-bl,.x-tab-default-bottom-over .x-frame-tr,.x-tab-default-bottom-over .x-frame-br,.x-tab-default-bottom-over .x-frame-tc,.x-tab-default-bottom-over .x-frame-bc{background-image:url(images/tab/tab-default-bottom-over-corners.gif)}.x-tab-default-bottom-over .x-frame-ml,.x-tab-default-bottom-over .x-frame-mr{background-image:url(images/tab/tab-default-bottom-over-sides.gif)}.x-tab-default-bottom-over .x-frame-mc{background-color:#6d7b9a}.x-tab-default-top-active .x-frame-tl,.x-tab-default-top-active .x-frame-bl,.x-tab-default-top-active .x-frame-tr,.x-tab-default-top-active .x-frame-br,.x-tab-default-top-active .x-frame-tc,.x-tab-default-top-active .x-frame-bc,.x-tab-default-left-active .x-frame-tl,.x-tab-default-left-active .x-frame-bl,.x-tab-default-left-active .x-frame-tr,.x-tab-default-left-active .x-frame-br,.x-tab-default-left-active .x-frame-tc,.x-tab-default-left-active .x-frame-bc,.x-tab-default-right-active .x-frame-tl,.x-tab-default-right-active .x-frame-bl,.x-tab-default-right-active .x-frame-tr,.x-tab-default-right-active .x-frame-br,.x-tab-default-right-active .x-frame-tc,.x-tab-default-right-active .x-frame-bc{background-image:url(images/tab/tab-default-top-active-corners.gif)}.x-tab-default-top-active .x-frame-ml,.x-tab-default-top-active .x-frame-mr,.x-tab-default-left-active .x-frame-ml,.x-tab-default-left-active .x-frame-mr,.x-tab-default-right-active .x-frame-ml,.x-tab-default-right-active .x-frame-mr{background-image:url(images/tab/tab-default-top-active-sides.gif)}.x-tab-default-top-active .x-frame-mc,.x-tab-default-left-active .x-frame-mc,.x-tab-default-right-active .x-frame-mc{background-color:#ed9200}.x-tab-default-bottom-active .x-frame-tl,.x-tab-default-bottom-active .x-frame-bl,.x-tab-default-bottom-active .x-frame-tr,.x-tab-default-bottom-active .x-frame-br,.x-tab-default-bottom-active .x-frame-tc,.x-tab-default-bottom-active .x-frame-bc{background-image:url(images/tab/tab-default-bottom-active-corners.gif)}.x-tab-default-bottom-active .x-frame-ml,.x-tab-default-bottom-active .x-frame-mr{background-image:url(images/tab/tab-default-bottom-active-sides.gif)}.x-tab-default-bottom-active .x-frame-mc{background-color:#ed9200}.x-tab-default-top-disabled .x-frame-tl,.x-tab-default-top-disabled .x-frame-bl,.x-tab-default-top-disabled .x-frame-tr,.x-tab-default-top-disabled .x-frame-br,.x-tab-default-top-disabled .x-frame-tc,.x-tab-default-top-disabled .x-frame-bc,.x-tab-default-left-disabled .x-frame-tl,.x-tab-default-left-disabled .x-frame-bl,.x-tab-default-left-disabled .x-frame-tr,.x-tab-default-left-disabled .x-frame-br,.x-tab-default-left-disabled .x-frame-tc,.x-tab-default-left-disabled .x-frame-bc,.x-tab-default-right-disabled .x-frame-tl,.x-tab-default-right-disabled .x-frame-bl,.x-tab-default-right-disabled .x-frame-tr,.x-tab-default-right-disabled .x-frame-br,.x-tab-default-right-disabled .x-frame-tc,.x-tab-default-right-disabled .x-frame-bc{background-image:url(images/tab/tab-default-top-disabled-corners.gif)}.x-tab-default-top-disabled .x-frame-ml,.x-tab-default-top-disabled .x-frame-mr,.x-tab-default-left-disabled .x-frame-ml,.x-tab-default-left-disabled .x-frame-mr,.x-tab-default-right-disabled .x-frame-ml,.x-tab-default-right-disabled .x-frame-mr{background-image:url(images/tab/tab-default-top-disabled-sides.gif)}.x-tab-default-top-disabled .x-frame-mc,.x-tab-default-left-disabled .x-frame-mc,.x-tab-default-right-disabled .x-frame-mc{background-color:#435881}.x-tab-default-bottom-disabled .x-frame-tl,.x-tab-default-bottom-disabled .x-frame-bl,.x-tab-default-bottom-disabled .x-frame-tr,.x-tab-default-bottom-disabled .x-frame-br,.x-tab-default-bottom-disabled .x-frame-tc,.x-tab-default-bottom-disabled .x-frame-bc{background-image:url(images/tab/tab-default-bottom-disabled-corners.gif)}.x-tab-default-bottom-disabled .x-frame-ml,.x-tab-default-bottom-disabled .x-frame-mr{background-image:url(images/tab/tab-default-bottom-disabled-sides.gif)}.x-tab-default-bottom-disabled .x-frame-mc{background-color:#435881}.x-nbr .x-tab-default-top,.x-nbr .x-tab-default-left,.x-nbr .x-tab-default-right{border-bottom-width:1px!important}.x-nbr .x-tab-default-bottom{border-top-width:1px!important}.x-tab-default .x-tab-close-btn{width:11px;height:11px;background-image:url(images/tab/tab-default-close.gif);filter:alpha(opacity=60);opacity:.6}.x-tab-default .x-tab-close-btn-over{filter:alpha(opacity=100);opacity:1}.x-tab-default .x-tab-close-btn{top:2px;right:2px}.x-tab-default-disabled .x-tab-close-btn{filter:alpha(opacity=30);opacity:.3}.x-tab-default-closable .x-tab-wrap{padding-right:14px}.x-tab-default-top-over:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif)"}.x-tab-default-bottom-over:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif)"}.x-tab-default-top-active:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif)"}.x-tab-default-bottom-active:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif)"}.x-tab-default-top-disabled:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif)"}.x-tab-default-bottom-disabled:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif)"}.x-tab-bar-default{border-style:solid;border-color:#18181a}.x-tab-bar-default-top{padding:1px 0 0;border-width:1px 1px 0}.x-tab-bar-default-bottom{padding:0 0 1px 0;border-width:0 1px 1px 1px}.x-tab-bar-default-left{padding:0 0 0 1px;border-width:1px 0 1px 1px}.x-tab-bar-default-right{padding:0 1px 0 0;border-width:1px 1px 1px 0}.x-tab-bar-default-horizontal{height:25px}.x-content-box .x-tab-bar-default-horizontal{height:23px}.x-tab-bar-default-vertical{width:25px}.x-content-box .x-tab-bar-default-vertical{width:23px}.x-tab-bar-body-default-top{padding-bottom:2px}.x-tab-bar-body-default-bottom{padding-top:2px}.x-tab-bar-body-default-left{padding-right:2px}.x-tab-bar-body-default-right{padding-left:2px}.x-tab-bar-strip-default{border-style:solid;border-color:#18181a;background-color:#ed9200}.x-content-box .x-tab-bar-strip-default-horizontal{height:2px}.x-content-box .x-tab-bar-strip-default-vertical{width:2px}.x-tab-bar-strip-default-top{border-width:1px 0 0 0;height:3px}.x-tab-bar-plain .x-tab-bar-strip-default-top{border-width:1px 1px 0}.x-tab-bar-strip-default-bottom{border-width:0 0 1px 0;height:3px}.x-tab-bar-plain .x-tab-bar-strip-default-bottom{border-width:0 1px 1px 1px}.x-tab-bar-strip-default-left{border-width:0 0 0 1px;width:3px}.x-tab-bar-plain .x-tab-bar-strip-default-left{border-width:1px 0 1px 1px}.x-tab-bar-strip-default-right{border-width:0 1px 0 0;width:3px}.x-tab-bar-plain .x-tab-bar-strip-default-right{border-width:1px 1px 1px 0}.x-tab-bar-default{background-color:#474e5c}.x-tab-bar-default-top{background-image:none;background-color:#474e5c;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4f596c),color-stop(100%,#474e5c));background-image:-webkit-linear-gradient(top,#4f596c,#474e5c);background-image:-moz-linear-gradient(top,#4f596c,#474e5c);background-image:-o-linear-gradient(top,#4f596c,#474e5c);background-image:linear-gradient(top,#4f596c,#474e5c)}.x-nlg .x-tab-bar-default-top{background:url(images/tab-bar/tab-bar-default-top-bg.gif)}.x-tab-bar-default-bottom{background-image:none;background-color:#474e5c;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#4f596c),color-stop(100%,#474e5c));background-image:-webkit-linear-gradient(bottom,#4f596c,#474e5c);background-image:-moz-linear-gradient(bottom,#4f596c,#474e5c);background-image:-o-linear-gradient(bottom,#4f596c,#474e5c);background-image:linear-gradient(bottom,#4f596c,#474e5c)}.x-nlg .x-tab-bar-default-bottom{background:url(images/tab-bar/tab-bar-default-bottom-bg.gif) bottom 0}.x-tab-bar-default-left{background-image:none;background-color:#474e5c;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#4f596c),color-stop(100%,#474e5c));background-image:-webkit-linear-gradient(left,#4f596c,#474e5c);background-image:-moz-linear-gradient(left,#4f596c,#474e5c);background-image:-o-linear-gradient(left,#4f596c,#474e5c);background-image:linear-gradient(left,#4f596c,#474e5c)}.x-nlg .x-tab-bar-default-left{background:url(images/tab-bar/tab-bar-default-left-bg.gif)}.x-tab-bar-default-right{background-image:none;background-color:#474e5c;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#4f596c),color-stop(100%,#474e5c));background-image:-webkit-linear-gradient(right,#4f596c,#474e5c);background-image:-moz-linear-gradient(right,#4f596c,#474e5c);background-image:-o-linear-gradient(right,#4f596c,#474e5c);background-image:linear-gradient(right,#4f596c,#474e5c)}.x-nlg .x-tab-bar-default-right{background:url(images/tab-bar/tab-bar-default-right-bg.gif) 0 right}.x-tab-bar-default .x-box-scroller{cursor:pointer}.x-tab-bar-default .x-tabbar-scroll-left,.x-tab-bar-default .x-tabbar-scroll-right{height:20px;width:18px}.x-tab-bar-default .x-tabbar-scroll-top,.x-tab-bar-default .x-tabbar-scroll-bottom{width:20px;height:18px}.x-tab-bar-default-bottom .x-box-scroller{margin-top:1px}.x-tab-bar-default-right .x-box-scroller{margin-left:1px}.x-tab-bar-default-top .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-left-top.gif)}.x-tab-bar-default-top .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-right-top.gif)}.x-tab-bar-default-bottom .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-left-bottom.gif)}.x-tab-bar-default-bottom .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-right-bottom.gif)}.x-tab-bar-default-left .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-left.gif)}.x-tab-bar-default-left .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-left.gif)}.x-tab-bar-default-right .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-right.gif)}.x-tab-bar-default-right .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-right.gif)}.x-tab-bar-default .x-tabbar-scroll-left-hover,.x-tab-bar-default .x-tabbar-scroll-right-hover{background-position:-18px 0}.x-tab-bar-default .x-tabbar-scroll-top-hover,.x-tab-bar-default .x-tabbar-scroll-bottom-hover{background-position:0 -18px}.x-tab-bar-default .x-box-scroller-disabled{filter:alpha(opacity=50);opacity:.5;cursor:default}.x-tab-bar-default-top:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-top-bg.gif), stretch:bottom"}.x-tab-bar-default-bottom:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-bottom-bg.gif), stretch:top"}.x-tab-bar-default-left:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-left-bg.gif), stretch:right"}.x-tab-bar-default-right:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-right-bg.gif), stretch:left"}.x-tab-bar-plain{border-width:0;padding:0;height:23px}.x-column-header-checkbox{border-color:#373c4b}.x-grid-row-checker,.x-column-header-checkbox .x-column-header-text{height:19px;width:19px;background-image:url(images/form/checkbox.gif);line-height:19px}.x-column-header-checkbox .x-column-header-inner{padding:3px 5px 3px 5px}.x-grid-cell-row-checker .x-grid-cell-inner{padding:2px 5px 1px 5px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-row-checker .x-grid-cell-inner{padding-top:1px;padding-bottom:0}.x-grid-hd-checker-on .x-column-header-text,.x-grid-row-selected .x-grid-row-checker,.x-grid-row-checked .x-grid-row-checker{background-position:0 -19px}.x-tree-expander{cursor:pointer}.x-tree-arrows .x-tree-expander{background-image:url(images/tree/arrows.gif)}.x-tree-arrows .x-tree-expander-over .x-tree-expander{background-position:-32px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander{background-position:-16px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander{background-position:-48px center}.x-tree-lines .x-tree-elbow{background-image:url(images/tree/elbow.gif)}.x-tree-lines .x-tree-elbow-end{background-image:url(images/tree/elbow-end.gif)}.x-tree-lines .x-tree-elbow-plus{background-image:url(images/tree/elbow-plus.gif)}.x-tree-lines .x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-plus.gif)}.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus{background-image:url(images/tree/elbow-minus.gif)}.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-minus.gif)}.x-tree-lines .x-tree-elbow-line{background-image:url(images/tree/elbow-line.gif)}.x-tree-no-row-lines .x-tree-expander{background-image:url(images/tree/elbow-plus-nl.gif)}.x-tree-no-row-lines .x-grid-tree-node-expanded .x-tree-expander{background-image:url(images/tree/elbow-minus-nl.gif)}.x-tree-icon{width:16px;height:22px}.x-tree-elbow-img{width:16px;height:22px;margin-right:0}.x-tree-icon,.x-tree-elbow-img,.x-tree-checkbox{margin-top:-2px;margin-bottom:-3px}.x-tree-icon-leaf{background-image:url(images/tree/leaf.gif)}.x-tree-icon-parent{background-image:url(images/tree/folder.gif)}.x-grid-tree-node-expanded .x-tree-icon-parent{background-image:url(images/tree/folder-open.gif)}.x-tree-checkbox{margin-right:3px;top:2px;width:19px;height:19px;background-image:url(images/form/checkbox.gif)}.x-tree-checkbox-checked{background-position:0 -19px}.x-grid-tree-loading .x-tree-icon{background-image:url(images/tree/loading.gif)}.x-grid-cell-inner-treecolumn{font-size:1px;line-height:0}.x-tree-node-text{font-size:14px;line-height:17px;padding-left:3px}.x-grid-cell-inner-treecolumn{padding:2px 6px 3px 0}.x-tree-drop-ok-append .x-dd-drop-icon{background-image:url(images/tree/drop-append.gif)}.x-tree-drop-ok-above .x-dd-drop-icon{background-image:url(images/tree/drop-above.gif)}.x-tree-drop-ok-below .x-dd-drop-icon{background-image:url(images/tree/drop-below.gif)}.x-tree-drop-ok-between .x-dd-drop-icon{background-image:url(images/tree/drop-between.gif)}.x-tree-ddindicator{height:1px;border-width:1px 0 0;border-style:dotted;border-color:green}.x-box-tl{background:transparent no-repeat 0 0;zoom:1}.x-box-tc{height:8px;background:transparent repeat-x 0 0;overflow:hidden}.x-box-tr{background:transparent no-repeat right -8px}.x-box-ml{background:transparent repeat-y 0;padding-left:4px;overflow:hidden;zoom:1}.x-box-mc{background:repeat-x 0 -16px;padding:4px 10px}.x-box-mc h3{margin:0 0 4px 0;zoom:1}.x-box-mr{background:transparent repeat-y right;padding-right:4px;overflow:hidden}.x-box-bl{background:transparent no-repeat 0 -16px;zoom:1}.x-box-bc{background:transparent repeat-x 0 -8px;height:8px;overflow:hidden}.x-box-br{background:transparent no-repeat right -24px}.x-box-tl,.x-box-bl{padding-left:8px;overflow:hidden}.x-box-tr,.x-box-br{padding-right:8px;overflow:hidden}.x-box-tl{background-image:url(images/box/corners.gif)}.x-box-tc{background-image:url(images/box/tb.gif)}.x-box-tr{background-image:url(images/box/corners.gif)}.x-box-ml{background-image:url(images/box/l.gif)}.x-box-mc{background-color:#eee;background-image:url(images/box/tb.gif);font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:15px}.x-box-mc h3{font-size:18px;font-weight:bold}.x-box-mr{background-image:url(images/box/r.gif)}.x-box-bl{background-image:url(images/box/corners.gif)}.x-box-bc{background-image:url(images/box/tb.gif)}.x-box-br{background-image:url(images/box/corners.gif)}.x-box-blue .x-box-bl,.x-box-blue .x-box-br,.x-box-blue .x-box-tl,.x-box-blue .x-box-tr{background-image:url(images/box/corners-blue.gif)}.x-box-blue .x-box-bc,.x-box-blue .x-box-mc,.x-box-blue .x-box-tc{background-image:url(images/box/tb-blue.gif)}.x-box-blue .x-box-mc{background-color:#c3daf9}.x-box-blue .x-box-mc h3{color:#17385b}.x-box-blue .x-box-ml{background-image:url(images/box/l-blue.gif)}.x-box-blue .x-box-mr{background-image:url(images/box/r-blue.gif)}.x-message-box .x-msg-box-wait{background-image:url(images/shared/blue-loading.gif)}.x-form-trigger{height:26px}.x-content-box .x-form-trigger{height:24px}.x-field-toolbar .x-form-trigger{height:24px}.x-content-box .x-field-toolbar .x-form-trigger{height:22px}.x-content-box div.x-form-spinner-up,.x-content-box div.x-form-spinner-down{height:11px}.x-content-box .x-toolbar-item div.x-form-spinner-up,.x-content-box .x-toolbar-item div.x-form-spinner-down{height:10px}.x-html-editor-wrap .x-toolbar{border-left-color:#737b8c;border-top-color:#737b8c;border-right-color:#737b8c}.x-html-editor-input{border:1px solid #737b8c;border-top-width:0}.x-column-header-trigger{background-color:#373c4b;background-image:url(images/grid/grid3-hd-btn.gif)}.x-content-box .x-grid-editor .x-form-trigger{height:20px}.x-grid-editor .x-form-spinner-up,.x-grid-editor .x-form-spinner-down{background-image:url(images/form/spinner-small.gif)}.x-content-box .x-grid-editor .x-form-spinner-up,.x-content-box .x-grid-editor .x-form-spinner-down{height:9px}.x-accordion-hd{border-width:1px 0!important;-webkit-box-shadow:inset 0 0 0 0 #5c6b82;-moz-box-shadow:inset 0 0 0 0 #5c6b82;box-shadow:inset 0 0 0 0 #5c6b82}.x-accordion-hd-sibling-expanded{-webkit-box-shadow:inset 0 1px 0 0 #606877;-moz-box-shadow:inset 0 1px 0 0 #606877;box-shadow:inset 0 1px 0 0 #606877}.x-resizable-over .x-resizable-handle-east,.x-resizable-over .x-resizable-handle-west,.x-resizable-pinned .x-resizable-handle-east,.x-resizable-pinned .x-resizable-handle-west{background-position:left}.x-resizable-over .x-resizable-handle-south,.x-resizable-over .x-resizable-handle-north,.x-resizable-pinned .x-resizable-handle-south,.x-resizable-pinned .x-resizable-handle-north{background-position:top}.x-resizable-over .x-resizable-handle-southeast,.x-resizable-pinned .x-resizable-handle-southeast{background-position:top left}.x-resizable-over .x-resizable-handle-northwest,.x-resizable-pinned .x-resizable-handle-northwest{background-position:bottom right}.x-resizable-over .x-resizable-handle-northeast,.x-resizable-pinned .x-resizable-handle-northeast{background-position:bottom left}.x-resizable-over .x-resizable-handle-southwest,.x-resizable-pinned .x-resizable-handle-southwest{background-position:top right}.x-ie6 .x-slider-horz,.x-ie6 .x-slider-horz .x-slider-end,.x-ie6 .x-slider-horz .x-slider-inner{background-image:url(images/slider/slider-bg.gif)}.x-ie6 .x-slider-horz .x-slider-thumb{background-image:url(images/slider/slider-thumb.gif)}.x-ie6 .x-slider-vert,.x-ie6 .x-slider-vert .x-slider-end,.x-ie6 .x-slider-vert .x-slider-inner{background-image:url(images/slider/slider-v-bg.gif)}.x-ie6 .x-slider-vert .x-slider-thumb{background-image:url(images/slider/slider-v-thumb.gif)}.x-tab-icon-el{top:-1px}.x-tab-noicon .x-tab-icon{display:none} \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/boundlist/trigger-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/boundlist/trigger-arrow.png new file mode 100644 index 0000000..11daac3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/boundlist/trigger-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/corners-blue.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/corners-blue.gif new file mode 100644 index 0000000..fa419b5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/corners-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/corners.gif new file mode 100644 index 0000000..8aa8cae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/l-blue.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/l-blue.gif new file mode 100644 index 0000000..5ed7f00 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/l-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/l.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/l.gif new file mode 100644 index 0000000..0160f97 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/l.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/r-blue.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/r-blue.gif new file mode 100644 index 0000000..3ea5cae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/r-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/r.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/r.gif new file mode 100644 index 0000000..34237f6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/r.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/tb-blue.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/tb-blue.gif new file mode 100644 index 0000000..4b1382c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/tb-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/tb.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/tb.gif new file mode 100644 index 0000000..435889b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/box/tb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn-group/btn-group-default-framed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn-group/btn-group-default-framed-corners.gif new file mode 100644 index 0000000..f33c882 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn-group/btn-group-default-framed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn-group/btn-group-default-framed-notitle-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn-group/btn-group-default-framed-notitle-corners.gif new file mode 100644 index 0000000..f33c882 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn-group/btn-group-default-framed-notitle-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn-group/btn-group-default-framed-notitle-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn-group/btn-group-default-framed-notitle-sides.gif new file mode 100644 index 0000000..0a1f2b2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn-group/btn-group-default-framed-notitle-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn-group/btn-group-default-framed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn-group/btn-group-default-framed-sides.gif new file mode 100644 index 0000000..134f7f7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn-group/btn-group-default-framed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-bg.gif new file mode 100644 index 0000000..95fb247 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-corners.gif new file mode 100644 index 0000000..2f74225 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-disabled-bg.gif new file mode 100644 index 0000000..97f7ebb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-disabled-corners.gif new file mode 100644 index 0000000..ec2c77f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-disabled-fbg.gif new file mode 100644 index 0000000..15ccae1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-disabled-sides.gif new file mode 100644 index 0000000..4ac5209 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-fbg.gif new file mode 100644 index 0000000..5bf189f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-focus-bg.gif new file mode 100644 index 0000000..e4c26ae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-focus-corners.gif new file mode 100644 index 0000000..c5fc52c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-focus-fbg.gif new file mode 100644 index 0000000..cfc9e58 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-focus-sides.gif new file mode 100644 index 0000000..8cdf690 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-over-bg.gif new file mode 100644 index 0000000..e4c26ae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-over-corners.gif new file mode 100644 index 0000000..c5fc52c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-over-fbg.gif new file mode 100644 index 0000000..cfc9e58 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-over-sides.gif new file mode 100644 index 0000000..8cdf690 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-pressed-bg.gif new file mode 100644 index 0000000..313fd0b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-pressed-corners.gif new file mode 100644 index 0000000..c00b914 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-pressed-fbg.gif new file mode 100644 index 0000000..04ed4e1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-pressed-sides.gif new file mode 100644 index 0000000..a4cabb7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-sides.gif new file mode 100644 index 0000000..10e23bd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-large-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-bg.gif new file mode 100644 index 0000000..6615f10 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-corners.gif new file mode 100644 index 0000000..2f74225 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-disabled-bg.gif new file mode 100644 index 0000000..e0821a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-disabled-corners.gif new file mode 100644 index 0000000..ec2c77f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-disabled-fbg.gif new file mode 100644 index 0000000..4a45f72 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-disabled-sides.gif new file mode 100644 index 0000000..b382170 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-fbg.gif new file mode 100644 index 0000000..f47d0e1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-focus-bg.gif new file mode 100644 index 0000000..5f72f89 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-focus-corners.gif new file mode 100644 index 0000000..b3f79e8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-focus-fbg.gif new file mode 100644 index 0000000..74e0d62 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-focus-sides.gif new file mode 100644 index 0000000..06e8886 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-over-bg.gif new file mode 100644 index 0000000..5f72f89 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-over-corners.gif new file mode 100644 index 0000000..b3f79e8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-over-fbg.gif new file mode 100644 index 0000000..74e0d62 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-over-sides.gif new file mode 100644 index 0000000..06e8886 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-pressed-bg.gif new file mode 100644 index 0000000..5c53737 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-pressed-corners.gif new file mode 100644 index 0000000..2b7626e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-pressed-fbg.gif new file mode 100644 index 0000000..4f83ca0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-pressed-sides.gif new file mode 100644 index 0000000..f581ace Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-sides.gif new file mode 100644 index 0000000..3d18964 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-medium-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-bg.gif new file mode 100644 index 0000000..49eaabd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-corners.gif new file mode 100644 index 0000000..5dae417 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-disabled-bg.gif new file mode 100644 index 0000000..fc5c670 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-disabled-corners.gif new file mode 100644 index 0000000..ec2c77f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-disabled-fbg.gif new file mode 100644 index 0000000..555b0ec Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-disabled-sides.gif new file mode 100644 index 0000000..e6fa782 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-fbg.gif new file mode 100644 index 0000000..1e1a179 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-focus-bg.gif new file mode 100644 index 0000000..9008bf3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-focus-corners.gif new file mode 100644 index 0000000..003955b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-focus-fbg.gif new file mode 100644 index 0000000..1681432 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-focus-sides.gif new file mode 100644 index 0000000..f807d54 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-over-bg.gif new file mode 100644 index 0000000..9008bf3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-over-corners.gif new file mode 100644 index 0000000..cb371ec Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-over-fbg.gif new file mode 100644 index 0000000..1681432 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-over-sides.gif new file mode 100644 index 0000000..f807d54 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-pressed-bg.gif new file mode 100644 index 0000000..6215a7c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-pressed-corners.gif new file mode 100644 index 0000000..f8f9216 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-pressed-fbg.gif new file mode 100644 index 0000000..67de774 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-pressed-sides.gif new file mode 100644 index 0000000..8cf895b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-sides.gif new file mode 100644 index 0000000..8b8f659 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-small-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-disabled-corners.gif new file mode 100644 index 0000000..3c9023f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-disabled-sides.gif new file mode 100644 index 0000000..a7b525b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-focus-corners.gif new file mode 100644 index 0000000..7ce5426 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-focus-sides.gif new file mode 100644 index 0000000..6e2d848 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-over-corners.gif new file mode 100644 index 0000000..7ce5426 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-over-sides.gif new file mode 100644 index 0000000..6e2d848 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-pressed-corners.gif new file mode 100644 index 0000000..f18c41c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-pressed-sides.gif new file mode 100644 index 0000000..285621f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-large-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-disabled-corners.gif new file mode 100644 index 0000000..6698278 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-disabled-sides.gif new file mode 100644 index 0000000..a7b525b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-focus-corners.gif new file mode 100644 index 0000000..e88075e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-focus-sides.gif new file mode 100644 index 0000000..6e2d848 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-over-corners.gif new file mode 100644 index 0000000..e88075e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-over-sides.gif new file mode 100644 index 0000000..6e2d848 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-pressed-corners.gif new file mode 100644 index 0000000..42ecd2a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-pressed-sides.gif new file mode 100644 index 0000000..285621f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-medium-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-disabled-corners.gif new file mode 100644 index 0000000..a92206e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-disabled-sides.gif new file mode 100644 index 0000000..a7b525b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-focus-corners.gif new file mode 100644 index 0000000..e88075e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-focus-sides.gif new file mode 100644 index 0000000..6e2d848 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-over-corners.gif new file mode 100644 index 0000000..e88075e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-over-sides.gif new file mode 100644 index 0000000..6e2d848 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-pressed-corners.gif new file mode 100644 index 0000000..42ecd2a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-pressed-sides.gif new file mode 100644 index 0000000..285621f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/btn/btn-default-toolbar-small-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/arrow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/arrow.gif new file mode 100644 index 0000000..087b450 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/arrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/btn.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/btn.gif new file mode 100644 index 0000000..3e705ba Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/group-cs.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/group-cs.gif new file mode 100644 index 0000000..aaf0d46 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/group-cs.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/group-lr.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/group-lr.gif new file mode 100644 index 0000000..374ea75 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/group-lr.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/group-tb.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/group-tb.gif new file mode 100644 index 0000000..50a9972 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/group-tb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-b-noline.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-b-noline.gif new file mode 100644 index 0000000..644e9f3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-b-noline.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-b.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-b.gif new file mode 100644 index 0000000..ba55d0a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-b.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-bo.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-bo.gif new file mode 100644 index 0000000..c672b60 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-bo.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-light-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-light-rtl.gif new file mode 100644 index 0000000..cfa5ca3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-light-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-light.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-light.gif new file mode 100644 index 0000000..08783c9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-light.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-noline-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-noline-rtl.gif new file mode 100644 index 0000000..d40febb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-noline-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-noline.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-noline.gif new file mode 100644 index 0000000..f3cd351 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-noline.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-o-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-o-rtl.gif new file mode 100644 index 0000000..e3b4667 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-o-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-o.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-o.gif new file mode 100644 index 0000000..4bdafd0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-o.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-rtl.gif new file mode 100644 index 0000000..e074cab Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow.gif new file mode 100644 index 0000000..a77be7f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/button/s-arrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/datepicker/datepicker-footer-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/datepicker/datepicker-footer-bg.gif new file mode 100644 index 0000000..ebdd63c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/datepicker/datepicker-footer-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/datepicker/datepicker-header-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/datepicker/datepicker-header-bg.gif new file mode 100644 index 0000000..97ffd86 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/datepicker/datepicker-header-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/dd/drop-add.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/dd/drop-add.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/dd/drop-add.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/dd/drop-between.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/dd/drop-between.gif new file mode 100644 index 0000000..5c6c09d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/dd/drop-between.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/dd/drop-no.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/dd/drop-no.gif new file mode 100644 index 0000000..9d9c6a9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/dd/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/dd/drop-over.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/dd/drop-over.gif new file mode 100644 index 0000000..30d1ca7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/dd/drop-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/dd/drop-under.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/dd/drop-under.gif new file mode 100644 index 0000000..85f66b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/dd/drop-under.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/dd/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/dd/drop-yes.gif new file mode 100644 index 0000000..8aacb30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/dd/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/editor/tb-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/editor/tb-sprite.gif new file mode 100644 index 0000000..bd4011d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/editor/tb-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/checkbox.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/checkbox.gif new file mode 100644 index 0000000..baf44f9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/checkbox.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/clear-trigger-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/clear-trigger-rtl.gif new file mode 100644 index 0000000..9f033d2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/clear-trigger-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/clear-trigger.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/clear-trigger.gif new file mode 100644 index 0000000..9bfd184 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/clear-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/date-trigger-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/date-trigger-rtl.gif new file mode 100644 index 0000000..e1c74b3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/date-trigger-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/date-trigger.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/date-trigger.gif new file mode 100644 index 0000000..048506d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/date-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/error-tip-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/error-tip-corners.gif new file mode 100644 index 0000000..6ea4c38 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/error-tip-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/exclamation.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/exclamation.gif new file mode 100644 index 0000000..daa88b8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/exclamation.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/radio.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/radio.gif new file mode 100644 index 0000000..1d7fd15 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/radio.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/search-trigger-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/search-trigger-rtl.gif new file mode 100644 index 0000000..39cdc0d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/search-trigger-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/search-trigger.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/search-trigger.gif new file mode 100644 index 0000000..ab8b3b4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/search-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/spinner-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/spinner-rtl.gif new file mode 100644 index 0000000..e8265fe Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/spinner-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/spinner-small-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/spinner-small-rtl.gif new file mode 100644 index 0000000..e8265fe Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/spinner-small-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/spinner-small.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/spinner-small.gif new file mode 100644 index 0000000..c0944f9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/spinner-small.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/spinner.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/spinner.gif new file mode 100644 index 0000000..c0944f9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/spinner.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/text-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/text-bg.gif new file mode 100644 index 0000000..4ce90bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/text-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/trigger-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/trigger-rtl.gif new file mode 100644 index 0000000..38a423c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/trigger-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/trigger-square-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/trigger-square-rtl.gif new file mode 100644 index 0000000..6b23d18 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/trigger-square-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/trigger-square.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/trigger-square.gif new file mode 100644 index 0000000..3004ec5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/trigger-square.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/trigger-tpl-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/trigger-tpl-rtl.gif new file mode 100644 index 0000000..3fd852d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/trigger-tpl-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/trigger-tpl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/trigger-tpl.gif new file mode 100644 index 0000000..2574ead Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/trigger-tpl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/trigger.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/trigger.gif new file mode 100644 index 0000000..bd25572 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/form/trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif new file mode 100644 index 0000000..75821c1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif new file mode 100644 index 0000000..c6ef154 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif new file mode 100644 index 0000000..cbc3b1f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif new file mode 100644 index 0000000..c6ef154 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/arrow-left-white.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/arrow-left-white.gif new file mode 100644 index 0000000..63088f5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/arrow-left-white.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/arrow-right-white.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/arrow-right-white.gif new file mode 100644 index 0000000..e9e0678 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/arrow-right-white.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/cell-special-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/cell-special-bg.gif new file mode 100644 index 0000000..d76ffbc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/cell-special-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/cell-special-bg.png b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/cell-special-bg.png new file mode 100644 index 0000000..0bcc236 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/cell-special-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/cell-special-selected-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/cell-special-selected-bg.gif new file mode 100644 index 0000000..291a404 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/cell-special-selected-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/cell-special-selected-bg.png b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/cell-special-selected-bg.png new file mode 100644 index 0000000..500c3bd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/cell-special-selected-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/col-move-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/col-move-bottom.gif new file mode 100644 index 0000000..cc1e473 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/col-move-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/col-move-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/col-move-top.gif new file mode 100644 index 0000000..58ff32c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/col-move-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/column-header-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/column-header-bg.gif new file mode 100644 index 0000000..f828927 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/column-header-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/column-header-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/column-header-over-bg.gif new file mode 100644 index 0000000..1322a3c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/column-header-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/columns.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/columns.gif new file mode 100644 index 0000000..2d3a823 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/columns.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/dd-insert-arrow-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/dd-insert-arrow-left.gif new file mode 100644 index 0000000..5d923b2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/dd-insert-arrow-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/dd-insert-arrow-left.png b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/dd-insert-arrow-left.png new file mode 100644 index 0000000..5dc6967 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/dd-insert-arrow-left.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/dd-insert-arrow-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/dd-insert-arrow-right.gif new file mode 100644 index 0000000..8d154db Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/dd-insert-arrow-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/dd-insert-arrow-right.png b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/dd-insert-arrow-right.png new file mode 100644 index 0000000..b1a1819 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/dd-insert-arrow-right.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/dirty-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/dirty-rtl.gif new file mode 100644 index 0000000..2f29078 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/dirty-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/dirty.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/dirty.gif new file mode 100644 index 0000000..d524ee5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/dirty.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/done.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/done.gif new file mode 100644 index 0000000..a937cb2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/done.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/drop-no.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/drop-no.gif new file mode 100644 index 0000000..31a332b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/drop-yes.gif new file mode 100644 index 0000000..926010e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/footer-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/footer-bg.gif new file mode 100644 index 0000000..126120f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/footer-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid-blue-hd.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid-blue-hd.gif new file mode 100644 index 0000000..862094e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid-blue-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid-blue-split.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid-blue-split.gif new file mode 100644 index 0000000..1b0bae3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid-blue-split.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid-hrow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid-hrow.gif new file mode 100644 index 0000000..6374104 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid-hrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid-loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid-loading.gif new file mode 100644 index 0000000..d112c54 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid-split.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid-split.gif new file mode 100644 index 0000000..c76a16e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid-split.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid-vista-hd.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid-vista-hd.gif new file mode 100644 index 0000000..d097263 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid-vista-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-hd-btn-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-hd-btn-left.gif new file mode 100644 index 0000000..5f683ab Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-hd-btn-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-hd-btn.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-hd-btn.gif new file mode 100644 index 0000000..9ecd650 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-hd-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-hrow-over.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-hrow-over.gif new file mode 100644 index 0000000..0405f6c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-hrow-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-hrow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-hrow.gif new file mode 100644 index 0000000..509737a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-hrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-rowheader.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-rowheader.gif new file mode 100644 index 0000000..2799b45 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-rowheader.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-special-col-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-special-col-bg.gif new file mode 100644 index 0000000..8ec57f5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-special-col-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-special-col-sel-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-special-col-sel-bg.gif new file mode 100644 index 0000000..93a9ca6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/grid3-special-col-sel-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/group-by.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/group-by.gif new file mode 100644 index 0000000..d6075bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/group-by.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/group-collapse.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/group-collapse.gif new file mode 100644 index 0000000..412d424 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/group-collapse.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/group-expand-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/group-expand-sprite.gif new file mode 100644 index 0000000..f230489 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/group-expand-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/group-expand.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/group-expand.gif new file mode 100644 index 0000000..1d11e3e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/group-expand.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hd-pop.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hd-pop.gif new file mode 100644 index 0000000..eb8ba79 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hd-pop.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hmenu-asc.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hmenu-asc.gif new file mode 100644 index 0000000..15058ff Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hmenu-asc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hmenu-desc.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hmenu-desc.gif new file mode 100644 index 0000000..f26b7c2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hmenu-desc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hmenu-lock.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hmenu-lock.gif new file mode 100644 index 0000000..1596126 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hmenu-lock.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hmenu-lock.png b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hmenu-lock.png new file mode 100644 index 0000000..8b81e7f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hmenu-lock.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hmenu-unlock.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hmenu-unlock.gif new file mode 100644 index 0000000..af59cf9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hmenu-unlock.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hmenu-unlock.png b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hmenu-unlock.png new file mode 100644 index 0000000..9dd5df3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/hmenu-unlock.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/invalid_line.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/invalid_line.gif new file mode 100644 index 0000000..025cffc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/invalid_line.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/loading.gif new file mode 100644 index 0000000..e846e1d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/mso-hd.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/mso-hd.gif new file mode 100644 index 0000000..669f3cf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/mso-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/nowait.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/nowait.gif new file mode 100644 index 0000000..4c5862c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/nowait.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-first-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-first-disabled.gif new file mode 100644 index 0000000..e4df7a7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-first-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-first.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-first.gif new file mode 100644 index 0000000..aa0a822 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-first.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-last-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-last-disabled.gif new file mode 100644 index 0000000..67fee75 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-last-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-last.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-last.gif new file mode 100644 index 0000000..e0cf111 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-last.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-next-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-next-disabled.gif new file mode 100644 index 0000000..e3e8e87 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-next-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-next.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-next.gif new file mode 100644 index 0000000..69899c0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-next.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-prev-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-prev-disabled.gif new file mode 100644 index 0000000..0f94bf7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-prev-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-prev.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-prev.gif new file mode 100644 index 0000000..289b126 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/page-prev.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/pick-button.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/pick-button.gif new file mode 100644 index 0000000..6957924 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/pick-button.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/property-cell-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/property-cell-bg.gif new file mode 100644 index 0000000..ab0a1cb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/property-cell-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/property-cell-selected-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/property-cell-selected-bg.gif new file mode 100644 index 0000000..1dfe9a6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/property-cell-selected-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/refresh-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/refresh-disabled.gif new file mode 100644 index 0000000..607800b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/refresh-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/refresh.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/refresh.gif new file mode 100644 index 0000000..8435d1e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/refresh.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/row-check-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/row-check-sprite.gif new file mode 100644 index 0000000..6101164 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/row-check-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/row-expand-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/row-expand-sprite.gif new file mode 100644 index 0000000..6f4d874 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/row-expand-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/row-over.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/row-over.gif new file mode 100644 index 0000000..b288e38 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/row-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/row-sel.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/row-sel.gif new file mode 100644 index 0000000..98209e6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/row-sel.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/sort-hd.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/sort-hd.gif new file mode 100644 index 0000000..681628f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/sort-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/sort_asc.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/sort_asc.gif new file mode 100644 index 0000000..371f5e4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/sort_asc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/sort_desc.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/sort_desc.gif new file mode 100644 index 0000000..000e363 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/sort_desc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/wait.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/wait.gif new file mode 100644 index 0000000..471c1a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/grid/wait.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/layout/mini-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/layout/mini-bottom.gif new file mode 100644 index 0000000..c18f9e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/layout/mini-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/layout/mini-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/layout/mini-left.gif new file mode 100644 index 0000000..99f7993 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/layout/mini-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/layout/mini-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/layout/mini-right.gif new file mode 100644 index 0000000..5b13c5a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/layout/mini-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/layout/mini-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/layout/mini-top.gif new file mode 100644 index 0000000..a4ca2bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/layout/mini-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/checked.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/checked.gif new file mode 100644 index 0000000..fad5893 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/checked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/group-checked.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/group-checked.gif new file mode 100644 index 0000000..d8b08f5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/group-checked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/item-over.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/item-over.gif new file mode 100644 index 0000000..0167839 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/item-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/menu-item-active-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/menu-item-active-bg.gif new file mode 100644 index 0000000..d73ca50 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/menu-item-active-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/menu-parent-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/menu-parent-left.gif new file mode 100644 index 0000000..607403a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/menu-parent-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/menu-parent.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/menu-parent.gif new file mode 100644 index 0000000..49286cd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/menu-parent.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/menu.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/menu.gif new file mode 100644 index 0000000..9bb3960 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/menu.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/scroll-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/scroll-bottom.gif new file mode 100644 index 0000000..c18f9e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/scroll-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/scroll-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/scroll-top.gif new file mode 100644 index 0000000..a4ca2bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/scroll-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/unchecked.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/unchecked.gif new file mode 100644 index 0000000..43823e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/menu/unchecked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-bottom-bg.gif new file mode 100644 index 0000000..7c855d0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-bottom-bg.gif new file mode 100644 index 0000000..75b0f4e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-bottom-corners.gif new file mode 100644 index 0000000..3983dc9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-bottom-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-bottom-fbg.gif new file mode 100644 index 0000000..a676d6c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-bottom-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-bottom-sides.gif new file mode 100644 index 0000000..313dc46 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif new file mode 100644 index 0000000..9f3c4b4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif new file mode 100644 index 0000000..dd0e806 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif new file mode 100644 index 0000000..a676d6c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif new file mode 100644 index 0000000..313dc46 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif new file mode 100644 index 0000000..67cc8d1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-bg.gif new file mode 100644 index 0000000..acc5d8d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif new file mode 100644 index 0000000..51e7fa8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-corners.gif new file mode 100644 index 0000000..a7a5070 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif new file mode 100644 index 0000000..5ef1249 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif new file mode 100644 index 0000000..d22547d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif new file mode 100644 index 0000000..6b01471 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-sides.gif new file mode 100644 index 0000000..3826810 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif new file mode 100644 index 0000000..66b71a7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-bg.gif new file mode 100644 index 0000000..e3ee2b7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif new file mode 100644 index 0000000..7868643 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-corners.gif new file mode 100644 index 0000000..214b07c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif new file mode 100644 index 0000000..315fc3a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif new file mode 100644 index 0000000..b6832c0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif new file mode 100644 index 0000000..90cec81 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-sides.gif new file mode 100644 index 0000000..9b44209 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-top-bg.gif new file mode 100644 index 0000000..5f12507 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-top-corners.gif new file mode 100644 index 0000000..1562bff Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif new file mode 100644 index 0000000..821a242 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-top-sides.gif new file mode 100644 index 0000000..fe0ea7e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-collapsed-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-bg-rtl.gif new file mode 100644 index 0000000..380b868 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-bg.gif new file mode 100644 index 0000000..6479482 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-corners-rtl.gif new file mode 100644 index 0000000..3a53cc0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-corners.gif new file mode 100644 index 0000000..b4310fb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-fbg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-fbg-rtl.gif new file mode 100644 index 0000000..5ef1249 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-fbg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-fbg.gif new file mode 100644 index 0000000..d22547d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-sides-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-sides-rtl.gif new file mode 100644 index 0000000..6b01471 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-sides-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-sides.gif new file mode 100644 index 0000000..3826810 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-bg-rtl.gif new file mode 100644 index 0000000..b811669 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-bg.gif new file mode 100644 index 0000000..15b8754 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-corners-rtl.gif new file mode 100644 index 0000000..83d6637 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-corners.gif new file mode 100644 index 0000000..31e3d44 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-fbg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-fbg-rtl.gif new file mode 100644 index 0000000..315fc3a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-fbg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-fbg.gif new file mode 100644 index 0000000..b6832c0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-sides-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-sides-rtl.gif new file mode 100644 index 0000000..90cec81 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-sides-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-sides.gif new file mode 100644 index 0000000..9b44209 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-top-bg.gif new file mode 100644 index 0000000..b14a51b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-top-corners.gif new file mode 100644 index 0000000..9e7e8cd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-top-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-top-fbg.gif new file mode 100644 index 0000000..821a242 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-top-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-top-sides.gif new file mode 100644 index 0000000..fe0ea7e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-framed-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-left-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-left-bg-rtl.gif new file mode 100644 index 0000000..93c33a8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-left-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-left-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-left-bg.gif new file mode 100644 index 0000000..d5ea7ab Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-right-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-right-bg-rtl.gif new file mode 100644 index 0000000..b811669 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-right-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-right-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-right-bg.gif new file mode 100644 index 0000000..15b8754 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-top-bg.gif new file mode 100644 index 0000000..b14a51b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel-header/panel-header-default-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel/panel-default-framed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel/panel-default-framed-corners.gif new file mode 100644 index 0000000..7e09e66 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel/panel-default-framed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel/panel-default-framed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel/panel-default-framed-sides.gif new file mode 100644 index 0000000..9a6559e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/panel/panel-default-framed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/progress/progress-default-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/progress/progress-default-bg.gif new file mode 100644 index 0000000..b44d5c8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/progress/progress-default-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/qtip/close.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/qtip/close.gif new file mode 100644 index 0000000..69ab915 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/qtip/close.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/qtip/tip-anchor-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/qtip/tip-anchor-sprite.gif new file mode 100644 index 0000000..f46d31d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/qtip/tip-anchor-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/qtip/tip-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/qtip/tip-sprite.gif new file mode 100644 index 0000000..9f6a629 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/qtip/tip-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/blue-loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/blue-loading.gif new file mode 100644 index 0000000..3bbf639 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/blue-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/calendar.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/calendar.gif new file mode 100644 index 0000000..133cf23 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/calendar.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/glass-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/glass-bg.gif new file mode 100644 index 0000000..ed3c886 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/glass-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/hd-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/hd-sprite.gif new file mode 100644 index 0000000..446be92 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/hd-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/icon-error.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/icon-error.gif new file mode 100644 index 0000000..397b655 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/icon-error.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/icon-info.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/icon-info.gif new file mode 100644 index 0000000..58281c3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/icon-info.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/icon-question.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/icon-question.gif new file mode 100644 index 0000000..08abd82 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/icon-question.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/icon-warning.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/icon-warning.gif new file mode 100644 index 0000000..27ff98b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/icon-warning.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/large-loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/large-loading.gif new file mode 100644 index 0000000..b36b555 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/large-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/left-btn.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/left-btn.gif new file mode 100644 index 0000000..0622439 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/left-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/loading-balls.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/loading-balls.gif new file mode 100644 index 0000000..9ce214b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/loading-balls.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/right-btn.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/right-btn.gif new file mode 100644 index 0000000..5e3215d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/right-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/shadow-c.png b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/shadow-c.png new file mode 100644 index 0000000..d435f80 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/shadow-c.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/shadow-lr.png b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/shadow-lr.png new file mode 100644 index 0000000..bb88b6f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/shadow-lr.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/shadow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/shadow.png new file mode 100644 index 0000000..75c0eba Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/shadow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/warning.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/warning.gif new file mode 100644 index 0000000..806d4bc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/shared/warning.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/e-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/e-handle-dark.gif new file mode 100644 index 0000000..70aad3f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/e-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/e-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/e-handle.gif new file mode 100644 index 0000000..52c045e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/e-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/ne-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/ne-handle-dark.gif new file mode 100644 index 0000000..3a30ca2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/ne-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/ne-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/ne-handle.gif new file mode 100644 index 0000000..e48f9f9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/ne-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/nw-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/nw-handle-dark.gif new file mode 100644 index 0000000..5ea8b51 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/nw-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/nw-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/nw-handle.gif new file mode 100644 index 0000000..65d5cc2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/nw-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/s-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/s-handle-dark.gif new file mode 100644 index 0000000..421b534 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/s-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/s-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/s-handle.gif new file mode 100644 index 0000000..2b635de Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/s-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/se-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/se-handle-dark.gif new file mode 100644 index 0000000..881a5c4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/se-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/se-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/se-handle.gif new file mode 100644 index 0000000..5f1e3b8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/se-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/square.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/square.gif new file mode 100644 index 0000000..4dc5a2d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/square.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/sw-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/sw-handle-dark.gif new file mode 100644 index 0000000..030d8f8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/sw-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/sw-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/sw-handle.gif new file mode 100644 index 0000000..79bcb84 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/sizer/sw-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-bg.gif new file mode 100644 index 0000000..2d93963 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-bg.png b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-bg.png new file mode 100644 index 0000000..70fb552 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-thumb.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-thumb.gif new file mode 100644 index 0000000..d7dadda Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-thumb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-thumb.png b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-thumb.png new file mode 100644 index 0000000..4991a74 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-thumb.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-v-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-v-bg.gif new file mode 100644 index 0000000..c93fca3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-v-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-v-bg.png b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-v-bg.png new file mode 100644 index 0000000..e7cc7f7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-v-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-v-thumb.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-v-thumb.gif new file mode 100644 index 0000000..7478fad Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-v-thumb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-v-thumb.png b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-v-thumb.png new file mode 100644 index 0000000..e0c0e27 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/slider/slider-v-thumb.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/spinner.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/spinner.gif new file mode 100644 index 0000000..f764d31 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/spinner.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-bottom-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-bottom-left.gif new file mode 100644 index 0000000..3ddb80a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-bottom-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-bottom-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-bottom-right.gif new file mode 100644 index 0000000..62d0014 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-bottom-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-left-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-left-bottom.gif new file mode 100644 index 0000000..6b43f06 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-left-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-left-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-left-top.gif new file mode 100644 index 0000000..c5191b2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-left-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-right-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-right-bottom.gif new file mode 100644 index 0000000..83f1375 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-right-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-right-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-right-top.gif new file mode 100644 index 0000000..16fbbc7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-right-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-top-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-top-left.gif new file mode 100644 index 0000000..297efab Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-top-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-top-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-top-right.gif new file mode 100644 index 0000000..07d807f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/default-scroll-top-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/tab-bar-default-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/tab-bar-default-bottom-bg.gif new file mode 100644 index 0000000..612a9ea Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/tab-bar-default-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/tab-bar-default-left-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/tab-bar-default-left-bg.gif new file mode 100644 index 0000000..905eebb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/tab-bar-default-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/tab-bar-default-right-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/tab-bar-default-right-bg.gif new file mode 100644 index 0000000..d8edeb9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/tab-bar-default-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/tab-bar-default-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/tab-bar-default-top-bg.gif new file mode 100644 index 0000000..b282e7d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab-bar/tab-bar-default-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-active-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-active-corners.gif new file mode 100644 index 0000000..59edcb5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-active-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-active-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-active-sides.gif new file mode 100644 index 0000000..de5fc1d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-active-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-corners.gif new file mode 100644 index 0000000..869309b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-disabled-corners.gif new file mode 100644 index 0000000..2ecf4be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-disabled-sides.gif new file mode 100644 index 0000000..7b2e1ff Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-over-corners.gif new file mode 100644 index 0000000..3ad858c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-over-sides.gif new file mode 100644 index 0000000..60f1c5d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-sides.gif new file mode 100644 index 0000000..711ddb6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-close.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-close.gif new file mode 100644 index 0000000..e699878 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-close.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-active-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-active-corners.gif new file mode 100644 index 0000000..b6f1979 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-active-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-active-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-active-sides.gif new file mode 100644 index 0000000..de5fc1d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-active-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-corners.gif new file mode 100644 index 0000000..512fa93 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-disabled-corners.gif new file mode 100644 index 0000000..08097ef Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-disabled-sides.gif new file mode 100644 index 0000000..7b2e1ff Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-over-corners.gif new file mode 100644 index 0000000..389b937 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-over-sides.gif new file mode 100644 index 0000000..60f1c5d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-sides.gif new file mode 100644 index 0000000..711ddb6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tab/tab-default-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-btm-inactive-left-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-btm-inactive-left-bg.gif new file mode 100644 index 0000000..687af2b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-btm-inactive-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-btm-inactive-right-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-btm-inactive-right-bg.gif new file mode 100644 index 0000000..3c1b3eb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-btm-inactive-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-btm-left-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-btm-left-bg.gif new file mode 100644 index 0000000..e5f827a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-btm-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-btm-right-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-btm-right-bg.gif new file mode 100644 index 0000000..2551f4c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-btm-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-close.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-close.gif new file mode 100644 index 0000000..ef9a7c2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-close.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-strip-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-strip-bg.gif new file mode 100644 index 0000000..fc1fdcd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-strip-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-strip-btm-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-strip-btm-bg.gif new file mode 100644 index 0000000..a151553 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tab-strip-btm-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tabs-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tabs-sprite.gif new file mode 100644 index 0000000..8194001 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tabs/tabs-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tip/tip-default-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tip/tip-default-corners.gif new file mode 100644 index 0000000..3c481b9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tip/tip-default-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tip/tip-default-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tip/tip-default-sides.gif new file mode 100644 index 0000000..a435c24 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tip/tip-default-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tip/tip-form-invalid-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tip/tip-form-invalid-corners.gif new file mode 100644 index 0000000..6ab8ee0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tip/tip-form-invalid-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tip/tip-form-invalid-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tip/tip-form-invalid-sides.gif new file mode 100644 index 0000000..b39a15b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tip/tip-form-invalid-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/bg.gif new file mode 100644 index 0000000..b67a54e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/btn-arrow-light.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/btn-arrow-light.gif new file mode 100644 index 0000000..b0e24b5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/btn-arrow-light.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/btn-arrow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/btn-arrow.gif new file mode 100644 index 0000000..8acb460 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/btn-arrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/btn-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/btn-over-bg.gif new file mode 100644 index 0000000..ee2dd98 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/btn-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/gray-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/gray-bg.gif new file mode 100644 index 0000000..bd49438 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/gray-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/more-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/more-left.gif new file mode 100644 index 0000000..cdc89d8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/more-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/more.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/more.gif new file mode 100644 index 0000000..4f01020 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/more.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/s-arrow-bo.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/s-arrow-bo.gif new file mode 100644 index 0000000..1505edd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/s-arrow-bo.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/scroll-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/scroll-left.gif new file mode 100644 index 0000000..71a2e88 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/scroll-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/scroll-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/scroll-right.gif new file mode 100644 index 0000000..8f3d659 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/scroll-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/tb-btn-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/tb-btn-sprite.gif new file mode 100644 index 0000000..19bbef3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/tb-btn-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/tb-xl-btn-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/tb-xl-btn-sprite.gif new file mode 100644 index 0000000..1bc0420 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/tb-xl-btn-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/tb-xl-sep.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/tb-xl-sep.gif new file mode 100644 index 0000000..30555ee Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/tb-xl-sep.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/toolbar-default-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/toolbar-default-bg.gif new file mode 100644 index 0000000..bf0cc44 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/toolbar/toolbar-default-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tools/tool-sprite-tpl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tools/tool-sprite-tpl.gif new file mode 100644 index 0000000..e647867 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tools/tool-sprite-tpl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tools/tool-sprites.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tools/tool-sprites.gif new file mode 100644 index 0000000..a3ffe58 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tools/tool-sprites.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tools/tools-sprites-trans.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tools/tools-sprites-trans.gif new file mode 100644 index 0000000..ead931e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tools/tools-sprites-trans.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/arrows-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/arrows-rtl.gif new file mode 100644 index 0000000..0b44070 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/arrows-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/arrows.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/arrows.gif new file mode 100644 index 0000000..04ec10d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/arrows.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-above.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-above.gif new file mode 100644 index 0000000..30d1ca7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-above.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-add.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-add.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-add.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-append.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-append.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-append.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-below.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-below.gif new file mode 100644 index 0000000..85f66b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-below.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-between.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-between.gif new file mode 100644 index 0000000..5c6c09d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-between.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-no.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-no.gif new file mode 100644 index 0000000..9d9c6a9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-over.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-over.gif new file mode 100644 index 0000000..30d1ca7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-under.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-under.gif new file mode 100644 index 0000000..85f66b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-under.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-yes.gif new file mode 100644 index 0000000..8aacb30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-end-minus-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-end-minus-rtl.gif new file mode 100644 index 0000000..5ee7131 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-end-minus-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-end-minus.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-end-minus.gif new file mode 100644 index 0000000..4c82874 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-end-minus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-end-plus-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-end-plus-rtl.gif new file mode 100644 index 0000000..203695f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-end-plus-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-end-plus.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-end-plus.gif new file mode 100644 index 0000000..3926368 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-end-plus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-end-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-end-rtl.gif new file mode 100644 index 0000000..b1e7c43 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-end-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-end.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-end.gif new file mode 100644 index 0000000..25ae338 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-end.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-line-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-line-rtl.gif new file mode 100644 index 0000000..d7342a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-line-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-line.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-line.gif new file mode 100644 index 0000000..80e13b5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-line.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-minus-nl-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-minus-nl-rtl.gif new file mode 100644 index 0000000..bd7e77c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-minus-nl-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-minus-nl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-minus-nl.gif new file mode 100644 index 0000000..553682f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-minus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-minus-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-minus-rtl.gif new file mode 100644 index 0000000..2df71be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-minus-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-minus.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-minus.gif new file mode 100644 index 0000000..fd3782c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-minus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-plus-nl-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-plus-nl-rtl.gif new file mode 100644 index 0000000..d5168fd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-plus-nl-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-plus-nl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-plus-nl.gif new file mode 100644 index 0000000..d41557c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-plus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-plus-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-plus-rtl.gif new file mode 100644 index 0000000..0902759 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-plus-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-plus.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-plus.gif new file mode 100644 index 0000000..9f05657 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-plus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-rtl.gif new file mode 100644 index 0000000..698bed8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow.gif new file mode 100644 index 0000000..0a13825 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/elbow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/folder-open-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/folder-open-rtl.gif new file mode 100644 index 0000000..7f53815 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/folder-open-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/folder-open.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/folder-open.gif new file mode 100644 index 0000000..076627f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/folder-open.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/folder-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/folder-rtl.gif new file mode 100644 index 0000000..5ba100d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/folder-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/folder.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/folder.gif new file mode 100644 index 0000000..ab21711 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/folder.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/leaf-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/leaf-rtl.gif new file mode 100644 index 0000000..ab0979a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/leaf-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/leaf.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/leaf.gif new file mode 100644 index 0000000..445769d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/leaf.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/loading.gif new file mode 100644 index 0000000..e846e1d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/s.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/s.gif new file mode 100644 index 0000000..1d11fa9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/tree/s.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/util/splitter/mini-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/util/splitter/mini-bottom.gif new file mode 100644 index 0000000..c18f9e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/util/splitter/mini-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/util/splitter/mini-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/util/splitter/mini-left.gif new file mode 100644 index 0000000..99f7993 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/util/splitter/mini-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/util/splitter/mini-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/util/splitter/mini-right.gif new file mode 100644 index 0000000..5b13c5a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/util/splitter/mini-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/util/splitter/mini-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/util/splitter/mini-top.gif new file mode 100644 index 0000000..a4ca2bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/util/splitter/mini-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-bottom-corners.gif new file mode 100644 index 0000000..9722ee5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-bottom-sides.gif new file mode 100644 index 0000000..b139669 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-bottom-corners.gif new file mode 100644 index 0000000..f52b7db Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-bottom-sides.gif new file mode 100644 index 0000000..11eb9bf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-left-corners-rtl.gif new file mode 100644 index 0000000..a49f249 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-left-corners.gif new file mode 100644 index 0000000..37785eb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-left-sides.gif new file mode 100644 index 0000000..31f9a62 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-right-corners-rtl.gif new file mode 100644 index 0000000..03581a1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-right-corners.gif new file mode 100644 index 0000000..0bf97be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-right-sides.gif new file mode 100644 index 0000000..efb0b07 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-top-corners.gif new file mode 100644 index 0000000..08b6099 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-top-sides.gif new file mode 100644 index 0000000..11eb9bf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-collapsed-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-left-corners-rtl.gif new file mode 100644 index 0000000..2a53f37 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-left-corners.gif new file mode 100644 index 0000000..69dc621 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-left-sides.gif new file mode 100644 index 0000000..69d3f73 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-right-corners-rtl.gif new file mode 100644 index 0000000..0378ab5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-right-corners.gif new file mode 100644 index 0000000..fbc20b6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-right-sides.gif new file mode 100644 index 0000000..e9b8ab8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-top-corners.gif new file mode 100644 index 0000000..c33c509 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-top-sides.gif new file mode 100644 index 0000000..b139669 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window-header/window-header-default-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window/icon-error.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window/icon-error.gif new file mode 100644 index 0000000..05c713c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window/icon-error.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window/icon-info.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window/icon-info.gif new file mode 100644 index 0000000..adc0613 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window/icon-info.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window/icon-question.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window/icon-question.gif new file mode 100644 index 0000000..9b31a94 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window/icon-question.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window/icon-warning.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window/icon-warning.gif new file mode 100644 index 0000000..0d89077 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window/icon-warning.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window/window-default-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window/window-default-corners.gif new file mode 100644 index 0000000..5ece3d7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window/window-default-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window/window-default-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window/window-default-sides.gif new file mode 100644 index 0000000..ee1f5c7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-access/images/window/window-default-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/Readme.md b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/Readme.md new file mode 100644 index 0000000..ec63799 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/Readme.md @@ -0,0 +1,3 @@ +# /resources + +This folder contains static resources (typically an `"images"` folder as well). diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/ext-theme-classic-sandbox-all-debug.css b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/ext-theme-classic-sandbox-all-debug.css new file mode 100644 index 0000000..0a43e35 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/ext-theme-classic-sandbox-all-debug.css @@ -0,0 +1,19529 @@ +/* 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. + */ +/* including package ext-theme-neutral */ +/* including package ext-theme-classic */ +/* including package ext-theme-classic-sandbox */ +/* including package ext-theme-classic-sandbox */ +/* including package ext-theme-classic */ +/* including package ext-theme-neutral */ +/** + * @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 {string} $font-size + * The default font-family 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 + */ +/** + * @class Ext.FocusManager + */ +/** + * @var {color} + * The border-color of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-style of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-width of the focusFrame. See {@link #method-enable}. + */ +/** + * @class Ext.LoadMask + */ +/** + * @var {number} + * Opacity of the LoadMask + */ +/** + * @var {color} + * The background-color of the LoadMask + */ +/** + * @var {string} + * The type of cursor to dislay when the cursor is over the LoadMask + */ +/** + * @var {number/list} + * The padding to apply to the LoadMask's message element + */ +/** + * @var {string} + * The border-style of the LoadMask's message element + */ +/** + * @var {color} + * The border-color of the LoadMask's message element + */ +/** + * @var {number} + * The border-width of the LoadMask's message element + */ +/** + * @var {color} + * The background-color of the LoadMask's message element + */ +/** + * @var {string/list} + * The background-gradient of the LoadMask's message element. Can be either the name + * of a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the message inner element + */ +/** + * @var {string} + * The icon to display in the message inner element + */ +/** + * @var {list} + * The background-position of the icon + */ +/** + * @var {string} + * The border-style of the message inner element + */ +/** + * @var {color} + * The border-color of the message inner element + */ +/** + * @var {number} + * The border-width of the message inner element + */ +/** + * @var {color} + * The background-color of the message inner element + */ +/** + * @var {color} + * The text color of the message inner element + */ +/** + * @var {number} + * The font-size of the message inner element + */ +/** + * @var {string} + * The font-weight of the message inner element + */ +/** + * @var {string} + * The font-family of the message inner element + */ +/** + * @var {number/list} + * The padding of the message element + */ +/** + * @var {number} + * The border-radius of the message element + */ +/** + * @class Ext.ProgressBar + */ +/** + * @var {number} + * The height of the ProgressBar + */ +/** + * @var {color} + * The border-color of the ProgressBar + */ +/** + * @var {number} + * The border-width of the ProgressBar + */ +/** + * @var {number} + * The border-radius of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar's moving element + */ +/** + * @var {string/list} + * The background-gradient of the ProgressBar's moving element. Can be either the name of + * a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The color of the ProgressBar's text when in front of the ProgressBar's moving element + */ +/** + * @var {color} + * The color of the ProgressBar's text when the ProgressBar's 'moving element is not under it + */ +/** + * @var {string} + * The text-align of the ProgressBar's text + */ +/** + * @var {number} + * The font-size of the ProgressBar's text + */ +/** + * @var {string} + * The font-weight of the ProgressBar's text + */ +/** + * @var {boolean} + * True to include the "default" ProgressBar UI + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a small {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a medium {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a large {@link #scale} button + */ +/** + * @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 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 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 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 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 disabled + */ +/** + * @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 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 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 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 disabled + */ +/** + * @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-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 buton 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-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 + */ +/** + * @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 {number/list} + * The margin 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 {number/list} + * The margin of Toolbar text + */ +/** + * @var {color} + * The text-color of Toolbar text + */ +/** + * @var {number/list} + * The padding of Toolbar text + */ +/** + * @var {number} + * The line-height of Toolbar text + */ +/** + * @var {number} + * The width of Toolbar scrollers + */ +/** + * @var {number} + * The height of Toolbar scrollers + */ +/** + * @var {color} + * The border-color of Toolbar scrollers + */ +/** + * @var {number} + * The border-width of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of disabled Toolbar scrollers + */ +/** + * @var {number} + * The opacity of disabled Toolbar scrollers + */ +/** + * @var {string} + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + */ +/** + * @var {boolean} + * True to include the "default" toolbar UI + */ +/** + * @class Ext.panel.Panel + */ +/** + * @var {number} + * The default border-width of Panels + */ +/** + * @var {color} + * The base color of Panels + */ +/** + * @var {color} + * The default border-color of Panels + */ +/** + * @var {$border-width-threshold} + * 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 {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 {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 {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 + */ +/** + * @class Ext.tip.Tip + */ +/** + * @var {color} + * The background-color of the Tip + */ +/** + * @var {string/list} + * The background-gradient of the Tip. Can be either the name of a predefined gradient or a + * list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The text color of the Tip body + */ +/** + * @var {number} + * The font-size of the Tip body + */ +/** + * @var {string} + * The font-weight of the Tip body + */ +/** + * @var {number/list} + * The padding of the Tip body + */ +/** + * @var {color} + * The text color of any anchor tags inside the Tip body + */ +/** + * @var {color} + * The text color of the Tip header + */ +/** + * @var {number} + * The font-size of the Tip header + */ +/** + * @var {string} + * The font-weight of the Tip header + */ +/** + * @var {number/list} + * The padding of the Tip header's body element + */ +/** + * @var {color} + * The border-color of the Tip + */ +/** + * @var {number} + * The border-width of the Tip + */ +/** + * @var {number} + * The border-radius of the Tip + */ +/** + * @var {color} + * The inner border-color of the form field error Tip + */ +/** + * @var {number} + * The inner border-width of the form field error Tip + */ +/** + * @var {color} + * The border-color of the form field error Tip + */ +/** + * @var {number} + * The border-radius of the form field error Tip + */ +/** + * @var {number} + * The border-width of the form field error Tip + */ +/** + * @var {color} + * The background-color of the form field error Tip + */ +/** + * @var {number/list} + * The padding of the form field error Tip's body element + */ +/** + * @var {color} + * The text color of the form field error Tip's body element + */ +/** + * @var {number} + * The font-size of the form field error Tip's body element + */ +/** + * @var {string} + * The font-weight of the form field error Tip's body element + */ +/** + * @var {color} + * The color of anchor tags in the form field error Tip's body element + */ +/** + * @var {number} + * The space between {@link Ext.panel.Tool Tools} in the header + */ +/** + * @var {string} + * The sprite to use for the header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" tip UI + */ +/** + * @var {boolean} + * True to include the "form-invalid" tip UI + */ +/** + * @class Ext.container.ButtonGroup + */ +/** + * @var {color} + * The background-color of the ButtonGroup + */ +/** + * @var {color} + * The border-color of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of the ButtonGroup + */ +/** + * @var {number/list} + * The body padding of the ButtonGroup + */ +/** + * @var {number/list} + * The inner border-width of the ButtonGroup + */ +/** + * @var {color} + * The inner border-color of the ButtonGroup + */ +/** + * @var {number/list} + * The margin of the header element. Used to add space around the header. + */ +/** + * @var {number} + * The font-size of the header + */ +/** + * @var {number} + * The font-weight of the header + */ +/** + * @var {number} + * The font-family of the header + */ +/** + * @var {number} + * The line-height of the header + */ +/** + * @var {number} + * The text color of the header + */ +/** + * @var {number} + * The padding of the header + */ +/** + * @var {number} + * The background-color of the header + */ +/** + * @var {number} + * The border-spacing to use on the table layout element + */ +/** + * @var {number} + * The background-color of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of framed ButtonGroups + */ +/** + * @var {string} + * Sprite image to use for header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" button group UI + */ +/** + * @var {boolean} + * True to include the "default-framed" button group UI + */ +/** + * @class Ext.window.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 + */ +/** + * @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 {color} + * The text color of toolbar field labels + */ +/** + * @var {string} + * The font-weight of toolbar field labels + */ +/** + * @var {number} + * The font-size of toolbar field labels + */ +/** + * @var {string} + * The font-family of toolbar field labels + */ +/** + * @var {number} + * The line-height of toolbar field labels + */ +/** + * @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 {measurement} $form-item-margin-bottom + * The bottom margin to apply to form items when in auto, anchor, vbox, or table layout + */ +/** + * @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 {font} $form-field-font + * Font 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 {font} $form-toolbar-field-font + * Font 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. + */ +/** + * @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 {number} $form-field-disabled-opacity + */ +/** + * @class Ext.form.field.TextArea + */ +/** + * @var {number/string} + * The line-height to use for the TextArea's text + */ +/** + * @class Ext.form.field.Display + */ +/** + * @var {color} + * The text color of display fields + */ +/** + * @var {string} + * The font-weight of display fields + */ +/** + * @var {number} + * The font-size of display fields + */ +/** + * @var {string} + * The font-family of display fields + */ +/** + * @var {number} + * The line-height of display fields + */ +/** + * @var {string} + * The font-weight of toolbar display fields + */ +/** + * @var {number} + * The font-size of toolbar display fields + */ +/** + * @var {string} + * The font-family of toolbar display fields + */ +/** + * @var {number} + * The line-height of toolbar display fields + */ +/** + * @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 + */ +/** + * @class Ext.form.field.Checkbox + */ +/** + * @var {number} + * The size of the checkbox + */ +/** + * @var {number} + * The space between the boxLabel and the checkbox. + */ +/** + * @class Ext.form.CheckboxGroup + */ +/** + * @var {number/list} + * The padding of the CheckboxGroup body element + */ +/** + * @var {color} + * The text color of the CheckboxGroup label + */ +/** + * @var {number} + * The padding of the CheckboxGroup label + */ +/** + * @var {number} + * The margin of the CheckboxGroup label + */ +/** + * @var {number} + * The border-width of the CheckboxGroup label + */ +/** + * @var {number} + * The border-style of the CheckboxGroup label + */ +/** + * @var {number} + * The border-color of the CheckboxGroup label + */ +/** + * @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/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/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 {number/list} + * The margin to apply to the FieldSet's checkbox (for FieldSets that use + * {@link #checkboxToggle}) + */ +/** + * @var {number} + * The size of the FieldSet's collapse tool + */ +/** + * @var {string} $fieldset-collapse-tool-background-image + * The background-image to use for the collapse tool. If null the default tool + * sprite will be used. Defaults to null. + */ +/** + * @class Ext.form.field.Radio + */ +/** + * @var {number} + * The size of the radio button + */ +/** + * @class Ext.form.field.Trigger + */ +/** + * @var {number} + * The width of the Trigger field's trigger element + */ +/** + * @var {number/list} + * The width of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border + */ +/** + * @var {string} + * The style of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border when hovered + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused and the trigger is hovered + */ +/** + * @class Ext.form.field.Spinner + */ +/** + * @var {number} + * The height of the Spinner trigger buttons + */ +/** + * @var {number} + * The height of the Spinner trigger buttons when the Spinner is used on a + * {@link Ext.toolbar.Toolbar Toolbar} + */ +/** + * @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 {number/list} + * The padding of BoundList items + */ +/** + * @var {number} + * The border-width of BoundList items + */ +/** + * @var {string} + * The border-style of BoundList items + */ +/** + * @var {color} + * The border-color of BoundList items + */ +/** + * @var {color} + * The border-color of hovered BoundList items + */ +/** + * @var {color} + * The border-color of selected BoundList items + */ +/** + * @var {color} + * The background-color of hovered BoundList items + */ +/** + * @var {color} + * The background-color of selected BoundList items + */ +/** + * @class Ext.picker.Date + */ +/** + * @var {number} + * The border-width of the DatePicker + */ +/** + * @var {string} + * The border-style of the DatePicker + */ +/** + * @var {color} + * The background-color of the DatePicker + */ +/** + * @var {string} + * The background-image of the DatePicker next arrow + */ +/** + * @var {string} + * The background-image of the DatePicker previous arrow + */ +/** + * @var {number} + * The width of DatePicker arrows + */ +/** + * @var {number} + * The height of DatePicker arrows + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a DatePicker arrow + */ +/** + * @var {number} + * The opacity of the DatePicker arrows + */ +/** + * @var {number} + * The opacity of the DatePicker arrows when hovered + */ +/** + * @var {string/list} + * The Date Picker header background gradient. Can be either the name of a predefined gradient + * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the Date Picker header + */ +/** + * @var {color} + * The color of the Date Picker month button + */ +/** + * @var {number} + * The width of the arrow on the Date Picker month button + */ +/** + * @var {string} + * The background-image of the arrow on the Date Picker month button + */ +/** + * @var {boolean} + * True to render the month button as transparent + */ +/** + * @var {string} + * The text-align of the Date Picker header + */ +/** + * @var {number} + * The height of Date Picker items + */ +/** + * @var {number} + * The width of Date Picker items + */ +/** + * @var {number/list} + * The padding of Date Picker items + */ +/** + * @var {string} + * The font-family of Date Picker items + */ +/** + * @var {number} + * The font-size of Date Picker items + */ +/** + * @var {string} + * The font-weight of Date Picker items + */ +/** + * @var {string} + * The text-align of Date Picker items + */ +/** + * @var {color} + * The text color of Date Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Date Picker item + */ +/** + * @var {string} + * The font-family of Date Picker column headers + */ +/** + * @var {number} + * The font-size of Date Picker column headers + */ +/** + * @var {string} + * The font-weight of Date Picker column headers + */ +/** + * @var {string/list} + * The background-gradient of Date Picker column headers. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {string} + * The border-style of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker column headers + */ +/** + * @var {string} + * The text-align of Date Picker column headers + */ +/** + * @var {number} + * The height of Date Picker column headers + */ +/** + * @var {number/list} + * The padding of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker items + */ +/** + * @var {string} + * The border-style of Date Picker items + */ +/** + * @var {color} + * The border-color of Date Picker items + */ +/** + * @var {string} + * The border-style of today's date on the Date Picker + */ +/** + * @var {string} + * The border-style of the selected item + */ +/** + * @var {string} + * The font-weight of the selected item + */ +/** + * @var {color} + * The text color of the items in the previous and next months + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a disabled item + */ +/** + * @var {color} + * The text color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of the Date Picker footer + */ +/** + * @var {string/list} + * The background-gradient of the Date Picker footer. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The border-width of the Date Picker footer + */ +/** + * @var {string} + * The border-style of the Date Picker footer + */ +/** + * @var {string} + * The text-align of the Date Picker footer + */ +/** + * @var {number/list} + * The padding of the Date Picker footer + */ +/** + * @var {number} + * The space between the footer buttons + */ +/** + * @var {color} + * The border-color of the Month Picker + */ +/** + * @var {number} + * The border-width of the Month Picker + */ +/** + * @var {string} + * The border-style of the Month Picker + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The border-color of Month Picker items + */ +/** + * @var {string} + * The border-style of Month Picker items + */ +/** + * @var {string} + * The font-family of Month Picker items + */ +/** + * @var {number} + * The font-size of Month Picker items + */ +/** + * @var {string} + * The font-weight of Month Picker items + */ +/** + * @var {number/list} + * The margin of Month Picker items + */ +/** + * @var {string} + * The text-align of Month Picker items + */ +/** + * @var {number} + * The height of Month Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker item + */ +/** + * @var {color} + * The background-color of hovered Month Picker items + */ +/** + * @var {color} + * The background-color of selected Month Picker items + */ +/** + * @var {string} + * The border-style of selected Month Picker items + */ +/** + * @var {color} + * The border-color of selected Month Picker items + */ +/** + * @var {number} + * The height of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The width of the Month Picker year navigation buttons + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker year navigation button + */ +/** + * @var {number} + * The opacity of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The opacity of hovered Month Picker year navigation buttons + */ +/** + * @var {string} + * The background-image of the Month Picker next year navigation button + */ +/** + * @var {string} + * The background-image of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker previous year navigation button + */ +/** + * @var {string} + * The border-style of the Month Picker separator + */ +/** + * @var {number} + * The border-width of the Month Picker separator + */ +/** + * @var {color} + * The border-color of the Month Picker separator + */ +/** + * @var {number/list} + * The margin of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @var {number} + * The height of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @class Ext.picker.Color + */ +/** + * @var {color} + * The background-color of Color Pickers + */ +/** + * @var {color} + * The border-color of Color Pickers + */ +/** + * @var {number} + * The border-width of Color Pickers + */ +/** + * @var {string} + * The border-style of Color Pickers + */ +/** + * @var {number} + * The number of columns to display in the Color Picker + */ +/** + * @var {number} + * The number of rows to display in the Color Picker + */ +/** + * @var {number} + * The height of each Color Picker item + */ +/** + * @var {number} + * The width of each Color Picker item + */ +/** + * @var {number} + * The padding of each Color Picker item + */ +/** + * @var {string} + * The cursor to display when the mouse is over a Color Picker item + */ +/** + * @var {color} + * The border-color of Color Picker items + */ +/** + * @var {number} + * The border-width of Color Picker items + */ +/** + * @var {string} + * The border-style of Color Picker items + */ +/** + * @var {color} + * The border-color of hovered Color Picker items + */ +/** + * @var {color} + * The background-color of Color Picker items + */ +/** + * @var {color} + * The background-color of hovered Color Picker items + */ +/** + * @var {color} + * The border-color of the selected Color Picker item + */ +/** + * @var {color} + * The background-color of the selected Color Picker item + */ +/** + * @var {color} + * The inner border-color of Color Picker items + */ +/** + * @var {number} + * The inner border-width of Color Picker items + */ +/** + * @var {string} + * The inner border-style of Color Picker items + */ +/** + * @class Ext.form.field.HtmlEditor + */ +/** + * @var {number} + * The border-width of the HtmlEditor + */ +/** + * @var {color} + * The border-color of the HtmlEditor + */ +/** + * @var {color} + * The background-color of the HtmlEditor + */ +/** + * @var {number} + * The size of the HtmlEditor toolbar icons + */ +/** + * @var {number} + * The font-size of the HtmlEditor's font selection control + */ +/** + * @var {number} + * The font-family of the HtmlEditor's font selection control + */ +/** + * @class Ext.panel.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} $grid-row-cell-line-height + * 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 {color} + * The border-color of the focused row + */ +/** + * @var {string} + * The border-style of the focused row + */ +/** + * @var {color} + * The text color of the focused row + */ +/** + * @var {color} + * The background-color of the focused row + */ +/** + * @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.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 {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 + */ +/** + * @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.CheckColumn + */ +/** + * @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.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.grid.feature.RowWrap + */ +/** + * @var {color} + * The border-color of wrapped rows + */ +/** + * @var {string} + * The border-style of wrapped rows + */ +/** + * @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 + */ +/** + * @class Ext.grid.plugin.Editing + */ +/** + * The height of grid editor text fields. 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 caluclated by adding $grid-row-cell-line-height to the top and bottom values of + * $grid-cell-inner-padding. + */ +/** + * The padding of grid editor text fields. + */ +/** + * @var {number} + * The font size of the grid editor text + */ +/** + * @var {string} + * The font-weight of the grid editor text + */ +/** + * @var {string} + * The font-family of the grid editor text + */ +/** + * @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 {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 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 {string} + * The text-transform property of Accordion headers + */ +/** + * @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.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 {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. + */ +/** + * @class Ext.layout.container.Border + */ +/** + * @var {color} + * The background-color of the Border layout element + */ +/** + * @class Ext.menu.Menu + */ +/** + * @var {color} + * The background-color of the 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 {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} + * The font-size of {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The margin 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 {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 {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {list} + * The background-position of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} text + */ +/** + * @var {number/list} + * The margin of {@link Ext.menu.Separator Menu Separators} + */ +/** + * @var {number} + * The padding to the right of {@link Ext.menu.CheckItem Check Items}, to make room + * for the checkbox + */ +/** + * @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 space to the left and right of {@link Ext.menu.Item Menu Item} arrows + */ +/** + * @var {number} + * The opacity of disabled {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The height of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers when hovered + */ +/** + * @var {number} + * The opacity of Menu crollers when pressed + */ +/** + * @var {number/list} + * The padding to apply to the Menu body element + */ +/** + * @var {color} + * The color of Menu Item text + */ +/** + * @var {number/list} + * The margin non-MenuItems placed in a Menu + */ +/** + * @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} + */ +/** + * @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.slider.Multi + */ +/** + * @var {number} + * The horizontal slider thumb width + */ +/** + * @var {number} + * The horizontal slider thumb height + */ +/** + * @var {number} + * The width of the horizontal slider end caps + */ +/** + * @var {number} + * The vertical slider thumb width + */ +/** + * @var {number} + * The vertical slider thumb height + */ +/** + * @var {number} + * The height of the vertical slider end caps + */ +/** + * @class Ext.tab.Tab + */ +/** + * @var {color} + * The base color of Tabs + */ +/** + * @var {color} + * The base color of hovered Tabs + */ +/** + * @var {color} + * The base color of the active Tabs + */ +/** + * @var {color} + * The base color of disabled Tabs + */ +/** + * @var {color} + * The text color of Tabs + */ +/** + * @var {color} + * The text color of hovered Tabs + */ +/** + * @var {color} + * The text color of the active Tab + */ +/** + * @var {color} + * The text color of disabled Tabs + */ +/** + * @var {number} + * The font-size of Tabs + */ +/** + * @var {number} + * The font-size of hovered Tabs + */ +/** + * @var {number} + * The font-size of the active Tab + */ +/** + * @var {number} + * The font-size of disabled Tabs + */ +/** + * @var {string} + * The font-family of Tabs + */ +/** + * @var {string} + * The font-family of hovered Tabs + */ +/** + * @var {string} + * The font-family of the active Tab + */ +/** + * @var {string} + * The font-family of disabled Tabs + */ +/** + * @var {string} + * The font-weight of Tabs + */ +/** + * @var {string} + * The font-weight of hovered Tabs + */ +/** + * @var {string} + * The font-weight of the active Tab + */ +/** + * @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 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 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} + * The border-width of Tabs + */ +/** + * @var {number/list} + * The inner border-width of Tabs + */ +/** + * @var {color} + * The inner border-color of Tabs + */ +/** + * @var {color} + * The border-color of Tabs + */ +/** + * @var {color} + * The border-color of hovered Tabs + */ +/** + * @var {color} + * The border-color of the active Tab + */ +/** + * @var {color} + * The border-color of disabled Tabs + */ +/** + * @var {number/list} + * The padding of Tabs + */ +/** + * @var {number/list} + * The padding of the Tab's text element + */ +/** + * @var {number} + * The line-height of Tabs + */ +/** + * @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 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 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 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 {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a left-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `left`. + */ +/** + * @var {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a right-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `right`. + */ +/** + * @var {boolean} + * True to include the "default" tab UI + */ +/** + * @class Ext.tab.Bar + */ +/** + * @var {number/list} + * The padding of the Tab Bar + */ +/** + * @var {number/list} + * The padding of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} Tab Bar strip + */ +/** + * @var {number} + * The width of the Tab Bar scrollers + */ +/** + * @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 change the x postition of the background image on hover to allow for a + * horizonatlly alined background image sprite + */ +/** + * @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.selection.CheckboxModel + */ +/** + * @var {number} + * The horizontal space before the checkbox + */ +/** + * @var {number} + * The horizontal space after the checkbox + */ +/** + * @class Ext.tree.Panel + */ +/** + * @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 + */ +/* 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 + */ +/** + * @var {boolean} $include-content-box + * True to include rules for browsers that do not support the border-box model + * (IE6 strict and IE7 strict) + */ +/** + * @var {boolean} $include-ff + * True to include Firefox specific rules + */ +/** + * @var {boolean} $include-chrome + * True to include Chrome specific rules + */ +/** + * @var {boolean} $include-safari + * True to include Safari specific rules + */ +/** + * @var {boolean} $include-opera + * True to include Opera specific rules + */ +/** + * @var {boolean} $include-webkit + * True to include Webkit specific rules + */ +/** + * @var {measurement} $css-shadow-border-radius + * The border radius for CSS shadows + */ +/** + * @var {color} $include-shadow-images + * True to include all shadow images. + */ +/** + * @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 {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. + */ +/* including package ext-theme-base */ +/* line 1, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-body { + margin: 0; +} + +/* line 5, ../../../ext-theme-base/sass/src/Component.scss */ +img { + border: 0; +} + +/* line 10, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-border-box, +.x4-border-box * { + box-sizing: border-box; + -moz-box-sizing: border-box; + -ms-box-sizing: border-box; + -webkit-box-sizing: border-box; +} + +/* line 17, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-rtl { + direction: rtl; +} + +/* line 21, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-ltr { + direction: ltr; +} + +/* line 25, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-clear { + overflow: hidden; + clear: both; + font-size: 0; + line-height: 0; + display: table; +} + +/* line 33, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-strict .x4-ie7 .x4-clear { + height: 0; + width: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-layer { + position: absolute !important; + overflow: hidden; + zoom: 1; +} + +/* line 49, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-fixed-layer { + position: fixed !important; + overflow: hidden; + zoom: 1; +} + +/* line 55, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-shim { + position: absolute; + left: 0; + top: 0; + overflow: hidden; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 63, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-hide-display { + display: none !important; +} + +/* line 67, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-hide-visibility { + visibility: hidden !important; +} + +/* line 72, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-ie6 .x4-item-disabled { + filter: none; +} + +/* line 78, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-hidden, +.x4-hide-offsets { + display: block !important; + visibility: hidden !important; + position: absolute !important; + top: -10000px !important; +} + +/* line 88, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-hide-nosize { + height: 0 !important; + width: 0 !important; +} + +/* line 94, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-hide-clip { + position: absolute!important; + clip: rect(0, 0, 0, 0); + clip: rect(0 0 0 0); +} + +/* line 102, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-masked-relative { + position: relative; +} + +/* line 108, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-ie-shadow { + background-color: #777; + display: none; + position: absolute; + overflow: hidden; + zoom: 1; +} + +/* line 117, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-unselectable { + user-select: none; + -o-user-select: none; + -ms-user-select: none; + -moz-user-select: -moz-none; + -webkit-user-select: none; + cursor: default; +} + +/* line 121, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-selectable { + cursor: auto; + -moz-user-select: text; + -webkit-user-select: text; + -ms-user-select: text; + user-select: text; + -o-user-select: text; +} + +/* line 136, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-list-plain { + list-style-type: none; + margin: 0; + padding: 0; +} + +/* line 143, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-table-plain { + border-collapse: collapse; + border-spacing: 0; + font-size: 1em; +} + +/* line 156, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-frame-tl, +.x4-frame-tr, +.x4-frame-tc, +.x4-frame-bl, +.x4-frame-br, +.x4-frame-bc { + overflow: hidden; + background-repeat: no-repeat; +} + +/* line 162, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-frame-tc, +.x4-frame-bc { + background-repeat: repeat-x; +} + +/* line 166, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-frame-mc { + background-repeat: repeat-x; + overflow: hidden; +} + +/* line 171, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-proxy-el { + position: absolute; + background: #b4b4b4; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); + opacity: 0.8; +} + +/* line 178, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-css-shadow { + position: absolute; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; +} + +/* line 184, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-item-disabled, +.x4-item-disabled * { + cursor: default; +} + +/* line 3, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x4-box-item { + position: absolute !important; + left: 0; + top: 0; +} + +/* line 4, ../../../ext-theme-base/sass/src/Editor.scss */ +div.x4-editor { + overflow: visible; +} + +/* line 1, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x4-mask { + z-index: 100; + position: absolute; + width: 100%; + height: 100%; + zoom: 1; +} + +/* line 10, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x4-mask-shim { + z-index: 100; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +/* line 20, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x4-mask-msg { + z-index: 20001; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x4-progress { + position: relative; + border-style: solid; + overflow: hidden; +} + +/* line 7, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x4-progress-bar { + overflow: hidden; + position: absolute; + width: 0; + height: 100%; +} + +/* line 14, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x4-progress-text { + overflow: hidden; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x4-btn { + display: inline-block; + position: relative; + zoom: 1; + *display: inline; + outline: 0; + cursor: pointer; + white-space: nowrap; + vertical-align: middle; + text-decoration: none; +} + +/* line 15, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x4-btn-wrap { + position: relative; + display: block; +} + +/* line 20, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x4-btn-button { + position: relative; + display: block; + text-decoration: none; + overflow: hidden; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x4-btn-inner { + display: block; + white-space: nowrap; + overflow: hidden; + zoom: 1; +} + +/* line 35, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x4-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 45, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x4-btn-inner-center { + text-align: center; +} + +/* line 49, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x4-btn-inner-left { + text-align: left; +} + +/* line 59, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x4-btn-inner-right { + text-align: right; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x4-box-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x4-box-target { + position: absolute; + width: 20000px; + top: 0; + left: 0; + height: 1px; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x4-box-inner { + overflow: hidden; + zoom: 1; + position: relative; + left: 0; + top: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x4-horizontal-box-overflow-body { + float: left; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x4-box-scroller { + position: relative; + background-repeat: no-repeat; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x4-box-scroller-left, +.x4-box-scroller-right { + float: left; + height: 100%; + z-index: 5; +} + +/* line 59, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x4-box-scroller-top .x4-box-scroller, +.x4-box-scroller-bottom .x4-box-scroller { + line-height: 0; + font-size: 0; + background-position: center 0; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x4-box-menu-after { + float: right; +} + +/* line 1, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-text { + white-space: nowrap; +} + +/* line 5, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-separator { + display: block; + font-size: 1px; + overflow: hidden; + cursor: default; + border: 0; + width: 0; + height: 0; + line-height: 0px; +} + +/* line 17, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x4-quirks .x4-ie .x4-toolbar .x4-toolbar-separator-horizontal { + width: 2px; +} + +/* line 22, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-scroller { + padding-left: 0; +} + +/* line 29, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-plain { + border: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked { + position: absolute !important; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked-vertical { + position: static; +} + +/* line 11, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked-top { + border-bottom-width: 0 !important; +} + +/* line 15, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked-bottom { + border-top-width: 0 !important; +} + +/* line 19, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked-left { + border-right-width: 0 !important; +} + +/* line 23, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked-right { + border-left-width: 0 !important; +} + +/* line 27, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked-noborder-top { + border-top-width: 0 !important; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked-noborder-right { + border-right-width: 0 !important; +} + +/* line 35, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked-noborder-bottom { + border-bottom-width: 0 !important; +} + +/* line 39, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked-noborder-left { + border-left-width: 0 !important; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-l { + border-left-width: 0 !important; +} + +/* line 48, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-b { + border-bottom-width: 0 !important; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-bl { + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 55, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-r { + border-right-width: 0 !important; +} + +/* line 58, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-rl { + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 62, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-rb { + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-rbl { + border-right-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 71, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-t { + border-top-width: 0 !important; +} + +/* line 74, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-tl { + border-top-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 78, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-tb { + border-top-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 82, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-tbl { + border-top-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 87, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-tr { + border-top-width: 0 !important; + border-right-width: 0 !important; +} + +/* line 91, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-trl { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 96, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-trb { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 101, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-trbl { + border-width: 0 !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x4-header-icon { + background-repeat: no-repeat; + background-position: 0 0; + vertical-align: middle; + text-align: center; +} + +/* line 8, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x4-header-text-container { + overflow: hidden; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +/* line 4, ../../../ext-theme-base/sass/src/dd/DD.scss */ +.x4-dd-drag-proxy, +.x4-dd-drag-current { + z-index: 1000000!important; + pointer-events: none; +} + +/* line 2, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x4-dd-drag-repair .x4-dd-drag-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 6, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x4-dd-drag-repair .x4-dd-drop-icon { + display: none; +} + +/* line 11, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x4-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 11px tahoma, arial, verdana, sans-serif; + border: 1px solid; + border-color: #ddd #bbb #bbb #ddd; + background-color: #fff; +} + +/* line 28, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x4-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 66, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x4-dd-drop-ok .x4-dd-drop-icon { + background-image: url(images/dd/drop-yes.gif); +} + +/* line 70, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x4-dd-drop-ok-add .x4-dd-drop-icon { + background-image: url(images/dd/drop-add.gif); +} + +/* line 75, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x4-dd-drop-nodrop div.x4-dd-drop-icon { + background-image: url(images/dd/drop-no.gif); +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x4-panel, +.x4-plain { + overflow: hidden; + position: relative; +} + +/* line 7, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x4-panel { + outline: none; +} + +/* line 23, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x4-ie .x4-panel-header, +.x4-ie .x4-panel-header-tl, +.x4-ie .x4-panel-header-tc, +.x4-ie .x4-panel-header-tr, +.x4-ie .x4-panel-header-ml, +.x4-ie .x4-panel-header-mc, +.x4-ie .x4-panel-header-mr, +.x4-ie .x4-panel-header-bl, +.x4-ie .x4-panel-header-bc, +.x4-ie .x4-panel-header-br { + zoom: 1; +} + +/* line 29, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x4-ie8 td.x4-frame-mc { + vertical-align: top; +} + +/* line 35, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x4-panel-body { + overflow: hidden; + position: relative; +} + +/* line 42, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x4-nlg .x4-panel-header-vertical .x4-frame-mc { + background-repeat: repeat-y; +} + +/* line 49, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x4-panel-header-plain, +.x4-panel-body-plain { + border: 0; + padding: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x4-tip { + position: absolute; + overflow: visible; + /*pointer needs to be able to stick out*/ +} + +/* line 6, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x4-tip-body { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x4-tip-anchor { + position: absolute; + overflow: hidden; + border-style: solid; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Table.scss */ +.x4-table-layout { + font-size: 1em; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x4-btn-group { + position: relative; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-body { + position: relative; + zoom: 1; +} +/* line 9, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-body .x4-table-layout-cell { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/Viewport.scss */ +.x4-viewport, .x4-viewport body { + margin: 0; + padding: 0; + border: 0 none; + overflow: hidden; + height: 100%; + position: static; +} + +/* line 1, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x4-window { + outline: none; + overflow: hidden; +} +/* line 5, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x4-window .x4-window-wrap { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x4-window-body { + position: relative; + overflow: hidden; +} + +/* line 15, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x4-window-body-plain { + background: transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x4-form-item-label { + display: block; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x4-form-item-label-right { + text-align: right; +} + +/* line 9, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x4-form-item-label-top { + display: block; + zoom: 1; +} + +/* line 15, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x4-form-invalid-icon { + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x4-form-invalid-icon ul { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x4-form-textarea { + overflow: auto; + resize: none; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x4-safari.x4-mac .x4-form-textarea { + margin-bottom: -2px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Display.scss */ +.x4-form-display-field-body { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x4-form-cb-wrap { + vertical-align: top; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x4-form-cb { + vertical-align: top; + overflow: hidden; + padding: 0; + border: 0; +} +/* line 10, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x4-form-cb::-moz-focus-inner { + padding: 0; + border: 0; +} + +/* line 16, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x4-form-cb-label { + display: inline-block; + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x4-fieldset { + display: block; + /* preserve margins in IE */ + position: relative; +} + +/* line 6, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x4-fieldset-header { + overflow: hidden; +} +/* line 10, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x4-fieldset-header .x4-form-item, +.x4-fieldset-header .x4-tool { + float: left; +} +/* line 14, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x4-fieldset-header .x4-form-cb-wrap { + font-size: 0; + line-height: 0; +} +/* line 19, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x4-fieldset-header .x4-form-cb { + margin: 0; +} + +/* line 33, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x4-fieldset-header-text { + float: left; +} + +/*misc*/ +/* line 4, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x4-webkit *:focus { + outline: none !important; +} + +/* line 11, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x4-form-item { + vertical-align: top; + table-layout: fixed; +} + +/* line 17, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x4-form-item-body { + position: relative; +} + +/* line 33, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x4-form-form-item td { + border-top: 1px solid transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x4-form-trigger { + cursor: pointer; + overflow: hidden; + background-repeat: no-repeat; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x4-item-disabled .x4-form-trigger { + cursor: default; +} + +/* line 10, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x4-trigger-noedit { + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x4-form-trigger-wrap { + vertical-align: top; + border-collapse: separate; +} + +/* line 2, ../../../ext-theme-base/sass/src/form/field/Spinner.scss */ +.x4-form-spinner-up, +.x4-form-spinner-down { + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-datepicker { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-datepicker-inner { + table-layout: fixed; + width: 100%; + border-collapse: separate; +} + +/* line 11, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-datepicker-cell { + padding: 0; +} + +/* line 15, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-datepicker-header { + position: relative; + zoom: 1; +} + +/* line 20, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-datepicker-arrow { + position: absolute; + outline: none; + font-size: 0; +} + +/* line 26, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-datepicker-column-header { + padding: 0; +} + +/* line 30, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-datepicker-date { + display: block; + zoom: 1; + text-decoration: none; +} + +/* line 36, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-monthpicker { + position: absolute; + left: 0; + top: 0; +} + +/* line 42, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-monthpicker-body { + height: 100%; +} + +/* line 47, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-monthpicker-months, +.x4-monthpicker-years { + float: left; + height: 100%; +} + +/* line 52, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-monthpicker-item { + float: left; +} + +/* line 56, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-monthpicker-item-inner { + display: block; + text-decoration: none; +} + +/* line 61, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-monthpicker-yearnav-button-ct { + float: left; + text-align: center; +} + +/* line 66, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-monthpicker-yearnav-button { + display: inline-block; + outline: none; + font-size: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-monthpicker-buttons { + position: absolute; + bottom: 0; + width: 100%; +} +/* line 78, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-strict .x4-ie6 .x4-monthpicker-buttons { + bottom: -1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/File.scss */ +.x4-form-file-btn { + overflow: hidden; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/File.scss */ +.x4-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 1, ../../../ext-theme-base/sass/src/form/field/Hidden.scss */ +.x4-form-item-hidden { + margin: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x4-color-picker-item { + float: left; + text-decoration: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x4-color-picker-item-inner { + display: block; + font-size: 1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-toolbar { + position: static !important; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x4-htmleditor-iframe { + display: block; + overflow: auto; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Fit.scss */ +.x4-fit-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x4-grid-row, +.x4-grid-data-row { + outline: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x4-grid-view { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x4-grid-table { + table-layout: fixed; + border-collapse: separate; +} + +/* line 16, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x4-grid-td { + overflow: hidden; + border-width: 0; + vertical-align: top; +} + +/* line 22, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x4-grid-cell-inner { + overflow: hidden; + white-space: nowrap; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x4-grid-resize-marker { + position: absolute; + z-index: 5; + top: 0; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + position: absolute; + top: 0; + line-height: 0; + font-size: 0; + overflow: hidden; + z-index: 20000; + background: no-repeat center top transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/header/Container.scss */ +.x4-grid-header-ct { + cursor: default; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-column-header { + position: absolute; + overflow: hidden; + background-repeat: repeat-x; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-column-header-inner { + zoom: 1; + white-space: nowrap; + position: relative; + overflow: hidden; +} + +/* line 14, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-column-header-text { + white-space: nowrap; + background-repeat: no-repeat; + zoom: 1; + display: inline-block; +} + +/* line 25, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-column-header-trigger { + display: none; + height: 100%; + background-repeat: no-repeat; + position: absolute; + right: 0; + top: 0; + z-index: 2; +} + +/* line 43, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-column-header-over .x4-column-header-trigger, .x4-column-header-open .x4-column-header-trigger { + display: block; +} + +/* line 48, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-column-header-align-right { + text-align: right; +} + +/* line 58, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-column-header-align-left { + text-align: left; +} + +/* line 68, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-column-header-align-center { + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Action.scss */ +.x4-grid-cell-inner-action-col { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/CheckColumn.scss */ +.x4-grid-cell-inner-checkcolumn { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/RowNumberer.scss */ +.x4-row-numberer .x4-column-header-inner { + text-overflow: clip; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x4-grid-group, +.x4-grid-group-body, +.x4-grid-group-hd { + zoom: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x4-grid-group-hd { + white-space: nowrap; +} + +/* line 11, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x4-grid-row-body-hidden, .x4-grid-group-collapsed { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x4-grid-rowbody { + zoom: 1; +} + +/* line 5, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x4-grid-row-body-hidden { + display: none; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x4-grid-rowwrap .x4-grid-table { + border: 0; +} +/* line 6, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x4-grid-rowwrap .x4-grid-cell { + border-bottom: 0; + background-color: transparent; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-cb-wrap { + text-align: center; +} + +/* line 9, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-display-field { + margin: 0; + white-space: nowrap; + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor div.x4-form-action-col-field { + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor { + position: absolute; + overflow: visible; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor-buttons { + position: absolute; + white-space: nowrap; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowExpander.scss */ +.x4-grid-row-expander { + font-size: 0; + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x4-abs-layout-ct { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x4-abs-layout-item { + position: absolute !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x4-splitter { + font-size: 1px; +} + +/* line 5, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x4-splitter-horizontal { + cursor: e-resize; + cursor: row-resize; +} + +/* line 10, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x4-splitter-vertical { + cursor: e-resize; + cursor: col-resize; +} + +/* line 17, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x4-splitter-collapsed, +.x4-splitter-horizontal-noresize, +.x4-splitter-vertical-noresize { + cursor: default; +} + +/* line 21, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x4-splitter-active { + z-index: 4; +} + +/* line 25, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x4-collapse-el { + position: absolute; + background-repeat: no-repeat; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x4-border-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x4-border-layout-ct { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x4-border-region-slide-in { + z-index: 5; +} + +/* line 14, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x4-region-collapsed-placeholder { + z-index: 4; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x4-column { + float: left; +} + +/* line 21, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x4-ie6 .x4-column { + display: inline; + /*prevent IE6 double-margin bug*/ +} + +/* line 25, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x4-quirks .x4-ie .x4-form-layout-table, .x4-quirks .x4-ie .x4-form-layout-table tbody tr.x4-form-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x4-form-layout-table { + border-collapse: separate; + border-spacing: 0 2px; +} + +/* line 9, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x4-ie6 .x4-form-layout-table { + border-collapse: collapse; + border-spacing: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x4-menu { + outline: none; +} + +/* line 5, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x4-menu-item { + white-space: nowrap; + overflow: hidden; +} + +/* line 14, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x4-menu-item-cmp .x4-field-label-cell { + vertical-align: middle; +} + +/* line 22, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x4-menu-icon-separator { + position: absolute; + top: 0px; + z-index: 0; + height: 100%; + overflow: hidden; +} +/* line 28, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x4-menu-plain .x4-menu-icon-separator { + display: none; +} + +/* line 33, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x4-menu-item-link { + text-decoration: none; + outline: 0; + zoom: 1; +} + +/* line 40, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x4-menu-item-text { + zoom: 1; +} + +/* line 47, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x4-menu-item-icon, +.x4-menu-item-icon-right, +.x4-menu-item-arrow { + position: absolute; + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/SplitterTracker.scss */ +.x4-resizable-overlay { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + display: none; + z-index: 200000; + background-color: #fff; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x4-slider { + outline: none; + zoom: 1; + position: relative; +} + +/* line 9, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x4-slider-inner { + position: relative; + left: 0; + top: 0; + overflow: visible; + zoom: 1; +} +/* line 17, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x4-slider-vert .x4-slider-inner { + background: repeat-y 0 0; +} + +/* line 23, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x4-slider-end { + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x4-slider-thumb { + position: absolute; + background: no-repeat 0 0; +} +/* line 31, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x4-slider-horz .x4-slider-thumb { + left: 0; +} +/* line 34, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x4-slider-vert .x4-slider-thumb { + bottom: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Tab.scss */ +a.x4-tab { + text-decoration: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Bar.scss */ +.x4-tab-bar { + position: relative; +} + +/* line 1, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x4-column-header-checkbox .x4-column-header-text { + display: block; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 7, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x4-grid-cell-row-checker { + vertical-align: middle; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab { + display: block; + white-space: nowrap; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-active { + z-index: 3; +} + +/* line 11, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-wrap { + display: block; + position: relative; +} + +/* line 16, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-button { + zoom: 1; + display: block; + outline: none; +} + +/* line 22, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-inner { + display: block; + text-align: center; + white-space: nowrap; + text-overflow: ellipsis; + -o-text-overflow: ellipsis; + overflow: hidden; + zoom: 1; +} + +/* line 32, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 42, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar { + z-index: 1; +} + +/* line 46, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar-body { + z-index: 2; + position: relative; +} + +/* line 51, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar-strip { + position: absolute; + line-height: 0; + font-size: 0; + z-index: 1; +} + +/* line 58, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar-horizontal .x4-tab-bar-strip { + width: 100%; + left: 0; +} + +/* line 63, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar-vertical .x4-tab-bar-strip { + height: 100%; + top: 0; +} + +/* line 68, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar-strip-top { + bottom: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar-strip-bottom { + top: 0; +} + +/* line 76, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar-strip-left { + right: 0; +} + +/* line 87, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar-strip-right { + left: 0; +} + +/* line 98, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar-plain { + background: transparent !important; +} + +/* line 102, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-icon-el { + position: absolute; + background-repeat: no-repeat; + top: 0; + left: 0; + right: auto; + bottom: 0; +} + +/* line 118, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-close-btn { + display: block; + position: absolute; + font-size: 0; + line-height: 0; + background: no-repeat; +} + +/* line 126, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-mc { + overflow: visible; +} + +/* line 3, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x4-autowidth-table .x4-grid-table { + table-layout: auto; + width: auto !important; +} + +/* line 8, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x4-tree-view { + overflow: hidden; +} + +/* line 13, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x4-tree-elbow-img, +.x4-tree-icon { + background-repeat: no-repeat; + background-position: 0 center; + vertical-align: top; +} + +/* line 19, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x4-tree-checkbox { + border: 0; + padding: 0; + vertical-align: top; + position: relative; + background-color: transparent; +} + +/* line 27, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x4-tree-animator-wrap { + overflow: hidden; +} + +/* line 31, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x4-tree-node-text { + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x4-surface { + display: -moz-inline-stack; + display: inline-block; + vertical-align: middle; + *vertical-align: auto; + zoom: 1; + *display: inline; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.rvml { + behavior: url(#default#VML); +} + +/* line 10, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x4-surface tspan { + user-select: none; + -o-user-select: none; + -ms-user-select: none; + -moz-user-select: -moz-none; + -webkit-user-select: none; + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x4-vml-sprite { + position: absolute; + left: 0; + top: 0; + width: 1px; + height: 1px; +} + +/* line 22, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x4-vml-group { + position: absolute; + left: 0; + top: 0; + width: 1000px; + height: 1000px; +} + +/* line 30, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x4-vml-measure-span { + position: absolute; + left: -9999em; + top: -9999em; + padding: 0; + margin: 0; + display: inline; +} + +/* line 39, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x4-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 47, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x4-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 55, ../../../ext-theme-base/sass/src/draw/Component.scss */ +svg, vml { + overflow: hidden; +} + +/* including package ext-theme-neutral */ +/* line 1, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x4-body { + color: black; + font-size: 12px; + font-family: tahoma, arial, verdana, sans-serif; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x4-animating-size, +.x4-collapsed { + overflow: hidden!important; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/Editor.scss */ +.x4-editor .x4-form-item-body { + padding-bottom: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x4-focus-element { + position: absolute; + top: -10px; + left: -10px; + width: 0px; + height: 0px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x4-focus-frame { + position: absolute; + left: 0px; + top: 0px; + z-index: 100000000; + width: 0px; + height: 0px; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x4-focus-frame-top, +.x4-focus-frame-bottom, +.x4-focus-frame-left, +.x4-focus-frame-right { + position: absolute; + top: 0px; + left: 0px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x4-focus-frame-top, +.x4-focus-frame-bottom { + border-top: solid 2px #15428b; + height: 2px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x4-focus-frame-left, +.x4-focus-frame-right { + border-left: solid 2px #15428b; + width: 2px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x4-mask { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + background: #cccccc; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x4-mask-msg { + padding: 2px; + border-style: solid; + border-width: 1px; + border-color: #99bce8; + background-image: none; + background-color: #dfe9f6; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x4-mask-msg-inner { + padding: 0 5px; + border-style: solid; + border-width: 1px; + border-color: #a3bad9; + background-color: #eeeeee; + color: #222222; + font: normal 11px tahoma, arial, verdana, sans-serif; +} + +/* line 41, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x4-mask-msg-text { + padding: 5px 5px 5px 20px; + background-image: url(images/grid/loading.gif); + background-repeat: no-repeat; + background-position: 0 center; +} + +/** + * Creates a visual theme for an Ext.ProgressBar + * + * @param {string} $ui-label + * 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 67, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x4-progress-default { + background-color: #e0e8f3; + border-width: 1px; + height: 20px; + border-color: #6594cf; + /**/ + /**/ + /* */ +} +/* line 72, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x4-content-box .x4-progress-default { + height: 18px; +} +/* line 84, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x4-progress-default .x4-progress-bar-default { + background-image: none; + background-color: #73a3e0; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b2ccee), color-stop(50%, #88b1e5), color-stop(51%, #73a3e0), color-stop(100%, #5e96db)); + background-image: -webkit-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); + background-image: -moz-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); + background-image: -o-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); + background-image: linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); +} +/* line 92, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x4-nlg .x4-progress-default .x4-progress-bar-default { + background: repeat-x; + background-image: url(images/progress/progress-default-bg.gif); +} +/* line 99, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x4-progress-default .x4-progress-text { + color: white; + font-weight: bold; + font-size: 11px; + text-align: center; + line-height: 18px; +} +/* line 107, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x4-progress-default .x4-progress-text-back { + color: #396295; + line-height: 18px; +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-progress-default .x4-progress-bar-default:after { + display: none; + content: "x-slicer:bg:url(images/progress/progress-default-bg.gif)"; +} + +/** + * Creates a visual theme for a 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-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-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-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-disabled + * The text color of the button when the button is disabled + * + * @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-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-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-disabled + * The font-family of the button when the button is disabled + * + * @param {number} $icon-size + * The size of the button icon + * + * @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=false] + * 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 + */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small { + border-color: #d1d1d1; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small { + -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-image: none; + background-color: white; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(48%, #f9f9f9), color-stop(52%, #e2e2e2), color-stop(100%, #e7e7e7)); + background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-mc { + background-image: url(images/btn/btn-default-small-fbg.gif); + background-position: 0 top; + background-color: white; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-btn-default-small { + background-image: url(images/btn/btn-default-small-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-btn-default-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-btn-default-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-tr, +.x4-btn-default-small-br, +.x4-btn-default-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-tl, +.x4-btn-default-small-bl, +.x4-btn-default-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-tl, +.x4-btn-default-small-bl, +.x4-btn-default-small-tr, +.x4-btn-default-small-br, +.x4-btn-default-small-tc, +.x4-btn-default-small-bc, +.x4-btn-default-small-ml, +.x4-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-ml, +.x4-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-btn-default-small-tl, +.x4-strict .x4-ie7 .x4-btn-default-small-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-small:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small .x4-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 4px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small .x4-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small .x4-btn-arrow-right { + padding-right: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small .x4-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small .x4-btn-glyph { + font-size: 16px; + line-height: 16px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie8m .x4-btn-default-small .x4-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: #f7f7f7; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf)); + background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon .x4-btn-button, +.x4-btn-default-small-noicon .x4-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon .x4-btn-inner, +.x4-btn-default-small-noicon .x4-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-small-noicon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-small-icon-text-left .x4-btn-arrow-right .x4-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon .x4-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon .x4-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-left .x4-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-left .x4-btn-inner { + line-height: 16px; + padding-left: 20px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-left .x4-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-small-icon-text-left .x4-btn-icon-el, .x4-quirks .x4-btn-default-small-icon-text-left .x4-btn-icon-el { + height: 16px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-right .x4-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-right .x4-btn-inner { + line-height: 16px; + padding-right: 20px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-right .x4-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-small-icon-text-right .x4-btn-icon-el, .x4-quirks .x4-btn-default-small-icon-text-right .x4-btn-icon-el { + height: 16px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-top .x4-btn-inner { + padding-top: 20px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-top .x4-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-small-icon-text-top .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-small-icon-text-top .x4-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-bottom .x4-btn-inner { + padding-bottom: 20px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-bottom .x4-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-small-icon-text-bottom .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-small-icon-text-bottom .x4-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-over { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-focus { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-menu-active, +.x4-btn-default-small-pressed { + border-color: #9ebae1; + background-image: none; + background-color: #b6cbe4; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5)); + background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-over .x4-frame-tl, +.x4-btn-default-small-over .x4-frame-bl, +.x4-btn-default-small-over .x4-frame-tr, +.x4-btn-default-small-over .x4-frame-br, +.x4-btn-default-small-over .x4-frame-tc, +.x4-btn-default-small-over .x4-frame-bc { + background-image: url(images/btn/btn-default-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-over .x4-frame-ml, +.x4-btn-default-small-over .x4-frame-mr { + background-image: url(images/btn/btn-default-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-over .x4-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-focus .x4-frame-tl, +.x4-btn-default-small-focus .x4-frame-bl, +.x4-btn-default-small-focus .x4-frame-tr, +.x4-btn-default-small-focus .x4-frame-br, +.x4-btn-default-small-focus .x4-frame-tc, +.x4-btn-default-small-focus .x4-frame-bc { + background-image: url(images/btn/btn-default-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-focus .x4-frame-ml, +.x4-btn-default-small-focus .x4-frame-mr { + background-image: url(images/btn/btn-default-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-focus .x4-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-menu-active .x4-frame-tl, +.x4-btn-default-small-menu-active .x4-frame-bl, +.x4-btn-default-small-menu-active .x4-frame-tr, +.x4-btn-default-small-menu-active .x4-frame-br, +.x4-btn-default-small-menu-active .x4-frame-tc, +.x4-btn-default-small-menu-active .x4-frame-bc, +.x4-btn-default-small-pressed .x4-frame-tl, +.x4-btn-default-small-pressed .x4-frame-bl, +.x4-btn-default-small-pressed .x4-frame-tr, +.x4-btn-default-small-pressed .x4-frame-br, +.x4-btn-default-small-pressed .x4-frame-tc, +.x4-btn-default-small-pressed .x4-frame-bc { + background-image: url(images/btn/btn-default-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-menu-active .x4-frame-ml, +.x4-btn-default-small-menu-active .x4-frame-mr, +.x4-btn-default-small-pressed .x4-frame-ml, +.x4-btn-default-small-pressed .x4-frame-mr { + background-image: url(images/btn/btn-default-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-menu-active .x4-frame-mc, +.x4-btn-default-small-pressed .x4-frame-mc { + background-color: #b6cbe4; + background-image: url(images/btn/btn-default-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-disabled .x4-frame-tl, +.x4-btn-default-small-disabled .x4-frame-bl, +.x4-btn-default-small-disabled .x4-frame-tr, +.x4-btn-default-small-disabled .x4-frame-br, +.x4-btn-default-small-disabled .x4-frame-tc, +.x4-btn-default-small-disabled .x4-frame-bc { + background-image: url(images/btn/btn-default-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-disabled .x4-frame-ml, +.x4-btn-default-small-disabled .x4-frame-mr { + background-image: url(images/btn/btn-default-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-disabled .x4-frame-mc { + background-color: #f7f7f7; + background-image: url(images/btn/btn-default-small-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-small-over { + background-image: url(images/btn/btn-default-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-small-focus { + background-image: url(images/btn/btn-default-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-small-menu-active, +.x4-nlg .x4-btn-default-small-pressed { + background-image: url(images/btn/btn-default-small-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-small-disabled { + background-image: url(images/btn/btn-default-small-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nbr .x4-btn-default-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small .x4-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-over .x4-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-over .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-disabled .x4-btn-inner, +.x4-btn-default-small-disabled .x4-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium { + border-color: #d1d1d1; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: white; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(48%, #f9f9f9), color-stop(52%, #e2e2e2), color-stop(100%, #e7e7e7)); + background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-mc { + background-image: url(images/btn/btn-default-medium-fbg.gif); + background-position: 0 top; + background-color: white; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-btn-default-medium { + background-image: url(images/btn/btn-default-medium-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-btn-default-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-btn-default-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-tr, +.x4-btn-default-medium-br, +.x4-btn-default-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-tl, +.x4-btn-default-medium-bl, +.x4-btn-default-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-tl, +.x4-btn-default-medium-bl, +.x4-btn-default-medium-tr, +.x4-btn-default-medium-br, +.x4-btn-default-medium-tc, +.x4-btn-default-medium-bc, +.x4-btn-default-medium-ml, +.x4-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-ml, +.x4-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-btn-default-medium-tl, +.x4-strict .x4-ie7 .x4-btn-default-medium-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-medium:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium .x4-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium .x4-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium .x4-btn-arrow-right { + padding-right: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium .x4-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium .x4-btn-glyph { + font-size: 24px; + line-height: 24px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie8m .x4-btn-default-medium .x4-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: #f7f7f7; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf)); + background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon .x4-btn-button, +.x4-btn-default-medium-noicon .x4-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon .x4-btn-inner, +.x4-btn-default-medium-noicon .x4-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-medium-noicon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-medium-icon-text-left .x4-btn-arrow-right .x4-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon .x4-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon .x4-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-left .x4-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-left .x4-btn-inner { + line-height: 24px; + padding-left: 28px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-left .x4-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-medium-icon-text-left .x4-btn-icon-el, .x4-quirks .x4-btn-default-medium-icon-text-left .x4-btn-icon-el { + height: 24px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-right .x4-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-right .x4-btn-inner { + line-height: 24px; + padding-right: 28px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-right .x4-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-medium-icon-text-right .x4-btn-icon-el, .x4-quirks .x4-btn-default-medium-icon-text-right .x4-btn-icon-el { + height: 24px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-top .x4-btn-inner { + padding-top: 28px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-top .x4-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-medium-icon-text-top .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-medium-icon-text-top .x4-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-bottom .x4-btn-inner { + padding-bottom: 28px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-bottom .x4-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-medium-icon-text-bottom .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-medium-icon-text-bottom .x4-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-over { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-focus { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-menu-active, +.x4-btn-default-medium-pressed { + border-color: #9ebae1; + background-image: none; + background-color: #b6cbe4; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5)); + background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-over .x4-frame-tl, +.x4-btn-default-medium-over .x4-frame-bl, +.x4-btn-default-medium-over .x4-frame-tr, +.x4-btn-default-medium-over .x4-frame-br, +.x4-btn-default-medium-over .x4-frame-tc, +.x4-btn-default-medium-over .x4-frame-bc { + background-image: url(images/btn/btn-default-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-over .x4-frame-ml, +.x4-btn-default-medium-over .x4-frame-mr { + background-image: url(images/btn/btn-default-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-over .x4-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-focus .x4-frame-tl, +.x4-btn-default-medium-focus .x4-frame-bl, +.x4-btn-default-medium-focus .x4-frame-tr, +.x4-btn-default-medium-focus .x4-frame-br, +.x4-btn-default-medium-focus .x4-frame-tc, +.x4-btn-default-medium-focus .x4-frame-bc { + background-image: url(images/btn/btn-default-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-focus .x4-frame-ml, +.x4-btn-default-medium-focus .x4-frame-mr { + background-image: url(images/btn/btn-default-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-focus .x4-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-menu-active .x4-frame-tl, +.x4-btn-default-medium-menu-active .x4-frame-bl, +.x4-btn-default-medium-menu-active .x4-frame-tr, +.x4-btn-default-medium-menu-active .x4-frame-br, +.x4-btn-default-medium-menu-active .x4-frame-tc, +.x4-btn-default-medium-menu-active .x4-frame-bc, +.x4-btn-default-medium-pressed .x4-frame-tl, +.x4-btn-default-medium-pressed .x4-frame-bl, +.x4-btn-default-medium-pressed .x4-frame-tr, +.x4-btn-default-medium-pressed .x4-frame-br, +.x4-btn-default-medium-pressed .x4-frame-tc, +.x4-btn-default-medium-pressed .x4-frame-bc { + background-image: url(images/btn/btn-default-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-menu-active .x4-frame-ml, +.x4-btn-default-medium-menu-active .x4-frame-mr, +.x4-btn-default-medium-pressed .x4-frame-ml, +.x4-btn-default-medium-pressed .x4-frame-mr { + background-image: url(images/btn/btn-default-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-menu-active .x4-frame-mc, +.x4-btn-default-medium-pressed .x4-frame-mc { + background-color: #b6cbe4; + background-image: url(images/btn/btn-default-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-disabled .x4-frame-tl, +.x4-btn-default-medium-disabled .x4-frame-bl, +.x4-btn-default-medium-disabled .x4-frame-tr, +.x4-btn-default-medium-disabled .x4-frame-br, +.x4-btn-default-medium-disabled .x4-frame-tc, +.x4-btn-default-medium-disabled .x4-frame-bc { + background-image: url(images/btn/btn-default-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-disabled .x4-frame-ml, +.x4-btn-default-medium-disabled .x4-frame-mr { + background-image: url(images/btn/btn-default-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-disabled .x4-frame-mc { + background-color: #f7f7f7; + background-image: url(images/btn/btn-default-medium-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-medium-over { + background-image: url(images/btn/btn-default-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-medium-focus { + background-image: url(images/btn/btn-default-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-medium-menu-active, +.x4-nlg .x4-btn-default-medium-pressed { + background-image: url(images/btn/btn-default-medium-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-medium-disabled { + background-image: url(images/btn/btn-default-medium-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nbr .x4-btn-default-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium .x4-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-over .x4-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-over .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-disabled .x4-btn-inner, +.x4-btn-default-medium-disabled .x4-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large { + border-color: #d1d1d1; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: white; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(48%, #f9f9f9), color-stop(52%, #e2e2e2), color-stop(100%, #e7e7e7)); + background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-mc { + background-image: url(images/btn/btn-default-large-fbg.gif); + background-position: 0 top; + background-color: white; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-btn-default-large { + background-image: url(images/btn/btn-default-large-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-btn-default-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-btn-default-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-tr, +.x4-btn-default-large-br, +.x4-btn-default-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-tl, +.x4-btn-default-large-bl, +.x4-btn-default-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-tl, +.x4-btn-default-large-bl, +.x4-btn-default-large-tr, +.x4-btn-default-large-br, +.x4-btn-default-large-tc, +.x4-btn-default-large-bc, +.x4-btn-default-large-ml, +.x4-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-ml, +.x4-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-btn-default-large-tl, +.x4-strict .x4-ie7 .x4-btn-default-large-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-large:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large .x4-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large .x4-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large .x4-btn-arrow-right { + padding-right: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large .x4-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large .x4-btn-glyph { + font-size: 32px; + line-height: 32px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie8m .x4-btn-default-large .x4-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: #f7f7f7; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf)); + background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon .x4-btn-button, +.x4-btn-default-large-noicon .x4-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon .x4-btn-inner, +.x4-btn-default-large-noicon .x4-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-large-noicon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-large-icon-text-left .x4-btn-arrow-right .x4-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon .x4-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon .x4-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-left .x4-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-left .x4-btn-inner { + line-height: 32px; + padding-left: 36px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-left .x4-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-large-icon-text-left .x4-btn-icon-el, .x4-quirks .x4-btn-default-large-icon-text-left .x4-btn-icon-el { + height: 32px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-right .x4-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-right .x4-btn-inner { + line-height: 32px; + padding-right: 36px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-right .x4-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-large-icon-text-right .x4-btn-icon-el, .x4-quirks .x4-btn-default-large-icon-text-right .x4-btn-icon-el { + height: 32px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-top .x4-btn-inner { + padding-top: 36px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-top .x4-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-large-icon-text-top .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-large-icon-text-top .x4-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-bottom .x4-btn-inner { + padding-bottom: 36px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-bottom .x4-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-large-icon-text-bottom .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-large-icon-text-bottom .x4-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-over { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-focus { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-menu-active, +.x4-btn-default-large-pressed { + border-color: #9ebae1; + background-image: none; + background-color: #b6cbe4; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5)); + background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-over .x4-frame-tl, +.x4-btn-default-large-over .x4-frame-bl, +.x4-btn-default-large-over .x4-frame-tr, +.x4-btn-default-large-over .x4-frame-br, +.x4-btn-default-large-over .x4-frame-tc, +.x4-btn-default-large-over .x4-frame-bc { + background-image: url(images/btn/btn-default-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-over .x4-frame-ml, +.x4-btn-default-large-over .x4-frame-mr { + background-image: url(images/btn/btn-default-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-over .x4-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-focus .x4-frame-tl, +.x4-btn-default-large-focus .x4-frame-bl, +.x4-btn-default-large-focus .x4-frame-tr, +.x4-btn-default-large-focus .x4-frame-br, +.x4-btn-default-large-focus .x4-frame-tc, +.x4-btn-default-large-focus .x4-frame-bc { + background-image: url(images/btn/btn-default-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-focus .x4-frame-ml, +.x4-btn-default-large-focus .x4-frame-mr { + background-image: url(images/btn/btn-default-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-focus .x4-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-menu-active .x4-frame-tl, +.x4-btn-default-large-menu-active .x4-frame-bl, +.x4-btn-default-large-menu-active .x4-frame-tr, +.x4-btn-default-large-menu-active .x4-frame-br, +.x4-btn-default-large-menu-active .x4-frame-tc, +.x4-btn-default-large-menu-active .x4-frame-bc, +.x4-btn-default-large-pressed .x4-frame-tl, +.x4-btn-default-large-pressed .x4-frame-bl, +.x4-btn-default-large-pressed .x4-frame-tr, +.x4-btn-default-large-pressed .x4-frame-br, +.x4-btn-default-large-pressed .x4-frame-tc, +.x4-btn-default-large-pressed .x4-frame-bc { + background-image: url(images/btn/btn-default-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-menu-active .x4-frame-ml, +.x4-btn-default-large-menu-active .x4-frame-mr, +.x4-btn-default-large-pressed .x4-frame-ml, +.x4-btn-default-large-pressed .x4-frame-mr { + background-image: url(images/btn/btn-default-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-menu-active .x4-frame-mc, +.x4-btn-default-large-pressed .x4-frame-mc { + background-color: #b6cbe4; + background-image: url(images/btn/btn-default-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-disabled .x4-frame-tl, +.x4-btn-default-large-disabled .x4-frame-bl, +.x4-btn-default-large-disabled .x4-frame-tr, +.x4-btn-default-large-disabled .x4-frame-br, +.x4-btn-default-large-disabled .x4-frame-tc, +.x4-btn-default-large-disabled .x4-frame-bc { + background-image: url(images/btn/btn-default-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-disabled .x4-frame-ml, +.x4-btn-default-large-disabled .x4-frame-mr { + background-image: url(images/btn/btn-default-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-disabled .x4-frame-mc { + background-color: #f7f7f7; + background-image: url(images/btn/btn-default-large-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-large-over { + background-image: url(images/btn/btn-default-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-large-focus { + background-image: url(images/btn/btn-default-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-large-menu-active, +.x4-nlg .x4-btn-default-large-pressed { + background-image: url(images/btn/btn-default-large-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-large-disabled { + background-image: url(images/btn/btn-default-large-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nbr .x4-btn-default-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large .x4-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-over .x4-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-over .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-disabled .x4-btn-inner, +.x4-btn-default-large-disabled .x4-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small { + border-color: transparent; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small { + -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: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-btn-default-toolbar-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-btn-default-toolbar-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-tr, +.x4-btn-default-toolbar-small-br, +.x4-btn-default-toolbar-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-tl, +.x4-btn-default-toolbar-small-bl, +.x4-btn-default-toolbar-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-tl, +.x4-btn-default-toolbar-small-bl, +.x4-btn-default-toolbar-small-tr, +.x4-btn-default-toolbar-small-br, +.x4-btn-default-toolbar-small-tc, +.x4-btn-default-toolbar-small-bc, +.x4-btn-default-toolbar-small-ml, +.x4-btn-default-toolbar-small-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-ml, +.x4-btn-default-toolbar-small-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-btn-default-toolbar-small-tl, +.x4-strict .x4-ie7 .x4-btn-default-toolbar-small-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small .x4-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 4px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small .x4-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small .x4-btn-arrow-right { + padding-right: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small .x4-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small .x4-btn-glyph { + font-size: 16px; + line-height: 16px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie8m .x4-btn-default-toolbar-small .x4-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: transparent; +} +/* line 317, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-disabled .x4-btn-inner { + color: #8c8c8c; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon .x4-btn-button, +.x4-btn-default-toolbar-small-noicon .x4-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon .x4-btn-inner, +.x4-btn-default-toolbar-small-noicon .x4-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-toolbar-small-noicon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-toolbar-small-icon-text-left .x4-btn-arrow-right .x4-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon .x4-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon .x4-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-left .x4-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-left .x4-btn-inner { + line-height: 16px; + padding-left: 20px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-left .x4-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-small-icon-text-left .x4-btn-icon-el, .x4-quirks .x4-btn-default-toolbar-small-icon-text-left .x4-btn-icon-el { + height: 16px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-right .x4-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-right .x4-btn-inner { + line-height: 16px; + padding-right: 20px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-right .x4-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-small-icon-text-right .x4-btn-icon-el, .x4-quirks .x4-btn-default-toolbar-small-icon-text-right .x4-btn-icon-el { + height: 16px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-top .x4-btn-inner { + padding-top: 20px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-top .x4-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-small-icon-text-top .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-toolbar-small-icon-text-top .x4-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-bottom .x4-btn-inner { + padding-bottom: 20px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-bottom .x4-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-small-icon-text-bottom .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-toolbar-small-icon-text-bottom .x4-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-over { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-focus { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-menu-active, +.x4-btn-default-toolbar-small-pressed { + border-color: #7a9ac4; + background-image: none; + background-color: #bccfe5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5)); + background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-over .x4-frame-tl, +.x4-btn-default-toolbar-small-over .x4-frame-bl, +.x4-btn-default-toolbar-small-over .x4-frame-tr, +.x4-btn-default-toolbar-small-over .x4-frame-br, +.x4-btn-default-toolbar-small-over .x4-frame-tc, +.x4-btn-default-toolbar-small-over .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-over .x4-frame-ml, +.x4-btn-default-toolbar-small-over .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-over .x4-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-focus .x4-frame-tl, +.x4-btn-default-toolbar-small-focus .x4-frame-bl, +.x4-btn-default-toolbar-small-focus .x4-frame-tr, +.x4-btn-default-toolbar-small-focus .x4-frame-br, +.x4-btn-default-toolbar-small-focus .x4-frame-tc, +.x4-btn-default-toolbar-small-focus .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-focus .x4-frame-ml, +.x4-btn-default-toolbar-small-focus .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-focus .x4-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-menu-active .x4-frame-tl, +.x4-btn-default-toolbar-small-menu-active .x4-frame-bl, +.x4-btn-default-toolbar-small-menu-active .x4-frame-tr, +.x4-btn-default-toolbar-small-menu-active .x4-frame-br, +.x4-btn-default-toolbar-small-menu-active .x4-frame-tc, +.x4-btn-default-toolbar-small-menu-active .x4-frame-bc, +.x4-btn-default-toolbar-small-pressed .x4-frame-tl, +.x4-btn-default-toolbar-small-pressed .x4-frame-bl, +.x4-btn-default-toolbar-small-pressed .x4-frame-tr, +.x4-btn-default-toolbar-small-pressed .x4-frame-br, +.x4-btn-default-toolbar-small-pressed .x4-frame-tc, +.x4-btn-default-toolbar-small-pressed .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-menu-active .x4-frame-ml, +.x4-btn-default-toolbar-small-menu-active .x4-frame-mr, +.x4-btn-default-toolbar-small-pressed .x4-frame-ml, +.x4-btn-default-toolbar-small-pressed .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-menu-active .x4-frame-mc, +.x4-btn-default-toolbar-small-pressed .x4-frame-mc { + background-color: #bccfe5; + background-image: url(images/btn/btn-default-toolbar-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-disabled .x4-frame-tl, +.x4-btn-default-toolbar-small-disabled .x4-frame-bl, +.x4-btn-default-toolbar-small-disabled .x4-frame-tr, +.x4-btn-default-toolbar-small-disabled .x4-frame-br, +.x4-btn-default-toolbar-small-disabled .x4-frame-tc, +.x4-btn-default-toolbar-small-disabled .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-disabled .x4-frame-ml, +.x4-btn-default-toolbar-small-disabled .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-disabled .x4-frame-mc { + background-color: transparent; +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-toolbar-small-over { + background-image: url(images/btn/btn-default-toolbar-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-toolbar-small-focus { + background-image: url(images/btn/btn-default-toolbar-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-toolbar-small-menu-active, +.x4-nlg .x4-btn-default-toolbar-small-pressed { + background-image: url(images/btn/btn-default-toolbar-small-pressed-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nbr .x4-btn-default-toolbar-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small .x4-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-over .x4-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-over .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium { + border-color: transparent; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-btn-default-toolbar-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-btn-default-toolbar-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-tr, +.x4-btn-default-toolbar-medium-br, +.x4-btn-default-toolbar-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-tl, +.x4-btn-default-toolbar-medium-bl, +.x4-btn-default-toolbar-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-tl, +.x4-btn-default-toolbar-medium-bl, +.x4-btn-default-toolbar-medium-tr, +.x4-btn-default-toolbar-medium-br, +.x4-btn-default-toolbar-medium-tc, +.x4-btn-default-toolbar-medium-bc, +.x4-btn-default-toolbar-medium-ml, +.x4-btn-default-toolbar-medium-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-ml, +.x4-btn-default-toolbar-medium-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-btn-default-toolbar-medium-tl, +.x4-strict .x4-ie7 .x4-btn-default-toolbar-medium-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium .x4-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium .x4-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium .x4-btn-arrow-right { + padding-right: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium .x4-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium .x4-btn-glyph { + font-size: 24px; + line-height: 24px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie8m .x4-btn-default-toolbar-medium .x4-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: transparent; +} +/* line 317, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-disabled .x4-btn-inner { + color: #8c8c8c; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon .x4-btn-button, +.x4-btn-default-toolbar-medium-noicon .x4-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon .x4-btn-inner, +.x4-btn-default-toolbar-medium-noicon .x4-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-toolbar-medium-noicon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-arrow-right .x4-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon .x4-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon .x4-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-inner { + line-height: 24px; + padding-left: 28px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-medium-icon-text-left .x4-btn-icon-el, .x4-quirks .x4-btn-default-toolbar-medium-icon-text-left .x4-btn-icon-el { + height: 24px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-right .x4-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-right .x4-btn-inner { + line-height: 24px; + padding-right: 28px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-right .x4-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-medium-icon-text-right .x4-btn-icon-el, .x4-quirks .x4-btn-default-toolbar-medium-icon-text-right .x4-btn-icon-el { + height: 24px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-top .x4-btn-inner { + padding-top: 28px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-top .x4-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-medium-icon-text-top .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-toolbar-medium-icon-text-top .x4-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-bottom .x4-btn-inner { + padding-bottom: 28px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-bottom .x4-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-medium-icon-text-bottom .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-toolbar-medium-icon-text-bottom .x4-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-over { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-focus { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-menu-active, +.x4-btn-default-toolbar-medium-pressed { + border-color: #7a9ac4; + background-image: none; + background-color: #bccfe5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5)); + background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-over .x4-frame-tl, +.x4-btn-default-toolbar-medium-over .x4-frame-bl, +.x4-btn-default-toolbar-medium-over .x4-frame-tr, +.x4-btn-default-toolbar-medium-over .x4-frame-br, +.x4-btn-default-toolbar-medium-over .x4-frame-tc, +.x4-btn-default-toolbar-medium-over .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-over .x4-frame-ml, +.x4-btn-default-toolbar-medium-over .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-over .x4-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-focus .x4-frame-tl, +.x4-btn-default-toolbar-medium-focus .x4-frame-bl, +.x4-btn-default-toolbar-medium-focus .x4-frame-tr, +.x4-btn-default-toolbar-medium-focus .x4-frame-br, +.x4-btn-default-toolbar-medium-focus .x4-frame-tc, +.x4-btn-default-toolbar-medium-focus .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-focus .x4-frame-ml, +.x4-btn-default-toolbar-medium-focus .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-focus .x4-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-menu-active .x4-frame-tl, +.x4-btn-default-toolbar-medium-menu-active .x4-frame-bl, +.x4-btn-default-toolbar-medium-menu-active .x4-frame-tr, +.x4-btn-default-toolbar-medium-menu-active .x4-frame-br, +.x4-btn-default-toolbar-medium-menu-active .x4-frame-tc, +.x4-btn-default-toolbar-medium-menu-active .x4-frame-bc, +.x4-btn-default-toolbar-medium-pressed .x4-frame-tl, +.x4-btn-default-toolbar-medium-pressed .x4-frame-bl, +.x4-btn-default-toolbar-medium-pressed .x4-frame-tr, +.x4-btn-default-toolbar-medium-pressed .x4-frame-br, +.x4-btn-default-toolbar-medium-pressed .x4-frame-tc, +.x4-btn-default-toolbar-medium-pressed .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-menu-active .x4-frame-ml, +.x4-btn-default-toolbar-medium-menu-active .x4-frame-mr, +.x4-btn-default-toolbar-medium-pressed .x4-frame-ml, +.x4-btn-default-toolbar-medium-pressed .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-menu-active .x4-frame-mc, +.x4-btn-default-toolbar-medium-pressed .x4-frame-mc { + background-color: #bccfe5; + background-image: url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-disabled .x4-frame-tl, +.x4-btn-default-toolbar-medium-disabled .x4-frame-bl, +.x4-btn-default-toolbar-medium-disabled .x4-frame-tr, +.x4-btn-default-toolbar-medium-disabled .x4-frame-br, +.x4-btn-default-toolbar-medium-disabled .x4-frame-tc, +.x4-btn-default-toolbar-medium-disabled .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-disabled .x4-frame-ml, +.x4-btn-default-toolbar-medium-disabled .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-disabled .x4-frame-mc { + background-color: transparent; +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-toolbar-medium-over { + background-image: url(images/btn/btn-default-toolbar-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-toolbar-medium-focus { + background-image: url(images/btn/btn-default-toolbar-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-toolbar-medium-menu-active, +.x4-nlg .x4-btn-default-toolbar-medium-pressed { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nbr .x4-btn-default-toolbar-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium .x4-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-over .x4-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-over .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large { + border-color: transparent; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-btn-default-toolbar-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-btn-default-toolbar-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-tr, +.x4-btn-default-toolbar-large-br, +.x4-btn-default-toolbar-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-tl, +.x4-btn-default-toolbar-large-bl, +.x4-btn-default-toolbar-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-tl, +.x4-btn-default-toolbar-large-bl, +.x4-btn-default-toolbar-large-tr, +.x4-btn-default-toolbar-large-br, +.x4-btn-default-toolbar-large-tc, +.x4-btn-default-toolbar-large-bc, +.x4-btn-default-toolbar-large-ml, +.x4-btn-default-toolbar-large-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-ml, +.x4-btn-default-toolbar-large-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-btn-default-toolbar-large-tl, +.x4-strict .x4-ie7 .x4-btn-default-toolbar-large-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large .x4-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large .x4-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large .x4-btn-arrow-right { + padding-right: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large .x4-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large .x4-btn-glyph { + font-size: 32px; + line-height: 32px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie8m .x4-btn-default-toolbar-large .x4-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: transparent; +} +/* line 317, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-disabled .x4-btn-inner { + color: #8c8c8c; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon .x4-btn-button, +.x4-btn-default-toolbar-large-noicon .x4-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon .x4-btn-inner, +.x4-btn-default-toolbar-large-noicon .x4-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-toolbar-large-noicon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-toolbar-large-icon-text-left .x4-btn-arrow-right .x4-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon .x4-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon .x4-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-left .x4-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-left .x4-btn-inner { + line-height: 32px; + padding-left: 36px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-left .x4-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-large-icon-text-left .x4-btn-icon-el, .x4-quirks .x4-btn-default-toolbar-large-icon-text-left .x4-btn-icon-el { + height: 32px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-right .x4-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-right .x4-btn-inner { + line-height: 32px; + padding-right: 36px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-right .x4-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-large-icon-text-right .x4-btn-icon-el, .x4-quirks .x4-btn-default-toolbar-large-icon-text-right .x4-btn-icon-el { + height: 32px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-top .x4-btn-inner { + padding-top: 36px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-top .x4-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-large-icon-text-top .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-toolbar-large-icon-text-top .x4-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-bottom .x4-btn-inner { + padding-bottom: 36px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-bottom .x4-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-large-icon-text-bottom .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-toolbar-large-icon-text-bottom .x4-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-over { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-focus { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-menu-active, +.x4-btn-default-toolbar-large-pressed { + border-color: #7a9ac4; + background-image: none; + background-color: #bccfe5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5)); + background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-over .x4-frame-tl, +.x4-btn-default-toolbar-large-over .x4-frame-bl, +.x4-btn-default-toolbar-large-over .x4-frame-tr, +.x4-btn-default-toolbar-large-over .x4-frame-br, +.x4-btn-default-toolbar-large-over .x4-frame-tc, +.x4-btn-default-toolbar-large-over .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-over .x4-frame-ml, +.x4-btn-default-toolbar-large-over .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-over .x4-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-focus .x4-frame-tl, +.x4-btn-default-toolbar-large-focus .x4-frame-bl, +.x4-btn-default-toolbar-large-focus .x4-frame-tr, +.x4-btn-default-toolbar-large-focus .x4-frame-br, +.x4-btn-default-toolbar-large-focus .x4-frame-tc, +.x4-btn-default-toolbar-large-focus .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-focus .x4-frame-ml, +.x4-btn-default-toolbar-large-focus .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-focus .x4-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-menu-active .x4-frame-tl, +.x4-btn-default-toolbar-large-menu-active .x4-frame-bl, +.x4-btn-default-toolbar-large-menu-active .x4-frame-tr, +.x4-btn-default-toolbar-large-menu-active .x4-frame-br, +.x4-btn-default-toolbar-large-menu-active .x4-frame-tc, +.x4-btn-default-toolbar-large-menu-active .x4-frame-bc, +.x4-btn-default-toolbar-large-pressed .x4-frame-tl, +.x4-btn-default-toolbar-large-pressed .x4-frame-bl, +.x4-btn-default-toolbar-large-pressed .x4-frame-tr, +.x4-btn-default-toolbar-large-pressed .x4-frame-br, +.x4-btn-default-toolbar-large-pressed .x4-frame-tc, +.x4-btn-default-toolbar-large-pressed .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-menu-active .x4-frame-ml, +.x4-btn-default-toolbar-large-menu-active .x4-frame-mr, +.x4-btn-default-toolbar-large-pressed .x4-frame-ml, +.x4-btn-default-toolbar-large-pressed .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-menu-active .x4-frame-mc, +.x4-btn-default-toolbar-large-pressed .x4-frame-mc { + background-color: #bccfe5; + background-image: url(images/btn/btn-default-toolbar-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-disabled .x4-frame-tl, +.x4-btn-default-toolbar-large-disabled .x4-frame-bl, +.x4-btn-default-toolbar-large-disabled .x4-frame-tr, +.x4-btn-default-toolbar-large-disabled .x4-frame-br, +.x4-btn-default-toolbar-large-disabled .x4-frame-tc, +.x4-btn-default-toolbar-large-disabled .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-disabled .x4-frame-ml, +.x4-btn-default-toolbar-large-disabled .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-disabled .x4-frame-mc { + background-color: transparent; +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-toolbar-large-over { + background-image: url(images/btn/btn-default-toolbar-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-toolbar-large-focus { + background-image: url(images/btn/btn-default-toolbar-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-toolbar-large-menu-active, +.x4-nlg .x4-btn-default-toolbar-large-pressed { + background-image: url(images/btn/btn-default-toolbar-large-pressed-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nbr .x4-btn-default-toolbar-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large .x4-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-over .x4-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-over .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 1161, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-icon-text-left .x4-btn-icon-el { + background-position: left center; +} + +/* line 1173, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-icon-text-right .x4-btn-icon-el { + background-position: right center; +} + +/* line 1184, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-icon-text-top .x4-btn-icon-el { + background-position: center top; +} + +/* line 1188, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-icon-text-bottom .x4-btn-icon-el { + background-position: center bottom; +} + +/* line 1192, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-arrow-right { + background-position: right center; +} + +/* line 1202, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-arrow-bottom { + background-position: center bottom; +} + +/* line 1206, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-arrow { + background-repeat: no-repeat; +} + +/* line 1211, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-split { + display: block; + background-repeat: no-repeat; +} + +/* line 1216, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-split-right { + background-position: right center; +} + +/* line 1226, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-split-bottom { + background-position: center bottom; +} + +/* line 1230, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-cycle-fixed-width .x4-btn-inner { + text-align: inherit; +} + +/** + * Creates a visual theme for a Toolbar. + * @param {String} $ui + * The name of the UI + * + * @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 {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 {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-disabled=$toolbar-scroller-opacity-disabled] + * The opacity of disabled Toolbar scrollers + * + * @param {string} [$tool-background-image=$toolbar-tool-background-image] + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + * + * @member Ext.toolbar.Toolbar + */ +/* line 94, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar { + font-size: 11px; + border-style: solid; + padding: 2px 0 2px 2px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-item { + margin: 0 2px 0 0; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-text { + margin: 0 6px 0 4px; + color: #4c4c4c; + line-height: 16px; + font-family: tahoma, arial, verdana, sans-serif; + font-size: 11px; + font-weight: normal; +} + +/* line 121, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-separator-horizontal { + margin: 0 2px 0 0; + height: 14px; + border-style: solid; + border-width: 0 1px; + border-left-color: #98c8ff; + border-right-color: white; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-footer { + background: transparent; + border: 0; + margin: 3px 0 0; + padding: 2px 0 2px 6px; +} +/* line 144, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-footer .x4-toolbar-item { + margin: 0 6px 0 0; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-spacer { + width: 2px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-more-icon { + background-image: url(images/toolbar/more.gif) !important; + background-position: center center !important; + background-repeat: no-repeat; +} + +/* line 45, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-default { + border-color: #99bce8; + border-width: 1px; + background-image: none; + background-color: #d3e1f1; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfe9f5), color-stop(100%, #d3e1f1)); + background-image: -webkit-linear-gradient(top, #dfe9f5, #d3e1f1); + background-image: -moz-linear-gradient(top, #dfe9f5, #d3e1f1); + background-image: -o-linear-gradient(top, #dfe9f5, #d3e1f1); + background-image: linear-gradient(top, #dfe9f5, #d3e1f1); +} +/* line 51, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-default .x4-box-scroller { + cursor: pointer; +} +/* line 55, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-default .x4-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + cursor: default; +} + +/* line 82, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-nlg .x4-toolbar-default { + background-image: url(images/toolbar/toolbar-default-bg.gif) !important; + background-repeat: repeat-x; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-toolbar-default:after { + display: none; + content: "x-slicer:bg:url(images/toolbar/toolbar-default-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/* line 166, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-scroll-left { + background-image: url(images/toolbar/scroll-left.gif); + background-position: -14px 0; + width: 14px; + height: 22px; + border-style: solid; + border-color: #8db2e3; + border-width: 0 0 1px; + margin-top: 0; +} + +/* line 177, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-scroll-left-hover { + background-position: 0 0; +} + +/* line 181, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-scroll-right { + background-image: url(images/toolbar/scroll-right.gif); + width: 14px; + height: 22px; + border-style: solid; + border-color: #8db2e3; + border-width: 0 0 1px; + margin-top: 0; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-scroll-right-hover { + background-position: -14px 0; +} + +/* line 195, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar .x4-box-menu-after { + margin: 0 2px 0 2px; +} + +/* line 199, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-vertical { + padding: 2px 2px 0 2px; +} +/* line 202, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-vertical .x4-toolbar-item { + margin: 0 0 2px 0; +} +/* line 206, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-vertical .x4-toolbar-text { + margin: 4px 0 6px 0; +} +/* line 210, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-vertical .x4-toolbar-separator-vertical { + margin: 0 5px 2px; + border-style: solid none; + border-width: 1px 0; + border-top-color: #98c8ff; + border-bottom-color: white; +} +/* line 219, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-vertical .x4-box-menu-after, +.x4-toolbar-vertical .x4-rtl.x4-box-menu-after { + margin: 2px 0 2px 0; + display: block; + float: none; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x4-header-draggable .x4-header-body, +.x4-header-ghost { + cursor: move; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x4-header-text { + white-space: nowrap; +} + +/** + * Creates a visual theme for a Panel + * + * @param {string} $ui-label + * 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 {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-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`. + * + * @member Ext.panel.Panel + */ +/* line 736, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65); + opacity: 0.65; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-default { + border-color: #99bce8; + padding: 0; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default { + font-size: 11px; + border: 1px solid #99bce8; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-horizontal { + padding: 4px 5px 4px 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-horizontal-noborder { + padding: 5px 6px 4px 6px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical-noborder { + padding: 6px 5px 6px 4px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-text-container-default { + color: #04408c; + font-size: 11px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + line-height: 15px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-body-default { + background: white; + border-color: #99bce8; + color: black; + font-size: 12px; + font-size: normal; + border-width: 1px; + border-style: solid; +} + +/* line 432, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default { + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 436, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical { + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 454, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-nlg .x4-panel-header-default-top { + background: url(images/panel-header/panel-header-default-top-bg.gif); +} +/* line 459, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-nlg .x4-panel-header-default-bottom { + background: url(images/panel-header/panel-header-default-bottom-bg.gif); +} +/* line 464, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-nlg .x4-panel-header-default-left { + background: url(images/panel-header/panel-header-default-left-bg.gif) top right; +} +/* line 469, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-nlg .x4-panel-header-default-right { + background: url(images/panel-header/panel-header-default-right-bg.gif) top right; +} + +/* line 494, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel .x4-panel-header-default-collapsed-border-top { + border-bottom-width: 1px !important; +} +/* line 498, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel .x4-panel-header-default-collapsed-border-right { + border-left-width: 1px !important; +} +/* line 502, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel .x4-panel-header-default-collapsed-border-bottom { + border-top-width: 1px !important; +} +/* line 506, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel .x4-panel-header-default-collapsed-border-left { + border-right-width: 1px !important; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-top:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-top-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-bottom:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-bottom-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-left:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-left-bg.gif), stretch:left"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-right:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-right-bg.gif), stretch:left"; +} + +/**/ +/* */ +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical .x4-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x4-ie9m .x4-panel-header-default-vertical .x4-panel-header-text-container { + background-color: #cbddf3; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3); +} + +/* line 533, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-top { + -webkit-box-shadow: #f3f7fb 0 1px 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 1px 0px 0 inset; + box-shadow: #f3f7fb 0 1px 0px 0 inset; +} + +/* line 537, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-right { + -webkit-box-shadow: #f3f7fb -1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb -1px 0 0px 0 inset; + box-shadow: #f3f7fb -1px 0 0px 0 inset; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-bottom { + -webkit-box-shadow: #f3f7fb 0 -1px 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 -1px 0px 0 inset; + box-shadow: #f3f7fb 0 -1px 0px 0 inset; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-left { + -webkit-box-shadow: #f3f7fb 1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 1px 0 0px 0 inset; + box-shadow: #f3f7fb 1px 0 0px 0 inset; +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default .x4-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default .x4-panel-header-glyph { + color: #04408c; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-ie8m .x4-panel-header-default .x4-panel-header-glyph { + color: #678ebf; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-horizontal .x4-panel-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-horizontal .x4-panel-header-icon-after-title { + margin: 0 0 0 2px; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical .x4-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical .x4-panel-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-horizontal .x4-tool-after-title { + margin: 0 0 0 2px; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-horizontal .x4-tool-before-title { + margin: 0 2px 0 0; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical .x4-tool-after-title { + margin: 2px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical .x4-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 687, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-default-resizable .x4-panel-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-default-framed { + border-color: #99bce8; + padding: 4px; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed { + font-size: 11px; + border: 1px solid #99bce8; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-horizontal { + padding: 4px 5px 4px 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-horizontal-noborder { + padding: 5px 6px 4px 6px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical-noborder { + padding: 6px 5px 6px 4px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-text-container-default-framed { + color: #04408c; + font-size: 11px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + line-height: 15px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-body-default-framed { + background: #dfe9f6; + border-color: #99bce8; + color: black; + font-size: 12px; + font-size: normal; + border-width: 0; + border-style: solid; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed { + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: #dfe9f6; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-mc { + background-color: #dfe9f6; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-panel-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-panel-default-framed-frameInfo { + font-family: dh-4-4-4-4-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-tr, +.x4-panel-default-framed-br, +.x4-panel-default-framed-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-tl, +.x4-panel-default-framed-bl, +.x4-panel-default-framed-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-tl, +.x4-panel-default-framed-bl, +.x4-panel-default-framed-tr, +.x4-panel-default-framed-br, +.x4-panel-default-framed-tc, +.x4-panel-default-framed-bc, +.x4-panel-default-framed-ml, +.x4-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-ml, +.x4-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-panel-default-framed-tl, +.x4-strict .x4-ie7 .x4-panel-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: 4px 5px 4px 5px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-mc { + background-image: url(images/panel-header/panel-header-default-framed-top-fbg.gif); + background-position: 0 top; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-panel-header-default-framed-top { + background-image: url(images/panel-header/panel-header-default-framed-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-panel-header-default-framed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-panel-header-default-framed-top-frameInfo { + font-family: dh-4-4-0-0-1-1-0-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-tr, +.x4-panel-header-default-framed-top-br, +.x4-panel-header-default-framed-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-tl, +.x4-panel-header-default-framed-top-bl, +.x4-panel-header-default-framed-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-tl, +.x4-panel-header-default-framed-top-bl, +.x4-panel-header-default-framed-top-tr, +.x4-panel-header-default-framed-top-br, +.x4-panel-header-default-framed-top-tc, +.x4-panel-header-default-framed-top-bc, +.x4-panel-header-default-framed-top-ml, +.x4-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-ml, +.x4-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-mc { + padding: 1px 2px 4px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-panel-header-default-framed-top-tl, +.x4-strict .x4-ie7 .x4-panel-header-default-framed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-framed-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 4px 5px 4px; + border-width: 1px 1px 1px 0; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-right-fbg.gif); + background-position: right 0; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-panel-header-default-framed-right { + background-image: url(images/panel-header/panel-header-default-framed-right-bg.gif); + background-position: right 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-panel-header-default-framed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-panel-header-default-framed-right-frameInfo { + font-family: dv-0-4-4-0-1-1-1-0-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-tc { + background-position: right 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-bc { + background-position: right -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-tr, +.x4-panel-header-default-framed-right-br, +.x4-panel-header-default-framed-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-tl, +.x4-panel-header-default-framed-right-bl, +.x4-panel-header-default-framed-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-tl, +.x4-panel-header-default-framed-right-bl, +.x4-panel-header-default-framed-right-tr, +.x4-panel-header-default-framed-right-br, +.x4-panel-header-default-framed-right-tc, +.x4-panel-header-default-framed-right-bc, +.x4-panel-header-default-framed-right-ml, +.x4-panel-header-default-framed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-corners.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-tc, +.x4-panel-header-default-framed-right-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-sides.gif); + background-repeat: repeat-x; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-mc { + padding: 2px 1px 2px 4px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-panel-header-default-framed-right-tl, +.x4-strict .x4-ie7 .x4-panel-header-default-framed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-framed-right:after { + display: none; + content: "x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-right-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-right-bg.gif), corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: 4px 5px 4px 5px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-mc { + background-image: url(images/panel-header/panel-header-default-framed-bottom-fbg.gif); + background-position: 0 bottom; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-panel-header-default-framed-bottom { + background-image: url(images/panel-header/panel-header-default-framed-bottom-bg.gif); + background-position: 0 bottom; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-panel-header-default-framed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-panel-header-default-framed-bottom-frameInfo { + font-family: dh-0-0-4-4-0-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-tr, +.x4-panel-header-default-framed-bottom-br, +.x4-panel-header-default-framed-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-tl, +.x4-panel-header-default-framed-bottom-bl, +.x4-panel-header-default-framed-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-tl, +.x4-panel-header-default-framed-bottom-bl, +.x4-panel-header-default-framed-bottom-tr, +.x4-panel-header-default-framed-bottom-br, +.x4-panel-header-default-framed-bottom-tc, +.x4-panel-header-default-framed-bottom-bc, +.x4-panel-header-default-framed-bottom-ml, +.x4-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-ml, +.x4-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-mc { + padding: 4px 2px 1px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-panel-header-default-framed-bottom-tl, +.x4-strict .x4-ie7 .x4-panel-header-default-framed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-framed-bottom:after { + display: none; + content: "x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 4px 5px 4px; + border-width: 1px 0 1px 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-left-fbg.gif); + background-position: left 0; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-panel-header-default-framed-left { + background-image: url(images/panel-header/panel-header-default-framed-left-bg.gif); + background-position: left 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-panel-header-default-framed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-panel-header-default-framed-left-frameInfo { + font-family: dv-4-0-0-4-1-0-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-tc { + background-position: left 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-bc { + background-position: left -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-tr, +.x4-panel-header-default-framed-left-br, +.x4-panel-header-default-framed-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-tl, +.x4-panel-header-default-framed-left-bl, +.x4-panel-header-default-framed-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-tl, +.x4-panel-header-default-framed-left-bl, +.x4-panel-header-default-framed-left-tr, +.x4-panel-header-default-framed-left-br, +.x4-panel-header-default-framed-left-tc, +.x4-panel-header-default-framed-left-bc, +.x4-panel-header-default-framed-left-ml, +.x4-panel-header-default-framed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-corners.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-tc, +.x4-panel-header-default-framed-left-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-sides.gif); + background-repeat: repeat-x; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-mc { + padding: 2px 4px 2px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-panel-header-default-framed-left-tl, +.x4-strict .x4-ie7 .x4-panel-header-default-framed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-framed-left:after { + display: none; + content: "x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-left-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-left-bg.gif), corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif); + background-position: 0 top; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-panel-header-default-framed-collapsed-top { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-panel-header-default-framed-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-panel-header-default-framed-collapsed-top-frameInfo { + font-family: dh-4-4-4-4-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-tr, +.x4-panel-header-default-framed-collapsed-top-br, +.x4-panel-header-default-framed-collapsed-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-tl, +.x4-panel-header-default-framed-collapsed-top-bl, +.x4-panel-header-default-framed-collapsed-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-tl, +.x4-panel-header-default-framed-collapsed-top-bl, +.x4-panel-header-default-framed-collapsed-top-tr, +.x4-panel-header-default-framed-collapsed-top-br, +.x4-panel-header-default-framed-collapsed-top-tc, +.x4-panel-header-default-framed-collapsed-top-bc, +.x4-panel-header-default-framed-collapsed-top-ml, +.x4-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-ml, +.x4-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-mc { + padding: 1px 2px 1px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-top-tl, +.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-framed-collapsed-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif); + background-position: right 0; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-panel-header-default-framed-collapsed-right { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif); + background-position: right 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-panel-header-default-framed-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-panel-header-default-framed-collapsed-right-frameInfo { + font-family: dv-4-4-4-4-1-1-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-tc { + background-position: right 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-bc { + background-position: right -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-tr, +.x4-panel-header-default-framed-collapsed-right-br, +.x4-panel-header-default-framed-collapsed-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-tl, +.x4-panel-header-default-framed-collapsed-right-bl, +.x4-panel-header-default-framed-collapsed-right-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-tl, +.x4-panel-header-default-framed-collapsed-right-bl, +.x4-panel-header-default-framed-collapsed-right-tr, +.x4-panel-header-default-framed-collapsed-right-br, +.x4-panel-header-default-framed-collapsed-right-tc, +.x4-panel-header-default-framed-collapsed-right-bc, +.x4-panel-header-default-framed-collapsed-right-ml, +.x4-panel-header-default-framed-collapsed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-tc, +.x4-panel-header-default-framed-collapsed-right-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif); + background-repeat: repeat-x; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-mc { + padding: 2px 1px 2px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-right-tl, +.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-framed-collapsed-right:after { + display: none; + content: "x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif); + background-position: 0 bottom; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-panel-header-default-framed-collapsed-bottom { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif); + background-position: 0 bottom; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-panel-header-default-framed-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-panel-header-default-framed-collapsed-bottom-frameInfo { + font-family: dh-4-4-4-4-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-tr, +.x4-panel-header-default-framed-collapsed-bottom-br, +.x4-panel-header-default-framed-collapsed-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-tl, +.x4-panel-header-default-framed-collapsed-bottom-bl, +.x4-panel-header-default-framed-collapsed-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-tl, +.x4-panel-header-default-framed-collapsed-bottom-bl, +.x4-panel-header-default-framed-collapsed-bottom-tr, +.x4-panel-header-default-framed-collapsed-bottom-br, +.x4-panel-header-default-framed-collapsed-bottom-tc, +.x4-panel-header-default-framed-collapsed-bottom-bc, +.x4-panel-header-default-framed-collapsed-bottom-ml, +.x4-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-ml, +.x4-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-mc { + padding: 1px 2px 1px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-bottom-tl, +.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-framed-collapsed-bottom:after { + display: none; + content: "x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif); + background-position: left 0; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-panel-header-default-framed-collapsed-left { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif); + background-position: left 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-panel-header-default-framed-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-panel-header-default-framed-collapsed-left-frameInfo { + font-family: dv-4-4-4-4-1-1-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-tc { + background-position: left 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-bc { + background-position: left -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-tr, +.x4-panel-header-default-framed-collapsed-left-br, +.x4-panel-header-default-framed-collapsed-left-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-tl, +.x4-panel-header-default-framed-collapsed-left-bl, +.x4-panel-header-default-framed-collapsed-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-tl, +.x4-panel-header-default-framed-collapsed-left-bl, +.x4-panel-header-default-framed-collapsed-left-tr, +.x4-panel-header-default-framed-collapsed-left-br, +.x4-panel-header-default-framed-collapsed-left-tc, +.x4-panel-header-default-framed-collapsed-left-bc, +.x4-panel-header-default-framed-collapsed-left-ml, +.x4-panel-header-default-framed-collapsed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-tc, +.x4-panel-header-default-framed-collapsed-left-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif); + background-repeat: repeat-x; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-mc { + padding: 2px 1px 2px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-left-tl, +.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-framed-collapsed-left:after { + display: none; + content: "x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 396, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel .x4-panel-header-default-framed-top { + border-bottom-width: 1px !important; +} +/* line 400, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel .x4-panel-header-default-framed-right { + border-left-width: 1px !important; +} +/* line 404, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel .x4-panel-header-default-framed-bottom { + border-top-width: 1px !important; +} +/* line 408, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel .x4-panel-header-default-framed-left { + border-right-width: 1px !important; +} + +/* line 414, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-nbr .x4-panel-header-default-framed-collapsed-top { + border-bottom-width: 0 !important; +} +/* line 418, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-nbr .x4-panel-header-default-framed-collapsed-right { + border-left-width: 0 !important; +} +/* line 422, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-nbr .x4-panel-header-default-framed-collapsed-bottom { + border-top-width: 0 !important; +} +/* line 426, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-nbr .x4-panel-header-default-framed-collapsed-left { + border-right-width: 0 !important; +} + +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical .x4-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x4-ie9m .x4-panel-header-default-framed-vertical .x4-panel-header-text-container { + background-color: #cbddf3; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3); +} + +/* line 533, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-top { + -webkit-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; +} + +/* line 537, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-right { + -webkit-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset; + box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-bottom { + -webkit-box-shadow: #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + box-shadow: #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-left { + -webkit-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed .x4-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed .x4-panel-header-glyph { + color: #04408c; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-ie8m .x4-panel-header-default-framed .x4-panel-header-glyph { + color: #678ebf; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-horizontal .x4-panel-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-horizontal .x4-panel-header-icon-after-title { + margin: 0 0 0 2px; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical .x4-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical .x4-panel-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-horizontal .x4-tool-after-title { + margin: 0 0 0 2px; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-horizontal .x4-tool-before-title { + margin: 0 2px 0 0; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical .x4-tool-after-title { + margin: 2px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical .x4-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 687, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-default-framed-resizable .x4-panel-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/** + * Creates a visual theme for a Ext.tip.Tip + * + * @param {string} $ui-label + * 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-body-padding=$tip-header-body-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 167, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-anchor { + position: absolute; + overflow: hidden; + height: 10px; + width: 10px; + border-style: solid; + border-width: 5px; + border-color: #8eaace; + zoom: 1; +} +/* line 182, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-content-box .x4-tip-anchor { + height: 0; + width: 0; +} + +/* line 189, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-anchor-top { + border-top-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-anchor-bottom { + border-bottom-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-bottom-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-anchor-left { + border-top-color: transparent; + border-bottom-color: transparent; + border-left-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-left-color: pink; + _filter: chroma(color=pink); +} + +/* line 228, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-anchor-right { + border-top-color: transparent; + border-bottom-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: #e9f2ff; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-mc { + background-color: #e9f2ff; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-tip-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-tip-default-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-tr, +.x4-tip-default-br, +.x4-tip-default-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-tl, +.x4-tip-default-bl, +.x4-tip-default-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-tl, +.x4-tip-default-bl, +.x4-tip-default-tr, +.x4-tip-default-br, +.x4-tip-default-tc, +.x4-tip-default-bc, +.x4-tip-default-ml, +.x4-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-ml, +.x4-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-tip-default-tl, +.x4-strict .x4-ie7 .x4-tip-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tip-default:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-default { + border-color: #8eaace; +} +/* line 109, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-default .x4-tool-img { + background-color: #e9f2ff; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-default .x4-tool-after-title { + margin: 0 0 0 6px; +} +/* line 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-default .x4-tool-before-title { + margin: 0 6px 0 0; +} + +/* line 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-body-default { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-text-container-default { + color: #444444; + font-size: 11px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-body-default { + padding: 3px; + color: #444444; + font-size: 11px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-body-default a { + color: #2a2a2a; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: white; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-mc { + background-color: white; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-tip-form-invalid { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-tip-form-invalid-frameInfo { + font-family: th-5-5-5-5-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-tr, +.x4-tip-form-invalid-br, +.x4-tip-form-invalid-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-tl, +.x4-tip-form-invalid-bl, +.x4-tip-form-invalid-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-tl, +.x4-tip-form-invalid-bl, +.x4-tip-form-invalid-tr, +.x4-tip-form-invalid-br, +.x4-tip-form-invalid-tc, +.x4-tip-form-invalid-bc, +.x4-tip-form-invalid-ml, +.x4-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-ml, +.x4-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-tip-form-invalid-tl, +.x4-strict .x4-ie7 .x4-tip-form-invalid-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tip-form-invalid:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-form-invalid { + border-color: #a1311f; + -webkit-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; + -moz-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; + box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; +} +/* line 109, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-form-invalid .x4-tool-img { + background-color: white; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-form-invalid .x4-tool-after-title { + margin: 0 0 0 6px; +} +/* line 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-form-invalid .x4-tool-before-title { + margin: 0 6px 0 0; +} + +/* line 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-body-form-invalid { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-text-container-form-invalid { + color: #444444; + font-size: 11px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-body-form-invalid { + padding: 3px 3px 3px 22px; + color: #444444; + font-size: 11px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-body-form-invalid a { + color: #2a2a2a; +} + +/* line 265, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-body-form-invalid { + background: 1px 1px no-repeat; + background-image: url(images/form/exclamation.gif); +} +/* line 268, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-body-form-invalid li { + margin-bottom: 4px; +} +/* line 270, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-body-form-invalid li.last { + margin-bottom: 0; +} + +/** + * Creates a visual theme for a ButtonGroup. + * + * @param {string} $ui-label + * 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 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-default { + border-color: #b7c8d7; + -webkit-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; + -moz-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; + box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-header-default { + margin: 2px 2px 0 2px; + padding: 1px 0; + line-height: 15px; + background: #c2d8f0; + -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 109, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-header-default .x4-tool-img { + background-color: #c2d8f0; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-header-text-container-default { + font: normal 11px tahoma, arial, verdana, sans-serif; + line-height: 15px; + color: #3e6aaa; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-body-default { + padding: 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-body-default .x4-table-layout { + border-spacing: 0; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed { + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + padding: 1px 1px 1px 1px; + border-width: 1px; + border-style: solid; + background-color: #d0def0; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-mc { + background-color: #d0def0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-btn-group-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-btn-group-default-framed-frameInfo { + font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-tl { + background-position: 0 -4px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-tr { + background-position: right -6px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-bl { + background-position: 0 -8px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-br { + background-position: right -10px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-bc { + background-position: 0 -2px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-tr, +.x4-btn-group-default-framed-br, +.x4-btn-group-default-framed-mr { + padding-right: 2px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-tl, +.x4-btn-group-default-framed-bl, +.x4-btn-group-default-framed-ml { + padding-left: 2px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-tc { + height: 2px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-bc { + height: 2px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-tl, +.x4-btn-group-default-framed-bl, +.x4-btn-group-default-framed-tr, +.x4-btn-group-default-framed-br, +.x4-btn-group-default-framed-tc, +.x4-btn-group-default-framed-bc, +.x4-btn-group-default-framed-ml, +.x4-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-ml, +.x4-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-btn-group-default-framed-tl, +.x4-strict .x4-ie7 .x4-btn-group-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-group-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle { + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + padding: 1px 1px 1px 1px; + border-width: 1px; + border-style: solid; + background-color: #d0def0; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-mc { + background-color: #d0def0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-btn-group-default-framed-notitle { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-btn-group-default-framed-notitle-frameInfo { + font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-tl { + background-position: 0 -4px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-tr { + background-position: right -6px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-bl { + background-position: 0 -8px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-br { + background-position: right -10px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-bc { + background-position: 0 -2px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-tr, +.x4-btn-group-default-framed-notitle-br, +.x4-btn-group-default-framed-notitle-mr { + padding-right: 2px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-tl, +.x4-btn-group-default-framed-notitle-bl, +.x4-btn-group-default-framed-notitle-ml { + padding-left: 2px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-tc { + height: 2px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-bc { + height: 2px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-tl, +.x4-btn-group-default-framed-notitle-bl, +.x4-btn-group-default-framed-notitle-tr, +.x4-btn-group-default-framed-notitle-br, +.x4-btn-group-default-framed-notitle-tc, +.x4-btn-group-default-framed-notitle-bc, +.x4-btn-group-default-framed-notitle-ml, +.x4-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-ml, +.x4-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-btn-group-default-framed-notitle-tl, +.x4-strict .x4-ie7 .x4-btn-group-default-framed-notitle-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-group-default-framed-notitle:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"; +} + +/**/ +/* */ +/* line 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-default-framed { + border-color: #b7c8d7; + -webkit-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; + -moz-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; + box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-header-default-framed { + margin: 2px 2px 0 2px; + padding: 1px 0; + line-height: 15px; + background: #c2d8f0; + -moz-border-radius-topleft: 2px; + -webkit-border-top-left-radius: 2px; + border-top-left-radius: 2px; + -moz-border-radius-topright: 2px; + -webkit-border-top-right-radius: 2px; + border-top-right-radius: 2px; +} +/* line 109, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-header-default-framed .x4-tool-img { + background-color: #c2d8f0; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-header-text-container-default-framed { + font: normal 11px tahoma, arial, verdana, sans-serif; + line-height: 15px; + color: #3e6aaa; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-body-default-framed { + padding: 0 1px 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-body-default-framed .x4-table-layout { + border-spacing: 0; +} + +/** + * Creates a visual theme for a Window + * + * @param {string} $ui-label + * 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`. + * + * @member Ext.window.Window + */ +/* line 545, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65); + opacity: 0.65; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-default { + border-color: #a2b1c5; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-window-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-window-default-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-tr, +.x4-window-default-br, +.x4-window-default-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-tl, +.x4-window-default-bl, +.x4-window-default-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-tl, +.x4-window-default-bl, +.x4-window-default-tr, +.x4-window-default-br, +.x4-window-default-tc, +.x4-window-default-bc, +.x4-window-default-ml, +.x4-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-ml, +.x4-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-window-default-tl, +.x4-strict .x4-ie7 .x4-window-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-window-default:after { + display: none; + content: "x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"; +} + +/**/ +/* */ +/* line 195, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-body-default { + border-color: #99bbe8; + border-width: 1px; + border-style: solid; + background: #dfe8f6; + color: black; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default { + font-size: 11px; + border-color: #a2b1c5; + zoom: 1; + background-color: #ced9e7; +} +/* line 212, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default .x4-tool-img { + background-color: #ced9e7; +} + +/* line 223, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-vertical .x4-window-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x4-ie9m .x4-window-header-default-vertical .x4-window-header-text-container { + background-color: #ced9e7; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#ced9e7); +} + +/* line 233, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-text-container-default { + color: #04468c; + font-weight: bold; + line-height: 15px; + font-family: tahoma, arial, verdana, sans-serif; + font-size: 11px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-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: 4px 5px 0 5px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-window-header-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-window-header-default-top-frameInfo { + font-family: dh-5-5-0-0-1-1-0-1-4-5-0-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-tr, +.x4-window-header-default-top-br, +.x4-window-header-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-tl, +.x4-window-header-default-top-bl, +.x4-window-header-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-tl, +.x4-window-header-default-top-bl, +.x4-window-header-default-top-tr, +.x4-window-header-default-top-br, +.x4-window-header-default-top-tc, +.x4-window-header-default-top-bc, +.x4-window-header-default-top-ml, +.x4-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-ml, +.x4-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-mc { + padding: 0px 1px 0 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-window-header-default-top-tl, +.x4-strict .x4-ie7 .x4-window-header-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-window-header-default-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 5px; + -webkit-border-top-right-radius: 5px; + border-top-right-radius: 5px; + -moz-border-radius-bottomright: 5px; + -webkit-border-bottom-right-radius: 5px; + border-bottom-right-radius: 5px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 4px 5px 0; + border-width: 1px 1px 1px 0; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-window-header-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-window-header-default-right-frameInfo { + font-family: dh-0-5-5-0-1-1-1-0-5-4-5-0; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-tr, +.x4-window-header-default-right-br, +.x4-window-header-default-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-tl, +.x4-window-header-default-right-bl, +.x4-window-header-default-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-tl, +.x4-window-header-default-right-bl, +.x4-window-header-default-right-tr, +.x4-window-header-default-right-br, +.x4-window-header-default-right-tc, +.x4-window-header-default-right-bc, +.x4-window-header-default-right-ml, +.x4-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-ml, +.x4-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-mc { + padding: 1px 0px 1px 0; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-window-header-default-right-tl, +.x4-strict .x4-ie7 .x4-window-header-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-window-header-default-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: 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: 0 5px 4px 5px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-window-header-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-window-header-default-bottom-frameInfo { + font-family: dh-0-0-5-5-0-1-1-1-0-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-tr, +.x4-window-header-default-bottom-br, +.x4-window-header-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-tl, +.x4-window-header-default-bottom-bl, +.x4-window-header-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-tl, +.x4-window-header-default-bottom-bl, +.x4-window-header-default-bottom-tr, +.x4-window-header-default-bottom-br, +.x4-window-header-default-bottom-tc, +.x4-window-header-default-bottom-bc, +.x4-window-header-default-bottom-ml, +.x4-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-ml, +.x4-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-mc { + padding: 0 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-window-header-default-bottom-tl, +.x4-strict .x4-ie7 .x4-window-header-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-window-header-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left { + -moz-border-radius-topleft: 5px; + -webkit-border-top-left-radius: 5px; + border-top-left-radius: 5px; + -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: 5px; + -webkit-border-bottom-left-radius: 5px; + border-bottom-left-radius: 5px; + padding: 5px 0 5px 4px; + border-width: 1px 0 1px 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-window-header-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-window-header-default-left-frameInfo { + font-family: dh-5-0-0-5-1-0-1-1-5-0-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-tr, +.x4-window-header-default-left-br, +.x4-window-header-default-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-tl, +.x4-window-header-default-left-bl, +.x4-window-header-default-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-tl, +.x4-window-header-default-left-bl, +.x4-window-header-default-left-tr, +.x4-window-header-default-left-br, +.x4-window-header-default-left-tc, +.x4-window-header-default-left-bc, +.x4-window-header-default-left-ml, +.x4-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-ml, +.x4-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-mc { + padding: 1px 0 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-window-header-default-left-tl, +.x4-strict .x4-ie7 .x4-window-header-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-window-header-default-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-window-header-default-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-window-header-default-collapsed-top-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-tr, +.x4-window-header-default-collapsed-top-br, +.x4-window-header-default-collapsed-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-tl, +.x4-window-header-default-collapsed-top-bl, +.x4-window-header-default-collapsed-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-tl, +.x4-window-header-default-collapsed-top-bl, +.x4-window-header-default-collapsed-top-tr, +.x4-window-header-default-collapsed-top-br, +.x4-window-header-default-collapsed-top-tc, +.x4-window-header-default-collapsed-top-bc, +.x4-window-header-default-collapsed-top-ml, +.x4-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-ml, +.x4-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-window-header-default-collapsed-top-tl, +.x4-strict .x4-ie7 .x4-window-header-default-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-window-header-default-collapsed-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-window-header-default-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-window-header-default-collapsed-right-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-5-4-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-tr, +.x4-window-header-default-collapsed-right-br, +.x4-window-header-default-collapsed-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-tl, +.x4-window-header-default-collapsed-right-bl, +.x4-window-header-default-collapsed-right-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-tl, +.x4-window-header-default-collapsed-right-bl, +.x4-window-header-default-collapsed-right-tr, +.x4-window-header-default-collapsed-right-br, +.x4-window-header-default-collapsed-right-tc, +.x4-window-header-default-collapsed-right-bc, +.x4-window-header-default-collapsed-right-ml, +.x4-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-ml, +.x4-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-mc { + padding: 1px 0px 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-window-header-default-collapsed-right-tl, +.x4-strict .x4-ie7 .x4-window-header-default-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-window-header-default-collapsed-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-window-header-default-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-window-header-default-collapsed-bottom-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-tr, +.x4-window-header-default-collapsed-bottom-br, +.x4-window-header-default-collapsed-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-tl, +.x4-window-header-default-collapsed-bottom-bl, +.x4-window-header-default-collapsed-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-tl, +.x4-window-header-default-collapsed-bottom-bl, +.x4-window-header-default-collapsed-bottom-tr, +.x4-window-header-default-collapsed-bottom-br, +.x4-window-header-default-collapsed-bottom-tc, +.x4-window-header-default-collapsed-bottom-bc, +.x4-window-header-default-collapsed-bottom-ml, +.x4-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-ml, +.x4-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-window-header-default-collapsed-bottom-tl, +.x4-strict .x4-ie7 .x4-window-header-default-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-window-header-default-collapsed-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-window-header-default-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-window-header-default-collapsed-left-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-5-4-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-tr, +.x4-window-header-default-collapsed-left-br, +.x4-window-header-default-collapsed-left-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-tl, +.x4-window-header-default-collapsed-left-bl, +.x4-window-header-default-collapsed-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-tl, +.x4-window-header-default-collapsed-left-bl, +.x4-window-header-default-collapsed-left-tr, +.x4-window-header-default-collapsed-left-br, +.x4-window-header-default-collapsed-left-tc, +.x4-window-header-default-collapsed-left-bc, +.x4-window-header-default-collapsed-left-ml, +.x4-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-ml, +.x4-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-mc { + padding: 1px 0px 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-window-header-default-collapsed-left-tl, +.x4-strict .x4-ie7 .x4-window-header-default-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-window-header-default-collapsed-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 337, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-top { + -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; +} + +/* line 341, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-right { + -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; +} + +/* line 345, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-bottom { + -webkit-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-left { + -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; +} + +/* line 355, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default .x4-window-header-icon { + width: 16px; + height: 16px; + color: #04468c; + font-size: 16px; + line-height: 16px; + background-position: center center; +} +/* line 364, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default .x4-window-header-glyph { + color: #04468c; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 380, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-ie8m .x4-window-header-default .x4-window-header-glyph { + color: #698fb9; +} + +/* line 388, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-horizontal .x4-window-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 398, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-horizontal .x4-window-header-icon-after-title { + margin: 0 0 0 2px; +} + +/* line 410, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-vertical .x4-window-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 420, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-vertical .x4-window-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 433, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-horizontal .x4-tool-after-title { + margin: 0 0 0 2px; +} +/* line 443, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-horizontal .x4-tool-before-title { + margin: 0 2px 0 0; +} + +/* line 455, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-vertical .x4-tool-after-title { + margin: 2px 0 0 0; +} +/* line 465, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-vertical .x4-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 483, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-default-collapsed .x4-window-header { + border-width: 1px !important; +} + +/* line 489, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-nbr .x4-window-default-collapsed .x4-window-header { + border-width: 0 !important; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x4-form-invalid-under { + padding: 2px 2px 2px 20px; + color: #c0272b; + font: normal 11px tahoma, arial, verdana, sans-serif; + line-height: 16px; + background: no-repeat 0 2px; + background-image: url(images/form/exclamation.gif); +} + +/* line 14, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +div.x4-lbl-top-err-icon { + margin-bottom: 3px; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x4-form-invalid-icon { + width: 16px; + height: 16px; + margin: 0 1px; + background-image: url(images/form/exclamation.gif); + background-repeat: no-repeat; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x4-form-item-label { + color: black; + font: normal 12px/14px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} +/* line 31, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x4-toolbar-item .x4-form-item-label { + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} + +/* line 45, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x4-autocontainer-form-item, +.x4-anchor-form-item, +.x4-vbox-form-item, +.x4-table-form-item { + margin-bottom: 5px; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x4-ie6 .x4-form-form-item td { + border-top-width: 0; +} +/* line 59, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x4-ie6 td.x4-form-item-pad { + height: 5px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x4-form-field { + color: black; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x4-form-item, +.x4-form-field { + font: normal 12px tahoma, arial, verdana, sans-serif; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x4-form-type-text textarea.x4-form-invalid-field, .x4-form-type-text input.x4-form-invalid-field, +.x4-form-type-password textarea.x4-form-invalid-field, +.x4-form-type-password input.x4-form-invalid-field, +.x4-form-type-number textarea.x4-form-invalid-field, +.x4-form-type-number input.x4-form-invalid-field, +.x4-form-type-email textarea.x4-form-invalid-field, +.x4-form-type-email input.x4-form-invalid-field, +.x4-form-type-search textarea.x4-form-invalid-field, +.x4-form-type-search input.x4-form-invalid-field, +.x4-form-type-tel textarea.x4-form-invalid-field, +.x4-form-type-tel input.x4-form-invalid-field { + background-color: white; + background-image: url(images/grid/invalid_line.gif); + background-repeat: repeat-x; + background-position: bottom; + border-color: #cc3300; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x4-item-disabled .x4-form-item-label, +.x4-item-disabled .x4-form-field, +.x4-item-disabled .x4-form-display-field, +.x4-item-disabled .x4-form-cb-label, +.x4-item-disabled .x4-form-trigger { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x4-form-text { + color: black; + padding: 1px 3px 2px 3px; + background: white repeat-x 0 0; + border-width: 1px; + border-style: solid; + border-color: #b5b8c8; + background-image: url(images/form/text-bg.gif); + height: 22px; + line-height: 17px; +} +/* line 14, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x4-field-toolbar .x4-form-text { + height: 20px; + line-height: 15px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x4-content-box .x4-form-text { + height: 17px; +} +/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x4-content-box .x4-field-toolbar .x4-form-text { + height: 15px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x4-form-focus { + border-color: #7eadd9; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x4-form-empty-field, +textarea.x4-form-empty-field { + color: gray; +} + +/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x4-quirks .x4-ie .x4-form-text, +.x4-ie7m .x4-form-text { + margin-top: -1px; + margin-bottom: -1px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/TextArea.scss */ +.x4-form-textarea { + line-height: normal; + height: auto; + background-image: url(images/form/text-bg.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x4-form-display-field-body { + height: 22px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x4-toolbar-item .x4-form-display-field-body { + height: 20px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x4-form-display-field { + font: normal 12px/14px tahoma, arial, verdana, sans-serif; + color: black; + margin-top: 4px; +} +/* line 17, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x4-toolbar-item .x4-form-display-field { + margin-top: 4px; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x4-message-box .x4-window-body { + background-color: #ced9e7; + border-width: 0; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x4-message-box-info, +.x4-message-box-warning, +.x4-message-box-question, +.x4-message-box-error { + background-position: top left; + background-repeat: no-repeat; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x4-message-box-info { + background-image: url(images/shared/icon-info.gif); +} + +/* line 33, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x4-message-box-warning { + background-image: url(images/shared/icon-warning.gif); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x4-message-box-question { + background-image: url(images/shared/icon-question.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x4-message-box-error { + background-image: url(images/shared/icon-error.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-form-cb-wrap { + height: 22px; +} +/* line 4, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-toolbar-item .x4-form-cb-wrap { + height: 20px; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-form-cb { + margin-top: 5px; +} +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-toolbar-item .x4-form-cb { + margin-top: 4px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-form-checkbox { + width: 13px; + height: 13px; + background: url(images/form/checkbox.gif) no-repeat; +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-form-cb-checked .x4-form-checkbox { + background-position: 0 -13px; +} + +/* Focused */ +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-form-checkbox-focus { + background-position: -13px 0; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-form-cb-checked .x4-form-checkbox-focus { + background-position: -13px -13px; +} + +/* boxLabel */ +/* line 40, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-form-cb-label { + margin-top: 4px; + font: normal 12px/14px tahoma, arial, verdana, sans-serif; +} +/* line 43, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-toolbar-item .x4-form-cb-label { + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-form-cb-label-before { + margin-right: 4px; +} + +/* line 64, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-form-cb-label-after { + margin-left: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x4-form-checkboxgroup-body { + padding: 0 4px; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x4-form-invalid .x4-form-checkboxgroup-body { + border: 1px solid #cc3300; + background-image: url(images/grid/invalid_line.gif); + background-repeat: repeat-x; + background-position: bottom; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x4-check-group-alt { + background: #d1ddef; + border-top: 1px dotted #b5b8c8; + border-bottom: 1px dotted #b5b8c8; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x4-form-check-group-label { + color: black; + padding: 2px; + margin: 0 30px 5px 0; + border-width: 0 0 1px 0; + border-style: solid; + border-color: black; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset { + border: 1px solid #b5b8c8; + padding: 0 10px; + margin: 0 0 10px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-ie8m .x4-fieldset, +.x4-quirks .x4-ie .x4-fieldset { + padding-top: 0; +} +/* line 13, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-ie8m .x4-fieldset .x4-fieldset-body, +.x4-quirks .x4-ie .x4-fieldset .x4-fieldset-body { + padding-top: 0; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-header-checkbox { + line-height: 14px; + margin: 1px 3px 0 0; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-header { + padding: 0 3px 1px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-header .x4-tool { + margin-top: 1px; + padding: 0; +} +/* line 33, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-header .x4-form-cb-wrap { + padding: 1px 0; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-header-text { + font: 11px/14px bold tahoma, arial, verdana, sans-serif; + color: #15428b; + padding: 1px 0; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-header-text-collapsible { + cursor: pointer; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-with-title .x4-fieldset-header-checkbox, +.x4-fieldset-with-title .x4-tool { + margin: 1px 3px 0 0; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-webkit .x4-fieldset-header { + -webkit-padding-start: 3px; + -webkit-padding-end: 3px; +} + +/* line 76, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-opera .x4-fieldset-with-legend { + margin-top: -1px; +} +/* line 79, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-opera.x4-mac .x4-fieldset-header-text { + padding: 2px 0 0; +} + +/* line 87, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-strict .x4-ie8 .x4-fieldset-header { + margin-bottom: -1px; +} +/* line 91, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-strict .x4-ie8 .x4-fieldset-header .x4-tool, +.x4-strict .x4-ie8 .x4-fieldset-header .x4-fieldset-header-text, +.x4-strict .x4-ie8 .x4-fieldset-header .x4-fieldset-header-checkbox { + position: relative; + top: -1px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-quirks .x4-ie .x4-fieldset-header, +.x4-ie8m .x4-fieldset-header { + padding-left: 1px; + padding-right: 1px; +} + +/* line 109, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-collapsed .x4-fieldset-body { + display: none; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-collapsed { + padding-bottom: 0 !important; + border-width: 1px 1px 0 1px !important; + border-left-color: transparent !important; + border-right-color: transparent !important; +} + +/* line 123, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-ie6 .x4-fieldset-collapsed { + border-width: 1px 0 0 0 !important; + padding-bottom: 0 !important; + margin-left: 1px; + margin-right: 1px; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-ie .x4-fieldset-bwrap { + zoom: 1; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset .x4-tool-toggle { + background-position: 0 -60px; +} +/* line 144, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset .x4-tool-over .x4-tool-toggle { + background-position: -15px -60px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-collapsed .x4-tool-toggle { + background-position: 0 -75px; +} +/* line 156, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-collapsed .x4-tool-over .x4-tool-toggle { + background-position: -15px -75px; +} + +/* IE legend positioning bug */ +/* line 164, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-ie .x4-fieldset-noborder legend { + position: relative; + margin-bottom: 23px; +} + +/* line 170, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-ie .x4-fieldset-noborder legend span { + position: absolute; + left: 16px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset { + overflow: hidden; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-bwrap { + overflow: hidden; + zoom: 1; +} + +/* line 186, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-body { + overflow: hidden; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x4-form-radio { + width: 13px; + height: 13px; + background: url(images/form/radio.gif) no-repeat; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x4-form-cb-checked .x4-form-radio { + background-position: 0 -13px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x4-form-radio-focus { + background-position: -13px 0; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x4-form-cb-checked .x4-form-radio-focus { + background-position: -13px -13px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-form-trigger { + background: url(images/form/trigger.gif); + width: 17px; + border-width: 0 0 1px; + border-color: #b5b8c8; + border-style: solid; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-trigger-cell { + background-color: white; + width: 17px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-form-trigger-over { + background-position: -17px 0; + border-color: #7eadd9; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-form-trigger-wrap-focus .x4-form-trigger { + background-position: -51px 0; + border-color: #7eadd9; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-form-trigger-wrap-focus .x4-form-trigger-over { + background-position: -68px 0; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-form-trigger-click, +.x4-form-trigger-wrap-focus .x4-form-trigger-click { + background-position: -34px 0; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-form-clear-trigger { + background-image: url(images/form/clear-trigger.gif); +} + +/* line 59, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-form-search-trigger { + background-image: url(images/form/search-trigger.gif); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-quirks .prefixie6 .x4-form-trigger-input-cell { + height: 22px; +} +/* line 77, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-quirks .prefixie6 .x4-field-toolbar .x4-form-trigger-input-cell { + height: 20px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +div.x4-form-spinner-up, +div.x4-form-spinner-down { + background-image: url(images/form/spinner.gif); + background-color: white; + width: 17px; + height: 11px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-form-spinner-down { + background-position: 0 -11px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-form-trigger-wrap-focus .x4-form-spinner-down { + background-position: -51px -11px; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-form-trigger-wrap .x4-form-spinner-down-over { + background-position: -17px -11px; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-form-trigger-wrap-focus .x4-form-spinner-down-over { + background-position: -68px -11px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-form-trigger-wrap .x4-form-spinner-down-click { + background-position: -34px -11px; +} + +/* line 41, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-toolbar-item div.x4-form-spinner-up, +.x4-toolbar-item div.x4-form-spinner-down { + background-image: url(images/form/spinner-small.gif); + height: 10px; +} +/* line 45, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-toolbar-item .x4-form-spinner-down { + background-position: 0 -10px; +} +/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-toolbar-item .x4-form-trigger-wrap-focus .x4-form-spinner-down { + background-position: -51px -10px; +} +/* line 51, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-toolbar-item .x4-form-trigger-wrap .x4-form-spinner-down-over { + background-position: -17px -10px; +} +/* line 54, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-toolbar-item .x4-form-trigger-wrap-focus .x4-form-spinner-down-over { + background-position: -68px -10px; +} +/* line 57, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-toolbar-item .x4-form-trigger-wrap .x4-form-spinner-down-click { + background-position: -34px -10px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-tbar-page-number { + width: 30px; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-tbar-page-first { + background-image: url(images/grid/page-first.gif); +} + +/* line 9, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-tbar-page-prev { + background-image: url(images/grid/page-prev.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-tbar-page-next { + background-image: url(images/grid/page-next.gif); +} + +/* line 17, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-tbar-page-last { + background-image: url(images/grid/page-last.gif); +} + +/* line 21, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-tbar-loading { + background-image: url(images/grid/refresh.gif); +} + +/* line 27, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-item-disabled .x4-tbar-page-first { + background-image: url(images/grid/page-first-disabled.gif); +} +/* line 31, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-item-disabled .x4-tbar-page-prev { + background-image: url(images/grid/page-prev-disabled.gif); +} +/* line 35, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-item-disabled .x4-tbar-page-next { + background-image: url(images/grid/page-next-disabled.gif); +} +/* line 39, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-item-disabled .x4-tbar-page-last { + background-image: url(images/grid/page-last-disabled.gif); +} +/* line 43, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-item-disabled .x4-tbar-loading { + background-image: url(images/grid/refresh-disabled.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x4-boundlist { + border-width: 1px; + border-style: solid; + border-color: #98c0f4; + background: white; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x4-strict .x4-ie7m .x4-boundlist-list-ct { + position: relative; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x4-boundlist-item { + padding: 0 3px; + line-height: 20px; + cursor: pointer; + cursor: hand; + position: relative; + /*allow hover in IE on empty items*/ + zoom: 1; + border-width: 1px; + border-style: dotted; + border-color: white; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x4-boundlist-selected { + background: #cbdaf0; + border-color: #8eabe4; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x4-boundlist-item-over { + background: #dfe8f6; + border-color: #a3bae9; +} + +/* line 43, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x4-boundlist-floating { + border-top-width: 0; +} + +/* line 47, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x4-boundlist-above { + border-top-width: 1px; + border-bottom-width: 1px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker { + border-width: 1px; + border-style: solid; + border-color: #1b376c; + background-color: white; + width: 177px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-header { + padding: 3px 6px; + text-align: center; + background-image: none; + background-color: #23427c; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #264888), color-stop(100%, #1f3a6c)); + background-image: -webkit-linear-gradient(top, #264888, #1f3a6c); + background-image: -moz-linear-gradient(top, #264888, #1f3a6c); + background-image: -o-linear-gradient(top, #264888, #1f3a6c); + background-image: linear-gradient(top, #264888, #1f3a6c); +} + +/* line 32, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-arrow { + width: 15px; + height: 15px; + top: 6px; + cursor: pointer; + background-color: #23427c; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x4-datepicker-arrow:hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 55, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-next { + right: 6px; + background-image: url(images/shared/right-btn.gif); +} + +/* line 60, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-prev { + left: 6px; + background-image: url(images/shared/left-btn.gif); +} + +/* line 76, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-month .x4-btn, +.x4-datepicker-month .x4-btn .x4-btn-tc, +.x4-datepicker-month .x4-btn .x4-btn-tl, +.x4-datepicker-month .x4-btn .x4-btn-tr, +.x4-datepicker-month .x4-btn .x4-btn-mc, +.x4-datepicker-month .x4-btn .x4-btn-ml, +.x4-datepicker-month .x4-btn .x4-btn-mr, +.x4-datepicker-month .x4-btn .x4-btn-bc, +.x4-datepicker-month .x4-btn .x4-btn-bl, +.x4-datepicker-month .x4-btn .x4-btn-br { + background: transparent; + border-width: 0 !important; +} +/* line 83, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-month .x4-btn-inner { + color: white; +} +/* line 88, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-month .x4-btn-split-right { + background-image: url(images/button/s-arrow-light.gif); + padding-right: 12px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-column-header { + width: 25px; + color: #233d6d; + font: normal 10px tahoma, arial, verdana, sans-serif; + text-align: right; + border-width: 0 0 1px; + border-style: solid; + border-color: #b2d1f5; + background-image: none; + background-color: #dfecfb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #edf4fd), color-stop(100%, #cde1f9)); + background-image: -webkit-linear-gradient(top, #edf4fd, #cde1f9); + background-image: -moz-linear-gradient(top, #edf4fd, #cde1f9); + background-image: -o-linear-gradient(top, #edf4fd, #cde1f9); + background-image: linear-gradient(top, #edf4fd, #cde1f9); +} + +/* line 113, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-column-header-inner { + line-height: 19px; + padding: 0 7px 0 0; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-cell { + text-align: right; + border-width: 1px; + border-style: solid; + border-color: white; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-date { + padding: 0 4px 0 0; + font: normal 11px tahoma, arial, verdana, sans-serif; + color: black; + cursor: pointer; + line-height: 18px; +} + +/* line 138, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x4-datepicker-date:hover { + color: black; + background-color: #ddecfe; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-selected { + border-style: solid; + border-color: #8db2e3; +} +/* line 146, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-selected .x4-datepicker-date { + background-color: #dae5f3; + font-weight: bold; +} + +/* line 152, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-today { + border-color: darkred; + border-style: solid; +} + +/* line 159, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-prevday .x4-datepicker-date, +.x4-datepicker-nextday .x4-datepicker-date { + color: #aaaaaa; +} + +/* line 166, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-disabled a.x4-datepicker-date { + background-color: #eeeeee; + cursor: default; + color: #bbbbbb; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-disabled a.x4-datepicker-date:hover { + background-color: #eeeeee; +} + +/* line 179, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-footer, +.x4-monthpicker-buttons { + padding: 4px 0; + border-width: 1px 0 0; + border-style: solid; + border-color: #b2d1f5; + background-image: none; + background-color: #dfecfb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dee8f5), color-stop(49%, #d1dff0), color-stop(51%, #c7d8ed), color-stop(100%, #cbdaee)); + background-image: -webkit-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee); + background-image: -moz-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee); + background-image: -o-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee); + background-image: linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee); + text-align: center; +} +/* line 195, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-footer .x4-btn, +.x4-monthpicker-buttons .x4-btn { + margin: 0 2px 0 2px; +} + +/* line 201, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker { + width: 177px; + border-width: 1px; + border-style: solid; + border-color: #1b376c; + background-color: white; +} + +/* line 211, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-months { + border-width: 0 1px 0 0; + border-color: #1b376c; + border-style: solid; + width: 87px; +} +/* line 220, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-months .x4-monthpicker-item { + width: 43px; +} + +/* line 225, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-years { + width: 88px; +} +/* line 228, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-years .x4-monthpicker-item { + width: 44px; +} + +/* line 233, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-item { + margin: 5px 0 4px; + font: normal 11px tahoma, arial, verdana, sans-serif; + text-align: center; +} + +/* line 239, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-item-inner { + margin: 0 5px 0 5px; + color: #15428b; + border-width: 1px; + border-style: solid; + border-color: white; + line-height: 16px; + cursor: pointer; +} + +/* line 254, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x4-monthpicker-item-inner:hover { + background-color: #ddecfe; +} + +/* line 258, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-selected { + background-color: #dae5f3; + border-style: solid; + border-color: #8db2e3; +} + +/* line 264, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-yearnav { + height: 27px; +} + +/* line 268, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-yearnav-button-ct { + width: 44px; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-yearnav-button { + height: 15px; + width: 15px; + cursor: pointer; + margin-top: 6px; + background-color: white; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-yearnav-next { + background-image: url(images/tools/tool-sprites.gif); + background-position: 0 -120px; +} + +/* line 299, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-yearnav-next-over { + background-position: -15px -120px; +} + +/* line 303, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-yearnav-prev { + background-image: url(images/tools/tool-sprites.gif); + background-position: 0 -105px; +} + +/* line 308, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-yearnav-prev-over { + background-position: -15px -105px; +} + +/* line 313, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-small .x4-monthpicker-item { + margin: 2px 0 2px; +} +/* line 317, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-small .x4-monthpicker-item-inner { + margin: 0 5px 0 5px; +} +/* line 321, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-small .x4-monthpicker-yearnav { + height: 22px; +} +/* line 325, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-small .x4-monthpicker-yearnav-button { + margin-top: 3px; +} + +/* line 334, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-nlg .x4-datepicker-header { + background-image: url(images/datepicker/datepicker-header-bg.gif); + background-repeat: repeat-x; + background-position: top left; +} +/* line 343, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-nlg .x4-datepicker-footer, +.x4-nlg .x4-monthpicker-buttons { + background-image: url(images/datepicker/datepicker-footer-bg.gif); + background-repeat: repeat-x; + background-position: top left; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-datepicker-header:after { + display: none; + content: "x-slicer:bg:url(images/datepicker/datepicker-header-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-datepicker-footer:after { + display: none; + content: "x-slicer:bg:url(images/datepicker/datepicker-footer-bg.gif)"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */ +.x4-form-date-trigger { + background-image: url(images/form/date-trigger.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/File.scss */ +.x4-form-file-wrap .x4-form-text { + color: gray; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x4-color-picker { + width: 144px; + height: 90px; + background-color: white; + border-color: white; + border-width: 0; + border-style: solid; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x4-color-picker-item { + width: 18px; + height: 18px; + border-width: 1px; + border-color: white; + border-style: solid; + background-color: white; + cursor: pointer; + padding: 2px; +} +/* line 20, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x4-content-box .x4-color-picker-item { + width: 12px; + height: 12px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +a.x4-color-picker-item:hover { + border-color: #8bb8f3; + background-color: #deecfd; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x4-color-picker-selected { + border-color: #8bb8f3; + background-color: #deecfd; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x4-color-picker-item-inner { + line-height: 10px; + border-color: #aca899; + border-width: 1px; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-btn-text { + background: transparent no-repeat; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-bold, +.x4-menu-item div.x4-edit-bold { + background-position: 0 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-italic, +.x4-menu-item div.x4-edit-italic { + background-position: -16px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-underline, +.x4-menu-item div.x4-edit-underline { + background-position: -32px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-forecolor, +.x4-menu-item div.x4-edit-forecolor { + background-position: -160px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 31, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-backcolor, +.x4-menu-item div.x4-edit-backcolor { + background-position: -176px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-justifyleft, +.x4-menu-item div.x4-edit-justifyleft { + background-position: -112px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-justifycenter, +.x4-menu-item div.x4-edit-justifycenter { + background-position: -128px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-justifyright, +.x4-menu-item div.x4-edit-justifyright { + background-position: -144px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 55, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-insertorderedlist, +.x4-menu-item div.x4-edit-insertorderedlist { + background-position: -80px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 61, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-insertunorderedlist, +.x4-menu-item div.x4-edit-insertunorderedlist { + background-position: -96px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 67, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-increasefontsize, +.x4-menu-item div.x4-edit-increasefontsize { + background-position: -48px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-decreasefontsize, +.x4-menu-item div.x4-edit-decreasefontsize { + background-position: -64px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 79, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-sourceedit, +.x4-menu-item div.x4-edit-sourceedit { + background-position: -192px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 85, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-createlink, +.x4-menu-item div.x4-edit-createlink { + background-position: -208px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 90, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tip .x4-tip-bd .x4-tip-bd-inner { + padding: 5px; + padding-bottom: 1px; +} + +/* line 95, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-font-select { + font-size: 11px; + font-family: inherit; +} + +/* line 100, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-wrap textarea { + font: normal 12px tahoma, arial, verdana, sans-serif; + background-color: white; + resize: none; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-body { + background: white; + border-width: 1px; + border-style: solid; + border-color: #99bce8; +} + +/* line 8, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-empty { + padding: 10px; + color: gray; + background-color: white; + font: normal 11px tahoma, arial, verdana, sans-serif; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-cell { + color: null; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + background-color: white; + border-color: #ededed #d0d0d0 #ededed #d0d0d0; + border-style: solid; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-alt .x4-grid-td { + background-color: #fafafa; +} +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-before-over .x4-grid-td { + border-bottom-style: solid; + border-bottom-color: #dddddd; +} +/* line 35, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-over .x4-grid-td { + border-bottom-style: solid; + border-bottom-color: #dddddd; +} +/* line 40, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-before-selected .x4-grid-td { + border-bottom-style: dotted; + border-bottom-color: #a3bae9; +} +/* line 45, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-selected .x4-grid-td { + border-bottom-style: dotted; + border-bottom-color: #a3bae9; +} +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-before-focused .x4-grid-td { + border-bottom-style: dotted; + border-bottom-color: #464646; + border-bottom-width: 1px; +} +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-focused .x4-grid-td { + background-color: #efefef; +} +/* line 65, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-over .x4-grid-td { + background-color: #efefef; +} +/* line 73, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-selected .x4-grid-td { + background-color: #dfe8f6; +} +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-focused .x4-grid-td { + border-bottom-style: dotted; + border-bottom-color: #464646; + border-bottom-width: 1px; +} +/* line 92, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-table .x4-grid-row-focused-first .x4-grid-td { + border-top: 1px dotted #464646; +} +/* line 103, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-selected .x4-grid-row-summary .x4-grid-td { + border-bottom-color: #dfe8f6; + border-top-width: 0; +} +/* line 108, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-focused .x4-grid-row-summary .x4-grid-td { + border-bottom-color: #efefef; + border-top-width: 0; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-with-row-lines .x4-grid-td { + border-bottom-width: 1px; +} +/* line 121, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-with-row-lines .x4-grid-table { + border-top: 1px solid white; +} +/* line 125, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-with-row-lines .x4-grid-table-over-first { + border-top-style: solid; + border-top-color: #dddddd; +} +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-with-row-lines .x4-grid-table-selected-first { + border-top-style: dotted; + border-top-color: #a3bae9; +} + +/* line 139, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-body .x4-grid-table-focused-first { + border-top: 1px dotted #464646; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-cell-inner { + text-overflow: ellipsis; + padding: 3px 6px 4px 6px; +} + +/* line 163, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-inner { + padding-top: 2px; + padding-bottom: 3px; +} + +/* line 178, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-cell-special { + border-color: #ededed #d0d0d0 #ededed #d0d0d0; + border-style: solid; + border-right-width: 1px; + background-image: none; + background-color: #f6f6f6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: -moz-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: -o-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: linear-gradient(top, #f6f6f6, #e9e9e9); + /**/ + /**/ + /* */ + /**/ + /**/ + /* */ +} +/* line 191, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-selected .x4-grid-cell-special { + border-right-color: #ededed #aaccf6; + background-image: none; + background-color: #dfe8f6; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dfe8f6), color-stop(100%, #cbdaf0)); + background-image: -webkit-linear-gradient(left, #dfe8f6, #cbdaf0); + background-image: -moz-linear-gradient(left, #dfe8f6, #cbdaf0); + background-image: -o-linear-gradient(left, #dfe8f6, #cbdaf0); + background-image: linear-gradient(left, #dfe8f6, #cbdaf0); +} +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-nlg .x4-grid-cell-special { + background-repeat: repeat-y; + background-image: url(images/grid/cell-special-bg.gif); +} +/* line 211, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-nlg .x4-grid-row-selected .x4-grid-cell-special { + background-image: url(images/grid/cell-special-selected-bg.gif); +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-grid-cell-special .x4-grid-cell-special:after { + display: none; + content: "x-slicer:bg:url(images/grid/cell-special-bg.gif)"; +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-grid-cell-special .x4-grid-cell-special-selected:after { + display: none; + content: "x-slicer:bg:url(images/grid/cell-special-selected-bg.gif)"; +} + +/* line 228, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-dirty-cell { + background: url(images/grid/dirty.gif) no-repeat 0 0; +} + +/* line 241, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row .x4-grid-cell-selected { + color: null; + background-color: #b8cfee; +} + +/* line 247, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-with-col-lines .x4-grid-cell { + border-right-width: 1px; +} + +/* line 259, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-resize-marker { + width: 1px; + background-color: #0f0f0f; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x4-grid-drop-indicator { + position: absolute; + height: 1px; + line-height: 0px; + background-color: #77BC71; + overflow: visible; + pointer-events: none; +} +/* line 9, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x4-grid-drop-indicator .x4-grid-drop-indicator-left { + position: absolute; + top: -8px; + left: -12px; + background-image: url(images/grid/dd-insert-arrow-right.png); + height: 16px; + width: 16px; +} +/* line 18, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x4-grid-drop-indicator .x4-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 29, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x4-ie6 .x4-grid-drop-indicator-left { + background-image: url(images/grid/dd-insert-arrow-right.gif); +} +/* line 33, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x4-ie6 .x4-grid-drop-indicator-right { + background-image: url(images/grid/dd-insert-arrow-left.gif); +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + width: 9px; + height: 9px; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top { + background-image: url(images/grid/col-move-top.gif); +} + +/* line 11, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-bottom { + background-image: url(images/grid/col-move-bottom.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x4-grid-header-ct { + border: 1px solid #99bce8; + border-bottom-color: #c5c5c5; + background-color: #c5c5c5; + background-image: none; + background-color: #c5c5c5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #e3e4e6)); + background-image: -webkit-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -moz-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -o-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: linear-gradient(top, #f9f9f9, #e3e4e6); +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x4-accordion-item .x4-grid-header-ct { + border-width: 0 0 1px !important; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x4-accordion-item .x4-grid-header-ct-hidden { + border: 0 !important; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x4-grid-body { + border-top-color: #c5c5c5; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x4-hmenu-sort-asc .x4-menu-item-icon { + background-image: url(images/grid/hmenu-asc.gif); +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x4-hmenu-sort-desc .x4-menu-item-icon { + background-image: url(images/grid/hmenu-desc.gif); +} + +/* line 40, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x4-cols-icon .x4-menu-item-icon { + background-image: url(images/grid/columns.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header { + border-right: 1px solid #c5c5c5; + color: black; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + background-image: none; + background-color: #c5c5c5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #e3e4e6)); + background-image: -webkit-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -moz-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -o-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: linear-gradient(top, #f9f9f9, #e3e4e6); +} + +/* line 24, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-group-sub-header { + background: transparent; + border-top: 1px solid #c5c5c5; +} +/* line 29, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-group-sub-header .x4-column-header-inner { + padding: 3px 6px 5px 6px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-inner { + padding: 4px 6px 5px 6px; + text-overflow: ellipsis; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-over, +.x4-column-header-sort-ASC, +.x4-column-header-sort-DESC { + background-image: none; + background-color: #aaccf6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ebf3fd), color-stop(39%, #ebf3fd), color-stop(40%, #d9e8fb), color-stop(100%, #d9e8fb)); + background-image: -webkit-linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb); + background-image: -moz-linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb); + background-image: -o-linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb); + background-image: linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb); +} + +/* line 51, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-nlg .x4-grid-header-ct, +.x4-nlg .x4-column-header { + background-image: url(images/grid/column-header-bg.gif); +} + +/* line 62, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-nlg .x4-column-header-over, +.x4-nlg .x4-column-header-sort-ASC, +.x4-nlg .x4-column-header-sort-DESC { + background-image: url(images/grid/column-header-over-bg.gif); +} + +/* line 70, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-open { + background-color: transparent; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-open .x4-column-header-trigger { + background-color: transparent; +} + +/* line 78, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-trigger { + width: 14px; + cursor: pointer; + background-color: transparent; + background-position: 0 center; +} + +/* line 96, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-align-right .x4-column-header-text { + margin-right: 9px; +} + +/* line 110, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-sort-ASC .x4-column-header-text, +.x4-column-header-sort-DESC .x4-column-header-text { + padding-right: 12px; + background-position: right center; +} + +/* line 127, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-sort-ASC .x4-column-header-text { + background-image: url(images/grid/sort_asc.gif); +} + +/* line 130, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-sort-DESC .x4-column-header-text { + background-image: url(images/grid/sort_desc.gif); +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-column-header:after { + display: none; + content: "x-slicer:bg:url(images/grid/column-header-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-column-header-over:after { + display: none; + content: "x-slicer:bg:url(images/grid/column-header-over-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x4-grid-cell-inner-action-col { + padding: 2px 2px 2px 2px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-inner-action-col { + padding-top: 1px; + padding-bottom: 1px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x4-action-col-cell .x4-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x4-action-col-icon { + height: 16px; + width: 16px; + cursor: pointer; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x4-grid-cell-inner-checkcolumn { + padding: 4px 6px 3px 6px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-inner-checkcolumn { + padding-top: 3px; + padding-bottom: 2px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x4-grid-checkcolumn { + width: 13px; + height: 13px; + background: url(images/form/checkbox.gif) 0 0 no-repeat; +} +/* line 17, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x4-item-disabled .x4-grid-checkcolumn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x4-grid-checkcolumn-checked { + background-position: 0 -13px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/RowNumberer.scss */ +.x4-grid-cell-inner-row-numberer { + padding: 3px 5px 4px 3px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x4-grid-group-hd { + border-width: 0 0 2px 0; + border-style: solid; + border-color: #99bbe8; + padding: 10px 4px 4px 4px; + background: white; + cursor: pointer; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x4-grid-group-hd-not-collapsible { + cursor: default; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x4-grid-group-hd-collapsible .x4-grid-group-title { + background-repeat: no-repeat; + background-position: left center; + background-image: url(images/grid/group-collapse.gif); + padding: 0 0 0 14px; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x4-grid-group-title { + color: #3764a0; + font: bold 11px/13px tahoma, arial, verdana, sans-serif; +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x4-grid-group-hd-collapsed .x4-grid-group-title { + background-image: url(images/grid/group-expand.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x4-grid-group-collapsed .x4-grid-group-title { + background-image: url(images/grid/group-expand.gif); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x4-group-by-icon { + background-image: url(images/grid/group-by.gif); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x4-show-groups-icon { + background-image: url(images/grid/group-by.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ +.x4-grid-rowbody { + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + padding: 5px 6px 5px 6px; +} +/* line 6, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ +.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-rowbody { + padding-top: 6px; + padding-bottom: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowWrap.scss */ +.x4-grid-rowwrap { + border-color: #ededed #d0d0d0 #ededed #d0d0d0; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x4-summary-bottom { + border-bottom-color: #c5c5c5; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x4-docked-summary { + border-width: 1px; + border-color: #99bce8; + border-style: solid; +} +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x4-docked-summary .x4-grid-table { + width: 100%; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x4-grid-row-summary .x4-grid-cell, +.x4-grid-row-summary .x4-grid-rowwrap, +.x4-grid-row-summary .x4-grid-cell-rowbody { + border-color: #ededed #d0d0d0 #ededed #d0d0d0; + background-color: transparent !important; + border-top-width: 0; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x4-grid-with-row-lines .x4-grid-table-summary { + border: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x4-grid-locked .x4-grid-inner-locked { + border-width: 0 1px 0 0; + border-style: solid; +} + +/* line 17, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x4-grid-inner-locked .x4-column-header-last, +.x4-grid-inner-locked .x4-grid-cell-last { + border-right-width: 0!important; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x4-hmenu-lock .x4-menu-item-icon { + background-image: url(images/grid/hmenu-lock.gif); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x4-hmenu-unlock .x4-menu-item-icon { + background-image: url(images/grid/hmenu-unlock.gif); +} + +/* line 4, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-text { + font: normal 11px/15px tahoma, arial, verdana, sans-serif; + padding: 1px 5px 2px 5px; + height: 20px; +} +/* line 15, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-content-box .x4-grid-editor .x4-form-text { + height: 15px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-gecko .x4-grid-editor .x4-form-text { + padding-left: 4px; + padding-right: 4px; +} +/* line 31, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-trigger { + height: 20px; +} +/* line 39, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-spinner-up, .x4-grid-editor .x4-form-spinner-down { + height: 10px; +} +/* line 47, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-cb { + margin-top: 4px; +} +/* line 51, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-cb-wrap { + height: 20px; +} +/* line 58, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-display-field-body { + height: 20px; +} +/* line 62, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-display-field { + font: normal 11px/15px tahoma, arial, verdana, sans-serif; + padding: 2px 6px 3px 6px; + text-overflow: ellipsis; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-action-col-field { + padding: 2px 2px 2px 2px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x4-tree-cell-editor .x4-form-text { + padding-left: 2px; + padding-right: 2px; +} +/* line 8, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x4-gecko .x4-tree-cell-editor .x4-form-text { + padding-left: 1px; + padding-right: 1px; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor .x4-field { + margin: 0 1px 0 1px; +} +/* line 7, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor .x4-form-display-field { + padding: 2px 5px 3px 5px; +} +/* line 16, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor .x4-form-action-col-field { + padding: 2px 1px 2px 1px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor .x4-form-text { + padding: 1px 4px 2px 4px; +} +/* line 30, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-gecko .x4-grid-row-editor .x4-form-text { + padding-left: 3px; + padding-right: 3px; +} +/* line 38, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor .x4-panel-body { + border-top: 1px solid #99bce8 !important; + border-bottom: 1px solid #99bce8 !important; + padding: 4px 0 4px 0; + background-color: #eaf1fb; +} +/* line 48, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-with-col-lines .x4-grid-row-editor .x4-form-cb { + margin-right: 1px; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: 4px 4px 4px 4px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-color: #eaf1fb; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-mc { + background-color: #eaf1fb; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-grid-row-editor-buttons-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-grid-row-editor-buttons-default-bottom-frameInfo { + font-family: th-0-0-5-5-0-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-tr, +.x4-grid-row-editor-buttons-default-bottom-br, +.x4-grid-row-editor-buttons-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-tl, +.x4-grid-row-editor-buttons-default-bottom-bl, +.x4-grid-row-editor-buttons-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-tl, +.x4-grid-row-editor-buttons-default-bottom-bl, +.x4-grid-row-editor-buttons-default-bottom-tr, +.x4-grid-row-editor-buttons-default-bottom-br, +.x4-grid-row-editor-buttons-default-bottom-tc, +.x4-grid-row-editor-buttons-default-bottom-bc, +.x4-grid-row-editor-buttons-default-bottom-ml, +.x4-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-ml, +.x4-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-mc { + padding: 4px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-grid-row-editor-buttons-default-bottom-tl, +.x4-strict .x4-ie7 .x4-grid-row-editor-buttons-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-grid-row-editor-buttons-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: 4px 4px 4px 4px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #eaf1fb; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-mc { + background-color: #eaf1fb; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-grid-row-editor-buttons-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-grid-row-editor-buttons-default-top-frameInfo { + font-family: th-5-5-0-0-1-1-0-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-tr, +.x4-grid-row-editor-buttons-default-top-br, +.x4-grid-row-editor-buttons-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-tl, +.x4-grid-row-editor-buttons-default-top-bl, +.x4-grid-row-editor-buttons-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-tl, +.x4-grid-row-editor-buttons-default-top-bl, +.x4-grid-row-editor-buttons-default-top-tr, +.x4-grid-row-editor-buttons-default-top-br, +.x4-grid-row-editor-buttons-default-top-tc, +.x4-grid-row-editor-buttons-default-top-bc, +.x4-grid-row-editor-buttons-default-top-ml, +.x4-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-ml, +.x4-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-mc { + padding: 0px 0px 4px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-grid-row-editor-buttons-default-top-tl, +.x4-strict .x4-ie7 .x4-grid-row-editor-buttons-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-grid-row-editor-buttons-default-top:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 97, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor-buttons-default-bottom { + top: 29px; +} + +/* line 103, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor-buttons-default-top { + bottom: 29px; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor-buttons { + border-color: #99bce8; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-row-editor-update-button { + margin-right: 2px; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-row-editor-cancel-button { + margin-left: 2px; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor-errors .x4-tip-body { + padding: 5px; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor-errors-item { + list-style: disc; + margin-left: 15px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x4-grid-cell-inner-row-expander { + padding: 6px 7px 5px 7px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-inner-row-expander { + padding-top: 5px; + padding-bottom: 4px; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x4-grid-row-expander { + width: 9px; + height: 9px; + cursor: pointer; + background-image: url(images/grid/group-collapse.gif); +} +/* line 20, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x4-grid-row-collapsed .x4-grid-row-expander { + background-image: url(images/grid/group-expand.gif); +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/property/Grid.scss */ +.x4-grid-cell-inner-property-name { + background-image: url(images/grid/property-cell-bg.gif); + background-repeat: no-repeat; + background-position: -16px 2px; + padding-left: 12px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-layout-ct { + background-color: white; + padding: 0; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-hd .x4-panel-header-text-container { + color: black; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + text-transform: none; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-item { + margin: 0; +} +/* line 16, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-item .x4-accordion-hd { + background: #d9e7f8; + border-top-color: #f3f7fb; + padding: 4px 5px 5px 5px; +} +/* line 22, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-item .x4-accordion-hd-sibling-expanded { + border-top-color: #99bce8; +} +/* line 26, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-item .x4-accordion-hd-last-collapsed { + border-bottom-color: #d9e7f8; +} +/* line 30, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-item .x4-accordion-body { + border-width: 0; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-hd .x4-tool-collapse-top, +.x4-accordion-hd .x4-tool-collapse-bottom { + background-position: 0 -255px; +} +/* line 42, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-hd .x4-tool-expand-top, +.x4-accordion-hd .x4-tool-expand-bottom { + background-position: 0 -240px; +} +/* line 50, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-hd .x4-tool-over .x4-tool-collapse-top, +.x4-accordion-hd .x4-tool-over .x4-tool-collapse-bottom { + background-position: -15px -255px; +} +/* line 55, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-hd .x4-tool-over .x4-tool-expand-top, +.x4-accordion-hd .x4-tool-over .x4-tool-expand-bottom { + background-position: -15px -240px; +} +/* line 61, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-hd .x4-tool-img { + background-color: #d9e7f8; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-collapse-el { + cursor: pointer; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-layout-split-left, +.x4-layout-split-right { + top: 50%; + margin-top: -18px; + width: 5px; + height: 35px; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-layout-split-top, +.x4-layout-split-bottom { + left: 50%; + width: 35px; + height: 5px; + margin-left: -18px; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-layout-split-left { + background-image: url(images/util/splitter/mini-left.gif); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-layout-split-right { + background-image: url(images/util/splitter/mini-right.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-layout-split-top { + background-image: url(images/util/splitter/mini-top.gif); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-layout-split-bottom { + background-image: url(images/util/splitter/mini-bottom.gif); +} + +/* line 50, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-splitter-collapsed .x4-layout-split-left { + background-image: url(images/util/splitter/mini-right.gif); +} +/* line 54, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-splitter-collapsed .x4-layout-split-right { + background-image: url(images/util/splitter/mini-left.gif); +} +/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-splitter-collapsed .x4-layout-split-top { + background-image: url(images/util/splitter/mini-bottom.gif); +} +/* line 74, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-splitter-collapsed .x4-layout-split-bottom { + background-image: url(images/util/splitter/mini-top.gif); +} + +/* line 79, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-splitter-active { + background-color: #b4b4b4; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); + opacity: 0.8; +} +/* line 83, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-splitter-active .x4-collapse-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/layout/container/Border.scss */ +.x4-border-layout-ct { + background-color: #dfe8f6; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-body { + background: #f0f0f0; + padding: 2px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-icon-separator { + left: 24px; + border-left: solid 1px #e0e0e0; + background-color: white; + width: 2px; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item { + padding: 1px; + cursor: pointer; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-indent { + margin-left: 30px; +} + +/* line 57, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-active { + background-image: none; + background-color: #d9e8fb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7f0fc), color-stop(100%, #c7ddf9)); + background-image: -webkit-linear-gradient(top, #e7f0fc, #c7ddf9); + background-image: -moz-linear-gradient(top, #e7f0fc, #c7ddf9); + background-image: -o-linear-gradient(top, #e7f0fc, #c7ddf9); + background-image: linear-gradient(top, #e7f0fc, #c7ddf9); + border-color: #a9cbf5; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + border-width: 1px; + border-style: solid; + padding: 0; +} +/* line 75, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-nlg .x4-menu-item-active { + background: #d9e8fb repeat-x left top; + background-image: url(images/menu/menu-item-active-bg.gif); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-link { + line-height: 22px; + padding: 0 0 0 30px; + display: inline-block; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-right-check-item-text { + padding-right: 22px; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-icon { + width: 16px; + height: 16px; + top: 4px; + left: 3px; + background-position: center center; +} + +/* line 116, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-glyph { + font-size: 16px; + line-height: 16px; + color: #222222; + opacity: 0.5; +} +/* line 132, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-ie8m .x4-menu-item-glyph { + color: #898989; +} + +/* line 142, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-gecko .x4-menu-item-active .x4-menu-item-icon, +.x4-quirks .x4-menu-item-active .x4-menu-item-icon, +.x4-ie9m .x4-menu-item-active .x4-menu-item-icon { + top: 3px; + left: 2px; +} + +/* line 168, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-icon-right { + width: 16px; + height: 16px; + top: 3px; + right: 3px; + background-position: center center; +} + +/* line 183, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-text { + font-size: 11px; + color: #222222; + cursor: pointer; + margin-right: 16px; +} + +/* line 201, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-checked .x4-menu-item-icon, .x4-menu-item-checked .x4-menu-item-icon-right { + background-image: url(images/menu/checked.gif); +} +/* line 204, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-checked .x4-menu-group-icon { + background-image: url(images/menu/group-checked.gif); +} + +/* line 210, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-unchecked .x4-menu-item-icon, .x4-menu-item-unchecked .x4-menu-item-icon-right { + background-image: url(images/menu/unchecked.gif); +} +/* line 213, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-unchecked .x4-menu-group-icon { + background-image: none; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-separator { + height: 2px; + border-top: solid 1px #e0e0e0; + background-color: white; + margin: 2px 0; + padding: 0; +} + +/* line 226, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-arrow { + width: 12px; + height: 9px; + top: 7px; + right: 0; + background-image: url(images/menu/menu-parent.gif); +} + +/* line 239, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-gecko .x4-menu-item-active .x4-menu-item-arrow, +.x4-quirks .x4-menu-item-active .x4-menu-item-arrow, +.x4-ie9m .x4-menu-item-active .x4-menu-item-arrow { + top: 6px; + right: -1px; +} + +/* line 264, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/* line 270, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-content-box .x4-menu-icon-separator { + width: 1px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-content-box .x4-menu-item-separator { + height: 1px; +} + +/* line 281, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-ie .x4-menu-item-disabled .x4-menu-item-icon { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 285, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-ie .x4-menu-item-disabled .x4-menu-item-text { + background-color: transparent; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-date-item { + border-color: #99BBE8; +} + +/* line 300, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item .x4-form-item-label { + font-size: 11px; + color: #222222; +} + +/* line 306, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-scroll-top { + height: 8px; + background-image: url(images/menu/scroll-top.gif); +} + +/* line 310, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-scroll-bottom { + height: 8px; + background-image: url(images/menu/scroll-bottom.gif); +} + +/* line 316, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-scroll-top, .x4-menu-scroll-bottom { + background-color: #f0f0f0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-menu-item-link:after { + display: none; + content: "x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool { + cursor: pointer; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-img { + overflow: hidden; + width: 15px; + height: 15px; + background-image: url(images/tools/tool-sprites.gif); + margin: 0; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-placeholder { + visibility: hidden; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-close { + background-position: 0 0; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-minimize { + background-position: 0 -15px; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-maximize { + background-position: 0 -30px; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-restore { + background-position: 0 -45px; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-toggle { + background-position: 0 -60px; +} +/* line 53, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-panel-collapsed .x4-tool-toggle { + background-position: 0 -75px; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-gear { + background-position: 0 -90px; +} + +/* line 62, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-prev { + background-position: 0 -105px; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-next { + background-position: 0 -120px; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-pin { + background-position: 0 -135px; +} + +/* line 74, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-unpin { + background-position: 0 -150px; +} + +/* line 78, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-right { + background-position: 0 -165px; +} + +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-left { + background-position: 0 -180px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-down { + background-position: 0 -195px; +} + +/* line 90, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-up { + background-position: 0 -210px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-refresh { + background-position: 0 -225px; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-plus { + background-position: 0 -240px; +} + +/* line 102, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-minus { + background-position: 0 -255px; +} + +/* line 106, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-search { + background-position: 0 -270px; +} + +/* line 110, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-save { + background-position: 0 -285px; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-help { + background-position: 0 -300px; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-print { + background-position: 0 -315px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-expand { + background-position: 0 -330px; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-collapse { + background-position: 0 -345px; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-resize { + background-position: 0 -360px; +} + +/* line 134, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-move { + background-position: 0 -375px; +} + +/* line 139, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-expand-bottom, +.x4-tool-collapse-bottom { + background-position: 0 -195px; +} + +/* line 144, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-expand-top, +.x4-tool-collapse-top { + background-position: 0 -210px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-expand-left, +.x4-tool-collapse-left { + background-position: 0 -180px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-expand-right, +.x4-tool-collapse-right { + background-position: 0 -165px; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-close { + background-position: -15px 0; +} +/* line 178, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-minimize { + background-position: -15px -15px; +} +/* line 182, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-maximize { + background-position: -15px -30px; +} +/* line 186, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-restore { + background-position: -15px -45px; +} +/* line 190, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-toggle { + background-position: -15px -60px; +} +/* line 195, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-panel-collapsed .x4-tool-over .x4-tool-toggle { + background-position: -15px -75px; +} +/* line 200, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-gear { + background-position: -15px -90px; +} +/* line 204, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-prev { + background-position: -15px -105px; +} +/* line 208, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-next { + background-position: -15px -120px; +} +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-pin { + background-position: -15px -135px; +} +/* line 216, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-unpin { + background-position: -15px -150px; +} +/* line 220, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-right { + background-position: -15px -165px; +} +/* line 224, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-left { + background-position: -15px -180px; +} +/* line 228, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-down { + background-position: -15px -195px; +} +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-up { + background-position: -15px -210px; +} +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-refresh { + background-position: -15px -225px; +} +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-plus { + background-position: -15px -240px; +} +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-minus { + background-position: -15px -255px; +} +/* line 248, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-search { + background-position: -15px -270px; +} +/* line 252, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-save { + background-position: -15px -285px; +} +/* line 256, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-help { + background-position: -15px -300px; +} +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-print { + background-position: -15px -315px; +} +/* line 264, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-expand { + background-position: -15px -330px; +} +/* line 268, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-collapse { + background-position: -15px -345px; +} +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-resize { + background-position: -15px -360px; +} +/* line 276, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-move { + background-position: -15px -375px; +} +/* line 281, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-expand-bottom, +.x4-tool-over .x4-tool-collapse-bottom { + background-position: -15px -195px; +} +/* line 286, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-expand-top, +.x4-tool-over .x4-tool-collapse-top { + background-position: -15px -210px; +} +/* line 291, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-expand-left, +.x4-tool-over .x4-tool-collapse-left { + background-position: -15px -180px; +} +/* line 296, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-expand-right, +.x4-tool-over .x4-tool-collapse-right { + background-position: -15px -165px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-handle { + position: absolute; + z-index: 100; + font-size: 1px; + line-height: 6px; + overflow: hidden; + zoom: 1; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + background-color: #fff; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-collapsed .x4-resizable-handle { + display: none; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-north { + cursor: n-resize; +} +/* line 26, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-south { + cursor: s-resize; +} +/* line 29, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-east { + cursor: e-resize; +} +/* line 32, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-west { + cursor: w-resize; +} +/* line 35, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-southeast { + cursor: se-resize; +} +/* line 38, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-northwest { + cursor: nw-resize; +} +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-northeast { + cursor: ne-resize; +} +/* line 44, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-southwest { + cursor: sw-resize; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-handle-east { + width: 6px; + height: 100%; + right: 0; + top: 0; +} + +/* line 56, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-handle-south { + width: 100%; + height: 6px; + left: 0; + bottom: 0; +} + +/* line 63, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-handle-west { + width: 6px; + height: 100%; + left: 0; + top: 0; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-handle-north { + width: 100%; + height: 6px; + left: 0; + top: 0; +} + +/* line 77, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-handle-southeast { + width: 6px; + height: 6px; + right: 0; + bottom: 0; + z-index: 101; +} + +/* line 85, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-handle-northwest { + width: 6px; + height: 6px; + left: 0; + top: 0; + z-index: 101; +} + +/* line 93, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-handle-northeast { + width: 6px; + height: 6px; + right: 0; + top: 0; + z-index: 101; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-handle-southwest { + width: 6px; + height: 6px; + left: 0; + bottom: 0; + z-index: 101; +} + +/*IE rounding error*/ +/* line 111, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-ie .x4-resizable-handle-east { + margin-right: -1px; + /*IE rounding error*/ +} +/* line 115, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-ie .x4-resizable-handle-south { + margin-bottom: -1px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-pinned .x4-resizable-handle, +.x4-resizable-over .x4-resizable-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 127, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-window .x4-window-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-window-collapsed .x4-window-handle { + display: none; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-proxy { + border: 1px dashed #3b5a82; + position: absolute; + overflow: hidden; + z-index: 50000; +} + +/* line 148, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-east, +.x4-resizable-over .x4-resizable-handle-west, +.x4-resizable-pinned .x4-resizable-handle-east, +.x4-resizable-pinned .x4-resizable-handle-west { + background-image: url(images/sizer/e-handle.gif); +} +/* line 154, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-south, +.x4-resizable-over .x4-resizable-handle-north, +.x4-resizable-pinned .x4-resizable-handle-south, +.x4-resizable-pinned .x4-resizable-handle-north { + background-image: url(images/sizer/s-handle.gif); +} +/* line 159, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-southeast, +.x4-resizable-pinned .x4-resizable-handle-southeast { + background-position: top left; + background-image: url(images/sizer/se-handle.gif); +} +/* line 164, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-northwest, +.x4-resizable-pinned .x4-resizable-handle-northwest { + background-position: bottom right; + background-image: url(images/sizer/nw-handle.gif); +} +/* line 169, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-northeast, +.x4-resizable-pinned .x4-resizable-handle-northeast { + background-position: bottom left; + background-image: url(images/sizer/ne-handle.gif); +} +/* line 174, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-southwest, +.x4-resizable-pinned .x4-resizable-handle-southwest { + background-position: top right; + background-image: url(images/sizer/sw-handle.gif); +} + +/* Horizontal styles */ +/* line 2, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-horz { + padding-left: 7px; + background: no-repeat 0 -15px; +} +/* line 6, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-horz .x4-slider-end { + padding-right: 7px; + background: no-repeat right -30px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-horz .x4-slider-inner { + height: 15px; +} + +/* line 20, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-ie6 .x4-form-item .x4-slider-horz, +.x4-ie7 .x4-form-item .x4-slider-horz, +.x4-quirks .x4-ie .x4-form-item .x4-slider-horz { + margin-top: 4px; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-horz .x4-slider-thumb { + width: 14px; + height: 15px; + margin-left: -7px; + background-image: url(images/slider/slider-thumb.png); +} + +/* line 33, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-horz .x4-slider-thumb-over { + background-position: -14px -15px; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-horz .x4-slider-thumb-drag { + background-position: -28px -30px; +} + +/* Vertical styles */ +/* line 60, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-vert { + padding-top: 7px; + background: no-repeat -30px 0; +} + +/* line 65, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-vert .x4-slider-end { + padding-bottom: 7px; + background: no-repeat -15px bottom; + width: 15px; +} + +/* line 71, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-vert .x4-slider-inner { + width: 15px; +} + +/* line 75, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-vert .x4-slider-thumb { + width: 15px; + height: 14px; + margin-bottom: -7px; + background-image: url(images/slider/slider-v-thumb.png); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-vert .x4-slider-thumb-over { + background-position: -15px -14px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-vert .x4-slider-thumb-drag { + background-position: -30px -28px; +} + +/* line 92, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-horz, +.x4-slider-horz .x4-slider-end, +.x4-slider-horz .x4-slider-inner { + background-image: url(images/slider/slider-bg.png); +} + +/* line 98, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-vert, +.x4-slider-vert .x4-slider-end, +.x4-slider-vert .x4-slider-inner { + background-image: url(images/slider/slider-v-bg.png); +} + +/** + * 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-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-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} [$ui-border-width=$tab-border-width] + * The border-width of 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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 + * + * @param {color} [$ui-border-bottom-color=$tabbar-strip-border-color] + * The bottom border color of inactive tabs. + * + * @member Ext.tab.Tab + */ +/** + * Creates a visual theme for a Tab Bar + * + * @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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 {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 {number} [$ui-tab-height] + * The height of tabs that will be used in this tabbar UI. The tabbar body is given + * a fixed height to leave room for the tabs, and so that the tabbar does not collapse + * when it does not contain any tabs. + * + * @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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-tab-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-mc { + background-image: url(images/tab/tab-default-top-fbg.gif); + background-position: 0 top; + background-color: #deecfd; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-tab-default-top { + background-image: url(images/tab/tab-default-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-tab-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-tab-default-top-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-tr, +.x4-tab-default-top-br, +.x4-tab-default-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-tl, +.x4-tab-default-top-bl, +.x4-tab-default-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-tl, +.x4-tab-default-top-bl, +.x4-tab-default-top-tr, +.x4-tab-default-top-br, +.x4-tab-default-top-tc, +.x4-tab-default-top-bc, +.x4-tab-default-top-ml, +.x4-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-ml, +.x4-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-tab-default-top-tl, +.x4-strict .x4-ie7 .x4-tab-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: 3px 9px 3px 9px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-mc { + background-image: url(images/tab/tab-default-bottom-fbg.gif); + background-position: 0 top; + background-color: #deecfd; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-tab-default-bottom { + background-image: url(images/tab/tab-default-bottom-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-tab-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-tab-default-bottom-frameInfo { + font-family: th-0-0-4-4-0-1-1-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-tr, +.x4-tab-default-bottom-br, +.x4-tab-default-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-tl, +.x4-tab-default-bottom-bl, +.x4-tab-default-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-tl, +.x4-tab-default-bottom-bl, +.x4-tab-default-bottom-tr, +.x4-tab-default-bottom-br, +.x4-tab-default-bottom-tc, +.x4-tab-default-bottom-bc, +.x4-tab-default-bottom-ml, +.x4-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-ml, +.x4-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-mc { + padding: 3px 6px 0px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-tab-default-bottom-tl, +.x4-strict .x4-ie7 .x4-tab-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-bottom:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-bottom-fbg.gif), bg:url(images/tab/tab-default-bottom-bg.gif), corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-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: 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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-mc { + background-image: url(images/tab/tab-default-top-fbg.gif); + background-position: 0 top; + background-color: #deecfd; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-tab-default-left { + background-image: url(images/tab/tab-default-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-tab-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-tab-default-left-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-tr, +.x4-tab-default-left-br, +.x4-tab-default-left-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-tl, +.x4-tab-default-left-bl, +.x4-tab-default-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-tl, +.x4-tab-default-left-bl, +.x4-tab-default-left-tr, +.x4-tab-default-left-br, +.x4-tab-default-left-tc, +.x4-tab-default-left-bc, +.x4-tab-default-left-ml, +.x4-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-ml, +.x4-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-tab-default-left-tl, +.x4-strict .x4-ie7 .x4-tab-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-left:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-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: 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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-mc { + background-image: url(images/tab/tab-default-top-fbg.gif); + background-position: 0 top; + background-color: #deecfd; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-tab-default-right { + background-image: url(images/tab/tab-default-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-tab-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-tab-default-right-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-tr, +.x4-tab-default-right-br, +.x4-tab-default-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-tl, +.x4-tab-default-right-bl, +.x4-tab-default-right-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-tl, +.x4-tab-default-right-bl, +.x4-tab-default-right-tr, +.x4-tab-default-right-br, +.x4-tab-default-right-tc, +.x4-tab-default-right-bc, +.x4-tab-default-right-ml, +.x4-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-ml, +.x4-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-tab-default-right-tl, +.x4-strict .x4-ie7 .x4-tab-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-right:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 307, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default { + border-color: #8db3e3; + margin: 0 0 0 2px; + cursor: pointer; +} +/* line 312, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default .x4-tab-inner { + font-size: 11px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + color: #416da3; + line-height: 13px; +} +/* line 322, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default .x4-tab-icon-el { + width: 16px; + height: 16px; + line-height: 16px; + background-position: center center; +} +/* line 329, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default .x4-tab-glyph { + font-size: 16px; + color: #416da3; + opacity: 0.5; +} +/* line 343, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-ie8m .x4-tab-default .x4-tab-glyph { + color: #8facd0; +} +/* line 351, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-strict .x4-ie9 .x4-tab-bar-vertical .x4-tab-default { + padding-left: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-strict .x4-ie9 .x4-tab-bar-vertical .x4-tab-default .x4-tab-button { + padding-left: 9px; +} +/* line 358, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-strict .x4-ie9 .x4-tab-bar-vertical .x4-tab-default .x4-tab-icon-el { + left: 9px; +} + +/* line 366, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-icon .x4-tab-inner { + width: 16px; +} + +/* line 384, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-left { + margin: 0 2px 0 0; +} + +/* line 396, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top, +.x4-tab-default-left, +.x4-tab-default-right { + border-bottom: 1px solid #99bce8; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + -webkit-box-shadow: 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 -1px 0 0px 0 inset, white 1px 0 0px 0 inset; + box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; +} +/* line 403, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nlg .x4-tab-default-top, .x4-nlg +.x4-tab-default-left, .x4-nlg +.x4-tab-default-right { + background-image: url(images/tab/tab-default-top-bg.gif); +} + +/* line 417, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom { + border-top: 1px solid #99bce8; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + -webkit-box-shadow: 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 -1px 0 0px 0 inset, white 1px 0 0px 0 inset; + box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; +} +/* line 424, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nlg .x4-tab-default-bottom { + background-image: url(images/tab/tab-default-bottom-bg.gif); +} + +/* line 438, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x4-ie9m .x4-tab-default-left { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} + +/* line 454, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x4-ie9m .x4-tab-default-right { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +} + +/* line 471, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-icon-text-left .x4-tab-inner { + padding-left: 20px; +} + +/* line 485, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-over { + background-color: #e8f2ff; +} +/* line 509, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-over .x4-tab-glyph { + color: #416da3; +} +/* line 516, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-ie8m .x4-tab-default-over .x4-tab-glyph { + color: #94afd1; +} + +/* line 525, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-over, +.x4-tab-default-left-over, +.x4-tab-default-right-over { + background-image: none; + background-color: #e8f2ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff)); + background-image: -webkit-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: -moz-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: -o-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); +} +/* line 529, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nlg .x4-tab-default-top-over, .x4-nlg +.x4-tab-default-left-over, .x4-nlg +.x4-tab-default-right-over { + background-image: url(images/tab/tab-default-top-over-bg.gif); +} + +/* line 534, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-over { + background-image: none; + background-color: #e8f2ff; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff)); + background-image: -webkit-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: -moz-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: -o-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); +} +/* line 538, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nlg .x4-tab-default-bottom-over { + background-image: url(images/tab/tab-default-bottom-over-bg.gif); +} + +/* line 545, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-active { + background-color: #deecfd; +} +/* line 551, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-active .x4-tab-inner { + color: #15498b; +} +/* line 566, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-active .x4-tab-glyph { + color: #15498b; +} +/* line 573, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-ie8m .x4-tab-default-active .x4-tab-glyph { + color: #799ac4; +} + +/* line 581, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-active, +.x4-tab-default-left-active, +.x4-tab-default-right-active { + border-bottom: 1px solid #deecfd; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); +} +/* line 587, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nlg .x4-tab-default-top-active, .x4-nlg +.x4-tab-default-left-active, .x4-nlg +.x4-tab-default-right-active { + background-image: url(images/tab/tab-default-top-active-bg.gif); +} + +/* line 594, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-active { + border-top: 1px solid #deecfd; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: -moz-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: -o-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); +} +/* line 600, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nlg .x4-tab-default-bottom-active { + background-image: url(images/tab/tab-default-bottom-active-bg.gif); +} + +/* line 607, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-disabled { + border-color: #bbd2ef; + cursor: default; +} +/* line 620, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-disabled .x4-tab-inner { + color: #c3b3b3; +} +/* line 639, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-disabled .x4-tab-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 644, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-disabled .x4-tab-glyph { + color: #c3b3b3; + opacity: 0.3; + filter: none; +} +/* line 658, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-ie8m .x4-tab-default-disabled .x4-tab-glyph { + color: #d8dae4; +} + +/* line 667, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-disabled, +.x4-tab-default-left-disabled, +.x4-tab-default-right-disabled { + border-color: #bbd2ef #bbd2ef #99bce8; +} + +/* line 671, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-disabled { + border-color: #99bce8 #bbd2ef #bbd2ef #bbd2ef; +} + +/* line 678, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-disabled, +.x4-tab-default-left-disabled, +.x4-tab-default-right-disabled { + background-image: none; + background-color: #e1ecfa; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe)); + background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe); + background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe); + background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe); + background-image: linear-gradient(top, #e1ecfa, #ecf4fe); +} +/* line 682, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nlg .x4-tab-default-top-disabled, .x4-nlg +.x4-tab-default-left-disabled, .x4-nlg +.x4-tab-default-right-disabled { + background-image: url(images/tab/tab-default-top-disabled-bg.gif); +} + +/* line 687, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-disabled { + background-image: none; + background-color: #e1ecfa; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe)); + background-image: -webkit-linear-gradient(bottom, #e1ecfa, #ecf4fe); + background-image: -moz-linear-gradient(bottom, #e1ecfa, #ecf4fe); + background-image: -o-linear-gradient(bottom, #e1ecfa, #ecf4fe); + background-image: linear-gradient(bottom, #e1ecfa, #ecf4fe); +} +/* line 691, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nlg .x4-tab-default-bottom-disabled { + background-image: url(images/tab/tab-default-bottom-disabled-bg.gif); +} + +/* line 699, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nbr .x4-tab-default { + background-image: none; +} + +/* line 710, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-over .x4-frame-tl, +.x4-tab-default-top-over .x4-frame-bl, +.x4-tab-default-top-over .x4-frame-tr, +.x4-tab-default-top-over .x4-frame-br, +.x4-tab-default-top-over .x4-frame-tc, +.x4-tab-default-top-over .x4-frame-bc, +.x4-tab-default-left-over .x4-frame-tl, +.x4-tab-default-left-over .x4-frame-bl, +.x4-tab-default-left-over .x4-frame-tr, +.x4-tab-default-left-over .x4-frame-br, +.x4-tab-default-left-over .x4-frame-tc, +.x4-tab-default-left-over .x4-frame-bc, +.x4-tab-default-right-over .x4-frame-tl, +.x4-tab-default-right-over .x4-frame-bl, +.x4-tab-default-right-over .x4-frame-tr, +.x4-tab-default-right-over .x4-frame-br, +.x4-tab-default-right-over .x4-frame-tc, +.x4-tab-default-right-over .x4-frame-bc { + background-image: url(images/tab/tab-default-top-over-corners.gif); +} +/* line 714, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-over .x4-frame-ml, +.x4-tab-default-top-over .x4-frame-mr, +.x4-tab-default-left-over .x4-frame-ml, +.x4-tab-default-left-over .x4-frame-mr, +.x4-tab-default-right-over .x4-frame-ml, +.x4-tab-default-right-over .x4-frame-mr { + background-image: url(images/tab/tab-default-top-over-sides.gif); +} +/* line 717, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-over .x4-frame-mc, +.x4-tab-default-left-over .x4-frame-mc, +.x4-tab-default-right-over .x4-frame-mc { + background-color: #e8f2ff; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-top-over-fbg.gif); +} + +/* line 732, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-over .x4-frame-tl, +.x4-tab-default-bottom-over .x4-frame-bl, +.x4-tab-default-bottom-over .x4-frame-tr, +.x4-tab-default-bottom-over .x4-frame-br, +.x4-tab-default-bottom-over .x4-frame-tc, +.x4-tab-default-bottom-over .x4-frame-bc { + background-image: url(images/tab/tab-default-bottom-over-corners.gif); +} +/* line 736, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-over .x4-frame-ml, +.x4-tab-default-bottom-over .x4-frame-mr { + background-image: url(images/tab/tab-default-bottom-over-sides.gif); +} +/* line 739, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-over .x4-frame-mc { + background-color: #e8f2ff; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-bottom-over-fbg.gif); +} + +/* line 756, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-active .x4-frame-tl, +.x4-tab-default-top-active .x4-frame-bl, +.x4-tab-default-top-active .x4-frame-tr, +.x4-tab-default-top-active .x4-frame-br, +.x4-tab-default-top-active .x4-frame-tc, +.x4-tab-default-top-active .x4-frame-bc, +.x4-tab-default-left-active .x4-frame-tl, +.x4-tab-default-left-active .x4-frame-bl, +.x4-tab-default-left-active .x4-frame-tr, +.x4-tab-default-left-active .x4-frame-br, +.x4-tab-default-left-active .x4-frame-tc, +.x4-tab-default-left-active .x4-frame-bc, +.x4-tab-default-right-active .x4-frame-tl, +.x4-tab-default-right-active .x4-frame-bl, +.x4-tab-default-right-active .x4-frame-tr, +.x4-tab-default-right-active .x4-frame-br, +.x4-tab-default-right-active .x4-frame-tc, +.x4-tab-default-right-active .x4-frame-bc { + background-image: url(images/tab/tab-default-top-active-corners.gif); +} +/* line 760, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-active .x4-frame-ml, +.x4-tab-default-top-active .x4-frame-mr, +.x4-tab-default-left-active .x4-frame-ml, +.x4-tab-default-left-active .x4-frame-mr, +.x4-tab-default-right-active .x4-frame-ml, +.x4-tab-default-right-active .x4-frame-mr { + background-image: url(images/tab/tab-default-top-active-sides.gif); +} +/* line 763, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-active .x4-frame-mc, +.x4-tab-default-left-active .x4-frame-mc, +.x4-tab-default-right-active .x4-frame-mc { + background-color: #deecfd; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-top-active-fbg.gif); +} + +/* line 778, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-active .x4-frame-tl, +.x4-tab-default-bottom-active .x4-frame-bl, +.x4-tab-default-bottom-active .x4-frame-tr, +.x4-tab-default-bottom-active .x4-frame-br, +.x4-tab-default-bottom-active .x4-frame-tc, +.x4-tab-default-bottom-active .x4-frame-bc { + background-image: url(images/tab/tab-default-bottom-active-corners.gif); +} +/* line 782, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-active .x4-frame-ml, +.x4-tab-default-bottom-active .x4-frame-mr { + background-image: url(images/tab/tab-default-bottom-active-sides.gif); +} +/* line 785, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-active .x4-frame-mc { + background-color: #deecfd; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-bottom-active-fbg.gif); +} + +/* line 802, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-disabled .x4-frame-tl, +.x4-tab-default-top-disabled .x4-frame-bl, +.x4-tab-default-top-disabled .x4-frame-tr, +.x4-tab-default-top-disabled .x4-frame-br, +.x4-tab-default-top-disabled .x4-frame-tc, +.x4-tab-default-top-disabled .x4-frame-bc, +.x4-tab-default-left-disabled .x4-frame-tl, +.x4-tab-default-left-disabled .x4-frame-bl, +.x4-tab-default-left-disabled .x4-frame-tr, +.x4-tab-default-left-disabled .x4-frame-br, +.x4-tab-default-left-disabled .x4-frame-tc, +.x4-tab-default-left-disabled .x4-frame-bc, +.x4-tab-default-right-disabled .x4-frame-tl, +.x4-tab-default-right-disabled .x4-frame-bl, +.x4-tab-default-right-disabled .x4-frame-tr, +.x4-tab-default-right-disabled .x4-frame-br, +.x4-tab-default-right-disabled .x4-frame-tc, +.x4-tab-default-right-disabled .x4-frame-bc { + background-image: url(images/tab/tab-default-top-disabled-corners.gif); +} +/* line 806, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-disabled .x4-frame-ml, +.x4-tab-default-top-disabled .x4-frame-mr, +.x4-tab-default-left-disabled .x4-frame-ml, +.x4-tab-default-left-disabled .x4-frame-mr, +.x4-tab-default-right-disabled .x4-frame-ml, +.x4-tab-default-right-disabled .x4-frame-mr { + background-image: url(images/tab/tab-default-top-disabled-sides.gif); +} +/* line 809, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-disabled .x4-frame-mc, +.x4-tab-default-left-disabled .x4-frame-mc, +.x4-tab-default-right-disabled .x4-frame-mc { + background-color: #e1ecfa; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-top-disabled-fbg.gif); +} + +/* line 824, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-disabled .x4-frame-tl, +.x4-tab-default-bottom-disabled .x4-frame-bl, +.x4-tab-default-bottom-disabled .x4-frame-tr, +.x4-tab-default-bottom-disabled .x4-frame-br, +.x4-tab-default-bottom-disabled .x4-frame-tc, +.x4-tab-default-bottom-disabled .x4-frame-bc { + background-image: url(images/tab/tab-default-bottom-disabled-corners.gif); +} +/* line 828, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-disabled .x4-frame-ml, +.x4-tab-default-bottom-disabled .x4-frame-mr { + background-image: url(images/tab/tab-default-bottom-disabled-sides.gif); +} +/* line 831, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-disabled .x4-frame-mc { + background-color: #e1ecfa; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-bottom-disabled-fbg.gif); +} + +/* line 850, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nbr .x4-tab-default-top, +.x4-nbr .x4-tab-default-left, +.x4-nbr .x4-tab-default-right { + border-bottom-width: 1px !important; +} +/* line 853, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nbr .x4-tab-default-bottom { + border-top-width: 1px !important; +} + +/* line 861, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default .x4-tab-close-btn { + width: 11px; + height: 11px; + background-image: url(images/tab/tab-default-close.gif); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 870, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default .x4-tab-close-btn-over { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 880, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default .x4-tab-close-btn { + top: 2px; + right: 2px; +} + +/* line 924, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-disabled .x4-tab-close-btn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 939, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-closable .x4-tab-wrap { + padding-right: 14px; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-top-over:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-top-over-bg.gif), corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif), frame-bg:url(images/tab/tab-default-top-over-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-bottom-over:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-bottom-over-bg.gif), corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif), frame-bg:url(images/tab/tab-default-bottom-over-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-top-active:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-top-active-bg.gif), corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif), frame-bg:url(images/tab/tab-default-top-active-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-bottom-active:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-bottom-active-bg.gif), corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif), frame-bg:url(images/tab/tab-default-bottom-active-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-top-disabled:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-top-disabled-bg.gif), corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif), frame-bg:url(images/tab/tab-default-top-disabled-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-bottom-disabled:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-bottom-disabled-bg.gif), corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif), frame-bg:url(images/tab/tab-default-bottom-disabled-fbg.gif)"; +} + +/**/ +/* */ +/* line 94, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default { + border-style: solid; + border-color: #99bce8; +} + +/* line 100, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-top { + padding: 1px 0 0; + border-width: 1px 1px 0; +} + +/* line 107, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-bottom { + padding: 0 0 1px 0; + border-width: 0 1px 1px 1px; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-left { + padding: 0 0 0 1px; + border-width: 1px 0 1px 1px; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-right { + padding: 0 1px 0 0; + border-width: 1px 1px 1px 0; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-horizontal { + height: 25px; +} +/* line 153, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-content-box .x4-tab-bar-default-horizontal { + height: 23px; +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-vertical { + width: 25px; +} +/* line 165, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-content-box .x4-tab-bar-default-vertical { + width: 23px; +} + +/* line 172, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-body-default-top { + padding-bottom: 2px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-body-default-bottom { + padding-top: 2px; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-body-default-left { + padding-right: 2px; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-body-default-right { + padding-left: 2px; +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-strip-default { + border-style: solid; + border-color: #99bce8; + background-color: #deecfd; +} + +/* line 210, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-content-box .x4-tab-bar-strip-default-horizontal { + height: 2px; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-content-box .x4-tab-bar-strip-default-vertical { + width: 2px; +} + +/* line 224, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-strip-default-top { + border-width: 1px 0 0 0; + height: 3px; +} +/* line 227, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-plain .x4-tab-bar-strip-default-top { + border-width: 1px 1px 0; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-strip-default-bottom { + border-width: 0 0 1px 0; + height: 3px; +} +/* line 235, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-plain .x4-tab-bar-strip-default-bottom { + border-width: 0 1px 1px 1px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-strip-default-left { + border-width: 0 0 0 1px; + width: 3px; +} +/* line 243, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-plain .x4-tab-bar-strip-default-left { + border-width: 1px 0 1px 1px; +} + +/* line 257, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-strip-default-right { + border-width: 0 1px 0 0; + width: 3px; +} +/* line 260, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-plain .x4-tab-bar-strip-default-right { + border-width: 1px 1px 1px 0; +} + +/* line 274, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default { + background-color: #cbdbef; +} + +/* line 279, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-top { + background-image: none; + background-color: #cbdbef; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef)); + background-image: -webkit-linear-gradient(top, #dde8f5, #cbdbef); + background-image: -moz-linear-gradient(top, #dde8f5, #cbdbef); + background-image: -o-linear-gradient(top, #dde8f5, #cbdbef); + background-image: linear-gradient(top, #dde8f5, #cbdbef); +} +/* line 283, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-nlg .x4-tab-bar-default-top { + background: url(images/tab-bar/tab-bar-default-top-bg.gif); +} + +/* line 289, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-bottom { + background-image: none; + background-color: #cbdbef; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef)); + background-image: -webkit-linear-gradient(bottom, #dde8f5, #cbdbef); + background-image: -moz-linear-gradient(bottom, #dde8f5, #cbdbef); + background-image: -o-linear-gradient(bottom, #dde8f5, #cbdbef); + background-image: linear-gradient(bottom, #dde8f5, #cbdbef); +} +/* line 293, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-nlg .x4-tab-bar-default-bottom { + background: url(images/tab-bar/tab-bar-default-bottom-bg.gif) bottom 0; +} + +/* line 299, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-left { + background-image: none; + background-color: #cbdbef; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef)); + background-image: -webkit-linear-gradient(left, #dde8f5, #cbdbef); + background-image: -moz-linear-gradient(left, #dde8f5, #cbdbef); + background-image: -o-linear-gradient(left, #dde8f5, #cbdbef); + background-image: linear-gradient(left, #dde8f5, #cbdbef); +} +/* line 303, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-nlg .x4-tab-bar-default-left { + background: url(images/tab-bar/tab-bar-default-left-bg.gif); +} + +/* line 309, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-right { + background-image: none; + background-color: #cbdbef; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef)); + background-image: -webkit-linear-gradient(right, #dde8f5, #cbdbef); + background-image: -moz-linear-gradient(right, #dde8f5, #cbdbef); + background-image: -o-linear-gradient(right, #dde8f5, #cbdbef); + background-image: linear-gradient(right, #dde8f5, #cbdbef); +} +/* line 313, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-nlg .x4-tab-bar-default-right { + background: url(images/tab-bar/tab-bar-default-right-bg.gif) 0 right; +} + +/* line 323, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default .x4-box-scroller { + cursor: pointer; +} +/* line 363, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default .x4-tabbar-scroll-left, +.x4-tab-bar-default .x4-tabbar-scroll-right { + height: 20px; + width: 18px; +} +/* line 369, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default .x4-tabbar-scroll-top, +.x4-tab-bar-default .x4-tabbar-scroll-bottom { + width: 20px; + height: 18px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-bottom .x4-box-scroller { + margin-top: 1px; +} +/* line 381, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-right .x4-box-scroller { + margin-left: 1px; +} + +/* line 456, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-top .x4-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-left-top.gif); +} +/* line 459, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-top .x4-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-right-top.gif); +} + +/* line 476, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-bottom .x4-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-left-bottom.gif); +} +/* line 479, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-bottom .x4-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-right-bottom.gif); +} + +/* line 496, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-left .x4-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-left.gif); +} +/* line 499, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-left .x4-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-left.gif); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-right .x4-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-right.gif); +} +/* line 519, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-right .x4-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-right.gif); +} + +/* line 539, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default .x4-tabbar-scroll-left-hover, +.x4-tab-bar-default .x4-tabbar-scroll-right-hover { + background-position: -18px 0; +} +/* line 544, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default .x4-tabbar-scroll-top-hover, +.x4-tab-bar-default .x4-tabbar-scroll-bottom-hover { + background-position: 0 -18px; +} +/* line 549, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default .x4-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + cursor: default; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-bar-default-top:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-top-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-bar-default-bottom:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-bottom-bg.gif), stretch:top"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-bar-default-left:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-left-bg.gif), stretch:right"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-bar-default-right:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-right-bg.gif), stretch:left"; +} + +/**/ +/* */ +/* line 998, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-plain { + border-width: 0; + padding: 0; + height: 23px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x4-column-header-checkbox { + border-color: #c5c5c5; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x4-grid-row-checker, +.x4-column-header-checkbox .x4-column-header-text { + height: 13px; + width: 13px; + background-image: url(images/form/checkbox.gif); + line-height: 13px; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x4-column-header-checkbox .x4-column-header-inner { + padding: 5px 5px 4px 5px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x4-grid-cell-row-checker .x4-grid-cell-inner { + padding: 4px 5px 3px 5px; +} +/* line 23, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-row-checker .x4-grid-cell-inner { + padding-top: 3px; + padding-bottom: 2px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x4-grid-hd-checker-on .x4-column-header-text, +.x4-grid-row-selected .x4-grid-row-checker, +.x4-grid-row-checked .x4-grid-row-checker { + background-position: 0 -13px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-expander { + cursor: pointer; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-arrows .x4-tree-expander { + background-image: url(images/tree/arrows.gif); +} +/* line 11, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-arrows .x4-tree-expander-over .x4-tree-expander { + background-position: -32px center; +} +/* line 15, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-arrows .x4-grid-tree-node-expanded .x4-tree-expander { + background-position: -16px center; +} +/* line 19, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-arrows .x4-grid-tree-node-expanded .x4-tree-expander-over .x4-tree-expander { + background-position: -48px center; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-tree-elbow { + background-image: url(images/tree/elbow.gif); +} +/* line 48, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-tree-elbow-end { + background-image: url(images/tree/elbow-end.gif); +} +/* line 52, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-tree-elbow-plus { + background-image: url(images/tree/elbow-plus.gif); +} +/* line 56, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-plus.gif); +} +/* line 60, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-grid-tree-node-expanded .x4-tree-elbow-plus { + background-image: url(images/tree/elbow-minus.gif); +} +/* line 64, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-grid-tree-node-expanded .x4-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-minus.gif); +} +/* line 68, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-tree-elbow-line { + background-image: url(images/tree/elbow-line.gif); +} + +/* line 104, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-no-row-lines .x4-tree-expander { + background-image: url(images/tree/elbow-plus-nl.gif); +} +/* line 108, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-no-row-lines .x4-grid-tree-node-expanded .x4-tree-expander { + background-image: url(images/tree/elbow-minus-nl.gif); +} + +/* line 123, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-icon { + width: 16px; + height: 20px; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-elbow-img { + width: 16px; + height: 20px; + margin-right: 0; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-icon, +.x4-tree-elbow-img, +.x4-tree-checkbox { + margin-top: -3px; + margin-bottom: -4px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-icon-leaf { + background-image: url(images/tree/leaf.gif); +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-icon-parent { + background-image: url(images/tree/folder.gif); +} + +/* line 171, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-grid-tree-node-expanded .x4-tree-icon-parent { + background-image: url(images/tree/folder-open.gif); +} + +/* line 181, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-checkbox { + margin-right: 3px; + top: 4px; + width: 13px; + height: 13px; + background-image: url(images/form/checkbox.gif); +} + +/* line 196, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-checkbox-checked { + background-position: 0 -13px; +} + +/* line 200, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-grid-tree-loading .x4-tree-icon { + background-image: url(images/tree/loading.gif); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-grid-cell-inner-treecolumn { + font-size: 1px; + line-height: 0; +} + +/* line 221, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-node-text { + font-size: 11px; + line-height: 13px; + padding-left: 3px; +} + +/* line 235, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-grid-cell-inner-treecolumn { + padding: 3px 6px 4px 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x4-tree-drop-ok-append .x4-dd-drop-icon { + background-image: url(images/tree/drop-append.gif); +} + +/* line 5, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x4-tree-drop-ok-above .x4-dd-drop-icon { + background-image: url(images/tree/drop-above.gif); +} + +/* line 9, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x4-tree-drop-ok-below .x4-dd-drop-icon { + background-image: url(images/tree/drop-below.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x4-tree-drop-ok-between .x4-dd-drop-icon { + background-image: url(images/tree/drop-between.gif); +} + +/* line 17, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x4-tree-ddindicator { + height: 1px; + border-width: 1px 0px 0px; + border-style: dotted; + border-color: green; +} + +/* including package ext-theme-classic */ +/* line 2, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-tl { + background: transparent no-repeat 0 0; + zoom: 1; +} + +/* line 7, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-tc { + height: 8px; + background: transparent repeat-x 0 0; + overflow: hidden; +} + +/* line 13, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-tr { + background: transparent no-repeat right -8px; +} + +/* line 17, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-ml { + background: transparent repeat-y 0; + padding-left: 4px; + overflow: hidden; + zoom: 1; +} + +/* line 24, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-mc { + background: repeat-x 0 -16px; + padding: 4px 10px; +} + +/* line 29, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-mc h3 { + margin: 0 0 4px 0; + zoom: 1; +} + +/* line 34, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-mr { + background: transparent repeat-y right; + padding-right: 4px; + overflow: hidden; +} + +/* line 40, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-bl { + background: transparent no-repeat 0 -16px; + zoom: 1; +} + +/* line 45, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-bc { + background: transparent repeat-x 0 -8px; + height: 8px; + overflow: hidden; +} + +/* line 51, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-br { + background: transparent no-repeat right -24px; +} + +/* line 55, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-tl, .x4-box-bl { + padding-left: 8px; + overflow: hidden; +} + +/* line 60, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-tr, .x4-box-br { + padding-right: 8px; + overflow: hidden; +} + +/* line 65, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-tl { + background-image: url(images/box/corners.gif); +} + +/* line 69, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-tc { + background-image: url(images/box/tb.gif); +} + +/* line 73, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-tr { + background-image: url(images/box/corners.gif); +} + +/* line 77, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-ml { + background-image: url(images/box/l.gif); +} + +/* line 81, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-mc { + background-color: #eee; + background-image: url(images/box/tb.gif); + font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif; + color: #393939; + font-size: 15px; +} + +/* line 89, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-mc h3 { + font-size: 18px; + font-weight: bold; +} + +/* line 94, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-mr { + background-image: url(images/box/r.gif); +} + +/* line 98, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-bl { + background-image: url(images/box/corners.gif); +} + +/* line 102, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-bc { + background-image: url(images/box/tb.gif); +} + +/* line 106, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-br { + background-image: url(images/box/corners.gif); +} + +/* line 110, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-blue .x4-box-bl, .x4-box-blue .x4-box-br, .x4-box-blue .x4-box-tl, .x4-box-blue .x4-box-tr { + background-image: url(images/box/corners-blue.gif); +} + +/* line 114, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-blue .x4-box-bc, .x4-box-blue .x4-box-mc, .x4-box-blue .x4-box-tc { + background-image: url(images/box/tb-blue.gif); +} + +/* line 118, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-blue .x4-box-mc { + background-color: #c3daf9; +} + +/* line 122, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-blue .x4-box-mc h3 { + color: #17385b; +} + +/* line 126, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-blue .x4-box-ml { + background-image: url(images/box/l-blue.gif); +} + +/* line 130, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-blue .x4-box-mr { + background-image: url(images/box/r-blue.gif); +} + +/* line 2, ../../../ext-theme-classic/sass/src/window/MessageBox.scss */ +.x4-message-box .x4-msg-box-wait { + background-image: url(images/shared/blue-loading.gif); +} + +/* line 1, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x4-form-trigger { + height: 22px; +} +/* line 5, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x4-content-box .x4-form-trigger { + height: 21px; +} + +/* line 12, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x4-field-toolbar .x4-form-trigger { + height: 20px; +} +/* line 16, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x4-content-box .x4-field-toolbar .x4-form-trigger { + height: 19px; +} + +/* line 4, ../../../ext-theme-classic/sass/src/form/field/Spinner.scss */ +.x4-content-box div.x4-form-spinner-up, +.x4-content-box div.x4-form-spinner-down { + height: 10px; +} +/* line 10, ../../../ext-theme-classic/sass/src/form/field/Spinner.scss */ +.x4-content-box .x4-toolbar-item div.x4-form-spinner-up, +.x4-content-box .x4-toolbar-item div.x4-form-spinner-down { + height: 9px; +} + +/* line 2, ../../../ext-theme-classic/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-wrap .x4-toolbar { + border-left-color: #b5b8c8; + border-top-color: #b5b8c8; + border-right-color: #b5b8c8; +} + +/* line 9, ../../../ext-theme-classic/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-input { + border: 1px solid #b5b8c8; + border-top-width: 0; +} + +/* line 1, ../../../ext-theme-classic/sass/src/grid/column/Column.scss */ +.x4-column-header-trigger { + background-color: #c5c5c5; + background-image: url(images/grid/grid3-hd-btn.gif); +} + +/* line 6, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x4-content-box .x4-grid-editor .x4-form-trigger { + height: 19px; +} +/* line 13, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-spinner-up, .x4-grid-editor .x4-form-spinner-down { + background-image: url(images/form/spinner-small.gif); +} +/* line 16, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x4-content-box .x4-grid-editor .x4-form-spinner-up, .x4-content-box .x4-grid-editor .x4-form-spinner-down { + height: 9px; +} + +/* line 1, ../../../ext-theme-classic/sass/src/layout/container/Accordion.scss */ +.x4-accordion-hd { + border-width: 1px 0 !important; + -webkit-box-shadow: inset 0 0 0 0 #d9e7f8; + -moz-box-shadow: inset 0 0 0 0 #d9e7f8; + box-shadow: inset 0 0 0 0 #d9e7f8; +} + +/* line 6, ../../../ext-theme-classic/sass/src/layout/container/Accordion.scss */ +.x4-accordion-hd-sibling-expanded { + -webkit-box-shadow: inset 0 1px 0 0 #f3f7fb; + -moz-box-shadow: inset 0 1px 0 0 #f3f7fb; + box-shadow: inset 0 1px 0 0 #f3f7fb; +} + +/* line 5, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-east, +.x4-resizable-over .x4-resizable-handle-west, +.x4-resizable-pinned .x4-resizable-handle-east, +.x4-resizable-pinned .x4-resizable-handle-west { + background-position: left; +} +/* line 10, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-south, +.x4-resizable-over .x4-resizable-handle-north, +.x4-resizable-pinned .x4-resizable-handle-south, +.x4-resizable-pinned .x4-resizable-handle-north { + background-position: top; +} +/* line 14, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-southeast, +.x4-resizable-pinned .x4-resizable-handle-southeast { + background-position: top left; +} +/* line 18, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-northwest, +.x4-resizable-pinned .x4-resizable-handle-northwest { + background-position: bottom right; +} +/* line 22, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-northeast, +.x4-resizable-pinned .x4-resizable-handle-northeast { + background-position: bottom left; +} +/* line 26, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-southwest, +.x4-resizable-pinned .x4-resizable-handle-southwest { + background-position: top right; +} + +/* line 6, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x4-ie6 .x4-slider-horz, +.x4-ie6 .x4-slider-horz .x4-slider-end, +.x4-ie6 .x4-slider-horz .x4-slider-inner { + background-image: url(images/slider/slider-bg.gif); +} +/* line 10, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x4-ie6 .x4-slider-horz .x4-slider-thumb { + background-image: url(images/slider/slider-thumb.gif); +} +/* line 16, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x4-ie6 .x4-slider-vert, +.x4-ie6 .x4-slider-vert .x4-slider-end, +.x4-ie6 .x4-slider-vert .x4-slider-inner { + background-image: url(images/slider/slider-v-bg.gif); +} +/* line 20, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x4-ie6 .x4-slider-vert .x4-slider-thumb { + background-image: url(images/slider/slider-v-thumb.gif); +} + +/* line 1, ../../../ext-theme-classic/sass/src/tab/Panel.scss */ +.x4-tab-icon-el { + top: -1px; +} + +/* line 6, ../../../ext-theme-classic/sass/src/tab/Panel.scss */ +.x4-tab-noicon .x4-tab-icon { + display: none; +} diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/ext-theme-classic-sandbox-all-rtl-debug.css b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/ext-theme-classic-sandbox-all-rtl-debug.css new file mode 100644 index 0000000..181d29d --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/ext-theme-classic-sandbox-all-rtl-debug.css @@ -0,0 +1,20929 @@ +/* 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. + */ +/* including package ext-theme-neutral */ +/* including package ext-theme-classic */ +/* including package ext-theme-classic-sandbox */ +/* including package ext-theme-classic-sandbox */ +/* including package ext-theme-classic */ +/* including package ext-theme-neutral */ +/** + * @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 {string} $font-size + * The default font-family 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 + */ +/** + * @class Ext.FocusManager + */ +/** + * @var {color} + * The border-color of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-style of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-width of the focusFrame. See {@link #method-enable}. + */ +/** + * @class Ext.LoadMask + */ +/** + * @var {number} + * Opacity of the LoadMask + */ +/** + * @var {color} + * The background-color of the LoadMask + */ +/** + * @var {string} + * The type of cursor to dislay when the cursor is over the LoadMask + */ +/** + * @var {number/list} + * The padding to apply to the LoadMask's message element + */ +/** + * @var {string} + * The border-style of the LoadMask's message element + */ +/** + * @var {color} + * The border-color of the LoadMask's message element + */ +/** + * @var {number} + * The border-width of the LoadMask's message element + */ +/** + * @var {color} + * The background-color of the LoadMask's message element + */ +/** + * @var {string/list} + * The background-gradient of the LoadMask's message element. Can be either the name + * of a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the message inner element + */ +/** + * @var {string} + * The icon to display in the message inner element + */ +/** + * @var {list} + * The background-position of the icon + */ +/** + * @var {string} + * The border-style of the message inner element + */ +/** + * @var {color} + * The border-color of the message inner element + */ +/** + * @var {number} + * The border-width of the message inner element + */ +/** + * @var {color} + * The background-color of the message inner element + */ +/** + * @var {color} + * The text color of the message inner element + */ +/** + * @var {number} + * The font-size of the message inner element + */ +/** + * @var {string} + * The font-weight of the message inner element + */ +/** + * @var {string} + * The font-family of the message inner element + */ +/** + * @var {number/list} + * The padding of the message element + */ +/** + * @var {number} + * The border-radius of the message element + */ +/** + * @class Ext.ProgressBar + */ +/** + * @var {number} + * The height of the ProgressBar + */ +/** + * @var {color} + * The border-color of the ProgressBar + */ +/** + * @var {number} + * The border-width of the ProgressBar + */ +/** + * @var {number} + * The border-radius of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar's moving element + */ +/** + * @var {string/list} + * The background-gradient of the ProgressBar's moving element. Can be either the name of + * a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The color of the ProgressBar's text when in front of the ProgressBar's moving element + */ +/** + * @var {color} + * The color of the ProgressBar's text when the ProgressBar's 'moving element is not under it + */ +/** + * @var {string} + * The text-align of the ProgressBar's text + */ +/** + * @var {number} + * The font-size of the ProgressBar's text + */ +/** + * @var {string} + * The font-weight of the ProgressBar's text + */ +/** + * @var {boolean} + * True to include the "default" ProgressBar UI + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a small {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a medium {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a large {@link #scale} button + */ +/** + * @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 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 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 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 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 disabled + */ +/** + * @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 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 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 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 disabled + */ +/** + * @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-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 buton 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-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 + */ +/** + * @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 {number/list} + * The margin 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 {number/list} + * The margin of Toolbar text + */ +/** + * @var {color} + * The text-color of Toolbar text + */ +/** + * @var {number/list} + * The padding of Toolbar text + */ +/** + * @var {number} + * The line-height of Toolbar text + */ +/** + * @var {number} + * The width of Toolbar scrollers + */ +/** + * @var {number} + * The height of Toolbar scrollers + */ +/** + * @var {color} + * The border-color of Toolbar scrollers + */ +/** + * @var {number} + * The border-width of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of disabled Toolbar scrollers + */ +/** + * @var {number} + * The opacity of disabled Toolbar scrollers + */ +/** + * @var {string} + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + */ +/** + * @var {boolean} + * True to include the "default" toolbar UI + */ +/** + * @class Ext.panel.Panel + */ +/** + * @var {number} + * The default border-width of Panels + */ +/** + * @var {color} + * The base color of Panels + */ +/** + * @var {color} + * The default border-color of Panels + */ +/** + * @var {$border-width-threshold} + * 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 {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 {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 {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 + */ +/** + * @class Ext.tip.Tip + */ +/** + * @var {color} + * The background-color of the Tip + */ +/** + * @var {string/list} + * The background-gradient of the Tip. Can be either the name of a predefined gradient or a + * list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The text color of the Tip body + */ +/** + * @var {number} + * The font-size of the Tip body + */ +/** + * @var {string} + * The font-weight of the Tip body + */ +/** + * @var {number/list} + * The padding of the Tip body + */ +/** + * @var {color} + * The text color of any anchor tags inside the Tip body + */ +/** + * @var {color} + * The text color of the Tip header + */ +/** + * @var {number} + * The font-size of the Tip header + */ +/** + * @var {string} + * The font-weight of the Tip header + */ +/** + * @var {number/list} + * The padding of the Tip header's body element + */ +/** + * @var {color} + * The border-color of the Tip + */ +/** + * @var {number} + * The border-width of the Tip + */ +/** + * @var {number} + * The border-radius of the Tip + */ +/** + * @var {color} + * The inner border-color of the form field error Tip + */ +/** + * @var {number} + * The inner border-width of the form field error Tip + */ +/** + * @var {color} + * The border-color of the form field error Tip + */ +/** + * @var {number} + * The border-radius of the form field error Tip + */ +/** + * @var {number} + * The border-width of the form field error Tip + */ +/** + * @var {color} + * The background-color of the form field error Tip + */ +/** + * @var {number/list} + * The padding of the form field error Tip's body element + */ +/** + * @var {color} + * The text color of the form field error Tip's body element + */ +/** + * @var {number} + * The font-size of the form field error Tip's body element + */ +/** + * @var {string} + * The font-weight of the form field error Tip's body element + */ +/** + * @var {color} + * The color of anchor tags in the form field error Tip's body element + */ +/** + * @var {number} + * The space between {@link Ext.panel.Tool Tools} in the header + */ +/** + * @var {string} + * The sprite to use for the header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" tip UI + */ +/** + * @var {boolean} + * True to include the "form-invalid" tip UI + */ +/** + * @class Ext.container.ButtonGroup + */ +/** + * @var {color} + * The background-color of the ButtonGroup + */ +/** + * @var {color} + * The border-color of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of the ButtonGroup + */ +/** + * @var {number/list} + * The body padding of the ButtonGroup + */ +/** + * @var {number/list} + * The inner border-width of the ButtonGroup + */ +/** + * @var {color} + * The inner border-color of the ButtonGroup + */ +/** + * @var {number/list} + * The margin of the header element. Used to add space around the header. + */ +/** + * @var {number} + * The font-size of the header + */ +/** + * @var {number} + * The font-weight of the header + */ +/** + * @var {number} + * The font-family of the header + */ +/** + * @var {number} + * The line-height of the header + */ +/** + * @var {number} + * The text color of the header + */ +/** + * @var {number} + * The padding of the header + */ +/** + * @var {number} + * The background-color of the header + */ +/** + * @var {number} + * The border-spacing to use on the table layout element + */ +/** + * @var {number} + * The background-color of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of framed ButtonGroups + */ +/** + * @var {string} + * Sprite image to use for header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" button group UI + */ +/** + * @var {boolean} + * True to include the "default-framed" button group UI + */ +/** + * @class Ext.window.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 + */ +/** + * @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 {color} + * The text color of toolbar field labels + */ +/** + * @var {string} + * The font-weight of toolbar field labels + */ +/** + * @var {number} + * The font-size of toolbar field labels + */ +/** + * @var {string} + * The font-family of toolbar field labels + */ +/** + * @var {number} + * The line-height of toolbar field labels + */ +/** + * @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 {measurement} $form-item-margin-bottom + * The bottom margin to apply to form items when in auto, anchor, vbox, or table layout + */ +/** + * @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 {font} $form-field-font + * Font 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 {font} $form-toolbar-field-font + * Font 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. + */ +/** + * @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 {number} $form-field-disabled-opacity + */ +/** + * @class Ext.form.field.TextArea + */ +/** + * @var {number/string} + * The line-height to use for the TextArea's text + */ +/** + * @class Ext.form.field.Display + */ +/** + * @var {color} + * The text color of display fields + */ +/** + * @var {string} + * The font-weight of display fields + */ +/** + * @var {number} + * The font-size of display fields + */ +/** + * @var {string} + * The font-family of display fields + */ +/** + * @var {number} + * The line-height of display fields + */ +/** + * @var {string} + * The font-weight of toolbar display fields + */ +/** + * @var {number} + * The font-size of toolbar display fields + */ +/** + * @var {string} + * The font-family of toolbar display fields + */ +/** + * @var {number} + * The line-height of toolbar display fields + */ +/** + * @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 + */ +/** + * @class Ext.form.field.Checkbox + */ +/** + * @var {number} + * The size of the checkbox + */ +/** + * @var {number} + * The space between the boxLabel and the checkbox. + */ +/** + * @class Ext.form.CheckboxGroup + */ +/** + * @var {number/list} + * The padding of the CheckboxGroup body element + */ +/** + * @var {color} + * The text color of the CheckboxGroup label + */ +/** + * @var {number} + * The padding of the CheckboxGroup label + */ +/** + * @var {number} + * The margin of the CheckboxGroup label + */ +/** + * @var {number} + * The border-width of the CheckboxGroup label + */ +/** + * @var {number} + * The border-style of the CheckboxGroup label + */ +/** + * @var {number} + * The border-color of the CheckboxGroup label + */ +/** + * @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/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/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 {number/list} + * The margin to apply to the FieldSet's checkbox (for FieldSets that use + * {@link #checkboxToggle}) + */ +/** + * @var {number} + * The size of the FieldSet's collapse tool + */ +/** + * @var {string} $fieldset-collapse-tool-background-image + * The background-image to use for the collapse tool. If null the default tool + * sprite will be used. Defaults to null. + */ +/** + * @class Ext.form.field.Radio + */ +/** + * @var {number} + * The size of the radio button + */ +/** + * @class Ext.form.field.Trigger + */ +/** + * @var {number} + * The width of the Trigger field's trigger element + */ +/** + * @var {number/list} + * The width of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border + */ +/** + * @var {string} + * The style of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border when hovered + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused and the trigger is hovered + */ +/** + * @class Ext.form.field.Spinner + */ +/** + * @var {number} + * The height of the Spinner trigger buttons + */ +/** + * @var {number} + * The height of the Spinner trigger buttons when the Spinner is used on a + * {@link Ext.toolbar.Toolbar Toolbar} + */ +/** + * @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 {number/list} + * The padding of BoundList items + */ +/** + * @var {number} + * The border-width of BoundList items + */ +/** + * @var {string} + * The border-style of BoundList items + */ +/** + * @var {color} + * The border-color of BoundList items + */ +/** + * @var {color} + * The border-color of hovered BoundList items + */ +/** + * @var {color} + * The border-color of selected BoundList items + */ +/** + * @var {color} + * The background-color of hovered BoundList items + */ +/** + * @var {color} + * The background-color of selected BoundList items + */ +/** + * @class Ext.picker.Date + */ +/** + * @var {number} + * The border-width of the DatePicker + */ +/** + * @var {string} + * The border-style of the DatePicker + */ +/** + * @var {color} + * The background-color of the DatePicker + */ +/** + * @var {string} + * The background-image of the DatePicker next arrow + */ +/** + * @var {string} + * The background-image of the DatePicker previous arrow + */ +/** + * @var {number} + * The width of DatePicker arrows + */ +/** + * @var {number} + * The height of DatePicker arrows + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a DatePicker arrow + */ +/** + * @var {number} + * The opacity of the DatePicker arrows + */ +/** + * @var {number} + * The opacity of the DatePicker arrows when hovered + */ +/** + * @var {string/list} + * The Date Picker header background gradient. Can be either the name of a predefined gradient + * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the Date Picker header + */ +/** + * @var {color} + * The color of the Date Picker month button + */ +/** + * @var {number} + * The width of the arrow on the Date Picker month button + */ +/** + * @var {string} + * The background-image of the arrow on the Date Picker month button + */ +/** + * @var {boolean} + * True to render the month button as transparent + */ +/** + * @var {string} + * The text-align of the Date Picker header + */ +/** + * @var {number} + * The height of Date Picker items + */ +/** + * @var {number} + * The width of Date Picker items + */ +/** + * @var {number/list} + * The padding of Date Picker items + */ +/** + * @var {string} + * The font-family of Date Picker items + */ +/** + * @var {number} + * The font-size of Date Picker items + */ +/** + * @var {string} + * The font-weight of Date Picker items + */ +/** + * @var {string} + * The text-align of Date Picker items + */ +/** + * @var {color} + * The text color of Date Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Date Picker item + */ +/** + * @var {string} + * The font-family of Date Picker column headers + */ +/** + * @var {number} + * The font-size of Date Picker column headers + */ +/** + * @var {string} + * The font-weight of Date Picker column headers + */ +/** + * @var {string/list} + * The background-gradient of Date Picker column headers. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {string} + * The border-style of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker column headers + */ +/** + * @var {string} + * The text-align of Date Picker column headers + */ +/** + * @var {number} + * The height of Date Picker column headers + */ +/** + * @var {number/list} + * The padding of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker items + */ +/** + * @var {string} + * The border-style of Date Picker items + */ +/** + * @var {color} + * The border-color of Date Picker items + */ +/** + * @var {string} + * The border-style of today's date on the Date Picker + */ +/** + * @var {string} + * The border-style of the selected item + */ +/** + * @var {string} + * The font-weight of the selected item + */ +/** + * @var {color} + * The text color of the items in the previous and next months + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a disabled item + */ +/** + * @var {color} + * The text color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of the Date Picker footer + */ +/** + * @var {string/list} + * The background-gradient of the Date Picker footer. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The border-width of the Date Picker footer + */ +/** + * @var {string} + * The border-style of the Date Picker footer + */ +/** + * @var {string} + * The text-align of the Date Picker footer + */ +/** + * @var {number/list} + * The padding of the Date Picker footer + */ +/** + * @var {number} + * The space between the footer buttons + */ +/** + * @var {color} + * The border-color of the Month Picker + */ +/** + * @var {number} + * The border-width of the Month Picker + */ +/** + * @var {string} + * The border-style of the Month Picker + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The border-color of Month Picker items + */ +/** + * @var {string} + * The border-style of Month Picker items + */ +/** + * @var {string} + * The font-family of Month Picker items + */ +/** + * @var {number} + * The font-size of Month Picker items + */ +/** + * @var {string} + * The font-weight of Month Picker items + */ +/** + * @var {number/list} + * The margin of Month Picker items + */ +/** + * @var {string} + * The text-align of Month Picker items + */ +/** + * @var {number} + * The height of Month Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker item + */ +/** + * @var {color} + * The background-color of hovered Month Picker items + */ +/** + * @var {color} + * The background-color of selected Month Picker items + */ +/** + * @var {string} + * The border-style of selected Month Picker items + */ +/** + * @var {color} + * The border-color of selected Month Picker items + */ +/** + * @var {number} + * The height of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The width of the Month Picker year navigation buttons + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker year navigation button + */ +/** + * @var {number} + * The opacity of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The opacity of hovered Month Picker year navigation buttons + */ +/** + * @var {string} + * The background-image of the Month Picker next year navigation button + */ +/** + * @var {string} + * The background-image of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker previous year navigation button + */ +/** + * @var {string} + * The border-style of the Month Picker separator + */ +/** + * @var {number} + * The border-width of the Month Picker separator + */ +/** + * @var {color} + * The border-color of the Month Picker separator + */ +/** + * @var {number/list} + * The margin of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @var {number} + * The height of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @class Ext.picker.Color + */ +/** + * @var {color} + * The background-color of Color Pickers + */ +/** + * @var {color} + * The border-color of Color Pickers + */ +/** + * @var {number} + * The border-width of Color Pickers + */ +/** + * @var {string} + * The border-style of Color Pickers + */ +/** + * @var {number} + * The number of columns to display in the Color Picker + */ +/** + * @var {number} + * The number of rows to display in the Color Picker + */ +/** + * @var {number} + * The height of each Color Picker item + */ +/** + * @var {number} + * The width of each Color Picker item + */ +/** + * @var {number} + * The padding of each Color Picker item + */ +/** + * @var {string} + * The cursor to display when the mouse is over a Color Picker item + */ +/** + * @var {color} + * The border-color of Color Picker items + */ +/** + * @var {number} + * The border-width of Color Picker items + */ +/** + * @var {string} + * The border-style of Color Picker items + */ +/** + * @var {color} + * The border-color of hovered Color Picker items + */ +/** + * @var {color} + * The background-color of Color Picker items + */ +/** + * @var {color} + * The background-color of hovered Color Picker items + */ +/** + * @var {color} + * The border-color of the selected Color Picker item + */ +/** + * @var {color} + * The background-color of the selected Color Picker item + */ +/** + * @var {color} + * The inner border-color of Color Picker items + */ +/** + * @var {number} + * The inner border-width of Color Picker items + */ +/** + * @var {string} + * The inner border-style of Color Picker items + */ +/** + * @class Ext.form.field.HtmlEditor + */ +/** + * @var {number} + * The border-width of the HtmlEditor + */ +/** + * @var {color} + * The border-color of the HtmlEditor + */ +/** + * @var {color} + * The background-color of the HtmlEditor + */ +/** + * @var {number} + * The size of the HtmlEditor toolbar icons + */ +/** + * @var {number} + * The font-size of the HtmlEditor's font selection control + */ +/** + * @var {number} + * The font-family of the HtmlEditor's font selection control + */ +/** + * @class Ext.panel.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} $grid-row-cell-line-height + * 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 {color} + * The border-color of the focused row + */ +/** + * @var {string} + * The border-style of the focused row + */ +/** + * @var {color} + * The text color of the focused row + */ +/** + * @var {color} + * The background-color of the focused row + */ +/** + * @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.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 {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 + */ +/** + * @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.CheckColumn + */ +/** + * @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.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.grid.feature.RowWrap + */ +/** + * @var {color} + * The border-color of wrapped rows + */ +/** + * @var {string} + * The border-style of wrapped rows + */ +/** + * @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 + */ +/** + * @class Ext.grid.plugin.Editing + */ +/** + * The height of grid editor text fields. 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 caluclated by adding $grid-row-cell-line-height to the top and bottom values of + * $grid-cell-inner-padding. + */ +/** + * The padding of grid editor text fields. + */ +/** + * @var {number} + * The font size of the grid editor text + */ +/** + * @var {string} + * The font-weight of the grid editor text + */ +/** + * @var {string} + * The font-family of the grid editor text + */ +/** + * @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 {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 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 {string} + * The text-transform property of Accordion headers + */ +/** + * @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.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 {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. + */ +/** + * @class Ext.layout.container.Border + */ +/** + * @var {color} + * The background-color of the Border layout element + */ +/** + * @class Ext.menu.Menu + */ +/** + * @var {color} + * The background-color of the 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 {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} + * The font-size of {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The margin 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 {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 {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {list} + * The background-position of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} text + */ +/** + * @var {number/list} + * The margin of {@link Ext.menu.Separator Menu Separators} + */ +/** + * @var {number} + * The padding to the right of {@link Ext.menu.CheckItem Check Items}, to make room + * for the checkbox + */ +/** + * @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 space to the left and right of {@link Ext.menu.Item Menu Item} arrows + */ +/** + * @var {number} + * The opacity of disabled {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The height of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers when hovered + */ +/** + * @var {number} + * The opacity of Menu crollers when pressed + */ +/** + * @var {number/list} + * The padding to apply to the Menu body element + */ +/** + * @var {color} + * The color of Menu Item text + */ +/** + * @var {number/list} + * The margin non-MenuItems placed in a Menu + */ +/** + * @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} + */ +/** + * @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.slider.Multi + */ +/** + * @var {number} + * The horizontal slider thumb width + */ +/** + * @var {number} + * The horizontal slider thumb height + */ +/** + * @var {number} + * The width of the horizontal slider end caps + */ +/** + * @var {number} + * The vertical slider thumb width + */ +/** + * @var {number} + * The vertical slider thumb height + */ +/** + * @var {number} + * The height of the vertical slider end caps + */ +/** + * @class Ext.tab.Tab + */ +/** + * @var {color} + * The base color of Tabs + */ +/** + * @var {color} + * The base color of hovered Tabs + */ +/** + * @var {color} + * The base color of the active Tabs + */ +/** + * @var {color} + * The base color of disabled Tabs + */ +/** + * @var {color} + * The text color of Tabs + */ +/** + * @var {color} + * The text color of hovered Tabs + */ +/** + * @var {color} + * The text color of the active Tab + */ +/** + * @var {color} + * The text color of disabled Tabs + */ +/** + * @var {number} + * The font-size of Tabs + */ +/** + * @var {number} + * The font-size of hovered Tabs + */ +/** + * @var {number} + * The font-size of the active Tab + */ +/** + * @var {number} + * The font-size of disabled Tabs + */ +/** + * @var {string} + * The font-family of Tabs + */ +/** + * @var {string} + * The font-family of hovered Tabs + */ +/** + * @var {string} + * The font-family of the active Tab + */ +/** + * @var {string} + * The font-family of disabled Tabs + */ +/** + * @var {string} + * The font-weight of Tabs + */ +/** + * @var {string} + * The font-weight of hovered Tabs + */ +/** + * @var {string} + * The font-weight of the active Tab + */ +/** + * @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 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 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} + * The border-width of Tabs + */ +/** + * @var {number/list} + * The inner border-width of Tabs + */ +/** + * @var {color} + * The inner border-color of Tabs + */ +/** + * @var {color} + * The border-color of Tabs + */ +/** + * @var {color} + * The border-color of hovered Tabs + */ +/** + * @var {color} + * The border-color of the active Tab + */ +/** + * @var {color} + * The border-color of disabled Tabs + */ +/** + * @var {number/list} + * The padding of Tabs + */ +/** + * @var {number/list} + * The padding of the Tab's text element + */ +/** + * @var {number} + * The line-height of Tabs + */ +/** + * @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 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 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 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 {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a left-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `left`. + */ +/** + * @var {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a right-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `right`. + */ +/** + * @var {boolean} + * True to include the "default" tab UI + */ +/** + * @class Ext.tab.Bar + */ +/** + * @var {number/list} + * The padding of the Tab Bar + */ +/** + * @var {number/list} + * The padding of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} Tab Bar strip + */ +/** + * @var {number} + * The width of the Tab Bar scrollers + */ +/** + * @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 change the x postition of the background image on hover to allow for a + * horizonatlly alined background image sprite + */ +/** + * @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.selection.CheckboxModel + */ +/** + * @var {number} + * The horizontal space before the checkbox + */ +/** + * @var {number} + * The horizontal space after the checkbox + */ +/** + * @class Ext.tree.Panel + */ +/** + * @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 + */ +/* 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 + */ +/** + * @var {boolean} $include-content-box + * True to include rules for browsers that do not support the border-box model + * (IE6 strict and IE7 strict) + */ +/** + * @var {boolean} $include-ff + * True to include Firefox specific rules + */ +/** + * @var {boolean} $include-chrome + * True to include Chrome specific rules + */ +/** + * @var {boolean} $include-safari + * True to include Safari specific rules + */ +/** + * @var {boolean} $include-opera + * True to include Opera specific rules + */ +/** + * @var {boolean} $include-webkit + * True to include Webkit specific rules + */ +/** + * @var {measurement} $css-shadow-border-radius + * The border radius for CSS shadows + */ +/** + * @var {color} $include-shadow-images + * True to include all shadow images. + */ +/** + * @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 {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. + */ +/* including package ext-theme-base */ +/* + * 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 + */ +/* line 1, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-body { + margin: 0; +} + +/* line 5, ../../../ext-theme-base/sass/src/Component.scss */ +img { + border: 0; +} + +/* line 10, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-border-box, +.x4-border-box * { + box-sizing: border-box; + -moz-box-sizing: border-box; + -ms-box-sizing: border-box; + -webkit-box-sizing: border-box; +} + +/* line 17, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-rtl { + direction: rtl; +} + +/* line 21, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-ltr { + direction: ltr; +} + +/* line 25, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-clear { + overflow: hidden; + clear: both; + font-size: 0; + line-height: 0; + display: table; +} + +/* line 33, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-strict .x4-ie7 .x4-clear { + height: 0; + width: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-layer { + position: absolute !important; + overflow: hidden; + zoom: 1; +} + +/* line 49, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-fixed-layer { + position: fixed !important; + overflow: hidden; + zoom: 1; +} + +/* line 55, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-shim { + position: absolute; + left: 0; + top: 0; + overflow: hidden; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 63, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-hide-display { + display: none !important; +} + +/* line 67, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-hide-visibility { + visibility: hidden !important; +} + +/* line 72, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-ie6 .x4-item-disabled { + filter: none; +} + +/* line 78, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-hidden, +.x4-hide-offsets { + display: block !important; + visibility: hidden !important; + position: absolute !important; + top: -10000px !important; +} + +/* line 88, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-hide-nosize { + height: 0 !important; + width: 0 !important; +} + +/* line 94, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-hide-clip { + position: absolute!important; + clip: rect(0, 0, 0, 0); + clip: rect(0 0 0 0); +} + +/* line 102, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-masked-relative { + position: relative; +} + +/* line 108, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-ie-shadow { + background-color: #777; + display: none; + position: absolute; + overflow: hidden; + zoom: 1; +} + +/* line 117, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-unselectable { + user-select: none; + -o-user-select: none; + -ms-user-select: none; + -moz-user-select: -moz-none; + -webkit-user-select: none; + cursor: default; +} + +/* line 121, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-selectable { + cursor: auto; + -moz-user-select: text; + -webkit-user-select: text; + -ms-user-select: text; + user-select: text; + -o-user-select: text; +} + +/* line 136, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-list-plain { + list-style-type: none; + margin: 0; + padding: 0; +} + +/* line 143, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-table-plain { + border-collapse: collapse; + border-spacing: 0; + font-size: 1em; +} + +/* line 156, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-frame-tl, +.x4-frame-tr, +.x4-frame-tc, +.x4-frame-bl, +.x4-frame-br, +.x4-frame-bc { + overflow: hidden; + background-repeat: no-repeat; +} + +/* line 162, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-frame-tc, +.x4-frame-bc { + background-repeat: repeat-x; +} + +/* line 166, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-frame-mc { + background-repeat: repeat-x; + overflow: hidden; +} + +/* line 171, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-proxy-el { + position: absolute; + background: #b4b4b4; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); + opacity: 0.8; +} + +/* line 178, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-css-shadow { + position: absolute; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; +} + +/* line 184, ../../../ext-theme-base/sass/src/Component.scss */ +.x4-item-disabled, +.x4-item-disabled * { + cursor: default; +} + +/* line 3, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x4-box-item { + position: absolute !important; + left: 0; + top: 0; +} + +/* line 10, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x4-rtl > .x4-box-item { + right: 0; + left: auto; +} + +/* line 20, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x4-ie6 .x4-rtl .x4-box-item, +.x4-quirks .x4-ie .x4-rtl .x4-box-item { + right: 0; + left: auto; +} + +/* line 4, ../../../ext-theme-base/sass/src/Editor.scss */ +div.x4-editor { + overflow: visible; +} + +/* line 1, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x4-mask { + z-index: 100; + position: absolute; + width: 100%; + height: 100%; + zoom: 1; +} + +/* line 10, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x4-mask-shim { + z-index: 100; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +/* line 20, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x4-mask-msg { + z-index: 20001; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x4-progress { + position: relative; + border-style: solid; + overflow: hidden; +} + +/* line 7, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x4-progress-bar { + overflow: hidden; + position: absolute; + width: 0; + height: 100%; +} + +/* line 14, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x4-progress-text { + overflow: hidden; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x4-btn { + display: inline-block; + position: relative; + zoom: 1; + *display: inline; + outline: 0; + cursor: pointer; + white-space: nowrap; + vertical-align: middle; + text-decoration: none; +} + +/* line 15, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x4-btn-wrap { + position: relative; + display: block; +} + +/* line 20, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x4-btn-button { + position: relative; + display: block; + text-decoration: none; + overflow: hidden; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x4-btn-inner { + display: block; + white-space: nowrap; + overflow: hidden; + zoom: 1; +} + +/* line 35, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x4-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 45, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x4-btn-inner-center { + text-align: center; +} + +/* line 49, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x4-btn-inner-left { + text-align: left; +} + +/* line 54, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x4-rtl.x4-btn-inner-left { + text-align: right; +} + +/* line 59, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x4-btn-inner-right { + text-align: right; +} + +/* line 64, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x4-rtl.x4-btn-inner-right { + text-align: left; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x4-box-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x4-box-target { + position: absolute; + width: 20000px; + top: 0; + left: 0; + height: 1px; +} + +/* line 25, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x4-rtl.x4-box-target { + left: auto; + right: 0; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x4-box-inner { + overflow: hidden; + zoom: 1; + position: relative; + left: 0; + top: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x4-horizontal-box-overflow-body { + float: left; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x4-box-scroller { + position: relative; + background-repeat: no-repeat; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x4-box-scroller-left, +.x4-box-scroller-right { + float: left; + height: 100%; + z-index: 5; +} + +/* line 59, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x4-box-scroller-top .x4-box-scroller, +.x4-box-scroller-bottom .x4-box-scroller { + line-height: 0; + font-size: 0; + background-position: center 0; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x4-box-menu-after { + float: right; +} + +/* line 71, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x4-rtl.x4-box-menu-after { + float: left; +} + +/* line 1, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-text { + white-space: nowrap; +} + +/* line 5, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-separator { + display: block; + font-size: 1px; + overflow: hidden; + cursor: default; + border: 0; + width: 0; + height: 0; + line-height: 0px; +} + +/* line 17, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x4-quirks .x4-ie .x4-toolbar .x4-toolbar-separator-horizontal { + width: 2px; +} + +/* line 22, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-scroller { + padding-left: 0; +} + +/* line 29, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-plain { + border: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked { + position: absolute !important; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked-vertical { + position: static; +} + +/* line 11, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked-top { + border-bottom-width: 0 !important; +} + +/* line 15, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked-bottom { + border-top-width: 0 !important; +} + +/* line 19, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked-left { + border-right-width: 0 !important; +} + +/* line 23, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked-right { + border-left-width: 0 !important; +} + +/* line 27, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked-noborder-top { + border-top-width: 0 !important; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked-noborder-right { + border-right-width: 0 !important; +} + +/* line 35, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked-noborder-bottom { + border-bottom-width: 0 !important; +} + +/* line 39, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-docked-noborder-left { + border-left-width: 0 !important; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-l { + border-left-width: 0 !important; +} + +/* line 48, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-b { + border-bottom-width: 0 !important; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-bl { + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 55, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-r { + border-right-width: 0 !important; +} + +/* line 58, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-rl { + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 62, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-rb { + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-rbl { + border-right-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 71, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-t { + border-top-width: 0 !important; +} + +/* line 74, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-tl { + border-top-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 78, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-tb { + border-top-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 82, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-tbl { + border-top-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 87, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-tr { + border-top-width: 0 !important; + border-right-width: 0 !important; +} + +/* line 91, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-trl { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 96, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-trb { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 101, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x4-noborder-trbl { + border-width: 0 !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x4-header-icon { + background-repeat: no-repeat; + background-position: 0 0; + vertical-align: middle; + text-align: center; +} + +/* line 8, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x4-header-text-container { + overflow: hidden; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +/* line 15, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x4-rtl.x4-header-text-container { + -o-text-overflow: clip; + text-overflow: clip; +} + +/* line 4, ../../../ext-theme-base/sass/src/dd/DD.scss */ +.x4-dd-drag-proxy, +.x4-dd-drag-current { + z-index: 1000000!important; + pointer-events: none; +} + +/* line 2, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x4-dd-drag-repair .x4-dd-drag-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 6, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x4-dd-drag-repair .x4-dd-drop-icon { + display: none; +} + +/* line 11, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x4-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 11px tahoma, arial, verdana, sans-serif; + border: 1px solid; + border-color: #ddd #bbb #bbb #ddd; + background-color: #fff; +} + +/* line 28, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x4-dd-drop-icon { + position: absolute; + top: 3px; + left: 3px; + display: block; + width: 16px; + height: 16px; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + z-index: 1; +} + +/* line 51, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x4-rtl .x4-dd-drag-ghost { + padding-left: 5px; + padding-right: 20px; +} +/* line 55, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x4-rtl .x4-dd-drop-icon { + left: auto; + right: 3px; +} + +/* line 66, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x4-dd-drop-ok .x4-dd-drop-icon { + background-image: url(images/dd/drop-yes.gif); +} + +/* line 70, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x4-dd-drop-ok-add .x4-dd-drop-icon { + background-image: url(images/dd/drop-add.gif); +} + +/* line 75, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x4-dd-drop-nodrop div.x4-dd-drop-icon { + background-image: url(images/dd/drop-no.gif); +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x4-panel, +.x4-plain { + overflow: hidden; + position: relative; +} + +/* line 7, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x4-panel { + outline: none; +} + +/* line 23, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x4-ie .x4-panel-header, +.x4-ie .x4-panel-header-tl, +.x4-ie .x4-panel-header-tc, +.x4-ie .x4-panel-header-tr, +.x4-ie .x4-panel-header-ml, +.x4-ie .x4-panel-header-mc, +.x4-ie .x4-panel-header-mr, +.x4-ie .x4-panel-header-bl, +.x4-ie .x4-panel-header-bc, +.x4-ie .x4-panel-header-br { + zoom: 1; +} + +/* line 29, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x4-ie8 td.x4-frame-mc { + vertical-align: top; +} + +/* line 35, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x4-panel-body { + overflow: hidden; + position: relative; +} + +/* line 42, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x4-nlg .x4-panel-header-vertical .x4-frame-mc { + background-repeat: repeat-y; +} + +/* line 49, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x4-panel-header-plain, +.x4-panel-body-plain { + border: 0; + padding: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x4-tip { + position: absolute; + overflow: visible; + /*pointer needs to be able to stick out*/ +} + +/* line 6, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x4-tip-body { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x4-tip-anchor { + position: absolute; + overflow: hidden; + border-style: solid; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Table.scss */ +.x4-table-layout { + font-size: 1em; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x4-btn-group { + position: relative; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-body { + position: relative; + zoom: 1; +} +/* line 9, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-body .x4-table-layout-cell { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/Viewport.scss */ +.x4-viewport, .x4-viewport body { + margin: 0; + padding: 0; + border: 0 none; + overflow: hidden; + height: 100%; + position: static; +} + +/* line 1, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x4-window { + outline: none; + overflow: hidden; +} +/* line 5, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x4-window .x4-window-wrap { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x4-window-body { + position: relative; + overflow: hidden; +} + +/* line 15, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x4-window-body-plain { + background: transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x4-form-item-label { + display: block; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x4-form-item-label-right { + text-align: right; +} + +/* line 9, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x4-form-item-label-top { + display: block; + zoom: 1; +} + +/* line 15, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x4-form-invalid-icon { + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x4-form-invalid-icon ul { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x4-form-textarea { + overflow: auto; + resize: none; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x4-safari.x4-mac .x4-form-textarea { + margin-bottom: -2px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Display.scss */ +.x4-form-display-field-body { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x4-form-cb-wrap { + vertical-align: top; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x4-form-cb { + vertical-align: top; + overflow: hidden; + padding: 0; + border: 0; +} +/* line 10, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x4-form-cb::-moz-focus-inner { + padding: 0; + border: 0; +} + +/* line 16, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x4-form-cb-label { + display: inline-block; + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x4-fieldset { + display: block; + /* preserve margins in IE */ + position: relative; +} + +/* line 6, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x4-fieldset-header { + overflow: hidden; +} +/* line 10, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x4-fieldset-header .x4-form-item, +.x4-fieldset-header .x4-tool { + float: left; +} +/* line 14, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x4-fieldset-header .x4-form-cb-wrap { + font-size: 0; + line-height: 0; +} +/* line 19, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x4-fieldset-header .x4-form-cb { + margin: 0; +} + +/* line 27, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x4-rtl.x4-fieldset-header .x4-form-item, +.x4-rtl.x4-fieldset-header .x4-tool { + float: right; +} + +/* line 33, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x4-fieldset-header-text { + float: left; +} + +/*misc*/ +/* line 4, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x4-webkit *:focus { + outline: none !important; +} + +/* line 11, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x4-form-item { + vertical-align: top; + table-layout: fixed; +} + +/* line 17, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x4-form-item-body { + position: relative; +} + +/* line 26, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x4-rtl.x4-form-item .x4-form-item-input-row { + position: relative; + right: 0; +} + +/* line 33, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x4-form-form-item td { + border-top: 1px solid transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x4-form-trigger { + cursor: pointer; + overflow: hidden; + background-repeat: no-repeat; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x4-item-disabled .x4-form-trigger { + cursor: default; +} + +/* line 10, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x4-trigger-noedit { + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x4-form-trigger-wrap { + vertical-align: top; + border-collapse: separate; +} + +/* line 2, ../../../ext-theme-base/sass/src/form/field/Spinner.scss */ +.x4-form-spinner-up, +.x4-form-spinner-down { + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-datepicker { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-datepicker-inner { + table-layout: fixed; + width: 100%; + border-collapse: separate; +} + +/* line 11, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-datepicker-cell { + padding: 0; +} + +/* line 15, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-datepicker-header { + position: relative; + zoom: 1; +} + +/* line 20, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-datepicker-arrow { + position: absolute; + outline: none; + font-size: 0; +} + +/* line 26, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-datepicker-column-header { + padding: 0; +} + +/* line 30, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-datepicker-date { + display: block; + zoom: 1; + text-decoration: none; +} + +/* line 36, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-monthpicker { + position: absolute; + left: 0; + top: 0; +} + +/* line 42, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-monthpicker-body { + height: 100%; +} + +/* line 47, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-monthpicker-months, +.x4-monthpicker-years { + float: left; + height: 100%; +} + +/* line 52, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-monthpicker-item { + float: left; +} + +/* line 56, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-monthpicker-item-inner { + display: block; + text-decoration: none; +} + +/* line 61, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-monthpicker-yearnav-button-ct { + float: left; + text-align: center; +} + +/* line 66, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-monthpicker-yearnav-button { + display: inline-block; + outline: none; + font-size: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-monthpicker-buttons { + position: absolute; + bottom: 0; + width: 100%; +} +/* line 78, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x4-strict .x4-ie6 .x4-monthpicker-buttons { + bottom: -1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/File.scss */ +.x4-form-file-btn { + overflow: hidden; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/File.scss */ +.x4-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 29, ../../../ext-theme-base/sass/src/form/field/File.scss */ +.x4-rtl.x4-form-file-input { + right: auto; + left: -2px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Hidden.scss */ +.x4-form-item-hidden { + margin: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x4-color-picker-item { + float: left; + text-decoration: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x4-color-picker-item-inner { + display: block; + font-size: 1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-toolbar { + position: static !important; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x4-htmleditor-iframe { + display: block; + overflow: auto; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Fit.scss */ +.x4-fit-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x4-grid-row, +.x4-grid-data-row { + outline: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x4-grid-view { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x4-grid-table { + table-layout: fixed; + border-collapse: separate; +} + +/* line 16, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x4-grid-td { + overflow: hidden; + border-width: 0; + vertical-align: top; +} + +/* line 22, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x4-grid-cell-inner { + overflow: hidden; + white-space: nowrap; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x4-grid-resize-marker { + position: absolute; + z-index: 5; + top: 0; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + position: absolute; + top: 0; + line-height: 0; + font-size: 0; + overflow: hidden; + z-index: 20000; + background: no-repeat center top transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/header/Container.scss */ +.x4-grid-header-ct { + cursor: default; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-column-header { + position: absolute; + overflow: hidden; + background-repeat: repeat-x; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-column-header-inner { + zoom: 1; + white-space: nowrap; + position: relative; + overflow: hidden; +} + +/* line 14, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-column-header-text { + white-space: nowrap; + background-repeat: no-repeat; + zoom: 1; + display: inline-block; +} + +/* line 25, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-column-header-trigger { + display: none; + height: 100%; + background-repeat: no-repeat; + position: absolute; + right: 0; + top: 0; + z-index: 2; +} + +/* line 36, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-rtl.x4-column-header-trigger { + left: 0; + right: auto; +} + +/* line 43, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-column-header-over .x4-column-header-trigger, .x4-column-header-open .x4-column-header-trigger { + display: block; +} + +/* line 48, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-column-header-align-right { + text-align: right; +} + +/* line 53, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-rtl.x4-column-header-align-right { + text-align: left; +} + +/* line 58, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-column-header-align-left { + text-align: left; +} + +/* line 63, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-rtl.x4-column-header-align-left { + text-align: right; +} + +/* line 68, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x4-column-header-align-center { + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Action.scss */ +.x4-grid-cell-inner-action-col { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/CheckColumn.scss */ +.x4-grid-cell-inner-checkcolumn { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/RowNumberer.scss */ +.x4-row-numberer .x4-column-header-inner { + text-overflow: clip; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x4-grid-group, +.x4-grid-group-body, +.x4-grid-group-hd { + zoom: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x4-grid-group-hd { + white-space: nowrap; +} + +/* line 11, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x4-grid-row-body-hidden, .x4-grid-group-collapsed { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x4-grid-rowbody { + zoom: 1; +} + +/* line 5, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x4-grid-row-body-hidden { + display: none; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x4-grid-rowwrap .x4-grid-table { + border: 0; +} +/* line 6, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x4-grid-rowwrap .x4-grid-cell { + border-bottom: 0; + background-color: transparent; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-cb-wrap { + text-align: center; +} + +/* line 9, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-display-field { + margin: 0; + white-space: nowrap; + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor div.x4-form-action-col-field { + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor { + position: absolute; + overflow: visible; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor-buttons { + position: absolute; + white-space: nowrap; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowExpander.scss */ +.x4-grid-row-expander { + font-size: 0; + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x4-abs-layout-ct { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x4-abs-layout-item { + position: absolute !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x4-splitter { + font-size: 1px; +} + +/* line 5, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x4-splitter-horizontal { + cursor: e-resize; + cursor: row-resize; +} + +/* line 10, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x4-splitter-vertical { + cursor: e-resize; + cursor: col-resize; +} + +/* line 17, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x4-splitter-collapsed, +.x4-splitter-horizontal-noresize, +.x4-splitter-vertical-noresize { + cursor: default; +} + +/* line 21, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x4-splitter-active { + z-index: 4; +} + +/* line 25, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x4-collapse-el { + position: absolute; + background-repeat: no-repeat; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x4-border-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x4-border-layout-ct { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x4-border-region-slide-in { + z-index: 5; +} + +/* line 14, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x4-region-collapsed-placeholder { + z-index: 4; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x4-column { + float: left; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x4-rtl > .x4-column { + float: right; +} + +/* line 13, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x4-ie6 .x4-rtl .x4-column, .x4-quirks .x4-ie .x4-rtl .x4-column { + float: right; +} + +/* line 21, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x4-ie6 .x4-column { + display: inline; + /*prevent IE6 double-margin bug*/ +} + +/* line 25, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x4-quirks .x4-ie .x4-form-layout-table, .x4-quirks .x4-ie .x4-form-layout-table tbody tr.x4-form-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x4-form-layout-table { + border-collapse: separate; + border-spacing: 0 2px; +} + +/* line 9, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x4-ie6 .x4-form-layout-table { + border-collapse: collapse; + border-spacing: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x4-menu { + outline: none; +} + +/* line 5, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x4-menu-item { + white-space: nowrap; + overflow: hidden; +} + +/* line 14, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x4-menu-item-cmp .x4-field-label-cell { + vertical-align: middle; +} + +/* line 22, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x4-menu-icon-separator { + position: absolute; + top: 0px; + z-index: 0; + height: 100%; + overflow: hidden; +} +/* line 28, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x4-menu-plain .x4-menu-icon-separator { + display: none; +} + +/* line 33, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x4-menu-item-link { + text-decoration: none; + outline: 0; + zoom: 1; +} + +/* line 40, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x4-menu-item-text { + zoom: 1; +} + +/* line 47, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x4-menu-item-icon, +.x4-menu-item-icon-right, +.x4-menu-item-arrow { + position: absolute; + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/SplitterTracker.scss */ +.x4-resizable-overlay { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + display: none; + z-index: 200000; + background-color: #fff; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x4-slider { + outline: none; + zoom: 1; + position: relative; +} + +/* line 9, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x4-slider-inner { + position: relative; + left: 0; + top: 0; + overflow: visible; + zoom: 1; +} +/* line 17, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x4-slider-vert .x4-slider-inner { + background: repeat-y 0 0; +} + +/* line 23, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x4-slider-end { + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x4-slider-thumb { + position: absolute; + background: no-repeat 0 0; +} +/* line 31, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x4-slider-horz .x4-slider-thumb { + left: 0; +} +/* line 34, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x4-slider-vert .x4-slider-thumb { + bottom: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Tab.scss */ +a.x4-tab { + text-decoration: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Bar.scss */ +.x4-tab-bar { + position: relative; +} + +/* line 1, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x4-column-header-checkbox .x4-column-header-text { + display: block; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 7, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x4-grid-cell-row-checker { + vertical-align: middle; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab { + display: block; + white-space: nowrap; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-active { + z-index: 3; +} + +/* line 11, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-wrap { + display: block; + position: relative; +} + +/* line 16, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-button { + zoom: 1; + display: block; + outline: none; +} + +/* line 22, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-inner { + display: block; + text-align: center; + white-space: nowrap; + text-overflow: ellipsis; + -o-text-overflow: ellipsis; + overflow: hidden; + zoom: 1; +} + +/* line 32, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 42, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar { + z-index: 1; +} + +/* line 46, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar-body { + z-index: 2; + position: relative; +} + +/* line 51, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar-strip { + position: absolute; + line-height: 0; + font-size: 0; + z-index: 1; +} + +/* line 58, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar-horizontal .x4-tab-bar-strip { + width: 100%; + left: 0; +} + +/* line 63, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar-vertical .x4-tab-bar-strip { + height: 100%; + top: 0; +} + +/* line 68, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar-strip-top { + bottom: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar-strip-bottom { + top: 0; +} + +/* line 76, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar-strip-left { + right: 0; +} + +/* line 81, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-rtl.x4-tab-bar .x4-tab-bar-strip-left { + right: auto; + left: 0; +} + +/* line 87, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar-strip-right { + left: 0; +} + +/* line 92, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-rtl.x4-tab-bar .x4-tab-bar-strip-right { + left: auto; + right: 0; +} + +/* line 98, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-bar-plain { + background: transparent !important; +} + +/* line 102, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-icon-el { + position: absolute; + background-repeat: no-repeat; + top: 0; + left: 0; + right: auto; + bottom: 0; +} + +/* line 112, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-rtl.x4-tab-icon-el { + left: auto; + right: 0; +} + +/* line 118, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-close-btn { + display: block; + position: absolute; + font-size: 0; + line-height: 0; + background: no-repeat; +} + +/* line 126, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x4-tab-mc { + overflow: visible; +} + +/* line 3, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x4-autowidth-table .x4-grid-table { + table-layout: auto; + width: auto !important; +} + +/* line 8, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x4-tree-view { + overflow: hidden; +} + +/* line 13, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x4-tree-elbow-img, +.x4-tree-icon { + background-repeat: no-repeat; + background-position: 0 center; + vertical-align: top; +} + +/* line 19, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x4-tree-checkbox { + border: 0; + padding: 0; + vertical-align: top; + position: relative; + background-color: transparent; +} + +/* line 27, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x4-tree-animator-wrap { + overflow: hidden; +} + +/* line 31, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x4-tree-node-text { + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x4-surface { + display: -moz-inline-stack; + display: inline-block; + vertical-align: middle; + *vertical-align: auto; + zoom: 1; + *display: inline; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.rvml { + behavior: url(#default#VML); +} + +/* line 10, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x4-surface tspan { + user-select: none; + -o-user-select: none; + -ms-user-select: none; + -moz-user-select: -moz-none; + -webkit-user-select: none; + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x4-vml-sprite { + position: absolute; + left: 0; + top: 0; + width: 1px; + height: 1px; +} + +/* line 22, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x4-vml-group { + position: absolute; + left: 0; + top: 0; + width: 1000px; + height: 1000px; +} + +/* line 30, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x4-vml-measure-span { + position: absolute; + left: -9999em; + top: -9999em; + padding: 0; + margin: 0; + display: inline; +} + +/* line 39, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x4-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 47, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x4-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 55, ../../../ext-theme-base/sass/src/draw/Component.scss */ +svg, vml { + overflow: hidden; +} + +/* including package ext-theme-neutral */ +/* line 1, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x4-body { + color: black; + font-size: 12px; + font-family: tahoma, arial, verdana, sans-serif; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x4-animating-size, +.x4-collapsed { + overflow: hidden!important; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/Editor.scss */ +.x4-editor .x4-form-item-body { + padding-bottom: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x4-focus-element { + position: absolute; + top: -10px; + left: -10px; + width: 0px; + height: 0px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x4-focus-frame { + position: absolute; + left: 0px; + top: 0px; + z-index: 100000000; + width: 0px; + height: 0px; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x4-focus-frame-top, +.x4-focus-frame-bottom, +.x4-focus-frame-left, +.x4-focus-frame-right { + position: absolute; + top: 0px; + left: 0px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x4-focus-frame-top, +.x4-focus-frame-bottom { + border-top: solid 2px #15428b; + height: 2px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x4-focus-frame-left, +.x4-focus-frame-right { + border-left: solid 2px #15428b; + width: 2px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x4-mask { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + background: #cccccc; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x4-mask-msg { + padding: 2px; + border-style: solid; + border-width: 1px; + border-color: #99bce8; + background-image: none; + background-color: #dfe9f6; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x4-mask-msg-inner { + padding: 0 5px; + border-style: solid; + border-width: 1px; + border-color: #a3bad9; + background-color: #eeeeee; + color: #222222; + font: normal 11px tahoma, arial, verdana, sans-serif; +} + +/* line 41, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x4-mask-msg-text { + padding: 5px 5px 5px 20px; + background-image: url(images/grid/loading.gif); + background-repeat: no-repeat; + background-position: 0 center; +} + +/* line 52, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x4-rtl.x4-mask-msg-text { + padding: 5px 20px 5px 5px; + background-position: right center; +} + +/** + * Creates a visual theme for an Ext.ProgressBar + * + * @param {string} $ui-label + * 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 67, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x4-progress-default { + background-color: #e0e8f3; + border-width: 1px; + height: 20px; + border-color: #6594cf; + /**/ + /**/ + /* */ +} +/* line 72, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x4-content-box .x4-progress-default { + height: 18px; +} +/* line 84, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x4-progress-default .x4-progress-bar-default { + background-image: none; + background-color: #73a3e0; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b2ccee), color-stop(50%, #88b1e5), color-stop(51%, #73a3e0), color-stop(100%, #5e96db)); + background-image: -webkit-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); + background-image: -moz-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); + background-image: -o-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); + background-image: linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); +} +/* line 92, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x4-nlg .x4-progress-default .x4-progress-bar-default { + background: repeat-x; + background-image: url(images/progress/progress-default-bg.gif); +} +/* line 99, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x4-progress-default .x4-progress-text { + color: white; + font-weight: bold; + font-size: 11px; + text-align: center; + line-height: 18px; +} +/* line 107, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x4-progress-default .x4-progress-text-back { + color: #396295; + line-height: 18px; +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-progress-default .x4-progress-bar-default:after { + display: none; + content: "x-slicer:bg:url(images/progress/progress-default-bg.gif)"; +} + +/** + * Creates a visual theme for a 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-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-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-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-disabled + * The text color of the button when the button is disabled + * + * @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-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-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-disabled + * The font-family of the button when the button is disabled + * + * @param {number} $icon-size + * The size of the button icon + * + * @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=false] + * 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 + */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small { + border-color: #d1d1d1; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small { + -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-image: none; + background-color: white; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(48%, #f9f9f9), color-stop(52%, #e2e2e2), color-stop(100%, #e7e7e7)); + background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-mc { + background-image: url(images/btn/btn-default-small-fbg.gif); + background-position: 0 top; + background-color: white; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-btn-default-small { + background-image: url(images/btn/btn-default-small-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-btn-default-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-btn-default-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-tr, +.x4-btn-default-small-br, +.x4-btn-default-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-tl, +.x4-btn-default-small-bl, +.x4-btn-default-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-tl, +.x4-btn-default-small-bl, +.x4-btn-default-small-tr, +.x4-btn-default-small-br, +.x4-btn-default-small-tc, +.x4-btn-default-small-bc, +.x4-btn-default-small-ml, +.x4-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-ml, +.x4-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-small-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-btn-default-small-tl, +.x4-strict .x4-ie7 .x4-btn-default-small-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-small:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small .x4-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 4px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small .x4-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small .x4-btn-arrow-right { + padding-right: 12px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small .x4-rtl.x4-btn-arrow-right { + padding-right: 0; + padding-left: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small .x4-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small .x4-btn-glyph { + font-size: 16px; + line-height: 16px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie8m .x4-btn-default-small .x4-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: #f7f7f7; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf)); + background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon .x4-btn-button, +.x4-btn-default-small-noicon .x4-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon .x4-btn-inner, +.x4-btn-default-small-noicon .x4-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-small-noicon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-small-icon-text-left .x4-btn-arrow-right .x4-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon .x4-btn-arrow-right .x4-rtl.x4-btn-inner, +.x4-btn-default-small-noicon .x4-btn-arrow-right .x4-rtl.x4-btn-inner, +.x4-btn-default-small-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner { + padding-right: 4px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon .x4-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon .x4-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-left .x4-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-left .x4-btn-inner { + line-height: 16px; + padding-left: 20px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-left .x4-rtl.x4-btn-inner { + padding-left: 4px; + padding-right: 20px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner { + padding-right: 20px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-left .x4-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-small-icon-text-left .x4-btn-icon-el, .x4-quirks .x4-btn-default-small-icon-text-left .x4-btn-icon-el { + height: 16px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-left .x4-rtl.x4-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-right .x4-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-right .x4-btn-inner { + line-height: 16px; + padding-right: 20px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-right .x4-rtl.x4-btn-inner { + padding-right: 4px; + padding-left: 20px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-right .x4-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-small-icon-text-right .x4-btn-icon-el, .x4-quirks .x4-btn-default-small-icon-text-right .x4-btn-icon-el { + height: 16px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-right .x4-rtl.x4-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-top .x4-btn-inner { + padding-top: 20px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-top .x4-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-small-icon-text-top .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-small-icon-text-top .x4-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-bottom .x4-btn-inner { + padding-bottom: 20px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-icon-text-bottom .x4-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-small-icon-text-bottom .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-small-icon-text-bottom .x4-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-over { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-focus { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-menu-active, +.x4-btn-default-small-pressed { + border-color: #9ebae1; + background-image: none; + background-color: #b6cbe4; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5)); + background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-over .x4-frame-tl, +.x4-btn-default-small-over .x4-frame-bl, +.x4-btn-default-small-over .x4-frame-tr, +.x4-btn-default-small-over .x4-frame-br, +.x4-btn-default-small-over .x4-frame-tc, +.x4-btn-default-small-over .x4-frame-bc { + background-image: url(images/btn/btn-default-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-over .x4-frame-ml, +.x4-btn-default-small-over .x4-frame-mr { + background-image: url(images/btn/btn-default-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-over .x4-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-focus .x4-frame-tl, +.x4-btn-default-small-focus .x4-frame-bl, +.x4-btn-default-small-focus .x4-frame-tr, +.x4-btn-default-small-focus .x4-frame-br, +.x4-btn-default-small-focus .x4-frame-tc, +.x4-btn-default-small-focus .x4-frame-bc { + background-image: url(images/btn/btn-default-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-focus .x4-frame-ml, +.x4-btn-default-small-focus .x4-frame-mr { + background-image: url(images/btn/btn-default-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-focus .x4-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-menu-active .x4-frame-tl, +.x4-btn-default-small-menu-active .x4-frame-bl, +.x4-btn-default-small-menu-active .x4-frame-tr, +.x4-btn-default-small-menu-active .x4-frame-br, +.x4-btn-default-small-menu-active .x4-frame-tc, +.x4-btn-default-small-menu-active .x4-frame-bc, +.x4-btn-default-small-pressed .x4-frame-tl, +.x4-btn-default-small-pressed .x4-frame-bl, +.x4-btn-default-small-pressed .x4-frame-tr, +.x4-btn-default-small-pressed .x4-frame-br, +.x4-btn-default-small-pressed .x4-frame-tc, +.x4-btn-default-small-pressed .x4-frame-bc { + background-image: url(images/btn/btn-default-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-menu-active .x4-frame-ml, +.x4-btn-default-small-menu-active .x4-frame-mr, +.x4-btn-default-small-pressed .x4-frame-ml, +.x4-btn-default-small-pressed .x4-frame-mr { + background-image: url(images/btn/btn-default-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-menu-active .x4-frame-mc, +.x4-btn-default-small-pressed .x4-frame-mc { + background-color: #b6cbe4; + background-image: url(images/btn/btn-default-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-disabled .x4-frame-tl, +.x4-btn-default-small-disabled .x4-frame-bl, +.x4-btn-default-small-disabled .x4-frame-tr, +.x4-btn-default-small-disabled .x4-frame-br, +.x4-btn-default-small-disabled .x4-frame-tc, +.x4-btn-default-small-disabled .x4-frame-bc { + background-image: url(images/btn/btn-default-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-disabled .x4-frame-ml, +.x4-btn-default-small-disabled .x4-frame-mr { + background-image: url(images/btn/btn-default-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-disabled .x4-frame-mc { + background-color: #f7f7f7; + background-image: url(images/btn/btn-default-small-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-small-over { + background-image: url(images/btn/btn-default-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-small-focus { + background-image: url(images/btn/btn-default-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-small-menu-active, +.x4-nlg .x4-btn-default-small-pressed { + background-image: url(images/btn/btn-default-small-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-small-disabled { + background-image: url(images/btn/btn-default-small-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nbr .x4-btn-default-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small .x4-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 14px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small .x4-rtl.x4-btn-split-right { + background-image: url(images/button/s-arrow-rtl.gif); + padding-right: 0; + padding-left: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-over .x4-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-over .x4-rtl.x4-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-over .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-small-disabled .x4-btn-inner, +.x4-btn-default-small-disabled .x4-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium { + border-color: #d1d1d1; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: white; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(48%, #f9f9f9), color-stop(52%, #e2e2e2), color-stop(100%, #e7e7e7)); + background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-mc { + background-image: url(images/btn/btn-default-medium-fbg.gif); + background-position: 0 top; + background-color: white; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-btn-default-medium { + background-image: url(images/btn/btn-default-medium-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-btn-default-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-btn-default-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-tr, +.x4-btn-default-medium-br, +.x4-btn-default-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-tl, +.x4-btn-default-medium-bl, +.x4-btn-default-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-tl, +.x4-btn-default-medium-bl, +.x4-btn-default-medium-tr, +.x4-btn-default-medium-br, +.x4-btn-default-medium-tc, +.x4-btn-default-medium-bc, +.x4-btn-default-medium-ml, +.x4-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-ml, +.x4-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-btn-default-medium-tl, +.x4-strict .x4-ie7 .x4-btn-default-medium-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-medium:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium .x4-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium .x4-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium .x4-btn-arrow-right { + padding-right: 12px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium .x4-rtl.x4-btn-arrow-right { + padding-right: 0; + padding-left: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium .x4-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium .x4-btn-glyph { + font-size: 24px; + line-height: 24px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie8m .x4-btn-default-medium .x4-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: #f7f7f7; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf)); + background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon .x4-btn-button, +.x4-btn-default-medium-noicon .x4-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon .x4-btn-inner, +.x4-btn-default-medium-noicon .x4-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-medium-noicon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-medium-icon-text-left .x4-btn-arrow-right .x4-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon .x4-btn-arrow-right .x4-rtl.x4-btn-inner, +.x4-btn-default-medium-noicon .x4-btn-arrow-right .x4-rtl.x4-btn-inner, +.x4-btn-default-medium-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner { + padding-right: 3px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon .x4-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon .x4-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-left .x4-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-left .x4-btn-inner { + line-height: 24px; + padding-left: 28px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-left .x4-rtl.x4-btn-inner { + padding-left: 3px; + padding-right: 28px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner { + padding-right: 28px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-left .x4-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-medium-icon-text-left .x4-btn-icon-el, .x4-quirks .x4-btn-default-medium-icon-text-left .x4-btn-icon-el { + height: 24px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-left .x4-rtl.x4-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-right .x4-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-right .x4-btn-inner { + line-height: 24px; + padding-right: 28px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-right .x4-rtl.x4-btn-inner { + padding-right: 3px; + padding-left: 28px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-right .x4-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-medium-icon-text-right .x4-btn-icon-el, .x4-quirks .x4-btn-default-medium-icon-text-right .x4-btn-icon-el { + height: 24px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-right .x4-rtl.x4-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-top .x4-btn-inner { + padding-top: 28px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-top .x4-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-medium-icon-text-top .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-medium-icon-text-top .x4-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-bottom .x4-btn-inner { + padding-bottom: 28px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-icon-text-bottom .x4-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-medium-icon-text-bottom .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-medium-icon-text-bottom .x4-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-over { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-focus { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-menu-active, +.x4-btn-default-medium-pressed { + border-color: #9ebae1; + background-image: none; + background-color: #b6cbe4; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5)); + background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-over .x4-frame-tl, +.x4-btn-default-medium-over .x4-frame-bl, +.x4-btn-default-medium-over .x4-frame-tr, +.x4-btn-default-medium-over .x4-frame-br, +.x4-btn-default-medium-over .x4-frame-tc, +.x4-btn-default-medium-over .x4-frame-bc { + background-image: url(images/btn/btn-default-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-over .x4-frame-ml, +.x4-btn-default-medium-over .x4-frame-mr { + background-image: url(images/btn/btn-default-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-over .x4-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-focus .x4-frame-tl, +.x4-btn-default-medium-focus .x4-frame-bl, +.x4-btn-default-medium-focus .x4-frame-tr, +.x4-btn-default-medium-focus .x4-frame-br, +.x4-btn-default-medium-focus .x4-frame-tc, +.x4-btn-default-medium-focus .x4-frame-bc { + background-image: url(images/btn/btn-default-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-focus .x4-frame-ml, +.x4-btn-default-medium-focus .x4-frame-mr { + background-image: url(images/btn/btn-default-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-focus .x4-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-menu-active .x4-frame-tl, +.x4-btn-default-medium-menu-active .x4-frame-bl, +.x4-btn-default-medium-menu-active .x4-frame-tr, +.x4-btn-default-medium-menu-active .x4-frame-br, +.x4-btn-default-medium-menu-active .x4-frame-tc, +.x4-btn-default-medium-menu-active .x4-frame-bc, +.x4-btn-default-medium-pressed .x4-frame-tl, +.x4-btn-default-medium-pressed .x4-frame-bl, +.x4-btn-default-medium-pressed .x4-frame-tr, +.x4-btn-default-medium-pressed .x4-frame-br, +.x4-btn-default-medium-pressed .x4-frame-tc, +.x4-btn-default-medium-pressed .x4-frame-bc { + background-image: url(images/btn/btn-default-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-menu-active .x4-frame-ml, +.x4-btn-default-medium-menu-active .x4-frame-mr, +.x4-btn-default-medium-pressed .x4-frame-ml, +.x4-btn-default-medium-pressed .x4-frame-mr { + background-image: url(images/btn/btn-default-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-menu-active .x4-frame-mc, +.x4-btn-default-medium-pressed .x4-frame-mc { + background-color: #b6cbe4; + background-image: url(images/btn/btn-default-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-disabled .x4-frame-tl, +.x4-btn-default-medium-disabled .x4-frame-bl, +.x4-btn-default-medium-disabled .x4-frame-tr, +.x4-btn-default-medium-disabled .x4-frame-br, +.x4-btn-default-medium-disabled .x4-frame-tc, +.x4-btn-default-medium-disabled .x4-frame-bc { + background-image: url(images/btn/btn-default-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-disabled .x4-frame-ml, +.x4-btn-default-medium-disabled .x4-frame-mr { + background-image: url(images/btn/btn-default-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-disabled .x4-frame-mc { + background-color: #f7f7f7; + background-image: url(images/btn/btn-default-medium-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-medium-over { + background-image: url(images/btn/btn-default-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-medium-focus { + background-image: url(images/btn/btn-default-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-medium-menu-active, +.x4-nlg .x4-btn-default-medium-pressed { + background-image: url(images/btn/btn-default-medium-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-medium-disabled { + background-image: url(images/btn/btn-default-medium-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nbr .x4-btn-default-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium .x4-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 14px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium .x4-rtl.x4-btn-split-right { + background-image: url(images/button/s-arrow-rtl.gif); + padding-right: 0; + padding-left: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-over .x4-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-over .x4-rtl.x4-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-over .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-medium-disabled .x4-btn-inner, +.x4-btn-default-medium-disabled .x4-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large { + border-color: #d1d1d1; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: white; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(48%, #f9f9f9), color-stop(52%, #e2e2e2), color-stop(100%, #e7e7e7)); + background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-mc { + background-image: url(images/btn/btn-default-large-fbg.gif); + background-position: 0 top; + background-color: white; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-btn-default-large { + background-image: url(images/btn/btn-default-large-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-btn-default-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-btn-default-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-tr, +.x4-btn-default-large-br, +.x4-btn-default-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-tl, +.x4-btn-default-large-bl, +.x4-btn-default-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-tl, +.x4-btn-default-large-bl, +.x4-btn-default-large-tr, +.x4-btn-default-large-br, +.x4-btn-default-large-tc, +.x4-btn-default-large-bc, +.x4-btn-default-large-ml, +.x4-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-ml, +.x4-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-btn-default-large-tl, +.x4-strict .x4-ie7 .x4-btn-default-large-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-large:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large .x4-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large .x4-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large .x4-btn-arrow-right { + padding-right: 12px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large .x4-rtl.x4-btn-arrow-right { + padding-right: 0; + padding-left: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large .x4-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large .x4-btn-glyph { + font-size: 32px; + line-height: 32px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie8m .x4-btn-default-large .x4-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: #f7f7f7; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf)); + background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon .x4-btn-button, +.x4-btn-default-large-noicon .x4-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon .x4-btn-inner, +.x4-btn-default-large-noicon .x4-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-large-noicon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-large-icon-text-left .x4-btn-arrow-right .x4-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon .x4-btn-arrow-right .x4-rtl.x4-btn-inner, +.x4-btn-default-large-noicon .x4-btn-arrow-right .x4-rtl.x4-btn-inner, +.x4-btn-default-large-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner { + padding-right: 3px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon .x4-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon .x4-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-left .x4-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-left .x4-btn-inner { + line-height: 32px; + padding-left: 36px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-left .x4-rtl.x4-btn-inner { + padding-left: 3px; + padding-right: 36px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner { + padding-right: 36px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-left .x4-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-large-icon-text-left .x4-btn-icon-el, .x4-quirks .x4-btn-default-large-icon-text-left .x4-btn-icon-el { + height: 32px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-left .x4-rtl.x4-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-right .x4-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-right .x4-btn-inner { + line-height: 32px; + padding-right: 36px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-right .x4-rtl.x4-btn-inner { + padding-right: 3px; + padding-left: 36px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-right .x4-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-large-icon-text-right .x4-btn-icon-el, .x4-quirks .x4-btn-default-large-icon-text-right .x4-btn-icon-el { + height: 32px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-right .x4-rtl.x4-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-top .x4-btn-inner { + padding-top: 36px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-top .x4-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-large-icon-text-top .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-large-icon-text-top .x4-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-bottom .x4-btn-inner { + padding-bottom: 36px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-icon-text-bottom .x4-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-large-icon-text-bottom .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-large-icon-text-bottom .x4-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-over { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-focus { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-menu-active, +.x4-btn-default-large-pressed { + border-color: #9ebae1; + background-image: none; + background-color: #b6cbe4; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5)); + background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-over .x4-frame-tl, +.x4-btn-default-large-over .x4-frame-bl, +.x4-btn-default-large-over .x4-frame-tr, +.x4-btn-default-large-over .x4-frame-br, +.x4-btn-default-large-over .x4-frame-tc, +.x4-btn-default-large-over .x4-frame-bc { + background-image: url(images/btn/btn-default-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-over .x4-frame-ml, +.x4-btn-default-large-over .x4-frame-mr { + background-image: url(images/btn/btn-default-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-over .x4-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-focus .x4-frame-tl, +.x4-btn-default-large-focus .x4-frame-bl, +.x4-btn-default-large-focus .x4-frame-tr, +.x4-btn-default-large-focus .x4-frame-br, +.x4-btn-default-large-focus .x4-frame-tc, +.x4-btn-default-large-focus .x4-frame-bc { + background-image: url(images/btn/btn-default-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-focus .x4-frame-ml, +.x4-btn-default-large-focus .x4-frame-mr { + background-image: url(images/btn/btn-default-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-focus .x4-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-menu-active .x4-frame-tl, +.x4-btn-default-large-menu-active .x4-frame-bl, +.x4-btn-default-large-menu-active .x4-frame-tr, +.x4-btn-default-large-menu-active .x4-frame-br, +.x4-btn-default-large-menu-active .x4-frame-tc, +.x4-btn-default-large-menu-active .x4-frame-bc, +.x4-btn-default-large-pressed .x4-frame-tl, +.x4-btn-default-large-pressed .x4-frame-bl, +.x4-btn-default-large-pressed .x4-frame-tr, +.x4-btn-default-large-pressed .x4-frame-br, +.x4-btn-default-large-pressed .x4-frame-tc, +.x4-btn-default-large-pressed .x4-frame-bc { + background-image: url(images/btn/btn-default-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-menu-active .x4-frame-ml, +.x4-btn-default-large-menu-active .x4-frame-mr, +.x4-btn-default-large-pressed .x4-frame-ml, +.x4-btn-default-large-pressed .x4-frame-mr { + background-image: url(images/btn/btn-default-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-menu-active .x4-frame-mc, +.x4-btn-default-large-pressed .x4-frame-mc { + background-color: #b6cbe4; + background-image: url(images/btn/btn-default-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-disabled .x4-frame-tl, +.x4-btn-default-large-disabled .x4-frame-bl, +.x4-btn-default-large-disabled .x4-frame-tr, +.x4-btn-default-large-disabled .x4-frame-br, +.x4-btn-default-large-disabled .x4-frame-tc, +.x4-btn-default-large-disabled .x4-frame-bc { + background-image: url(images/btn/btn-default-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-disabled .x4-frame-ml, +.x4-btn-default-large-disabled .x4-frame-mr { + background-image: url(images/btn/btn-default-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-disabled .x4-frame-mc { + background-color: #f7f7f7; + background-image: url(images/btn/btn-default-large-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-large-over { + background-image: url(images/btn/btn-default-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-large-focus { + background-image: url(images/btn/btn-default-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-large-menu-active, +.x4-nlg .x4-btn-default-large-pressed { + background-image: url(images/btn/btn-default-large-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-large-disabled { + background-image: url(images/btn/btn-default-large-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nbr .x4-btn-default-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large .x4-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 14px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large .x4-rtl.x4-btn-split-right { + background-image: url(images/button/s-arrow-rtl.gif); + padding-right: 0; + padding-left: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-over .x4-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-over .x4-rtl.x4-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-over .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-large-disabled .x4-btn-inner, +.x4-btn-default-large-disabled .x4-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small { + border-color: transparent; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small { + -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: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-btn-default-toolbar-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-btn-default-toolbar-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-tr, +.x4-btn-default-toolbar-small-br, +.x4-btn-default-toolbar-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-tl, +.x4-btn-default-toolbar-small-bl, +.x4-btn-default-toolbar-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-tl, +.x4-btn-default-toolbar-small-bl, +.x4-btn-default-toolbar-small-tr, +.x4-btn-default-toolbar-small-br, +.x4-btn-default-toolbar-small-tc, +.x4-btn-default-toolbar-small-bc, +.x4-btn-default-toolbar-small-ml, +.x4-btn-default-toolbar-small-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-ml, +.x4-btn-default-toolbar-small-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-small-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-btn-default-toolbar-small-tl, +.x4-strict .x4-ie7 .x4-btn-default-toolbar-small-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small .x4-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 4px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small .x4-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small .x4-btn-arrow-right { + padding-right: 12px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small .x4-rtl.x4-btn-arrow-right { + padding-right: 0; + padding-left: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small .x4-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small .x4-btn-glyph { + font-size: 16px; + line-height: 16px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie8m .x4-btn-default-toolbar-small .x4-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: transparent; +} +/* line 317, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-disabled .x4-btn-inner { + color: #8c8c8c; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon .x4-btn-button, +.x4-btn-default-toolbar-small-noicon .x4-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon .x4-btn-inner, +.x4-btn-default-toolbar-small-noicon .x4-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-toolbar-small-noicon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-toolbar-small-icon-text-left .x4-btn-arrow-right .x4-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon .x4-btn-arrow-right .x4-rtl.x4-btn-inner, +.x4-btn-default-toolbar-small-noicon .x4-btn-arrow-right .x4-rtl.x4-btn-inner, +.x4-btn-default-toolbar-small-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner { + padding-right: 4px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon .x4-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon .x4-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-left .x4-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-left .x4-btn-inner { + line-height: 16px; + padding-left: 20px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-left .x4-rtl.x4-btn-inner { + padding-left: 4px; + padding-right: 20px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner { + padding-right: 20px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-left .x4-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-small-icon-text-left .x4-btn-icon-el, .x4-quirks .x4-btn-default-toolbar-small-icon-text-left .x4-btn-icon-el { + height: 16px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-left .x4-rtl.x4-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-right .x4-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-right .x4-btn-inner { + line-height: 16px; + padding-right: 20px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-right .x4-rtl.x4-btn-inner { + padding-right: 4px; + padding-left: 20px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-right .x4-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-small-icon-text-right .x4-btn-icon-el, .x4-quirks .x4-btn-default-toolbar-small-icon-text-right .x4-btn-icon-el { + height: 16px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-right .x4-rtl.x4-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-top .x4-btn-inner { + padding-top: 20px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-top .x4-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-small-icon-text-top .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-toolbar-small-icon-text-top .x4-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-bottom .x4-btn-inner { + padding-bottom: 20px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-icon-text-bottom .x4-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-small-icon-text-bottom .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-toolbar-small-icon-text-bottom .x4-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-over { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-focus { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-menu-active, +.x4-btn-default-toolbar-small-pressed { + border-color: #7a9ac4; + background-image: none; + background-color: #bccfe5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5)); + background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-over .x4-frame-tl, +.x4-btn-default-toolbar-small-over .x4-frame-bl, +.x4-btn-default-toolbar-small-over .x4-frame-tr, +.x4-btn-default-toolbar-small-over .x4-frame-br, +.x4-btn-default-toolbar-small-over .x4-frame-tc, +.x4-btn-default-toolbar-small-over .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-over .x4-frame-ml, +.x4-btn-default-toolbar-small-over .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-over .x4-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-focus .x4-frame-tl, +.x4-btn-default-toolbar-small-focus .x4-frame-bl, +.x4-btn-default-toolbar-small-focus .x4-frame-tr, +.x4-btn-default-toolbar-small-focus .x4-frame-br, +.x4-btn-default-toolbar-small-focus .x4-frame-tc, +.x4-btn-default-toolbar-small-focus .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-focus .x4-frame-ml, +.x4-btn-default-toolbar-small-focus .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-focus .x4-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-menu-active .x4-frame-tl, +.x4-btn-default-toolbar-small-menu-active .x4-frame-bl, +.x4-btn-default-toolbar-small-menu-active .x4-frame-tr, +.x4-btn-default-toolbar-small-menu-active .x4-frame-br, +.x4-btn-default-toolbar-small-menu-active .x4-frame-tc, +.x4-btn-default-toolbar-small-menu-active .x4-frame-bc, +.x4-btn-default-toolbar-small-pressed .x4-frame-tl, +.x4-btn-default-toolbar-small-pressed .x4-frame-bl, +.x4-btn-default-toolbar-small-pressed .x4-frame-tr, +.x4-btn-default-toolbar-small-pressed .x4-frame-br, +.x4-btn-default-toolbar-small-pressed .x4-frame-tc, +.x4-btn-default-toolbar-small-pressed .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-menu-active .x4-frame-ml, +.x4-btn-default-toolbar-small-menu-active .x4-frame-mr, +.x4-btn-default-toolbar-small-pressed .x4-frame-ml, +.x4-btn-default-toolbar-small-pressed .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-menu-active .x4-frame-mc, +.x4-btn-default-toolbar-small-pressed .x4-frame-mc { + background-color: #bccfe5; + background-image: url(images/btn/btn-default-toolbar-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-disabled .x4-frame-tl, +.x4-btn-default-toolbar-small-disabled .x4-frame-bl, +.x4-btn-default-toolbar-small-disabled .x4-frame-tr, +.x4-btn-default-toolbar-small-disabled .x4-frame-br, +.x4-btn-default-toolbar-small-disabled .x4-frame-tc, +.x4-btn-default-toolbar-small-disabled .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-disabled .x4-frame-ml, +.x4-btn-default-toolbar-small-disabled .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-disabled .x4-frame-mc { + background-color: transparent; +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-toolbar-small-over { + background-image: url(images/btn/btn-default-toolbar-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-toolbar-small-focus { + background-image: url(images/btn/btn-default-toolbar-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-toolbar-small-menu-active, +.x4-nlg .x4-btn-default-toolbar-small-pressed { + background-image: url(images/btn/btn-default-toolbar-small-pressed-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nbr .x4-btn-default-toolbar-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small .x4-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 14px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small .x4-rtl.x4-btn-split-right { + background-image: url(images/button/s-arrow-noline-rtl.gif); + padding-right: 0; + padding-left: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-over .x4-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-over .x4-rtl.x4-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-over .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-small-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium { + border-color: transparent; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-btn-default-toolbar-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-btn-default-toolbar-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-tr, +.x4-btn-default-toolbar-medium-br, +.x4-btn-default-toolbar-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-tl, +.x4-btn-default-toolbar-medium-bl, +.x4-btn-default-toolbar-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-tl, +.x4-btn-default-toolbar-medium-bl, +.x4-btn-default-toolbar-medium-tr, +.x4-btn-default-toolbar-medium-br, +.x4-btn-default-toolbar-medium-tc, +.x4-btn-default-toolbar-medium-bc, +.x4-btn-default-toolbar-medium-ml, +.x4-btn-default-toolbar-medium-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-ml, +.x4-btn-default-toolbar-medium-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-btn-default-toolbar-medium-tl, +.x4-strict .x4-ie7 .x4-btn-default-toolbar-medium-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium .x4-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium .x4-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium .x4-btn-arrow-right { + padding-right: 12px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium .x4-rtl.x4-btn-arrow-right { + padding-right: 0; + padding-left: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium .x4-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium .x4-btn-glyph { + font-size: 24px; + line-height: 24px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie8m .x4-btn-default-toolbar-medium .x4-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: transparent; +} +/* line 317, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-disabled .x4-btn-inner { + color: #8c8c8c; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon .x4-btn-button, +.x4-btn-default-toolbar-medium-noicon .x4-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon .x4-btn-inner, +.x4-btn-default-toolbar-medium-noicon .x4-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-toolbar-medium-noicon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-arrow-right .x4-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon .x4-btn-arrow-right .x4-rtl.x4-btn-inner, +.x4-btn-default-toolbar-medium-noicon .x4-btn-arrow-right .x4-rtl.x4-btn-inner, +.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner { + padding-right: 3px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon .x4-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon .x4-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-inner { + line-height: 24px; + padding-left: 28px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-left .x4-rtl.x4-btn-inner { + padding-left: 3px; + padding-right: 28px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner { + padding-right: 28px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-medium-icon-text-left .x4-btn-icon-el, .x4-quirks .x4-btn-default-toolbar-medium-icon-text-left .x4-btn-icon-el { + height: 24px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-left .x4-rtl.x4-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-right .x4-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-right .x4-btn-inner { + line-height: 24px; + padding-right: 28px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-right .x4-rtl.x4-btn-inner { + padding-right: 3px; + padding-left: 28px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-right .x4-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-medium-icon-text-right .x4-btn-icon-el, .x4-quirks .x4-btn-default-toolbar-medium-icon-text-right .x4-btn-icon-el { + height: 24px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-right .x4-rtl.x4-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-top .x4-btn-inner { + padding-top: 28px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-top .x4-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-medium-icon-text-top .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-toolbar-medium-icon-text-top .x4-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-bottom .x4-btn-inner { + padding-bottom: 28px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-icon-text-bottom .x4-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-medium-icon-text-bottom .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-toolbar-medium-icon-text-bottom .x4-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-over { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-focus { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-menu-active, +.x4-btn-default-toolbar-medium-pressed { + border-color: #7a9ac4; + background-image: none; + background-color: #bccfe5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5)); + background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-over .x4-frame-tl, +.x4-btn-default-toolbar-medium-over .x4-frame-bl, +.x4-btn-default-toolbar-medium-over .x4-frame-tr, +.x4-btn-default-toolbar-medium-over .x4-frame-br, +.x4-btn-default-toolbar-medium-over .x4-frame-tc, +.x4-btn-default-toolbar-medium-over .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-over .x4-frame-ml, +.x4-btn-default-toolbar-medium-over .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-over .x4-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-focus .x4-frame-tl, +.x4-btn-default-toolbar-medium-focus .x4-frame-bl, +.x4-btn-default-toolbar-medium-focus .x4-frame-tr, +.x4-btn-default-toolbar-medium-focus .x4-frame-br, +.x4-btn-default-toolbar-medium-focus .x4-frame-tc, +.x4-btn-default-toolbar-medium-focus .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-focus .x4-frame-ml, +.x4-btn-default-toolbar-medium-focus .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-focus .x4-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-menu-active .x4-frame-tl, +.x4-btn-default-toolbar-medium-menu-active .x4-frame-bl, +.x4-btn-default-toolbar-medium-menu-active .x4-frame-tr, +.x4-btn-default-toolbar-medium-menu-active .x4-frame-br, +.x4-btn-default-toolbar-medium-menu-active .x4-frame-tc, +.x4-btn-default-toolbar-medium-menu-active .x4-frame-bc, +.x4-btn-default-toolbar-medium-pressed .x4-frame-tl, +.x4-btn-default-toolbar-medium-pressed .x4-frame-bl, +.x4-btn-default-toolbar-medium-pressed .x4-frame-tr, +.x4-btn-default-toolbar-medium-pressed .x4-frame-br, +.x4-btn-default-toolbar-medium-pressed .x4-frame-tc, +.x4-btn-default-toolbar-medium-pressed .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-menu-active .x4-frame-ml, +.x4-btn-default-toolbar-medium-menu-active .x4-frame-mr, +.x4-btn-default-toolbar-medium-pressed .x4-frame-ml, +.x4-btn-default-toolbar-medium-pressed .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-menu-active .x4-frame-mc, +.x4-btn-default-toolbar-medium-pressed .x4-frame-mc { + background-color: #bccfe5; + background-image: url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-disabled .x4-frame-tl, +.x4-btn-default-toolbar-medium-disabled .x4-frame-bl, +.x4-btn-default-toolbar-medium-disabled .x4-frame-tr, +.x4-btn-default-toolbar-medium-disabled .x4-frame-br, +.x4-btn-default-toolbar-medium-disabled .x4-frame-tc, +.x4-btn-default-toolbar-medium-disabled .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-disabled .x4-frame-ml, +.x4-btn-default-toolbar-medium-disabled .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-disabled .x4-frame-mc { + background-color: transparent; +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-toolbar-medium-over { + background-image: url(images/btn/btn-default-toolbar-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-toolbar-medium-focus { + background-image: url(images/btn/btn-default-toolbar-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-toolbar-medium-menu-active, +.x4-nlg .x4-btn-default-toolbar-medium-pressed { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nbr .x4-btn-default-toolbar-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium .x4-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 14px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium .x4-rtl.x4-btn-split-right { + background-image: url(images/button/s-arrow-noline-rtl.gif); + padding-right: 0; + padding-left: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-over .x4-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-over .x4-rtl.x4-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-over .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-medium-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large { + border-color: transparent; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-btn-default-toolbar-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-btn-default-toolbar-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-tr, +.x4-btn-default-toolbar-large-br, +.x4-btn-default-toolbar-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-tl, +.x4-btn-default-toolbar-large-bl, +.x4-btn-default-toolbar-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-tl, +.x4-btn-default-toolbar-large-bl, +.x4-btn-default-toolbar-large-tr, +.x4-btn-default-toolbar-large-br, +.x4-btn-default-toolbar-large-tc, +.x4-btn-default-toolbar-large-bc, +.x4-btn-default-toolbar-large-ml, +.x4-btn-default-toolbar-large-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-ml, +.x4-btn-default-toolbar-large-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-default-toolbar-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-btn-default-toolbar-large-tl, +.x4-strict .x4-ie7 .x4-btn-default-toolbar-large-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large .x4-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large .x4-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large .x4-btn-arrow-right { + padding-right: 12px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large .x4-rtl.x4-btn-arrow-right { + padding-right: 0; + padding-left: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large .x4-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large .x4-btn-glyph { + font-size: 32px; + line-height: 32px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie8m .x4-btn-default-toolbar-large .x4-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: transparent; +} +/* line 317, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-disabled .x4-btn-inner { + color: #8c8c8c; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon .x4-btn-button, +.x4-btn-default-toolbar-large-noicon .x4-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon .x4-btn-inner, +.x4-btn-default-toolbar-large-noicon .x4-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-toolbar-large-noicon .x4-btn-arrow-right .x4-btn-inner, +.x4-btn-default-toolbar-large-icon-text-left .x4-btn-arrow-right .x4-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon .x4-btn-arrow-right .x4-rtl.x4-btn-inner, +.x4-btn-default-toolbar-large-noicon .x4-btn-arrow-right .x4-rtl.x4-btn-inner, +.x4-btn-default-toolbar-large-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner { + padding-right: 3px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon .x4-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon .x4-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-left .x4-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-left .x4-btn-inner { + line-height: 32px; + padding-left: 36px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-left .x4-rtl.x4-btn-inner { + padding-left: 3px; + padding-right: 36px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner { + padding-right: 36px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-left .x4-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-large-icon-text-left .x4-btn-icon-el, .x4-quirks .x4-btn-default-toolbar-large-icon-text-left .x4-btn-icon-el { + height: 32px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-left .x4-rtl.x4-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-right .x4-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-right .x4-btn-inner { + line-height: 32px; + padding-right: 36px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-right .x4-rtl.x4-btn-inner { + padding-right: 3px; + padding-left: 36px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-right .x4-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-large-icon-text-right .x4-btn-icon-el, .x4-quirks .x4-btn-default-toolbar-large-icon-text-right .x4-btn-icon-el { + height: 32px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-right .x4-rtl.x4-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-top .x4-btn-inner { + padding-top: 36px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-top .x4-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-large-icon-text-top .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-toolbar-large-icon-text-top .x4-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-bottom .x4-btn-inner { + padding-bottom: 36px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-icon-text-bottom .x4-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-ie6 .x4-btn-default-toolbar-large-icon-text-bottom .x4-btn-icon-el, .x4-quirks .x4-ie .x4-btn-default-toolbar-large-icon-text-bottom .x4-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-over { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-focus { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-menu-active, +.x4-btn-default-toolbar-large-pressed { + border-color: #7a9ac4; + background-image: none; + background-color: #bccfe5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5)); + background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-over .x4-frame-tl, +.x4-btn-default-toolbar-large-over .x4-frame-bl, +.x4-btn-default-toolbar-large-over .x4-frame-tr, +.x4-btn-default-toolbar-large-over .x4-frame-br, +.x4-btn-default-toolbar-large-over .x4-frame-tc, +.x4-btn-default-toolbar-large-over .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-over .x4-frame-ml, +.x4-btn-default-toolbar-large-over .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-over .x4-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-focus .x4-frame-tl, +.x4-btn-default-toolbar-large-focus .x4-frame-bl, +.x4-btn-default-toolbar-large-focus .x4-frame-tr, +.x4-btn-default-toolbar-large-focus .x4-frame-br, +.x4-btn-default-toolbar-large-focus .x4-frame-tc, +.x4-btn-default-toolbar-large-focus .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-focus .x4-frame-ml, +.x4-btn-default-toolbar-large-focus .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-focus .x4-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-menu-active .x4-frame-tl, +.x4-btn-default-toolbar-large-menu-active .x4-frame-bl, +.x4-btn-default-toolbar-large-menu-active .x4-frame-tr, +.x4-btn-default-toolbar-large-menu-active .x4-frame-br, +.x4-btn-default-toolbar-large-menu-active .x4-frame-tc, +.x4-btn-default-toolbar-large-menu-active .x4-frame-bc, +.x4-btn-default-toolbar-large-pressed .x4-frame-tl, +.x4-btn-default-toolbar-large-pressed .x4-frame-bl, +.x4-btn-default-toolbar-large-pressed .x4-frame-tr, +.x4-btn-default-toolbar-large-pressed .x4-frame-br, +.x4-btn-default-toolbar-large-pressed .x4-frame-tc, +.x4-btn-default-toolbar-large-pressed .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-menu-active .x4-frame-ml, +.x4-btn-default-toolbar-large-menu-active .x4-frame-mr, +.x4-btn-default-toolbar-large-pressed .x4-frame-ml, +.x4-btn-default-toolbar-large-pressed .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-menu-active .x4-frame-mc, +.x4-btn-default-toolbar-large-pressed .x4-frame-mc { + background-color: #bccfe5; + background-image: url(images/btn/btn-default-toolbar-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-disabled .x4-frame-tl, +.x4-btn-default-toolbar-large-disabled .x4-frame-bl, +.x4-btn-default-toolbar-large-disabled .x4-frame-tr, +.x4-btn-default-toolbar-large-disabled .x4-frame-br, +.x4-btn-default-toolbar-large-disabled .x4-frame-tc, +.x4-btn-default-toolbar-large-disabled .x4-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-disabled .x4-frame-ml, +.x4-btn-default-toolbar-large-disabled .x4-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-disabled .x4-frame-mc { + background-color: transparent; +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-toolbar-large-over { + background-image: url(images/btn/btn-default-toolbar-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-toolbar-large-focus { + background-image: url(images/btn/btn-default-toolbar-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nlg .x4-btn-default-toolbar-large-menu-active, +.x4-nlg .x4-btn-default-toolbar-large-pressed { + background-image: url(images/btn/btn-default-toolbar-large-pressed-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-nbr .x4-btn-default-toolbar-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large .x4-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 14px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large .x4-rtl.x4-btn-split-right { + background-image: url(images/button/s-arrow-noline-rtl.gif); + padding-right: 0; + padding-left: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-over .x4-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-over .x4-rtl.x4-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-over .x4-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-default-toolbar-large-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-default-toolbar-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 1161, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-icon-text-left .x4-btn-icon-el { + background-position: left center; +} +/* line 1166, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-icon-text-left .x4-rtl.x4-btn-icon-el { + background-position: right center; +} + +/* line 1173, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-icon-text-right .x4-btn-icon-el { + background-position: right center; +} +/* line 1178, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-icon-text-right .x4-rtl.x4-btn-icon-el { + background-position: left center; +} + +/* line 1184, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-icon-text-top .x4-btn-icon-el { + background-position: center top; +} + +/* line 1188, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-icon-text-bottom .x4-btn-icon-el { + background-position: center bottom; +} + +/* line 1192, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-arrow-right { + background-position: right center; +} + +/* line 1197, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-rtl.x4-btn-arrow-right { + background-position: left center; +} + +/* line 1202, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-arrow-bottom { + background-position: center bottom; +} + +/* line 1206, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-arrow { + background-repeat: no-repeat; +} + +/* line 1211, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-split { + display: block; + background-repeat: no-repeat; +} + +/* line 1216, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-split-right { + background-position: right center; +} + +/* line 1221, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-rtl.x4-btn-split-right { + background-position: 0 center; +} + +/* line 1226, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-btn-split-bottom { + background-position: center bottom; +} + +/* line 1230, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x4-cycle-fixed-width .x4-btn-inner { + text-align: inherit; +} + +/** + * Creates a visual theme for a Toolbar. + * @param {String} $ui + * The name of the UI + * + * @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 {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 {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-disabled=$toolbar-scroller-opacity-disabled] + * The opacity of disabled Toolbar scrollers + * + * @param {string} [$tool-background-image=$toolbar-tool-background-image] + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + * + * @member Ext.toolbar.Toolbar + */ +/* line 94, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar { + font-size: 11px; + border-style: solid; + padding: 2px 0 2px 2px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-item { + margin: 0 2px 0 0; +} + +/* line 107, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-rtl.x4-toolbar-item { + margin: 0 0 0 2px; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-text { + margin: 0 6px 0 4px; + color: #4c4c4c; + line-height: 16px; + font-family: tahoma, arial, verdana, sans-serif; + font-size: 11px; + font-weight: normal; +} + +/* line 121, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-separator-horizontal { + margin: 0 2px 0 0; + height: 14px; + border-style: solid; + border-width: 0 1px; + border-left-color: #98c8ff; + border-right-color: white; +} + +/* line 132, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-rtl.x4-toolbar { + padding: 2px 2px 2px 0; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-footer { + background: transparent; + border: 0; + margin: 3px 0 0; + padding: 2px 0 2px 6px; +} +/* line 144, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-footer .x4-toolbar-item { + margin: 0 6px 0 0; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-spacer { + width: 2px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-more-icon { + background-image: url(images/toolbar/more.gif) !important; + background-position: center center !important; + background-repeat: no-repeat; +} + +/* line 45, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-default { + border-color: #99bce8; + border-width: 1px; + background-image: none; + background-color: #d3e1f1; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfe9f5), color-stop(100%, #d3e1f1)); + background-image: -webkit-linear-gradient(top, #dfe9f5, #d3e1f1); + background-image: -moz-linear-gradient(top, #dfe9f5, #d3e1f1); + background-image: -o-linear-gradient(top, #dfe9f5, #d3e1f1); + background-image: linear-gradient(top, #dfe9f5, #d3e1f1); +} +/* line 51, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-default .x4-box-scroller { + cursor: pointer; +} +/* line 55, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-default .x4-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + cursor: default; +} + +/* line 82, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-nlg .x4-toolbar-default { + background-image: url(images/toolbar/toolbar-default-bg.gif) !important; + background-repeat: repeat-x; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-toolbar-default:after { + display: none; + content: "x-slicer:bg:url(images/toolbar/toolbar-default-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/* line 166, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-scroll-left { + background-image: url(images/toolbar/scroll-left.gif); + background-position: -14px 0; + width: 14px; + height: 22px; + border-style: solid; + border-color: #8db2e3; + border-width: 0 0 1px; + margin-top: 0; +} + +/* line 177, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-scroll-left-hover { + background-position: 0 0; +} + +/* line 181, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-scroll-right { + background-image: url(images/toolbar/scroll-right.gif); + width: 14px; + height: 22px; + border-style: solid; + border-color: #8db2e3; + border-width: 0 0 1px; + margin-top: 0; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-scroll-right-hover { + background-position: -14px 0; +} + +/* line 195, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar .x4-box-menu-after { + margin: 0 2px 0 2px; +} + +/* line 199, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-vertical { + padding: 2px 2px 0 2px; +} +/* line 202, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-vertical .x4-toolbar-item { + margin: 0 0 2px 0; +} +/* line 206, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-vertical .x4-toolbar-text { + margin: 4px 0 6px 0; +} +/* line 210, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-vertical .x4-toolbar-separator-vertical { + margin: 0 5px 2px; + border-style: solid none; + border-width: 1px 0; + border-top-color: #98c8ff; + border-bottom-color: white; +} +/* line 219, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x4-toolbar-vertical .x4-box-menu-after, +.x4-toolbar-vertical .x4-rtl.x4-box-menu-after { + margin: 2px 0 2px 0; + display: block; + float: none; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x4-header-draggable .x4-header-body, +.x4-header-ghost { + cursor: move; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x4-header-text { + white-space: nowrap; +} + +/** + * Creates a visual theme for a Panel + * + * @param {string} $ui-label + * 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 {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-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`. + * + * @member Ext.panel.Panel + */ +/* line 736, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65); + opacity: 0.65; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-default { + border-color: #99bce8; + padding: 0; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default { + font-size: 11px; + border: 1px solid #99bce8; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-horizontal { + padding: 4px 5px 4px 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-horizontal-noborder { + padding: 5px 6px 4px 6px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical-noborder { + padding: 6px 5px 6px 4px; +} + +/* line 249, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-rtl.x4-panel-header-default-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-rtl.x4-panel-header-default-vertical-noborder { + padding: 6px 4px 6px 5px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-text-container-default { + color: #04408c; + font-size: 11px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + line-height: 15px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-body-default { + background: white; + border-color: #99bce8; + color: black; + font-size: 12px; + font-size: normal; + border-width: 1px; + border-style: solid; +} + +/* line 432, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default { + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 436, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical { + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 441, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-rtl.x4-panel-header-default-vertical { + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 454, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-nlg .x4-panel-header-default-top { + background: url(images/panel-header/panel-header-default-top-bg.gif); +} +/* line 459, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-nlg .x4-panel-header-default-bottom { + background: url(images/panel-header/panel-header-default-bottom-bg.gif); +} +/* line 464, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-nlg .x4-panel-header-default-left { + background: url(images/panel-header/panel-header-default-left-bg.gif) top right; +} +/* line 469, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-nlg .x4-panel-header-default-right { + background: url(images/panel-header/panel-header-default-right-bg.gif) top right; +} +/* line 476, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-nlg .x4-rtl.x4-panel-header-default-left { + background: url(images/panel-header/panel-header-default-left-bg-rtl.gif); +} +/* line 480, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-nlg .x4-rtl.x4-panel-header-default-right { + background: url(images/panel-header/panel-header-default-right-bg-rtl.gif); +} + +/* line 494, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel .x4-panel-header-default-collapsed-border-top { + border-bottom-width: 1px !important; +} +/* line 498, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel .x4-panel-header-default-collapsed-border-right { + border-left-width: 1px !important; +} +/* line 502, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel .x4-panel-header-default-collapsed-border-bottom { + border-top-width: 1px !important; +} +/* line 506, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel .x4-panel-header-default-collapsed-border-left { + border-right-width: 1px !important; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-top:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-top-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-bottom:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-bottom-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-left:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-left-bg-rtl.gif), stretch:left"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-right:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-right-bg-rtl.gif), stretch:left"; +} + +/**/ +/* */ +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical .x4-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x4-ie9m .x4-panel-header-default-vertical .x4-panel-header-text-container { + background-color: #cbddf3; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3); +} + +/* line 527, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical .x4-rtl.x4-panel-header-text-container { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x4-ie9m .x4-panel-header-default-vertical .x4-rtl.x4-panel-header-text-container { + background-color: #cbddf3; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3); +} + +/* line 533, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-top { + -webkit-box-shadow: #f3f7fb 0 1px 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 1px 0px 0 inset; + box-shadow: #f3f7fb 0 1px 0px 0 inset; +} + +/* line 537, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-right { + -webkit-box-shadow: #f3f7fb -1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb -1px 0 0px 0 inset; + box-shadow: #f3f7fb -1px 0 0px 0 inset; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-bottom { + -webkit-box-shadow: #f3f7fb 0 -1px 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 -1px 0px 0 inset; + box-shadow: #f3f7fb 0 -1px 0px 0 inset; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-left { + -webkit-box-shadow: #f3f7fb 1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 1px 0 0px 0 inset; + box-shadow: #f3f7fb 1px 0 0px 0 inset; +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default .x4-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default .x4-panel-header-glyph { + color: #04408c; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-ie8m .x4-panel-header-default .x4-panel-header-glyph { + color: #678ebf; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-horizontal .x4-panel-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 585, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-horizontal .x4-rtl.x4-panel-header-icon-before-title { + margin: 0 0 0 2px; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-horizontal .x4-panel-header-icon-after-title { + margin: 0 0 0 2px; +} +/* line 595, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-horizontal .x4-rtl.x4-panel-header-icon-after-title { + margin: 0 2px 0 0; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical .x4-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 607, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical .x4-rtl.x4-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical .x4-panel-header-icon-after-title { + margin: 2px 0 0 0; +} +/* line 617, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical .x4-rtl.x4-panel-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-horizontal .x4-tool-after-title { + margin: 0 0 0 2px; +} +/* line 630, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-horizontal .x4-rtl.x4-tool-after-title { + margin: 0 2px 0 0; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-horizontal .x4-tool-before-title { + margin: 0 2px 0 0; +} +/* line 640, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-horizontal .x4-rtl.x4-tool-before-title { + margin: 0 0 0 2px; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical .x4-tool-after-title { + margin: 2px 0 0 0; +} +/* line 652, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical .x4-rtl.x4-tool-after-title { + margin: 2px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical .x4-tool-before-title { + margin: 0 0 2px 0; +} +/* line 662, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-vertical .x4-rtl.x4-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 670, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-rtl.x4-panel-header-default-collapsed-border-right { + border-right-width: 1px !important; +} +/* line 673, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-rtl.x4-panel-header-default-collapsed-border-left { + border-left-width: 1px !important; +} + +/* line 687, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-default-resizable .x4-panel-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-default-framed { + border-color: #99bce8; + padding: 4px; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed { + font-size: 11px; + border: 1px solid #99bce8; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-horizontal { + padding: 4px 5px 4px 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-horizontal-noborder { + padding: 5px 6px 4px 6px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical-noborder { + padding: 6px 5px 6px 4px; +} + +/* line 249, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-rtl.x4-panel-header-default-framed-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-rtl.x4-panel-header-default-framed-vertical-noborder { + padding: 6px 4px 6px 5px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-text-container-default-framed { + color: #04408c; + font-size: 11px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + line-height: 15px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-body-default-framed { + background: #dfe9f6; + border-color: #99bce8; + color: black; + font-size: 12px; + font-size: normal; + border-width: 0; + border-style: solid; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed { + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: #dfe9f6; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-mc { + background-color: #dfe9f6; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-panel-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-panel-default-framed-frameInfo { + font-family: dh-4-4-4-4-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-tr, +.x4-panel-default-framed-br, +.x4-panel-default-framed-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-tl, +.x4-panel-default-framed-bl, +.x4-panel-default-framed-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-tl, +.x4-panel-default-framed-bl, +.x4-panel-default-framed-tr, +.x4-panel-default-framed-br, +.x4-panel-default-framed-tc, +.x4-panel-default-framed-bc, +.x4-panel-default-framed-ml, +.x4-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-ml, +.x4-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-default-framed-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-panel-default-framed-tl, +.x4-strict .x4-ie7 .x4-panel-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: 4px 5px 4px 5px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-mc { + background-image: url(images/panel-header/panel-header-default-framed-top-fbg.gif); + background-position: 0 top; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-panel-header-default-framed-top { + background-image: url(images/panel-header/panel-header-default-framed-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-panel-header-default-framed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-panel-header-default-framed-top-frameInfo { + font-family: dh-4-4-0-0-1-1-0-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-tr, +.x4-panel-header-default-framed-top-br, +.x4-panel-header-default-framed-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-tl, +.x4-panel-header-default-framed-top-bl, +.x4-panel-header-default-framed-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-tl, +.x4-panel-header-default-framed-top-bl, +.x4-panel-header-default-framed-top-tr, +.x4-panel-header-default-framed-top-br, +.x4-panel-header-default-framed-top-tc, +.x4-panel-header-default-framed-top-bc, +.x4-panel-header-default-framed-top-ml, +.x4-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-ml, +.x4-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-top-mc { + padding: 1px 2px 4px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-panel-header-default-framed-top-tl, +.x4-strict .x4-ie7 .x4-panel-header-default-framed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-framed-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 4px 5px 4px; + border-width: 1px 1px 1px 0; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-right { + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-right-fbg.gif); + background-position: right 0; + background-color: #cbddf3; +} + +/* line 204, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-right-fbg-rtl.gif); + background-position: 0 0; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-panel-header-default-framed-right { + background-image: url(images/panel-header/panel-header-default-framed-right-bg.gif); + background-position: right 0; +} +/* line 223, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-rtl.x4-panel-header-default-framed-right { + background-image: url(images/panel-header/panel-header-default-framed-right-bg-rtl.gif); + background-position: 0 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-panel-header-default-framed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-panel-header-default-framed-right-frameInfo { + font-family: dv-0-4-4-0-1-1-1-0-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-tc { + background-position: right 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-bc { + background-position: right -4px; +} + +/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-right-tc { + background-position: 0 0; +} + +/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-right-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-tr, +.x4-panel-header-default-framed-right-br, +.x4-panel-header-default-framed-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-tl, +.x4-panel-header-default-framed-right-bl, +.x4-panel-header-default-framed-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-tl, +.x4-panel-header-default-framed-right-bl, +.x4-panel-header-default-framed-right-tr, +.x4-panel-header-default-framed-right-br, +.x4-panel-header-default-framed-right-tc, +.x4-panel-header-default-framed-right-bc, +.x4-panel-header-default-framed-right-ml, +.x4-panel-header-default-framed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-right-tl, .x4-rtl.x4-panel-header-default-framed-right-ml, .x4-rtl.x4-panel-header-default-framed-right-bl, .x4-rtl.x4-panel-header-default-framed-right-tr, .x4-rtl.x4-panel-header-default-framed-right-mr, .x4-rtl.x4-panel-header-default-framed-right-br { + background-image: url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-tc, +.x4-panel-header-default-framed-right-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-sides.gif); + background-repeat: repeat-x; +} + +/* line 418, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-right-tc, .x4-rtl.x4-panel-header-default-framed-right-bc { + background-image: url(images/panel-header/panel-header-default-framed-right-sides-rtl.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-right-mc { + padding: 2px 1px 2px 4px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-panel-header-default-framed-right-tl, +.x4-strict .x4-ie7 .x4-panel-header-default-framed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-framed-right:after { + display: none; + content: "x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-right-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-right-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-right-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-right-sides-rtl.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: 4px 5px 4px 5px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-mc { + background-image: url(images/panel-header/panel-header-default-framed-bottom-fbg.gif); + background-position: 0 bottom; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-panel-header-default-framed-bottom { + background-image: url(images/panel-header/panel-header-default-framed-bottom-bg.gif); + background-position: 0 bottom; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-panel-header-default-framed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-panel-header-default-framed-bottom-frameInfo { + font-family: dh-0-0-4-4-0-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-tr, +.x4-panel-header-default-framed-bottom-br, +.x4-panel-header-default-framed-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-tl, +.x4-panel-header-default-framed-bottom-bl, +.x4-panel-header-default-framed-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-tl, +.x4-panel-header-default-framed-bottom-bl, +.x4-panel-header-default-framed-bottom-tr, +.x4-panel-header-default-framed-bottom-br, +.x4-panel-header-default-framed-bottom-tc, +.x4-panel-header-default-framed-bottom-bc, +.x4-panel-header-default-framed-bottom-ml, +.x4-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-ml, +.x4-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-bottom-mc { + padding: 4px 2px 1px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-panel-header-default-framed-bottom-tl, +.x4-strict .x4-ie7 .x4-panel-header-default-framed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-framed-bottom:after { + display: none; + content: "x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 4px 5px 4px; + border-width: 1px 0 1px 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-left { + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-left-fbg.gif); + background-position: left 0; + background-color: #cbddf3; +} + +/* line 204, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-left-fbg-rtl.gif); + background-position: right 0; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-panel-header-default-framed-left { + background-image: url(images/panel-header/panel-header-default-framed-left-bg.gif); + background-position: left 0; +} +/* line 223, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-rtl.x4-panel-header-default-framed-left { + background-image: url(images/panel-header/panel-header-default-framed-left-bg-rtl.gif); + background-position: right 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-panel-header-default-framed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-panel-header-default-framed-left-frameInfo { + font-family: dv-4-0-0-4-1-0-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-tc { + background-position: left 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-bc { + background-position: left -4px; +} + +/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-left-tc { + background-position: right 0; +} + +/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-left-bc { + background-position: right -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-tr, +.x4-panel-header-default-framed-left-br, +.x4-panel-header-default-framed-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-tl, +.x4-panel-header-default-framed-left-bl, +.x4-panel-header-default-framed-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-tl, +.x4-panel-header-default-framed-left-bl, +.x4-panel-header-default-framed-left-tr, +.x4-panel-header-default-framed-left-br, +.x4-panel-header-default-framed-left-tc, +.x4-panel-header-default-framed-left-bc, +.x4-panel-header-default-framed-left-ml, +.x4-panel-header-default-framed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-left-tl, .x4-rtl.x4-panel-header-default-framed-left-ml, .x4-rtl.x4-panel-header-default-framed-left-bl, .x4-rtl.x4-panel-header-default-framed-left-tr, .x4-rtl.x4-panel-header-default-framed-left-mr, .x4-rtl.x4-panel-header-default-framed-left-br { + background-image: url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-tc, +.x4-panel-header-default-framed-left-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-sides.gif); + background-repeat: repeat-x; +} + +/* line 418, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-left-tc, .x4-rtl.x4-panel-header-default-framed-left-bc { + background-image: url(images/panel-header/panel-header-default-framed-left-sides-rtl.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-left-mc { + padding: 2px 4px 2px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-panel-header-default-framed-left-tl, +.x4-strict .x4-ie7 .x4-panel-header-default-framed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-framed-left:after { + display: none; + content: "x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-left-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-left-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-left-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-left-sides-rtl.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif); + background-position: 0 top; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-panel-header-default-framed-collapsed-top { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-panel-header-default-framed-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-panel-header-default-framed-collapsed-top-frameInfo { + font-family: dh-4-4-4-4-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-tr, +.x4-panel-header-default-framed-collapsed-top-br, +.x4-panel-header-default-framed-collapsed-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-tl, +.x4-panel-header-default-framed-collapsed-top-bl, +.x4-panel-header-default-framed-collapsed-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-tl, +.x4-panel-header-default-framed-collapsed-top-bl, +.x4-panel-header-default-framed-collapsed-top-tr, +.x4-panel-header-default-framed-collapsed-top-br, +.x4-panel-header-default-framed-collapsed-top-tc, +.x4-panel-header-default-framed-collapsed-top-bc, +.x4-panel-header-default-framed-collapsed-top-ml, +.x4-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-ml, +.x4-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-top-mc { + padding: 1px 2px 1px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-top-tl, +.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-framed-collapsed-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-collapsed-right { + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif); + background-position: right 0; + background-color: #cbddf3; +} + +/* line 204, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-collapsed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif); + background-position: 0 0; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-panel-header-default-framed-collapsed-right { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif); + background-position: right 0; +} +/* line 223, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-rtl.x4-panel-header-default-framed-collapsed-right { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif); + background-position: 0 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-panel-header-default-framed-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-panel-header-default-framed-collapsed-right-frameInfo { + font-family: dv-4-4-4-4-1-1-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-tc { + background-position: right 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-bc { + background-position: right -4px; +} + +/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-collapsed-right-tc { + background-position: 0 0; +} + +/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-collapsed-right-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-tr, +.x4-panel-header-default-framed-collapsed-right-br, +.x4-panel-header-default-framed-collapsed-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-tl, +.x4-panel-header-default-framed-collapsed-right-bl, +.x4-panel-header-default-framed-collapsed-right-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-tl, +.x4-panel-header-default-framed-collapsed-right-bl, +.x4-panel-header-default-framed-collapsed-right-tr, +.x4-panel-header-default-framed-collapsed-right-br, +.x4-panel-header-default-framed-collapsed-right-tc, +.x4-panel-header-default-framed-collapsed-right-bc, +.x4-panel-header-default-framed-collapsed-right-ml, +.x4-panel-header-default-framed-collapsed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-collapsed-right-tl, .x4-rtl.x4-panel-header-default-framed-collapsed-right-ml, .x4-rtl.x4-panel-header-default-framed-collapsed-right-bl, .x4-rtl.x4-panel-header-default-framed-collapsed-right-tr, .x4-rtl.x4-panel-header-default-framed-collapsed-right-mr, .x4-rtl.x4-panel-header-default-framed-collapsed-right-br { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-tc, +.x4-panel-header-default-framed-collapsed-right-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif); + background-repeat: repeat-x; +} + +/* line 418, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-collapsed-right-tc, .x4-rtl.x4-panel-header-default-framed-collapsed-right-bc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-right-mc { + padding: 2px 1px 2px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-right-tl, +.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-framed-collapsed-right:after { + display: none; + content: "x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif); + background-position: 0 bottom; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-panel-header-default-framed-collapsed-bottom { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif); + background-position: 0 bottom; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-panel-header-default-framed-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-panel-header-default-framed-collapsed-bottom-frameInfo { + font-family: dh-4-4-4-4-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-tr, +.x4-panel-header-default-framed-collapsed-bottom-br, +.x4-panel-header-default-framed-collapsed-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-tl, +.x4-panel-header-default-framed-collapsed-bottom-bl, +.x4-panel-header-default-framed-collapsed-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-tl, +.x4-panel-header-default-framed-collapsed-bottom-bl, +.x4-panel-header-default-framed-collapsed-bottom-tr, +.x4-panel-header-default-framed-collapsed-bottom-br, +.x4-panel-header-default-framed-collapsed-bottom-tc, +.x4-panel-header-default-framed-collapsed-bottom-bc, +.x4-panel-header-default-framed-collapsed-bottom-ml, +.x4-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-ml, +.x4-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-bottom-mc { + padding: 1px 2px 1px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-bottom-tl, +.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-framed-collapsed-bottom:after { + display: none; + content: "x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-collapsed-left { + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif); + background-position: left 0; + background-color: #cbddf3; +} + +/* line 204, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-collapsed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif); + background-position: right 0; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-panel-header-default-framed-collapsed-left { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif); + background-position: left 0; +} +/* line 223, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-rtl.x4-panel-header-default-framed-collapsed-left { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif); + background-position: right 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-panel-header-default-framed-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-panel-header-default-framed-collapsed-left-frameInfo { + font-family: dv-4-4-4-4-1-1-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-tc { + background-position: left 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-bc { + background-position: left -4px; +} + +/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-collapsed-left-tc { + background-position: right 0; +} + +/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-collapsed-left-bc { + background-position: right -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-tr, +.x4-panel-header-default-framed-collapsed-left-br, +.x4-panel-header-default-framed-collapsed-left-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-tl, +.x4-panel-header-default-framed-collapsed-left-bl, +.x4-panel-header-default-framed-collapsed-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-tl, +.x4-panel-header-default-framed-collapsed-left-bl, +.x4-panel-header-default-framed-collapsed-left-tr, +.x4-panel-header-default-framed-collapsed-left-br, +.x4-panel-header-default-framed-collapsed-left-tc, +.x4-panel-header-default-framed-collapsed-left-bc, +.x4-panel-header-default-framed-collapsed-left-ml, +.x4-panel-header-default-framed-collapsed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-collapsed-left-tl, .x4-rtl.x4-panel-header-default-framed-collapsed-left-ml, .x4-rtl.x4-panel-header-default-framed-collapsed-left-bl, .x4-rtl.x4-panel-header-default-framed-collapsed-left-tr, .x4-rtl.x4-panel-header-default-framed-collapsed-left-mr, .x4-rtl.x4-panel-header-default-framed-collapsed-left-br { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-tc, +.x4-panel-header-default-framed-collapsed-left-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif); + background-repeat: repeat-x; +} + +/* line 418, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-panel-header-default-framed-collapsed-left-tc, .x4-rtl.x4-panel-header-default-framed-collapsed-left-bc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-panel-header-default-framed-collapsed-left-mc { + padding: 2px 1px 2px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-left-tl, +.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-panel-header-default-framed-collapsed-left:after { + display: none; + content: "x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif)"; +} + +/**/ +/* */ +/* line 396, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel .x4-panel-header-default-framed-top { + border-bottom-width: 1px !important; +} +/* line 400, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel .x4-panel-header-default-framed-right { + border-left-width: 1px !important; +} +/* line 404, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel .x4-panel-header-default-framed-bottom { + border-top-width: 1px !important; +} +/* line 408, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel .x4-panel-header-default-framed-left { + border-right-width: 1px !important; +} + +/* line 414, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-nbr .x4-panel-header-default-framed-collapsed-top { + border-bottom-width: 0 !important; +} +/* line 418, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-nbr .x4-panel-header-default-framed-collapsed-right { + border-left-width: 0 !important; +} +/* line 422, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-nbr .x4-panel-header-default-framed-collapsed-bottom { + border-top-width: 0 !important; +} +/* line 426, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-nbr .x4-panel-header-default-framed-collapsed-left { + border-right-width: 0 !important; +} + +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical .x4-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x4-ie9m .x4-panel-header-default-framed-vertical .x4-panel-header-text-container { + background-color: #cbddf3; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3); +} + +/* line 527, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical .x4-rtl.x4-panel-header-text-container { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x4-ie9m .x4-panel-header-default-framed-vertical .x4-rtl.x4-panel-header-text-container { + background-color: #cbddf3; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3); +} + +/* line 533, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-top { + -webkit-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; +} + +/* line 537, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-right { + -webkit-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset; + box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-bottom { + -webkit-box-shadow: #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + box-shadow: #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-left { + -webkit-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed .x4-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed .x4-panel-header-glyph { + color: #04408c; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-ie8m .x4-panel-header-default-framed .x4-panel-header-glyph { + color: #678ebf; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-horizontal .x4-panel-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 585, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-horizontal .x4-rtl.x4-panel-header-icon-before-title { + margin: 0 0 0 2px; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-horizontal .x4-panel-header-icon-after-title { + margin: 0 0 0 2px; +} +/* line 595, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-horizontal .x4-rtl.x4-panel-header-icon-after-title { + margin: 0 2px 0 0; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical .x4-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 607, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical .x4-rtl.x4-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical .x4-panel-header-icon-after-title { + margin: 2px 0 0 0; +} +/* line 617, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical .x4-rtl.x4-panel-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-horizontal .x4-tool-after-title { + margin: 0 0 0 2px; +} +/* line 630, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-horizontal .x4-rtl.x4-tool-after-title { + margin: 0 2px 0 0; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-horizontal .x4-tool-before-title { + margin: 0 2px 0 0; +} +/* line 640, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-horizontal .x4-rtl.x4-tool-before-title { + margin: 0 0 0 2px; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical .x4-tool-after-title { + margin: 2px 0 0 0; +} +/* line 652, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical .x4-rtl.x4-tool-after-title { + margin: 2px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical .x4-tool-before-title { + margin: 0 0 2px 0; +} +/* line 662, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-header-default-framed-vertical .x4-rtl.x4-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 670, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-rtl.x4-panel-header-default-framed-collapsed-border-right { + border-right-width: 1px !important; +} +/* line 673, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-rtl.x4-panel-header-default-framed-collapsed-border-left { + border-left-width: 1px !important; +} + +/* line 687, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x4-panel-default-framed-resizable .x4-panel-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/** + * Creates a visual theme for a Ext.tip.Tip + * + * @param {string} $ui-label + * 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-body-padding=$tip-header-body-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 167, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-anchor { + position: absolute; + overflow: hidden; + height: 10px; + width: 10px; + border-style: solid; + border-width: 5px; + border-color: #8eaace; + zoom: 1; +} +/* line 182, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-content-box .x4-tip-anchor { + height: 0; + width: 0; +} + +/* line 189, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-anchor-top { + border-top-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-anchor-bottom { + border-bottom-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-bottom-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-anchor-left { + border-top-color: transparent; + border-bottom-color: transparent; + border-left-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-left-color: pink; + _filter: chroma(color=pink); +} + +/* line 228, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-anchor-right { + border-top-color: transparent; + border-bottom-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: #e9f2ff; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-mc { + background-color: #e9f2ff; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-tip-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-tip-default-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-tr, +.x4-tip-default-br, +.x4-tip-default-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-tl, +.x4-tip-default-bl, +.x4-tip-default-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-tl, +.x4-tip-default-bl, +.x4-tip-default-tr, +.x4-tip-default-br, +.x4-tip-default-tc, +.x4-tip-default-bc, +.x4-tip-default-ml, +.x4-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-ml, +.x4-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-tip-default-tl, +.x4-strict .x4-ie7 .x4-tip-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tip-default:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-default { + border-color: #8eaace; +} +/* line 109, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-default .x4-tool-img { + background-color: #e9f2ff; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-default .x4-tool-after-title { + margin: 0 0 0 6px; +} +/* line 129, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-default .x4-rtl.x4-tool-after-title { + margin: 0 6px 0 0; +} +/* line 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-default .x4-tool-before-title { + margin: 0 6px 0 0; +} +/* line 139, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-default .x4-rtl.x4-tool-before-title { + margin: 0 0 0 6px; +} + +/* line 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-body-default { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-text-container-default { + color: #444444; + font-size: 11px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-body-default { + padding: 3px; + color: #444444; + font-size: 11px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-body-default a { + color: #2a2a2a; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: white; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-mc { + background-color: white; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-tip-form-invalid { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-tip-form-invalid-frameInfo { + font-family: th-5-5-5-5-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-tr, +.x4-tip-form-invalid-br, +.x4-tip-form-invalid-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-tl, +.x4-tip-form-invalid-bl, +.x4-tip-form-invalid-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-tl, +.x4-tip-form-invalid-bl, +.x4-tip-form-invalid-tr, +.x4-tip-form-invalid-br, +.x4-tip-form-invalid-tc, +.x4-tip-form-invalid-bc, +.x4-tip-form-invalid-ml, +.x4-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-ml, +.x4-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tip-form-invalid-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-tip-form-invalid-tl, +.x4-strict .x4-ie7 .x4-tip-form-invalid-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tip-form-invalid:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-form-invalid { + border-color: #a1311f; + -webkit-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; + -moz-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; + box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; +} +/* line 109, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-form-invalid .x4-tool-img { + background-color: white; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-form-invalid .x4-tool-after-title { + margin: 0 0 0 6px; +} +/* line 129, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-form-invalid .x4-rtl.x4-tool-after-title { + margin: 0 6px 0 0; +} +/* line 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-form-invalid .x4-tool-before-title { + margin: 0 6px 0 0; +} +/* line 139, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-form-invalid .x4-rtl.x4-tool-before-title { + margin: 0 0 0 6px; +} + +/* line 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-body-form-invalid { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-header-text-container-form-invalid { + color: #444444; + font-size: 11px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-body-form-invalid { + padding: 3px 3px 3px 22px; + color: #444444; + font-size: 11px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-body-form-invalid a { + color: #2a2a2a; +} + +/* line 265, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-body-form-invalid { + background: 1px 1px no-repeat; + background-image: url(images/form/exclamation.gif); +} +/* line 268, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-body-form-invalid li { + margin-bottom: 4px; +} +/* line 270, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x4-tip-body-form-invalid li.last { + margin-bottom: 0; +} + +/** + * Creates a visual theme for a ButtonGroup. + * + * @param {string} $ui-label + * 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 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-default { + border-color: #b7c8d7; + -webkit-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; + -moz-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; + box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-header-default { + margin: 2px 2px 0 2px; + padding: 1px 0; + line-height: 15px; + background: #c2d8f0; + -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 109, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-header-default .x4-tool-img { + background-color: #c2d8f0; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-header-text-container-default { + font: normal 11px tahoma, arial, verdana, sans-serif; + line-height: 15px; + color: #3e6aaa; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-body-default { + padding: 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-body-default .x4-table-layout { + border-spacing: 0; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed { + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + padding: 1px 1px 1px 1px; + border-width: 1px; + border-style: solid; + background-color: #d0def0; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-mc { + background-color: #d0def0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-btn-group-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-btn-group-default-framed-frameInfo { + font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-tl { + background-position: 0 -4px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-tr { + background-position: right -6px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-bl { + background-position: 0 -8px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-br { + background-position: right -10px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-bc { + background-position: 0 -2px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-tr, +.x4-btn-group-default-framed-br, +.x4-btn-group-default-framed-mr { + padding-right: 2px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-tl, +.x4-btn-group-default-framed-bl, +.x4-btn-group-default-framed-ml { + padding-left: 2px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-tc { + height: 2px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-bc { + height: 2px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-tl, +.x4-btn-group-default-framed-bl, +.x4-btn-group-default-framed-tr, +.x4-btn-group-default-framed-br, +.x4-btn-group-default-framed-tc, +.x4-btn-group-default-framed-bc, +.x4-btn-group-default-framed-ml, +.x4-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-ml, +.x4-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-btn-group-default-framed-tl, +.x4-strict .x4-ie7 .x4-btn-group-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-group-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle { + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + padding: 1px 1px 1px 1px; + border-width: 1px; + border-style: solid; + background-color: #d0def0; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-mc { + background-color: #d0def0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-btn-group-default-framed-notitle { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-btn-group-default-framed-notitle-frameInfo { + font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-tl { + background-position: 0 -4px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-tr { + background-position: right -6px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-bl { + background-position: 0 -8px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-br { + background-position: right -10px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-bc { + background-position: 0 -2px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-tr, +.x4-btn-group-default-framed-notitle-br, +.x4-btn-group-default-framed-notitle-mr { + padding-right: 2px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-tl, +.x4-btn-group-default-framed-notitle-bl, +.x4-btn-group-default-framed-notitle-ml { + padding-left: 2px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-tc { + height: 2px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-bc { + height: 2px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-tl, +.x4-btn-group-default-framed-notitle-bl, +.x4-btn-group-default-framed-notitle-tr, +.x4-btn-group-default-framed-notitle-br, +.x4-btn-group-default-framed-notitle-tc, +.x4-btn-group-default-framed-notitle-bc, +.x4-btn-group-default-framed-notitle-ml, +.x4-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-ml, +.x4-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-btn-group-default-framed-notitle-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-btn-group-default-framed-notitle-tl, +.x4-strict .x4-ie7 .x4-btn-group-default-framed-notitle-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-btn-group-default-framed-notitle:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"; +} + +/**/ +/* */ +/* line 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-default-framed { + border-color: #b7c8d7; + -webkit-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; + -moz-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; + box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-header-default-framed { + margin: 2px 2px 0 2px; + padding: 1px 0; + line-height: 15px; + background: #c2d8f0; + -moz-border-radius-topleft: 2px; + -webkit-border-top-left-radius: 2px; + border-top-left-radius: 2px; + -moz-border-radius-topright: 2px; + -webkit-border-top-right-radius: 2px; + border-top-right-radius: 2px; +} +/* line 109, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-header-default-framed .x4-tool-img { + background-color: #c2d8f0; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-header-text-container-default-framed { + font: normal 11px tahoma, arial, verdana, sans-serif; + line-height: 15px; + color: #3e6aaa; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-body-default-framed { + padding: 0 1px 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x4-btn-group-body-default-framed .x4-table-layout { + border-spacing: 0; +} + +/** + * Creates a visual theme for a Window + * + * @param {string} $ui-label + * 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`. + * + * @member Ext.window.Window + */ +/* line 545, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65); + opacity: 0.65; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-default { + border-color: #a2b1c5; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-window-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-window-default-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-tr, +.x4-window-default-br, +.x4-window-default-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-tl, +.x4-window-default-bl, +.x4-window-default-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-tl, +.x4-window-default-bl, +.x4-window-default-tr, +.x4-window-default-br, +.x4-window-default-tc, +.x4-window-default-bc, +.x4-window-default-ml, +.x4-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-ml, +.x4-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-window-default-tl, +.x4-strict .x4-ie7 .x4-window-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-window-default:after { + display: none; + content: "x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"; +} + +/**/ +/* */ +/* line 195, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-body-default { + border-color: #99bbe8; + border-width: 1px; + border-style: solid; + background: #dfe8f6; + color: black; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default { + font-size: 11px; + border-color: #a2b1c5; + zoom: 1; + background-color: #ced9e7; +} +/* line 212, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default .x4-tool-img { + background-color: #ced9e7; +} + +/* line 223, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-vertical .x4-window-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x4-ie9m .x4-window-header-default-vertical .x4-window-header-text-container { + background-color: #ced9e7; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#ced9e7); +} + +/* line 228, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-vertical .x4-rtl.x4-window-header-text-container { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x4-ie9m .x4-window-header-default-vertical .x4-rtl.x4-window-header-text-container { + background-color: #ced9e7; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#ced9e7); +} + +/* line 233, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-text-container-default { + color: #04468c; + font-weight: bold; + line-height: 15px; + font-family: tahoma, arial, verdana, sans-serif; + font-size: 11px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-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: 4px 5px 0 5px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-window-header-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-window-header-default-top-frameInfo { + font-family: dh-5-5-0-0-1-1-0-1-4-5-0-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-tr, +.x4-window-header-default-top-br, +.x4-window-header-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-tl, +.x4-window-header-default-top-bl, +.x4-window-header-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-tl, +.x4-window-header-default-top-bl, +.x4-window-header-default-top-tr, +.x4-window-header-default-top-br, +.x4-window-header-default-top-tc, +.x4-window-header-default-top-bc, +.x4-window-header-default-top-ml, +.x4-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-ml, +.x4-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-top-mc { + padding: 0px 1px 0 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-window-header-default-top-tl, +.x4-strict .x4-ie7 .x4-window-header-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-window-header-default-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 5px; + -webkit-border-top-right-radius: 5px; + border-top-right-radius: 5px; + -moz-border-radius-bottomright: 5px; + -webkit-border-bottom-right-radius: 5px; + border-bottom-right-radius: 5px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 4px 5px 0; + border-width: 1px 1px 1px 0; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-window-header-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-window-header-default-right-frameInfo { + font-family: dh-0-5-5-0-1-1-1-0-5-4-5-0; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-tr, +.x4-window-header-default-right-br, +.x4-window-header-default-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-tl, +.x4-window-header-default-right-bl, +.x4-window-header-default-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-tl, +.x4-window-header-default-right-bl, +.x4-window-header-default-right-tr, +.x4-window-header-default-right-br, +.x4-window-header-default-right-tc, +.x4-window-header-default-right-bc, +.x4-window-header-default-right-ml, +.x4-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-window-header-default-right-tl, .x4-rtl.x4-window-header-default-right-ml, .x4-rtl.x4-window-header-default-right-bl, .x4-rtl.x4-window-header-default-right-tr, .x4-rtl.x4-window-header-default-right-mr, .x4-rtl.x4-window-header-default-right-br { + background-image: url(images/window-header/window-header-default-right-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-ml, +.x4-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-right-mc { + padding: 1px 0px 1px 0; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-window-header-default-right-tl, +.x4-strict .x4-ie7 .x4-window-header-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-window-header-default-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: 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: 0 5px 4px 5px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-window-header-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-window-header-default-bottom-frameInfo { + font-family: dh-0-0-5-5-0-1-1-1-0-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-tr, +.x4-window-header-default-bottom-br, +.x4-window-header-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-tl, +.x4-window-header-default-bottom-bl, +.x4-window-header-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-tl, +.x4-window-header-default-bottom-bl, +.x4-window-header-default-bottom-tr, +.x4-window-header-default-bottom-br, +.x4-window-header-default-bottom-tc, +.x4-window-header-default-bottom-bc, +.x4-window-header-default-bottom-ml, +.x4-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-ml, +.x4-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-bottom-mc { + padding: 0 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-window-header-default-bottom-tl, +.x4-strict .x4-ie7 .x4-window-header-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-window-header-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left { + -moz-border-radius-topleft: 5px; + -webkit-border-top-left-radius: 5px; + border-top-left-radius: 5px; + -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: 5px; + -webkit-border-bottom-left-radius: 5px; + border-bottom-left-radius: 5px; + padding: 5px 0 5px 4px; + border-width: 1px 0 1px 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-window-header-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-window-header-default-left-frameInfo { + font-family: dh-5-0-0-5-1-0-1-1-5-0-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-tr, +.x4-window-header-default-left-br, +.x4-window-header-default-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-tl, +.x4-window-header-default-left-bl, +.x4-window-header-default-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-tl, +.x4-window-header-default-left-bl, +.x4-window-header-default-left-tr, +.x4-window-header-default-left-br, +.x4-window-header-default-left-tc, +.x4-window-header-default-left-bc, +.x4-window-header-default-left-ml, +.x4-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-window-header-default-left-tl, .x4-rtl.x4-window-header-default-left-ml, .x4-rtl.x4-window-header-default-left-bl, .x4-rtl.x4-window-header-default-left-tr, .x4-rtl.x4-window-header-default-left-mr, .x4-rtl.x4-window-header-default-left-br { + background-image: url(images/window-header/window-header-default-left-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-ml, +.x4-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-left-mc { + padding: 1px 0 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-window-header-default-left-tl, +.x4-strict .x4-ie7 .x4-window-header-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-window-header-default-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-window-header-default-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-window-header-default-collapsed-top-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-tr, +.x4-window-header-default-collapsed-top-br, +.x4-window-header-default-collapsed-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-tl, +.x4-window-header-default-collapsed-top-bl, +.x4-window-header-default-collapsed-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-tl, +.x4-window-header-default-collapsed-top-bl, +.x4-window-header-default-collapsed-top-tr, +.x4-window-header-default-collapsed-top-br, +.x4-window-header-default-collapsed-top-tc, +.x4-window-header-default-collapsed-top-bc, +.x4-window-header-default-collapsed-top-ml, +.x4-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-ml, +.x4-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-top-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-window-header-default-collapsed-top-tl, +.x4-strict .x4-ie7 .x4-window-header-default-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-window-header-default-collapsed-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-window-header-default-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-window-header-default-collapsed-right-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-5-4-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-tr, +.x4-window-header-default-collapsed-right-br, +.x4-window-header-default-collapsed-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-tl, +.x4-window-header-default-collapsed-right-bl, +.x4-window-header-default-collapsed-right-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-tl, +.x4-window-header-default-collapsed-right-bl, +.x4-window-header-default-collapsed-right-tr, +.x4-window-header-default-collapsed-right-br, +.x4-window-header-default-collapsed-right-tc, +.x4-window-header-default-collapsed-right-bc, +.x4-window-header-default-collapsed-right-ml, +.x4-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-window-header-default-collapsed-right-tl, .x4-rtl.x4-window-header-default-collapsed-right-ml, .x4-rtl.x4-window-header-default-collapsed-right-bl, .x4-rtl.x4-window-header-default-collapsed-right-tr, .x4-rtl.x4-window-header-default-collapsed-right-mr, .x4-rtl.x4-window-header-default-collapsed-right-br { + background-image: url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-ml, +.x4-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-right-mc { + padding: 1px 0px 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-window-header-default-collapsed-right-tl, +.x4-strict .x4-ie7 .x4-window-header-default-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-window-header-default-collapsed-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-window-header-default-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-window-header-default-collapsed-bottom-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-tr, +.x4-window-header-default-collapsed-bottom-br, +.x4-window-header-default-collapsed-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-tl, +.x4-window-header-default-collapsed-bottom-bl, +.x4-window-header-default-collapsed-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-tl, +.x4-window-header-default-collapsed-bottom-bl, +.x4-window-header-default-collapsed-bottom-tr, +.x4-window-header-default-collapsed-bottom-br, +.x4-window-header-default-collapsed-bottom-tc, +.x4-window-header-default-collapsed-bottom-bc, +.x4-window-header-default-collapsed-bottom-ml, +.x4-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-ml, +.x4-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-bottom-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-window-header-default-collapsed-bottom-tl, +.x4-strict .x4-ie7 .x4-window-header-default-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-window-header-default-collapsed-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-window-header-default-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-window-header-default-collapsed-left-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-5-4-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-tr, +.x4-window-header-default-collapsed-left-br, +.x4-window-header-default-collapsed-left-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-tl, +.x4-window-header-default-collapsed-left-bl, +.x4-window-header-default-collapsed-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-tl, +.x4-window-header-default-collapsed-left-bl, +.x4-window-header-default-collapsed-left-tr, +.x4-window-header-default-collapsed-left-br, +.x4-window-header-default-collapsed-left-tc, +.x4-window-header-default-collapsed-left-bc, +.x4-window-header-default-collapsed-left-ml, +.x4-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-rtl.x4-window-header-default-collapsed-left-tl, .x4-rtl.x4-window-header-default-collapsed-left-ml, .x4-rtl.x4-window-header-default-collapsed-left-bl, .x4-rtl.x4-window-header-default-collapsed-left-tr, .x4-rtl.x4-window-header-default-collapsed-left-mr, .x4-rtl.x4-window-header-default-collapsed-left-br { + background-image: url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-ml, +.x4-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-window-header-default-collapsed-left-mc { + padding: 1px 0px 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-window-header-default-collapsed-left-tl, +.x4-strict .x4-ie7 .x4-window-header-default-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-window-header-default-collapsed-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 337, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-top { + -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; +} + +/* line 341, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-right { + -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; +} + +/* line 345, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-bottom { + -webkit-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-left { + -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; +} + +/* line 355, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default .x4-window-header-icon { + width: 16px; + height: 16px; + color: #04468c; + font-size: 16px; + line-height: 16px; + background-position: center center; +} +/* line 364, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default .x4-window-header-glyph { + color: #04468c; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 380, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-ie8m .x4-window-header-default .x4-window-header-glyph { + color: #698fb9; +} + +/* line 388, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-horizontal .x4-window-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 393, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-horizontal .x4-rtl.x4-window-header-icon-before-title { + margin: 0 0 0 2px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-horizontal .x4-window-header-icon-after-title { + margin: 0 0 0 2px; +} +/* line 403, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-horizontal .x4-rtl.x4-window-header-icon-after-title { + margin: 0 2px 0 0; +} + +/* line 410, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-vertical .x4-window-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 415, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-vertical .x4-rtl.x4-window-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 420, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-vertical .x4-window-header-icon-after-title { + margin: 2px 0 0 0; +} +/* line 425, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-vertical .x4-rtl.x4-window-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 433, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-horizontal .x4-tool-after-title { + margin: 0 0 0 2px; +} +/* line 438, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-horizontal .x4-rtl.x4-tool-after-title { + margin: 0 2px 0 0; +} +/* line 443, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-horizontal .x4-tool-before-title { + margin: 0 2px 0 0; +} +/* line 448, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-horizontal .x4-rtl.x4-tool-before-title { + margin: 0 0 0 2px; +} + +/* line 455, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-vertical .x4-tool-after-title { + margin: 2px 0 0 0; +} +/* line 460, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-vertical .x4-rtl.x4-tool-after-title { + margin: 2px 0 0 0; +} +/* line 465, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-vertical .x4-tool-before-title { + margin: 0 0 2px 0; +} +/* line 470, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-header-default-vertical .x4-rtl.x4-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 483, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-window-default-collapsed .x4-window-header { + border-width: 1px !important; +} + +/* line 489, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x4-nbr .x4-window-default-collapsed .x4-window-header { + border-width: 0 !important; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x4-form-invalid-under { + padding: 2px 2px 2px 20px; + color: #c0272b; + font: normal 11px tahoma, arial, verdana, sans-serif; + line-height: 16px; + background: no-repeat 0 2px; + background-image: url(images/form/exclamation.gif); +} + +/* line 14, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +div.x4-lbl-top-err-icon { + margin-bottom: 3px; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x4-form-invalid-icon { + width: 16px; + height: 16px; + margin: 0 1px; + background-image: url(images/form/exclamation.gif); + background-repeat: no-repeat; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x4-form-item-label { + color: black; + font: normal 12px/14px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} +/* line 31, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x4-toolbar-item .x4-form-item-label { + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} + +/* line 45, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x4-autocontainer-form-item, +.x4-anchor-form-item, +.x4-vbox-form-item, +.x4-table-form-item { + margin-bottom: 5px; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x4-ie6 .x4-form-form-item td { + border-top-width: 0; +} +/* line 59, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x4-ie6 td.x4-form-item-pad { + height: 5px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x4-form-field { + color: black; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x4-form-item, +.x4-form-field { + font: normal 12px tahoma, arial, verdana, sans-serif; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x4-form-type-text textarea.x4-form-invalid-field, .x4-form-type-text input.x4-form-invalid-field, +.x4-form-type-password textarea.x4-form-invalid-field, +.x4-form-type-password input.x4-form-invalid-field, +.x4-form-type-number textarea.x4-form-invalid-field, +.x4-form-type-number input.x4-form-invalid-field, +.x4-form-type-email textarea.x4-form-invalid-field, +.x4-form-type-email input.x4-form-invalid-field, +.x4-form-type-search textarea.x4-form-invalid-field, +.x4-form-type-search input.x4-form-invalid-field, +.x4-form-type-tel textarea.x4-form-invalid-field, +.x4-form-type-tel input.x4-form-invalid-field { + background-color: white; + background-image: url(images/grid/invalid_line.gif); + background-repeat: repeat-x; + background-position: bottom; + border-color: #cc3300; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x4-item-disabled .x4-form-item-label, +.x4-item-disabled .x4-form-field, +.x4-item-disabled .x4-form-display-field, +.x4-item-disabled .x4-form-cb-label, +.x4-item-disabled .x4-form-trigger { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x4-form-text { + color: black; + padding: 1px 3px 2px 3px; + background: white repeat-x 0 0; + border-width: 1px; + border-style: solid; + border-color: #b5b8c8; + background-image: url(images/form/text-bg.gif); + height: 22px; + line-height: 17px; +} +/* line 14, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x4-field-toolbar .x4-form-text { + height: 20px; + line-height: 15px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x4-content-box .x4-form-text { + height: 17px; +} +/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x4-content-box .x4-field-toolbar .x4-form-text { + height: 15px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x4-form-focus { + border-color: #7eadd9; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x4-form-empty-field, +textarea.x4-form-empty-field { + color: gray; +} + +/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x4-quirks .x4-ie .x4-form-text, +.x4-ie7m .x4-form-text { + margin-top: -1px; + margin-bottom: -1px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/TextArea.scss */ +.x4-form-textarea { + line-height: normal; + height: auto; + background-image: url(images/form/text-bg.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x4-form-display-field-body { + height: 22px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x4-toolbar-item .x4-form-display-field-body { + height: 20px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x4-form-display-field { + font: normal 12px/14px tahoma, arial, verdana, sans-serif; + color: black; + margin-top: 4px; +} +/* line 17, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x4-toolbar-item .x4-form-display-field { + margin-top: 4px; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x4-message-box .x4-window-body { + background-color: #ced9e7; + border-width: 0; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x4-message-box-info, +.x4-message-box-warning, +.x4-message-box-question, +.x4-message-box-error { + background-position: top left; + background-repeat: no-repeat; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x4-rtl.x4-message-box-info, .x4-rtl.x4-message-box-warning, .x4-rtl.x4-message-box-question, .x4-rtl.x4-message-box-error { + background-position: top left; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x4-message-box-info { + background-image: url(images/shared/icon-info.gif); +} + +/* line 33, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x4-message-box-warning { + background-image: url(images/shared/icon-warning.gif); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x4-message-box-question { + background-image: url(images/shared/icon-question.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x4-message-box-error { + background-image: url(images/shared/icon-error.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-form-cb-wrap { + height: 22px; +} +/* line 4, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-toolbar-item .x4-form-cb-wrap { + height: 20px; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-form-cb { + margin-top: 5px; +} +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-toolbar-item .x4-form-cb { + margin-top: 4px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-form-checkbox { + width: 13px; + height: 13px; + background: url(images/form/checkbox.gif) no-repeat; +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-form-cb-checked .x4-form-checkbox { + background-position: 0 -13px; +} + +/* Focused */ +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-form-checkbox-focus { + background-position: -13px 0; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-form-cb-checked .x4-form-checkbox-focus { + background-position: -13px -13px; +} + +/* boxLabel */ +/* line 40, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-form-cb-label { + margin-top: 4px; + font: normal 12px/14px tahoma, arial, verdana, sans-serif; +} +/* line 43, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-toolbar-item .x4-form-cb-label { + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-form-cb-label-before { + margin-right: 4px; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-rtl.x4-field .x4-form-cb-label-before { + margin-right: 0; + margin-left: 4px; +} + +/* line 64, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-form-cb-label-after { + margin-left: 4px; +} + +/* line 69, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x4-rtl.x4-field .x4-form-cb-label-after { + margin-left: 0; + margin-right: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x4-form-checkboxgroup-body { + padding: 0 4px; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x4-form-invalid .x4-form-checkboxgroup-body { + border: 1px solid #cc3300; + background-image: url(images/grid/invalid_line.gif); + background-repeat: repeat-x; + background-position: bottom; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x4-check-group-alt { + background: #d1ddef; + border-top: 1px dotted #b5b8c8; + border-bottom: 1px dotted #b5b8c8; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x4-form-check-group-label { + color: black; + padding: 2px; + margin: 0 30px 5px 0; + border-width: 0 0 1px 0; + border-style: solid; + border-color: black; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x4-rtl.x4-form-check-group-label { + margin: 0 0 5px 30px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset { + border: 1px solid #b5b8c8; + padding: 0 10px; + margin: 0 0 10px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-ie8m .x4-fieldset, +.x4-quirks .x4-ie .x4-fieldset { + padding-top: 0; +} +/* line 13, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-ie8m .x4-fieldset .x4-fieldset-body, +.x4-quirks .x4-ie .x4-fieldset .x4-fieldset-body { + padding-top: 0; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-header-checkbox { + line-height: 14px; + margin: 1px 3px 0 0; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-header { + padding: 0 3px 1px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-header .x4-tool { + margin-top: 1px; + padding: 0; +} +/* line 33, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-header .x4-form-cb-wrap { + padding: 1px 0; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-header-text { + font: 11px/14px bold tahoma, arial, verdana, sans-serif; + color: #15428b; + padding: 1px 0; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-header-text-collapsible { + cursor: pointer; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-with-title .x4-fieldset-header-checkbox, +.x4-fieldset-with-title .x4-tool { + margin: 1px 3px 0 0; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-with-title .x4-rtl .x4-fieldset-header-checkbox, +.x4-fieldset-with-title .x4-rtl .x4-tool { + margin: 1px 0 0 3px; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-webkit .x4-fieldset-header { + -webkit-padding-start: 3px; + -webkit-padding-end: 3px; +} + +/* line 76, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-opera .x4-fieldset-with-legend { + margin-top: -1px; +} +/* line 79, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-opera.x4-mac .x4-fieldset-header-text { + padding: 2px 0 0; +} + +/* line 87, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-strict .x4-ie8 .x4-fieldset-header { + margin-bottom: -1px; +} +/* line 91, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-strict .x4-ie8 .x4-fieldset-header .x4-tool, +.x4-strict .x4-ie8 .x4-fieldset-header .x4-fieldset-header-text, +.x4-strict .x4-ie8 .x4-fieldset-header .x4-fieldset-header-checkbox { + position: relative; + top: -1px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-quirks .x4-ie .x4-fieldset-header, +.x4-ie8m .x4-fieldset-header { + padding-left: 1px; + padding-right: 1px; +} + +/* line 109, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-collapsed .x4-fieldset-body { + display: none; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-collapsed { + padding-bottom: 0 !important; + border-width: 1px 1px 0 1px !important; + border-left-color: transparent !important; + border-right-color: transparent !important; +} + +/* line 123, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-ie6 .x4-fieldset-collapsed { + border-width: 1px 0 0 0 !important; + padding-bottom: 0 !important; + margin-left: 1px; + margin-right: 1px; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-ie .x4-fieldset-bwrap { + zoom: 1; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset .x4-tool-toggle { + background-position: 0 -60px; +} +/* line 144, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset .x4-tool-over .x4-tool-toggle { + background-position: -15px -60px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-collapsed .x4-tool-toggle { + background-position: 0 -75px; +} +/* line 156, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-collapsed .x4-tool-over .x4-tool-toggle { + background-position: -15px -75px; +} + +/* IE legend positioning bug */ +/* line 164, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-ie .x4-fieldset-noborder legend { + position: relative; + margin-bottom: 23px; +} + +/* line 170, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-ie .x4-fieldset-noborder legend span { + position: absolute; + left: 16px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset { + overflow: hidden; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-bwrap { + overflow: hidden; + zoom: 1; +} + +/* line 186, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x4-fieldset-body { + overflow: hidden; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x4-form-radio { + width: 13px; + height: 13px; + background: url(images/form/radio.gif) no-repeat; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x4-form-cb-checked .x4-form-radio { + background-position: 0 -13px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x4-form-radio-focus { + background-position: -13px 0; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x4-form-cb-checked .x4-form-radio-focus { + background-position: -13px -13px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-form-trigger { + background: url(images/form/trigger.gif); + width: 17px; + border-width: 0 0 1px; + border-color: #b5b8c8; + border-style: solid; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-rtl.x4-form-trigger-wrap .x4-form-trigger { + background-image: url(images/form/trigger-rtl.gif); +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-trigger-cell { + background-color: white; + width: 17px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-form-trigger-over { + background-position: -17px 0; + border-color: #7eadd9; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-form-trigger-wrap-focus .x4-form-trigger { + background-position: -51px 0; + border-color: #7eadd9; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-form-trigger-wrap-focus .x4-form-trigger-over { + background-position: -68px 0; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-form-trigger-click, +.x4-form-trigger-wrap-focus .x4-form-trigger-click { + background-position: -34px 0; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-form-clear-trigger { + background-image: url(images/form/clear-trigger.gif); +} + +/* line 54, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-rtl.x4-form-trigger-wrap .x4-form-clear-trigger { + background-image: url(images/form/clear-trigger-rtl.gif); +} + +/* line 59, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-form-search-trigger { + background-image: url(images/form/search-trigger.gif); +} + +/* line 64, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-rtl.x4-form-trigger-wrap .x4-form-search-trigger { + background-image: url(images/form/search-trigger-rtl.gif); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-quirks .prefixie6 .x4-form-trigger-input-cell { + height: 22px; +} +/* line 77, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x4-quirks .prefixie6 .x4-field-toolbar .x4-form-trigger-input-cell { + height: 20px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +div.x4-form-spinner-up, +div.x4-form-spinner-down { + background-image: url(images/form/spinner.gif); + background-color: white; + width: 17px; + height: 11px; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-rtl.x4-form-trigger-wrap .x4-form-spinner-up, +.x4-rtl.x4-form-trigger-wrap .x4-form-spinner-down { + background-image: url(images/form/spinner-rtl.gif); +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-form-spinner-down { + background-position: 0 -11px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-form-trigger-wrap-focus .x4-form-spinner-down { + background-position: -51px -11px; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-form-trigger-wrap .x4-form-spinner-down-over { + background-position: -17px -11px; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-form-trigger-wrap-focus .x4-form-spinner-down-over { + background-position: -68px -11px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-form-trigger-wrap .x4-form-spinner-down-click { + background-position: -34px -11px; +} + +/* line 41, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-toolbar-item div.x4-form-spinner-up, +.x4-toolbar-item div.x4-form-spinner-down { + background-image: url(images/form/spinner-small.gif); + height: 10px; +} +/* line 45, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-toolbar-item .x4-form-spinner-down { + background-position: 0 -10px; +} +/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-toolbar-item .x4-form-trigger-wrap-focus .x4-form-spinner-down { + background-position: -51px -10px; +} +/* line 51, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-toolbar-item .x4-form-trigger-wrap .x4-form-spinner-down-over { + background-position: -17px -10px; +} +/* line 54, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-toolbar-item .x4-form-trigger-wrap-focus .x4-form-spinner-down-over { + background-position: -68px -10px; +} +/* line 57, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-toolbar-item .x4-form-trigger-wrap .x4-form-spinner-down-click { + background-position: -34px -10px; +} + +/* line 65, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x4-toolbar-item .x4-rtl.x4-form-trigger-wrap .x4-form-spinner-up, +.x4-toolbar-item .x4-rtl.x4-form-trigger-wrap .x4-form-spinner-down { + background-image: url(images/form/spinner-small-rtl.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-tbar-page-number { + width: 30px; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-tbar-page-first { + background-image: url(images/grid/page-first.gif); +} + +/* line 9, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-tbar-page-prev { + background-image: url(images/grid/page-prev.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-tbar-page-next { + background-image: url(images/grid/page-next.gif); +} + +/* line 17, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-tbar-page-last { + background-image: url(images/grid/page-last.gif); +} + +/* line 21, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-tbar-loading { + background-image: url(images/grid/refresh.gif); +} + +/* line 27, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-item-disabled .x4-tbar-page-first { + background-image: url(images/grid/page-first-disabled.gif); +} +/* line 31, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-item-disabled .x4-tbar-page-prev { + background-image: url(images/grid/page-prev-disabled.gif); +} +/* line 35, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-item-disabled .x4-tbar-page-next { + background-image: url(images/grid/page-next-disabled.gif); +} +/* line 39, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-item-disabled .x4-tbar-page-last { + background-image: url(images/grid/page-last-disabled.gif); +} +/* line 43, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-item-disabled .x4-tbar-loading { + background-image: url(images/grid/refresh-disabled.gif); +} + +/* line 51, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-rtl.x4-tbar-page-first { + background-image: url(images/grid/page-last.gif); +} +/* line 55, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-rtl.x4-tbar-page-prev { + background-image: url(images/grid/page-next.gif); +} +/* line 59, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-rtl.x4-tbar-page-next { + background-image: url(images/grid/page-prev.gif); +} +/* line 63, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-rtl.x4-tbar-page-last { + background-image: url(images/grid/page-first.gif); +} + +/* line 71, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-item-disabled .x4-rtl.x4-tbar-page-first { + background-image: url(images/grid/page-last-disabled.gif); +} +/* line 75, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-item-disabled .x4-rtl.x4-tbar-page-prev { + background-image: url(images/grid/page-next-disabled.gif); +} +/* line 79, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-item-disabled .x4-rtl.x4-tbar-page-next { + background-image: url(images/grid/page-prev-disabled.gif); +} +/* line 83, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x4-item-disabled .x4-rtl.x4-tbar-page-last { + background-image: url(images/grid/page-first-disabled.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x4-boundlist { + border-width: 1px; + border-style: solid; + border-color: #98c0f4; + background: white; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x4-strict .x4-ie7m .x4-boundlist-list-ct { + position: relative; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x4-boundlist-item { + padding: 0 3px; + line-height: 20px; + cursor: pointer; + cursor: hand; + position: relative; + /*allow hover in IE on empty items*/ + zoom: 1; + border-width: 1px; + border-style: dotted; + border-color: white; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x4-boundlist-selected { + background: #cbdaf0; + border-color: #8eabe4; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x4-boundlist-item-over { + background: #dfe8f6; + border-color: #a3bae9; +} + +/* line 43, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x4-boundlist-floating { + border-top-width: 0; +} + +/* line 47, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x4-boundlist-above { + border-top-width: 1px; + border-bottom-width: 1px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker { + border-width: 1px; + border-style: solid; + border-color: #1b376c; + background-color: white; + width: 177px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-header { + padding: 3px 6px; + text-align: center; + background-image: none; + background-color: #23427c; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #264888), color-stop(100%, #1f3a6c)); + background-image: -webkit-linear-gradient(top, #264888, #1f3a6c); + background-image: -moz-linear-gradient(top, #264888, #1f3a6c); + background-image: -o-linear-gradient(top, #264888, #1f3a6c); + background-image: linear-gradient(top, #264888, #1f3a6c); +} + +/* line 32, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-arrow { + width: 15px; + height: 15px; + top: 6px; + cursor: pointer; + background-color: #23427c; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x4-datepicker-arrow:hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 55, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-next { + right: 6px; + background-image: url(images/shared/right-btn.gif); +} + +/* line 60, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-prev { + left: 6px; + background-image: url(images/shared/left-btn.gif); +} + +/* line 76, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-month .x4-btn, +.x4-datepicker-month .x4-btn .x4-btn-tc, +.x4-datepicker-month .x4-btn .x4-btn-tl, +.x4-datepicker-month .x4-btn .x4-btn-tr, +.x4-datepicker-month .x4-btn .x4-btn-mc, +.x4-datepicker-month .x4-btn .x4-btn-ml, +.x4-datepicker-month .x4-btn .x4-btn-mr, +.x4-datepicker-month .x4-btn .x4-btn-bc, +.x4-datepicker-month .x4-btn .x4-btn-bl, +.x4-datepicker-month .x4-btn .x4-btn-br { + background: transparent; + border-width: 0 !important; +} +/* line 83, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-month .x4-btn-inner { + color: white; +} +/* line 88, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-month .x4-btn-split-right { + background-image: url(images/button/s-arrow-light.gif); + padding-right: 12px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-column-header { + width: 25px; + color: #233d6d; + font: normal 10px tahoma, arial, verdana, sans-serif; + text-align: right; + border-width: 0 0 1px; + border-style: solid; + border-color: #b2d1f5; + background-image: none; + background-color: #dfecfb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #edf4fd), color-stop(100%, #cde1f9)); + background-image: -webkit-linear-gradient(top, #edf4fd, #cde1f9); + background-image: -moz-linear-gradient(top, #edf4fd, #cde1f9); + background-image: -o-linear-gradient(top, #edf4fd, #cde1f9); + background-image: linear-gradient(top, #edf4fd, #cde1f9); +} + +/* line 113, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-column-header-inner { + line-height: 19px; + padding: 0 7px 0 0; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-cell { + text-align: right; + border-width: 1px; + border-style: solid; + border-color: white; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-date { + padding: 0 4px 0 0; + font: normal 11px tahoma, arial, verdana, sans-serif; + color: black; + cursor: pointer; + line-height: 18px; +} + +/* line 138, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x4-datepicker-date:hover { + color: black; + background-color: #ddecfe; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-selected { + border-style: solid; + border-color: #8db2e3; +} +/* line 146, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-selected .x4-datepicker-date { + background-color: #dae5f3; + font-weight: bold; +} + +/* line 152, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-today { + border-color: darkred; + border-style: solid; +} + +/* line 159, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-prevday .x4-datepicker-date, +.x4-datepicker-nextday .x4-datepicker-date { + color: #aaaaaa; +} + +/* line 166, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-disabled a.x4-datepicker-date { + background-color: #eeeeee; + cursor: default; + color: #bbbbbb; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-disabled a.x4-datepicker-date:hover { + background-color: #eeeeee; +} + +/* line 179, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-footer, +.x4-monthpicker-buttons { + padding: 4px 0; + border-width: 1px 0 0; + border-style: solid; + border-color: #b2d1f5; + background-image: none; + background-color: #dfecfb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dee8f5), color-stop(49%, #d1dff0), color-stop(51%, #c7d8ed), color-stop(100%, #cbdaee)); + background-image: -webkit-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee); + background-image: -moz-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee); + background-image: -o-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee); + background-image: linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee); + text-align: center; +} +/* line 195, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-datepicker-footer .x4-btn, +.x4-monthpicker-buttons .x4-btn { + margin: 0 2px 0 2px; +} + +/* line 201, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker { + width: 177px; + border-width: 1px; + border-style: solid; + border-color: #1b376c; + background-color: white; +} + +/* line 211, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-months { + border-width: 0 1px 0 0; + border-color: #1b376c; + border-style: solid; + width: 87px; +} +/* line 220, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-months .x4-monthpicker-item { + width: 43px; +} + +/* line 225, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-years { + width: 88px; +} +/* line 228, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-years .x4-monthpicker-item { + width: 44px; +} + +/* line 233, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-item { + margin: 5px 0 4px; + font: normal 11px tahoma, arial, verdana, sans-serif; + text-align: center; +} + +/* line 239, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-item-inner { + margin: 0 5px 0 5px; + color: #15428b; + border-width: 1px; + border-style: solid; + border-color: white; + line-height: 16px; + cursor: pointer; +} + +/* line 254, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x4-monthpicker-item-inner:hover { + background-color: #ddecfe; +} + +/* line 258, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-selected { + background-color: #dae5f3; + border-style: solid; + border-color: #8db2e3; +} + +/* line 264, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-yearnav { + height: 27px; +} + +/* line 268, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-yearnav-button-ct { + width: 44px; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-yearnav-button { + height: 15px; + width: 15px; + cursor: pointer; + margin-top: 6px; + background-color: white; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-yearnav-next { + background-image: url(images/tools/tool-sprites.gif); + background-position: 0 -120px; +} + +/* line 299, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-yearnav-next-over { + background-position: -15px -120px; +} + +/* line 303, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-yearnav-prev { + background-image: url(images/tools/tool-sprites.gif); + background-position: 0 -105px; +} + +/* line 308, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-yearnav-prev-over { + background-position: -15px -105px; +} + +/* line 313, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-small .x4-monthpicker-item { + margin: 2px 0 2px; +} +/* line 317, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-small .x4-monthpicker-item-inner { + margin: 0 5px 0 5px; +} +/* line 321, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-small .x4-monthpicker-yearnav { + height: 22px; +} +/* line 325, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-monthpicker-small .x4-monthpicker-yearnav-button { + margin-top: 3px; +} + +/* line 334, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-nlg .x4-datepicker-header { + background-image: url(images/datepicker/datepicker-header-bg.gif); + background-repeat: repeat-x; + background-position: top left; +} +/* line 343, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x4-nlg .x4-datepicker-footer, +.x4-nlg .x4-monthpicker-buttons { + background-image: url(images/datepicker/datepicker-footer-bg.gif); + background-repeat: repeat-x; + background-position: top left; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-datepicker-header:after { + display: none; + content: "x-slicer:bg:url(images/datepicker/datepicker-header-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-datepicker-footer:after { + display: none; + content: "x-slicer:bg:url(images/datepicker/datepicker-footer-bg.gif)"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */ +.x4-form-date-trigger { + background-image: url(images/form/date-trigger.gif); +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */ +.x4-rtl.x4-form-trigger-wrap .x4-form-date-trigger { + background-image: url(images/form/date-trigger-rtl.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/File.scss */ +.x4-form-file-wrap .x4-form-text { + color: gray; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x4-color-picker { + width: 144px; + height: 90px; + background-color: white; + border-color: white; + border-width: 0; + border-style: solid; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x4-color-picker-item { + width: 18px; + height: 18px; + border-width: 1px; + border-color: white; + border-style: solid; + background-color: white; + cursor: pointer; + padding: 2px; +} +/* line 20, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x4-content-box .x4-color-picker-item { + width: 12px; + height: 12px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +a.x4-color-picker-item:hover { + border-color: #8bb8f3; + background-color: #deecfd; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x4-color-picker-selected { + border-color: #8bb8f3; + background-color: #deecfd; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x4-color-picker-item-inner { + line-height: 10px; + border-color: #aca899; + border-width: 1px; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-btn-text { + background: transparent no-repeat; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-bold, +.x4-menu-item div.x4-edit-bold { + background-position: 0 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-italic, +.x4-menu-item div.x4-edit-italic { + background-position: -16px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-underline, +.x4-menu-item div.x4-edit-underline { + background-position: -32px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-forecolor, +.x4-menu-item div.x4-edit-forecolor { + background-position: -160px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 31, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-backcolor, +.x4-menu-item div.x4-edit-backcolor { + background-position: -176px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-justifyleft, +.x4-menu-item div.x4-edit-justifyleft { + background-position: -112px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-justifycenter, +.x4-menu-item div.x4-edit-justifycenter { + background-position: -128px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-justifyright, +.x4-menu-item div.x4-edit-justifyright { + background-position: -144px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 55, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-insertorderedlist, +.x4-menu-item div.x4-edit-insertorderedlist { + background-position: -80px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 61, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-insertunorderedlist, +.x4-menu-item div.x4-edit-insertunorderedlist { + background-position: -96px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 67, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-increasefontsize, +.x4-menu-item div.x4-edit-increasefontsize { + background-position: -48px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-decreasefontsize, +.x4-menu-item div.x4-edit-decreasefontsize { + background-position: -64px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 79, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-sourceedit, +.x4-menu-item div.x4-edit-sourceedit { + background-position: -192px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 85, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-edit-createlink, +.x4-menu-item div.x4-edit-createlink { + background-position: -208px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 90, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tip .x4-tip-bd .x4-tip-bd-inner { + padding: 5px; + padding-bottom: 1px; +} + +/* line 95, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-tb .x4-font-select { + font-size: 11px; + font-family: inherit; +} + +/* line 100, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-wrap textarea { + font: normal 12px tahoma, arial, verdana, sans-serif; + background-color: white; + resize: none; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-body { + background: white; + border-width: 1px; + border-style: solid; + border-color: #99bce8; +} + +/* line 8, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-empty { + padding: 10px; + color: gray; + background-color: white; + font: normal 11px tahoma, arial, verdana, sans-serif; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-cell { + color: null; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + background-color: white; + border-color: #ededed #d0d0d0 #ededed #d0d0d0; + border-style: solid; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-alt .x4-grid-td { + background-color: #fafafa; +} +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-before-over .x4-grid-td { + border-bottom-style: solid; + border-bottom-color: #dddddd; +} +/* line 35, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-over .x4-grid-td { + border-bottom-style: solid; + border-bottom-color: #dddddd; +} +/* line 40, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-before-selected .x4-grid-td { + border-bottom-style: dotted; + border-bottom-color: #a3bae9; +} +/* line 45, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-selected .x4-grid-td { + border-bottom-style: dotted; + border-bottom-color: #a3bae9; +} +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-before-focused .x4-grid-td { + border-bottom-style: dotted; + border-bottom-color: #464646; + border-bottom-width: 1px; +} +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-focused .x4-grid-td { + background-color: #efefef; +} +/* line 65, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-over .x4-grid-td { + background-color: #efefef; +} +/* line 73, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-selected .x4-grid-td { + background-color: #dfe8f6; +} +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-focused .x4-grid-td { + border-bottom-style: dotted; + border-bottom-color: #464646; + border-bottom-width: 1px; +} +/* line 92, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-table .x4-grid-row-focused-first .x4-grid-td { + border-top: 1px dotted #464646; +} +/* line 103, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-selected .x4-grid-row-summary .x4-grid-td { + border-bottom-color: #dfe8f6; + border-top-width: 0; +} +/* line 108, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-focused .x4-grid-row-summary .x4-grid-td { + border-bottom-color: #efefef; + border-top-width: 0; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-with-row-lines .x4-grid-td { + border-bottom-width: 1px; +} +/* line 121, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-with-row-lines .x4-grid-table { + border-top: 1px solid white; +} +/* line 125, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-with-row-lines .x4-grid-table-over-first { + border-top-style: solid; + border-top-color: #dddddd; +} +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-with-row-lines .x4-grid-table-selected-first { + border-top-style: dotted; + border-top-color: #a3bae9; +} + +/* line 139, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-body .x4-grid-table-focused-first { + border-top: 1px dotted #464646; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-cell-inner { + text-overflow: ellipsis; + padding: 3px 6px 4px 6px; +} + +/* line 163, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-inner { + padding-top: 2px; + padding-bottom: 3px; +} + +/* line 178, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-cell-special { + border-color: #ededed #d0d0d0 #ededed #d0d0d0; + border-style: solid; + border-right-width: 1px; + background-image: none; + background-color: #f6f6f6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: -moz-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: -o-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: linear-gradient(top, #f6f6f6, #e9e9e9); + /**/ + /**/ + /* */ + /**/ + /**/ + /* */ +} +/* line 191, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row-selected .x4-grid-cell-special { + border-right-color: #ededed #aaccf6; + background-image: none; + background-color: #dfe8f6; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dfe8f6), color-stop(100%, #cbdaf0)); + background-image: -webkit-linear-gradient(left, #dfe8f6, #cbdaf0); + background-image: -moz-linear-gradient(left, #dfe8f6, #cbdaf0); + background-image: -o-linear-gradient(left, #dfe8f6, #cbdaf0); + background-image: linear-gradient(left, #dfe8f6, #cbdaf0); +} +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-nlg .x4-grid-cell-special { + background-repeat: repeat-y; + background-image: url(images/grid/cell-special-bg.gif); +} +/* line 211, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-nlg .x4-grid-row-selected .x4-grid-cell-special { + background-image: url(images/grid/cell-special-selected-bg.gif); +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-grid-cell-special .x4-grid-cell-special:after { + display: none; + content: "x-slicer:bg:url(images/grid/cell-special-bg.gif)"; +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-grid-cell-special .x4-grid-cell-special-selected:after { + display: none; + content: "x-slicer:bg:url(images/grid/cell-special-selected-bg.gif)"; +} + +/* line 221, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-rtl.x4-grid-cell-special { + border-right-width: 0; + border-left-width: 1px; +} + +/* line 228, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-dirty-cell { + background: url(images/grid/dirty.gif) no-repeat 0 0; +} + +/* line 233, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-rtl.x4-grid-dirty-cell { + background-image: url(images/grid/dirty-rtl.gif); + background-position: right 0; +} + +/* line 241, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-row .x4-grid-cell-selected { + color: null; + background-color: #b8cfee; +} + +/* line 247, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-with-col-lines .x4-grid-cell { + border-right-width: 1px; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-rtl.x4-grid-with-col-lines .x4-grid-cell { + border-right-width: 0; + border-left-width: 1px; +} + +/* line 259, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x4-grid-resize-marker { + width: 1px; + background-color: #0f0f0f; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x4-grid-drop-indicator { + position: absolute; + height: 1px; + line-height: 0px; + background-color: #77BC71; + overflow: visible; + pointer-events: none; +} +/* line 9, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x4-grid-drop-indicator .x4-grid-drop-indicator-left { + position: absolute; + top: -8px; + left: -12px; + background-image: url(images/grid/dd-insert-arrow-right.png); + height: 16px; + width: 16px; +} +/* line 18, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x4-grid-drop-indicator .x4-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 29, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x4-ie6 .x4-grid-drop-indicator-left { + background-image: url(images/grid/dd-insert-arrow-right.gif); +} +/* line 33, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x4-ie6 .x4-grid-drop-indicator-right { + background-image: url(images/grid/dd-insert-arrow-left.gif); +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + width: 9px; + height: 9px; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top { + background-image: url(images/grid/col-move-top.gif); +} + +/* line 11, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-bottom { + background-image: url(images/grid/col-move-bottom.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x4-grid-header-ct { + border: 1px solid #99bce8; + border-bottom-color: #c5c5c5; + background-color: #c5c5c5; + background-image: none; + background-color: #c5c5c5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #e3e4e6)); + background-image: -webkit-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -moz-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -o-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: linear-gradient(top, #f9f9f9, #e3e4e6); +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x4-accordion-item .x4-grid-header-ct { + border-width: 0 0 1px !important; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x4-accordion-item .x4-grid-header-ct-hidden { + border: 0 !important; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x4-grid-body { + border-top-color: #c5c5c5; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x4-hmenu-sort-asc .x4-menu-item-icon { + background-image: url(images/grid/hmenu-asc.gif); +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x4-hmenu-sort-desc .x4-menu-item-icon { + background-image: url(images/grid/hmenu-desc.gif); +} + +/* line 40, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x4-cols-icon .x4-menu-item-icon { + background-image: url(images/grid/columns.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header { + border-right: 1px solid #c5c5c5; + color: black; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + background-image: none; + background-color: #c5c5c5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #e3e4e6)); + background-image: -webkit-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -moz-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -o-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: linear-gradient(top, #f9f9f9, #e3e4e6); +} + +/* line 18, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-rtl.x4-column-header { + border-right: 0 none; + border-left: 1px solid #c5c5c5; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-group-sub-header { + background: transparent; + border-top: 1px solid #c5c5c5; +} +/* line 29, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-group-sub-header .x4-column-header-inner { + padding: 3px 6px 5px 6px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-inner { + padding: 4px 6px 5px 6px; + text-overflow: ellipsis; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-over, +.x4-column-header-sort-ASC, +.x4-column-header-sort-DESC { + background-image: none; + background-color: #aaccf6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ebf3fd), color-stop(39%, #ebf3fd), color-stop(40%, #d9e8fb), color-stop(100%, #d9e8fb)); + background-image: -webkit-linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb); + background-image: -moz-linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb); + background-image: -o-linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb); + background-image: linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb); +} + +/* line 51, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-nlg .x4-grid-header-ct, +.x4-nlg .x4-column-header { + background-image: url(images/grid/column-header-bg.gif); +} + +/* line 62, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-nlg .x4-column-header-over, +.x4-nlg .x4-column-header-sort-ASC, +.x4-nlg .x4-column-header-sort-DESC { + background-image: url(images/grid/column-header-over-bg.gif); +} + +/* line 70, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-open { + background-color: transparent; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-open .x4-column-header-trigger { + background-color: transparent; +} + +/* line 78, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-trigger { + width: 14px; + cursor: pointer; + background-color: transparent; + background-position: 0 center; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-rtl.x4-column-header-trigger { + background-position: right center; +} + +/* line 96, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-align-right .x4-column-header-text { + margin-right: 9px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-align-right .x4-rtl.x4-column-header-text { + margin-right: 0; + margin-left: 9px; +} + +/* line 110, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-sort-ASC .x4-column-header-text, +.x4-column-header-sort-DESC .x4-column-header-text { + padding-right: 12px; + background-position: right center; +} + +/* line 119, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-sort-ASC .x4-rtl.x4-column-header-text, +.x4-column-header-sort-DESC .x4-rtl.x4-column-header-text { + padding-right: 0; + padding-left: 12px; + background-position: 0 center; +} + +/* line 127, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-sort-ASC .x4-column-header-text { + background-image: url(images/grid/sort_asc.gif); +} + +/* line 130, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x4-column-header-sort-DESC .x4-column-header-text { + background-image: url(images/grid/sort_desc.gif); +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-column-header:after { + display: none; + content: "x-slicer:bg:url(images/grid/column-header-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-column-header-over:after { + display: none; + content: "x-slicer:bg:url(images/grid/column-header-over-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x4-grid-cell-inner-action-col { + padding: 2px 2px 2px 2px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-inner-action-col { + padding-top: 1px; + padding-bottom: 1px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x4-action-col-cell .x4-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x4-action-col-icon { + height: 16px; + width: 16px; + cursor: pointer; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x4-grid-cell-inner-checkcolumn { + padding: 4px 6px 3px 6px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-inner-checkcolumn { + padding-top: 3px; + padding-bottom: 2px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x4-grid-checkcolumn { + width: 13px; + height: 13px; + background: url(images/form/checkbox.gif) 0 0 no-repeat; +} +/* line 17, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x4-item-disabled .x4-grid-checkcolumn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x4-grid-checkcolumn-checked { + background-position: 0 -13px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/RowNumberer.scss */ +.x4-grid-cell-inner-row-numberer { + padding: 3px 5px 4px 3px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x4-grid-group-hd { + border-width: 0 0 2px 0; + border-style: solid; + border-color: #99bbe8; + padding: 10px 4px 4px 4px; + background: white; + cursor: pointer; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x4-grid-group-hd-not-collapsible { + cursor: default; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x4-grid-group-hd-collapsible .x4-grid-group-title { + background-repeat: no-repeat; + background-position: left center; + background-image: url(images/grid/group-collapse.gif); + padding: 0 0 0 14px; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x4-rtl.x4-grid-view .x4-grid-group-hd-collapsible .x4-grid-group-title { + background-position: right center; + padding: 0 14px 0 0; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x4-grid-group-title { + color: #3764a0; + font: bold 11px/13px tahoma, arial, verdana, sans-serif; +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x4-grid-group-hd-collapsed .x4-grid-group-title { + background-image: url(images/grid/group-expand.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x4-grid-group-collapsed .x4-grid-group-title { + background-image: url(images/grid/group-expand.gif); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x4-group-by-icon { + background-image: url(images/grid/group-by.gif); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x4-show-groups-icon { + background-image: url(images/grid/group-by.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ +.x4-grid-rowbody { + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + padding: 5px 6px 5px 6px; +} +/* line 6, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ +.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-rowbody { + padding-top: 6px; + padding-bottom: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowWrap.scss */ +.x4-grid-rowwrap { + border-color: #ededed #d0d0d0 #ededed #d0d0d0; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x4-summary-bottom { + border-bottom-color: #c5c5c5; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x4-docked-summary { + border-width: 1px; + border-color: #99bce8; + border-style: solid; +} +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x4-docked-summary .x4-grid-table { + width: 100%; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x4-grid-row-summary .x4-grid-cell, +.x4-grid-row-summary .x4-grid-rowwrap, +.x4-grid-row-summary .x4-grid-cell-rowbody { + border-color: #ededed #d0d0d0 #ededed #d0d0d0; + background-color: transparent !important; + border-top-width: 0; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x4-grid-with-row-lines .x4-grid-table-summary { + border: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x4-grid-locked .x4-grid-inner-locked { + border-width: 0 1px 0 0; + border-style: solid; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x4-grid-locked .x4-rtl.x4-grid-inner-locked { + border-width: 0 0 0 1px; +} + +/* line 17, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x4-grid-inner-locked .x4-column-header-last, +.x4-grid-inner-locked .x4-grid-cell-last { + border-right-width: 0!important; +} +/* line 21, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x4-grid-inner-locked .x4-rtl.x4-column-header-last { + border-left-width: 0!important; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x4-rtl.x4-grid-inner-locked .x4-grid-row .x4-column-header-last { + border-left: 0 none; +} +/* line 32, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x4-rtl.x4-grid-inner-locked .x4-grid-row .x4-grid-cell-last { + border-left: 0 none; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x4-hmenu-lock .x4-menu-item-icon { + background-image: url(images/grid/hmenu-lock.gif); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x4-hmenu-unlock .x4-menu-item-icon { + background-image: url(images/grid/hmenu-unlock.gif); +} + +/* line 4, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-text { + font: normal 11px/15px tahoma, arial, verdana, sans-serif; + padding: 1px 5px 2px 5px; + height: 20px; +} +/* line 15, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-content-box .x4-grid-editor .x4-form-text { + height: 15px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-gecko .x4-grid-editor .x4-form-text { + padding-left: 4px; + padding-right: 4px; +} +/* line 31, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-trigger { + height: 20px; +} +/* line 39, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-spinner-up, .x4-grid-editor .x4-form-spinner-down { + height: 10px; +} +/* line 47, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-cb { + margin-top: 4px; +} +/* line 51, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-cb-wrap { + height: 20px; +} +/* line 58, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-display-field-body { + height: 20px; +} +/* line 62, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-display-field { + font: normal 11px/15px tahoma, arial, verdana, sans-serif; + padding: 2px 6px 3px 6px; + text-overflow: ellipsis; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-action-col-field { + padding: 2px 2px 2px 2px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x4-tree-cell-editor .x4-form-text { + padding-left: 2px; + padding-right: 2px; +} +/* line 8, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x4-gecko .x4-tree-cell-editor .x4-form-text { + padding-left: 1px; + padding-right: 1px; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor .x4-field { + margin: 0 1px 0 1px; +} +/* line 7, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor .x4-form-display-field { + padding: 2px 5px 3px 5px; +} +/* line 16, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor .x4-form-action-col-field { + padding: 2px 1px 2px 1px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor .x4-form-text { + padding: 1px 4px 2px 4px; +} +/* line 30, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-gecko .x4-grid-row-editor .x4-form-text { + padding-left: 3px; + padding-right: 3px; +} +/* line 38, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor .x4-panel-body { + border-top: 1px solid #99bce8 !important; + border-bottom: 1px solid #99bce8 !important; + padding: 4px 0 4px 0; + background-color: #eaf1fb; +} +/* line 48, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-with-col-lines .x4-grid-row-editor .x4-form-cb { + margin-right: 1px; +} +/* line 53, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-with-col-lines .x4-grid-row-editor .x4-rtl.x4-form-cb { + margin-right: 0; + margin-left: 1px; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: 4px 4px 4px 4px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-color: #eaf1fb; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-mc { + background-color: #eaf1fb; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-grid-row-editor-buttons-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-grid-row-editor-buttons-default-bottom-frameInfo { + font-family: th-0-0-5-5-0-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-tr, +.x4-grid-row-editor-buttons-default-bottom-br, +.x4-grid-row-editor-buttons-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-tl, +.x4-grid-row-editor-buttons-default-bottom-bl, +.x4-grid-row-editor-buttons-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-tl, +.x4-grid-row-editor-buttons-default-bottom-bl, +.x4-grid-row-editor-buttons-default-bottom-tr, +.x4-grid-row-editor-buttons-default-bottom-br, +.x4-grid-row-editor-buttons-default-bottom-tc, +.x4-grid-row-editor-buttons-default-bottom-bc, +.x4-grid-row-editor-buttons-default-bottom-ml, +.x4-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-ml, +.x4-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-bottom-mc { + padding: 4px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-grid-row-editor-buttons-default-bottom-tl, +.x4-strict .x4-ie7 .x4-grid-row-editor-buttons-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-grid-row-editor-buttons-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: 4px 4px 4px 4px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #eaf1fb; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-mc { + background-color: #eaf1fb; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-grid-row-editor-buttons-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-grid-row-editor-buttons-default-top-frameInfo { + font-family: th-5-5-0-0-1-1-0-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-tr, +.x4-grid-row-editor-buttons-default-top-br, +.x4-grid-row-editor-buttons-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-tl, +.x4-grid-row-editor-buttons-default-top-bl, +.x4-grid-row-editor-buttons-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-tl, +.x4-grid-row-editor-buttons-default-top-bl, +.x4-grid-row-editor-buttons-default-top-tr, +.x4-grid-row-editor-buttons-default-top-br, +.x4-grid-row-editor-buttons-default-top-tc, +.x4-grid-row-editor-buttons-default-top-bc, +.x4-grid-row-editor-buttons-default-top-ml, +.x4-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-ml, +.x4-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-grid-row-editor-buttons-default-top-mc { + padding: 0px 0px 4px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-grid-row-editor-buttons-default-top-tl, +.x4-strict .x4-ie7 .x4-grid-row-editor-buttons-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-grid-row-editor-buttons-default-top:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 97, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor-buttons-default-bottom { + top: 29px; +} + +/* line 103, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor-buttons-default-top { + bottom: 29px; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor-buttons { + border-color: #99bce8; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-row-editor-update-button { + margin-right: 2px; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-row-editor-cancel-button { + margin-left: 2px; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-rtl.x4-row-editor-update-button { + margin-left: 2px; + margin-right: auto; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-rtl.x4-row-editor-cancel-button { + margin-right: 2px; + margin-left: auto; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor-errors .x4-tip-body { + padding: 5px; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-grid-row-editor-errors-item { + list-style: disc; + margin-left: 15px; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x4-rtl.x4-grid-row-editor-errors .x4-grid-row-editor-errors-item { + margin-left: 0; + margin-right: 15px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x4-grid-cell-inner-row-expander { + padding: 6px 7px 5px 7px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-inner-row-expander { + padding-top: 5px; + padding-bottom: 4px; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x4-grid-row-expander { + width: 9px; + height: 9px; + cursor: pointer; + background-image: url(images/grid/group-collapse.gif); +} +/* line 20, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x4-grid-row-collapsed .x4-grid-row-expander { + background-image: url(images/grid/group-expand.gif); +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/property/Grid.scss */ +.x4-grid-cell-inner-property-name { + background-image: url(images/grid/property-cell-bg.gif); + background-repeat: no-repeat; + background-position: -16px 2px; + padding-left: 12px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-layout-ct { + background-color: white; + padding: 0; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-hd .x4-panel-header-text-container { + color: black; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + text-transform: none; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-item { + margin: 0; +} +/* line 16, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-item .x4-accordion-hd { + background: #d9e7f8; + border-top-color: #f3f7fb; + padding: 4px 5px 5px 5px; +} +/* line 22, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-item .x4-accordion-hd-sibling-expanded { + border-top-color: #99bce8; +} +/* line 26, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-item .x4-accordion-hd-last-collapsed { + border-bottom-color: #d9e7f8; +} +/* line 30, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-item .x4-accordion-body { + border-width: 0; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-hd .x4-tool-collapse-top, +.x4-accordion-hd .x4-tool-collapse-bottom { + background-position: 0 -255px; +} +/* line 42, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-hd .x4-tool-expand-top, +.x4-accordion-hd .x4-tool-expand-bottom { + background-position: 0 -240px; +} +/* line 50, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-hd .x4-tool-over .x4-tool-collapse-top, +.x4-accordion-hd .x4-tool-over .x4-tool-collapse-bottom { + background-position: -15px -255px; +} +/* line 55, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-hd .x4-tool-over .x4-tool-expand-top, +.x4-accordion-hd .x4-tool-over .x4-tool-expand-bottom { + background-position: -15px -240px; +} +/* line 61, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x4-accordion-hd .x4-tool-img { + background-color: #d9e7f8; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-collapse-el { + cursor: pointer; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-layout-split-left, +.x4-layout-split-right { + top: 50%; + margin-top: -18px; + width: 5px; + height: 35px; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-layout-split-top, +.x4-layout-split-bottom { + left: 50%; + width: 35px; + height: 5px; + margin-left: -18px; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-layout-split-left { + background-image: url(images/util/splitter/mini-left.gif); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-layout-split-right { + background-image: url(images/util/splitter/mini-right.gif); +} + +/* line 31, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-rtl.x4-layout-split-left { + background-image: url(images/util/splitter/mini-right.gif); +} +/* line 35, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-rtl.x4-layout-split-right { + background-image: url(images/util/splitter/mini-left.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-layout-split-top { + background-image: url(images/util/splitter/mini-top.gif); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-layout-split-bottom { + background-image: url(images/util/splitter/mini-bottom.gif); +} + +/* line 50, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-splitter-collapsed .x4-layout-split-left { + background-image: url(images/util/splitter/mini-right.gif); +} +/* line 54, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-splitter-collapsed .x4-layout-split-right { + background-image: url(images/util/splitter/mini-left.gif); +} +/* line 60, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-splitter-collapsed .x4-rtl.x4-layout-split-left { + background-image: url(images/util/splitter/mini-left.gif); +} +/* line 64, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-splitter-collapsed .x4-rtl.x4-layout-split-right { + background-image: url(images/util/splitter/mini-right.gif); +} +/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-splitter-collapsed .x4-layout-split-top { + background-image: url(images/util/splitter/mini-bottom.gif); +} +/* line 74, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-splitter-collapsed .x4-layout-split-bottom { + background-image: url(images/util/splitter/mini-top.gif); +} + +/* line 79, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-splitter-active { + background-color: #b4b4b4; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); + opacity: 0.8; +} +/* line 83, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x4-splitter-active .x4-collapse-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/layout/container/Border.scss */ +.x4-border-layout-ct { + background-color: #dfe8f6; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-body { + background: #f0f0f0; + padding: 2px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-icon-separator { + left: 24px; + border-left: solid 1px #e0e0e0; + background-color: white; + width: 2px; +} + +/* line 27, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-rtl.x4-menu .x4-menu-icon-separator { + left: auto; + right: 24px; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item { + padding: 1px; + cursor: pointer; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-indent { + margin-left: 30px; +} + +/* line 51, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-rtl.x4-menu-item-indent { + margin-left: 0; + margin-right: 30px; +} + +/* line 57, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-active { + background-image: none; + background-color: #d9e8fb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7f0fc), color-stop(100%, #c7ddf9)); + background-image: -webkit-linear-gradient(top, #e7f0fc, #c7ddf9); + background-image: -moz-linear-gradient(top, #e7f0fc, #c7ddf9); + background-image: -o-linear-gradient(top, #e7f0fc, #c7ddf9); + background-image: linear-gradient(top, #e7f0fc, #c7ddf9); + border-color: #a9cbf5; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + border-width: 1px; + border-style: solid; + padding: 0; +} +/* line 75, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-nlg .x4-menu-item-active { + background: #d9e8fb repeat-x left top; + background-image: url(images/menu/menu-item-active-bg.gif); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-link { + line-height: 22px; + padding: 0 0 0 30px; + display: inline-block; +} + +/* line 91, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-rtl.x4-menu-item-link { + padding: 0 30px 0 0; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-right-check-item-text { + padding-right: 22px; +} + +/* line 102, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-rtl.x4-right-check-item-text { + padding-left: 22px; + padding-right: 0; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-icon { + width: 16px; + height: 16px; + top: 4px; + left: 3px; + background-position: center center; +} + +/* line 116, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-glyph { + font-size: 16px; + line-height: 16px; + color: #222222; + opacity: 0.5; +} +/* line 132, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-ie8m .x4-menu-item-glyph { + color: #898989; +} + +/* line 142, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-gecko .x4-menu-item-active .x4-menu-item-icon, +.x4-quirks .x4-menu-item-active .x4-menu-item-icon, +.x4-ie9m .x4-menu-item-active .x4-menu-item-icon { + top: 3px; + left: 2px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-rtl.x4-menu-item-icon { + left: auto; + right: 3px; +} + +/* line 159, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-gecko .x4-menu-item-active .x4-rtl.x4-menu-item-icon, +.x4-quirks .x4-menu-item-active .x4-rtl.x4-menu-item-icon, +.x4-ie9m .x4-menu-item-active .x4-rtl.x4-menu-item-icon { + left: auto; + right: 2px; +} + +/* line 168, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-icon-right { + width: 16px; + height: 16px; + top: 3px; + right: 3px; + background-position: center center; +} + +/* line 177, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-rtl.x4-menu-item-icon-right { + right: auto; + left: 3px; +} + +/* line 183, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-text { + font-size: 11px; + color: #222222; + cursor: pointer; + margin-right: 16px; +} + +/* line 193, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +a.x4-rtl .x4-menu-item-text { + margin-right: 0; + margin-left: 16px; +} + +/* line 201, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-checked .x4-menu-item-icon, .x4-menu-item-checked .x4-menu-item-icon-right { + background-image: url(images/menu/checked.gif); +} +/* line 204, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-checked .x4-menu-group-icon { + background-image: url(images/menu/group-checked.gif); +} + +/* line 210, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-unchecked .x4-menu-item-icon, .x4-menu-item-unchecked .x4-menu-item-icon-right { + background-image: url(images/menu/unchecked.gif); +} +/* line 213, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-unchecked .x4-menu-group-icon { + background-image: none; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-separator { + height: 2px; + border-top: solid 1px #e0e0e0; + background-color: white; + margin: 2px 0; + padding: 0; +} + +/* line 226, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-arrow { + width: 12px; + height: 9px; + top: 7px; + right: 0; + background-image: url(images/menu/menu-parent.gif); +} + +/* line 239, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-gecko .x4-menu-item-active .x4-menu-item-arrow, +.x4-quirks .x4-menu-item-active .x4-menu-item-arrow, +.x4-ie9m .x4-menu-item-active .x4-menu-item-arrow { + top: 6px; + right: -1px; +} + +/* line 246, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-rtl.x4-menu-item-arrow { + left: 0; + right: auto; + background-image: url(images/menu/menu-parent-left.gif); +} + +/* line 257, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-gecko .x4-menu-item-active .x4-rtl.x4-menu-item-arrow, +.x4-ie9m .x4-menu-item-active .x4-rtl.x4-menu-item-arrow, +.x4-quirks .x4-menu-item-active .x4-rtl.x4-menu-item-arrow { + right: auto; + left: -1px; +} + +/* line 264, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/* line 270, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-content-box .x4-menu-icon-separator { + width: 1px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-content-box .x4-menu-item-separator { + height: 1px; +} + +/* line 281, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-ie .x4-menu-item-disabled .x4-menu-item-icon { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 285, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-ie .x4-menu-item-disabled .x4-menu-item-text { + background-color: transparent; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-date-item { + border-color: #99BBE8; +} + +/* line 300, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-item .x4-form-item-label { + font-size: 11px; + color: #222222; +} + +/* line 306, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-scroll-top { + height: 8px; + background-image: url(images/menu/scroll-top.gif); +} + +/* line 310, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-scroll-bottom { + height: 8px; + background-image: url(images/menu/scroll-bottom.gif); +} + +/* line 316, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x4-menu-scroll-top, .x4-menu-scroll-bottom { + background-color: #f0f0f0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-menu-item-link:after { + display: none; + content: "x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool { + cursor: pointer; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-img { + overflow: hidden; + width: 15px; + height: 15px; + background-image: url(images/tools/tool-sprites.gif); + margin: 0; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-placeholder { + visibility: hidden; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-close { + background-position: 0 0; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-minimize { + background-position: 0 -15px; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-maximize { + background-position: 0 -30px; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-restore { + background-position: 0 -45px; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-toggle { + background-position: 0 -60px; +} +/* line 53, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-panel-collapsed .x4-tool-toggle { + background-position: 0 -75px; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-gear { + background-position: 0 -90px; +} + +/* line 62, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-prev { + background-position: 0 -105px; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-next { + background-position: 0 -120px; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-pin { + background-position: 0 -135px; +} + +/* line 74, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-unpin { + background-position: 0 -150px; +} + +/* line 78, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-right { + background-position: 0 -165px; +} + +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-left { + background-position: 0 -180px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-down { + background-position: 0 -195px; +} + +/* line 90, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-up { + background-position: 0 -210px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-refresh { + background-position: 0 -225px; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-plus { + background-position: 0 -240px; +} + +/* line 102, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-minus { + background-position: 0 -255px; +} + +/* line 106, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-search { + background-position: 0 -270px; +} + +/* line 110, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-save { + background-position: 0 -285px; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-help { + background-position: 0 -300px; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-print { + background-position: 0 -315px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-expand { + background-position: 0 -330px; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-collapse { + background-position: 0 -345px; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-resize { + background-position: 0 -360px; +} + +/* line 134, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-move { + background-position: 0 -375px; +} + +/* line 139, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-expand-bottom, +.x4-tool-collapse-bottom { + background-position: 0 -195px; +} + +/* line 144, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-expand-top, +.x4-tool-collapse-top { + background-position: 0 -210px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-expand-left, +.x4-tool-collapse-left { + background-position: 0 -180px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-expand-right, +.x4-tool-collapse-right { + background-position: 0 -165px; +} + +/* line 161, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-rtl.x4-tool-expand-left, .x4-rtl.x4-tool-collapse-left { + background-position: 0 -165px; +} +/* line 166, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-rtl.x4-tool-expand-right, .x4-rtl.x4-tool-collapse-right { + background-position: 0 -180px; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-close { + background-position: -15px 0; +} +/* line 178, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-minimize { + background-position: -15px -15px; +} +/* line 182, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-maximize { + background-position: -15px -30px; +} +/* line 186, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-restore { + background-position: -15px -45px; +} +/* line 190, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-toggle { + background-position: -15px -60px; +} +/* line 195, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-panel-collapsed .x4-tool-over .x4-tool-toggle { + background-position: -15px -75px; +} +/* line 200, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-gear { + background-position: -15px -90px; +} +/* line 204, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-prev { + background-position: -15px -105px; +} +/* line 208, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-next { + background-position: -15px -120px; +} +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-pin { + background-position: -15px -135px; +} +/* line 216, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-unpin { + background-position: -15px -150px; +} +/* line 220, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-right { + background-position: -15px -165px; +} +/* line 224, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-left { + background-position: -15px -180px; +} +/* line 228, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-down { + background-position: -15px -195px; +} +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-up { + background-position: -15px -210px; +} +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-refresh { + background-position: -15px -225px; +} +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-plus { + background-position: -15px -240px; +} +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-minus { + background-position: -15px -255px; +} +/* line 248, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-search { + background-position: -15px -270px; +} +/* line 252, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-save { + background-position: -15px -285px; +} +/* line 256, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-help { + background-position: -15px -300px; +} +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-print { + background-position: -15px -315px; +} +/* line 264, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-expand { + background-position: -15px -330px; +} +/* line 268, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-collapse { + background-position: -15px -345px; +} +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-resize { + background-position: -15px -360px; +} +/* line 276, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-move { + background-position: -15px -375px; +} +/* line 281, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-expand-bottom, +.x4-tool-over .x4-tool-collapse-bottom { + background-position: -15px -195px; +} +/* line 286, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-expand-top, +.x4-tool-over .x4-tool-collapse-top { + background-position: -15px -210px; +} +/* line 291, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-expand-left, +.x4-tool-over .x4-tool-collapse-left { + background-position: -15px -180px; +} +/* line 296, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-tool-expand-right, +.x4-tool-over .x4-tool-collapse-right { + background-position: -15px -165px; +} +/* line 303, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-rtl.x4-tool-expand-left, .x4-tool-over .x4-rtl.x4-tool-collapse-left { + background-position: -15px -165px; +} +/* line 308, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x4-tool-over .x4-rtl.x4-tool-expand-right, .x4-tool-over .x4-rtl.x4-tool-collapse-right { + background-position: -15px -180px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-handle { + position: absolute; + z-index: 100; + font-size: 1px; + line-height: 6px; + overflow: hidden; + zoom: 1; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + background-color: #fff; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-collapsed .x4-resizable-handle { + display: none; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-north { + cursor: n-resize; +} +/* line 26, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-south { + cursor: s-resize; +} +/* line 29, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-east { + cursor: e-resize; +} +/* line 32, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-west { + cursor: w-resize; +} +/* line 35, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-southeast { + cursor: se-resize; +} +/* line 38, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-northwest { + cursor: nw-resize; +} +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-northeast { + cursor: ne-resize; +} +/* line 44, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-southwest { + cursor: sw-resize; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-handle-east { + width: 6px; + height: 100%; + right: 0; + top: 0; +} + +/* line 56, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-handle-south { + width: 100%; + height: 6px; + left: 0; + bottom: 0; +} + +/* line 63, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-handle-west { + width: 6px; + height: 100%; + left: 0; + top: 0; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-handle-north { + width: 100%; + height: 6px; + left: 0; + top: 0; +} + +/* line 77, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-handle-southeast { + width: 6px; + height: 6px; + right: 0; + bottom: 0; + z-index: 101; +} + +/* line 85, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-handle-northwest { + width: 6px; + height: 6px; + left: 0; + top: 0; + z-index: 101; +} + +/* line 93, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-handle-northeast { + width: 6px; + height: 6px; + right: 0; + top: 0; + z-index: 101; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-handle-southwest { + width: 6px; + height: 6px; + left: 0; + bottom: 0; + z-index: 101; +} + +/*IE rounding error*/ +/* line 111, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-ie .x4-resizable-handle-east { + margin-right: -1px; + /*IE rounding error*/ +} +/* line 115, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-ie .x4-resizable-handle-south { + margin-bottom: -1px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-pinned .x4-resizable-handle, +.x4-resizable-over .x4-resizable-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 127, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-window .x4-window-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-window-collapsed .x4-window-handle { + display: none; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-proxy { + border: 1px dashed #3b5a82; + position: absolute; + overflow: hidden; + z-index: 50000; +} + +/* line 148, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-east, +.x4-resizable-over .x4-resizable-handle-west, +.x4-resizable-pinned .x4-resizable-handle-east, +.x4-resizable-pinned .x4-resizable-handle-west { + background-image: url(images/sizer/e-handle.gif); +} +/* line 154, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-south, +.x4-resizable-over .x4-resizable-handle-north, +.x4-resizable-pinned .x4-resizable-handle-south, +.x4-resizable-pinned .x4-resizable-handle-north { + background-image: url(images/sizer/s-handle.gif); +} +/* line 159, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-southeast, +.x4-resizable-pinned .x4-resizable-handle-southeast { + background-position: top left; + background-image: url(images/sizer/se-handle.gif); +} +/* line 164, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-northwest, +.x4-resizable-pinned .x4-resizable-handle-northwest { + background-position: bottom right; + background-image: url(images/sizer/nw-handle.gif); +} +/* line 169, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-northeast, +.x4-resizable-pinned .x4-resizable-handle-northeast { + background-position: bottom left; + background-image: url(images/sizer/ne-handle.gif); +} +/* line 174, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-southwest, +.x4-resizable-pinned .x4-resizable-handle-southwest { + background-position: top right; + background-image: url(images/sizer/sw-handle.gif); +} + +/* Horizontal styles */ +/* line 2, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-horz { + padding-left: 7px; + background: no-repeat 0 -15px; +} +/* line 6, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-horz .x4-slider-end { + padding-right: 7px; + background: no-repeat right -30px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-horz .x4-slider-inner { + height: 15px; +} + +/* line 20, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-ie6 .x4-form-item .x4-slider-horz, +.x4-ie7 .x4-form-item .x4-slider-horz, +.x4-quirks .x4-ie .x4-form-item .x4-slider-horz { + margin-top: 4px; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-horz .x4-slider-thumb { + width: 14px; + height: 15px; + margin-left: -7px; + background-image: url(images/slider/slider-thumb.png); +} + +/* line 33, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-horz .x4-slider-thumb-over { + background-position: -14px -15px; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-horz .x4-slider-thumb-drag { + background-position: -28px -30px; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-rtl.x4-slider-horz { + padding-left: 0; + padding-right: 7px; + background-position: right -30px; +} +/* line 47, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-rtl.x4-slider-horz .x4-slider-end { + padding-right: 0; + padding-left: 7px; + background-position: left -15px; +} +/* line 53, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-rtl.x4-slider-horz .x4-slider-thumb { + margin-right: -7px; +} + +/* Vertical styles */ +/* line 60, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-vert { + padding-top: 7px; + background: no-repeat -30px 0; +} + +/* line 65, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-vert .x4-slider-end { + padding-bottom: 7px; + background: no-repeat -15px bottom; + width: 15px; +} + +/* line 71, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-vert .x4-slider-inner { + width: 15px; +} + +/* line 75, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-vert .x4-slider-thumb { + width: 15px; + height: 14px; + margin-bottom: -7px; + background-image: url(images/slider/slider-v-thumb.png); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-vert .x4-slider-thumb-over { + background-position: -15px -14px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-vert .x4-slider-thumb-drag { + background-position: -30px -28px; +} + +/* line 92, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-horz, +.x4-slider-horz .x4-slider-end, +.x4-slider-horz .x4-slider-inner { + background-image: url(images/slider/slider-bg.png); +} + +/* line 98, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x4-slider-vert, +.x4-slider-vert .x4-slider-end, +.x4-slider-vert .x4-slider-inner { + background-image: url(images/slider/slider-v-bg.png); +} + +/** + * 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-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-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} [$ui-border-width=$tab-border-width] + * The border-width of 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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 + * + * @param {color} [$ui-border-bottom-color=$tabbar-strip-border-color] + * The bottom border color of inactive tabs. + * + * @member Ext.tab.Tab + */ +/** + * Creates a visual theme for a Tab Bar + * + * @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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 {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 {number} [$ui-tab-height] + * The height of tabs that will be used in this tabbar UI. The tabbar body is given + * a fixed height to leave room for the tabs, and so that the tabbar does not collapse + * when it does not contain any tabs. + * + * @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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-tab-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-mc { + background-image: url(images/tab/tab-default-top-fbg.gif); + background-position: 0 top; + background-color: #deecfd; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-tab-default-top { + background-image: url(images/tab/tab-default-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-tab-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-tab-default-top-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-tr, +.x4-tab-default-top-br, +.x4-tab-default-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-tl, +.x4-tab-default-top-bl, +.x4-tab-default-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-tl, +.x4-tab-default-top-bl, +.x4-tab-default-top-tr, +.x4-tab-default-top-br, +.x4-tab-default-top-tc, +.x4-tab-default-top-bc, +.x4-tab-default-top-ml, +.x4-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-ml, +.x4-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-top-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-tab-default-top-tl, +.x4-strict .x4-ie7 .x4-tab-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-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: 3px 9px 3px 9px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-mc { + background-image: url(images/tab/tab-default-bottom-fbg.gif); + background-position: 0 top; + background-color: #deecfd; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-tab-default-bottom { + background-image: url(images/tab/tab-default-bottom-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-tab-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-tab-default-bottom-frameInfo { + font-family: th-0-0-4-4-0-1-1-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-tr, +.x4-tab-default-bottom-br, +.x4-tab-default-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-tl, +.x4-tab-default-bottom-bl, +.x4-tab-default-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-tl, +.x4-tab-default-bottom-bl, +.x4-tab-default-bottom-tr, +.x4-tab-default-bottom-br, +.x4-tab-default-bottom-tc, +.x4-tab-default-bottom-bc, +.x4-tab-default-bottom-ml, +.x4-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-ml, +.x4-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-bottom-mc { + padding: 3px 6px 0px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-tab-default-bottom-tl, +.x4-strict .x4-ie7 .x4-tab-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-bottom:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-bottom-fbg.gif), bg:url(images/tab/tab-default-bottom-bg.gif), corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-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: 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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-mc { + background-image: url(images/tab/tab-default-top-fbg.gif); + background-position: 0 top; + background-color: #deecfd; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-tab-default-left { + background-image: url(images/tab/tab-default-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-tab-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-tab-default-left-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-tr, +.x4-tab-default-left-br, +.x4-tab-default-left-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-tl, +.x4-tab-default-left-bl, +.x4-tab-default-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-tl, +.x4-tab-default-left-bl, +.x4-tab-default-left-tr, +.x4-tab-default-left-br, +.x4-tab-default-left-tc, +.x4-tab-default-left-bc, +.x4-tab-default-left-ml, +.x4-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-ml, +.x4-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-left-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-tab-default-left-tl, +.x4-strict .x4-ie7 .x4-tab-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-left:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-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: 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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-mc { + background-image: url(images/tab/tab-default-top-fbg.gif); + background-position: 0 top; + background-color: #deecfd; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nlg .x4-tab-default-right { + background-image: url(images/tab/tab-default-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-nbr .x4-tab-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x4-nbr .x4-tab-default-right-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-tr, +.x4-tab-default-right-br, +.x4-tab-default-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-tl, +.x4-tab-default-right-bl, +.x4-tab-default-right-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-tl, +.x4-tab-default-right-bl, +.x4-tab-default-right-tr, +.x4-tab-default-right-br, +.x4-tab-default-right-tc, +.x4-tab-default-right-bc, +.x4-tab-default-right-ml, +.x4-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-ml, +.x4-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-tab-default-right-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x4-strict .x4-ie7 .x4-tab-default-right-tl, +.x4-strict .x4-ie7 .x4-tab-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-right:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 307, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default { + border-color: #8db3e3; + margin: 0 0 0 2px; + cursor: pointer; +} +/* line 312, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default .x4-tab-inner { + font-size: 11px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + color: #416da3; + line-height: 13px; +} +/* line 322, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default .x4-tab-icon-el { + width: 16px; + height: 16px; + line-height: 16px; + background-position: center center; +} +/* line 329, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default .x4-tab-glyph { + font-size: 16px; + color: #416da3; + opacity: 0.5; +} +/* line 343, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-ie8m .x4-tab-default .x4-tab-glyph { + color: #8facd0; +} +/* line 351, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-strict .x4-ie9 .x4-tab-bar-vertical .x4-tab-default { + padding-left: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-strict .x4-ie9 .x4-tab-bar-vertical .x4-tab-default .x4-tab-button { + padding-left: 9px; +} +/* line 358, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-strict .x4-ie9 .x4-tab-bar-vertical .x4-tab-default .x4-tab-icon-el { + left: 9px; +} + +/* line 366, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-icon .x4-tab-inner { + width: 16px; +} + +/* line 373, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-rtl.x4-tab-default { + margin: 0 2px 0 0; +} + +/* line 379, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-rtl.x4-tab-default { + margin: 0 2px 0 0; +} + +/* line 384, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-left { + margin: 0 2px 0 0; +} + +/* line 389, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-rtl.x4-tab-default-left { + margin: 0 0 0 2px; +} + +/* line 396, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top, +.x4-tab-default-left, +.x4-tab-default-right { + border-bottom: 1px solid #99bce8; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + -webkit-box-shadow: 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 -1px 0 0px 0 inset, white 1px 0 0px 0 inset; + box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; +} +/* line 403, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nlg .x4-tab-default-top, .x4-nlg +.x4-tab-default-left, .x4-nlg +.x4-tab-default-right { + background-image: url(images/tab/tab-default-top-bg.gif); +} + +/* line 417, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom { + border-top: 1px solid #99bce8; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + -webkit-box-shadow: 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 -1px 0 0px 0 inset, white 1px 0 0px 0 inset; + box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; +} +/* line 424, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nlg .x4-tab-default-bottom { + background-image: url(images/tab/tab-default-bottom-bg.gif); +} + +/* line 438, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x4-ie9m .x4-tab-default-left { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} + +/* line 449, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-rtl.x4-tab-default-left { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x4-ie9m .x4-rtl.x4-tab-default-left { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +} + +/* line 454, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x4-ie9m .x4-tab-default-right { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +} + +/* line 465, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-rtl.x4-tab-default-right { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x4-ie9m .x4-rtl.x4-tab-default-right { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} + +/* line 471, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-icon-text-left .x4-tab-inner { + padding-left: 20px; +} + +/* line 478, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-rtl.x4-tab-default-icon-text-left .x4-tab-inner { + padding-left: 0; + padding-right: 20px; +} + +/* line 485, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-over { + background-color: #e8f2ff; +} +/* line 509, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-over .x4-tab-glyph { + color: #416da3; +} +/* line 516, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-ie8m .x4-tab-default-over .x4-tab-glyph { + color: #94afd1; +} + +/* line 525, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-over, +.x4-tab-default-left-over, +.x4-tab-default-right-over { + background-image: none; + background-color: #e8f2ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff)); + background-image: -webkit-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: -moz-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: -o-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); +} +/* line 529, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nlg .x4-tab-default-top-over, .x4-nlg +.x4-tab-default-left-over, .x4-nlg +.x4-tab-default-right-over { + background-image: url(images/tab/tab-default-top-over-bg.gif); +} + +/* line 534, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-over { + background-image: none; + background-color: #e8f2ff; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff)); + background-image: -webkit-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: -moz-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: -o-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); +} +/* line 538, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nlg .x4-tab-default-bottom-over { + background-image: url(images/tab/tab-default-bottom-over-bg.gif); +} + +/* line 545, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-active { + background-color: #deecfd; +} +/* line 551, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-active .x4-tab-inner { + color: #15498b; +} +/* line 566, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-active .x4-tab-glyph { + color: #15498b; +} +/* line 573, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-ie8m .x4-tab-default-active .x4-tab-glyph { + color: #799ac4; +} + +/* line 581, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-active, +.x4-tab-default-left-active, +.x4-tab-default-right-active { + border-bottom: 1px solid #deecfd; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); +} +/* line 587, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nlg .x4-tab-default-top-active, .x4-nlg +.x4-tab-default-left-active, .x4-nlg +.x4-tab-default-right-active { + background-image: url(images/tab/tab-default-top-active-bg.gif); +} + +/* line 594, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-active { + border-top: 1px solid #deecfd; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: -moz-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: -o-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); +} +/* line 600, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nlg .x4-tab-default-bottom-active { + background-image: url(images/tab/tab-default-bottom-active-bg.gif); +} + +/* line 607, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-disabled { + border-color: #bbd2ef; + cursor: default; +} +/* line 620, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-disabled .x4-tab-inner { + color: #c3b3b3; +} +/* line 639, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-disabled .x4-tab-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 644, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-disabled .x4-tab-glyph { + color: #c3b3b3; + opacity: 0.3; + filter: none; +} +/* line 658, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-ie8m .x4-tab-default-disabled .x4-tab-glyph { + color: #d8dae4; +} + +/* line 667, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-disabled, +.x4-tab-default-left-disabled, +.x4-tab-default-right-disabled { + border-color: #bbd2ef #bbd2ef #99bce8; +} + +/* line 671, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-disabled { + border-color: #99bce8 #bbd2ef #bbd2ef #bbd2ef; +} + +/* line 678, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-disabled, +.x4-tab-default-left-disabled, +.x4-tab-default-right-disabled { + background-image: none; + background-color: #e1ecfa; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe)); + background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe); + background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe); + background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe); + background-image: linear-gradient(top, #e1ecfa, #ecf4fe); +} +/* line 682, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nlg .x4-tab-default-top-disabled, .x4-nlg +.x4-tab-default-left-disabled, .x4-nlg +.x4-tab-default-right-disabled { + background-image: url(images/tab/tab-default-top-disabled-bg.gif); +} + +/* line 687, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-disabled { + background-image: none; + background-color: #e1ecfa; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe)); + background-image: -webkit-linear-gradient(bottom, #e1ecfa, #ecf4fe); + background-image: -moz-linear-gradient(bottom, #e1ecfa, #ecf4fe); + background-image: -o-linear-gradient(bottom, #e1ecfa, #ecf4fe); + background-image: linear-gradient(bottom, #e1ecfa, #ecf4fe); +} +/* line 691, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nlg .x4-tab-default-bottom-disabled { + background-image: url(images/tab/tab-default-bottom-disabled-bg.gif); +} + +/* line 699, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nbr .x4-tab-default { + background-image: none; +} + +/* line 710, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-over .x4-frame-tl, +.x4-tab-default-top-over .x4-frame-bl, +.x4-tab-default-top-over .x4-frame-tr, +.x4-tab-default-top-over .x4-frame-br, +.x4-tab-default-top-over .x4-frame-tc, +.x4-tab-default-top-over .x4-frame-bc, +.x4-tab-default-left-over .x4-frame-tl, +.x4-tab-default-left-over .x4-frame-bl, +.x4-tab-default-left-over .x4-frame-tr, +.x4-tab-default-left-over .x4-frame-br, +.x4-tab-default-left-over .x4-frame-tc, +.x4-tab-default-left-over .x4-frame-bc, +.x4-tab-default-right-over .x4-frame-tl, +.x4-tab-default-right-over .x4-frame-bl, +.x4-tab-default-right-over .x4-frame-tr, +.x4-tab-default-right-over .x4-frame-br, +.x4-tab-default-right-over .x4-frame-tc, +.x4-tab-default-right-over .x4-frame-bc { + background-image: url(images/tab/tab-default-top-over-corners.gif); +} +/* line 714, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-over .x4-frame-ml, +.x4-tab-default-top-over .x4-frame-mr, +.x4-tab-default-left-over .x4-frame-ml, +.x4-tab-default-left-over .x4-frame-mr, +.x4-tab-default-right-over .x4-frame-ml, +.x4-tab-default-right-over .x4-frame-mr { + background-image: url(images/tab/tab-default-top-over-sides.gif); +} +/* line 717, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-over .x4-frame-mc, +.x4-tab-default-left-over .x4-frame-mc, +.x4-tab-default-right-over .x4-frame-mc { + background-color: #e8f2ff; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-top-over-fbg.gif); +} + +/* line 732, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-over .x4-frame-tl, +.x4-tab-default-bottom-over .x4-frame-bl, +.x4-tab-default-bottom-over .x4-frame-tr, +.x4-tab-default-bottom-over .x4-frame-br, +.x4-tab-default-bottom-over .x4-frame-tc, +.x4-tab-default-bottom-over .x4-frame-bc { + background-image: url(images/tab/tab-default-bottom-over-corners.gif); +} +/* line 736, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-over .x4-frame-ml, +.x4-tab-default-bottom-over .x4-frame-mr { + background-image: url(images/tab/tab-default-bottom-over-sides.gif); +} +/* line 739, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-over .x4-frame-mc { + background-color: #e8f2ff; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-bottom-over-fbg.gif); +} + +/* line 756, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-active .x4-frame-tl, +.x4-tab-default-top-active .x4-frame-bl, +.x4-tab-default-top-active .x4-frame-tr, +.x4-tab-default-top-active .x4-frame-br, +.x4-tab-default-top-active .x4-frame-tc, +.x4-tab-default-top-active .x4-frame-bc, +.x4-tab-default-left-active .x4-frame-tl, +.x4-tab-default-left-active .x4-frame-bl, +.x4-tab-default-left-active .x4-frame-tr, +.x4-tab-default-left-active .x4-frame-br, +.x4-tab-default-left-active .x4-frame-tc, +.x4-tab-default-left-active .x4-frame-bc, +.x4-tab-default-right-active .x4-frame-tl, +.x4-tab-default-right-active .x4-frame-bl, +.x4-tab-default-right-active .x4-frame-tr, +.x4-tab-default-right-active .x4-frame-br, +.x4-tab-default-right-active .x4-frame-tc, +.x4-tab-default-right-active .x4-frame-bc { + background-image: url(images/tab/tab-default-top-active-corners.gif); +} +/* line 760, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-active .x4-frame-ml, +.x4-tab-default-top-active .x4-frame-mr, +.x4-tab-default-left-active .x4-frame-ml, +.x4-tab-default-left-active .x4-frame-mr, +.x4-tab-default-right-active .x4-frame-ml, +.x4-tab-default-right-active .x4-frame-mr { + background-image: url(images/tab/tab-default-top-active-sides.gif); +} +/* line 763, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-active .x4-frame-mc, +.x4-tab-default-left-active .x4-frame-mc, +.x4-tab-default-right-active .x4-frame-mc { + background-color: #deecfd; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-top-active-fbg.gif); +} + +/* line 778, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-active .x4-frame-tl, +.x4-tab-default-bottom-active .x4-frame-bl, +.x4-tab-default-bottom-active .x4-frame-tr, +.x4-tab-default-bottom-active .x4-frame-br, +.x4-tab-default-bottom-active .x4-frame-tc, +.x4-tab-default-bottom-active .x4-frame-bc { + background-image: url(images/tab/tab-default-bottom-active-corners.gif); +} +/* line 782, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-active .x4-frame-ml, +.x4-tab-default-bottom-active .x4-frame-mr { + background-image: url(images/tab/tab-default-bottom-active-sides.gif); +} +/* line 785, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-active .x4-frame-mc { + background-color: #deecfd; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-bottom-active-fbg.gif); +} + +/* line 802, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-disabled .x4-frame-tl, +.x4-tab-default-top-disabled .x4-frame-bl, +.x4-tab-default-top-disabled .x4-frame-tr, +.x4-tab-default-top-disabled .x4-frame-br, +.x4-tab-default-top-disabled .x4-frame-tc, +.x4-tab-default-top-disabled .x4-frame-bc, +.x4-tab-default-left-disabled .x4-frame-tl, +.x4-tab-default-left-disabled .x4-frame-bl, +.x4-tab-default-left-disabled .x4-frame-tr, +.x4-tab-default-left-disabled .x4-frame-br, +.x4-tab-default-left-disabled .x4-frame-tc, +.x4-tab-default-left-disabled .x4-frame-bc, +.x4-tab-default-right-disabled .x4-frame-tl, +.x4-tab-default-right-disabled .x4-frame-bl, +.x4-tab-default-right-disabled .x4-frame-tr, +.x4-tab-default-right-disabled .x4-frame-br, +.x4-tab-default-right-disabled .x4-frame-tc, +.x4-tab-default-right-disabled .x4-frame-bc { + background-image: url(images/tab/tab-default-top-disabled-corners.gif); +} +/* line 806, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-disabled .x4-frame-ml, +.x4-tab-default-top-disabled .x4-frame-mr, +.x4-tab-default-left-disabled .x4-frame-ml, +.x4-tab-default-left-disabled .x4-frame-mr, +.x4-tab-default-right-disabled .x4-frame-ml, +.x4-tab-default-right-disabled .x4-frame-mr { + background-image: url(images/tab/tab-default-top-disabled-sides.gif); +} +/* line 809, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-top-disabled .x4-frame-mc, +.x4-tab-default-left-disabled .x4-frame-mc, +.x4-tab-default-right-disabled .x4-frame-mc { + background-color: #e1ecfa; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-top-disabled-fbg.gif); +} + +/* line 824, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-disabled .x4-frame-tl, +.x4-tab-default-bottom-disabled .x4-frame-bl, +.x4-tab-default-bottom-disabled .x4-frame-tr, +.x4-tab-default-bottom-disabled .x4-frame-br, +.x4-tab-default-bottom-disabled .x4-frame-tc, +.x4-tab-default-bottom-disabled .x4-frame-bc { + background-image: url(images/tab/tab-default-bottom-disabled-corners.gif); +} +/* line 828, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-disabled .x4-frame-ml, +.x4-tab-default-bottom-disabled .x4-frame-mr { + background-image: url(images/tab/tab-default-bottom-disabled-sides.gif); +} +/* line 831, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-bottom-disabled .x4-frame-mc { + background-color: #e1ecfa; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-bottom-disabled-fbg.gif); +} + +/* line 850, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nbr .x4-tab-default-top, +.x4-nbr .x4-tab-default-left, +.x4-nbr .x4-tab-default-right { + border-bottom-width: 1px !important; +} +/* line 853, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-nbr .x4-tab-default-bottom { + border-top-width: 1px !important; +} + +/* line 861, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default .x4-tab-close-btn { + width: 11px; + height: 11px; + background-image: url(images/tab/tab-default-close.gif); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 870, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default .x4-tab-close-btn-over { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 880, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default .x4-tab-close-btn { + top: 2px; + right: 2px; +} + +/* line 886, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-rtl.x4-tab-default .x4-tab-close-btn { + right: auto; + left: 2px; +} + +/* line 924, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-disabled .x4-tab-close-btn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 939, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-tab-default-closable .x4-tab-wrap { + padding-right: 14px; +} + +/* line 944, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x4-rtl.x4-tab-default-closable .x4-tab-wrap { + padding-right: 0px; + padding-left: 14px; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-top-over:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-top-over-bg.gif), corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif), frame-bg:url(images/tab/tab-default-top-over-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-bottom-over:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-bottom-over-bg.gif), corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif), frame-bg:url(images/tab/tab-default-bottom-over-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-top-active:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-top-active-bg.gif), corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif), frame-bg:url(images/tab/tab-default-top-active-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-bottom-active:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-bottom-active-bg.gif), corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif), frame-bg:url(images/tab/tab-default-bottom-active-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-top-disabled:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-top-disabled-bg.gif), corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif), frame-bg:url(images/tab/tab-default-top-disabled-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-default-bottom-disabled:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-bottom-disabled-bg.gif), corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif), frame-bg:url(images/tab/tab-default-bottom-disabled-fbg.gif)"; +} + +/**/ +/* */ +/* line 94, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default { + border-style: solid; + border-color: #99bce8; +} + +/* line 100, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-top { + padding: 1px 0 0; + border-width: 1px 1px 0; +} + +/* line 107, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-bottom { + padding: 0 0 1px 0; + border-width: 0 1px 1px 1px; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-left { + padding: 0 0 0 1px; + border-width: 1px 0 1px 1px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-rtl.x4-tab-bar-default-left { + padding: 0 1px 0 0; + border-width: 1px 1px 1px 0; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-right { + padding: 0 1px 0 0; + border-width: 1px 1px 1px 0; +} + +/* line 138, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-rtl.x4-tab-bar-default-right { + padding: 0 0 0 1px; + border-width: 1px 0 1px 1px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-horizontal { + height: 25px; +} +/* line 153, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-content-box .x4-tab-bar-default-horizontal { + height: 23px; +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-vertical { + width: 25px; +} +/* line 165, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-content-box .x4-tab-bar-default-vertical { + width: 23px; +} + +/* line 172, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-body-default-top { + padding-bottom: 2px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-body-default-bottom { + padding-top: 2px; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-body-default-left { + padding-right: 2px; +} + +/* line 185, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-rtl.x4-tab-bar-body-default-left { + padding-right: 0; + padding-left: 2px; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-body-default-right { + padding-left: 2px; +} + +/* line 196, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-rtl.x4-tab-bar-body-default-right { + padding-left: 0; + padding-right: 2px; +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-strip-default { + border-style: solid; + border-color: #99bce8; + background-color: #deecfd; +} + +/* line 210, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-content-box .x4-tab-bar-strip-default-horizontal { + height: 2px; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-content-box .x4-tab-bar-strip-default-vertical { + width: 2px; +} + +/* line 224, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-strip-default-top { + border-width: 1px 0 0 0; + height: 3px; +} +/* line 227, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-plain .x4-tab-bar-strip-default-top { + border-width: 1px 1px 0; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-strip-default-bottom { + border-width: 0 0 1px 0; + height: 3px; +} +/* line 235, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-plain .x4-tab-bar-strip-default-bottom { + border-width: 0 1px 1px 1px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-strip-default-left { + border-width: 0 0 0 1px; + width: 3px; +} +/* line 243, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-plain .x4-tab-bar-strip-default-left { + border-width: 1px 0 1px 1px; +} + +/* line 249, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-rtl.x4-tab-bar-strip-default-left { + border-width: 0 1px 0 0; +} +/* line 251, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-plain .x4-rtl.x4-tab-bar-strip-default-left { + border-width: 1px 1px 1px 0; +} + +/* line 257, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-strip-default-right { + border-width: 0 1px 0 0; + width: 3px; +} +/* line 260, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-plain .x4-tab-bar-strip-default-right { + border-width: 1px 1px 1px 0; +} + +/* line 266, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-rtl.x4-tab-bar-strip-default-right { + border-width: 0 0 0 1px; +} +/* line 268, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-plain .x4-rtl.x4-tab-bar-strip-default-right { + border-width: 1px 0 1px 1px; +} + +/* line 274, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default { + background-color: #cbdbef; +} + +/* line 279, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-top { + background-image: none; + background-color: #cbdbef; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef)); + background-image: -webkit-linear-gradient(top, #dde8f5, #cbdbef); + background-image: -moz-linear-gradient(top, #dde8f5, #cbdbef); + background-image: -o-linear-gradient(top, #dde8f5, #cbdbef); + background-image: linear-gradient(top, #dde8f5, #cbdbef); +} +/* line 283, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-nlg .x4-tab-bar-default-top { + background: url(images/tab-bar/tab-bar-default-top-bg.gif); +} + +/* line 289, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-bottom { + background-image: none; + background-color: #cbdbef; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef)); + background-image: -webkit-linear-gradient(bottom, #dde8f5, #cbdbef); + background-image: -moz-linear-gradient(bottom, #dde8f5, #cbdbef); + background-image: -o-linear-gradient(bottom, #dde8f5, #cbdbef); + background-image: linear-gradient(bottom, #dde8f5, #cbdbef); +} +/* line 293, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-nlg .x4-tab-bar-default-bottom { + background: url(images/tab-bar/tab-bar-default-bottom-bg.gif) bottom 0; +} + +/* line 299, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-left { + background-image: none; + background-color: #cbdbef; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef)); + background-image: -webkit-linear-gradient(left, #dde8f5, #cbdbef); + background-image: -moz-linear-gradient(left, #dde8f5, #cbdbef); + background-image: -o-linear-gradient(left, #dde8f5, #cbdbef); + background-image: linear-gradient(left, #dde8f5, #cbdbef); +} +/* line 303, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-nlg .x4-tab-bar-default-left { + background: url(images/tab-bar/tab-bar-default-left-bg.gif); +} + +/* line 309, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-right { + background-image: none; + background-color: #cbdbef; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef)); + background-image: -webkit-linear-gradient(right, #dde8f5, #cbdbef); + background-image: -moz-linear-gradient(right, #dde8f5, #cbdbef); + background-image: -o-linear-gradient(right, #dde8f5, #cbdbef); + background-image: linear-gradient(right, #dde8f5, #cbdbef); +} +/* line 313, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-nlg .x4-tab-bar-default-right { + background: url(images/tab-bar/tab-bar-default-right-bg.gif) 0 right; +} + +/* line 323, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default .x4-box-scroller { + cursor: pointer; +} +/* line 363, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default .x4-tabbar-scroll-left, +.x4-tab-bar-default .x4-tabbar-scroll-right { + height: 20px; + width: 18px; +} +/* line 369, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default .x4-tabbar-scroll-top, +.x4-tab-bar-default .x4-tabbar-scroll-bottom { + width: 20px; + height: 18px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-bottom .x4-box-scroller { + margin-top: 1px; +} +/* line 381, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-right .x4-box-scroller { + margin-left: 1px; +} +/* line 386, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-rtl.x4-tab-bar-default-right .x4-box-scroller { + margin-left: 0; + margin-right: 1px; +} + +/* line 456, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-top .x4-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-left-top.gif); +} +/* line 459, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-top .x4-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-right-top.gif); +} + +/* line 466, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-rtl.x4-tab-bar-default-top .x4-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-right-top.gif); +} +/* line 469, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-rtl.x4-tab-bar-default-top .x4-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-left-top.gif); +} + +/* line 476, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-bottom .x4-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-left-bottom.gif); +} +/* line 479, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-bottom .x4-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-right-bottom.gif); +} + +/* line 486, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-rtl.x4-tab-bar-default-bottom .x4-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-right-bottom.gif); +} +/* line 489, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-rtl.x4-tab-bar-default-bottom .x4-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-left-bottom.gif); +} + +/* line 496, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-left .x4-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-left.gif); +} +/* line 499, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-left .x4-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-left.gif); +} + +/* line 506, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-rtl.x4-tab-bar-default-left .x4-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-right.gif); +} +/* line 509, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-rtl.x4-tab-bar-default-left .x4-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-right.gif); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-right .x4-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-right.gif); +} +/* line 519, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default-right .x4-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-right.gif); +} + +/* line 526, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-rtl.x4-tab-bar-default-right .x4-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-left.gif); +} +/* line 529, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-rtl.x4-tab-bar-default-right .x4-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-left.gif); +} + +/* line 539, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default .x4-tabbar-scroll-left-hover, +.x4-tab-bar-default .x4-tabbar-scroll-right-hover { + background-position: -18px 0; +} +/* line 544, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default .x4-tabbar-scroll-top-hover, +.x4-tab-bar-default .x4-tabbar-scroll-bottom-hover { + background-position: 0 -18px; +} +/* line 549, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-default .x4-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + cursor: default; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-bar-default-top:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-top-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-bar-default-bottom:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-bottom-bg.gif), stretch:top"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-bar-default-left:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-left-bg.gif), stretch:right"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x4-tab-bar-default-right:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-right-bg.gif), stretch:left"; +} + +/**/ +/* */ +/* line 998, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x4-tab-bar-plain { + border-width: 0; + padding: 0; + height: 23px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x4-column-header-checkbox { + border-color: #c5c5c5; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x4-grid-row-checker, +.x4-column-header-checkbox .x4-column-header-text { + height: 13px; + width: 13px; + background-image: url(images/form/checkbox.gif); + line-height: 13px; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x4-column-header-checkbox .x4-column-header-inner { + padding: 5px 5px 4px 5px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x4-grid-cell-row-checker .x4-grid-cell-inner { + padding: 4px 5px 3px 5px; +} +/* line 23, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-row-checker .x4-grid-cell-inner { + padding-top: 3px; + padding-bottom: 2px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x4-grid-hd-checker-on .x4-column-header-text, +.x4-grid-row-selected .x4-grid-row-checker, +.x4-grid-row-checked .x4-grid-row-checker { + background-position: 0 -13px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-expander { + cursor: pointer; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-arrows .x4-tree-expander { + background-image: url(images/tree/arrows.gif); +} +/* line 11, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-arrows .x4-tree-expander-over .x4-tree-expander { + background-position: -32px center; +} +/* line 15, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-arrows .x4-grid-tree-node-expanded .x4-tree-expander { + background-position: -16px center; +} +/* line 19, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-arrows .x4-grid-tree-node-expanded .x4-tree-expander-over .x4-tree-expander { + background-position: -48px center; +} +/* line 24, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-arrows .x4-rtl.x4-tree-expander { + background: url(images/tree/arrows-rtl.gif) no-repeat -48px center; +} +/* line 28, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-arrows .x4-tree-expander-over .x4-rtl.x4-tree-expander { + background-position: -16px center; +} +/* line 32, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-arrows .x4-grid-tree-node-expanded .x4-rtl.x4-tree-expander { + background-position: -32px center; +} +/* line 36, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-arrows .x4-grid-tree-node-expanded .x4-tree-expander-over .x4-rtl.x4-tree-expander { + background-position: 0 center; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-tree-elbow { + background-image: url(images/tree/elbow.gif); +} +/* line 48, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-tree-elbow-end { + background-image: url(images/tree/elbow-end.gif); +} +/* line 52, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-tree-elbow-plus { + background-image: url(images/tree/elbow-plus.gif); +} +/* line 56, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-plus.gif); +} +/* line 60, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-grid-tree-node-expanded .x4-tree-elbow-plus { + background-image: url(images/tree/elbow-minus.gif); +} +/* line 64, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-grid-tree-node-expanded .x4-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-minus.gif); +} +/* line 68, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-tree-elbow-line { + background-image: url(images/tree/elbow-line.gif); +} +/* line 73, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-rtl.x4-tree-elbow { + background-image: url(images/tree/elbow-rtl.gif); +} +/* line 77, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-rtl.x4-tree-elbow-end { + background-image: url(images/tree/elbow-end-rtl.gif); +} +/* line 81, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-rtl.x4-tree-elbow-plus { + background-image: url(images/tree/elbow-plus-rtl.gif); +} +/* line 85, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-rtl.x4-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-plus-rtl.gif); +} +/* line 89, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-grid-tree-node-expanded .x4-rtl.x4-tree-elbow-plus { + background-image: url(images/tree/elbow-minus-rtl.gif); +} +/* line 93, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-grid-tree-node-expanded .x4-rtl.x4-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-minus-rtl.gif); +} +/* line 97, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-lines .x4-rtl.x4-tree-elbow-line { + background-image: url(images/tree/elbow-line-rtl.gif); +} + +/* line 104, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-no-row-lines .x4-tree-expander { + background-image: url(images/tree/elbow-plus-nl.gif); +} +/* line 108, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-no-row-lines .x4-grid-tree-node-expanded .x4-tree-expander { + background-image: url(images/tree/elbow-minus-nl.gif); +} +/* line 113, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-no-row-lines .x4-rtl.x4-tree-expander { + background-image: url(images/tree/elbow-plus-nl-rtl.gif); +} +/* line 117, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-no-row-lines .x4-grid-tree-node-expanded .x4-rtl.x4-tree-expander { + background-image: url(images/tree/elbow-minus-nl-rtl.gif); +} + +/* line 123, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-icon { + width: 16px; + height: 20px; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-elbow-img { + width: 16px; + height: 20px; + margin-right: 0; +} + +/* line 135, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-rtl.x4-tree-elbow-img { + margin-right: 0; + margin-left: 0; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-icon, +.x4-tree-elbow-img, +.x4-tree-checkbox { + margin-top: -3px; + margin-bottom: -4px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-icon-leaf { + background-image: url(images/tree/leaf.gif); +} + +/* line 156, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-rtl.x4-tree-icon-leaf { + background-image: url(images/tree/leaf-rtl.gif); +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-icon-parent { + background-image: url(images/tree/folder.gif); +} + +/* line 166, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-rtl.x4-tree-icon-parent { + background-image: url(images/tree/folder-rtl.gif); +} + +/* line 171, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-grid-tree-node-expanded .x4-tree-icon-parent { + background-image: url(images/tree/folder-open.gif); +} + +/* line 176, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-grid-tree-node-expanded .x4-rtl.x4-tree-icon-parent { + background-image: url(images/tree/folder-open-rtl.gif); +} + +/* line 181, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-checkbox { + margin-right: 3px; + top: 4px; + width: 13px; + height: 13px; + background-image: url(images/form/checkbox.gif); +} + +/* line 190, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-rtl.x4-tree-checkbox { + margin-right: 0; + margin-left: 3px; +} + +/* line 196, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-checkbox-checked { + background-position: 0 -13px; +} + +/* line 200, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-grid-tree-loading .x4-tree-icon { + background-image: url(images/tree/loading.gif); +} + +/* line 205, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-grid-tree-loading .x4-rtl.x4-tree-icon { + background-image: url(images/tree/loading.gif); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-grid-cell-inner-treecolumn { + font-size: 1px; + line-height: 0; +} + +/* line 221, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-tree-node-text { + font-size: 11px; + line-height: 13px; + padding-left: 3px; +} + +/* line 228, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-rtl.x4-tree-node-text { + padding-left: 0; + padding-right: 3px; +} + +/* line 235, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x4-grid-cell-inner-treecolumn { + padding: 3px 6px 4px 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x4-tree-drop-ok-append .x4-dd-drop-icon { + background-image: url(images/tree/drop-append.gif); +} + +/* line 5, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x4-tree-drop-ok-above .x4-dd-drop-icon { + background-image: url(images/tree/drop-above.gif); +} + +/* line 9, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x4-tree-drop-ok-below .x4-dd-drop-icon { + background-image: url(images/tree/drop-below.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x4-tree-drop-ok-between .x4-dd-drop-icon { + background-image: url(images/tree/drop-between.gif); +} + +/* line 17, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x4-tree-ddindicator { + height: 1px; + border-width: 1px 0px 0px; + border-style: dotted; + border-color: green; +} + +/* including package ext-theme-classic */ +/* line 2, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-tl { + background: transparent no-repeat 0 0; + zoom: 1; +} + +/* line 7, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-tc { + height: 8px; + background: transparent repeat-x 0 0; + overflow: hidden; +} + +/* line 13, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-tr { + background: transparent no-repeat right -8px; +} + +/* line 17, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-ml { + background: transparent repeat-y 0; + padding-left: 4px; + overflow: hidden; + zoom: 1; +} + +/* line 24, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-mc { + background: repeat-x 0 -16px; + padding: 4px 10px; +} + +/* line 29, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-mc h3 { + margin: 0 0 4px 0; + zoom: 1; +} + +/* line 34, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-mr { + background: transparent repeat-y right; + padding-right: 4px; + overflow: hidden; +} + +/* line 40, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-bl { + background: transparent no-repeat 0 -16px; + zoom: 1; +} + +/* line 45, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-bc { + background: transparent repeat-x 0 -8px; + height: 8px; + overflow: hidden; +} + +/* line 51, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-br { + background: transparent no-repeat right -24px; +} + +/* line 55, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-tl, .x4-box-bl { + padding-left: 8px; + overflow: hidden; +} + +/* line 60, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-tr, .x4-box-br { + padding-right: 8px; + overflow: hidden; +} + +/* line 65, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-tl { + background-image: url(images/box/corners.gif); +} + +/* line 69, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-tc { + background-image: url(images/box/tb.gif); +} + +/* line 73, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-tr { + background-image: url(images/box/corners.gif); +} + +/* line 77, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-ml { + background-image: url(images/box/l.gif); +} + +/* line 81, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-mc { + background-color: #eee; + background-image: url(images/box/tb.gif); + font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif; + color: #393939; + font-size: 15px; +} + +/* line 89, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-mc h3 { + font-size: 18px; + font-weight: bold; +} + +/* line 94, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-mr { + background-image: url(images/box/r.gif); +} + +/* line 98, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-bl { + background-image: url(images/box/corners.gif); +} + +/* line 102, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-bc { + background-image: url(images/box/tb.gif); +} + +/* line 106, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-br { + background-image: url(images/box/corners.gif); +} + +/* line 110, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-blue .x4-box-bl, .x4-box-blue .x4-box-br, .x4-box-blue .x4-box-tl, .x4-box-blue .x4-box-tr { + background-image: url(images/box/corners-blue.gif); +} + +/* line 114, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-blue .x4-box-bc, .x4-box-blue .x4-box-mc, .x4-box-blue .x4-box-tc { + background-image: url(images/box/tb-blue.gif); +} + +/* line 118, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-blue .x4-box-mc { + background-color: #c3daf9; +} + +/* line 122, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-blue .x4-box-mc h3 { + color: #17385b; +} + +/* line 126, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-blue .x4-box-ml { + background-image: url(images/box/l-blue.gif); +} + +/* line 130, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x4-box-blue .x4-box-mr { + background-image: url(images/box/r-blue.gif); +} + +/* line 3, ../../../ext-theme-classic/sass/src/toolbar/Toolbar.scss */ +.x4-rtl.x4-toolbar-more-icon { + background-image: url(images/toolbar/more-left.gif) !important; +} + +/* line 2, ../../../ext-theme-classic/sass/src/window/MessageBox.scss */ +.x4-message-box .x4-msg-box-wait { + background-image: url(images/shared/blue-loading.gif); +} + +/* line 1, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x4-form-trigger { + height: 22px; +} +/* line 5, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x4-content-box .x4-form-trigger { + height: 21px; +} + +/* line 12, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x4-field-toolbar .x4-form-trigger { + height: 20px; +} +/* line 16, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x4-content-box .x4-field-toolbar .x4-form-trigger { + height: 19px; +} + +/* line 4, ../../../ext-theme-classic/sass/src/form/field/Spinner.scss */ +.x4-content-box div.x4-form-spinner-up, +.x4-content-box div.x4-form-spinner-down { + height: 10px; +} +/* line 10, ../../../ext-theme-classic/sass/src/form/field/Spinner.scss */ +.x4-content-box .x4-toolbar-item div.x4-form-spinner-up, +.x4-content-box .x4-toolbar-item div.x4-form-spinner-down { + height: 9px; +} + +/* line 2, ../../../ext-theme-classic/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-wrap .x4-toolbar { + border-left-color: #b5b8c8; + border-top-color: #b5b8c8; + border-right-color: #b5b8c8; +} + +/* line 9, ../../../ext-theme-classic/sass/src/form/field/HtmlEditor.scss */ +.x4-html-editor-input { + border: 1px solid #b5b8c8; + border-top-width: 0; +} + +/* line 1, ../../../ext-theme-classic/sass/src/grid/column/Column.scss */ +.x4-column-header-trigger { + background-color: #c5c5c5; + background-image: url(images/grid/grid3-hd-btn.gif); +} + +/* line 8, ../../../ext-theme-classic/sass/src/grid/column/Column.scss */ +.x4-rtl.x4-column-header-trigger { + background-image: url(images/grid/grid3-hd-btn-left.gif); +} + +/* line 6, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x4-content-box .x4-grid-editor .x4-form-trigger { + height: 19px; +} +/* line 13, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-form-spinner-up, .x4-grid-editor .x4-form-spinner-down { + background-image: url(images/form/spinner-small.gif); +} +/* line 16, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x4-content-box .x4-grid-editor .x4-form-spinner-up, .x4-content-box .x4-grid-editor .x4-form-spinner-down { + height: 9px; +} +/* line 24, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x4-grid-editor .x4-rtl.x4-form-trigger-wrap .x4-form-spinner-up, .x4-grid-editor .x4-rtl.x4-form-trigger-wrap .x4-form-spinner-down { + background-image: url(images/form/spinner-small-rtl.gif); +} + +/* line 1, ../../../ext-theme-classic/sass/src/layout/container/Accordion.scss */ +.x4-accordion-hd { + border-width: 1px 0 !important; + -webkit-box-shadow: inset 0 0 0 0 #d9e7f8; + -moz-box-shadow: inset 0 0 0 0 #d9e7f8; + box-shadow: inset 0 0 0 0 #d9e7f8; +} + +/* line 6, ../../../ext-theme-classic/sass/src/layout/container/Accordion.scss */ +.x4-accordion-hd-sibling-expanded { + -webkit-box-shadow: inset 0 1px 0 0 #f3f7fb; + -moz-box-shadow: inset 0 1px 0 0 #f3f7fb; + box-shadow: inset 0 1px 0 0 #f3f7fb; +} + +/* line 5, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-east, +.x4-resizable-over .x4-resizable-handle-west, +.x4-resizable-pinned .x4-resizable-handle-east, +.x4-resizable-pinned .x4-resizable-handle-west { + background-position: left; +} +/* line 10, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-south, +.x4-resizable-over .x4-resizable-handle-north, +.x4-resizable-pinned .x4-resizable-handle-south, +.x4-resizable-pinned .x4-resizable-handle-north { + background-position: top; +} +/* line 14, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-southeast, +.x4-resizable-pinned .x4-resizable-handle-southeast { + background-position: top left; +} +/* line 18, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-northwest, +.x4-resizable-pinned .x4-resizable-handle-northwest { + background-position: bottom right; +} +/* line 22, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-northeast, +.x4-resizable-pinned .x4-resizable-handle-northeast { + background-position: bottom left; +} +/* line 26, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x4-resizable-over .x4-resizable-handle-southwest, +.x4-resizable-pinned .x4-resizable-handle-southwest { + background-position: top right; +} + +/* line 6, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x4-ie6 .x4-slider-horz, +.x4-ie6 .x4-slider-horz .x4-slider-end, +.x4-ie6 .x4-slider-horz .x4-slider-inner { + background-image: url(images/slider/slider-bg.gif); +} +/* line 10, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x4-ie6 .x4-slider-horz .x4-slider-thumb { + background-image: url(images/slider/slider-thumb.gif); +} +/* line 16, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x4-ie6 .x4-slider-vert, +.x4-ie6 .x4-slider-vert .x4-slider-end, +.x4-ie6 .x4-slider-vert .x4-slider-inner { + background-image: url(images/slider/slider-v-bg.gif); +} +/* line 20, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x4-ie6 .x4-slider-vert .x4-slider-thumb { + background-image: url(images/slider/slider-v-thumb.gif); +} + +/* line 1, ../../../ext-theme-classic/sass/src/tab/Panel.scss */ +.x4-tab-icon-el { + top: -1px; +} + +/* line 6, ../../../ext-theme-classic/sass/src/tab/Panel.scss */ +.x4-tab-noicon .x4-tab-icon { + display: none; +} diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/ext-theme-classic-sandbox-all-rtl.css b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/ext-theme-classic-sandbox-all-rtl.css new file mode 100644 index 0000000..5f6d211 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/ext-theme-classic-sandbox-all-rtl.css @@ -0,0 +1 @@ +.x4-body{margin:0}img{border:0}.x4-border-box,.x4-border-box *{box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box}.x4-rtl{direction:rtl}.x4-ltr{direction:ltr}.x4-clear{overflow:hidden;clear:both;font-size:0;line-height:0;display:table}.x4-strict .x4-ie7 .x4-clear{height:0;width:0}.x4-layer{position:absolute!important;overflow:hidden;zoom:1}.x4-fixed-layer{position:fixed!important;overflow:hidden;zoom:1}.x4-shim{position:absolute;left:0;top:0;overflow:hidden;filter:alpha(opacity=0);opacity:0}.x4-hide-display{display:none!important}.x4-hide-visibility{visibility:hidden!important}.x4-ie6 .x4-item-disabled{filter:none}.x4-hidden,.x4-hide-offsets{display:block!important;visibility:hidden!important;position:absolute!important;top:-10000px!important}.x4-hide-nosize{height:0!important;width:0!important}.x4-hide-clip{position:absolute!important;clip:rect(0,0,0,0);clip:rect(0 0 0 0)}.x4-masked-relative{position:relative}.x4-ie-shadow{background-color:#777;display:none;position:absolute;overflow:hidden;zoom:1}.x4-unselectable{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x4-selectable{cursor:auto;-moz-user-select:text;-webkit-user-select:text;-ms-user-select:text;user-select:text;-o-user-select:text}.x4-list-plain{list-style-type:none;margin:0;padding:0}.x4-table-plain{border-collapse:collapse;border-spacing:0;font-size:1em}.x4-frame-tl,.x4-frame-tr,.x4-frame-tc,.x4-frame-bl,.x4-frame-br,.x4-frame-bc{overflow:hidden;background-repeat:no-repeat}.x4-frame-tc,.x4-frame-bc{background-repeat:repeat-x}.x4-frame-mc{background-repeat:repeat-x;overflow:hidden}.x4-proxy-el{position:absolute;background:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x4-css-shadow{position:absolute;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px}.x4-item-disabled,.x4-item-disabled *{cursor:default}.x4-box-item{position:absolute!important;left:0;top:0}.x4-rtl>.x4-box-item{right:0;left:auto}.x4-ie6 .x4-rtl .x4-box-item,.x4-quirks .x4-ie .x4-rtl .x4-box-item{right:0;left:auto}div.x4-editor{overflow:visible}.x4-mask{z-index:100;position:absolute;width:100%;height:100%;zoom:1}.x4-mask-shim{z-index:100;position:absolute;top:0;left:0;width:100%;height:100%}.x4-mask-msg{z-index:20001;position:absolute}.x4-progress{position:relative;border-style:solid;overflow:hidden}.x4-progress-bar{overflow:hidden;position:absolute;width:0;height:100%}.x4-progress-text{overflow:hidden;position:absolute}.x4-btn{display:inline-block;position:relative;zoom:1;*display:inline;outline:0;cursor:pointer;white-space:nowrap;vertical-align:middle;text-decoration:none}.x4-btn-wrap{position:relative;display:block}.x4-btn-button{position:relative;display:block;text-decoration:none;overflow:hidden;zoom:1}.x4-btn-inner{display:block;white-space:nowrap;overflow:hidden;zoom:1}.x4-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x4-btn-inner-center{text-align:center}.x4-btn-inner-left{text-align:left}.x4-rtl.x4-btn-inner-left{text-align:right}.x4-btn-inner-right{text-align:right}.x4-rtl.x4-btn-inner-right{text-align:left}.x4-box-layout-ct{overflow:hidden;zoom:1}.x4-box-target{position:absolute;width:20000px;top:0;left:0;height:1px}.x4-rtl.x4-box-target{left:auto;right:0}.x4-box-inner{overflow:hidden;zoom:1;position:relative;left:0;top:0}.x4-horizontal-box-overflow-body{float:left}.x4-box-scroller{position:relative;background-repeat:no-repeat}.x4-box-scroller-left,.x4-box-scroller-right{float:left;height:100%;z-index:5}.x4-box-scroller-top .x4-box-scroller,.x4-box-scroller-bottom .x4-box-scroller{line-height:0;font-size:0;background-position:center 0}.x4-box-menu-after{float:right}.x4-rtl.x4-box-menu-after{float:left}.x4-toolbar-text{white-space:nowrap}.x4-toolbar-separator{display:block;font-size:1px;overflow:hidden;cursor:default;border:0;width:0;height:0;line-height:0}.x4-quirks .x4-ie .x4-toolbar .x4-toolbar-separator-horizontal{width:2px}.x4-toolbar-scroller{padding-left:0}.x4-toolbar-plain{border:0}.x4-docked{position:absolute!important;z-index:1}.x4-docked-vertical{position:static}.x4-docked-top{border-bottom-width:0!important}.x4-docked-bottom{border-top-width:0!important}.x4-docked-left{border-right-width:0!important}.x4-docked-right{border-left-width:0!important}.x4-docked-noborder-top{border-top-width:0!important}.x4-docked-noborder-right{border-right-width:0!important}.x4-docked-noborder-bottom{border-bottom-width:0!important}.x4-docked-noborder-left{border-left-width:0!important}.x4-noborder-l{border-left-width:0!important}.x4-noborder-b{border-bottom-width:0!important}.x4-noborder-bl{border-bottom-width:0!important;border-left-width:0!important}.x4-noborder-r{border-right-width:0!important}.x4-noborder-rl{border-right-width:0!important;border-left-width:0!important}.x4-noborder-rb{border-right-width:0!important;border-bottom-width:0!important}.x4-noborder-rbl{border-right-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x4-noborder-t{border-top-width:0!important}.x4-noborder-tl{border-top-width:0!important;border-left-width:0!important}.x4-noborder-tb{border-top-width:0!important;border-bottom-width:0!important}.x4-noborder-tbl{border-top-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x4-noborder-tr{border-top-width:0!important;border-right-width:0!important}.x4-noborder-trl{border-top-width:0!important;border-right-width:0!important;border-left-width:0!important}.x4-noborder-trb{border-top-width:0!important;border-right-width:0!important;border-bottom-width:0!important}.x4-noborder-trbl{border-width:0!important}.x4-header-icon{background-repeat:no-repeat;background-position:0 0;vertical-align:middle;text-align:center}.x4-header-text-container{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.x4-rtl.x4-header-text-container{-o-text-overflow:clip;text-overflow:clip}.x4-dd-drag-proxy,.x4-dd-drag-current{z-index:1000000!important;pointer-events:none}.x4-dd-drag-repair .x4-dd-drag-ghost{filter:alpha(opacity=60);opacity:.6}.x4-dd-drag-repair .x4-dd-drop-icon{display:none}.x4-dd-drag-ghost{filter:alpha(opacity=85);opacity:.85;padding:5px;padding-left:20px;white-space:nowrap;color:#000;font:normal 11px tahoma,arial,verdana,sans-serif;border:1px solid;border-color:#ddd #bbb #bbb #ddd;background-color:#fff}.x4-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}.x4-rtl .x4-dd-drag-ghost{padding-left:5px;padding-right:20px}.x4-rtl .x4-dd-drop-icon{left:auto;right:3px}.x4-dd-drop-ok .x4-dd-drop-icon{background-image:url(images/dd/drop-yes.gif)}.x4-dd-drop-ok-add .x4-dd-drop-icon{background-image:url(images/dd/drop-add.gif)}.x4-dd-drop-nodrop div.x4-dd-drop-icon{background-image:url(images/dd/drop-no.gif)}.x4-panel,.x4-plain{overflow:hidden;position:relative}.x4-panel{outline:0}.x4-ie .x4-panel-header,.x4-ie .x4-panel-header-tl,.x4-ie .x4-panel-header-tc,.x4-ie .x4-panel-header-tr,.x4-ie .x4-panel-header-ml,.x4-ie .x4-panel-header-mc,.x4-ie .x4-panel-header-mr,.x4-ie .x4-panel-header-bl,.x4-ie .x4-panel-header-bc,.x4-ie .x4-panel-header-br{zoom:1}.x4-ie8 td.x4-frame-mc{vertical-align:top}.x4-panel-body{overflow:hidden;position:relative}.x4-nlg .x4-panel-header-vertical .x4-frame-mc{background-repeat:repeat-y}.x4-panel-header-plain,.x4-panel-body-plain{border:0;padding:0}.x4-tip{position:absolute;overflow:visible}.x4-tip-body{overflow:hidden;position:relative}.x4-tip-anchor{position:absolute;overflow:hidden;border-style:solid}.x4-table-layout{font-size:1em}.x4-btn-group{position:relative;overflow:hidden}.x4-btn-group-body{position:relative;zoom:1}.x4-btn-group-body .x4-table-layout-cell{vertical-align:top}.x4-viewport,.x4-viewport body{margin:0;padding:0;border:0 none;overflow:hidden;height:100%;position:static}.x4-window{outline:0;overflow:hidden}.x4-window .x4-window-wrap{position:relative}.x4-window-body{position:relative;overflow:hidden}.x4-window-body-plain{background:transparent}.x4-form-item-label{display:block}.x4-form-item-label-right{text-align:right}.x4-form-item-label-top{display:block;zoom:1}.x4-form-invalid-icon{overflow:hidden}.x4-form-invalid-icon ul{display:none}.x4-form-textarea{overflow:auto;resize:none}.x4-safari.x4-mac .x4-form-textarea{margin-bottom:-2px}.x4-form-display-field-body{vertical-align:top}.x4-form-cb-wrap{vertical-align:top}.x4-form-cb{vertical-align:top;overflow:hidden;padding:0;border:0}.x4-form-cb::-moz-focus-inner{padding:0;border:0}.x4-form-cb-label{display:inline-block;zoom:1}.x4-fieldset{display:block;position:relative}.x4-fieldset-header{overflow:hidden}.x4-fieldset-header .x4-form-item,.x4-fieldset-header .x4-tool{float:left}.x4-fieldset-header .x4-form-cb-wrap{font-size:0;line-height:0}.x4-fieldset-header .x4-form-cb{margin:0}.x4-rtl.x4-fieldset-header .x4-form-item,.x4-rtl.x4-fieldset-header .x4-tool{float:right}.x4-fieldset-header-text{float:left}.x4-webkit *:focus{outline:none!important}.x4-form-item{vertical-align:top;table-layout:fixed}.x4-form-item-body{position:relative}.x4-rtl.x4-form-item .x4-form-item-input-row{position:relative;right:0}.x4-form-form-item td{border-top:1px solid transparent}.x4-form-trigger{cursor:pointer;overflow:hidden;background-repeat:no-repeat}.x4-item-disabled .x4-form-trigger{cursor:default}.x4-trigger-noedit{cursor:default}.x4-form-trigger-wrap{vertical-align:top;border-collapse:separate}.x4-form-spinner-up,.x4-form-spinner-down{font-size:0}.x4-datepicker{position:relative}.x4-datepicker-inner{table-layout:fixed;width:100%;border-collapse:separate}.x4-datepicker-cell{padding:0}.x4-datepicker-header{position:relative;zoom:1}.x4-datepicker-arrow{position:absolute;outline:0;font-size:0}.x4-datepicker-column-header{padding:0}.x4-datepicker-date{display:block;zoom:1;text-decoration:none}.x4-monthpicker{position:absolute;left:0;top:0}.x4-monthpicker-body{height:100%}.x4-monthpicker-months,.x4-monthpicker-years{float:left;height:100%}.x4-monthpicker-item{float:left}.x4-monthpicker-item-inner{display:block;text-decoration:none}.x4-monthpicker-yearnav-button-ct{float:left;text-align:center}.x4-monthpicker-yearnav-button{display:inline-block;outline:0;font-size:0}.x4-monthpicker-buttons{position:absolute;bottom:0;width:100%}.x4-strict .x4-ie6 .x4-monthpicker-buttons{bottom:-1px}.x4-form-file-btn{overflow:hidden}.x4-form-file-input{border:0;position:absolute;cursor:pointer;top:-2px;right:-2px;filter:alpha(opacity=0);opacity:0;font-size:1000px}.x4-rtl.x4-form-file-input{right:auto;left:-2px}.x4-form-item-hidden{margin:0}.x4-color-picker-item{float:left;text-decoration:none}.x4-color-picker-item-inner{display:block;font-size:1px}.x4-html-editor-tb .x4-toolbar{position:static!important}.x4-htmleditor-iframe{display:block;overflow:auto}.x4-fit-item{position:relative}.x4-grid-row,.x4-grid-data-row{outline:0}.x4-grid-view{overflow:hidden;position:relative}.x4-grid-table{table-layout:fixed;border-collapse:separate}.x4-grid-td{overflow:hidden;border-width:0;vertical-align:top}.x4-grid-cell-inner{overflow:hidden;white-space:nowrap;zoom:1}.x4-grid-resize-marker{position:absolute;z-index:5;top:0}.col-move-top,.col-move-bottom{position:absolute;top:0;line-height:0;font-size:0;overflow:hidden;z-index:20000;background:no-repeat center top transparent}.x4-grid-header-ct{cursor:default}.x4-column-header{position:absolute;overflow:hidden;background-repeat:repeat-x}.x4-column-header-inner{zoom:1;white-space:nowrap;position:relative;overflow:hidden}.x4-column-header-text{white-space:nowrap;background-repeat:no-repeat;zoom:1;display:inline-block}.x4-column-header-trigger{display:none;height:100%;background-repeat:no-repeat;position:absolute;right:0;top:0;z-index:2}.x4-rtl.x4-column-header-trigger{left:0;right:auto}.x4-column-header-over .x4-column-header-trigger,.x4-column-header-open .x4-column-header-trigger{display:block}.x4-column-header-align-right{text-align:right}.x4-rtl.x4-column-header-align-right{text-align:left}.x4-column-header-align-left{text-align:left}.x4-rtl.x4-column-header-align-left{text-align:right}.x4-column-header-align-center{text-align:center}.x4-grid-cell-inner-action-col{line-height:0;font-size:0}.x4-grid-cell-inner-checkcolumn{line-height:0;font-size:0}.x4-row-numberer .x4-column-header-inner{text-overflow:clip}.x4-grid-group,.x4-grid-group-body,.x4-grid-group-hd{zoom:1}.x4-grid-group-hd{white-space:nowrap}.x4-grid-row-body-hidden,.x4-grid-group-collapsed{display:none}.x4-grid-rowbody{zoom:1}.x4-grid-row-body-hidden{display:none}td.x4-grid-rowwrap .x4-grid-table{border:0}td.x4-grid-rowwrap .x4-grid-cell{border-bottom:0;background-color:transparent}.x4-grid-editor .x4-form-cb-wrap{text-align:center}.x4-grid-editor .x4-form-display-field{margin:0;white-space:nowrap;overflow:hidden}.x4-grid-editor div.x4-form-action-col-field{line-height:0}.x4-grid-row-editor{position:absolute;overflow:visible;z-index:1}.x4-grid-row-editor-buttons{position:absolute;white-space:nowrap}.x4-grid-row-expander{font-size:0;line-height:0}.x4-abs-layout-ct{position:relative}.x4-abs-layout-item{position:absolute!important}.x4-splitter{font-size:1px}.x4-splitter-horizontal{cursor:e-resize;cursor:row-resize}.x4-splitter-vertical{cursor:e-resize;cursor:col-resize}.x4-splitter-collapsed,.x4-splitter-horizontal-noresize,.x4-splitter-vertical-noresize{cursor:default}.x4-splitter-active{z-index:4}.x4-collapse-el{position:absolute;background-repeat:no-repeat}.x4-border-layout-ct{overflow:hidden;zoom:1}.x4-border-layout-ct{position:relative}.x4-border-region-slide-in{z-index:5}.x4-region-collapsed-placeholder{z-index:4}.x4-column{float:left}.x4-rtl>.x4-column{float:right}.x4-ie6 .x4-rtl .x4-column,.x4-quirks .x4-ie .x4-rtl .x4-column{float:right}.x4-ie6 .x4-column{display:inline}.x4-quirks .x4-ie .x4-form-layout-table,.x4-quirks .x4-ie .x4-form-layout-table tbody tr.x4-form-item{position:relative}.x4-form-layout-table{border-collapse:separate;border-spacing:0 2px}.x4-ie6 .x4-form-layout-table{border-collapse:collapse;border-spacing:0}.x4-menu{outline:0}.x4-menu-item{white-space:nowrap;overflow:hidden}.x4-menu-item-cmp .x4-field-label-cell{vertical-align:middle}.x4-menu-icon-separator{position:absolute;top:0;z-index:0;height:100%;overflow:hidden}.x4-menu-plain .x4-menu-icon-separator{display:none}.x4-menu-item-link{text-decoration:none;outline:0;zoom:1}.x4-menu-item-text{zoom:1}.x4-menu-item-icon,.x4-menu-item-icon-right,.x4-menu-item-arrow{position:absolute;text-align:center}.x4-resizable-overlay{position:absolute;left:0;top:0;width:100%;height:100%;display:none;z-index:200000;background-color:#fff;filter:alpha(opacity=0);opacity:0}.x4-slider{outline:0;zoom:1;position:relative}.x4-slider-inner{position:relative;left:0;top:0;overflow:visible;zoom:1}.x4-slider-vert .x4-slider-inner{background:repeat-y 0 0}.x4-slider-end{zoom:1}.x4-slider-thumb{position:absolute;background:no-repeat 0 0}.x4-slider-horz .x4-slider-thumb{left:0}.x4-slider-vert .x4-slider-thumb{bottom:0}a.x4-tab{text-decoration:none}.x4-tab-bar{position:relative}.x4-column-header-checkbox .x4-column-header-text{display:block;background-repeat:no-repeat;font-size:0}.x4-grid-cell-row-checker{vertical-align:middle;background-repeat:no-repeat;font-size:0}.x4-tab{display:block;white-space:nowrap;z-index:1}.x4-tab-active{z-index:3}.x4-tab-wrap{display:block;position:relative}.x4-tab-button{zoom:1;display:block;outline:0}.x4-tab-inner{display:block;text-align:center;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis;overflow:hidden;zoom:1}.x4-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x4-tab-bar{z-index:1}.x4-tab-bar-body{z-index:2;position:relative}.x4-tab-bar-strip{position:absolute;line-height:0;font-size:0;z-index:1}.x4-tab-bar-horizontal .x4-tab-bar-strip{width:100%;left:0}.x4-tab-bar-vertical .x4-tab-bar-strip{height:100%;top:0}.x4-tab-bar-strip-top{bottom:0}.x4-tab-bar-strip-bottom{top:0}.x4-tab-bar-strip-left{right:0}.x4-rtl.x4-tab-bar .x4-tab-bar-strip-left{right:auto;left:0}.x4-tab-bar-strip-right{left:0}.x4-rtl.x4-tab-bar .x4-tab-bar-strip-right{left:auto;right:0}.x4-tab-bar-plain{background:transparent!important}.x4-tab-icon-el{position:absolute;background-repeat:no-repeat;top:0;left:0;right:auto;bottom:0}.x4-rtl.x4-tab-icon-el{left:auto;right:0}.x4-tab-close-btn{display:block;position:absolute;font-size:0;line-height:0;background:no-repeat}.x4-tab-mc{overflow:visible}.x4-autowidth-table .x4-grid-table{table-layout:auto;width:auto!important}.x4-tree-view{overflow:hidden}.x4-tree-elbow-img,.x4-tree-icon{background-repeat:no-repeat;background-position:0 center;vertical-align:top}.x4-tree-checkbox{border:0;padding:0;vertical-align:top;position:relative;background-color:transparent}.x4-tree-animator-wrap{overflow:hidden}.x4-tree-node-text{zoom:1}.x4-surface{display:-moz-inline-stack;display:inline-block;vertical-align:middle;*vertical-align:auto;zoom:1;*display:inline;overflow:hidden}.rvml{behavior:url(#default#VML)}.x4-surface tspan{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x4-vml-sprite{position:absolute;left:0;top:0;width:1px;height:1px}.x4-vml-group{position:absolute;left:0;top:0;width:1000px;height:1000px}.x4-vml-measure-span{position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;display:inline}.x4-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}.x4-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}svg,vml{overflow:hidden}.x4-body{color:black;font-size:12px;font-family:tahoma,arial,verdana,sans-serif}.x4-animating-size,.x4-collapsed{overflow:hidden!important}.x4-editor .x4-form-item-body{padding-bottom:0}.x4-focus-element{position:absolute;top:-10px;left:-10px;width:0;height:0}.x4-focus-frame{position:absolute;left:0;top:0;z-index:100000000;width:0;height:0}.x4-focus-frame-top,.x4-focus-frame-bottom,.x4-focus-frame-left,.x4-focus-frame-right{position:absolute;top:0;left:0}.x4-focus-frame-top,.x4-focus-frame-bottom{border-top:solid 2px #15428b;height:2px}.x4-focus-frame-left,.x4-focus-frame-right{border-left:solid 2px #15428b;width:2px}.x4-mask{filter:alpha(opacity=50);opacity:.5;background:#ccc}.x4-mask-msg{padding:2px;border-style:solid;border-width:1px;border-color:#99bce8;background-image:none;background-color:#dfe9f6}.x4-mask-msg-inner{padding:0 5px;border-style:solid;border-width:1px;border-color:#a3bad9;background-color:#eee;color:#222;font:normal 11px tahoma,arial,verdana,sans-serif}.x4-mask-msg-text{padding:5px 5px 5px 20px;background-image:url(images/grid/loading.gif);background-repeat:no-repeat;background-position:0 center}.x4-rtl.x4-mask-msg-text{padding:5px 20px 5px 5px;background-position:right center}.x4-progress-default{background-color:#e0e8f3;border-width:1px;height:20px;border-color:#6594cf}.x4-content-box .x4-progress-default{height:18px}.x4-progress-default .x4-progress-bar-default{background-image:none;background-color:#73a3e0;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#b2ccee),color-stop(50%,#88b1e5),color-stop(51%,#73a3e0),color-stop(100%,#5e96db));background-image:-webkit-linear-gradient(top,#b2ccee,#88b1e5 50%,#73a3e0 51%,#5e96db);background-image:-moz-linear-gradient(top,#b2ccee,#88b1e5 50%,#73a3e0 51%,#5e96db);background-image:-o-linear-gradient(top,#b2ccee,#88b1e5 50%,#73a3e0 51%,#5e96db);background-image:linear-gradient(top,#b2ccee,#88b1e5 50%,#73a3e0 51%,#5e96db)}.x4-nlg .x4-progress-default .x4-progress-bar-default{background:repeat-x;background-image:url(images/progress/progress-default-bg.gif)}.x4-progress-default .x4-progress-text{color:white;font-weight:bold;font-size:11px;text-align:center;line-height:18px}.x4-progress-default .x4-progress-text-back{color:#396295;line-height:18px}.x4-progress-default .x4-progress-bar-default:after{display:none;content:"x-slicer:bg:url(images/progress/progress-default-bg.gif)"}.x4-btn-default-small{border-color:#d1d1d1}.x4-btn-default-small{-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-image:none;background-color:white;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(48%,#f9f9f9),color-stop(52%,#e2e2e2),color-stop(100%,#e7e7e7));background-image:-webkit-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-moz-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-o-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7)}.x4-btn-default-small-mc{background-image:url(images/btn/btn-default-small-fbg.gif);background-position:0 top;background-color:white}.x4-nlg .x4-btn-default-small{background-image:url(images/btn/btn-default-small-bg.gif);background-position:0 top}.x4-nbr .x4-btn-default-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-btn-default-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x4-btn-default-small-tl{background-position:0 -6px}.x4-btn-default-small-tr{background-position:right -9px}.x4-btn-default-small-bl{background-position:0 -12px}.x4-btn-default-small-br{background-position:right -15px}.x4-btn-default-small-ml{background-position:0 top}.x4-btn-default-small-mr{background-position:right top}.x4-btn-default-small-tc{background-position:0 0}.x4-btn-default-small-bc{background-position:0 -3px}.x4-btn-default-small-tr,.x4-btn-default-small-br,.x4-btn-default-small-mr{padding-right:3px}.x4-btn-default-small-tl,.x4-btn-default-small-bl,.x4-btn-default-small-ml{padding-left:3px}.x4-btn-default-small-tc{height:3px}.x4-btn-default-small-bc{height:3px}.x4-btn-default-small-tl,.x4-btn-default-small-bl,.x4-btn-default-small-tr,.x4-btn-default-small-br,.x4-btn-default-small-tc,.x4-btn-default-small-bc,.x4-btn-default-small-ml,.x4-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-corners.gif)}.x4-btn-default-small-ml,.x4-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-sides.gif)}.x4-btn-default-small-mc{padding:0}.x4-strict .x4-ie7 .x4-btn-default-small-tl,.x4-strict .x4-ie7 .x4-btn-default-small-bl{position:relative;right:0}.x4-btn-default-small:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"}.x4-btn-default-small .x4-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 4px}.x4-btn-default-small .x4-btn-arrow{background-image:url(images/button/arrow.gif)}.x4-btn-default-small .x4-btn-arrow-right{padding-right:12px}.x4-btn-default-small .x4-rtl.x4-btn-arrow-right{padding-right:0;padding-left:12px}.x4-btn-default-small .x4-btn-arrow-bottom{padding-bottom:12px}.x4-btn-default-small .x4-btn-glyph{font-size:16px;line-height:16px;color:#333;opacity:.5}.x4-ie8m .x4-btn-default-small .x4-btn-glyph{color:#999}.x4-btn-default-small-disabled{border-color:#e1e1e1;background-image:none;background-color:#f7f7f7;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f7f7f7),color-stop(48%,#f1f1f1),color-stop(52%,#dadada),color-stop(100%,#dfdfdf));background-image:-webkit-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-moz-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-o-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf)}.x4-btn-default-small-icon .x4-btn-button,.x4-btn-default-small-noicon .x4-btn-button{height:16px}.x4-btn-default-small-icon .x4-btn-inner,.x4-btn-default-small-noicon .x4-btn-inner{line-height:16px}.x4-btn-default-small-icon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-small-noicon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-small-icon-text-left .x4-btn-arrow-right .x4-btn-inner{padding-right:0}.x4-btn-default-small-icon .x4-btn-arrow-right .x4-rtl.x4-btn-inner,.x4-btn-default-small-noicon .x4-btn-arrow-right .x4-rtl.x4-btn-inner,.x4-btn-default-small-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner{padding-right:4px;padding-left:0}.x4-btn-default-small-icon .x4-btn-inner{width:16px;padding:0}.x4-btn-default-small-icon .x4-btn-icon-el{width:16px;height:16px}.x4-btn-default-small-icon-text-left .x4-btn-button{height:16px}.x4-btn-default-small-icon-text-left .x4-btn-inner{line-height:16px;padding-left:20px}.x4-btn-default-small-icon-text-left .x4-rtl.x4-btn-inner{padding-left:4px;padding-right:20px}.x4-btn-default-small-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner{padding-right:20px}.x4-btn-default-small-icon-text-left .x4-btn-icon-el{width:16px;right:auto}.x4-ie6 .x4-btn-default-small-icon-text-left .x4-btn-icon-el,.x4-quirks .x4-btn-default-small-icon-text-left .x4-btn-icon-el{height:16px}.x4-btn-default-small-icon-text-left .x4-rtl.x4-btn-icon-el{left:auto;right:0}.x4-btn-default-small-icon-text-right .x4-btn-button{height:16px}.x4-btn-default-small-icon-text-right .x4-btn-inner{line-height:16px;padding-right:20px}.x4-btn-default-small-icon-text-right .x4-rtl.x4-btn-inner{padding-right:4px;padding-left:20px}.x4-btn-default-small-icon-text-right .x4-btn-icon-el{width:16px;left:auto}.x4-ie6 .x4-btn-default-small-icon-text-right .x4-btn-icon-el,.x4-quirks .x4-btn-default-small-icon-text-right .x4-btn-icon-el{height:16px}.x4-btn-default-small-icon-text-right .x4-rtl.x4-btn-icon-el{left:0;right:auto}.x4-btn-default-small-icon-text-top .x4-btn-inner{padding-top:20px}.x4-btn-default-small-icon-text-top .x4-btn-icon-el{height:16px;bottom:auto}.x4-ie6 .x4-btn-default-small-icon-text-top .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-small-icon-text-top .x4-btn-icon-el{width:100%}.x4-btn-default-small-icon-text-bottom .x4-btn-inner{padding-bottom:20px}.x4-btn-default-small-icon-text-bottom .x4-btn-icon-el{height:16px;top:auto}.x4-ie6 .x4-btn-default-small-icon-text-bottom .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-small-icon-text-bottom .x4-btn-icon-el{width:100%}.x4-btn-default-small-over{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x4-btn-default-small-focus{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x4-btn-default-small-menu-active,.x4-btn-default-small-pressed{border-color:#9ebae1;background-image:none;background-color:#b6cbe4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#b6cbe4),color-stop(48%,#bfd2e6),color-stop(52%,#8dc0f5),color-stop(100%,#98c5f5));background-image:-webkit-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-moz-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-o-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5)}.x4-btn-default-small-over .x4-frame-tl,.x4-btn-default-small-over .x4-frame-bl,.x4-btn-default-small-over .x4-frame-tr,.x4-btn-default-small-over .x4-frame-br,.x4-btn-default-small-over .x4-frame-tc,.x4-btn-default-small-over .x4-frame-bc{background-image:url(images/btn/btn-default-small-over-corners.gif)}.x4-btn-default-small-over .x4-frame-ml,.x4-btn-default-small-over .x4-frame-mr{background-image:url(images/btn/btn-default-small-over-sides.gif)}.x4-btn-default-small-over .x4-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-small-over-fbg.gif)}.x4-btn-default-small-focus .x4-frame-tl,.x4-btn-default-small-focus .x4-frame-bl,.x4-btn-default-small-focus .x4-frame-tr,.x4-btn-default-small-focus .x4-frame-br,.x4-btn-default-small-focus .x4-frame-tc,.x4-btn-default-small-focus .x4-frame-bc{background-image:url(images/btn/btn-default-small-focus-corners.gif)}.x4-btn-default-small-focus .x4-frame-ml,.x4-btn-default-small-focus .x4-frame-mr{background-image:url(images/btn/btn-default-small-focus-sides.gif)}.x4-btn-default-small-focus .x4-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-small-focus-fbg.gif)}.x4-btn-default-small-menu-active .x4-frame-tl,.x4-btn-default-small-menu-active .x4-frame-bl,.x4-btn-default-small-menu-active .x4-frame-tr,.x4-btn-default-small-menu-active .x4-frame-br,.x4-btn-default-small-menu-active .x4-frame-tc,.x4-btn-default-small-menu-active .x4-frame-bc,.x4-btn-default-small-pressed .x4-frame-tl,.x4-btn-default-small-pressed .x4-frame-bl,.x4-btn-default-small-pressed .x4-frame-tr,.x4-btn-default-small-pressed .x4-frame-br,.x4-btn-default-small-pressed .x4-frame-tc,.x4-btn-default-small-pressed .x4-frame-bc{background-image:url(images/btn/btn-default-small-pressed-corners.gif)}.x4-btn-default-small-menu-active .x4-frame-ml,.x4-btn-default-small-menu-active .x4-frame-mr,.x4-btn-default-small-pressed .x4-frame-ml,.x4-btn-default-small-pressed .x4-frame-mr{background-image:url(images/btn/btn-default-small-pressed-sides.gif)}.x4-btn-default-small-menu-active .x4-frame-mc,.x4-btn-default-small-pressed .x4-frame-mc{background-color:#b6cbe4;background-image:url(images/btn/btn-default-small-pressed-fbg.gif)}.x4-btn-default-small-disabled .x4-frame-tl,.x4-btn-default-small-disabled .x4-frame-bl,.x4-btn-default-small-disabled .x4-frame-tr,.x4-btn-default-small-disabled .x4-frame-br,.x4-btn-default-small-disabled .x4-frame-tc,.x4-btn-default-small-disabled .x4-frame-bc{background-image:url(images/btn/btn-default-small-disabled-corners.gif)}.x4-btn-default-small-disabled .x4-frame-ml,.x4-btn-default-small-disabled .x4-frame-mr{background-image:url(images/btn/btn-default-small-disabled-sides.gif)}.x4-btn-default-small-disabled .x4-frame-mc{background-color:#f7f7f7;background-image:url(images/btn/btn-default-small-disabled-fbg.gif)}.x4-nlg .x4-btn-default-small-over{background-image:url(images/btn/btn-default-small-over-bg.gif)}.x4-nlg .x4-btn-default-small-focus{background-image:url(images/btn/btn-default-small-focus-bg.gif)}.x4-nlg .x4-btn-default-small-menu-active,.x4-nlg .x4-btn-default-small-pressed{background-image:url(images/btn/btn-default-small-pressed-bg.gif)}.x4-nlg .x4-btn-default-small-disabled{background-image:url(images/btn/btn-default-small-disabled-bg.gif)}.x4-nbr .x4-btn-default-small{background-image:none}.x4-btn-default-small .x4-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:14px}.x4-btn-default-small .x4-rtl.x4-btn-split-right{background-image:url(images/button/s-arrow-rtl.gif);padding-right:0;padding-left:14px}.x4-btn-default-small .x4-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:14px}.x4-btn-default-small-over .x4-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x4-btn-default-small-over .x4-rtl.x4-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x4-btn-default-small-over .x4-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x4-btn-default-small-disabled .x4-btn-inner,.x4-btn-default-small-disabled .x4-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x4-btn-default-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"}.x4-btn-default-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"}.x4-btn-default-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"}.x4-btn-default-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"}.x4-btn-default-medium{border-color:#d1d1d1}.x4-btn-default-medium{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:white;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(48%,#f9f9f9),color-stop(52%,#e2e2e2),color-stop(100%,#e7e7e7));background-image:-webkit-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-moz-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-o-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7)}.x4-btn-default-medium-mc{background-image:url(images/btn/btn-default-medium-fbg.gif);background-position:0 top;background-color:white}.x4-nlg .x4-btn-default-medium{background-image:url(images/btn/btn-default-medium-bg.gif);background-position:0 top}.x4-nbr .x4-btn-default-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-btn-default-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x4-btn-default-medium-tl{background-position:0 -6px}.x4-btn-default-medium-tr{background-position:right -9px}.x4-btn-default-medium-bl{background-position:0 -12px}.x4-btn-default-medium-br{background-position:right -15px}.x4-btn-default-medium-ml{background-position:0 top}.x4-btn-default-medium-mr{background-position:right top}.x4-btn-default-medium-tc{background-position:0 0}.x4-btn-default-medium-bc{background-position:0 -3px}.x4-btn-default-medium-tr,.x4-btn-default-medium-br,.x4-btn-default-medium-mr{padding-right:3px}.x4-btn-default-medium-tl,.x4-btn-default-medium-bl,.x4-btn-default-medium-ml{padding-left:3px}.x4-btn-default-medium-tc{height:3px}.x4-btn-default-medium-bc{height:3px}.x4-btn-default-medium-tl,.x4-btn-default-medium-bl,.x4-btn-default-medium-tr,.x4-btn-default-medium-br,.x4-btn-default-medium-tc,.x4-btn-default-medium-bc,.x4-btn-default-medium-ml,.x4-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-corners.gif)}.x4-btn-default-medium-ml,.x4-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-sides.gif)}.x4-btn-default-medium-mc{padding:1px 1px 1px 1px}.x4-strict .x4-ie7 .x4-btn-default-medium-tl,.x4-strict .x4-ie7 .x4-btn-default-medium-bl{position:relative;right:0}.x4-btn-default-medium:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"}.x4-btn-default-medium .x4-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x4-btn-default-medium .x4-btn-arrow{background-image:url(images/button/arrow.gif)}.x4-btn-default-medium .x4-btn-arrow-right{padding-right:12px}.x4-btn-default-medium .x4-rtl.x4-btn-arrow-right{padding-right:0;padding-left:12px}.x4-btn-default-medium .x4-btn-arrow-bottom{padding-bottom:12px}.x4-btn-default-medium .x4-btn-glyph{font-size:24px;line-height:24px;color:#333;opacity:.5}.x4-ie8m .x4-btn-default-medium .x4-btn-glyph{color:#999}.x4-btn-default-medium-disabled{border-color:#e1e1e1;background-image:none;background-color:#f7f7f7;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f7f7f7),color-stop(48%,#f1f1f1),color-stop(52%,#dadada),color-stop(100%,#dfdfdf));background-image:-webkit-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-moz-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-o-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf)}.x4-btn-default-medium-icon .x4-btn-button,.x4-btn-default-medium-noicon .x4-btn-button{height:24px}.x4-btn-default-medium-icon .x4-btn-inner,.x4-btn-default-medium-noicon .x4-btn-inner{line-height:24px}.x4-btn-default-medium-icon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-medium-noicon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-medium-icon-text-left .x4-btn-arrow-right .x4-btn-inner{padding-right:0}.x4-btn-default-medium-icon .x4-btn-arrow-right .x4-rtl.x4-btn-inner,.x4-btn-default-medium-noicon .x4-btn-arrow-right .x4-rtl.x4-btn-inner,.x4-btn-default-medium-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner{padding-right:3px;padding-left:0}.x4-btn-default-medium-icon .x4-btn-inner{width:24px;padding:0}.x4-btn-default-medium-icon .x4-btn-icon-el{width:24px;height:24px}.x4-btn-default-medium-icon-text-left .x4-btn-button{height:24px}.x4-btn-default-medium-icon-text-left .x4-btn-inner{line-height:24px;padding-left:28px}.x4-btn-default-medium-icon-text-left .x4-rtl.x4-btn-inner{padding-left:3px;padding-right:28px}.x4-btn-default-medium-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner{padding-right:28px}.x4-btn-default-medium-icon-text-left .x4-btn-icon-el{width:24px;right:auto}.x4-ie6 .x4-btn-default-medium-icon-text-left .x4-btn-icon-el,.x4-quirks .x4-btn-default-medium-icon-text-left .x4-btn-icon-el{height:24px}.x4-btn-default-medium-icon-text-left .x4-rtl.x4-btn-icon-el{left:auto;right:0}.x4-btn-default-medium-icon-text-right .x4-btn-button{height:24px}.x4-btn-default-medium-icon-text-right .x4-btn-inner{line-height:24px;padding-right:28px}.x4-btn-default-medium-icon-text-right .x4-rtl.x4-btn-inner{padding-right:3px;padding-left:28px}.x4-btn-default-medium-icon-text-right .x4-btn-icon-el{width:24px;left:auto}.x4-ie6 .x4-btn-default-medium-icon-text-right .x4-btn-icon-el,.x4-quirks .x4-btn-default-medium-icon-text-right .x4-btn-icon-el{height:24px}.x4-btn-default-medium-icon-text-right .x4-rtl.x4-btn-icon-el{left:0;right:auto}.x4-btn-default-medium-icon-text-top .x4-btn-inner{padding-top:28px}.x4-btn-default-medium-icon-text-top .x4-btn-icon-el{height:24px;bottom:auto}.x4-ie6 .x4-btn-default-medium-icon-text-top .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-medium-icon-text-top .x4-btn-icon-el{width:100%}.x4-btn-default-medium-icon-text-bottom .x4-btn-inner{padding-bottom:28px}.x4-btn-default-medium-icon-text-bottom .x4-btn-icon-el{height:24px;top:auto}.x4-ie6 .x4-btn-default-medium-icon-text-bottom .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-medium-icon-text-bottom .x4-btn-icon-el{width:100%}.x4-btn-default-medium-over{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x4-btn-default-medium-focus{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x4-btn-default-medium-menu-active,.x4-btn-default-medium-pressed{border-color:#9ebae1;background-image:none;background-color:#b6cbe4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#b6cbe4),color-stop(48%,#bfd2e6),color-stop(52%,#8dc0f5),color-stop(100%,#98c5f5));background-image:-webkit-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-moz-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-o-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5)}.x4-btn-default-medium-over .x4-frame-tl,.x4-btn-default-medium-over .x4-frame-bl,.x4-btn-default-medium-over .x4-frame-tr,.x4-btn-default-medium-over .x4-frame-br,.x4-btn-default-medium-over .x4-frame-tc,.x4-btn-default-medium-over .x4-frame-bc{background-image:url(images/btn/btn-default-medium-over-corners.gif)}.x4-btn-default-medium-over .x4-frame-ml,.x4-btn-default-medium-over .x4-frame-mr{background-image:url(images/btn/btn-default-medium-over-sides.gif)}.x4-btn-default-medium-over .x4-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-medium-over-fbg.gif)}.x4-btn-default-medium-focus .x4-frame-tl,.x4-btn-default-medium-focus .x4-frame-bl,.x4-btn-default-medium-focus .x4-frame-tr,.x4-btn-default-medium-focus .x4-frame-br,.x4-btn-default-medium-focus .x4-frame-tc,.x4-btn-default-medium-focus .x4-frame-bc{background-image:url(images/btn/btn-default-medium-focus-corners.gif)}.x4-btn-default-medium-focus .x4-frame-ml,.x4-btn-default-medium-focus .x4-frame-mr{background-image:url(images/btn/btn-default-medium-focus-sides.gif)}.x4-btn-default-medium-focus .x4-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-medium-focus-fbg.gif)}.x4-btn-default-medium-menu-active .x4-frame-tl,.x4-btn-default-medium-menu-active .x4-frame-bl,.x4-btn-default-medium-menu-active .x4-frame-tr,.x4-btn-default-medium-menu-active .x4-frame-br,.x4-btn-default-medium-menu-active .x4-frame-tc,.x4-btn-default-medium-menu-active .x4-frame-bc,.x4-btn-default-medium-pressed .x4-frame-tl,.x4-btn-default-medium-pressed .x4-frame-bl,.x4-btn-default-medium-pressed .x4-frame-tr,.x4-btn-default-medium-pressed .x4-frame-br,.x4-btn-default-medium-pressed .x4-frame-tc,.x4-btn-default-medium-pressed .x4-frame-bc{background-image:url(images/btn/btn-default-medium-pressed-corners.gif)}.x4-btn-default-medium-menu-active .x4-frame-ml,.x4-btn-default-medium-menu-active .x4-frame-mr,.x4-btn-default-medium-pressed .x4-frame-ml,.x4-btn-default-medium-pressed .x4-frame-mr{background-image:url(images/btn/btn-default-medium-pressed-sides.gif)}.x4-btn-default-medium-menu-active .x4-frame-mc,.x4-btn-default-medium-pressed .x4-frame-mc{background-color:#b6cbe4;background-image:url(images/btn/btn-default-medium-pressed-fbg.gif)}.x4-btn-default-medium-disabled .x4-frame-tl,.x4-btn-default-medium-disabled .x4-frame-bl,.x4-btn-default-medium-disabled .x4-frame-tr,.x4-btn-default-medium-disabled .x4-frame-br,.x4-btn-default-medium-disabled .x4-frame-tc,.x4-btn-default-medium-disabled .x4-frame-bc{background-image:url(images/btn/btn-default-medium-disabled-corners.gif)}.x4-btn-default-medium-disabled .x4-frame-ml,.x4-btn-default-medium-disabled .x4-frame-mr{background-image:url(images/btn/btn-default-medium-disabled-sides.gif)}.x4-btn-default-medium-disabled .x4-frame-mc{background-color:#f7f7f7;background-image:url(images/btn/btn-default-medium-disabled-fbg.gif)}.x4-nlg .x4-btn-default-medium-over{background-image:url(images/btn/btn-default-medium-over-bg.gif)}.x4-nlg .x4-btn-default-medium-focus{background-image:url(images/btn/btn-default-medium-focus-bg.gif)}.x4-nlg .x4-btn-default-medium-menu-active,.x4-nlg .x4-btn-default-medium-pressed{background-image:url(images/btn/btn-default-medium-pressed-bg.gif)}.x4-nlg .x4-btn-default-medium-disabled{background-image:url(images/btn/btn-default-medium-disabled-bg.gif)}.x4-nbr .x4-btn-default-medium{background-image:none}.x4-btn-default-medium .x4-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:14px}.x4-btn-default-medium .x4-rtl.x4-btn-split-right{background-image:url(images/button/s-arrow-rtl.gif);padding-right:0;padding-left:14px}.x4-btn-default-medium .x4-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:14px}.x4-btn-default-medium-over .x4-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x4-btn-default-medium-over .x4-rtl.x4-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x4-btn-default-medium-over .x4-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x4-btn-default-medium-disabled .x4-btn-inner,.x4-btn-default-medium-disabled .x4-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x4-btn-default-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"}.x4-btn-default-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"}.x4-btn-default-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"}.x4-btn-default-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"}.x4-btn-default-large{border-color:#d1d1d1}.x4-btn-default-large{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:white;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(48%,#f9f9f9),color-stop(52%,#e2e2e2),color-stop(100%,#e7e7e7));background-image:-webkit-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-moz-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-o-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7)}.x4-btn-default-large-mc{background-image:url(images/btn/btn-default-large-fbg.gif);background-position:0 top;background-color:white}.x4-nlg .x4-btn-default-large{background-image:url(images/btn/btn-default-large-bg.gif);background-position:0 top}.x4-nbr .x4-btn-default-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-btn-default-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x4-btn-default-large-tl{background-position:0 -6px}.x4-btn-default-large-tr{background-position:right -9px}.x4-btn-default-large-bl{background-position:0 -12px}.x4-btn-default-large-br{background-position:right -15px}.x4-btn-default-large-ml{background-position:0 top}.x4-btn-default-large-mr{background-position:right top}.x4-btn-default-large-tc{background-position:0 0}.x4-btn-default-large-bc{background-position:0 -3px}.x4-btn-default-large-tr,.x4-btn-default-large-br,.x4-btn-default-large-mr{padding-right:3px}.x4-btn-default-large-tl,.x4-btn-default-large-bl,.x4-btn-default-large-ml{padding-left:3px}.x4-btn-default-large-tc{height:3px}.x4-btn-default-large-bc{height:3px}.x4-btn-default-large-tl,.x4-btn-default-large-bl,.x4-btn-default-large-tr,.x4-btn-default-large-br,.x4-btn-default-large-tc,.x4-btn-default-large-bc,.x4-btn-default-large-ml,.x4-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-corners.gif)}.x4-btn-default-large-ml,.x4-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-sides.gif)}.x4-btn-default-large-mc{padding:1px 1px 1px 1px}.x4-strict .x4-ie7 .x4-btn-default-large-tl,.x4-strict .x4-ie7 .x4-btn-default-large-bl{position:relative;right:0}.x4-btn-default-large:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"}.x4-btn-default-large .x4-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x4-btn-default-large .x4-btn-arrow{background-image:url(images/button/arrow.gif)}.x4-btn-default-large .x4-btn-arrow-right{padding-right:12px}.x4-btn-default-large .x4-rtl.x4-btn-arrow-right{padding-right:0;padding-left:12px}.x4-btn-default-large .x4-btn-arrow-bottom{padding-bottom:12px}.x4-btn-default-large .x4-btn-glyph{font-size:32px;line-height:32px;color:#333;opacity:.5}.x4-ie8m .x4-btn-default-large .x4-btn-glyph{color:#999}.x4-btn-default-large-disabled{border-color:#e1e1e1;background-image:none;background-color:#f7f7f7;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f7f7f7),color-stop(48%,#f1f1f1),color-stop(52%,#dadada),color-stop(100%,#dfdfdf));background-image:-webkit-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-moz-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-o-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf)}.x4-btn-default-large-icon .x4-btn-button,.x4-btn-default-large-noicon .x4-btn-button{height:32px}.x4-btn-default-large-icon .x4-btn-inner,.x4-btn-default-large-noicon .x4-btn-inner{line-height:32px}.x4-btn-default-large-icon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-large-noicon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-large-icon-text-left .x4-btn-arrow-right .x4-btn-inner{padding-right:0}.x4-btn-default-large-icon .x4-btn-arrow-right .x4-rtl.x4-btn-inner,.x4-btn-default-large-noicon .x4-btn-arrow-right .x4-rtl.x4-btn-inner,.x4-btn-default-large-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner{padding-right:3px;padding-left:0}.x4-btn-default-large-icon .x4-btn-inner{width:32px;padding:0}.x4-btn-default-large-icon .x4-btn-icon-el{width:32px;height:32px}.x4-btn-default-large-icon-text-left .x4-btn-button{height:32px}.x4-btn-default-large-icon-text-left .x4-btn-inner{line-height:32px;padding-left:36px}.x4-btn-default-large-icon-text-left .x4-rtl.x4-btn-inner{padding-left:3px;padding-right:36px}.x4-btn-default-large-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner{padding-right:36px}.x4-btn-default-large-icon-text-left .x4-btn-icon-el{width:32px;right:auto}.x4-ie6 .x4-btn-default-large-icon-text-left .x4-btn-icon-el,.x4-quirks .x4-btn-default-large-icon-text-left .x4-btn-icon-el{height:32px}.x4-btn-default-large-icon-text-left .x4-rtl.x4-btn-icon-el{left:auto;right:0}.x4-btn-default-large-icon-text-right .x4-btn-button{height:32px}.x4-btn-default-large-icon-text-right .x4-btn-inner{line-height:32px;padding-right:36px}.x4-btn-default-large-icon-text-right .x4-rtl.x4-btn-inner{padding-right:3px;padding-left:36px}.x4-btn-default-large-icon-text-right .x4-btn-icon-el{width:32px;left:auto}.x4-ie6 .x4-btn-default-large-icon-text-right .x4-btn-icon-el,.x4-quirks .x4-btn-default-large-icon-text-right .x4-btn-icon-el{height:32px}.x4-btn-default-large-icon-text-right .x4-rtl.x4-btn-icon-el{left:0;right:auto}.x4-btn-default-large-icon-text-top .x4-btn-inner{padding-top:36px}.x4-btn-default-large-icon-text-top .x4-btn-icon-el{height:32px;bottom:auto}.x4-ie6 .x4-btn-default-large-icon-text-top .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-large-icon-text-top .x4-btn-icon-el{width:100%}.x4-btn-default-large-icon-text-bottom .x4-btn-inner{padding-bottom:36px}.x4-btn-default-large-icon-text-bottom .x4-btn-icon-el{height:32px;top:auto}.x4-ie6 .x4-btn-default-large-icon-text-bottom .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-large-icon-text-bottom .x4-btn-icon-el{width:100%}.x4-btn-default-large-over{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x4-btn-default-large-focus{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x4-btn-default-large-menu-active,.x4-btn-default-large-pressed{border-color:#9ebae1;background-image:none;background-color:#b6cbe4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#b6cbe4),color-stop(48%,#bfd2e6),color-stop(52%,#8dc0f5),color-stop(100%,#98c5f5));background-image:-webkit-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-moz-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-o-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5)}.x4-btn-default-large-over .x4-frame-tl,.x4-btn-default-large-over .x4-frame-bl,.x4-btn-default-large-over .x4-frame-tr,.x4-btn-default-large-over .x4-frame-br,.x4-btn-default-large-over .x4-frame-tc,.x4-btn-default-large-over .x4-frame-bc{background-image:url(images/btn/btn-default-large-over-corners.gif)}.x4-btn-default-large-over .x4-frame-ml,.x4-btn-default-large-over .x4-frame-mr{background-image:url(images/btn/btn-default-large-over-sides.gif)}.x4-btn-default-large-over .x4-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-large-over-fbg.gif)}.x4-btn-default-large-focus .x4-frame-tl,.x4-btn-default-large-focus .x4-frame-bl,.x4-btn-default-large-focus .x4-frame-tr,.x4-btn-default-large-focus .x4-frame-br,.x4-btn-default-large-focus .x4-frame-tc,.x4-btn-default-large-focus .x4-frame-bc{background-image:url(images/btn/btn-default-large-focus-corners.gif)}.x4-btn-default-large-focus .x4-frame-ml,.x4-btn-default-large-focus .x4-frame-mr{background-image:url(images/btn/btn-default-large-focus-sides.gif)}.x4-btn-default-large-focus .x4-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-large-focus-fbg.gif)}.x4-btn-default-large-menu-active .x4-frame-tl,.x4-btn-default-large-menu-active .x4-frame-bl,.x4-btn-default-large-menu-active .x4-frame-tr,.x4-btn-default-large-menu-active .x4-frame-br,.x4-btn-default-large-menu-active .x4-frame-tc,.x4-btn-default-large-menu-active .x4-frame-bc,.x4-btn-default-large-pressed .x4-frame-tl,.x4-btn-default-large-pressed .x4-frame-bl,.x4-btn-default-large-pressed .x4-frame-tr,.x4-btn-default-large-pressed .x4-frame-br,.x4-btn-default-large-pressed .x4-frame-tc,.x4-btn-default-large-pressed .x4-frame-bc{background-image:url(images/btn/btn-default-large-pressed-corners.gif)}.x4-btn-default-large-menu-active .x4-frame-ml,.x4-btn-default-large-menu-active .x4-frame-mr,.x4-btn-default-large-pressed .x4-frame-ml,.x4-btn-default-large-pressed .x4-frame-mr{background-image:url(images/btn/btn-default-large-pressed-sides.gif)}.x4-btn-default-large-menu-active .x4-frame-mc,.x4-btn-default-large-pressed .x4-frame-mc{background-color:#b6cbe4;background-image:url(images/btn/btn-default-large-pressed-fbg.gif)}.x4-btn-default-large-disabled .x4-frame-tl,.x4-btn-default-large-disabled .x4-frame-bl,.x4-btn-default-large-disabled .x4-frame-tr,.x4-btn-default-large-disabled .x4-frame-br,.x4-btn-default-large-disabled .x4-frame-tc,.x4-btn-default-large-disabled .x4-frame-bc{background-image:url(images/btn/btn-default-large-disabled-corners.gif)}.x4-btn-default-large-disabled .x4-frame-ml,.x4-btn-default-large-disabled .x4-frame-mr{background-image:url(images/btn/btn-default-large-disabled-sides.gif)}.x4-btn-default-large-disabled .x4-frame-mc{background-color:#f7f7f7;background-image:url(images/btn/btn-default-large-disabled-fbg.gif)}.x4-nlg .x4-btn-default-large-over{background-image:url(images/btn/btn-default-large-over-bg.gif)}.x4-nlg .x4-btn-default-large-focus{background-image:url(images/btn/btn-default-large-focus-bg.gif)}.x4-nlg .x4-btn-default-large-menu-active,.x4-nlg .x4-btn-default-large-pressed{background-image:url(images/btn/btn-default-large-pressed-bg.gif)}.x4-nlg .x4-btn-default-large-disabled{background-image:url(images/btn/btn-default-large-disabled-bg.gif)}.x4-nbr .x4-btn-default-large{background-image:none}.x4-btn-default-large .x4-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:14px}.x4-btn-default-large .x4-rtl.x4-btn-split-right{background-image:url(images/button/s-arrow-rtl.gif);padding-right:0;padding-left:14px}.x4-btn-default-large .x4-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:14px}.x4-btn-default-large-over .x4-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x4-btn-default-large-over .x4-rtl.x4-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x4-btn-default-large-over .x4-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x4-btn-default-large-disabled .x4-btn-inner,.x4-btn-default-large-disabled .x4-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x4-btn-default-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"}.x4-btn-default-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"}.x4-btn-default-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"}.x4-btn-default-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"}.x4-btn-default-toolbar-small{border-color:transparent}.x4-btn-default-toolbar-small{-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:transparent}.x4-btn-default-toolbar-small-mc{background-color:transparent}.x4-nbr .x4-btn-default-toolbar-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-btn-default-toolbar-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x4-btn-default-toolbar-small-tl{background-position:0 -6px}.x4-btn-default-toolbar-small-tr{background-position:right -9px}.x4-btn-default-toolbar-small-bl{background-position:0 -12px}.x4-btn-default-toolbar-small-br{background-position:right -15px}.x4-btn-default-toolbar-small-ml{background-position:0 top}.x4-btn-default-toolbar-small-mr{background-position:right top}.x4-btn-default-toolbar-small-tc{background-position:0 0}.x4-btn-default-toolbar-small-bc{background-position:0 -3px}.x4-btn-default-toolbar-small-tr,.x4-btn-default-toolbar-small-br,.x4-btn-default-toolbar-small-mr{padding-right:3px}.x4-btn-default-toolbar-small-tl,.x4-btn-default-toolbar-small-bl,.x4-btn-default-toolbar-small-ml{padding-left:3px}.x4-btn-default-toolbar-small-tc{height:3px}.x4-btn-default-toolbar-small-bc{height:3px}.x4-btn-default-toolbar-small-tl,.x4-btn-default-toolbar-small-bl,.x4-btn-default-toolbar-small-tr,.x4-btn-default-toolbar-small-br,.x4-btn-default-toolbar-small-tc,.x4-btn-default-toolbar-small-bc,.x4-btn-default-toolbar-small-ml,.x4-btn-default-toolbar-small-mr{zoom:1}.x4-btn-default-toolbar-small-ml,.x4-btn-default-toolbar-small-mr{zoom:1}.x4-btn-default-toolbar-small-mc{padding:0}.x4-strict .x4-ie7 .x4-btn-default-toolbar-small-tl,.x4-strict .x4-ie7 .x4-btn-default-toolbar-small-bl{position:relative;right:0}.x4-btn-default-toolbar-small .x4-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 4px}.x4-btn-default-toolbar-small .x4-btn-arrow{background-image:url(images/button/arrow.gif)}.x4-btn-default-toolbar-small .x4-btn-arrow-right{padding-right:12px}.x4-btn-default-toolbar-small .x4-rtl.x4-btn-arrow-right{padding-right:0;padding-left:12px}.x4-btn-default-toolbar-small .x4-btn-arrow-bottom{padding-bottom:12px}.x4-btn-default-toolbar-small .x4-btn-glyph{font-size:16px;line-height:16px;color:#333;opacity:.5}.x4-ie8m .x4-btn-default-toolbar-small .x4-btn-glyph{color:#999}.x4-btn-default-toolbar-small-disabled{border-color:#e1e1e1;background-image:none;background-color:transparent}.x4-btn-default-toolbar-small-disabled .x4-btn-inner{color:#8c8c8c}.x4-btn-default-toolbar-small-icon .x4-btn-button,.x4-btn-default-toolbar-small-noicon .x4-btn-button{height:16px}.x4-btn-default-toolbar-small-icon .x4-btn-inner,.x4-btn-default-toolbar-small-noicon .x4-btn-inner{line-height:16px}.x4-btn-default-toolbar-small-icon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-toolbar-small-noicon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-toolbar-small-icon-text-left .x4-btn-arrow-right .x4-btn-inner{padding-right:0}.x4-btn-default-toolbar-small-icon .x4-btn-arrow-right .x4-rtl.x4-btn-inner,.x4-btn-default-toolbar-small-noicon .x4-btn-arrow-right .x4-rtl.x4-btn-inner,.x4-btn-default-toolbar-small-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner{padding-right:4px;padding-left:0}.x4-btn-default-toolbar-small-icon .x4-btn-inner{width:16px;padding:0}.x4-btn-default-toolbar-small-icon .x4-btn-icon-el{width:16px;height:16px}.x4-btn-default-toolbar-small-icon-text-left .x4-btn-button{height:16px}.x4-btn-default-toolbar-small-icon-text-left .x4-btn-inner{line-height:16px;padding-left:20px}.x4-btn-default-toolbar-small-icon-text-left .x4-rtl.x4-btn-inner{padding-left:4px;padding-right:20px}.x4-btn-default-toolbar-small-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner{padding-right:20px}.x4-btn-default-toolbar-small-icon-text-left .x4-btn-icon-el{width:16px;right:auto}.x4-ie6 .x4-btn-default-toolbar-small-icon-text-left .x4-btn-icon-el,.x4-quirks .x4-btn-default-toolbar-small-icon-text-left .x4-btn-icon-el{height:16px}.x4-btn-default-toolbar-small-icon-text-left .x4-rtl.x4-btn-icon-el{left:auto;right:0}.x4-btn-default-toolbar-small-icon-text-right .x4-btn-button{height:16px}.x4-btn-default-toolbar-small-icon-text-right .x4-btn-inner{line-height:16px;padding-right:20px}.x4-btn-default-toolbar-small-icon-text-right .x4-rtl.x4-btn-inner{padding-right:4px;padding-left:20px}.x4-btn-default-toolbar-small-icon-text-right .x4-btn-icon-el{width:16px;left:auto}.x4-ie6 .x4-btn-default-toolbar-small-icon-text-right .x4-btn-icon-el,.x4-quirks .x4-btn-default-toolbar-small-icon-text-right .x4-btn-icon-el{height:16px}.x4-btn-default-toolbar-small-icon-text-right .x4-rtl.x4-btn-icon-el{left:0;right:auto}.x4-btn-default-toolbar-small-icon-text-top .x4-btn-inner{padding-top:20px}.x4-btn-default-toolbar-small-icon-text-top .x4-btn-icon-el{height:16px;bottom:auto}.x4-ie6 .x4-btn-default-toolbar-small-icon-text-top .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-toolbar-small-icon-text-top .x4-btn-icon-el{width:100%}.x4-btn-default-toolbar-small-icon-text-bottom .x4-btn-inner{padding-bottom:20px}.x4-btn-default-toolbar-small-icon-text-bottom .x4-btn-icon-el{height:16px;top:auto}.x4-ie6 .x4-btn-default-toolbar-small-icon-text-bottom .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-toolbar-small-icon-text-bottom .x4-btn-icon-el{width:100%}.x4-btn-default-toolbar-small-over{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x4-btn-default-toolbar-small-focus{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x4-btn-default-toolbar-small-menu-active,.x4-btn-default-toolbar-small-pressed{border-color:#7a9ac4;background-image:none;background-color:#bccfe5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#bccfe5),color-stop(48%,#c5d6e7),color-stop(52%,#95c4f4),color-stop(100%,#9fc9f5));background-image:-webkit-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-moz-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-o-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5)}.x4-btn-default-toolbar-small-over .x4-frame-tl,.x4-btn-default-toolbar-small-over .x4-frame-bl,.x4-btn-default-toolbar-small-over .x4-frame-tr,.x4-btn-default-toolbar-small-over .x4-frame-br,.x4-btn-default-toolbar-small-over .x4-frame-tc,.x4-btn-default-toolbar-small-over .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-over-corners.gif)}.x4-btn-default-toolbar-small-over .x4-frame-ml,.x4-btn-default-toolbar-small-over .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-over-sides.gif)}.x4-btn-default-toolbar-small-over .x4-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-small-over-fbg.gif)}.x4-btn-default-toolbar-small-focus .x4-frame-tl,.x4-btn-default-toolbar-small-focus .x4-frame-bl,.x4-btn-default-toolbar-small-focus .x4-frame-tr,.x4-btn-default-toolbar-small-focus .x4-frame-br,.x4-btn-default-toolbar-small-focus .x4-frame-tc,.x4-btn-default-toolbar-small-focus .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-focus-corners.gif)}.x4-btn-default-toolbar-small-focus .x4-frame-ml,.x4-btn-default-toolbar-small-focus .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-focus-sides.gif)}.x4-btn-default-toolbar-small-focus .x4-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-small-focus-fbg.gif)}.x4-btn-default-toolbar-small-menu-active .x4-frame-tl,.x4-btn-default-toolbar-small-menu-active .x4-frame-bl,.x4-btn-default-toolbar-small-menu-active .x4-frame-tr,.x4-btn-default-toolbar-small-menu-active .x4-frame-br,.x4-btn-default-toolbar-small-menu-active .x4-frame-tc,.x4-btn-default-toolbar-small-menu-active .x4-frame-bc,.x4-btn-default-toolbar-small-pressed .x4-frame-tl,.x4-btn-default-toolbar-small-pressed .x4-frame-bl,.x4-btn-default-toolbar-small-pressed .x4-frame-tr,.x4-btn-default-toolbar-small-pressed .x4-frame-br,.x4-btn-default-toolbar-small-pressed .x4-frame-tc,.x4-btn-default-toolbar-small-pressed .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-pressed-corners.gif)}.x4-btn-default-toolbar-small-menu-active .x4-frame-ml,.x4-btn-default-toolbar-small-menu-active .x4-frame-mr,.x4-btn-default-toolbar-small-pressed .x4-frame-ml,.x4-btn-default-toolbar-small-pressed .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-pressed-sides.gif)}.x4-btn-default-toolbar-small-menu-active .x4-frame-mc,.x4-btn-default-toolbar-small-pressed .x4-frame-mc{background-color:#bccfe5;background-image:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif)}.x4-btn-default-toolbar-small-disabled .x4-frame-tl,.x4-btn-default-toolbar-small-disabled .x4-frame-bl,.x4-btn-default-toolbar-small-disabled .x4-frame-tr,.x4-btn-default-toolbar-small-disabled .x4-frame-br,.x4-btn-default-toolbar-small-disabled .x4-frame-tc,.x4-btn-default-toolbar-small-disabled .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-disabled-corners.gif)}.x4-btn-default-toolbar-small-disabled .x4-frame-ml,.x4-btn-default-toolbar-small-disabled .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)}.x4-btn-default-toolbar-small-disabled .x4-frame-mc{background-color:transparent}.x4-nlg .x4-btn-default-toolbar-small-over{background-image:url(images/btn/btn-default-toolbar-small-over-bg.gif)}.x4-nlg .x4-btn-default-toolbar-small-focus{background-image:url(images/btn/btn-default-toolbar-small-focus-bg.gif)}.x4-nlg .x4-btn-default-toolbar-small-menu-active,.x4-nlg .x4-btn-default-toolbar-small-pressed{background-image:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)}.x4-nbr .x4-btn-default-toolbar-small{background-image:none}.x4-btn-default-toolbar-small .x4-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:14px}.x4-btn-default-toolbar-small .x4-rtl.x4-btn-split-right{background-image:url(images/button/s-arrow-noline-rtl.gif);padding-right:0;padding-left:14px}.x4-btn-default-toolbar-small .x4-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:14px}.x4-btn-default-toolbar-small-over .x4-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x4-btn-default-toolbar-small-over .x4-rtl.x4-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x4-btn-default-toolbar-small-over .x4-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x4-btn-default-toolbar-small-disabled{filter:alpha(opacity=50);opacity:.5}.x4-btn-default-toolbar-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-over-bg.gif)"}.x4-btn-default-toolbar-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-focus-bg.gif)"}.x4-btn-default-toolbar-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)"}.x4-btn-default-toolbar-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)"}.x4-btn-default-toolbar-medium{border-color:transparent}.x4-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:transparent}.x4-btn-default-toolbar-medium-mc{background-color:transparent}.x4-nbr .x4-btn-default-toolbar-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-btn-default-toolbar-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x4-btn-default-toolbar-medium-tl{background-position:0 -6px}.x4-btn-default-toolbar-medium-tr{background-position:right -9px}.x4-btn-default-toolbar-medium-bl{background-position:0 -12px}.x4-btn-default-toolbar-medium-br{background-position:right -15px}.x4-btn-default-toolbar-medium-ml{background-position:0 top}.x4-btn-default-toolbar-medium-mr{background-position:right top}.x4-btn-default-toolbar-medium-tc{background-position:0 0}.x4-btn-default-toolbar-medium-bc{background-position:0 -3px}.x4-btn-default-toolbar-medium-tr,.x4-btn-default-toolbar-medium-br,.x4-btn-default-toolbar-medium-mr{padding-right:3px}.x4-btn-default-toolbar-medium-tl,.x4-btn-default-toolbar-medium-bl,.x4-btn-default-toolbar-medium-ml{padding-left:3px}.x4-btn-default-toolbar-medium-tc{height:3px}.x4-btn-default-toolbar-medium-bc{height:3px}.x4-btn-default-toolbar-medium-tl,.x4-btn-default-toolbar-medium-bl,.x4-btn-default-toolbar-medium-tr,.x4-btn-default-toolbar-medium-br,.x4-btn-default-toolbar-medium-tc,.x4-btn-default-toolbar-medium-bc,.x4-btn-default-toolbar-medium-ml,.x4-btn-default-toolbar-medium-mr{zoom:1}.x4-btn-default-toolbar-medium-ml,.x4-btn-default-toolbar-medium-mr{zoom:1}.x4-btn-default-toolbar-medium-mc{padding:1px 1px 1px 1px}.x4-strict .x4-ie7 .x4-btn-default-toolbar-medium-tl,.x4-strict .x4-ie7 .x4-btn-default-toolbar-medium-bl{position:relative;right:0}.x4-btn-default-toolbar-medium .x4-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x4-btn-default-toolbar-medium .x4-btn-arrow{background-image:url(images/button/arrow.gif)}.x4-btn-default-toolbar-medium .x4-btn-arrow-right{padding-right:12px}.x4-btn-default-toolbar-medium .x4-rtl.x4-btn-arrow-right{padding-right:0;padding-left:12px}.x4-btn-default-toolbar-medium .x4-btn-arrow-bottom{padding-bottom:12px}.x4-btn-default-toolbar-medium .x4-btn-glyph{font-size:24px;line-height:24px;color:#333;opacity:.5}.x4-ie8m .x4-btn-default-toolbar-medium .x4-btn-glyph{color:#999}.x4-btn-default-toolbar-medium-disabled{border-color:#e1e1e1;background-image:none;background-color:transparent}.x4-btn-default-toolbar-medium-disabled .x4-btn-inner{color:#8c8c8c}.x4-btn-default-toolbar-medium-icon .x4-btn-button,.x4-btn-default-toolbar-medium-noicon .x4-btn-button{height:24px}.x4-btn-default-toolbar-medium-icon .x4-btn-inner,.x4-btn-default-toolbar-medium-noicon .x4-btn-inner{line-height:24px}.x4-btn-default-toolbar-medium-icon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-toolbar-medium-noicon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-arrow-right .x4-btn-inner{padding-right:0}.x4-btn-default-toolbar-medium-icon .x4-btn-arrow-right .x4-rtl.x4-btn-inner,.x4-btn-default-toolbar-medium-noicon .x4-btn-arrow-right .x4-rtl.x4-btn-inner,.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner{padding-right:3px;padding-left:0}.x4-btn-default-toolbar-medium-icon .x4-btn-inner{width:24px;padding:0}.x4-btn-default-toolbar-medium-icon .x4-btn-icon-el{width:24px;height:24px}.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-button{height:24px}.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-inner{line-height:24px;padding-left:28px}.x4-btn-default-toolbar-medium-icon-text-left .x4-rtl.x4-btn-inner{padding-left:3px;padding-right:28px}.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner{padding-right:28px}.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-icon-el{width:24px;right:auto}.x4-ie6 .x4-btn-default-toolbar-medium-icon-text-left .x4-btn-icon-el,.x4-quirks .x4-btn-default-toolbar-medium-icon-text-left .x4-btn-icon-el{height:24px}.x4-btn-default-toolbar-medium-icon-text-left .x4-rtl.x4-btn-icon-el{left:auto;right:0}.x4-btn-default-toolbar-medium-icon-text-right .x4-btn-button{height:24px}.x4-btn-default-toolbar-medium-icon-text-right .x4-btn-inner{line-height:24px;padding-right:28px}.x4-btn-default-toolbar-medium-icon-text-right .x4-rtl.x4-btn-inner{padding-right:3px;padding-left:28px}.x4-btn-default-toolbar-medium-icon-text-right .x4-btn-icon-el{width:24px;left:auto}.x4-ie6 .x4-btn-default-toolbar-medium-icon-text-right .x4-btn-icon-el,.x4-quirks .x4-btn-default-toolbar-medium-icon-text-right .x4-btn-icon-el{height:24px}.x4-btn-default-toolbar-medium-icon-text-right .x4-rtl.x4-btn-icon-el{left:0;right:auto}.x4-btn-default-toolbar-medium-icon-text-top .x4-btn-inner{padding-top:28px}.x4-btn-default-toolbar-medium-icon-text-top .x4-btn-icon-el{height:24px;bottom:auto}.x4-ie6 .x4-btn-default-toolbar-medium-icon-text-top .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-toolbar-medium-icon-text-top .x4-btn-icon-el{width:100%}.x4-btn-default-toolbar-medium-icon-text-bottom .x4-btn-inner{padding-bottom:28px}.x4-btn-default-toolbar-medium-icon-text-bottom .x4-btn-icon-el{height:24px;top:auto}.x4-ie6 .x4-btn-default-toolbar-medium-icon-text-bottom .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-toolbar-medium-icon-text-bottom .x4-btn-icon-el{width:100%}.x4-btn-default-toolbar-medium-over{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x4-btn-default-toolbar-medium-focus{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x4-btn-default-toolbar-medium-menu-active,.x4-btn-default-toolbar-medium-pressed{border-color:#7a9ac4;background-image:none;background-color:#bccfe5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#bccfe5),color-stop(48%,#c5d6e7),color-stop(52%,#95c4f4),color-stop(100%,#9fc9f5));background-image:-webkit-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-moz-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-o-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5)}.x4-btn-default-toolbar-medium-over .x4-frame-tl,.x4-btn-default-toolbar-medium-over .x4-frame-bl,.x4-btn-default-toolbar-medium-over .x4-frame-tr,.x4-btn-default-toolbar-medium-over .x4-frame-br,.x4-btn-default-toolbar-medium-over .x4-frame-tc,.x4-btn-default-toolbar-medium-over .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-over-corners.gif)}.x4-btn-default-toolbar-medium-over .x4-frame-ml,.x4-btn-default-toolbar-medium-over .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-over-sides.gif)}.x4-btn-default-toolbar-medium-over .x4-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-medium-over-fbg.gif)}.x4-btn-default-toolbar-medium-focus .x4-frame-tl,.x4-btn-default-toolbar-medium-focus .x4-frame-bl,.x4-btn-default-toolbar-medium-focus .x4-frame-tr,.x4-btn-default-toolbar-medium-focus .x4-frame-br,.x4-btn-default-toolbar-medium-focus .x4-frame-tc,.x4-btn-default-toolbar-medium-focus .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-focus-corners.gif)}.x4-btn-default-toolbar-medium-focus .x4-frame-ml,.x4-btn-default-toolbar-medium-focus .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-focus-sides.gif)}.x4-btn-default-toolbar-medium-focus .x4-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif)}.x4-btn-default-toolbar-medium-menu-active .x4-frame-tl,.x4-btn-default-toolbar-medium-menu-active .x4-frame-bl,.x4-btn-default-toolbar-medium-menu-active .x4-frame-tr,.x4-btn-default-toolbar-medium-menu-active .x4-frame-br,.x4-btn-default-toolbar-medium-menu-active .x4-frame-tc,.x4-btn-default-toolbar-medium-menu-active .x4-frame-bc,.x4-btn-default-toolbar-medium-pressed .x4-frame-tl,.x4-btn-default-toolbar-medium-pressed .x4-frame-bl,.x4-btn-default-toolbar-medium-pressed .x4-frame-tr,.x4-btn-default-toolbar-medium-pressed .x4-frame-br,.x4-btn-default-toolbar-medium-pressed .x4-frame-tc,.x4-btn-default-toolbar-medium-pressed .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif)}.x4-btn-default-toolbar-medium-menu-active .x4-frame-ml,.x4-btn-default-toolbar-medium-menu-active .x4-frame-mr,.x4-btn-default-toolbar-medium-pressed .x4-frame-ml,.x4-btn-default-toolbar-medium-pressed .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif)}.x4-btn-default-toolbar-medium-menu-active .x4-frame-mc,.x4-btn-default-toolbar-medium-pressed .x4-frame-mc{background-color:#bccfe5;background-image:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif)}.x4-btn-default-toolbar-medium-disabled .x4-frame-tl,.x4-btn-default-toolbar-medium-disabled .x4-frame-bl,.x4-btn-default-toolbar-medium-disabled .x4-frame-tr,.x4-btn-default-toolbar-medium-disabled .x4-frame-br,.x4-btn-default-toolbar-medium-disabled .x4-frame-tc,.x4-btn-default-toolbar-medium-disabled .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif)}.x4-btn-default-toolbar-medium-disabled .x4-frame-ml,.x4-btn-default-toolbar-medium-disabled .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)}.x4-btn-default-toolbar-medium-disabled .x4-frame-mc{background-color:transparent}.x4-nlg .x4-btn-default-toolbar-medium-over{background-image:url(images/btn/btn-default-toolbar-medium-over-bg.gif)}.x4-nlg .x4-btn-default-toolbar-medium-focus{background-image:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)}.x4-nlg .x4-btn-default-toolbar-medium-menu-active,.x4-nlg .x4-btn-default-toolbar-medium-pressed{background-image:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)}.x4-nbr .x4-btn-default-toolbar-medium{background-image:none}.x4-btn-default-toolbar-medium .x4-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:14px}.x4-btn-default-toolbar-medium .x4-rtl.x4-btn-split-right{background-image:url(images/button/s-arrow-noline-rtl.gif);padding-right:0;padding-left:14px}.x4-btn-default-toolbar-medium .x4-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:14px}.x4-btn-default-toolbar-medium-over .x4-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x4-btn-default-toolbar-medium-over .x4-rtl.x4-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x4-btn-default-toolbar-medium-over .x4-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x4-btn-default-toolbar-medium-disabled{filter:alpha(opacity=50);opacity:.5}.x4-btn-default-toolbar-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-over-bg.gif)"}.x4-btn-default-toolbar-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)"}.x4-btn-default-toolbar-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)"}.x4-btn-default-toolbar-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)"}.x4-btn-default-toolbar-large{border-color:transparent}.x4-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:transparent}.x4-btn-default-toolbar-large-mc{background-color:transparent}.x4-nbr .x4-btn-default-toolbar-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-btn-default-toolbar-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x4-btn-default-toolbar-large-tl{background-position:0 -6px}.x4-btn-default-toolbar-large-tr{background-position:right -9px}.x4-btn-default-toolbar-large-bl{background-position:0 -12px}.x4-btn-default-toolbar-large-br{background-position:right -15px}.x4-btn-default-toolbar-large-ml{background-position:0 top}.x4-btn-default-toolbar-large-mr{background-position:right top}.x4-btn-default-toolbar-large-tc{background-position:0 0}.x4-btn-default-toolbar-large-bc{background-position:0 -3px}.x4-btn-default-toolbar-large-tr,.x4-btn-default-toolbar-large-br,.x4-btn-default-toolbar-large-mr{padding-right:3px}.x4-btn-default-toolbar-large-tl,.x4-btn-default-toolbar-large-bl,.x4-btn-default-toolbar-large-ml{padding-left:3px}.x4-btn-default-toolbar-large-tc{height:3px}.x4-btn-default-toolbar-large-bc{height:3px}.x4-btn-default-toolbar-large-tl,.x4-btn-default-toolbar-large-bl,.x4-btn-default-toolbar-large-tr,.x4-btn-default-toolbar-large-br,.x4-btn-default-toolbar-large-tc,.x4-btn-default-toolbar-large-bc,.x4-btn-default-toolbar-large-ml,.x4-btn-default-toolbar-large-mr{zoom:1}.x4-btn-default-toolbar-large-ml,.x4-btn-default-toolbar-large-mr{zoom:1}.x4-btn-default-toolbar-large-mc{padding:1px 1px 1px 1px}.x4-strict .x4-ie7 .x4-btn-default-toolbar-large-tl,.x4-strict .x4-ie7 .x4-btn-default-toolbar-large-bl{position:relative;right:0}.x4-btn-default-toolbar-large .x4-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x4-btn-default-toolbar-large .x4-btn-arrow{background-image:url(images/button/arrow.gif)}.x4-btn-default-toolbar-large .x4-btn-arrow-right{padding-right:12px}.x4-btn-default-toolbar-large .x4-rtl.x4-btn-arrow-right{padding-right:0;padding-left:12px}.x4-btn-default-toolbar-large .x4-btn-arrow-bottom{padding-bottom:12px}.x4-btn-default-toolbar-large .x4-btn-glyph{font-size:32px;line-height:32px;color:#333;opacity:.5}.x4-ie8m .x4-btn-default-toolbar-large .x4-btn-glyph{color:#999}.x4-btn-default-toolbar-large-disabled{border-color:#e1e1e1;background-image:none;background-color:transparent}.x4-btn-default-toolbar-large-disabled .x4-btn-inner{color:#8c8c8c}.x4-btn-default-toolbar-large-icon .x4-btn-button,.x4-btn-default-toolbar-large-noicon .x4-btn-button{height:32px}.x4-btn-default-toolbar-large-icon .x4-btn-inner,.x4-btn-default-toolbar-large-noicon .x4-btn-inner{line-height:32px}.x4-btn-default-toolbar-large-icon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-toolbar-large-noicon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-toolbar-large-icon-text-left .x4-btn-arrow-right .x4-btn-inner{padding-right:0}.x4-btn-default-toolbar-large-icon .x4-btn-arrow-right .x4-rtl.x4-btn-inner,.x4-btn-default-toolbar-large-noicon .x4-btn-arrow-right .x4-rtl.x4-btn-inner,.x4-btn-default-toolbar-large-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner{padding-right:3px;padding-left:0}.x4-btn-default-toolbar-large-icon .x4-btn-inner{width:32px;padding:0}.x4-btn-default-toolbar-large-icon .x4-btn-icon-el{width:32px;height:32px}.x4-btn-default-toolbar-large-icon-text-left .x4-btn-button{height:32px}.x4-btn-default-toolbar-large-icon-text-left .x4-btn-inner{line-height:32px;padding-left:36px}.x4-btn-default-toolbar-large-icon-text-left .x4-rtl.x4-btn-inner{padding-left:3px;padding-right:36px}.x4-btn-default-toolbar-large-icon-text-left .x4-btn-arrow-right .x4-rtl.x4-btn-inner{padding-right:36px}.x4-btn-default-toolbar-large-icon-text-left .x4-btn-icon-el{width:32px;right:auto}.x4-ie6 .x4-btn-default-toolbar-large-icon-text-left .x4-btn-icon-el,.x4-quirks .x4-btn-default-toolbar-large-icon-text-left .x4-btn-icon-el{height:32px}.x4-btn-default-toolbar-large-icon-text-left .x4-rtl.x4-btn-icon-el{left:auto;right:0}.x4-btn-default-toolbar-large-icon-text-right .x4-btn-button{height:32px}.x4-btn-default-toolbar-large-icon-text-right .x4-btn-inner{line-height:32px;padding-right:36px}.x4-btn-default-toolbar-large-icon-text-right .x4-rtl.x4-btn-inner{padding-right:3px;padding-left:36px}.x4-btn-default-toolbar-large-icon-text-right .x4-btn-icon-el{width:32px;left:auto}.x4-ie6 .x4-btn-default-toolbar-large-icon-text-right .x4-btn-icon-el,.x4-quirks .x4-btn-default-toolbar-large-icon-text-right .x4-btn-icon-el{height:32px}.x4-btn-default-toolbar-large-icon-text-right .x4-rtl.x4-btn-icon-el{left:0;right:auto}.x4-btn-default-toolbar-large-icon-text-top .x4-btn-inner{padding-top:36px}.x4-btn-default-toolbar-large-icon-text-top .x4-btn-icon-el{height:32px;bottom:auto}.x4-ie6 .x4-btn-default-toolbar-large-icon-text-top .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-toolbar-large-icon-text-top .x4-btn-icon-el{width:100%}.x4-btn-default-toolbar-large-icon-text-bottom .x4-btn-inner{padding-bottom:36px}.x4-btn-default-toolbar-large-icon-text-bottom .x4-btn-icon-el{height:32px;top:auto}.x4-ie6 .x4-btn-default-toolbar-large-icon-text-bottom .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-toolbar-large-icon-text-bottom .x4-btn-icon-el{width:100%}.x4-btn-default-toolbar-large-over{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x4-btn-default-toolbar-large-focus{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x4-btn-default-toolbar-large-menu-active,.x4-btn-default-toolbar-large-pressed{border-color:#7a9ac4;background-image:none;background-color:#bccfe5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#bccfe5),color-stop(48%,#c5d6e7),color-stop(52%,#95c4f4),color-stop(100%,#9fc9f5));background-image:-webkit-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-moz-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-o-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5)}.x4-btn-default-toolbar-large-over .x4-frame-tl,.x4-btn-default-toolbar-large-over .x4-frame-bl,.x4-btn-default-toolbar-large-over .x4-frame-tr,.x4-btn-default-toolbar-large-over .x4-frame-br,.x4-btn-default-toolbar-large-over .x4-frame-tc,.x4-btn-default-toolbar-large-over .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-over-corners.gif)}.x4-btn-default-toolbar-large-over .x4-frame-ml,.x4-btn-default-toolbar-large-over .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-over-sides.gif)}.x4-btn-default-toolbar-large-over .x4-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-large-over-fbg.gif)}.x4-btn-default-toolbar-large-focus .x4-frame-tl,.x4-btn-default-toolbar-large-focus .x4-frame-bl,.x4-btn-default-toolbar-large-focus .x4-frame-tr,.x4-btn-default-toolbar-large-focus .x4-frame-br,.x4-btn-default-toolbar-large-focus .x4-frame-tc,.x4-btn-default-toolbar-large-focus .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-focus-corners.gif)}.x4-btn-default-toolbar-large-focus .x4-frame-ml,.x4-btn-default-toolbar-large-focus .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-focus-sides.gif)}.x4-btn-default-toolbar-large-focus .x4-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-large-focus-fbg.gif)}.x4-btn-default-toolbar-large-menu-active .x4-frame-tl,.x4-btn-default-toolbar-large-menu-active .x4-frame-bl,.x4-btn-default-toolbar-large-menu-active .x4-frame-tr,.x4-btn-default-toolbar-large-menu-active .x4-frame-br,.x4-btn-default-toolbar-large-menu-active .x4-frame-tc,.x4-btn-default-toolbar-large-menu-active .x4-frame-bc,.x4-btn-default-toolbar-large-pressed .x4-frame-tl,.x4-btn-default-toolbar-large-pressed .x4-frame-bl,.x4-btn-default-toolbar-large-pressed .x4-frame-tr,.x4-btn-default-toolbar-large-pressed .x4-frame-br,.x4-btn-default-toolbar-large-pressed .x4-frame-tc,.x4-btn-default-toolbar-large-pressed .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-pressed-corners.gif)}.x4-btn-default-toolbar-large-menu-active .x4-frame-ml,.x4-btn-default-toolbar-large-menu-active .x4-frame-mr,.x4-btn-default-toolbar-large-pressed .x4-frame-ml,.x4-btn-default-toolbar-large-pressed .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-pressed-sides.gif)}.x4-btn-default-toolbar-large-menu-active .x4-frame-mc,.x4-btn-default-toolbar-large-pressed .x4-frame-mc{background-color:#bccfe5;background-image:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif)}.x4-btn-default-toolbar-large-disabled .x4-frame-tl,.x4-btn-default-toolbar-large-disabled .x4-frame-bl,.x4-btn-default-toolbar-large-disabled .x4-frame-tr,.x4-btn-default-toolbar-large-disabled .x4-frame-br,.x4-btn-default-toolbar-large-disabled .x4-frame-tc,.x4-btn-default-toolbar-large-disabled .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-disabled-corners.gif)}.x4-btn-default-toolbar-large-disabled .x4-frame-ml,.x4-btn-default-toolbar-large-disabled .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)}.x4-btn-default-toolbar-large-disabled .x4-frame-mc{background-color:transparent}.x4-nlg .x4-btn-default-toolbar-large-over{background-image:url(images/btn/btn-default-toolbar-large-over-bg.gif)}.x4-nlg .x4-btn-default-toolbar-large-focus{background-image:url(images/btn/btn-default-toolbar-large-focus-bg.gif)}.x4-nlg .x4-btn-default-toolbar-large-menu-active,.x4-nlg .x4-btn-default-toolbar-large-pressed{background-image:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)}.x4-nbr .x4-btn-default-toolbar-large{background-image:none}.x4-btn-default-toolbar-large .x4-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:14px}.x4-btn-default-toolbar-large .x4-rtl.x4-btn-split-right{background-image:url(images/button/s-arrow-noline-rtl.gif);padding-right:0;padding-left:14px}.x4-btn-default-toolbar-large .x4-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:14px}.x4-btn-default-toolbar-large-over .x4-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x4-btn-default-toolbar-large-over .x4-rtl.x4-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x4-btn-default-toolbar-large-over .x4-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x4-btn-default-toolbar-large-disabled{filter:alpha(opacity=50);opacity:.5}.x4-btn-default-toolbar-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-over-bg.gif)"}.x4-btn-default-toolbar-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-focus-bg.gif)"}.x4-btn-default-toolbar-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)"}.x4-btn-default-toolbar-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)"}.x4-btn-icon-text-left .x4-btn-icon-el{background-position:left center}.x4-btn-icon-text-left .x4-rtl.x4-btn-icon-el{background-position:right center}.x4-btn-icon-text-right .x4-btn-icon-el{background-position:right center}.x4-btn-icon-text-right .x4-rtl.x4-btn-icon-el{background-position:left center}.x4-btn-icon-text-top .x4-btn-icon-el{background-position:center top}.x4-btn-icon-text-bottom .x4-btn-icon-el{background-position:center bottom}.x4-btn-arrow-right{background-position:right center}.x4-rtl.x4-btn-arrow-right{background-position:left center}.x4-btn-arrow-bottom{background-position:center bottom}.x4-btn-arrow{background-repeat:no-repeat}.x4-btn-split{display:block;background-repeat:no-repeat}.x4-btn-split-right{background-position:right center}.x4-rtl.x4-btn-split-right{background-position:0 center}.x4-btn-split-bottom{background-position:center bottom}.x4-cycle-fixed-width .x4-btn-inner{text-align:inherit}.x4-toolbar{font-size:11px;border-style:solid;padding:2px 0 2px 2px}.x4-toolbar-item{margin:0 2px 0 0}.x4-rtl.x4-toolbar-item{margin:0 0 0 2px}.x4-toolbar-text{margin:0 6px 0 4px;color:#4c4c4c;line-height:16px;font-family:tahoma,arial,verdana,sans-serif;font-size:11px;font-weight:normal}.x4-toolbar-separator-horizontal{margin:0 2px 0 0;height:14px;border-style:solid;border-width:0 1px;border-left-color:#98c8ff;border-right-color:white}.x4-rtl.x4-toolbar{padding:2px 2px 2px 0}.x4-toolbar-footer{background:transparent;border:0;margin:3px 0 0;padding:2px 0 2px 6px}.x4-toolbar-footer .x4-toolbar-item{margin:0 6px 0 0}.x4-toolbar-spacer{width:2px}.x4-toolbar-more-icon{background-image:url(images/toolbar/more.gif)!important;background-position:center center!important;background-repeat:no-repeat}.x4-toolbar-default{border-color:#99bce8;border-width:1px;background-image:none;background-color:#d3e1f1;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dfe9f5),color-stop(100%,#d3e1f1));background-image:-webkit-linear-gradient(top,#dfe9f5,#d3e1f1);background-image:-moz-linear-gradient(top,#dfe9f5,#d3e1f1);background-image:-o-linear-gradient(top,#dfe9f5,#d3e1f1);background-image:linear-gradient(top,#dfe9f5,#d3e1f1)}.x4-toolbar-default .x4-box-scroller{cursor:pointer}.x4-toolbar-default .x4-box-scroller-disabled{filter:alpha(opacity=50);opacity:.5;cursor:default}.x4-nlg .x4-toolbar-default{background-image:url(images/toolbar/toolbar-default-bg.gif)!important;background-repeat:repeat-x}.x4-toolbar-default:after{display:none;content:"x-slicer:bg:url(images/toolbar/toolbar-default-bg.gif), stretch:bottom"}.x4-toolbar-scroll-left{background-image:url(images/toolbar/scroll-left.gif);background-position:-14px 0;width:14px;height:22px;border-style:solid;border-color:#8db2e3;border-width:0 0 1px;margin-top:0}.x4-toolbar-scroll-left-hover{background-position:0 0}.x4-toolbar-scroll-right{background-image:url(images/toolbar/scroll-right.gif);width:14px;height:22px;border-style:solid;border-color:#8db2e3;border-width:0 0 1px;margin-top:0}.x4-toolbar-scroll-right-hover{background-position:-14px 0}.x4-toolbar .x4-box-menu-after{margin:0 2px 0 2px}.x4-toolbar-vertical{padding:2px 2px 0 2px}.x4-toolbar-vertical .x4-toolbar-item{margin:0 0 2px 0}.x4-toolbar-vertical .x4-toolbar-text{margin:4px 0 6px 0}.x4-toolbar-vertical .x4-toolbar-separator-vertical{margin:0 5px 2px;border-style:solid none;border-width:1px 0;border-top-color:#98c8ff;border-bottom-color:white}.x4-toolbar-vertical .x4-box-menu-after,.x4-toolbar-vertical .x4-rtl.x4-box-menu-after{margin:2px 0 2px 0;display:block;float:none}.x4-header-draggable .x4-header-body,.x4-header-ghost{cursor:move}.x4-header-text{white-space:nowrap}.x4-panel-ghost{filter:alpha(opacity=65);opacity:.65}.x4-panel-default{border-color:#99bce8;padding:0}.x4-panel-header-default{font-size:11px;border:1px solid #99bce8}.x4-panel-header-default-horizontal{padding:4px 5px 4px 5px}.x4-panel-header-default-horizontal-noborder{padding:5px 6px 4px 6px}.x4-panel-header-default-vertical{padding:5px 4px 5px 4px}.x4-panel-header-default-vertical-noborder{padding:6px 5px 6px 4px}.x4-rtl.x4-panel-header-default-vertical{padding:5px 4px 5px 4px}.x4-rtl.x4-panel-header-default-vertical-noborder{padding:6px 4px 6px 5px}.x4-panel-header-text-container-default{color:#04408c;font-size:11px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;line-height:15px;padding:0 2px 1px;text-transform:none}.x4-panel-body-default{background:white;border-color:#99bce8;color:black;font-size:12px;font-size:normal;border-width:1px;border-style:solid}.x4-panel-header-default{background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-panel-header-default-vertical{background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-rtl.x4-panel-header-default-vertical{background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-nlg .x4-panel-header-default-top{background:url(images/panel-header/panel-header-default-top-bg.gif)}.x4-nlg .x4-panel-header-default-bottom{background:url(images/panel-header/panel-header-default-bottom-bg.gif)}.x4-nlg .x4-panel-header-default-left{background:url(images/panel-header/panel-header-default-left-bg.gif) top right}.x4-nlg .x4-panel-header-default-right{background:url(images/panel-header/panel-header-default-right-bg.gif) top right}.x4-nlg .x4-rtl.x4-panel-header-default-left{background:url(images/panel-header/panel-header-default-left-bg-rtl.gif)}.x4-nlg .x4-rtl.x4-panel-header-default-right{background:url(images/panel-header/panel-header-default-right-bg-rtl.gif)}.x4-panel .x4-panel-header-default-collapsed-border-top{border-bottom-width:1px!important}.x4-panel .x4-panel-header-default-collapsed-border-right{border-left-width:1px!important}.x4-panel .x4-panel-header-default-collapsed-border-bottom{border-top-width:1px!important}.x4-panel .x4-panel-header-default-collapsed-border-left{border-right-width:1px!important}.x4-panel-header-default-top:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-top-bg.gif), stretch:bottom"}.x4-panel-header-default-bottom:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-bottom-bg.gif), stretch:bottom"}.x4-panel-header-default-left:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-left-bg-rtl.gif), stretch:left"}.x4-panel-header-default-right:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-right-bg-rtl.gif), stretch:left"}.x4-panel-header-default-vertical .x4-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x4-ie9m .x4-panel-header-default-vertical .x4-panel-header-text-container{background-color:#cbddf3;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3)}.x4-panel-header-default-vertical .x4-rtl.x4-panel-header-text-container{-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;transform:rotate(270deg);transform-origin:100% 0}.x4-ie9m .x4-panel-header-default-vertical .x4-rtl.x4-panel-header-text-container{background-color:#cbddf3;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3),progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3)}.x4-panel-header-default-top{-webkit-box-shadow:#f3f7fb 0 1px 0 0 inset;-moz-box-shadow:#f3f7fb 0 1px 0 0 inset;box-shadow:#f3f7fb 0 1px 0 0 inset}.x4-panel-header-default-right{-webkit-box-shadow:#f3f7fb -1px 0 0 0 inset;-moz-box-shadow:#f3f7fb -1px 0 0 0 inset;box-shadow:#f3f7fb -1px 0 0 0 inset}.x4-panel-header-default-bottom{-webkit-box-shadow:#f3f7fb 0 -1px 0 0 inset;-moz-box-shadow:#f3f7fb 0 -1px 0 0 inset;box-shadow:#f3f7fb 0 -1px 0 0 inset}.x4-panel-header-default-left{-webkit-box-shadow:#f3f7fb 1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 1px 0 0 0 inset;box-shadow:#f3f7fb 1px 0 0 0 inset}.x4-panel-header-default .x4-panel-header-icon{width:16px;height:16px;background-position:center center}.x4-panel-header-default .x4-panel-header-glyph{color:#04408c;font-size:16px;line-height:16px;opacity:.5}.x4-ie8m .x4-panel-header-default .x4-panel-header-glyph{color:#678ebf}.x4-panel-header-default-horizontal .x4-panel-header-icon-before-title{margin:0 2px 0 0}.x4-panel-header-default-horizontal .x4-rtl.x4-panel-header-icon-before-title{margin:0 0 0 2px}.x4-panel-header-default-horizontal .x4-panel-header-icon-after-title{margin:0 0 0 2px}.x4-panel-header-default-horizontal .x4-rtl.x4-panel-header-icon-after-title{margin:0 2px 0 0}.x4-panel-header-default-vertical .x4-panel-header-icon-before-title{margin:0 0 2px 0}.x4-panel-header-default-vertical .x4-rtl.x4-panel-header-icon-before-title{margin:0 0 2px 0}.x4-panel-header-default-vertical .x4-panel-header-icon-after-title{margin:2px 0 0 0}.x4-panel-header-default-vertical .x4-rtl.x4-panel-header-icon-after-title{margin:2px 0 0 0}.x4-panel-header-default-horizontal .x4-tool-after-title{margin:0 0 0 2px}.x4-panel-header-default-horizontal .x4-rtl.x4-tool-after-title{margin:0 2px 0 0}.x4-panel-header-default-horizontal .x4-tool-before-title{margin:0 2px 0 0}.x4-panel-header-default-horizontal .x4-rtl.x4-tool-before-title{margin:0 0 0 2px}.x4-panel-header-default-vertical .x4-tool-after-title{margin:2px 0 0 0}.x4-panel-header-default-vertical .x4-rtl.x4-tool-after-title{margin:2px 0 0 0}.x4-panel-header-default-vertical .x4-tool-before-title{margin:0 0 2px 0}.x4-panel-header-default-vertical .x4-rtl.x4-tool-before-title{margin:0 0 2px 0}.x4-rtl.x4-panel-header-default-collapsed-border-right{border-right-width:1px!important}.x4-rtl.x4-panel-header-default-collapsed-border-left{border-left-width:1px!important}.x4-panel-default-resizable .x4-panel-handle{filter:alpha(opacity=0);opacity:0}.x4-panel-default-framed{border-color:#99bce8;padding:4px}.x4-panel-header-default-framed{font-size:11px;border:1px solid #99bce8}.x4-panel-header-default-framed-horizontal{padding:4px 5px 4px 5px}.x4-panel-header-default-framed-horizontal-noborder{padding:5px 6px 4px 6px}.x4-panel-header-default-framed-vertical{padding:5px 4px 5px 4px}.x4-panel-header-default-framed-vertical-noborder{padding:6px 5px 6px 4px}.x4-rtl.x4-panel-header-default-framed-vertical{padding:5px 4px 5px 4px}.x4-rtl.x4-panel-header-default-framed-vertical-noborder{padding:6px 4px 6px 5px}.x4-panel-header-text-container-default-framed{color:#04408c;font-size:11px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;line-height:15px;padding:0 2px 1px;text-transform:none}.x4-panel-body-default-framed{background:#dfe9f6;border-color:#99bce8;color:black;font-size:12px;font-size:normal;border-width:0;border-style:solid}.x4-panel-default-framed{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:#dfe9f6}.x4-panel-default-framed-mc{background-color:#dfe9f6}.x4-nbr .x4-panel-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-panel-default-framed-frameInfo{font-family:dh-4-4-4-4-1-1-1-1-4-4-4-4}.x4-panel-default-framed-tl{background-position:0 -8px}.x4-panel-default-framed-tr{background-position:right -12px}.x4-panel-default-framed-bl{background-position:0 -16px}.x4-panel-default-framed-br{background-position:right -20px}.x4-panel-default-framed-ml{background-position:0 top}.x4-panel-default-framed-mr{background-position:right top}.x4-panel-default-framed-tc{background-position:0 0}.x4-panel-default-framed-bc{background-position:0 -4px}.x4-panel-default-framed-tr,.x4-panel-default-framed-br,.x4-panel-default-framed-mr{padding-right:4px}.x4-panel-default-framed-tl,.x4-panel-default-framed-bl,.x4-panel-default-framed-ml{padding-left:4px}.x4-panel-default-framed-tc{height:4px}.x4-panel-default-framed-bc{height:4px}.x4-panel-default-framed-tl,.x4-panel-default-framed-bl,.x4-panel-default-framed-tr,.x4-panel-default-framed-br,.x4-panel-default-framed-tc,.x4-panel-default-framed-bc,.x4-panel-default-framed-ml,.x4-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-corners.gif)}.x4-panel-default-framed-ml,.x4-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-sides.gif);background-repeat:repeat-y}.x4-panel-default-framed-mc{padding:1px 1px 1px 1px}.x4-strict .x4-ie7 .x4-panel-default-framed-tl,.x4-strict .x4-ie7 .x4-panel-default-framed-bl{position:relative;right:0}.x4-panel-default-framed:after{display:none;content:"x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"}.x4-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:4px 5px 4px 5px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-panel-header-default-framed-top-mc{background-image:url(images/panel-header/panel-header-default-framed-top-fbg.gif);background-position:0 top;background-color:#cbddf3}.x4-nlg .x4-panel-header-default-framed-top{background-image:url(images/panel-header/panel-header-default-framed-top-bg.gif);background-position:0 top}.x4-nbr .x4-panel-header-default-framed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-panel-header-default-framed-top-frameInfo{font-family:dh-4-4-0-0-1-1-0-1-4-5-4-5}.x4-panel-header-default-framed-top-tl{background-position:0 -8px}.x4-panel-header-default-framed-top-tr{background-position:right -12px}.x4-panel-header-default-framed-top-bl{background-position:0 -16px}.x4-panel-header-default-framed-top-br{background-position:right -20px}.x4-panel-header-default-framed-top-ml{background-position:0 top}.x4-panel-header-default-framed-top-mr{background-position:right top}.x4-panel-header-default-framed-top-tc{background-position:0 0}.x4-panel-header-default-framed-top-bc{background-position:0 -4px}.x4-panel-header-default-framed-top-tr,.x4-panel-header-default-framed-top-br,.x4-panel-header-default-framed-top-mr{padding-right:4px}.x4-panel-header-default-framed-top-tl,.x4-panel-header-default-framed-top-bl,.x4-panel-header-default-framed-top-ml{padding-left:4px}.x4-panel-header-default-framed-top-tc{height:4px}.x4-panel-header-default-framed-top-bc{height:0}.x4-panel-header-default-framed-top-tl,.x4-panel-header-default-framed-top-bl,.x4-panel-header-default-framed-top-tr,.x4-panel-header-default-framed-top-br,.x4-panel-header-default-framed-top-tc,.x4-panel-header-default-framed-top-bc,.x4-panel-header-default-framed-top-ml,.x4-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-corners.gif)}.x4-panel-header-default-framed-top-ml,.x4-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-sides.gif)}.x4-panel-header-default-framed-top-mc{padding:1px 2px 4px 2px}.x4-strict .x4-ie7 .x4-panel-header-default-framed-top-tl,.x4-strict .x4-ie7 .x4-panel-header-default-framed-top-bl{position:relative;right:0}.x4-panel-header-default-framed-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"}.x4-panel-header-default-framed-right{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 4px 5px 4px;border-width:1px 1px 1px 0;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-rtl.x4-panel-header-default-framed-right{background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-panel-header-default-framed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-right-fbg.gif);background-position:right 0;background-color:#cbddf3}.x4-rtl.x4-panel-header-default-framed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-right-fbg-rtl.gif);background-position:0 0}.x4-nlg .x4-panel-header-default-framed-right{background-image:url(images/panel-header/panel-header-default-framed-right-bg.gif);background-position:right 0}.x4-nlg .x4-rtl.x4-panel-header-default-framed-right{background-image:url(images/panel-header/panel-header-default-framed-right-bg-rtl.gif);background-position:0 0}.x4-nbr .x4-panel-header-default-framed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-panel-header-default-framed-right-frameInfo{font-family:dv-0-4-4-0-1-1-1-0-5-4-5-4}.x4-panel-header-default-framed-right-tl{background-position:0 0}.x4-panel-header-default-framed-right-tr{background-position:0 -4px}.x4-panel-header-default-framed-right-bl{background-position:0 -8px}.x4-panel-header-default-framed-right-br{background-position:0 -12px}.x4-panel-header-default-framed-right-ml{background-position:-4px 0}.x4-panel-header-default-framed-right-mr{background-position:right 0}.x4-panel-header-default-framed-right-tc{background-position:right 0}.x4-panel-header-default-framed-right-bc{background-position:right -4px}.x4-rtl.x4-panel-header-default-framed-right-tc{background-position:0 0}.x4-rtl.x4-panel-header-default-framed-right-bc{background-position:0 -4px}.x4-panel-header-default-framed-right-tr,.x4-panel-header-default-framed-right-br,.x4-panel-header-default-framed-right-mr{padding-right:4px}.x4-panel-header-default-framed-right-tl,.x4-panel-header-default-framed-right-bl,.x4-panel-header-default-framed-right-ml{padding-left:0}.x4-panel-header-default-framed-right-tc{height:4px}.x4-panel-header-default-framed-right-bc{height:4px}.x4-panel-header-default-framed-right-tl,.x4-panel-header-default-framed-right-bl,.x4-panel-header-default-framed-right-tr,.x4-panel-header-default-framed-right-br,.x4-panel-header-default-framed-right-tc,.x4-panel-header-default-framed-right-bc,.x4-panel-header-default-framed-right-ml,.x4-panel-header-default-framed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-corners.gif)}.x4-rtl.x4-panel-header-default-framed-right-tl,.x4-rtl.x4-panel-header-default-framed-right-ml,.x4-rtl.x4-panel-header-default-framed-right-bl,.x4-rtl.x4-panel-header-default-framed-right-tr,.x4-rtl.x4-panel-header-default-framed-right-mr,.x4-rtl.x4-panel-header-default-framed-right-br{background-image:url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif)}.x4-panel-header-default-framed-right-tc,.x4-panel-header-default-framed-right-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-sides.gif);background-repeat:repeat-x}.x4-rtl.x4-panel-header-default-framed-right-tc,.x4-rtl.x4-panel-header-default-framed-right-bc{background-image:url(images/panel-header/panel-header-default-framed-right-sides-rtl.gif)}.x4-panel-header-default-framed-right-mc{padding:2px 1px 2px 4px}.x4-strict .x4-ie7 .x4-panel-header-default-framed-right-tl,.x4-strict .x4-ie7 .x4-panel-header-default-framed-right-bl{position:relative;right:0}.x4-panel-header-default-framed-right:after{display:none;content:"x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-right-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-right-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-right-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-right-sides-rtl.gif)"}.x4-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:4px 5px 4px 5px;border-width:0 1px 1px 1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-panel-header-default-framed-bottom-mc{background-image:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif);background-position:0 bottom;background-color:#cbddf3}.x4-nlg .x4-panel-header-default-framed-bottom{background-image:url(images/panel-header/panel-header-default-framed-bottom-bg.gif);background-position:0 bottom}.x4-nbr .x4-panel-header-default-framed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-panel-header-default-framed-bottom-frameInfo{font-family:dh-0-0-4-4-0-1-1-1-4-5-4-5}.x4-panel-header-default-framed-bottom-tl{background-position:0 -8px}.x4-panel-header-default-framed-bottom-tr{background-position:right -12px}.x4-panel-header-default-framed-bottom-bl{background-position:0 -16px}.x4-panel-header-default-framed-bottom-br{background-position:right -20px}.x4-panel-header-default-framed-bottom-ml{background-position:0 bottom}.x4-panel-header-default-framed-bottom-mr{background-position:right bottom}.x4-panel-header-default-framed-bottom-tc{background-position:0 0}.x4-panel-header-default-framed-bottom-bc{background-position:0 -4px}.x4-panel-header-default-framed-bottom-tr,.x4-panel-header-default-framed-bottom-br,.x4-panel-header-default-framed-bottom-mr{padding-right:4px}.x4-panel-header-default-framed-bottom-tl,.x4-panel-header-default-framed-bottom-bl,.x4-panel-header-default-framed-bottom-ml{padding-left:4px}.x4-panel-header-default-framed-bottom-tc{height:0}.x4-panel-header-default-framed-bottom-bc{height:4px}.x4-panel-header-default-framed-bottom-tl,.x4-panel-header-default-framed-bottom-bl,.x4-panel-header-default-framed-bottom-tr,.x4-panel-header-default-framed-bottom-br,.x4-panel-header-default-framed-bottom-tc,.x4-panel-header-default-framed-bottom-bc,.x4-panel-header-default-framed-bottom-ml,.x4-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-corners.gif)}.x4-panel-header-default-framed-bottom-ml,.x4-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)}.x4-panel-header-default-framed-bottom-mc{padding:4px 2px 1px 2px}.x4-strict .x4-ie7 .x4-panel-header-default-framed-bottom-tl,.x4-strict .x4-ie7 .x4-panel-header-default-framed-bottom-bl{position:relative;right:0}.x4-panel-header-default-framed-bottom:after{display:none;content:"x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"}.x4-panel-header-default-framed-left{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 4px 5px 4px;border-width:1px 0 1px 1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-rtl.x4-panel-header-default-framed-left{background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-panel-header-default-framed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-left-fbg.gif);background-position:left 0;background-color:#cbddf3}.x4-rtl.x4-panel-header-default-framed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-left-fbg-rtl.gif);background-position:right 0}.x4-nlg .x4-panel-header-default-framed-left{background-image:url(images/panel-header/panel-header-default-framed-left-bg.gif);background-position:left 0}.x4-nlg .x4-rtl.x4-panel-header-default-framed-left{background-image:url(images/panel-header/panel-header-default-framed-left-bg-rtl.gif);background-position:right 0}.x4-nbr .x4-panel-header-default-framed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-panel-header-default-framed-left-frameInfo{font-family:dv-4-0-0-4-1-0-1-1-5-4-5-4}.x4-panel-header-default-framed-left-tl{background-position:0 0}.x4-panel-header-default-framed-left-tr{background-position:0 -4px}.x4-panel-header-default-framed-left-bl{background-position:0 -8px}.x4-panel-header-default-framed-left-br{background-position:0 -12px}.x4-panel-header-default-framed-left-ml{background-position:-4px 0}.x4-panel-header-default-framed-left-mr{background-position:right 0}.x4-panel-header-default-framed-left-tc{background-position:left 0}.x4-panel-header-default-framed-left-bc{background-position:left -4px}.x4-rtl.x4-panel-header-default-framed-left-tc{background-position:right 0}.x4-rtl.x4-panel-header-default-framed-left-bc{background-position:right -4px}.x4-panel-header-default-framed-left-tr,.x4-panel-header-default-framed-left-br,.x4-panel-header-default-framed-left-mr{padding-right:0}.x4-panel-header-default-framed-left-tl,.x4-panel-header-default-framed-left-bl,.x4-panel-header-default-framed-left-ml{padding-left:4px}.x4-panel-header-default-framed-left-tc{height:4px}.x4-panel-header-default-framed-left-bc{height:4px}.x4-panel-header-default-framed-left-tl,.x4-panel-header-default-framed-left-bl,.x4-panel-header-default-framed-left-tr,.x4-panel-header-default-framed-left-br,.x4-panel-header-default-framed-left-tc,.x4-panel-header-default-framed-left-bc,.x4-panel-header-default-framed-left-ml,.x4-panel-header-default-framed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-corners.gif)}.x4-rtl.x4-panel-header-default-framed-left-tl,.x4-rtl.x4-panel-header-default-framed-left-ml,.x4-rtl.x4-panel-header-default-framed-left-bl,.x4-rtl.x4-panel-header-default-framed-left-tr,.x4-rtl.x4-panel-header-default-framed-left-mr,.x4-rtl.x4-panel-header-default-framed-left-br{background-image:url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif)}.x4-panel-header-default-framed-left-tc,.x4-panel-header-default-framed-left-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-sides.gif);background-repeat:repeat-x}.x4-rtl.x4-panel-header-default-framed-left-tc,.x4-rtl.x4-panel-header-default-framed-left-bc{background-image:url(images/panel-header/panel-header-default-framed-left-sides-rtl.gif)}.x4-panel-header-default-framed-left-mc{padding:2px 4px 2px 1px}.x4-strict .x4-ie7 .x4-panel-header-default-framed-left-tl,.x4-strict .x4-ie7 .x4-panel-header-default-framed-left-bl{position:relative;right:0}.x4-panel-header-default-framed-left:after{display:none;content:"x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-left-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-left-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-left-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-left-sides-rtl.gif)"}.x4-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:4px 5px 4px 5px;border-width:1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-panel-header-default-framed-collapsed-top-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif);background-position:0 top;background-color:#cbddf3}.x4-nlg .x4-panel-header-default-framed-collapsed-top{background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif);background-position:0 top}.x4-nbr .x4-panel-header-default-framed-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-panel-header-default-framed-collapsed-top-frameInfo{font-family:dh-4-4-4-4-1-1-1-1-4-5-4-5}.x4-panel-header-default-framed-collapsed-top-tl{background-position:0 -8px}.x4-panel-header-default-framed-collapsed-top-tr{background-position:right -12px}.x4-panel-header-default-framed-collapsed-top-bl{background-position:0 -16px}.x4-panel-header-default-framed-collapsed-top-br{background-position:right -20px}.x4-panel-header-default-framed-collapsed-top-ml{background-position:0 top}.x4-panel-header-default-framed-collapsed-top-mr{background-position:right top}.x4-panel-header-default-framed-collapsed-top-tc{background-position:0 0}.x4-panel-header-default-framed-collapsed-top-bc{background-position:0 -4px}.x4-panel-header-default-framed-collapsed-top-tr,.x4-panel-header-default-framed-collapsed-top-br,.x4-panel-header-default-framed-collapsed-top-mr{padding-right:4px}.x4-panel-header-default-framed-collapsed-top-tl,.x4-panel-header-default-framed-collapsed-top-bl,.x4-panel-header-default-framed-collapsed-top-ml{padding-left:4px}.x4-panel-header-default-framed-collapsed-top-tc{height:4px}.x4-panel-header-default-framed-collapsed-top-bc{height:4px}.x4-panel-header-default-framed-collapsed-top-tl,.x4-panel-header-default-framed-collapsed-top-bl,.x4-panel-header-default-framed-collapsed-top-tr,.x4-panel-header-default-framed-collapsed-top-br,.x4-panel-header-default-framed-collapsed-top-tc,.x4-panel-header-default-framed-collapsed-top-bc,.x4-panel-header-default-framed-collapsed-top-ml,.x4-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif)}.x4-panel-header-default-framed-collapsed-top-ml,.x4-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)}.x4-panel-header-default-framed-collapsed-top-mc{padding:1px 2px 1px 2px}.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-top-tl,.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-top-bl{position:relative;right:0}.x4-panel-header-default-framed-collapsed-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"}.x4-panel-header-default-framed-collapsed-right{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-rtl.x4-panel-header-default-framed-collapsed-right{background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-panel-header-default-framed-collapsed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif);background-position:right 0;background-color:#cbddf3}.x4-rtl.x4-panel-header-default-framed-collapsed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif);background-position:0 0}.x4-nlg .x4-panel-header-default-framed-collapsed-right{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif);background-position:right 0}.x4-nlg .x4-rtl.x4-panel-header-default-framed-collapsed-right{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif);background-position:0 0}.x4-nbr .x4-panel-header-default-framed-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-panel-header-default-framed-collapsed-right-frameInfo{font-family:dv-4-4-4-4-1-1-1-1-5-4-5-4}.x4-panel-header-default-framed-collapsed-right-tl{background-position:0 0}.x4-panel-header-default-framed-collapsed-right-tr{background-position:0 -4px}.x4-panel-header-default-framed-collapsed-right-bl{background-position:0 -8px}.x4-panel-header-default-framed-collapsed-right-br{background-position:0 -12px}.x4-panel-header-default-framed-collapsed-right-ml{background-position:-4px 0}.x4-panel-header-default-framed-collapsed-right-mr{background-position:right 0}.x4-panel-header-default-framed-collapsed-right-tc{background-position:right 0}.x4-panel-header-default-framed-collapsed-right-bc{background-position:right -4px}.x4-rtl.x4-panel-header-default-framed-collapsed-right-tc{background-position:0 0}.x4-rtl.x4-panel-header-default-framed-collapsed-right-bc{background-position:0 -4px}.x4-panel-header-default-framed-collapsed-right-tr,.x4-panel-header-default-framed-collapsed-right-br,.x4-panel-header-default-framed-collapsed-right-mr{padding-right:4px}.x4-panel-header-default-framed-collapsed-right-tl,.x4-panel-header-default-framed-collapsed-right-bl,.x4-panel-header-default-framed-collapsed-right-ml{padding-left:4px}.x4-panel-header-default-framed-collapsed-right-tc{height:4px}.x4-panel-header-default-framed-collapsed-right-bc{height:4px}.x4-panel-header-default-framed-collapsed-right-tl,.x4-panel-header-default-framed-collapsed-right-bl,.x4-panel-header-default-framed-collapsed-right-tr,.x4-panel-header-default-framed-collapsed-right-br,.x4-panel-header-default-framed-collapsed-right-tc,.x4-panel-header-default-framed-collapsed-right-bc,.x4-panel-header-default-framed-collapsed-right-ml,.x4-panel-header-default-framed-collapsed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif)}.x4-rtl.x4-panel-header-default-framed-collapsed-right-tl,.x4-rtl.x4-panel-header-default-framed-collapsed-right-ml,.x4-rtl.x4-panel-header-default-framed-collapsed-right-bl,.x4-rtl.x4-panel-header-default-framed-collapsed-right-tr,.x4-rtl.x4-panel-header-default-framed-collapsed-right-mr,.x4-rtl.x4-panel-header-default-framed-collapsed-right-br{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif)}.x4-panel-header-default-framed-collapsed-right-tc,.x4-panel-header-default-framed-collapsed-right-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif);background-repeat:repeat-x}.x4-rtl.x4-panel-header-default-framed-collapsed-right-tc,.x4-rtl.x4-panel-header-default-framed-collapsed-right-bc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif)}.x4-panel-header-default-framed-collapsed-right-mc{padding:2px 1px 2px 1px}.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-right-tl,.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-right-bl{position:relative;right:0}.x4-panel-header-default-framed-collapsed-right:after{display:none;content:"x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif)"}.x4-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:4px 5px 4px 5px;border-width:1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-panel-header-default-framed-collapsed-bottom-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif);background-position:0 bottom;background-color:#cbddf3}.x4-nlg .x4-panel-header-default-framed-collapsed-bottom{background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif);background-position:0 bottom}.x4-nbr .x4-panel-header-default-framed-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-panel-header-default-framed-collapsed-bottom-frameInfo{font-family:dh-4-4-4-4-1-1-1-1-4-5-4-5}.x4-panel-header-default-framed-collapsed-bottom-tl{background-position:0 -8px}.x4-panel-header-default-framed-collapsed-bottom-tr{background-position:right -12px}.x4-panel-header-default-framed-collapsed-bottom-bl{background-position:0 -16px}.x4-panel-header-default-framed-collapsed-bottom-br{background-position:right -20px}.x4-panel-header-default-framed-collapsed-bottom-ml{background-position:0 bottom}.x4-panel-header-default-framed-collapsed-bottom-mr{background-position:right bottom}.x4-panel-header-default-framed-collapsed-bottom-tc{background-position:0 0}.x4-panel-header-default-framed-collapsed-bottom-bc{background-position:0 -4px}.x4-panel-header-default-framed-collapsed-bottom-tr,.x4-panel-header-default-framed-collapsed-bottom-br,.x4-panel-header-default-framed-collapsed-bottom-mr{padding-right:4px}.x4-panel-header-default-framed-collapsed-bottom-tl,.x4-panel-header-default-framed-collapsed-bottom-bl,.x4-panel-header-default-framed-collapsed-bottom-ml{padding-left:4px}.x4-panel-header-default-framed-collapsed-bottom-tc{height:4px}.x4-panel-header-default-framed-collapsed-bottom-bc{height:4px}.x4-panel-header-default-framed-collapsed-bottom-tl,.x4-panel-header-default-framed-collapsed-bottom-bl,.x4-panel-header-default-framed-collapsed-bottom-tr,.x4-panel-header-default-framed-collapsed-bottom-br,.x4-panel-header-default-framed-collapsed-bottom-tc,.x4-panel-header-default-framed-collapsed-bottom-bc,.x4-panel-header-default-framed-collapsed-bottom-ml,.x4-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif)}.x4-panel-header-default-framed-collapsed-bottom-ml,.x4-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)}.x4-panel-header-default-framed-collapsed-bottom-mc{padding:1px 2px 1px 2px}.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-bottom-tl,.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-bottom-bl{position:relative;right:0}.x4-panel-header-default-framed-collapsed-bottom:after{display:none;content:"x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"}.x4-panel-header-default-framed-collapsed-left{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-rtl.x4-panel-header-default-framed-collapsed-left{background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-panel-header-default-framed-collapsed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif);background-position:left 0;background-color:#cbddf3}.x4-rtl.x4-panel-header-default-framed-collapsed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif);background-position:right 0}.x4-nlg .x4-panel-header-default-framed-collapsed-left{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif);background-position:left 0}.x4-nlg .x4-rtl.x4-panel-header-default-framed-collapsed-left{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif);background-position:right 0}.x4-nbr .x4-panel-header-default-framed-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-panel-header-default-framed-collapsed-left-frameInfo{font-family:dv-4-4-4-4-1-1-1-1-5-4-5-4}.x4-panel-header-default-framed-collapsed-left-tl{background-position:0 0}.x4-panel-header-default-framed-collapsed-left-tr{background-position:0 -4px}.x4-panel-header-default-framed-collapsed-left-bl{background-position:0 -8px}.x4-panel-header-default-framed-collapsed-left-br{background-position:0 -12px}.x4-panel-header-default-framed-collapsed-left-ml{background-position:-4px 0}.x4-panel-header-default-framed-collapsed-left-mr{background-position:right 0}.x4-panel-header-default-framed-collapsed-left-tc{background-position:left 0}.x4-panel-header-default-framed-collapsed-left-bc{background-position:left -4px}.x4-rtl.x4-panel-header-default-framed-collapsed-left-tc{background-position:right 0}.x4-rtl.x4-panel-header-default-framed-collapsed-left-bc{background-position:right -4px}.x4-panel-header-default-framed-collapsed-left-tr,.x4-panel-header-default-framed-collapsed-left-br,.x4-panel-header-default-framed-collapsed-left-mr{padding-right:4px}.x4-panel-header-default-framed-collapsed-left-tl,.x4-panel-header-default-framed-collapsed-left-bl,.x4-panel-header-default-framed-collapsed-left-ml{padding-left:4px}.x4-panel-header-default-framed-collapsed-left-tc{height:4px}.x4-panel-header-default-framed-collapsed-left-bc{height:4px}.x4-panel-header-default-framed-collapsed-left-tl,.x4-panel-header-default-framed-collapsed-left-bl,.x4-panel-header-default-framed-collapsed-left-tr,.x4-panel-header-default-framed-collapsed-left-br,.x4-panel-header-default-framed-collapsed-left-tc,.x4-panel-header-default-framed-collapsed-left-bc,.x4-panel-header-default-framed-collapsed-left-ml,.x4-panel-header-default-framed-collapsed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif)}.x4-rtl.x4-panel-header-default-framed-collapsed-left-tl,.x4-rtl.x4-panel-header-default-framed-collapsed-left-ml,.x4-rtl.x4-panel-header-default-framed-collapsed-left-bl,.x4-rtl.x4-panel-header-default-framed-collapsed-left-tr,.x4-rtl.x4-panel-header-default-framed-collapsed-left-mr,.x4-rtl.x4-panel-header-default-framed-collapsed-left-br{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif)}.x4-panel-header-default-framed-collapsed-left-tc,.x4-panel-header-default-framed-collapsed-left-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif);background-repeat:repeat-x}.x4-rtl.x4-panel-header-default-framed-collapsed-left-tc,.x4-rtl.x4-panel-header-default-framed-collapsed-left-bc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif)}.x4-panel-header-default-framed-collapsed-left-mc{padding:2px 1px 2px 1px}.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-left-tl,.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-left-bl{position:relative;right:0}.x4-panel-header-default-framed-collapsed-left:after{display:none;content:"x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif)"}.x4-panel .x4-panel-header-default-framed-top{border-bottom-width:1px!important}.x4-panel .x4-panel-header-default-framed-right{border-left-width:1px!important}.x4-panel .x4-panel-header-default-framed-bottom{border-top-width:1px!important}.x4-panel .x4-panel-header-default-framed-left{border-right-width:1px!important}.x4-nbr .x4-panel-header-default-framed-collapsed-top{border-bottom-width:0!important}.x4-nbr .x4-panel-header-default-framed-collapsed-right{border-left-width:0!important}.x4-nbr .x4-panel-header-default-framed-collapsed-bottom{border-top-width:0!important}.x4-nbr .x4-panel-header-default-framed-collapsed-left{border-right-width:0!important}.x4-panel-header-default-framed-vertical .x4-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x4-ie9m .x4-panel-header-default-framed-vertical .x4-panel-header-text-container{background-color:#cbddf3;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3)}.x4-panel-header-default-framed-vertical .x4-rtl.x4-panel-header-text-container{-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;transform:rotate(270deg);transform-origin:100% 0}.x4-ie9m .x4-panel-header-default-framed-vertical .x4-rtl.x4-panel-header-text-container{background-color:#cbddf3;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3),progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3)}.x4-panel-header-default-framed-top{-webkit-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset;box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset}.x4-panel-header-default-framed-right{-webkit-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset;box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset}.x4-panel-header-default-framed-bottom{-webkit-box-shadow:#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset;box-shadow:#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset}.x4-panel-header-default-framed-left{-webkit-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb 1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb 1px 0 0 0 inset;box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb 1px 0 0 0 inset}.x4-panel-header-default-framed .x4-panel-header-icon{width:16px;height:16px;background-position:center center}.x4-panel-header-default-framed .x4-panel-header-glyph{color:#04408c;font-size:16px;line-height:16px;opacity:.5}.x4-ie8m .x4-panel-header-default-framed .x4-panel-header-glyph{color:#678ebf}.x4-panel-header-default-framed-horizontal .x4-panel-header-icon-before-title{margin:0 2px 0 0}.x4-panel-header-default-framed-horizontal .x4-rtl.x4-panel-header-icon-before-title{margin:0 0 0 2px}.x4-panel-header-default-framed-horizontal .x4-panel-header-icon-after-title{margin:0 0 0 2px}.x4-panel-header-default-framed-horizontal .x4-rtl.x4-panel-header-icon-after-title{margin:0 2px 0 0}.x4-panel-header-default-framed-vertical .x4-panel-header-icon-before-title{margin:0 0 2px 0}.x4-panel-header-default-framed-vertical .x4-rtl.x4-panel-header-icon-before-title{margin:0 0 2px 0}.x4-panel-header-default-framed-vertical .x4-panel-header-icon-after-title{margin:2px 0 0 0}.x4-panel-header-default-framed-vertical .x4-rtl.x4-panel-header-icon-after-title{margin:2px 0 0 0}.x4-panel-header-default-framed-horizontal .x4-tool-after-title{margin:0 0 0 2px}.x4-panel-header-default-framed-horizontal .x4-rtl.x4-tool-after-title{margin:0 2px 0 0}.x4-panel-header-default-framed-horizontal .x4-tool-before-title{margin:0 2px 0 0}.x4-panel-header-default-framed-horizontal .x4-rtl.x4-tool-before-title{margin:0 0 0 2px}.x4-panel-header-default-framed-vertical .x4-tool-after-title{margin:2px 0 0 0}.x4-panel-header-default-framed-vertical .x4-rtl.x4-tool-after-title{margin:2px 0 0 0}.x4-panel-header-default-framed-vertical .x4-tool-before-title{margin:0 0 2px 0}.x4-panel-header-default-framed-vertical .x4-rtl.x4-tool-before-title{margin:0 0 2px 0}.x4-rtl.x4-panel-header-default-framed-collapsed-border-right{border-right-width:1px!important}.x4-rtl.x4-panel-header-default-framed-collapsed-border-left{border-left-width:1px!important}.x4-panel-default-framed-resizable .x4-panel-handle{filter:alpha(opacity=0);opacity:0}.x4-tip-anchor{position:absolute;overflow:hidden;height:10px;width:10px;border-style:solid;border-width:5px;border-color:#8eaace;zoom:1}.x4-content-box .x4-tip-anchor{height:0;width:0}.x4-tip-anchor-top{border-top-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x4-tip-anchor-bottom{border-bottom-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-bottom-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x4-tip-anchor-left{border-top-color:transparent;border-bottom-color:transparent;border-left-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-left-color:pink;_filter:chroma(color=pink)}.x4-tip-anchor-right{border-top-color:transparent;border-bottom-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x4-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:#e9f2ff}.x4-tip-default-mc{background-color:#e9f2ff}.x4-nbr .x4-tip-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-tip-default-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x4-tip-default-tl{background-position:0 -6px}.x4-tip-default-tr{background-position:right -9px}.x4-tip-default-bl{background-position:0 -12px}.x4-tip-default-br{background-position:right -15px}.x4-tip-default-ml{background-position:0 top}.x4-tip-default-mr{background-position:right top}.x4-tip-default-tc{background-position:0 0}.x4-tip-default-bc{background-position:0 -3px}.x4-tip-default-tr,.x4-tip-default-br,.x4-tip-default-mr{padding-right:3px}.x4-tip-default-tl,.x4-tip-default-bl,.x4-tip-default-ml{padding-left:3px}.x4-tip-default-tc{height:3px}.x4-tip-default-bc{height:3px}.x4-tip-default-tl,.x4-tip-default-bl,.x4-tip-default-tr,.x4-tip-default-br,.x4-tip-default-tc,.x4-tip-default-bc,.x4-tip-default-ml,.x4-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-corners.gif)}.x4-tip-default-ml,.x4-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-sides.gif);background-repeat:repeat-y}.x4-tip-default-mc{padding:0}.x4-strict .x4-ie7 .x4-tip-default-tl,.x4-strict .x4-ie7 .x4-tip-default-bl{position:relative;right:0}.x4-tip-default:after{display:none;content:"x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"}.x4-tip-default{border-color:#8eaace}.x4-tip-default .x4-tool-img{background-color:#e9f2ff}.x4-tip-header-default .x4-tool-after-title{margin:0 0 0 6px}.x4-tip-header-default .x4-rtl.x4-tool-after-title{margin:0 6px 0 0}.x4-tip-header-default .x4-tool-before-title{margin:0 6px 0 0}.x4-tip-header-default .x4-rtl.x4-tool-before-title{margin:0 0 0 6px}.x4-tip-header-body-default{padding:3px 3px 0 3px}.x4-tip-header-text-container-default{color:#444;font-size:11px;font-weight:bold}.x4-tip-body-default{padding:3px;color:#444;font-size:11px;font-weight:normal}.x4-tip-body-default a{color:#2a2a2a}.x4-tip-form-invalid{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:white}.x4-tip-form-invalid-mc{background-color:white}.x4-nbr .x4-tip-form-invalid{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-tip-form-invalid-frameInfo{font-family:th-5-5-5-5-1-1-1-1-4-4-4-4}.x4-tip-form-invalid-tl{background-position:0 -10px}.x4-tip-form-invalid-tr{background-position:right -15px}.x4-tip-form-invalid-bl{background-position:0 -20px}.x4-tip-form-invalid-br{background-position:right -25px}.x4-tip-form-invalid-ml{background-position:0 top}.x4-tip-form-invalid-mr{background-position:right top}.x4-tip-form-invalid-tc{background-position:0 0}.x4-tip-form-invalid-bc{background-position:0 -5px}.x4-tip-form-invalid-tr,.x4-tip-form-invalid-br,.x4-tip-form-invalid-mr{padding-right:5px}.x4-tip-form-invalid-tl,.x4-tip-form-invalid-bl,.x4-tip-form-invalid-ml{padding-left:5px}.x4-tip-form-invalid-tc{height:5px}.x4-tip-form-invalid-bc{height:5px}.x4-tip-form-invalid-tl,.x4-tip-form-invalid-bl,.x4-tip-form-invalid-tr,.x4-tip-form-invalid-br,.x4-tip-form-invalid-tc,.x4-tip-form-invalid-bc,.x4-tip-form-invalid-ml,.x4-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-corners.gif)}.x4-tip-form-invalid-ml,.x4-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-sides.gif);background-repeat:repeat-y}.x4-tip-form-invalid-mc{padding:0}.x4-strict .x4-ie7 .x4-tip-form-invalid-tl,.x4-strict .x4-ie7 .x4-tip-form-invalid-bl{position:relative;right:0}.x4-tip-form-invalid:after{display:none;content:"x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"}.x4-tip-form-invalid{border-color:#a1311f;-webkit-box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset;-moz-box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset;box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset}.x4-tip-form-invalid .x4-tool-img{background-color:white}.x4-tip-header-form-invalid .x4-tool-after-title{margin:0 0 0 6px}.x4-tip-header-form-invalid .x4-rtl.x4-tool-after-title{margin:0 6px 0 0}.x4-tip-header-form-invalid .x4-tool-before-title{margin:0 6px 0 0}.x4-tip-header-form-invalid .x4-rtl.x4-tool-before-title{margin:0 0 0 6px}.x4-tip-header-body-form-invalid{padding:3px 3px 0 3px}.x4-tip-header-text-container-form-invalid{color:#444;font-size:11px;font-weight:bold}.x4-tip-body-form-invalid{padding:3px 3px 3px 22px;color:#444;font-size:11px;font-weight:normal}.x4-tip-body-form-invalid a{color:#2a2a2a}.x4-tip-body-form-invalid{background:1px 1px no-repeat;background-image:url(images/form/exclamation.gif)}.x4-tip-body-form-invalid li{margin-bottom:4px}.x4-tip-body-form-invalid li.last{margin-bottom:0}.x4-btn-group-default{border-color:#b7c8d7;-webkit-box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset;-moz-box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset;box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset}.x4-btn-group-header-default{margin:2px 2px 0 2px;padding:1px 0;line-height:15px;background:#c2d8f0;-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}.x4-btn-group-header-default .x4-tool-img{background-color:#c2d8f0}.x4-btn-group-header-text-container-default{font:normal 11px tahoma,arial,verdana,sans-serif;line-height:15px;color:#3e6aaa}.x4-btn-group-body-default{padding:0 1px}.x4-btn-group-body-default .x4-table-layout{border-spacing:0}.x4-btn-group-default-framed{-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:1px 1px 1px 1px;border-width:1px;border-style:solid;background-color:#d0def0}.x4-btn-group-default-framed-mc{background-color:#d0def0}.x4-nbr .x4-btn-group-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-btn-group-default-framed-frameInfo{font-family:dh-2-2-2-2-1-1-1-1-1-1-1-1}.x4-btn-group-default-framed-tl{background-position:0 -4px}.x4-btn-group-default-framed-tr{background-position:right -6px}.x4-btn-group-default-framed-bl{background-position:0 -8px}.x4-btn-group-default-framed-br{background-position:right -10px}.x4-btn-group-default-framed-ml{background-position:0 top}.x4-btn-group-default-framed-mr{background-position:right top}.x4-btn-group-default-framed-tc{background-position:0 0}.x4-btn-group-default-framed-bc{background-position:0 -2px}.x4-btn-group-default-framed-tr,.x4-btn-group-default-framed-br,.x4-btn-group-default-framed-mr{padding-right:2px}.x4-btn-group-default-framed-tl,.x4-btn-group-default-framed-bl,.x4-btn-group-default-framed-ml{padding-left:2px}.x4-btn-group-default-framed-tc{height:2px}.x4-btn-group-default-framed-bc{height:2px}.x4-btn-group-default-framed-tl,.x4-btn-group-default-framed-bl,.x4-btn-group-default-framed-tr,.x4-btn-group-default-framed-br,.x4-btn-group-default-framed-tc,.x4-btn-group-default-framed-bc,.x4-btn-group-default-framed-ml,.x4-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-corners.gif)}.x4-btn-group-default-framed-ml,.x4-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-sides.gif);background-repeat:repeat-y}.x4-btn-group-default-framed-mc{padding:0}.x4-strict .x4-ie7 .x4-btn-group-default-framed-tl,.x4-strict .x4-ie7 .x4-btn-group-default-framed-bl{position:relative;right:0}.x4-btn-group-default-framed:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"}.x4-btn-group-default-framed-notitle{-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:1px 1px 1px 1px;border-width:1px;border-style:solid;background-color:#d0def0}.x4-btn-group-default-framed-notitle-mc{background-color:#d0def0}.x4-nbr .x4-btn-group-default-framed-notitle{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-btn-group-default-framed-notitle-frameInfo{font-family:dh-2-2-2-2-1-1-1-1-1-1-1-1}.x4-btn-group-default-framed-notitle-tl{background-position:0 -4px}.x4-btn-group-default-framed-notitle-tr{background-position:right -6px}.x4-btn-group-default-framed-notitle-bl{background-position:0 -8px}.x4-btn-group-default-framed-notitle-br{background-position:right -10px}.x4-btn-group-default-framed-notitle-ml{background-position:0 top}.x4-btn-group-default-framed-notitle-mr{background-position:right top}.x4-btn-group-default-framed-notitle-tc{background-position:0 0}.x4-btn-group-default-framed-notitle-bc{background-position:0 -2px}.x4-btn-group-default-framed-notitle-tr,.x4-btn-group-default-framed-notitle-br,.x4-btn-group-default-framed-notitle-mr{padding-right:2px}.x4-btn-group-default-framed-notitle-tl,.x4-btn-group-default-framed-notitle-bl,.x4-btn-group-default-framed-notitle-ml{padding-left:2px}.x4-btn-group-default-framed-notitle-tc{height:2px}.x4-btn-group-default-framed-notitle-bc{height:2px}.x4-btn-group-default-framed-notitle-tl,.x4-btn-group-default-framed-notitle-bl,.x4-btn-group-default-framed-notitle-tr,.x4-btn-group-default-framed-notitle-br,.x4-btn-group-default-framed-notitle-tc,.x4-btn-group-default-framed-notitle-bc,.x4-btn-group-default-framed-notitle-ml,.x4-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-corners.gif)}.x4-btn-group-default-framed-notitle-ml,.x4-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-sides.gif);background-repeat:repeat-y}.x4-btn-group-default-framed-notitle-mc{padding:0}.x4-strict .x4-ie7 .x4-btn-group-default-framed-notitle-tl,.x4-strict .x4-ie7 .x4-btn-group-default-framed-notitle-bl{position:relative;right:0}.x4-btn-group-default-framed-notitle:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"}.x4-btn-group-default-framed{border-color:#b7c8d7;-webkit-box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset;-moz-box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset;box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset}.x4-btn-group-header-default-framed{margin:2px 2px 0 2px;padding:1px 0;line-height:15px;background:#c2d8f0;-moz-border-radius-topleft:2px;-webkit-border-top-left-radius:2px;border-top-left-radius:2px;-moz-border-radius-topright:2px;-webkit-border-top-right-radius:2px;border-top-right-radius:2px}.x4-btn-group-header-default-framed .x4-tool-img{background-color:#c2d8f0}.x4-btn-group-header-text-container-default-framed{font:normal 11px tahoma,arial,verdana,sans-serif;line-height:15px;color:#3e6aaa}.x4-btn-group-body-default-framed{padding:0 1px 0 1px}.x4-btn-group-body-default-framed .x4-table-layout{border-spacing:0}.x4-window-ghost{filter:alpha(opacity=65);opacity:.65}.x4-window-default{border-color:#a2b1c5;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;-webkit-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset}.x4-window-default{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:#ced9e7}.x4-window-default-mc{background-color:#ced9e7}.x4-nbr .x4-window-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-window-default-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-4-4-4}.x4-window-default-tl{background-position:0 -10px}.x4-window-default-tr{background-position:right -15px}.x4-window-default-bl{background-position:0 -20px}.x4-window-default-br{background-position:right -25px}.x4-window-default-ml{background-position:0 top}.x4-window-default-mr{background-position:right top}.x4-window-default-tc{background-position:0 0}.x4-window-default-bc{background-position:0 -5px}.x4-window-default-tr,.x4-window-default-br,.x4-window-default-mr{padding-right:5px}.x4-window-default-tl,.x4-window-default-bl,.x4-window-default-ml{padding-left:5px}.x4-window-default-tc{height:5px}.x4-window-default-bc{height:5px}.x4-window-default-tl,.x4-window-default-bl,.x4-window-default-tr,.x4-window-default-br,.x4-window-default-tc,.x4-window-default-bc,.x4-window-default-ml,.x4-window-default-mr{zoom:1;background-image:url(images/window/window-default-corners.gif)}.x4-window-default-ml,.x4-window-default-mr{zoom:1;background-image:url(images/window/window-default-sides.gif);background-repeat:repeat-y}.x4-window-default-mc{padding:0}.x4-strict .x4-ie7 .x4-window-default-tl,.x4-strict .x4-ie7 .x4-window-default-bl{position:relative;right:0}.x4-window-default:after{display:none;content:"x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"}.x4-window-body-default{border-color:#99bbe8;border-width:1px;border-style:solid;background:#dfe8f6;color:black}.x4-window-header-default{font-size:11px;border-color:#a2b1c5;zoom:1;background-color:#ced9e7}.x4-window-header-default .x4-tool-img{background-color:#ced9e7}.x4-window-header-default-vertical .x4-window-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x4-ie9m .x4-window-header-default-vertical .x4-window-header-text-container{background-color:#ced9e7;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#ced9e7)}.x4-window-header-default-vertical .x4-rtl.x4-window-header-text-container{-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;transform:rotate(270deg);transform-origin:100% 0}.x4-ie9m .x4-window-header-default-vertical .x4-rtl.x4-window-header-text-container{background-color:#ced9e7;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3),progid:DXImageTransform.Microsoft.Chroma(color=#ced9e7)}.x4-window-header-text-container-default{color:#04468c;font-weight:bold;line-height:15px;font-family:tahoma,arial,verdana,sans-serif;font-size:11px;padding:0 2px 1px;text-transform:none}.x4-window-header-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:4px 5px 0 5px;border-width:1px 1px 0 1px;border-style:solid;background-color:#ced9e7}.x4-window-header-default-top-mc{background-color:#ced9e7}.x4-nbr .x4-window-header-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-window-header-default-top-frameInfo{font-family:dh-5-5-0-0-1-1-0-1-4-5-0-5}.x4-window-header-default-top-tl{background-position:0 -10px}.x4-window-header-default-top-tr{background-position:right -15px}.x4-window-header-default-top-bl{background-position:0 -20px}.x4-window-header-default-top-br{background-position:right -25px}.x4-window-header-default-top-ml{background-position:0 top}.x4-window-header-default-top-mr{background-position:right top}.x4-window-header-default-top-tc{background-position:0 0}.x4-window-header-default-top-bc{background-position:0 -5px}.x4-window-header-default-top-tr,.x4-window-header-default-top-br,.x4-window-header-default-top-mr{padding-right:5px}.x4-window-header-default-top-tl,.x4-window-header-default-top-bl,.x4-window-header-default-top-ml{padding-left:5px}.x4-window-header-default-top-tc{height:5px}.x4-window-header-default-top-bc{height:0}.x4-window-header-default-top-tl,.x4-window-header-default-top-bl,.x4-window-header-default-top-tr,.x4-window-header-default-top-br,.x4-window-header-default-top-tc,.x4-window-header-default-top-bc,.x4-window-header-default-top-ml,.x4-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-corners.gif)}.x4-window-header-default-top-ml,.x4-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-sides.gif);background-repeat:repeat-y}.x4-window-header-default-top-mc{padding:0 1px 0 1px}.x4-strict .x4-ie7 .x4-window-header-default-top-tl,.x4-strict .x4-ie7 .x4-window-header-default-top-bl{position:relative;right:0}.x4-window-header-default-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"}.x4-window-header-default-right{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:5px;-webkit-border-top-right-radius:5px;border-top-right-radius:5px;-moz-border-radius-bottomright:5px;-webkit-border-bottom-right-radius:5px;border-bottom-right-radius:5px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 4px 5px 0;border-width:1px 1px 1px 0;border-style:solid;background-color:#ced9e7}.x4-window-header-default-right-mc{background-color:#ced9e7}.x4-nbr .x4-window-header-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-window-header-default-right-frameInfo{font-family:dh-0-5-5-0-1-1-1-0-5-4-5-0}.x4-window-header-default-right-tl{background-position:0 -10px}.x4-window-header-default-right-tr{background-position:right -15px}.x4-window-header-default-right-bl{background-position:0 -20px}.x4-window-header-default-right-br{background-position:right -25px}.x4-window-header-default-right-ml{background-position:0 top}.x4-window-header-default-right-mr{background-position:right top}.x4-window-header-default-right-tc{background-position:0 0}.x4-window-header-default-right-bc{background-position:0 -5px}.x4-window-header-default-right-tr,.x4-window-header-default-right-br,.x4-window-header-default-right-mr{padding-right:5px}.x4-window-header-default-right-tl,.x4-window-header-default-right-bl,.x4-window-header-default-right-ml{padding-left:0}.x4-window-header-default-right-tc{height:5px}.x4-window-header-default-right-bc{height:5px}.x4-window-header-default-right-tl,.x4-window-header-default-right-bl,.x4-window-header-default-right-tr,.x4-window-header-default-right-br,.x4-window-header-default-right-tc,.x4-window-header-default-right-bc,.x4-window-header-default-right-ml,.x4-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-corners.gif)}.x4-rtl.x4-window-header-default-right-tl,.x4-rtl.x4-window-header-default-right-ml,.x4-rtl.x4-window-header-default-right-bl,.x4-rtl.x4-window-header-default-right-tr,.x4-rtl.x4-window-header-default-right-mr,.x4-rtl.x4-window-header-default-right-br{background-image:url(images/window-header/window-header-default-right-corners-rtl.gif)}.x4-window-header-default-right-ml,.x4-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-sides.gif);background-repeat:repeat-y}.x4-window-header-default-right-mc{padding:1px 0 1px 0}.x4-strict .x4-ie7 .x4-window-header-default-right-tl,.x4-strict .x4-ie7 .x4-window-header-default-right-bl{position:relative;right:0}.x4-window-header-default-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"}.x4-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: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:0 5px 4px 5px;border-width:0 1px 1px 1px;border-style:solid;background-color:#ced9e7}.x4-window-header-default-bottom-mc{background-color:#ced9e7}.x4-nbr .x4-window-header-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-window-header-default-bottom-frameInfo{font-family:dh-0-0-5-5-0-1-1-1-0-5-4-5}.x4-window-header-default-bottom-tl{background-position:0 -10px}.x4-window-header-default-bottom-tr{background-position:right -15px}.x4-window-header-default-bottom-bl{background-position:0 -20px}.x4-window-header-default-bottom-br{background-position:right -25px}.x4-window-header-default-bottom-ml{background-position:0 top}.x4-window-header-default-bottom-mr{background-position:right top}.x4-window-header-default-bottom-tc{background-position:0 0}.x4-window-header-default-bottom-bc{background-position:0 -5px}.x4-window-header-default-bottom-tr,.x4-window-header-default-bottom-br,.x4-window-header-default-bottom-mr{padding-right:5px}.x4-window-header-default-bottom-tl,.x4-window-header-default-bottom-bl,.x4-window-header-default-bottom-ml{padding-left:5px}.x4-window-header-default-bottom-tc{height:0}.x4-window-header-default-bottom-bc{height:5px}.x4-window-header-default-bottom-tl,.x4-window-header-default-bottom-bl,.x4-window-header-default-bottom-tr,.x4-window-header-default-bottom-br,.x4-window-header-default-bottom-tc,.x4-window-header-default-bottom-bc,.x4-window-header-default-bottom-ml,.x4-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-corners.gif)}.x4-window-header-default-bottom-ml,.x4-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-sides.gif);background-repeat:repeat-y}.x4-window-header-default-bottom-mc{padding:0 1px 0 1px}.x4-strict .x4-ie7 .x4-window-header-default-bottom-tl,.x4-strict .x4-ie7 .x4-window-header-default-bottom-bl{position:relative;right:0}.x4-window-header-default-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"}.x4-window-header-default-left{-moz-border-radius-topleft:5px;-webkit-border-top-left-radius:5px;border-top-left-radius:5px;-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:5px;-webkit-border-bottom-left-radius:5px;border-bottom-left-radius:5px;padding:5px 0 5px 4px;border-width:1px 0 1px 1px;border-style:solid;background-color:#ced9e7}.x4-window-header-default-left-mc{background-color:#ced9e7}.x4-nbr .x4-window-header-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-window-header-default-left-frameInfo{font-family:dh-5-0-0-5-1-0-1-1-5-0-5-4}.x4-window-header-default-left-tl{background-position:0 -10px}.x4-window-header-default-left-tr{background-position:right -15px}.x4-window-header-default-left-bl{background-position:0 -20px}.x4-window-header-default-left-br{background-position:right -25px}.x4-window-header-default-left-ml{background-position:0 top}.x4-window-header-default-left-mr{background-position:right top}.x4-window-header-default-left-tc{background-position:0 0}.x4-window-header-default-left-bc{background-position:0 -5px}.x4-window-header-default-left-tr,.x4-window-header-default-left-br,.x4-window-header-default-left-mr{padding-right:0}.x4-window-header-default-left-tl,.x4-window-header-default-left-bl,.x4-window-header-default-left-ml{padding-left:5px}.x4-window-header-default-left-tc{height:5px}.x4-window-header-default-left-bc{height:5px}.x4-window-header-default-left-tl,.x4-window-header-default-left-bl,.x4-window-header-default-left-tr,.x4-window-header-default-left-br,.x4-window-header-default-left-tc,.x4-window-header-default-left-bc,.x4-window-header-default-left-ml,.x4-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-corners.gif)}.x4-rtl.x4-window-header-default-left-tl,.x4-rtl.x4-window-header-default-left-ml,.x4-rtl.x4-window-header-default-left-bl,.x4-rtl.x4-window-header-default-left-tr,.x4-rtl.x4-window-header-default-left-mr,.x4-rtl.x4-window-header-default-left-br{background-image:url(images/window-header/window-header-default-left-corners-rtl.gif)}.x4-window-header-default-left-ml,.x4-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-sides.gif);background-repeat:repeat-y}.x4-window-header-default-left-mc{padding:1px 0 1px 0}.x4-strict .x4-ie7 .x4-window-header-default-left-tl,.x4-strict .x4-ie7 .x4-window-header-default-left-bl{position:relative;right:0}.x4-window-header-default-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"}.x4-window-header-default-collapsed-top{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-color:#ced9e7}.x4-window-header-default-collapsed-top-mc{background-color:#ced9e7}.x4-nbr .x4-window-header-default-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-window-header-default-collapsed-top-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-5-4-5}.x4-window-header-default-collapsed-top-tl{background-position:0 -10px}.x4-window-header-default-collapsed-top-tr{background-position:right -15px}.x4-window-header-default-collapsed-top-bl{background-position:0 -20px}.x4-window-header-default-collapsed-top-br{background-position:right -25px}.x4-window-header-default-collapsed-top-ml{background-position:0 top}.x4-window-header-default-collapsed-top-mr{background-position:right top}.x4-window-header-default-collapsed-top-tc{background-position:0 0}.x4-window-header-default-collapsed-top-bc{background-position:0 -5px}.x4-window-header-default-collapsed-top-tr,.x4-window-header-default-collapsed-top-br,.x4-window-header-default-collapsed-top-mr{padding-right:5px}.x4-window-header-default-collapsed-top-tl,.x4-window-header-default-collapsed-top-bl,.x4-window-header-default-collapsed-top-ml{padding-left:5px}.x4-window-header-default-collapsed-top-tc{height:5px}.x4-window-header-default-collapsed-top-bc{height:5px}.x4-window-header-default-collapsed-top-tl,.x4-window-header-default-collapsed-top-bl,.x4-window-header-default-collapsed-top-tr,.x4-window-header-default-collapsed-top-br,.x4-window-header-default-collapsed-top-tc,.x4-window-header-default-collapsed-top-bc,.x4-window-header-default-collapsed-top-ml,.x4-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-corners.gif)}.x4-window-header-default-collapsed-top-ml,.x4-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-sides.gif);background-repeat:repeat-y}.x4-window-header-default-collapsed-top-mc{padding:0 1px 0 1px}.x4-strict .x4-ie7 .x4-window-header-default-collapsed-top-tl,.x4-strict .x4-ie7 .x4-window-header-default-collapsed-top-bl{position:relative;right:0}.x4-window-header-default-collapsed-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"}.x4-window-header-default-collapsed-right{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-color:#ced9e7}.x4-window-header-default-collapsed-right-mc{background-color:#ced9e7}.x4-nbr .x4-window-header-default-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-window-header-default-collapsed-right-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-5-4-5-4}.x4-window-header-default-collapsed-right-tl{background-position:0 -10px}.x4-window-header-default-collapsed-right-tr{background-position:right -15px}.x4-window-header-default-collapsed-right-bl{background-position:0 -20px}.x4-window-header-default-collapsed-right-br{background-position:right -25px}.x4-window-header-default-collapsed-right-ml{background-position:0 top}.x4-window-header-default-collapsed-right-mr{background-position:right top}.x4-window-header-default-collapsed-right-tc{background-position:0 0}.x4-window-header-default-collapsed-right-bc{background-position:0 -5px}.x4-window-header-default-collapsed-right-tr,.x4-window-header-default-collapsed-right-br,.x4-window-header-default-collapsed-right-mr{padding-right:5px}.x4-window-header-default-collapsed-right-tl,.x4-window-header-default-collapsed-right-bl,.x4-window-header-default-collapsed-right-ml{padding-left:5px}.x4-window-header-default-collapsed-right-tc{height:5px}.x4-window-header-default-collapsed-right-bc{height:5px}.x4-window-header-default-collapsed-right-tl,.x4-window-header-default-collapsed-right-bl,.x4-window-header-default-collapsed-right-tr,.x4-window-header-default-collapsed-right-br,.x4-window-header-default-collapsed-right-tc,.x4-window-header-default-collapsed-right-bc,.x4-window-header-default-collapsed-right-ml,.x4-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-corners.gif)}.x4-rtl.x4-window-header-default-collapsed-right-tl,.x4-rtl.x4-window-header-default-collapsed-right-ml,.x4-rtl.x4-window-header-default-collapsed-right-bl,.x4-rtl.x4-window-header-default-collapsed-right-tr,.x4-rtl.x4-window-header-default-collapsed-right-mr,.x4-rtl.x4-window-header-default-collapsed-right-br{background-image:url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif)}.x4-window-header-default-collapsed-right-ml,.x4-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-sides.gif);background-repeat:repeat-y}.x4-window-header-default-collapsed-right-mc{padding:1px 0 1px 0}.x4-strict .x4-ie7 .x4-window-header-default-collapsed-right-tl,.x4-strict .x4-ie7 .x4-window-header-default-collapsed-right-bl{position:relative;right:0}.x4-window-header-default-collapsed-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"}.x4-window-header-default-collapsed-bottom{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-color:#ced9e7}.x4-window-header-default-collapsed-bottom-mc{background-color:#ced9e7}.x4-nbr .x4-window-header-default-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-window-header-default-collapsed-bottom-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-5-4-5}.x4-window-header-default-collapsed-bottom-tl{background-position:0 -10px}.x4-window-header-default-collapsed-bottom-tr{background-position:right -15px}.x4-window-header-default-collapsed-bottom-bl{background-position:0 -20px}.x4-window-header-default-collapsed-bottom-br{background-position:right -25px}.x4-window-header-default-collapsed-bottom-ml{background-position:0 top}.x4-window-header-default-collapsed-bottom-mr{background-position:right top}.x4-window-header-default-collapsed-bottom-tc{background-position:0 0}.x4-window-header-default-collapsed-bottom-bc{background-position:0 -5px}.x4-window-header-default-collapsed-bottom-tr,.x4-window-header-default-collapsed-bottom-br,.x4-window-header-default-collapsed-bottom-mr{padding-right:5px}.x4-window-header-default-collapsed-bottom-tl,.x4-window-header-default-collapsed-bottom-bl,.x4-window-header-default-collapsed-bottom-ml{padding-left:5px}.x4-window-header-default-collapsed-bottom-tc{height:5px}.x4-window-header-default-collapsed-bottom-bc{height:5px}.x4-window-header-default-collapsed-bottom-tl,.x4-window-header-default-collapsed-bottom-bl,.x4-window-header-default-collapsed-bottom-tr,.x4-window-header-default-collapsed-bottom-br,.x4-window-header-default-collapsed-bottom-tc,.x4-window-header-default-collapsed-bottom-bc,.x4-window-header-default-collapsed-bottom-ml,.x4-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-corners.gif)}.x4-window-header-default-collapsed-bottom-ml,.x4-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-sides.gif);background-repeat:repeat-y}.x4-window-header-default-collapsed-bottom-mc{padding:0 1px 0 1px}.x4-strict .x4-ie7 .x4-window-header-default-collapsed-bottom-tl,.x4-strict .x4-ie7 .x4-window-header-default-collapsed-bottom-bl{position:relative;right:0}.x4-window-header-default-collapsed-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"}.x4-window-header-default-collapsed-left{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-color:#ced9e7}.x4-window-header-default-collapsed-left-mc{background-color:#ced9e7}.x4-nbr .x4-window-header-default-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-window-header-default-collapsed-left-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-5-4-5-4}.x4-window-header-default-collapsed-left-tl{background-position:0 -10px}.x4-window-header-default-collapsed-left-tr{background-position:right -15px}.x4-window-header-default-collapsed-left-bl{background-position:0 -20px}.x4-window-header-default-collapsed-left-br{background-position:right -25px}.x4-window-header-default-collapsed-left-ml{background-position:0 top}.x4-window-header-default-collapsed-left-mr{background-position:right top}.x4-window-header-default-collapsed-left-tc{background-position:0 0}.x4-window-header-default-collapsed-left-bc{background-position:0 -5px}.x4-window-header-default-collapsed-left-tr,.x4-window-header-default-collapsed-left-br,.x4-window-header-default-collapsed-left-mr{padding-right:5px}.x4-window-header-default-collapsed-left-tl,.x4-window-header-default-collapsed-left-bl,.x4-window-header-default-collapsed-left-ml{padding-left:5px}.x4-window-header-default-collapsed-left-tc{height:5px}.x4-window-header-default-collapsed-left-bc{height:5px}.x4-window-header-default-collapsed-left-tl,.x4-window-header-default-collapsed-left-bl,.x4-window-header-default-collapsed-left-tr,.x4-window-header-default-collapsed-left-br,.x4-window-header-default-collapsed-left-tc,.x4-window-header-default-collapsed-left-bc,.x4-window-header-default-collapsed-left-ml,.x4-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-corners.gif)}.x4-rtl.x4-window-header-default-collapsed-left-tl,.x4-rtl.x4-window-header-default-collapsed-left-ml,.x4-rtl.x4-window-header-default-collapsed-left-bl,.x4-rtl.x4-window-header-default-collapsed-left-tr,.x4-rtl.x4-window-header-default-collapsed-left-mr,.x4-rtl.x4-window-header-default-collapsed-left-br{background-image:url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif)}.x4-window-header-default-collapsed-left-ml,.x4-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-sides.gif);background-repeat:repeat-y}.x4-window-header-default-collapsed-left-mc{padding:1px 0 1px 0}.x4-strict .x4-ie7 .x4-window-header-default-collapsed-left-tl,.x4-strict .x4-ie7 .x4-window-header-default-collapsed-left-bl{position:relative;right:0}.x4-window-header-default-collapsed-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"}.x4-window-header-default-top{-webkit-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset}.x4-window-header-default-right{-webkit-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset;box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset}.x4-window-header-default-bottom{-webkit-box-shadow:#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;box-shadow:#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset}.x4-window-header-default-left{-webkit-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb 1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb 1px 0 0 0 inset;box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb 1px 0 0 0 inset}.x4-window-header-default .x4-window-header-icon{width:16px;height:16px;color:#04468c;font-size:16px;line-height:16px;background-position:center center}.x4-window-header-default .x4-window-header-glyph{color:#04468c;font-size:16px;line-height:16px;opacity:.5}.x4-ie8m .x4-window-header-default .x4-window-header-glyph{color:#698fb9}.x4-window-header-default-horizontal .x4-window-header-icon-before-title{margin:0 2px 0 0}.x4-window-header-default-horizontal .x4-rtl.x4-window-header-icon-before-title{margin:0 0 0 2px}.x4-window-header-default-horizontal .x4-window-header-icon-after-title{margin:0 0 0 2px}.x4-window-header-default-horizontal .x4-rtl.x4-window-header-icon-after-title{margin:0 2px 0 0}.x4-window-header-default-vertical .x4-window-header-icon-before-title{margin:0 0 2px 0}.x4-window-header-default-vertical .x4-rtl.x4-window-header-icon-before-title{margin:0 0 2px 0}.x4-window-header-default-vertical .x4-window-header-icon-after-title{margin:2px 0 0 0}.x4-window-header-default-vertical .x4-rtl.x4-window-header-icon-after-title{margin:2px 0 0 0}.x4-window-header-default-horizontal .x4-tool-after-title{margin:0 0 0 2px}.x4-window-header-default-horizontal .x4-rtl.x4-tool-after-title{margin:0 2px 0 0}.x4-window-header-default-horizontal .x4-tool-before-title{margin:0 2px 0 0}.x4-window-header-default-horizontal .x4-rtl.x4-tool-before-title{margin:0 0 0 2px}.x4-window-header-default-vertical .x4-tool-after-title{margin:2px 0 0 0}.x4-window-header-default-vertical .x4-rtl.x4-tool-after-title{margin:2px 0 0 0}.x4-window-header-default-vertical .x4-tool-before-title{margin:0 0 2px 0}.x4-window-header-default-vertical .x4-rtl.x4-tool-before-title{margin:0 0 2px 0}.x4-window-default-collapsed .x4-window-header{border-width:1px!important}.x4-nbr .x4-window-default-collapsed .x4-window-header{border-width:0!important}.x4-form-invalid-under{padding:2px 2px 2px 20px;color:#c0272b;font:normal 11px tahoma,arial,verdana,sans-serif;line-height:16px;background:no-repeat 0 2px;background-image:url(images/form/exclamation.gif)}div.x4-lbl-top-err-icon{margin-bottom:3px}.x4-form-invalid-icon{width:16px;height:16px;margin:0 1px;background-image:url(images/form/exclamation.gif);background-repeat:no-repeat}.x4-form-item-label{color:black;font:normal 12px/14px tahoma,arial,verdana,sans-serif;margin-top:4px}.x4-toolbar-item .x4-form-item-label{font:normal 11px/13px tahoma,arial,verdana,sans-serif;margin-top:4px}.x4-autocontainer-form-item,.x4-anchor-form-item,.x4-vbox-form-item,.x4-table-form-item{margin-bottom:5px}.x4-ie6 .x4-form-form-item td{border-top-width:0}.x4-ie6 td.x4-form-item-pad{height:5px}.x4-form-field{color:black}.x4-form-item,.x4-form-field{font:normal 12px tahoma,arial,verdana,sans-serif}.x4-form-type-text textarea.x4-form-invalid-field,.x4-form-type-text input.x4-form-invalid-field,.x4-form-type-password textarea.x4-form-invalid-field,.x4-form-type-password input.x4-form-invalid-field,.x4-form-type-number textarea.x4-form-invalid-field,.x4-form-type-number input.x4-form-invalid-field,.x4-form-type-email textarea.x4-form-invalid-field,.x4-form-type-email input.x4-form-invalid-field,.x4-form-type-search textarea.x4-form-invalid-field,.x4-form-type-search input.x4-form-invalid-field,.x4-form-type-tel textarea.x4-form-invalid-field,.x4-form-type-tel input.x4-form-invalid-field{background-color:white;background-image:url(images/grid/invalid_line.gif);background-repeat:repeat-x;background-position:bottom;border-color:#c30}.x4-item-disabled .x4-form-item-label,.x4-item-disabled .x4-form-field,.x4-item-disabled .x4-form-display-field,.x4-item-disabled .x4-form-cb-label,.x4-item-disabled .x4-form-trigger{filter:alpha(opacity=30);opacity:.3}.x4-form-text{color:black;padding:1px 3px 2px 3px;background:white repeat-x 0 0;border-width:1px;border-style:solid;border-color:#b5b8c8;background-image:url(images/form/text-bg.gif);height:22px;line-height:17px}.x4-field-toolbar .x4-form-text{height:20px;line-height:15px}.x4-content-box .x4-form-text{height:17px}.x4-content-box .x4-field-toolbar .x4-form-text{height:15px}.x4-form-focus{border-color:#7eadd9}.x4-form-empty-field,textarea.x4-form-empty-field{color:gray}.x4-quirks .x4-ie .x4-form-text,.x4-ie7m .x4-form-text{margin-top:-1px;margin-bottom:-1px}.x4-form-textarea{line-height:normal;height:auto;background-image:url(images/form/text-bg.gif)}.x4-form-display-field-body{height:22px}.x4-toolbar-item .x4-form-display-field-body{height:20px}.x4-form-display-field{font:normal 12px/14px tahoma,arial,verdana,sans-serif;color:black;margin-top:4px}.x4-toolbar-item .x4-form-display-field{margin-top:4px;font:normal 11px/13px tahoma,arial,verdana,sans-serif}.x4-message-box .x4-window-body{background-color:#ced9e7;border-width:0}.x4-message-box-info,.x4-message-box-warning,.x4-message-box-question,.x4-message-box-error{background-position:top left;background-repeat:no-repeat}.x4-rtl.x4-message-box-info,.x4-rtl.x4-message-box-warning,.x4-rtl.x4-message-box-question,.x4-rtl.x4-message-box-error{background-position:top left}.x4-message-box-info{background-image:url(images/shared/icon-info.gif)}.x4-message-box-warning{background-image:url(images/shared/icon-warning.gif)}.x4-message-box-question{background-image:url(images/shared/icon-question.gif)}.x4-message-box-error{background-image:url(images/shared/icon-error.gif)}.x4-form-cb-wrap{height:22px}.x4-toolbar-item .x4-form-cb-wrap{height:20px}.x4-form-cb{margin-top:5px}.x4-toolbar-item .x4-form-cb{margin-top:4px}.x4-form-checkbox{width:13px;height:13px;background:url(images/form/checkbox.gif) no-repeat}.x4-form-cb-checked .x4-form-checkbox{background-position:0 -13px}.x4-form-checkbox-focus{background-position:-13px 0}.x4-form-cb-checked .x4-form-checkbox-focus{background-position:-13px -13px}.x4-form-cb-label{margin-top:4px;font:normal 12px/14px tahoma,arial,verdana,sans-serif}.x4-toolbar-item .x4-form-cb-label{font:normal 11px/13px tahoma,arial,verdana,sans-serif;margin-top:4px}.x4-form-cb-label-before{margin-right:4px}.x4-rtl.x4-field .x4-form-cb-label-before{margin-right:0;margin-left:4px}.x4-form-cb-label-after{margin-left:4px}.x4-rtl.x4-field .x4-form-cb-label-after{margin-left:0;margin-right:4px}.x4-form-checkboxgroup-body{padding:0 4px}.x4-form-invalid .x4-form-checkboxgroup-body{border:1px solid #c30;background-image:url(images/grid/invalid_line.gif);background-repeat:repeat-x;background-position:bottom}.x4-check-group-alt{background:#d1ddef;border-top:1px dotted #b5b8c8;border-bottom:1px dotted #b5b8c8}.x4-form-check-group-label{color:black;padding:2px;margin:0 30px 5px 0;border-width:0 0 1px 0;border-style:solid;border-color:black}.x4-rtl.x4-form-check-group-label{margin:0 0 5px 30px}.x4-fieldset{border:1px solid #b5b8c8;padding:0 10px;margin:0 0 10px}.x4-ie8m .x4-fieldset,.x4-quirks .x4-ie .x4-fieldset{padding-top:0}.x4-ie8m .x4-fieldset .x4-fieldset-body,.x4-quirks .x4-ie .x4-fieldset .x4-fieldset-body{padding-top:0}.x4-fieldset-header-checkbox{line-height:14px;margin:1px 3px 0 0}.x4-fieldset-header{padding:0 3px 1px}.x4-fieldset-header .x4-tool{margin-top:1px;padding:0}.x4-fieldset-header .x4-form-cb-wrap{padding:1px 0}.x4-fieldset-header-text{font:11px/14px bold tahoma,arial,verdana,sans-serif;color:#15428b;padding:1px 0}.x4-fieldset-header-text-collapsible{cursor:pointer}.x4-fieldset-with-title .x4-fieldset-header-checkbox,.x4-fieldset-with-title .x4-tool{margin:1px 3px 0 0}.x4-fieldset-with-title .x4-rtl .x4-fieldset-header-checkbox,.x4-fieldset-with-title .x4-rtl .x4-tool{margin:1px 0 0 3px}.x4-webkit .x4-fieldset-header{-webkit-padding-start:3px;-webkit-padding-end:3px}.x4-opera .x4-fieldset-with-legend{margin-top:-1px}.x4-opera.x4-mac .x4-fieldset-header-text{padding:2px 0 0}.x4-strict .x4-ie8 .x4-fieldset-header{margin-bottom:-1px}.x4-strict .x4-ie8 .x4-fieldset-header .x4-tool,.x4-strict .x4-ie8 .x4-fieldset-header .x4-fieldset-header-text,.x4-strict .x4-ie8 .x4-fieldset-header .x4-fieldset-header-checkbox{position:relative;top:-1px}.x4-quirks .x4-ie .x4-fieldset-header,.x4-ie8m .x4-fieldset-header{padding-left:1px;padding-right:1px}.x4-fieldset-collapsed .x4-fieldset-body{display:none}.x4-fieldset-collapsed{padding-bottom:0!important;border-width:1px 1px 0 1px!important;border-left-color:transparent!important;border-right-color:transparent!important}.x4-ie6 .x4-fieldset-collapsed{border-width:1px 0 0 0!important;padding-bottom:0!important;margin-left:1px;margin-right:1px}.x4-ie .x4-fieldset-bwrap{zoom:1}.x4-fieldset .x4-tool-toggle{background-position:0 -60px}.x4-fieldset .x4-tool-over .x4-tool-toggle{background-position:-15px -60px}.x4-fieldset-collapsed .x4-tool-toggle{background-position:0 -75px}.x4-fieldset-collapsed .x4-tool-over .x4-tool-toggle{background-position:-15px -75px}.x4-ie .x4-fieldset-noborder legend{position:relative;margin-bottom:23px}.x4-ie .x4-fieldset-noborder legend span{position:absolute;left:16px}.x4-fieldset{overflow:hidden}.x4-fieldset-bwrap{overflow:hidden;zoom:1}.x4-fieldset-body{overflow:hidden}.x4-form-radio{width:13px;height:13px;background:url(images/form/radio.gif) no-repeat}.x4-form-cb-checked .x4-form-radio{background-position:0 -13px}.x4-form-radio-focus{background-position:-13px 0}.x4-form-cb-checked .x4-form-radio-focus{background-position:-13px -13px}.x4-form-trigger{background:url(images/form/trigger.gif);width:17px;border-width:0 0 1px;border-color:#b5b8c8;border-style:solid}.x4-rtl.x4-form-trigger-wrap .x4-form-trigger{background-image:url(images/form/trigger-rtl.gif)}.x4-trigger-cell{background-color:white;width:17px}.x4-form-trigger-over{background-position:-17px 0;border-color:#7eadd9}.x4-form-trigger-wrap-focus .x4-form-trigger{background-position:-51px 0;border-color:#7eadd9}.x4-form-trigger-wrap-focus .x4-form-trigger-over{background-position:-68px 0}.x4-form-trigger-click,.x4-form-trigger-wrap-focus .x4-form-trigger-click{background-position:-34px 0}.x4-form-clear-trigger{background-image:url(images/form/clear-trigger.gif)}.x4-rtl.x4-form-trigger-wrap .x4-form-clear-trigger{background-image:url(images/form/clear-trigger-rtl.gif)}.x4-form-search-trigger{background-image:url(images/form/search-trigger.gif)}.x4-rtl.x4-form-trigger-wrap .x4-form-search-trigger{background-image:url(images/form/search-trigger-rtl.gif)}.x4-quirks .prefixie6 .x4-form-trigger-input-cell{height:22px}.x4-quirks .prefixie6 .x4-field-toolbar .x4-form-trigger-input-cell{height:20px}div.x4-form-spinner-up,div.x4-form-spinner-down{background-image:url(images/form/spinner.gif);background-color:white;width:17px;height:11px}.x4-rtl.x4-form-trigger-wrap .x4-form-spinner-up,.x4-rtl.x4-form-trigger-wrap .x4-form-spinner-down{background-image:url(images/form/spinner-rtl.gif)}.x4-form-spinner-down{background-position:0 -11px}.x4-form-trigger-wrap-focus .x4-form-spinner-down{background-position:-51px -11px}.x4-form-trigger-wrap .x4-form-spinner-down-over{background-position:-17px -11px}.x4-form-trigger-wrap-focus .x4-form-spinner-down-over{background-position:-68px -11px}.x4-form-trigger-wrap .x4-form-spinner-down-click{background-position:-34px -11px}.x4-toolbar-item div.x4-form-spinner-up,.x4-toolbar-item div.x4-form-spinner-down{background-image:url(images/form/spinner-small.gif);height:10px}.x4-toolbar-item .x4-form-spinner-down{background-position:0 -10px}.x4-toolbar-item .x4-form-trigger-wrap-focus .x4-form-spinner-down{background-position:-51px -10px}.x4-toolbar-item .x4-form-trigger-wrap .x4-form-spinner-down-over{background-position:-17px -10px}.x4-toolbar-item .x4-form-trigger-wrap-focus .x4-form-spinner-down-over{background-position:-68px -10px}.x4-toolbar-item .x4-form-trigger-wrap .x4-form-spinner-down-click{background-position:-34px -10px}.x4-toolbar-item .x4-rtl.x4-form-trigger-wrap .x4-form-spinner-up,.x4-toolbar-item .x4-rtl.x4-form-trigger-wrap .x4-form-spinner-down{background-image:url(images/form/spinner-small-rtl.gif)}.x4-tbar-page-number{width:30px}.x4-tbar-page-first{background-image:url(images/grid/page-first.gif)}.x4-tbar-page-prev{background-image:url(images/grid/page-prev.gif)}.x4-tbar-page-next{background-image:url(images/grid/page-next.gif)}.x4-tbar-page-last{background-image:url(images/grid/page-last.gif)}.x4-tbar-loading{background-image:url(images/grid/refresh.gif)}.x4-item-disabled .x4-tbar-page-first{background-image:url(images/grid/page-first-disabled.gif)}.x4-item-disabled .x4-tbar-page-prev{background-image:url(images/grid/page-prev-disabled.gif)}.x4-item-disabled .x4-tbar-page-next{background-image:url(images/grid/page-next-disabled.gif)}.x4-item-disabled .x4-tbar-page-last{background-image:url(images/grid/page-last-disabled.gif)}.x4-item-disabled .x4-tbar-loading{background-image:url(images/grid/refresh-disabled.gif)}.x4-rtl.x4-tbar-page-first{background-image:url(images/grid/page-last.gif)}.x4-rtl.x4-tbar-page-prev{background-image:url(images/grid/page-next.gif)}.x4-rtl.x4-tbar-page-next{background-image:url(images/grid/page-prev.gif)}.x4-rtl.x4-tbar-page-last{background-image:url(images/grid/page-first.gif)}.x4-item-disabled .x4-rtl.x4-tbar-page-first{background-image:url(images/grid/page-last-disabled.gif)}.x4-item-disabled .x4-rtl.x4-tbar-page-prev{background-image:url(images/grid/page-next-disabled.gif)}.x4-item-disabled .x4-rtl.x4-tbar-page-next{background-image:url(images/grid/page-prev-disabled.gif)}.x4-item-disabled .x4-rtl.x4-tbar-page-last{background-image:url(images/grid/page-first-disabled.gif)}.x4-boundlist{border-width:1px;border-style:solid;border-color:#98c0f4;background:white}.x4-strict .x4-ie7m .x4-boundlist-list-ct{position:relative}.x4-boundlist-item{padding:0 3px;line-height:20px;cursor:pointer;cursor:hand;position:relative;zoom:1;border-width:1px;border-style:dotted;border-color:white}.x4-boundlist-selected{background:#cbdaf0;border-color:#8eabe4}.x4-boundlist-item-over{background:#dfe8f6;border-color:#a3bae9}.x4-boundlist-floating{border-top-width:0}.x4-boundlist-above{border-top-width:1px;border-bottom-width:1px}.x4-datepicker{border-width:1px;border-style:solid;border-color:#1b376c;background-color:white;width:177px}.x4-datepicker-header{padding:3px 6px;text-align:center;background-image:none;background-color:#23427c;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#264888),color-stop(100%,#1f3a6c));background-image:-webkit-linear-gradient(top,#264888,#1f3a6c);background-image:-moz-linear-gradient(top,#264888,#1f3a6c);background-image:-o-linear-gradient(top,#264888,#1f3a6c);background-image:linear-gradient(top,#264888,#1f3a6c)}.x4-datepicker-arrow{width:15px;height:15px;top:6px;cursor:pointer;background-color:#23427c;filter:alpha(opacity=70);opacity:.7}a.x4-datepicker-arrow:hover{filter:alpha(opacity=100);opacity:1}.x4-datepicker-next{right:6px;background-image:url(images/shared/right-btn.gif)}.x4-datepicker-prev{left:6px;background-image:url(images/shared/left-btn.gif)}.x4-datepicker-month .x4-btn,.x4-datepicker-month .x4-btn .x4-btn-tc,.x4-datepicker-month .x4-btn .x4-btn-tl,.x4-datepicker-month .x4-btn .x4-btn-tr,.x4-datepicker-month .x4-btn .x4-btn-mc,.x4-datepicker-month .x4-btn .x4-btn-ml,.x4-datepicker-month .x4-btn .x4-btn-mr,.x4-datepicker-month .x4-btn .x4-btn-bc,.x4-datepicker-month .x4-btn .x4-btn-bl,.x4-datepicker-month .x4-btn .x4-btn-br{background:transparent;border-width:0!important}.x4-datepicker-month .x4-btn-inner{color:white}.x4-datepicker-month .x4-btn-split-right{background-image:url(images/button/s-arrow-light.gif);padding-right:12px}.x4-datepicker-column-header{width:25px;color:#233d6d;font:normal 10px tahoma,arial,verdana,sans-serif;text-align:right;border-width:0 0 1px;border-style:solid;border-color:#b2d1f5;background-image:none;background-color:#dfecfb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#edf4fd),color-stop(100%,#cde1f9));background-image:-webkit-linear-gradient(top,#edf4fd,#cde1f9);background-image:-moz-linear-gradient(top,#edf4fd,#cde1f9);background-image:-o-linear-gradient(top,#edf4fd,#cde1f9);background-image:linear-gradient(top,#edf4fd,#cde1f9)}.x4-datepicker-column-header-inner{line-height:19px;padding:0 7px 0 0}.x4-datepicker-cell{text-align:right;border-width:1px;border-style:solid;border-color:white}.x4-datepicker-date{padding:0 4px 0 0;font:normal 11px tahoma,arial,verdana,sans-serif;color:black;cursor:pointer;line-height:18px}a.x4-datepicker-date:hover{color:black;background-color:#ddecfe}.x4-datepicker-selected{border-style:solid;border-color:#8db2e3}.x4-datepicker-selected .x4-datepicker-date{background-color:#dae5f3;font-weight:bold}.x4-datepicker-today{border-color:darkred;border-style:solid}.x4-datepicker-prevday .x4-datepicker-date,.x4-datepicker-nextday .x4-datepicker-date{color:#aaa}.x4-datepicker-disabled a.x4-datepicker-date{background-color:#eee;cursor:default;color:#bbb}.x4-datepicker-disabled a.x4-datepicker-date:hover{background-color:#eee}.x4-datepicker-footer,.x4-monthpicker-buttons{padding:4px 0;border-width:1px 0 0;border-style:solid;border-color:#b2d1f5;background-image:none;background-color:#dfecfb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dee8f5),color-stop(49%,#d1dff0),color-stop(51%,#c7d8ed),color-stop(100%,#cbdaee));background-image:-webkit-linear-gradient(top,#dee8f5,#d1dff0 49%,#c7d8ed 51%,#cbdaee);background-image:-moz-linear-gradient(top,#dee8f5,#d1dff0 49%,#c7d8ed 51%,#cbdaee);background-image:-o-linear-gradient(top,#dee8f5,#d1dff0 49%,#c7d8ed 51%,#cbdaee);background-image:linear-gradient(top,#dee8f5,#d1dff0 49%,#c7d8ed 51%,#cbdaee);text-align:center}.x4-datepicker-footer .x4-btn,.x4-monthpicker-buttons .x4-btn{margin:0 2px 0 2px}.x4-monthpicker{width:177px;border-width:1px;border-style:solid;border-color:#1b376c;background-color:white}.x4-monthpicker-months{border-width:0 1px 0 0;border-color:#1b376c;border-style:solid;width:87px}.x4-monthpicker-months .x4-monthpicker-item{width:43px}.x4-monthpicker-years{width:88px}.x4-monthpicker-years .x4-monthpicker-item{width:44px}.x4-monthpicker-item{margin:5px 0 4px;font:normal 11px tahoma,arial,verdana,sans-serif;text-align:center}.x4-monthpicker-item-inner{margin:0 5px 0 5px;color:#15428b;border-width:1px;border-style:solid;border-color:white;line-height:16px;cursor:pointer}a.x4-monthpicker-item-inner:hover{background-color:#ddecfe}.x4-monthpicker-selected{background-color:#dae5f3;border-style:solid;border-color:#8db2e3}.x4-monthpicker-yearnav{height:27px}.x4-monthpicker-yearnav-button-ct{width:44px}.x4-monthpicker-yearnav-button{height:15px;width:15px;cursor:pointer;margin-top:6px;background-color:white}.x4-monthpicker-yearnav-next{background-image:url(images/tools/tool-sprites.gif);background-position:0 -120px}.x4-monthpicker-yearnav-next-over{background-position:-15px -120px}.x4-monthpicker-yearnav-prev{background-image:url(images/tools/tool-sprites.gif);background-position:0 -105px}.x4-monthpicker-yearnav-prev-over{background-position:-15px -105px}.x4-monthpicker-small .x4-monthpicker-item{margin:2px 0 2px}.x4-monthpicker-small .x4-monthpicker-item-inner{margin:0 5px 0 5px}.x4-monthpicker-small .x4-monthpicker-yearnav{height:22px}.x4-monthpicker-small .x4-monthpicker-yearnav-button{margin-top:3px}.x4-nlg .x4-datepicker-header{background-image:url(images/datepicker/datepicker-header-bg.gif);background-repeat:repeat-x;background-position:top left}.x4-nlg .x4-datepicker-footer,.x4-nlg .x4-monthpicker-buttons{background-image:url(images/datepicker/datepicker-footer-bg.gif);background-repeat:repeat-x;background-position:top left}.x4-datepicker-header:after{display:none;content:"x-slicer:bg:url(images/datepicker/datepicker-header-bg.gif)"}.x4-datepicker-footer:after{display:none;content:"x-slicer:bg:url(images/datepicker/datepicker-footer-bg.gif)"}.x4-form-date-trigger{background-image:url(images/form/date-trigger.gif)}.x4-rtl.x4-form-trigger-wrap .x4-form-date-trigger{background-image:url(images/form/date-trigger-rtl.gif)}.x4-form-file-wrap .x4-form-text{color:gray}.x4-color-picker{width:144px;height:90px;background-color:white;border-color:white;border-width:0;border-style:solid}.x4-color-picker-item{width:18px;height:18px;border-width:1px;border-color:white;border-style:solid;background-color:white;cursor:pointer;padding:2px}.x4-content-box .x4-color-picker-item{width:12px;height:12px}a.x4-color-picker-item:hover{border-color:#8bb8f3;background-color:#deecfd}.x4-color-picker-selected{border-color:#8bb8f3;background-color:#deecfd}.x4-color-picker-item-inner{line-height:10px;border-color:#aca899;border-width:1px;border-style:solid}.x4-html-editor-tb .x4-btn-text{background:transparent no-repeat;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-bold,.x4-menu-item div.x4-edit-bold{background-position:0 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-italic,.x4-menu-item div.x4-edit-italic{background-position:-16px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-underline,.x4-menu-item div.x4-edit-underline{background-position:-32px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-forecolor,.x4-menu-item div.x4-edit-forecolor{background-position:-160px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-backcolor,.x4-menu-item div.x4-edit-backcolor{background-position:-176px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-justifyleft,.x4-menu-item div.x4-edit-justifyleft{background-position:-112px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-justifycenter,.x4-menu-item div.x4-edit-justifycenter{background-position:-128px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-justifyright,.x4-menu-item div.x4-edit-justifyright{background-position:-144px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-insertorderedlist,.x4-menu-item div.x4-edit-insertorderedlist{background-position:-80px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-insertunorderedlist,.x4-menu-item div.x4-edit-insertunorderedlist{background-position:-96px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-increasefontsize,.x4-menu-item div.x4-edit-increasefontsize{background-position:-48px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-decreasefontsize,.x4-menu-item div.x4-edit-decreasefontsize{background-position:-64px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-sourceedit,.x4-menu-item div.x4-edit-sourceedit{background-position:-192px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-createlink,.x4-menu-item div.x4-edit-createlink{background-position:-208px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tip .x4-tip-bd .x4-tip-bd-inner{padding:5px;padding-bottom:1px}.x4-html-editor-tb .x4-font-select{font-size:11px;font-family:inherit}.x4-html-editor-wrap textarea{font:normal 12px tahoma,arial,verdana,sans-serif;background-color:white;resize:none}.x4-grid-body{background:white;border-width:1px;border-style:solid;border-color:#99bce8}.x4-grid-empty{padding:10px;color:gray;background-color:white;font:normal 11px tahoma,arial,verdana,sans-serif}.x4-grid-cell{color:null;font:normal 11px/13px tahoma,arial,verdana,sans-serif;background-color:white;border-color:#ededed #d0d0d0 #ededed #d0d0d0;border-style:solid}.x4-grid-row-alt .x4-grid-td{background-color:#fafafa}.x4-grid-row-before-over .x4-grid-td{border-bottom-style:solid;border-bottom-color:#ddd}.x4-grid-row-over .x4-grid-td{border-bottom-style:solid;border-bottom-color:#ddd}.x4-grid-row-before-selected .x4-grid-td{border-bottom-style:dotted;border-bottom-color:#a3bae9}.x4-grid-row-selected .x4-grid-td{border-bottom-style:dotted;border-bottom-color:#a3bae9}.x4-grid-row-before-focused .x4-grid-td{border-bottom-style:dotted;border-bottom-color:#464646;border-bottom-width:1px}.x4-grid-row-focused .x4-grid-td{background-color:#efefef}.x4-grid-row-over .x4-grid-td{background-color:#efefef}.x4-grid-row-selected .x4-grid-td{background-color:#dfe8f6}.x4-grid-row-focused .x4-grid-td{border-bottom-style:dotted;border-bottom-color:#464646;border-bottom-width:1px}.x4-grid-table .x4-grid-row-focused-first .x4-grid-td{border-top:1px dotted #464646}.x4-grid-row-selected .x4-grid-row-summary .x4-grid-td{border-bottom-color:#dfe8f6;border-top-width:0}.x4-grid-row-focused .x4-grid-row-summary .x4-grid-td{border-bottom-color:#efefef;border-top-width:0}.x4-grid-with-row-lines .x4-grid-td{border-bottom-width:1px}.x4-grid-with-row-lines .x4-grid-table{border-top:1px solid white}.x4-grid-with-row-lines .x4-grid-table-over-first{border-top-style:solid;border-top-color:#ddd}.x4-grid-with-row-lines .x4-grid-table-selected-first{border-top-style:dotted;border-top-color:#a3bae9}.x4-grid-body .x4-grid-table-focused-first{border-top:1px dotted #464646}.x4-grid-cell-inner{text-overflow:ellipsis;padding:3px 6px 4px 6px}.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-inner{padding-top:2px;padding-bottom:3px}.x4-grid-cell-special{border-color:#ededed #d0d0d0 #ededed #d0d0d0;border-style:solid;border-right-width:1px;background-image:none;background-color:#f6f6f6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:-moz-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:-o-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:linear-gradient(top,#f6f6f6,#e9e9e9)}.x4-grid-row-selected .x4-grid-cell-special{border-right-color:#ededed #aaccf6;background-image:none;background-color:#dfe8f6;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dfe8f6),color-stop(100%,#cbdaf0));background-image:-webkit-linear-gradient(left,#dfe8f6,#cbdaf0);background-image:-moz-linear-gradient(left,#dfe8f6,#cbdaf0);background-image:-o-linear-gradient(left,#dfe8f6,#cbdaf0);background-image:linear-gradient(left,#dfe8f6,#cbdaf0)}.x4-nlg .x4-grid-cell-special{background-repeat:repeat-y;background-image:url(images/grid/cell-special-bg.gif)}.x4-nlg .x4-grid-row-selected .x4-grid-cell-special{background-image:url(images/grid/cell-special-selected-bg.gif)}.x4-grid-cell-special .x4-grid-cell-special:after{display:none;content:"x-slicer:bg:url(images/grid/cell-special-bg.gif)"}.x4-grid-cell-special .x4-grid-cell-special-selected:after{display:none;content:"x-slicer:bg:url(images/grid/cell-special-selected-bg.gif)"}.x4-rtl.x4-grid-cell-special{border-right-width:0;border-left-width:1px}.x4-grid-dirty-cell{background:url(images/grid/dirty.gif) no-repeat 0 0}.x4-rtl.x4-grid-dirty-cell{background-image:url(images/grid/dirty-rtl.gif);background-position:right 0}.x4-grid-row .x4-grid-cell-selected{color:null;background-color:#b8cfee}.x4-grid-with-col-lines .x4-grid-cell{border-right-width:1px}.x4-rtl.x4-grid-with-col-lines .x4-grid-cell{border-right-width:0;border-left-width:1px}.x4-grid-resize-marker{width:1px;background-color:#0f0f0f}.x4-grid-drop-indicator{position:absolute;height:1px;line-height:0;background-color:#77bc71;overflow:visible;pointer-events:none}.x4-grid-drop-indicator .x4-grid-drop-indicator-left{position:absolute;top:-8px;left:-12px;background-image:url(images/grid/dd-insert-arrow-right.png);height:16px;width:16px}.x4-grid-drop-indicator .x4-grid-drop-indicator-right{position:absolute;top:-8px;right:-11px;background-image:url(images/grid/dd-insert-arrow-left.png);height:16px;width:16px}.x4-ie6 .x4-grid-drop-indicator-left{background-image:url(images/grid/dd-insert-arrow-right.gif)}.x4-ie6 .x4-grid-drop-indicator-right{background-image:url(images/grid/dd-insert-arrow-left.gif)}.col-move-top,.col-move-bottom{width:9px;height:9px}.col-move-top{background-image:url(images/grid/col-move-top.gif)}.col-move-bottom{background-image:url(images/grid/col-move-bottom.gif)}.x4-grid-header-ct{border:1px solid #99bce8;border-bottom-color:#c5c5c5;background-color:#c5c5c5;background-image:none;background-color:#c5c5c5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f9f9f9),color-stop(100%,#e3e4e6));background-image:-webkit-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-moz-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-o-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:linear-gradient(top,#f9f9f9,#e3e4e6)}.x4-accordion-item .x4-grid-header-ct{border-width:0 0 1px!important}.x4-accordion-item .x4-grid-header-ct-hidden{border:0!important}.x4-grid-body{border-top-color:#c5c5c5}.x4-hmenu-sort-asc .x4-menu-item-icon{background-image:url(images/grid/hmenu-asc.gif)}.x4-hmenu-sort-desc .x4-menu-item-icon{background-image:url(images/grid/hmenu-desc.gif)}.x4-cols-icon .x4-menu-item-icon{background-image:url(images/grid/columns.gif)}.x4-column-header{border-right:1px solid #c5c5c5;color:black;font:normal 11px/13px tahoma,arial,verdana,sans-serif;background-image:none;background-color:#c5c5c5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f9f9f9),color-stop(100%,#e3e4e6));background-image:-webkit-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-moz-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-o-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:linear-gradient(top,#f9f9f9,#e3e4e6)}.x4-rtl.x4-column-header{border-right:0 none;border-left:1px solid #c5c5c5}.x4-group-sub-header{background:transparent;border-top:1px solid #c5c5c5}.x4-group-sub-header .x4-column-header-inner{padding:3px 6px 5px 6px}.x4-column-header-inner{padding:4px 6px 5px 6px;text-overflow:ellipsis}.x4-column-header-over,.x4-column-header-sort-ASC,.x4-column-header-sort-DESC{background-image:none;background-color:#aaccf6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ebf3fd),color-stop(39%,#ebf3fd),color-stop(40%,#d9e8fb),color-stop(100%,#d9e8fb));background-image:-webkit-linear-gradient(top,#ebf3fd,#ebf3fd 39%,#d9e8fb 40%,#d9e8fb);background-image:-moz-linear-gradient(top,#ebf3fd,#ebf3fd 39%,#d9e8fb 40%,#d9e8fb);background-image:-o-linear-gradient(top,#ebf3fd,#ebf3fd 39%,#d9e8fb 40%,#d9e8fb);background-image:linear-gradient(top,#ebf3fd,#ebf3fd 39%,#d9e8fb 40%,#d9e8fb)}.x4-nlg .x4-grid-header-ct,.x4-nlg .x4-column-header{background-image:url(images/grid/column-header-bg.gif)}.x4-nlg .x4-column-header-over,.x4-nlg .x4-column-header-sort-ASC,.x4-nlg .x4-column-header-sort-DESC{background-image:url(images/grid/column-header-over-bg.gif)}.x4-column-header-open{background-color:transparent}.x4-column-header-open .x4-column-header-trigger{background-color:transparent}.x4-column-header-trigger{width:14px;cursor:pointer;background-color:transparent;background-position:0 center}.x4-rtl.x4-column-header-trigger{background-position:right center}.x4-column-header-align-right .x4-column-header-text{margin-right:9px}.x4-column-header-align-right .x4-rtl.x4-column-header-text{margin-right:0;margin-left:9px}.x4-column-header-sort-ASC .x4-column-header-text,.x4-column-header-sort-DESC .x4-column-header-text{padding-right:12px;background-position:right center}.x4-column-header-sort-ASC .x4-rtl.x4-column-header-text,.x4-column-header-sort-DESC .x4-rtl.x4-column-header-text{padding-right:0;padding-left:12px;background-position:0 center}.x4-column-header-sort-ASC .x4-column-header-text{background-image:url(images/grid/sort_asc.gif)}.x4-column-header-sort-DESC .x4-column-header-text{background-image:url(images/grid/sort_desc.gif)}.x4-column-header:after{display:none;content:"x-slicer:bg:url(images/grid/column-header-bg.gif), stretch:bottom"}.x4-column-header-over:after{display:none;content:"x-slicer:bg:url(images/grid/column-header-over-bg.gif), stretch:bottom"}.x4-grid-cell-inner-action-col{padding:2px 2px 2px 2px}.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-inner-action-col{padding-top:1px;padding-bottom:1px}.x4-action-col-cell .x4-item-disabled{filter:alpha(opacity=30);opacity:.3}.x4-action-col-icon{height:16px;width:16px;cursor:pointer}.x4-grid-cell-inner-checkcolumn{padding:4px 6px 3px 6px}.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-inner-checkcolumn{padding-top:3px;padding-bottom:2px}.x4-grid-checkcolumn{width:13px;height:13px;background:url(images/form/checkbox.gif) 0 0 no-repeat}.x4-item-disabled .x4-grid-checkcolumn{filter:alpha(opacity=30);opacity:.3}.x4-grid-checkcolumn-checked{background-position:0 -13px}.x4-grid-cell-inner-row-numberer{padding:3px 5px 4px 3px}.x4-grid-group-hd{border-width:0 0 2px 0;border-style:solid;border-color:#99bbe8;padding:10px 4px 4px 4px;background:white;cursor:pointer}.x4-grid-group-hd-not-collapsible{cursor:default}.x4-grid-group-hd-collapsible .x4-grid-group-title{background-repeat:no-repeat;background-position:left center;background-image:url(images/grid/group-collapse.gif);padding:0 0 0 14px}.x4-rtl.x4-grid-view .x4-grid-group-hd-collapsible .x4-grid-group-title{background-position:right center;padding:0 14px 0 0}.x4-grid-group-title{color:#3764a0;font:bold 11px/13px tahoma,arial,verdana,sans-serif}.x4-grid-group-hd-collapsed .x4-grid-group-title{background-image:url(images/grid/group-expand.gif)}.x4-grid-group-collapsed .x4-grid-group-title{background-image:url(images/grid/group-expand.gif)}.x4-group-by-icon{background-image:url(images/grid/group-by.gif)}.x4-show-groups-icon{background-image:url(images/grid/group-by.gif)}.x4-grid-rowbody{font:normal 11px/13px tahoma,arial,verdana,sans-serif;padding:5px 6px 5px 6px}.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-rowbody{padding-top:6px;padding-bottom:4px}.x4-grid-rowwrap{border-color:#ededed #d0d0d0 #ededed #d0d0d0;border-style:solid}.x4-summary-bottom{border-bottom-color:#c5c5c5}.x4-docked-summary{border-width:1px;border-color:#99bce8;border-style:solid}.x4-docked-summary .x4-grid-table{width:100%}.x4-grid-row-summary .x4-grid-cell,.x4-grid-row-summary .x4-grid-rowwrap,.x4-grid-row-summary .x4-grid-cell-rowbody{border-color:#ededed #d0d0d0 #ededed #d0d0d0;background-color:transparent!important;border-top-width:0;font:normal 11px/13px tahoma,arial,verdana,sans-serif}.x4-grid-with-row-lines .x4-grid-table-summary{border:0}.x4-grid-locked .x4-grid-inner-locked{border-width:0 1px 0 0;border-style:solid}.x4-grid-locked .x4-rtl.x4-grid-inner-locked{border-width:0 0 0 1px}.x4-grid-inner-locked .x4-column-header-last,.x4-grid-inner-locked .x4-grid-cell-last{border-right-width:0!important}.x4-grid-inner-locked .x4-rtl.x4-column-header-last{border-left-width:0!important}.x4-rtl.x4-grid-inner-locked .x4-grid-row .x4-column-header-last{border-left:0 none}.x4-rtl.x4-grid-inner-locked .x4-grid-row .x4-grid-cell-last{border-left:0 none}.x4-hmenu-lock .x4-menu-item-icon{background-image:url(images/grid/hmenu-lock.gif)}.x4-hmenu-unlock .x4-menu-item-icon{background-image:url(images/grid/hmenu-unlock.gif)}.x4-grid-editor .x4-form-text{font:normal 11px/15px tahoma,arial,verdana,sans-serif;padding:1px 5px 2px 5px;height:20px}.x4-content-box .x4-grid-editor .x4-form-text{height:15px}.x4-gecko .x4-grid-editor .x4-form-text{padding-left:4px;padding-right:4px}.x4-grid-editor .x4-form-trigger{height:20px}.x4-grid-editor .x4-form-spinner-up,.x4-grid-editor .x4-form-spinner-down{height:10px}.x4-grid-editor .x4-form-cb{margin-top:4px}.x4-grid-editor .x4-form-cb-wrap{height:20px}.x4-grid-editor .x4-form-display-field-body{height:20px}.x4-grid-editor .x4-form-display-field{font:normal 11px/15px tahoma,arial,verdana,sans-serif;padding:2px 6px 3px 6px;text-overflow:ellipsis}.x4-grid-editor .x4-form-action-col-field{padding:2px 2px 2px 2px}.x4-tree-cell-editor .x4-form-text{padding-left:2px;padding-right:2px}.x4-gecko .x4-tree-cell-editor .x4-form-text{padding-left:1px;padding-right:1px}.x4-grid-row-editor .x4-field{margin:0 1px 0 1px}.x4-grid-row-editor .x4-form-display-field{padding:2px 5px 3px 5px}.x4-grid-row-editor .x4-form-action-col-field{padding:2px 1px 2px 1px}.x4-grid-row-editor .x4-form-text{padding:1px 4px 2px 4px}.x4-gecko .x4-grid-row-editor .x4-form-text{padding-left:3px;padding-right:3px}.x4-grid-row-editor .x4-panel-body{border-top:1px solid #99bce8!important;border-bottom:1px solid #99bce8!important;padding:4px 0 4px 0;background-color:#eaf1fb}.x4-grid-with-col-lines .x4-grid-row-editor .x4-form-cb{margin-right:1px}.x4-grid-with-col-lines .x4-grid-row-editor .x4-rtl.x4-form-cb{margin-right:0;margin-left:1px}.x4-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:4px 4px 4px 4px;border-width:0 1px 1px 1px;border-style:solid;background-color:#eaf1fb}.x4-grid-row-editor-buttons-default-bottom-mc{background-color:#eaf1fb}.x4-nbr .x4-grid-row-editor-buttons-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-grid-row-editor-buttons-default-bottom-frameInfo{font-family:th-0-0-5-5-0-1-1-1-4-4-4-4}.x4-grid-row-editor-buttons-default-bottom-tl{background-position:0 -10px}.x4-grid-row-editor-buttons-default-bottom-tr{background-position:right -15px}.x4-grid-row-editor-buttons-default-bottom-bl{background-position:0 -20px}.x4-grid-row-editor-buttons-default-bottom-br{background-position:right -25px}.x4-grid-row-editor-buttons-default-bottom-ml{background-position:0 top}.x4-grid-row-editor-buttons-default-bottom-mr{background-position:right top}.x4-grid-row-editor-buttons-default-bottom-tc{background-position:0 0}.x4-grid-row-editor-buttons-default-bottom-bc{background-position:0 -5px}.x4-grid-row-editor-buttons-default-bottom-tr,.x4-grid-row-editor-buttons-default-bottom-br,.x4-grid-row-editor-buttons-default-bottom-mr{padding-right:5px}.x4-grid-row-editor-buttons-default-bottom-tl,.x4-grid-row-editor-buttons-default-bottom-bl,.x4-grid-row-editor-buttons-default-bottom-ml{padding-left:5px}.x4-grid-row-editor-buttons-default-bottom-tc{height:0}.x4-grid-row-editor-buttons-default-bottom-bc{height:5px}.x4-grid-row-editor-buttons-default-bottom-tl,.x4-grid-row-editor-buttons-default-bottom-bl,.x4-grid-row-editor-buttons-default-bottom-tr,.x4-grid-row-editor-buttons-default-bottom-br,.x4-grid-row-editor-buttons-default-bottom-tc,.x4-grid-row-editor-buttons-default-bottom-bc,.x4-grid-row-editor-buttons-default-bottom-ml,.x4-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif)}.x4-grid-row-editor-buttons-default-bottom-ml,.x4-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif);background-repeat:repeat-y}.x4-grid-row-editor-buttons-default-bottom-mc{padding:4px 0 0 0}.x4-strict .x4-ie7 .x4-grid-row-editor-buttons-default-bottom-tl,.x4-strict .x4-ie7 .x4-grid-row-editor-buttons-default-bottom-bl{position:relative;right:0}.x4-grid-row-editor-buttons-default-bottom:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"}.x4-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:4px 4px 4px 4px;border-width:1px 1px 0 1px;border-style:solid;background-color:#eaf1fb}.x4-grid-row-editor-buttons-default-top-mc{background-color:#eaf1fb}.x4-nbr .x4-grid-row-editor-buttons-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-grid-row-editor-buttons-default-top-frameInfo{font-family:th-5-5-0-0-1-1-0-1-4-4-4-4}.x4-grid-row-editor-buttons-default-top-tl{background-position:0 -10px}.x4-grid-row-editor-buttons-default-top-tr{background-position:right -15px}.x4-grid-row-editor-buttons-default-top-bl{background-position:0 -20px}.x4-grid-row-editor-buttons-default-top-br{background-position:right -25px}.x4-grid-row-editor-buttons-default-top-ml{background-position:0 top}.x4-grid-row-editor-buttons-default-top-mr{background-position:right top}.x4-grid-row-editor-buttons-default-top-tc{background-position:0 0}.x4-grid-row-editor-buttons-default-top-bc{background-position:0 -5px}.x4-grid-row-editor-buttons-default-top-tr,.x4-grid-row-editor-buttons-default-top-br,.x4-grid-row-editor-buttons-default-top-mr{padding-right:5px}.x4-grid-row-editor-buttons-default-top-tl,.x4-grid-row-editor-buttons-default-top-bl,.x4-grid-row-editor-buttons-default-top-ml{padding-left:5px}.x4-grid-row-editor-buttons-default-top-tc{height:5px}.x4-grid-row-editor-buttons-default-top-bc{height:0}.x4-grid-row-editor-buttons-default-top-tl,.x4-grid-row-editor-buttons-default-top-bl,.x4-grid-row-editor-buttons-default-top-tr,.x4-grid-row-editor-buttons-default-top-br,.x4-grid-row-editor-buttons-default-top-tc,.x4-grid-row-editor-buttons-default-top-bc,.x4-grid-row-editor-buttons-default-top-ml,.x4-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif)}.x4-grid-row-editor-buttons-default-top-ml,.x4-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif);background-repeat:repeat-y}.x4-grid-row-editor-buttons-default-top-mc{padding:0 0 4px 0}.x4-strict .x4-ie7 .x4-grid-row-editor-buttons-default-top-tl,.x4-strict .x4-ie7 .x4-grid-row-editor-buttons-default-top-bl{position:relative;right:0}.x4-grid-row-editor-buttons-default-top:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"}.x4-grid-row-editor-buttons-default-bottom{top:29px}.x4-grid-row-editor-buttons-default-top{bottom:29px}.x4-grid-row-editor-buttons{border-color:#99bce8}.x4-row-editor-update-button{margin-right:2px}.x4-row-editor-cancel-button{margin-left:2px}.x4-rtl.x4-row-editor-update-button{margin-left:2px;margin-right:auto}.x4-rtl.x4-row-editor-cancel-button{margin-right:2px;margin-left:auto}.x4-grid-row-editor-errors .x4-tip-body{padding:5px}.x4-grid-row-editor-errors-item{list-style:disc;margin-left:15px}.x4-rtl.x4-grid-row-editor-errors .x4-grid-row-editor-errors-item{margin-left:0;margin-right:15px}.x4-grid-cell-inner-row-expander{padding:6px 7px 5px 7px}.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-inner-row-expander{padding-top:5px;padding-bottom:4px}.x4-grid-row-expander{width:9px;height:9px;cursor:pointer;background-image:url(images/grid/group-collapse.gif)}.x4-grid-row-collapsed .x4-grid-row-expander{background-image:url(images/grid/group-expand.gif)}.x4-grid-cell-inner-property-name{background-image:url(images/grid/property-cell-bg.gif);background-repeat:no-repeat;background-position:-16px 2px;padding-left:12px}.x4-accordion-layout-ct{background-color:white;padding:0}.x4-accordion-hd .x4-panel-header-text-container{color:black;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;text-transform:none}.x4-accordion-item{margin:0}.x4-accordion-item .x4-accordion-hd{background:#d9e7f8;border-top-color:#f3f7fb;padding:4px 5px 5px 5px}.x4-accordion-item .x4-accordion-hd-sibling-expanded{border-top-color:#99bce8}.x4-accordion-item .x4-accordion-hd-last-collapsed{border-bottom-color:#d9e7f8}.x4-accordion-item .x4-accordion-body{border-width:0}.x4-accordion-hd .x4-tool-collapse-top,.x4-accordion-hd .x4-tool-collapse-bottom{background-position:0 -255px}.x4-accordion-hd .x4-tool-expand-top,.x4-accordion-hd .x4-tool-expand-bottom{background-position:0 -240px}.x4-accordion-hd .x4-tool-over .x4-tool-collapse-top,.x4-accordion-hd .x4-tool-over .x4-tool-collapse-bottom{background-position:-15px -255px}.x4-accordion-hd .x4-tool-over .x4-tool-expand-top,.x4-accordion-hd .x4-tool-over .x4-tool-expand-bottom{background-position:-15px -240px}.x4-accordion-hd .x4-tool-img{background-color:#d9e7f8}.x4-collapse-el{cursor:pointer}.x4-layout-split-left,.x4-layout-split-right{top:50%;margin-top:-18px;width:5px;height:35px}.x4-layout-split-top,.x4-layout-split-bottom{left:50%;width:35px;height:5px;margin-left:-18px}.x4-layout-split-left{background-image:url(images/util/splitter/mini-left.gif)}.x4-layout-split-right{background-image:url(images/util/splitter/mini-right.gif)}.x4-rtl.x4-layout-split-left{background-image:url(images/util/splitter/mini-right.gif)}.x4-rtl.x4-layout-split-right{background-image:url(images/util/splitter/mini-left.gif)}.x4-layout-split-top{background-image:url(images/util/splitter/mini-top.gif)}.x4-layout-split-bottom{background-image:url(images/util/splitter/mini-bottom.gif)}.x4-splitter-collapsed .x4-layout-split-left{background-image:url(images/util/splitter/mini-right.gif)}.x4-splitter-collapsed .x4-layout-split-right{background-image:url(images/util/splitter/mini-left.gif)}.x4-splitter-collapsed .x4-rtl.x4-layout-split-left{background-image:url(images/util/splitter/mini-left.gif)}.x4-splitter-collapsed .x4-rtl.x4-layout-split-right{background-image:url(images/util/splitter/mini-right.gif)}.x4-splitter-collapsed .x4-layout-split-top{background-image:url(images/util/splitter/mini-bottom.gif)}.x4-splitter-collapsed .x4-layout-split-bottom{background-image:url(images/util/splitter/mini-top.gif)}.x4-splitter-active{background-color:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x4-splitter-active .x4-collapse-el{filter:alpha(opacity=30);opacity:.3}.x4-border-layout-ct{background-color:#dfe8f6}.x4-menu-body{background:#f0f0f0;padding:2px}.x4-menu-icon-separator{left:24px;border-left:solid 1px #e0e0e0;background-color:white;width:2px}.x4-rtl.x4-menu .x4-menu-icon-separator{left:auto;right:24px}.x4-menu-item{padding:1px;cursor:pointer}.x4-menu-item-indent{margin-left:30px}.x4-rtl.x4-menu-item-indent{margin-left:0;margin-right:30px}.x4-menu-item-active{background-image:none;background-color:#d9e8fb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e7f0fc),color-stop(100%,#c7ddf9));background-image:-webkit-linear-gradient(top,#e7f0fc,#c7ddf9);background-image:-moz-linear-gradient(top,#e7f0fc,#c7ddf9);background-image:-o-linear-gradient(top,#e7f0fc,#c7ddf9);background-image:linear-gradient(top,#e7f0fc,#c7ddf9);border-color:#a9cbf5;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;border-width:1px;border-style:solid;padding:0}.x4-nlg .x4-menu-item-active{background:#d9e8fb repeat-x left top;background-image:url(images/menu/menu-item-active-bg.gif)}.x4-menu-item-link{line-height:22px;padding:0 0 0 30px;display:inline-block}.x4-rtl.x4-menu-item-link{padding:0 30px 0 0}.x4-right-check-item-text{padding-right:22px}.x4-rtl.x4-right-check-item-text{padding-left:22px;padding-right:0}.x4-menu-item-icon{width:16px;height:16px;top:4px;left:3px;background-position:center center}.x4-menu-item-glyph{font-size:16px;line-height:16px;color:#222;opacity:.5}.x4-ie8m .x4-menu-item-glyph{color:#898989}.x4-gecko .x4-menu-item-active .x4-menu-item-icon,.x4-quirks .x4-menu-item-active .x4-menu-item-icon,.x4-ie9m .x4-menu-item-active .x4-menu-item-icon{top:3px;left:2px}.x4-rtl.x4-menu-item-icon{left:auto;right:3px}.x4-gecko .x4-menu-item-active .x4-rtl.x4-menu-item-icon,.x4-quirks .x4-menu-item-active .x4-rtl.x4-menu-item-icon,.x4-ie9m .x4-menu-item-active .x4-rtl.x4-menu-item-icon{left:auto;right:2px}.x4-menu-item-icon-right{width:16px;height:16px;top:3px;right:3px;background-position:center center}.x4-rtl.x4-menu-item-icon-right{right:auto;left:3px}.x4-menu-item-text{font-size:11px;color:#222;cursor:pointer;margin-right:16px}a.x4-rtl .x4-menu-item-text{margin-right:0;margin-left:16px}.x4-menu-item-checked .x4-menu-item-icon,.x4-menu-item-checked .x4-menu-item-icon-right{background-image:url(images/menu/checked.gif)}.x4-menu-item-checked .x4-menu-group-icon{background-image:url(images/menu/group-checked.gif)}.x4-menu-item-unchecked .x4-menu-item-icon,.x4-menu-item-unchecked .x4-menu-item-icon-right{background-image:url(images/menu/unchecked.gif)}.x4-menu-item-unchecked .x4-menu-group-icon{background-image:none}.x4-menu-item-separator{height:2px;border-top:solid 1px #e0e0e0;background-color:white;margin:2px 0;padding:0}.x4-menu-item-arrow{width:12px;height:9px;top:7px;right:0;background-image:url(images/menu/menu-parent.gif)}.x4-gecko .x4-menu-item-active .x4-menu-item-arrow,.x4-quirks .x4-menu-item-active .x4-menu-item-arrow,.x4-ie9m .x4-menu-item-active .x4-menu-item-arrow{top:6px;right:-1px}.x4-rtl.x4-menu-item-arrow{left:0;right:auto;background-image:url(images/menu/menu-parent-left.gif)}.x4-gecko .x4-menu-item-active .x4-rtl.x4-menu-item-arrow,.x4-ie9m .x4-menu-item-active .x4-rtl.x4-menu-item-arrow,.x4-quirks .x4-menu-item-active .x4-rtl.x4-menu-item-arrow{right:auto;left:-1px}.x4-menu-item-disabled{filter:alpha(opacity=50);opacity:.5}.x4-content-box .x4-menu-icon-separator{width:1px}.x4-content-box .x4-menu-item-separator{height:1px}.x4-ie .x4-menu-item-disabled .x4-menu-item-icon{filter:alpha(opacity=50);opacity:.5}.x4-ie .x4-menu-item-disabled .x4-menu-item-text{background-color:transparent}.x4-menu-date-item{border-color:#99bbe8}.x4-menu-item .x4-form-item-label{font-size:11px;color:#222}.x4-menu-scroll-top{height:8px;background-image:url(images/menu/scroll-top.gif)}.x4-menu-scroll-bottom{height:8px;background-image:url(images/menu/scroll-bottom.gif)}.x4-menu-scroll-top,.x4-menu-scroll-bottom{background-color:#f0f0f0}.x4-menu-item-link:after{display:none;content:"x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"}.x4-tool{cursor:pointer}.x4-tool-img{overflow:hidden;width:15px;height:15px;background-image:url(images/tools/tool-sprites.gif);margin:0}.x4-tool-placeholder{visibility:hidden}.x4-tool-close{background-position:0 0}.x4-tool-minimize{background-position:0 -15px}.x4-tool-maximize{background-position:0 -30px}.x4-tool-restore{background-position:0 -45px}.x4-tool-toggle{background-position:0 -60px}.x4-panel-collapsed .x4-tool-toggle{background-position:0 -75px}.x4-tool-gear{background-position:0 -90px}.x4-tool-prev{background-position:0 -105px}.x4-tool-next{background-position:0 -120px}.x4-tool-pin{background-position:0 -135px}.x4-tool-unpin{background-position:0 -150px}.x4-tool-right{background-position:0 -165px}.x4-tool-left{background-position:0 -180px}.x4-tool-down{background-position:0 -195px}.x4-tool-up{background-position:0 -210px}.x4-tool-refresh{background-position:0 -225px}.x4-tool-plus{background-position:0 -240px}.x4-tool-minus{background-position:0 -255px}.x4-tool-search{background-position:0 -270px}.x4-tool-save{background-position:0 -285px}.x4-tool-help{background-position:0 -300px}.x4-tool-print{background-position:0 -315px}.x4-tool-expand{background-position:0 -330px}.x4-tool-collapse{background-position:0 -345px}.x4-tool-resize{background-position:0 -360px}.x4-tool-move{background-position:0 -375px}.x4-tool-expand-bottom,.x4-tool-collapse-bottom{background-position:0 -195px}.x4-tool-expand-top,.x4-tool-collapse-top{background-position:0 -210px}.x4-tool-expand-left,.x4-tool-collapse-left{background-position:0 -180px}.x4-tool-expand-right,.x4-tool-collapse-right{background-position:0 -165px}.x4-rtl.x4-tool-expand-left,.x4-rtl.x4-tool-collapse-left{background-position:0 -165px}.x4-rtl.x4-tool-expand-right,.x4-rtl.x4-tool-collapse-right{background-position:0 -180px}.x4-tool-over .x4-tool-close{background-position:-15px 0}.x4-tool-over .x4-tool-minimize{background-position:-15px -15px}.x4-tool-over .x4-tool-maximize{background-position:-15px -30px}.x4-tool-over .x4-tool-restore{background-position:-15px -45px}.x4-tool-over .x4-tool-toggle{background-position:-15px -60px}.x4-panel-collapsed .x4-tool-over .x4-tool-toggle{background-position:-15px -75px}.x4-tool-over .x4-tool-gear{background-position:-15px -90px}.x4-tool-over .x4-tool-prev{background-position:-15px -105px}.x4-tool-over .x4-tool-next{background-position:-15px -120px}.x4-tool-over .x4-tool-pin{background-position:-15px -135px}.x4-tool-over .x4-tool-unpin{background-position:-15px -150px}.x4-tool-over .x4-tool-right{background-position:-15px -165px}.x4-tool-over .x4-tool-left{background-position:-15px -180px}.x4-tool-over .x4-tool-down{background-position:-15px -195px}.x4-tool-over .x4-tool-up{background-position:-15px -210px}.x4-tool-over .x4-tool-refresh{background-position:-15px -225px}.x4-tool-over .x4-tool-plus{background-position:-15px -240px}.x4-tool-over .x4-tool-minus{background-position:-15px -255px}.x4-tool-over .x4-tool-search{background-position:-15px -270px}.x4-tool-over .x4-tool-save{background-position:-15px -285px}.x4-tool-over .x4-tool-help{background-position:-15px -300px}.x4-tool-over .x4-tool-print{background-position:-15px -315px}.x4-tool-over .x4-tool-expand{background-position:-15px -330px}.x4-tool-over .x4-tool-collapse{background-position:-15px -345px}.x4-tool-over .x4-tool-resize{background-position:-15px -360px}.x4-tool-over .x4-tool-move{background-position:-15px -375px}.x4-tool-over .x4-tool-expand-bottom,.x4-tool-over .x4-tool-collapse-bottom{background-position:-15px -195px}.x4-tool-over .x4-tool-expand-top,.x4-tool-over .x4-tool-collapse-top{background-position:-15px -210px}.x4-tool-over .x4-tool-expand-left,.x4-tool-over .x4-tool-collapse-left{background-position:-15px -180px}.x4-tool-over .x4-tool-expand-right,.x4-tool-over .x4-tool-collapse-right{background-position:-15px -165px}.x4-tool-over .x4-rtl.x4-tool-expand-left,.x4-tool-over .x4-rtl.x4-tool-collapse-left{background-position:-15px -165px}.x4-tool-over .x4-rtl.x4-tool-expand-right,.x4-tool-over .x4-rtl.x4-tool-collapse-right{background-position:-15px -180px}.x4-resizable-handle{position:absolute;z-index:100;font-size:1px;line-height:6px;overflow:hidden;zoom:1;filter:alpha(opacity=0);opacity:0;background-color:#fff}.x4-collapsed .x4-resizable-handle{display:none}.x4-resizable-over .x4-resizable-handle-north{cursor:n-resize}.x4-resizable-over .x4-resizable-handle-south{cursor:s-resize}.x4-resizable-over .x4-resizable-handle-east{cursor:e-resize}.x4-resizable-over .x4-resizable-handle-west{cursor:w-resize}.x4-resizable-over .x4-resizable-handle-southeast{cursor:se-resize}.x4-resizable-over .x4-resizable-handle-northwest{cursor:nw-resize}.x4-resizable-over .x4-resizable-handle-northeast{cursor:ne-resize}.x4-resizable-over .x4-resizable-handle-southwest{cursor:sw-resize}.x4-resizable-handle-east{width:6px;height:100%;right:0;top:0}.x4-resizable-handle-south{width:100%;height:6px;left:0;bottom:0}.x4-resizable-handle-west{width:6px;height:100%;left:0;top:0}.x4-resizable-handle-north{width:100%;height:6px;left:0;top:0}.x4-resizable-handle-southeast{width:6px;height:6px;right:0;bottom:0;z-index:101}.x4-resizable-handle-northwest{width:6px;height:6px;left:0;top:0;z-index:101}.x4-resizable-handle-northeast{width:6px;height:6px;right:0;top:0;z-index:101}.x4-resizable-handle-southwest{width:6px;height:6px;left:0;bottom:0;z-index:101}.x4-ie .x4-resizable-handle-east{margin-right:-1px}.x4-ie .x4-resizable-handle-south{margin-bottom:-1px}.x4-resizable-pinned .x4-resizable-handle,.x4-resizable-over .x4-resizable-handle{filter:alpha(opacity=100);opacity:1}.x4-window .x4-window-handle{filter:alpha(opacity=0);opacity:0}.x4-window-collapsed .x4-window-handle{display:none}.x4-resizable-proxy{border:1px dashed #3b5a82;position:absolute;overflow:hidden;z-index:50000}.x4-resizable-over .x4-resizable-handle-east,.x4-resizable-over .x4-resizable-handle-west,.x4-resizable-pinned .x4-resizable-handle-east,.x4-resizable-pinned .x4-resizable-handle-west{background-image:url(images/sizer/e-handle.gif)}.x4-resizable-over .x4-resizable-handle-south,.x4-resizable-over .x4-resizable-handle-north,.x4-resizable-pinned .x4-resizable-handle-south,.x4-resizable-pinned .x4-resizable-handle-north{background-image:url(images/sizer/s-handle.gif)}.x4-resizable-over .x4-resizable-handle-southeast,.x4-resizable-pinned .x4-resizable-handle-southeast{background-position:top left;background-image:url(images/sizer/se-handle.gif)}.x4-resizable-over .x4-resizable-handle-northwest,.x4-resizable-pinned .x4-resizable-handle-northwest{background-position:bottom right;background-image:url(images/sizer/nw-handle.gif)}.x4-resizable-over .x4-resizable-handle-northeast,.x4-resizable-pinned .x4-resizable-handle-northeast{background-position:bottom left;background-image:url(images/sizer/ne-handle.gif)}.x4-resizable-over .x4-resizable-handle-southwest,.x4-resizable-pinned .x4-resizable-handle-southwest{background-position:top right;background-image:url(images/sizer/sw-handle.gif)}.x4-slider-horz{padding-left:7px;background:no-repeat 0 -15px}.x4-slider-horz .x4-slider-end{padding-right:7px;background:no-repeat right -30px}.x4-slider-horz .x4-slider-inner{height:15px}.x4-ie6 .x4-form-item .x4-slider-horz,.x4-ie7 .x4-form-item .x4-slider-horz,.x4-quirks .x4-ie .x4-form-item .x4-slider-horz{margin-top:4px}.x4-slider-horz .x4-slider-thumb{width:14px;height:15px;margin-left:-7px;background-image:url(images/slider/slider-thumb.png)}.x4-slider-horz .x4-slider-thumb-over{background-position:-14px -15px}.x4-slider-horz .x4-slider-thumb-drag{background-position:-28px -30px}.x4-rtl.x4-slider-horz{padding-left:0;padding-right:7px;background-position:right -30px}.x4-rtl.x4-slider-horz .x4-slider-end{padding-right:0;padding-left:7px;background-position:left -15px}.x4-rtl.x4-slider-horz .x4-slider-thumb{margin-right:-7px}.x4-slider-vert{padding-top:7px;background:no-repeat -30px 0}.x4-slider-vert .x4-slider-end{padding-bottom:7px;background:no-repeat -15px bottom;width:15px}.x4-slider-vert .x4-slider-inner{width:15px}.x4-slider-vert .x4-slider-thumb{width:15px;height:14px;margin-bottom:-7px;background-image:url(images/slider/slider-v-thumb.png)}.x4-slider-vert .x4-slider-thumb-over{background-position:-15px -14px}.x4-slider-vert .x4-slider-thumb-drag{background-position:-30px -28px}.x4-slider-horz,.x4-slider-horz .x4-slider-end,.x4-slider-horz .x4-slider-inner{background-image:url(images/slider/slider-bg.png)}.x4-slider-vert,.x4-slider-vert .x4-slider-end,.x4-slider-vert .x4-slider-inner{background-image:url(images/slider/slider-v-bg.png)}.x4-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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%)}.x4-tab-default-top-mc{background-image:url(images/tab/tab-default-top-fbg.gif);background-position:0 top;background-color:#deecfd}.x4-nlg .x4-tab-default-top{background-image:url(images/tab/tab-default-top-bg.gif);background-position:0 top}.x4-nbr .x4-tab-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-tab-default-top-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x4-tab-default-top-tl{background-position:0 -8px}.x4-tab-default-top-tr{background-position:right -12px}.x4-tab-default-top-bl{background-position:0 -16px}.x4-tab-default-top-br{background-position:right -20px}.x4-tab-default-top-ml{background-position:0 top}.x4-tab-default-top-mr{background-position:right top}.x4-tab-default-top-tc{background-position:0 0}.x4-tab-default-top-bc{background-position:0 -4px}.x4-tab-default-top-tr,.x4-tab-default-top-br,.x4-tab-default-top-mr{padding-right:4px}.x4-tab-default-top-tl,.x4-tab-default-top-bl,.x4-tab-default-top-ml{padding-left:4px}.x4-tab-default-top-tc{height:4px}.x4-tab-default-top-bc{height:0}.x4-tab-default-top-tl,.x4-tab-default-top-bl,.x4-tab-default-top-tr,.x4-tab-default-top-br,.x4-tab-default-top-tc,.x4-tab-default-top-bc,.x4-tab-default-top-ml,.x4-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x4-tab-default-top-ml,.x4-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif)}.x4-tab-default-top-mc{padding:0 6px 3px 6px}.x4-strict .x4-ie7 .x4-tab-default-top-tl,.x4-strict .x4-ie7 .x4-tab-default-top-bl{position:relative;right:0}.x4-tab-default-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x4-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:3px 9px 3px 9px;border-width:0 1px 1px 1px;border-style:solid;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%)}.x4-tab-default-bottom-mc{background-image:url(images/tab/tab-default-bottom-fbg.gif);background-position:0 top;background-color:#deecfd}.x4-nlg .x4-tab-default-bottom{background-image:url(images/tab/tab-default-bottom-bg.gif);background-position:0 top}.x4-nbr .x4-tab-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-tab-default-bottom-frameInfo{font-family:th-0-0-4-4-0-1-1-1-3-9-3-9}.x4-tab-default-bottom-tl{background-position:0 -8px}.x4-tab-default-bottom-tr{background-position:right -12px}.x4-tab-default-bottom-bl{background-position:0 -16px}.x4-tab-default-bottom-br{background-position:right -20px}.x4-tab-default-bottom-ml{background-position:0 top}.x4-tab-default-bottom-mr{background-position:right top}.x4-tab-default-bottom-tc{background-position:0 0}.x4-tab-default-bottom-bc{background-position:0 -4px}.x4-tab-default-bottom-tr,.x4-tab-default-bottom-br,.x4-tab-default-bottom-mr{padding-right:4px}.x4-tab-default-bottom-tl,.x4-tab-default-bottom-bl,.x4-tab-default-bottom-ml{padding-left:4px}.x4-tab-default-bottom-tc{height:0}.x4-tab-default-bottom-bc{height:4px}.x4-tab-default-bottom-tl,.x4-tab-default-bottom-bl,.x4-tab-default-bottom-tr,.x4-tab-default-bottom-br,.x4-tab-default-bottom-tc,.x4-tab-default-bottom-bc,.x4-tab-default-bottom-ml,.x4-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-corners.gif)}.x4-tab-default-bottom-ml,.x4-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-sides.gif)}.x4-tab-default-bottom-mc{padding:3px 6px 0 6px}.x4-strict .x4-ie7 .x4-tab-default-bottom-tl,.x4-strict .x4-ie7 .x4-tab-default-bottom-bl{position:relative;right:0}.x4-tab-default-bottom:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-bottom-fbg.gif), bg:url(images/tab/tab-default-bottom-bg.gif), corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"}.x4-tab-default-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: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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%)}.x4-tab-default-left-mc{background-image:url(images/tab/tab-default-top-fbg.gif);background-position:0 top;background-color:#deecfd}.x4-nlg .x4-tab-default-left{background-image:url(images/tab/tab-default-top-bg.gif);background-position:0 top}.x4-nbr .x4-tab-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-tab-default-left-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x4-tab-default-left-tl{background-position:0 -8px}.x4-tab-default-left-tr{background-position:right -12px}.x4-tab-default-left-bl{background-position:0 -16px}.x4-tab-default-left-br{background-position:right -20px}.x4-tab-default-left-ml{background-position:0 top}.x4-tab-default-left-mr{background-position:right top}.x4-tab-default-left-tc{background-position:0 0}.x4-tab-default-left-bc{background-position:0 -4px}.x4-tab-default-left-tr,.x4-tab-default-left-br,.x4-tab-default-left-mr{padding-right:4px}.x4-tab-default-left-tl,.x4-tab-default-left-bl,.x4-tab-default-left-ml{padding-left:4px}.x4-tab-default-left-tc{height:4px}.x4-tab-default-left-bc{height:0}.x4-tab-default-left-tl,.x4-tab-default-left-bl,.x4-tab-default-left-tr,.x4-tab-default-left-br,.x4-tab-default-left-tc,.x4-tab-default-left-bc,.x4-tab-default-left-ml,.x4-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x4-tab-default-left-ml,.x4-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif)}.x4-tab-default-left-mc{padding:0 6px 3px 6px}.x4-strict .x4-ie7 .x4-tab-default-left-tl,.x4-strict .x4-ie7 .x4-tab-default-left-bl{position:relative;right:0}.x4-tab-default-left:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x4-tab-default-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: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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%)}.x4-tab-default-right-mc{background-image:url(images/tab/tab-default-top-fbg.gif);background-position:0 top;background-color:#deecfd}.x4-nlg .x4-tab-default-right{background-image:url(images/tab/tab-default-top-bg.gif);background-position:0 top}.x4-nbr .x4-tab-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-tab-default-right-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x4-tab-default-right-tl{background-position:0 -8px}.x4-tab-default-right-tr{background-position:right -12px}.x4-tab-default-right-bl{background-position:0 -16px}.x4-tab-default-right-br{background-position:right -20px}.x4-tab-default-right-ml{background-position:0 top}.x4-tab-default-right-mr{background-position:right top}.x4-tab-default-right-tc{background-position:0 0}.x4-tab-default-right-bc{background-position:0 -4px}.x4-tab-default-right-tr,.x4-tab-default-right-br,.x4-tab-default-right-mr{padding-right:4px}.x4-tab-default-right-tl,.x4-tab-default-right-bl,.x4-tab-default-right-ml{padding-left:4px}.x4-tab-default-right-tc{height:4px}.x4-tab-default-right-bc{height:0}.x4-tab-default-right-tl,.x4-tab-default-right-bl,.x4-tab-default-right-tr,.x4-tab-default-right-br,.x4-tab-default-right-tc,.x4-tab-default-right-bc,.x4-tab-default-right-ml,.x4-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x4-tab-default-right-ml,.x4-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif)}.x4-tab-default-right-mc{padding:0 6px 3px 6px}.x4-strict .x4-ie7 .x4-tab-default-right-tl,.x4-strict .x4-ie7 .x4-tab-default-right-bl{position:relative;right:0}.x4-tab-default-right:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x4-tab-default{border-color:#8db3e3;margin:0 0 0 2px;cursor:pointer}.x4-tab-default .x4-tab-inner{font-size:11px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;color:#416da3;line-height:13px}.x4-tab-default .x4-tab-icon-el{width:16px;height:16px;line-height:16px;background-position:center center}.x4-tab-default .x4-tab-glyph{font-size:16px;color:#416da3;opacity:.5}.x4-ie8m .x4-tab-default .x4-tab-glyph{color:#8facd0}.x4-strict .x4-ie9 .x4-tab-bar-vertical .x4-tab-default{padding-left:0}.x4-strict .x4-ie9 .x4-tab-bar-vertical .x4-tab-default .x4-tab-button{padding-left:9px}.x4-strict .x4-ie9 .x4-tab-bar-vertical .x4-tab-default .x4-tab-icon-el{left:9px}.x4-tab-default-icon .x4-tab-inner{width:16px}.x4-rtl.x4-tab-default{margin:0 2px 0 0}.x4-rtl.x4-tab-default{margin:0 2px 0 0}.x4-tab-default-left{margin:0 2px 0 0}.x4-rtl.x4-tab-default-left{margin:0 0 0 2px}.x4-tab-default-top,.x4-tab-default-left,.x4-tab-default-right{border-bottom:1px solid #99bce8;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);-webkit-box-shadow:white 0 1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;-moz-box-shadow:white 0 1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;box-shadow:white 0 1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset}.x4-nlg .x4-tab-default-top,.x4-nlg .x4-tab-default-left,.x4-nlg .x4-tab-default-right{background-image:url(images/tab/tab-default-top-bg.gif)}.x4-tab-default-bottom{border-top:1px solid #99bce8;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);-webkit-box-shadow:white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;-moz-box-shadow:white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;box-shadow:white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset}.x4-nlg .x4-tab-default-bottom{background-image:url(images/tab/tab-default-bottom-bg.gif)}.x4-tab-default-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;transform:rotate(270deg);transform-origin:100% 0}.x4-ie9m .x4-tab-default-left{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.x4-rtl.x4-tab-default-left{-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;transform:rotate(90deg);transform-origin:0 0}.x4-ie9m .x4-rtl.x4-tab-default-left{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.x4-tab-default-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;transform:rotate(90deg);transform-origin:0 0}.x4-ie9m .x4-tab-default-right{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.x4-rtl.x4-tab-default-right{-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;transform:rotate(270deg);transform-origin:100% 0}.x4-ie9m .x4-rtl.x4-tab-default-right{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.x4-tab-default-icon-text-left .x4-tab-inner{padding-left:20px}.x4-rtl.x4-tab-default-icon-text-left .x4-tab-inner{padding-left:0;padding-right:20px}.x4-tab-default-over{background-color:#e8f2ff}.x4-tab-default-over .x4-tab-glyph{color:#416da3}.x4-ie8m .x4-tab-default-over .x4-tab-glyph{color:#94afd1}.x4-tab-default-top-over,.x4-tab-default-left-over,.x4-tab-default-right-over{background-image:none;background-color:#e8f2ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#d7e5fd),color-stop(25%,#e0edff),color-stop(45%,#e8f2ff));background-image:-webkit-linear-gradient(top,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:-moz-linear-gradient(top,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:-o-linear-gradient(top,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:linear-gradient(top,#d7e5fd,#e0edff 25%,#e8f2ff 45%)}.x4-nlg .x4-tab-default-top-over,.x4-nlg .x4-tab-default-left-over,.x4-nlg .x4-tab-default-right-over{background-image:url(images/tab/tab-default-top-over-bg.gif)}.x4-tab-default-bottom-over{background-image:none;background-color:#e8f2ff;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#d7e5fd),color-stop(25%,#e0edff),color-stop(45%,#e8f2ff));background-image:-webkit-linear-gradient(bottom,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:-moz-linear-gradient(bottom,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:-o-linear-gradient(bottom,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:linear-gradient(bottom,#d7e5fd,#e0edff 25%,#e8f2ff 45%)}.x4-nlg .x4-tab-default-bottom-over{background-image:url(images/tab/tab-default-bottom-over-bg.gif)}.x4-tab-default-active{background-color:#deecfd}.x4-tab-default-active .x4-tab-inner{color:#15498b}.x4-tab-default-active .x4-tab-glyph{color:#15498b}.x4-ie8m .x4-tab-default-active .x4-tab-glyph{color:#799ac4}.x4-tab-default-top-active,.x4-tab-default-left-active,.x4-tab-default-right-active{border-bottom:1px solid #deecfd;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(25%,#f5f9fe),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#fff,#f5f9fe 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#fff,#f5f9fe 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#fff,#f5f9fe 25%,#deecfd 45%);background-image:linear-gradient(top,#fff,#f5f9fe 25%,#deecfd 45%)}.x4-nlg .x4-tab-default-top-active,.x4-nlg .x4-tab-default-left-active,.x4-nlg .x4-tab-default-right-active{background-image:url(images/tab/tab-default-top-active-bg.gif)}.x4-tab-default-bottom-active{border-top:1px solid #deecfd;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#fff),color-stop(25%,#f5f9fe),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(bottom,#fff,#f5f9fe 25%,#deecfd 45%);background-image:-moz-linear-gradient(bottom,#fff,#f5f9fe 25%,#deecfd 45%);background-image:-o-linear-gradient(bottom,#fff,#f5f9fe 25%,#deecfd 45%);background-image:linear-gradient(bottom,#fff,#f5f9fe 25%,#deecfd 45%)}.x4-nlg .x4-tab-default-bottom-active{background-image:url(images/tab/tab-default-bottom-active-bg.gif)}.x4-tab-default-disabled{border-color:#bbd2ef;cursor:default}.x4-tab-default-disabled .x4-tab-inner{color:#c3b3b3}.x4-tab-default-disabled .x4-tab-icon-el{filter:alpha(opacity=50);opacity:.5}.x4-tab-default-disabled .x4-tab-glyph{color:#c3b3b3;opacity:.3;filter:none}.x4-ie8m .x4-tab-default-disabled .x4-tab-glyph{color:#d8dae4}.x4-tab-default-top-disabled,.x4-tab-default-left-disabled,.x4-tab-default-right-disabled{border-color:#bbd2ef #bbd2ef #99bce8}.x4-tab-default-bottom-disabled{border-color:#99bce8 #bbd2ef #bbd2ef #bbd2ef}.x4-tab-default-top-disabled,.x4-tab-default-left-disabled,.x4-tab-default-right-disabled{background-image:none;background-color:#e1ecfa;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e1ecfa),color-stop(100%,#ecf4fe));background-image:-webkit-linear-gradient(top,#e1ecfa,#ecf4fe);background-image:-moz-linear-gradient(top,#e1ecfa,#ecf4fe);background-image:-o-linear-gradient(top,#e1ecfa,#ecf4fe);background-image:linear-gradient(top,#e1ecfa,#ecf4fe)}.x4-nlg .x4-tab-default-top-disabled,.x4-nlg .x4-tab-default-left-disabled,.x4-nlg .x4-tab-default-right-disabled{background-image:url(images/tab/tab-default-top-disabled-bg.gif)}.x4-tab-default-bottom-disabled{background-image:none;background-color:#e1ecfa;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#e1ecfa),color-stop(100%,#ecf4fe));background-image:-webkit-linear-gradient(bottom,#e1ecfa,#ecf4fe);background-image:-moz-linear-gradient(bottom,#e1ecfa,#ecf4fe);background-image:-o-linear-gradient(bottom,#e1ecfa,#ecf4fe);background-image:linear-gradient(bottom,#e1ecfa,#ecf4fe)}.x4-nlg .x4-tab-default-bottom-disabled{background-image:url(images/tab/tab-default-bottom-disabled-bg.gif)}.x4-nbr .x4-tab-default{background-image:none}.x4-tab-default-top-over .x4-frame-tl,.x4-tab-default-top-over .x4-frame-bl,.x4-tab-default-top-over .x4-frame-tr,.x4-tab-default-top-over .x4-frame-br,.x4-tab-default-top-over .x4-frame-tc,.x4-tab-default-top-over .x4-frame-bc,.x4-tab-default-left-over .x4-frame-tl,.x4-tab-default-left-over .x4-frame-bl,.x4-tab-default-left-over .x4-frame-tr,.x4-tab-default-left-over .x4-frame-br,.x4-tab-default-left-over .x4-frame-tc,.x4-tab-default-left-over .x4-frame-bc,.x4-tab-default-right-over .x4-frame-tl,.x4-tab-default-right-over .x4-frame-bl,.x4-tab-default-right-over .x4-frame-tr,.x4-tab-default-right-over .x4-frame-br,.x4-tab-default-right-over .x4-frame-tc,.x4-tab-default-right-over .x4-frame-bc{background-image:url(images/tab/tab-default-top-over-corners.gif)}.x4-tab-default-top-over .x4-frame-ml,.x4-tab-default-top-over .x4-frame-mr,.x4-tab-default-left-over .x4-frame-ml,.x4-tab-default-left-over .x4-frame-mr,.x4-tab-default-right-over .x4-frame-ml,.x4-tab-default-right-over .x4-frame-mr{background-image:url(images/tab/tab-default-top-over-sides.gif)}.x4-tab-default-top-over .x4-frame-mc,.x4-tab-default-left-over .x4-frame-mc,.x4-tab-default-right-over .x4-frame-mc{background-color:#e8f2ff;background-repeat:repeat-x;background-image:url(images/tab/tab-default-top-over-fbg.gif)}.x4-tab-default-bottom-over .x4-frame-tl,.x4-tab-default-bottom-over .x4-frame-bl,.x4-tab-default-bottom-over .x4-frame-tr,.x4-tab-default-bottom-over .x4-frame-br,.x4-tab-default-bottom-over .x4-frame-tc,.x4-tab-default-bottom-over .x4-frame-bc{background-image:url(images/tab/tab-default-bottom-over-corners.gif)}.x4-tab-default-bottom-over .x4-frame-ml,.x4-tab-default-bottom-over .x4-frame-mr{background-image:url(images/tab/tab-default-bottom-over-sides.gif)}.x4-tab-default-bottom-over .x4-frame-mc{background-color:#e8f2ff;background-repeat:repeat-x;background-image:url(images/tab/tab-default-bottom-over-fbg.gif)}.x4-tab-default-top-active .x4-frame-tl,.x4-tab-default-top-active .x4-frame-bl,.x4-tab-default-top-active .x4-frame-tr,.x4-tab-default-top-active .x4-frame-br,.x4-tab-default-top-active .x4-frame-tc,.x4-tab-default-top-active .x4-frame-bc,.x4-tab-default-left-active .x4-frame-tl,.x4-tab-default-left-active .x4-frame-bl,.x4-tab-default-left-active .x4-frame-tr,.x4-tab-default-left-active .x4-frame-br,.x4-tab-default-left-active .x4-frame-tc,.x4-tab-default-left-active .x4-frame-bc,.x4-tab-default-right-active .x4-frame-tl,.x4-tab-default-right-active .x4-frame-bl,.x4-tab-default-right-active .x4-frame-tr,.x4-tab-default-right-active .x4-frame-br,.x4-tab-default-right-active .x4-frame-tc,.x4-tab-default-right-active .x4-frame-bc{background-image:url(images/tab/tab-default-top-active-corners.gif)}.x4-tab-default-top-active .x4-frame-ml,.x4-tab-default-top-active .x4-frame-mr,.x4-tab-default-left-active .x4-frame-ml,.x4-tab-default-left-active .x4-frame-mr,.x4-tab-default-right-active .x4-frame-ml,.x4-tab-default-right-active .x4-frame-mr{background-image:url(images/tab/tab-default-top-active-sides.gif)}.x4-tab-default-top-active .x4-frame-mc,.x4-tab-default-left-active .x4-frame-mc,.x4-tab-default-right-active .x4-frame-mc{background-color:#deecfd;background-repeat:repeat-x;background-image:url(images/tab/tab-default-top-active-fbg.gif)}.x4-tab-default-bottom-active .x4-frame-tl,.x4-tab-default-bottom-active .x4-frame-bl,.x4-tab-default-bottom-active .x4-frame-tr,.x4-tab-default-bottom-active .x4-frame-br,.x4-tab-default-bottom-active .x4-frame-tc,.x4-tab-default-bottom-active .x4-frame-bc{background-image:url(images/tab/tab-default-bottom-active-corners.gif)}.x4-tab-default-bottom-active .x4-frame-ml,.x4-tab-default-bottom-active .x4-frame-mr{background-image:url(images/tab/tab-default-bottom-active-sides.gif)}.x4-tab-default-bottom-active .x4-frame-mc{background-color:#deecfd;background-repeat:repeat-x;background-image:url(images/tab/tab-default-bottom-active-fbg.gif)}.x4-tab-default-top-disabled .x4-frame-tl,.x4-tab-default-top-disabled .x4-frame-bl,.x4-tab-default-top-disabled .x4-frame-tr,.x4-tab-default-top-disabled .x4-frame-br,.x4-tab-default-top-disabled .x4-frame-tc,.x4-tab-default-top-disabled .x4-frame-bc,.x4-tab-default-left-disabled .x4-frame-tl,.x4-tab-default-left-disabled .x4-frame-bl,.x4-tab-default-left-disabled .x4-frame-tr,.x4-tab-default-left-disabled .x4-frame-br,.x4-tab-default-left-disabled .x4-frame-tc,.x4-tab-default-left-disabled .x4-frame-bc,.x4-tab-default-right-disabled .x4-frame-tl,.x4-tab-default-right-disabled .x4-frame-bl,.x4-tab-default-right-disabled .x4-frame-tr,.x4-tab-default-right-disabled .x4-frame-br,.x4-tab-default-right-disabled .x4-frame-tc,.x4-tab-default-right-disabled .x4-frame-bc{background-image:url(images/tab/tab-default-top-disabled-corners.gif)}.x4-tab-default-top-disabled .x4-frame-ml,.x4-tab-default-top-disabled .x4-frame-mr,.x4-tab-default-left-disabled .x4-frame-ml,.x4-tab-default-left-disabled .x4-frame-mr,.x4-tab-default-right-disabled .x4-frame-ml,.x4-tab-default-right-disabled .x4-frame-mr{background-image:url(images/tab/tab-default-top-disabled-sides.gif)}.x4-tab-default-top-disabled .x4-frame-mc,.x4-tab-default-left-disabled .x4-frame-mc,.x4-tab-default-right-disabled .x4-frame-mc{background-color:#e1ecfa;background-repeat:repeat-x;background-image:url(images/tab/tab-default-top-disabled-fbg.gif)}.x4-tab-default-bottom-disabled .x4-frame-tl,.x4-tab-default-bottom-disabled .x4-frame-bl,.x4-tab-default-bottom-disabled .x4-frame-tr,.x4-tab-default-bottom-disabled .x4-frame-br,.x4-tab-default-bottom-disabled .x4-frame-tc,.x4-tab-default-bottom-disabled .x4-frame-bc{background-image:url(images/tab/tab-default-bottom-disabled-corners.gif)}.x4-tab-default-bottom-disabled .x4-frame-ml,.x4-tab-default-bottom-disabled .x4-frame-mr{background-image:url(images/tab/tab-default-bottom-disabled-sides.gif)}.x4-tab-default-bottom-disabled .x4-frame-mc{background-color:#e1ecfa;background-repeat:repeat-x;background-image:url(images/tab/tab-default-bottom-disabled-fbg.gif)}.x4-nbr .x4-tab-default-top,.x4-nbr .x4-tab-default-left,.x4-nbr .x4-tab-default-right{border-bottom-width:1px!important}.x4-nbr .x4-tab-default-bottom{border-top-width:1px!important}.x4-tab-default .x4-tab-close-btn{width:11px;height:11px;background-image:url(images/tab/tab-default-close.gif);filter:alpha(opacity=60);opacity:.6}.x4-tab-default .x4-tab-close-btn-over{filter:alpha(opacity=100);opacity:1}.x4-tab-default .x4-tab-close-btn{top:2px;right:2px}.x4-rtl.x4-tab-default .x4-tab-close-btn{right:auto;left:2px}.x4-tab-default-disabled .x4-tab-close-btn{filter:alpha(opacity=30);opacity:.3}.x4-tab-default-closable .x4-tab-wrap{padding-right:14px}.x4-rtl.x4-tab-default-closable .x4-tab-wrap{padding-right:0;padding-left:14px}.x4-tab-default-top-over:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-top-over-bg.gif), corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif), frame-bg:url(images/tab/tab-default-top-over-fbg.gif)"}.x4-tab-default-bottom-over:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-bottom-over-bg.gif), corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif), frame-bg:url(images/tab/tab-default-bottom-over-fbg.gif)"}.x4-tab-default-top-active:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-top-active-bg.gif), corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif), frame-bg:url(images/tab/tab-default-top-active-fbg.gif)"}.x4-tab-default-bottom-active:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-bottom-active-bg.gif), corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif), frame-bg:url(images/tab/tab-default-bottom-active-fbg.gif)"}.x4-tab-default-top-disabled:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-top-disabled-bg.gif), corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif), frame-bg:url(images/tab/tab-default-top-disabled-fbg.gif)"}.x4-tab-default-bottom-disabled:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-bottom-disabled-bg.gif), corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif), frame-bg:url(images/tab/tab-default-bottom-disabled-fbg.gif)"}.x4-tab-bar-default{border-style:solid;border-color:#99bce8}.x4-tab-bar-default-top{padding:1px 0 0;border-width:1px 1px 0}.x4-tab-bar-default-bottom{padding:0 0 1px 0;border-width:0 1px 1px 1px}.x4-tab-bar-default-left{padding:0 0 0 1px;border-width:1px 0 1px 1px}.x4-rtl.x4-tab-bar-default-left{padding:0 1px 0 0;border-width:1px 1px 1px 0}.x4-tab-bar-default-right{padding:0 1px 0 0;border-width:1px 1px 1px 0}.x4-rtl.x4-tab-bar-default-right{padding:0 0 0 1px;border-width:1px 0 1px 1px}.x4-tab-bar-default-horizontal{height:25px}.x4-content-box .x4-tab-bar-default-horizontal{height:23px}.x4-tab-bar-default-vertical{width:25px}.x4-content-box .x4-tab-bar-default-vertical{width:23px}.x4-tab-bar-body-default-top{padding-bottom:2px}.x4-tab-bar-body-default-bottom{padding-top:2px}.x4-tab-bar-body-default-left{padding-right:2px}.x4-rtl.x4-tab-bar-body-default-left{padding-right:0;padding-left:2px}.x4-tab-bar-body-default-right{padding-left:2px}.x4-rtl.x4-tab-bar-body-default-right{padding-left:0;padding-right:2px}.x4-tab-bar-strip-default{border-style:solid;border-color:#99bce8;background-color:#deecfd}.x4-content-box .x4-tab-bar-strip-default-horizontal{height:2px}.x4-content-box .x4-tab-bar-strip-default-vertical{width:2px}.x4-tab-bar-strip-default-top{border-width:1px 0 0 0;height:3px}.x4-tab-bar-plain .x4-tab-bar-strip-default-top{border-width:1px 1px 0}.x4-tab-bar-strip-default-bottom{border-width:0 0 1px 0;height:3px}.x4-tab-bar-plain .x4-tab-bar-strip-default-bottom{border-width:0 1px 1px 1px}.x4-tab-bar-strip-default-left{border-width:0 0 0 1px;width:3px}.x4-tab-bar-plain .x4-tab-bar-strip-default-left{border-width:1px 0 1px 1px}.x4-rtl.x4-tab-bar-strip-default-left{border-width:0 1px 0 0}.x4-tab-bar-plain .x4-rtl.x4-tab-bar-strip-default-left{border-width:1px 1px 1px 0}.x4-tab-bar-strip-default-right{border-width:0 1px 0 0;width:3px}.x4-tab-bar-plain .x4-tab-bar-strip-default-right{border-width:1px 1px 1px 0}.x4-rtl.x4-tab-bar-strip-default-right{border-width:0 0 0 1px}.x4-tab-bar-plain .x4-rtl.x4-tab-bar-strip-default-right{border-width:1px 0 1px 1px}.x4-tab-bar-default{background-color:#cbdbef}.x4-tab-bar-default-top{background-image:none;background-color:#cbdbef;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dde8f5),color-stop(100%,#cbdbef));background-image:-webkit-linear-gradient(top,#dde8f5,#cbdbef);background-image:-moz-linear-gradient(top,#dde8f5,#cbdbef);background-image:-o-linear-gradient(top,#dde8f5,#cbdbef);background-image:linear-gradient(top,#dde8f5,#cbdbef)}.x4-nlg .x4-tab-bar-default-top{background:url(images/tab-bar/tab-bar-default-top-bg.gif)}.x4-tab-bar-default-bottom{background-image:none;background-color:#cbdbef;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#dde8f5),color-stop(100%,#cbdbef));background-image:-webkit-linear-gradient(bottom,#dde8f5,#cbdbef);background-image:-moz-linear-gradient(bottom,#dde8f5,#cbdbef);background-image:-o-linear-gradient(bottom,#dde8f5,#cbdbef);background-image:linear-gradient(bottom,#dde8f5,#cbdbef)}.x4-nlg .x4-tab-bar-default-bottom{background:url(images/tab-bar/tab-bar-default-bottom-bg.gif) bottom 0}.x4-tab-bar-default-left{background-image:none;background-color:#cbdbef;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dde8f5),color-stop(100%,#cbdbef));background-image:-webkit-linear-gradient(left,#dde8f5,#cbdbef);background-image:-moz-linear-gradient(left,#dde8f5,#cbdbef);background-image:-o-linear-gradient(left,#dde8f5,#cbdbef);background-image:linear-gradient(left,#dde8f5,#cbdbef)}.x4-nlg .x4-tab-bar-default-left{background:url(images/tab-bar/tab-bar-default-left-bg.gif)}.x4-tab-bar-default-right{background-image:none;background-color:#cbdbef;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dde8f5),color-stop(100%,#cbdbef));background-image:-webkit-linear-gradient(right,#dde8f5,#cbdbef);background-image:-moz-linear-gradient(right,#dde8f5,#cbdbef);background-image:-o-linear-gradient(right,#dde8f5,#cbdbef);background-image:linear-gradient(right,#dde8f5,#cbdbef)}.x4-nlg .x4-tab-bar-default-right{background:url(images/tab-bar/tab-bar-default-right-bg.gif) 0 right}.x4-tab-bar-default .x4-box-scroller{cursor:pointer}.x4-tab-bar-default .x4-tabbar-scroll-left,.x4-tab-bar-default .x4-tabbar-scroll-right{height:20px;width:18px}.x4-tab-bar-default .x4-tabbar-scroll-top,.x4-tab-bar-default .x4-tabbar-scroll-bottom{width:20px;height:18px}.x4-tab-bar-default-bottom .x4-box-scroller{margin-top:1px}.x4-tab-bar-default-right .x4-box-scroller{margin-left:1px}.x4-rtl.x4-tab-bar-default-right .x4-box-scroller{margin-left:0;margin-right:1px}.x4-tab-bar-default-top .x4-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-left-top.gif)}.x4-tab-bar-default-top .x4-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-right-top.gif)}.x4-rtl.x4-tab-bar-default-top .x4-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-right-top.gif)}.x4-rtl.x4-tab-bar-default-top .x4-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-left-top.gif)}.x4-tab-bar-default-bottom .x4-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-left-bottom.gif)}.x4-tab-bar-default-bottom .x4-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-right-bottom.gif)}.x4-rtl.x4-tab-bar-default-bottom .x4-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-right-bottom.gif)}.x4-rtl.x4-tab-bar-default-bottom .x4-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-left-bottom.gif)}.x4-tab-bar-default-left .x4-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-left.gif)}.x4-tab-bar-default-left .x4-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-left.gif)}.x4-rtl.x4-tab-bar-default-left .x4-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-right.gif)}.x4-rtl.x4-tab-bar-default-left .x4-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-right.gif)}.x4-tab-bar-default-right .x4-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-right.gif)}.x4-tab-bar-default-right .x4-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-right.gif)}.x4-rtl.x4-tab-bar-default-right .x4-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-left.gif)}.x4-rtl.x4-tab-bar-default-right .x4-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-left.gif)}.x4-tab-bar-default .x4-tabbar-scroll-left-hover,.x4-tab-bar-default .x4-tabbar-scroll-right-hover{background-position:-18px 0}.x4-tab-bar-default .x4-tabbar-scroll-top-hover,.x4-tab-bar-default .x4-tabbar-scroll-bottom-hover{background-position:0 -18px}.x4-tab-bar-default .x4-box-scroller-disabled{filter:alpha(opacity=50);opacity:.5;cursor:default}.x4-tab-bar-default-top:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-top-bg.gif), stretch:bottom"}.x4-tab-bar-default-bottom:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-bottom-bg.gif), stretch:top"}.x4-tab-bar-default-left:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-left-bg.gif), stretch:right"}.x4-tab-bar-default-right:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-right-bg.gif), stretch:left"}.x4-tab-bar-plain{border-width:0;padding:0;height:23px}.x4-column-header-checkbox{border-color:#c5c5c5}.x4-grid-row-checker,.x4-column-header-checkbox .x4-column-header-text{height:13px;width:13px;background-image:url(images/form/checkbox.gif);line-height:13px}.x4-column-header-checkbox .x4-column-header-inner{padding:5px 5px 4px 5px}.x4-grid-cell-row-checker .x4-grid-cell-inner{padding:4px 5px 3px 5px}.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-row-checker .x4-grid-cell-inner{padding-top:3px;padding-bottom:2px}.x4-grid-hd-checker-on .x4-column-header-text,.x4-grid-row-selected .x4-grid-row-checker,.x4-grid-row-checked .x4-grid-row-checker{background-position:0 -13px}.x4-tree-expander{cursor:pointer}.x4-tree-arrows .x4-tree-expander{background-image:url(images/tree/arrows.gif)}.x4-tree-arrows .x4-tree-expander-over .x4-tree-expander{background-position:-32px center}.x4-tree-arrows .x4-grid-tree-node-expanded .x4-tree-expander{background-position:-16px center}.x4-tree-arrows .x4-grid-tree-node-expanded .x4-tree-expander-over .x4-tree-expander{background-position:-48px center}.x4-tree-arrows .x4-rtl.x4-tree-expander{background:url(images/tree/arrows-rtl.gif) no-repeat -48px center}.x4-tree-arrows .x4-tree-expander-over .x4-rtl.x4-tree-expander{background-position:-16px center}.x4-tree-arrows .x4-grid-tree-node-expanded .x4-rtl.x4-tree-expander{background-position:-32px center}.x4-tree-arrows .x4-grid-tree-node-expanded .x4-tree-expander-over .x4-rtl.x4-tree-expander{background-position:0 center}.x4-tree-lines .x4-tree-elbow{background-image:url(images/tree/elbow.gif)}.x4-tree-lines .x4-tree-elbow-end{background-image:url(images/tree/elbow-end.gif)}.x4-tree-lines .x4-tree-elbow-plus{background-image:url(images/tree/elbow-plus.gif)}.x4-tree-lines .x4-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-plus.gif)}.x4-tree-lines .x4-grid-tree-node-expanded .x4-tree-elbow-plus{background-image:url(images/tree/elbow-minus.gif)}.x4-tree-lines .x4-grid-tree-node-expanded .x4-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-minus.gif)}.x4-tree-lines .x4-tree-elbow-line{background-image:url(images/tree/elbow-line.gif)}.x4-tree-lines .x4-rtl.x4-tree-elbow{background-image:url(images/tree/elbow-rtl.gif)}.x4-tree-lines .x4-rtl.x4-tree-elbow-end{background-image:url(images/tree/elbow-end-rtl.gif)}.x4-tree-lines .x4-rtl.x4-tree-elbow-plus{background-image:url(images/tree/elbow-plus-rtl.gif)}.x4-tree-lines .x4-rtl.x4-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-plus-rtl.gif)}.x4-tree-lines .x4-grid-tree-node-expanded .x4-rtl.x4-tree-elbow-plus{background-image:url(images/tree/elbow-minus-rtl.gif)}.x4-tree-lines .x4-grid-tree-node-expanded .x4-rtl.x4-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-minus-rtl.gif)}.x4-tree-lines .x4-rtl.x4-tree-elbow-line{background-image:url(images/tree/elbow-line-rtl.gif)}.x4-tree-no-row-lines .x4-tree-expander{background-image:url(images/tree/elbow-plus-nl.gif)}.x4-tree-no-row-lines .x4-grid-tree-node-expanded .x4-tree-expander{background-image:url(images/tree/elbow-minus-nl.gif)}.x4-tree-no-row-lines .x4-rtl.x4-tree-expander{background-image:url(images/tree/elbow-plus-nl-rtl.gif)}.x4-tree-no-row-lines .x4-grid-tree-node-expanded .x4-rtl.x4-tree-expander{background-image:url(images/tree/elbow-minus-nl-rtl.gif)}.x4-tree-icon{width:16px;height:20px}.x4-tree-elbow-img{width:16px;height:20px;margin-right:0}.x4-rtl.x4-tree-elbow-img{margin-right:0;margin-left:0}.x4-tree-icon,.x4-tree-elbow-img,.x4-tree-checkbox{margin-top:-3px;margin-bottom:-4px}.x4-tree-icon-leaf{background-image:url(images/tree/leaf.gif)}.x4-rtl.x4-tree-icon-leaf{background-image:url(images/tree/leaf-rtl.gif)}.x4-tree-icon-parent{background-image:url(images/tree/folder.gif)}.x4-rtl.x4-tree-icon-parent{background-image:url(images/tree/folder-rtl.gif)}.x4-grid-tree-node-expanded .x4-tree-icon-parent{background-image:url(images/tree/folder-open.gif)}.x4-grid-tree-node-expanded .x4-rtl.x4-tree-icon-parent{background-image:url(images/tree/folder-open-rtl.gif)}.x4-tree-checkbox{margin-right:3px;top:4px;width:13px;height:13px;background-image:url(images/form/checkbox.gif)}.x4-rtl.x4-tree-checkbox{margin-right:0;margin-left:3px}.x4-tree-checkbox-checked{background-position:0 -13px}.x4-grid-tree-loading .x4-tree-icon{background-image:url(images/tree/loading.gif)}.x4-grid-tree-loading .x4-rtl.x4-tree-icon{background-image:url(images/tree/loading.gif)}.x4-grid-cell-inner-treecolumn{font-size:1px;line-height:0}.x4-tree-node-text{font-size:11px;line-height:13px;padding-left:3px}.x4-rtl.x4-tree-node-text{padding-left:0;padding-right:3px}.x4-grid-cell-inner-treecolumn{padding:3px 6px 4px 0}.x4-tree-drop-ok-append .x4-dd-drop-icon{background-image:url(images/tree/drop-append.gif)}.x4-tree-drop-ok-above .x4-dd-drop-icon{background-image:url(images/tree/drop-above.gif)}.x4-tree-drop-ok-below .x4-dd-drop-icon{background-image:url(images/tree/drop-below.gif)}.x4-tree-drop-ok-between .x4-dd-drop-icon{background-image:url(images/tree/drop-between.gif)}.x4-tree-ddindicator{height:1px;border-width:1px 0 0;border-style:dotted;border-color:green}.x4-box-tl{background:transparent no-repeat 0 0;zoom:1}.x4-box-tc{height:8px;background:transparent repeat-x 0 0;overflow:hidden}.x4-box-tr{background:transparent no-repeat right -8px}.x4-box-ml{background:transparent repeat-y 0;padding-left:4px;overflow:hidden;zoom:1}.x4-box-mc{background:repeat-x 0 -16px;padding:4px 10px}.x4-box-mc h3{margin:0 0 4px 0;zoom:1}.x4-box-mr{background:transparent repeat-y right;padding-right:4px;overflow:hidden}.x4-box-bl{background:transparent no-repeat 0 -16px;zoom:1}.x4-box-bc{background:transparent repeat-x 0 -8px;height:8px;overflow:hidden}.x4-box-br{background:transparent no-repeat right -24px}.x4-box-tl,.x4-box-bl{padding-left:8px;overflow:hidden}.x4-box-tr,.x4-box-br{padding-right:8px;overflow:hidden}.x4-box-tl{background-image:url(images/box/corners.gif)}.x4-box-tc{background-image:url(images/box/tb.gif)}.x4-box-tr{background-image:url(images/box/corners.gif)}.x4-box-ml{background-image:url(images/box/l.gif)}.x4-box-mc{background-color:#eee;background-image:url(images/box/tb.gif);font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:15px}.x4-box-mc h3{font-size:18px;font-weight:bold}.x4-box-mr{background-image:url(images/box/r.gif)}.x4-box-bl{background-image:url(images/box/corners.gif)}.x4-box-bc{background-image:url(images/box/tb.gif)}.x4-box-br{background-image:url(images/box/corners.gif)}.x4-box-blue .x4-box-bl,.x4-box-blue .x4-box-br,.x4-box-blue .x4-box-tl,.x4-box-blue .x4-box-tr{background-image:url(images/box/corners-blue.gif)}.x4-box-blue .x4-box-bc,.x4-box-blue .x4-box-mc,.x4-box-blue .x4-box-tc{background-image:url(images/box/tb-blue.gif)}.x4-box-blue .x4-box-mc{background-color:#c3daf9}.x4-box-blue .x4-box-mc h3{color:#17385b}.x4-box-blue .x4-box-ml{background-image:url(images/box/l-blue.gif)}.x4-box-blue .x4-box-mr{background-image:url(images/box/r-blue.gif)}.x4-rtl.x4-toolbar-more-icon{background-image:url(images/toolbar/more-left.gif)!important}.x4-message-box .x4-msg-box-wait{background-image:url(images/shared/blue-loading.gif)}.x4-form-trigger{height:22px}.x4-content-box .x4-form-trigger{height:21px}.x4-field-toolbar .x4-form-trigger{height:20px}.x4-content-box .x4-field-toolbar .x4-form-trigger{height:19px}.x4-content-box div.x4-form-spinner-up,.x4-content-box div.x4-form-spinner-down{height:10px}.x4-content-box .x4-toolbar-item div.x4-form-spinner-up,.x4-content-box .x4-toolbar-item div.x4-form-spinner-down{height:9px}.x4-html-editor-wrap .x4-toolbar{border-left-color:#b5b8c8;border-top-color:#b5b8c8;border-right-color:#b5b8c8}.x4-html-editor-input{border:1px solid #b5b8c8;border-top-width:0}.x4-column-header-trigger{background-color:#c5c5c5;background-image:url(images/grid/grid3-hd-btn.gif)}.x4-rtl.x4-column-header-trigger{background-image:url(images/grid/grid3-hd-btn-left.gif)}.x4-content-box .x4-grid-editor .x4-form-trigger{height:19px}.x4-grid-editor .x4-form-spinner-up,.x4-grid-editor .x4-form-spinner-down{background-image:url(images/form/spinner-small.gif)}.x4-content-box .x4-grid-editor .x4-form-spinner-up,.x4-content-box .x4-grid-editor .x4-form-spinner-down{height:9px}.x4-grid-editor .x4-rtl.x4-form-trigger-wrap .x4-form-spinner-up,.x4-grid-editor .x4-rtl.x4-form-trigger-wrap .x4-form-spinner-down{background-image:url(images/form/spinner-small-rtl.gif)}.x4-accordion-hd{border-width:1px 0!important;-webkit-box-shadow:inset 0 0 0 0 #d9e7f8;-moz-box-shadow:inset 0 0 0 0 #d9e7f8;box-shadow:inset 0 0 0 0 #d9e7f8}.x4-accordion-hd-sibling-expanded{-webkit-box-shadow:inset 0 1px 0 0 #f3f7fb;-moz-box-shadow:inset 0 1px 0 0 #f3f7fb;box-shadow:inset 0 1px 0 0 #f3f7fb}.x4-resizable-over .x4-resizable-handle-east,.x4-resizable-over .x4-resizable-handle-west,.x4-resizable-pinned .x4-resizable-handle-east,.x4-resizable-pinned .x4-resizable-handle-west{background-position:left}.x4-resizable-over .x4-resizable-handle-south,.x4-resizable-over .x4-resizable-handle-north,.x4-resizable-pinned .x4-resizable-handle-south,.x4-resizable-pinned .x4-resizable-handle-north{background-position:top}.x4-resizable-over .x4-resizable-handle-southeast,.x4-resizable-pinned .x4-resizable-handle-southeast{background-position:top left}.x4-resizable-over .x4-resizable-handle-northwest,.x4-resizable-pinned .x4-resizable-handle-northwest{background-position:bottom right}.x4-resizable-over .x4-resizable-handle-northeast,.x4-resizable-pinned .x4-resizable-handle-northeast{background-position:bottom left}.x4-resizable-over .x4-resizable-handle-southwest,.x4-resizable-pinned .x4-resizable-handle-southwest{background-position:top right}.x4-ie6 .x4-slider-horz,.x4-ie6 .x4-slider-horz .x4-slider-end,.x4-ie6 .x4-slider-horz .x4-slider-inner{background-image:url(images/slider/slider-bg.gif)}.x4-ie6 .x4-slider-horz .x4-slider-thumb{background-image:url(images/slider/slider-thumb.gif)}.x4-ie6 .x4-slider-vert,.x4-ie6 .x4-slider-vert .x4-slider-end,.x4-ie6 .x4-slider-vert .x4-slider-inner{background-image:url(images/slider/slider-v-bg.gif)}.x4-ie6 .x4-slider-vert .x4-slider-thumb{background-image:url(images/slider/slider-v-thumb.gif)}.x4-tab-icon-el{top:-1px}.x4-tab-noicon .x4-tab-icon{display:none} \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/ext-theme-classic-sandbox-all.css b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/ext-theme-classic-sandbox-all.css new file mode 100644 index 0000000..18b82be --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/ext-theme-classic-sandbox-all.css @@ -0,0 +1 @@ +.x4-body{margin:0}img{border:0}.x4-border-box,.x4-border-box *{box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box}.x4-rtl{direction:rtl}.x4-ltr{direction:ltr}.x4-clear{overflow:hidden;clear:both;font-size:0;line-height:0;display:table}.x4-strict .x4-ie7 .x4-clear{height:0;width:0}.x4-layer{position:absolute!important;overflow:hidden;zoom:1}.x4-fixed-layer{position:fixed!important;overflow:hidden;zoom:1}.x4-shim{position:absolute;left:0;top:0;overflow:hidden;filter:alpha(opacity=0);opacity:0}.x4-hide-display{display:none!important}.x4-hide-visibility{visibility:hidden!important}.x4-ie6 .x4-item-disabled{filter:none}.x4-hidden,.x4-hide-offsets{display:block!important;visibility:hidden!important;position:absolute!important;top:-10000px!important}.x4-hide-nosize{height:0!important;width:0!important}.x4-hide-clip{position:absolute!important;clip:rect(0,0,0,0);clip:rect(0 0 0 0)}.x4-masked-relative{position:relative}.x4-ie-shadow{background-color:#777;display:none;position:absolute;overflow:hidden;zoom:1}.x4-unselectable{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x4-selectable{cursor:auto;-moz-user-select:text;-webkit-user-select:text;-ms-user-select:text;user-select:text;-o-user-select:text}.x4-list-plain{list-style-type:none;margin:0;padding:0}.x4-table-plain{border-collapse:collapse;border-spacing:0;font-size:1em}.x4-frame-tl,.x4-frame-tr,.x4-frame-tc,.x4-frame-bl,.x4-frame-br,.x4-frame-bc{overflow:hidden;background-repeat:no-repeat}.x4-frame-tc,.x4-frame-bc{background-repeat:repeat-x}.x4-frame-mc{background-repeat:repeat-x;overflow:hidden}.x4-proxy-el{position:absolute;background:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x4-css-shadow{position:absolute;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px}.x4-item-disabled,.x4-item-disabled *{cursor:default}.x4-box-item{position:absolute!important;left:0;top:0}div.x4-editor{overflow:visible}.x4-mask{z-index:100;position:absolute;width:100%;height:100%;zoom:1}.x4-mask-shim{z-index:100;position:absolute;top:0;left:0;width:100%;height:100%}.x4-mask-msg{z-index:20001;position:absolute}.x4-progress{position:relative;border-style:solid;overflow:hidden}.x4-progress-bar{overflow:hidden;position:absolute;width:0;height:100%}.x4-progress-text{overflow:hidden;position:absolute}.x4-btn{display:inline-block;position:relative;zoom:1;*display:inline;outline:0;cursor:pointer;white-space:nowrap;vertical-align:middle;text-decoration:none}.x4-btn-wrap{position:relative;display:block}.x4-btn-button{position:relative;display:block;text-decoration:none;overflow:hidden;zoom:1}.x4-btn-inner{display:block;white-space:nowrap;overflow:hidden;zoom:1}.x4-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x4-btn-inner-center{text-align:center}.x4-btn-inner-left{text-align:left}.x4-btn-inner-right{text-align:right}.x4-box-layout-ct{overflow:hidden;zoom:1}.x4-box-target{position:absolute;width:20000px;top:0;left:0;height:1px}.x4-box-inner{overflow:hidden;zoom:1;position:relative;left:0;top:0}.x4-horizontal-box-overflow-body{float:left}.x4-box-scroller{position:relative;background-repeat:no-repeat}.x4-box-scroller-left,.x4-box-scroller-right{float:left;height:100%;z-index:5}.x4-box-scroller-top .x4-box-scroller,.x4-box-scroller-bottom .x4-box-scroller{line-height:0;font-size:0;background-position:center 0}.x4-box-menu-after{float:right}.x4-toolbar-text{white-space:nowrap}.x4-toolbar-separator{display:block;font-size:1px;overflow:hidden;cursor:default;border:0;width:0;height:0;line-height:0}.x4-quirks .x4-ie .x4-toolbar .x4-toolbar-separator-horizontal{width:2px}.x4-toolbar-scroller{padding-left:0}.x4-toolbar-plain{border:0}.x4-docked{position:absolute!important;z-index:1}.x4-docked-vertical{position:static}.x4-docked-top{border-bottom-width:0!important}.x4-docked-bottom{border-top-width:0!important}.x4-docked-left{border-right-width:0!important}.x4-docked-right{border-left-width:0!important}.x4-docked-noborder-top{border-top-width:0!important}.x4-docked-noborder-right{border-right-width:0!important}.x4-docked-noborder-bottom{border-bottom-width:0!important}.x4-docked-noborder-left{border-left-width:0!important}.x4-noborder-l{border-left-width:0!important}.x4-noborder-b{border-bottom-width:0!important}.x4-noborder-bl{border-bottom-width:0!important;border-left-width:0!important}.x4-noborder-r{border-right-width:0!important}.x4-noborder-rl{border-right-width:0!important;border-left-width:0!important}.x4-noborder-rb{border-right-width:0!important;border-bottom-width:0!important}.x4-noborder-rbl{border-right-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x4-noborder-t{border-top-width:0!important}.x4-noborder-tl{border-top-width:0!important;border-left-width:0!important}.x4-noborder-tb{border-top-width:0!important;border-bottom-width:0!important}.x4-noborder-tbl{border-top-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x4-noborder-tr{border-top-width:0!important;border-right-width:0!important}.x4-noborder-trl{border-top-width:0!important;border-right-width:0!important;border-left-width:0!important}.x4-noborder-trb{border-top-width:0!important;border-right-width:0!important;border-bottom-width:0!important}.x4-noborder-trbl{border-width:0!important}.x4-header-icon{background-repeat:no-repeat;background-position:0 0;vertical-align:middle;text-align:center}.x4-header-text-container{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.x4-dd-drag-proxy,.x4-dd-drag-current{z-index:1000000!important;pointer-events:none}.x4-dd-drag-repair .x4-dd-drag-ghost{filter:alpha(opacity=60);opacity:.6}.x4-dd-drag-repair .x4-dd-drop-icon{display:none}.x4-dd-drag-ghost{filter:alpha(opacity=85);opacity:.85;padding:5px;padding-left:20px;white-space:nowrap;color:#000;font:normal 11px tahoma,arial,verdana,sans-serif;border:1px solid;border-color:#ddd #bbb #bbb #ddd;background-color:#fff}.x4-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}.x4-dd-drop-ok .x4-dd-drop-icon{background-image:url(images/dd/drop-yes.gif)}.x4-dd-drop-ok-add .x4-dd-drop-icon{background-image:url(images/dd/drop-add.gif)}.x4-dd-drop-nodrop div.x4-dd-drop-icon{background-image:url(images/dd/drop-no.gif)}.x4-panel,.x4-plain{overflow:hidden;position:relative}.x4-panel{outline:0}.x4-ie .x4-panel-header,.x4-ie .x4-panel-header-tl,.x4-ie .x4-panel-header-tc,.x4-ie .x4-panel-header-tr,.x4-ie .x4-panel-header-ml,.x4-ie .x4-panel-header-mc,.x4-ie .x4-panel-header-mr,.x4-ie .x4-panel-header-bl,.x4-ie .x4-panel-header-bc,.x4-ie .x4-panel-header-br{zoom:1}.x4-ie8 td.x4-frame-mc{vertical-align:top}.x4-panel-body{overflow:hidden;position:relative}.x4-nlg .x4-panel-header-vertical .x4-frame-mc{background-repeat:repeat-y}.x4-panel-header-plain,.x4-panel-body-plain{border:0;padding:0}.x4-tip{position:absolute;overflow:visible}.x4-tip-body{overflow:hidden;position:relative}.x4-tip-anchor{position:absolute;overflow:hidden;border-style:solid}.x4-table-layout{font-size:1em}.x4-btn-group{position:relative;overflow:hidden}.x4-btn-group-body{position:relative;zoom:1}.x4-btn-group-body .x4-table-layout-cell{vertical-align:top}.x4-viewport,.x4-viewport body{margin:0;padding:0;border:0 none;overflow:hidden;height:100%;position:static}.x4-window{outline:0;overflow:hidden}.x4-window .x4-window-wrap{position:relative}.x4-window-body{position:relative;overflow:hidden}.x4-window-body-plain{background:transparent}.x4-form-item-label{display:block}.x4-form-item-label-right{text-align:right}.x4-form-item-label-top{display:block;zoom:1}.x4-form-invalid-icon{overflow:hidden}.x4-form-invalid-icon ul{display:none}.x4-form-textarea{overflow:auto;resize:none}.x4-safari.x4-mac .x4-form-textarea{margin-bottom:-2px}.x4-form-display-field-body{vertical-align:top}.x4-form-cb-wrap{vertical-align:top}.x4-form-cb{vertical-align:top;overflow:hidden;padding:0;border:0}.x4-form-cb::-moz-focus-inner{padding:0;border:0}.x4-form-cb-label{display:inline-block;zoom:1}.x4-fieldset{display:block;position:relative}.x4-fieldset-header{overflow:hidden}.x4-fieldset-header .x4-form-item,.x4-fieldset-header .x4-tool{float:left}.x4-fieldset-header .x4-form-cb-wrap{font-size:0;line-height:0}.x4-fieldset-header .x4-form-cb{margin:0}.x4-fieldset-header-text{float:left}.x4-webkit *:focus{outline:none!important}.x4-form-item{vertical-align:top;table-layout:fixed}.x4-form-item-body{position:relative}.x4-form-form-item td{border-top:1px solid transparent}.x4-form-trigger{cursor:pointer;overflow:hidden;background-repeat:no-repeat}.x4-item-disabled .x4-form-trigger{cursor:default}.x4-trigger-noedit{cursor:default}.x4-form-trigger-wrap{vertical-align:top;border-collapse:separate}.x4-form-spinner-up,.x4-form-spinner-down{font-size:0}.x4-datepicker{position:relative}.x4-datepicker-inner{table-layout:fixed;width:100%;border-collapse:separate}.x4-datepicker-cell{padding:0}.x4-datepicker-header{position:relative;zoom:1}.x4-datepicker-arrow{position:absolute;outline:0;font-size:0}.x4-datepicker-column-header{padding:0}.x4-datepicker-date{display:block;zoom:1;text-decoration:none}.x4-monthpicker{position:absolute;left:0;top:0}.x4-monthpicker-body{height:100%}.x4-monthpicker-months,.x4-monthpicker-years{float:left;height:100%}.x4-monthpicker-item{float:left}.x4-monthpicker-item-inner{display:block;text-decoration:none}.x4-monthpicker-yearnav-button-ct{float:left;text-align:center}.x4-monthpicker-yearnav-button{display:inline-block;outline:0;font-size:0}.x4-monthpicker-buttons{position:absolute;bottom:0;width:100%}.x4-strict .x4-ie6 .x4-monthpicker-buttons{bottom:-1px}.x4-form-file-btn{overflow:hidden}.x4-form-file-input{border:0;position:absolute;cursor:pointer;top:-2px;right:-2px;filter:alpha(opacity=0);opacity:0;font-size:1000px}.x4-form-item-hidden{margin:0}.x4-color-picker-item{float:left;text-decoration:none}.x4-color-picker-item-inner{display:block;font-size:1px}.x4-html-editor-tb .x4-toolbar{position:static!important}.x4-htmleditor-iframe{display:block;overflow:auto}.x4-fit-item{position:relative}.x4-grid-row,.x4-grid-data-row{outline:0}.x4-grid-view{overflow:hidden;position:relative}.x4-grid-table{table-layout:fixed;border-collapse:separate}.x4-grid-td{overflow:hidden;border-width:0;vertical-align:top}.x4-grid-cell-inner{overflow:hidden;white-space:nowrap;zoom:1}.x4-grid-resize-marker{position:absolute;z-index:5;top:0}.col-move-top,.col-move-bottom{position:absolute;top:0;line-height:0;font-size:0;overflow:hidden;z-index:20000;background:no-repeat center top transparent}.x4-grid-header-ct{cursor:default}.x4-column-header{position:absolute;overflow:hidden;background-repeat:repeat-x}.x4-column-header-inner{zoom:1;white-space:nowrap;position:relative;overflow:hidden}.x4-column-header-text{white-space:nowrap;background-repeat:no-repeat;zoom:1;display:inline-block}.x4-column-header-trigger{display:none;height:100%;background-repeat:no-repeat;position:absolute;right:0;top:0;z-index:2}.x4-column-header-over .x4-column-header-trigger,.x4-column-header-open .x4-column-header-trigger{display:block}.x4-column-header-align-right{text-align:right}.x4-column-header-align-left{text-align:left}.x4-column-header-align-center{text-align:center}.x4-grid-cell-inner-action-col{line-height:0;font-size:0}.x4-grid-cell-inner-checkcolumn{line-height:0;font-size:0}.x4-row-numberer .x4-column-header-inner{text-overflow:clip}.x4-grid-group,.x4-grid-group-body,.x4-grid-group-hd{zoom:1}.x4-grid-group-hd{white-space:nowrap}.x4-grid-row-body-hidden,.x4-grid-group-collapsed{display:none}.x4-grid-rowbody{zoom:1}.x4-grid-row-body-hidden{display:none}td.x4-grid-rowwrap .x4-grid-table{border:0}td.x4-grid-rowwrap .x4-grid-cell{border-bottom:0;background-color:transparent}.x4-grid-editor .x4-form-cb-wrap{text-align:center}.x4-grid-editor .x4-form-display-field{margin:0;white-space:nowrap;overflow:hidden}.x4-grid-editor div.x4-form-action-col-field{line-height:0}.x4-grid-row-editor{position:absolute;overflow:visible;z-index:1}.x4-grid-row-editor-buttons{position:absolute;white-space:nowrap}.x4-grid-row-expander{font-size:0;line-height:0}.x4-abs-layout-ct{position:relative}.x4-abs-layout-item{position:absolute!important}.x4-splitter{font-size:1px}.x4-splitter-horizontal{cursor:e-resize;cursor:row-resize}.x4-splitter-vertical{cursor:e-resize;cursor:col-resize}.x4-splitter-collapsed,.x4-splitter-horizontal-noresize,.x4-splitter-vertical-noresize{cursor:default}.x4-splitter-active{z-index:4}.x4-collapse-el{position:absolute;background-repeat:no-repeat}.x4-border-layout-ct{overflow:hidden;zoom:1}.x4-border-layout-ct{position:relative}.x4-border-region-slide-in{z-index:5}.x4-region-collapsed-placeholder{z-index:4}.x4-column{float:left}.x4-ie6 .x4-column{display:inline}.x4-quirks .x4-ie .x4-form-layout-table,.x4-quirks .x4-ie .x4-form-layout-table tbody tr.x4-form-item{position:relative}.x4-form-layout-table{border-collapse:separate;border-spacing:0 2px}.x4-ie6 .x4-form-layout-table{border-collapse:collapse;border-spacing:0}.x4-menu{outline:0}.x4-menu-item{white-space:nowrap;overflow:hidden}.x4-menu-item-cmp .x4-field-label-cell{vertical-align:middle}.x4-menu-icon-separator{position:absolute;top:0;z-index:0;height:100%;overflow:hidden}.x4-menu-plain .x4-menu-icon-separator{display:none}.x4-menu-item-link{text-decoration:none;outline:0;zoom:1}.x4-menu-item-text{zoom:1}.x4-menu-item-icon,.x4-menu-item-icon-right,.x4-menu-item-arrow{position:absolute;text-align:center}.x4-resizable-overlay{position:absolute;left:0;top:0;width:100%;height:100%;display:none;z-index:200000;background-color:#fff;filter:alpha(opacity=0);opacity:0}.x4-slider{outline:0;zoom:1;position:relative}.x4-slider-inner{position:relative;left:0;top:0;overflow:visible;zoom:1}.x4-slider-vert .x4-slider-inner{background:repeat-y 0 0}.x4-slider-end{zoom:1}.x4-slider-thumb{position:absolute;background:no-repeat 0 0}.x4-slider-horz .x4-slider-thumb{left:0}.x4-slider-vert .x4-slider-thumb{bottom:0}a.x4-tab{text-decoration:none}.x4-tab-bar{position:relative}.x4-column-header-checkbox .x4-column-header-text{display:block;background-repeat:no-repeat;font-size:0}.x4-grid-cell-row-checker{vertical-align:middle;background-repeat:no-repeat;font-size:0}.x4-tab{display:block;white-space:nowrap;z-index:1}.x4-tab-active{z-index:3}.x4-tab-wrap{display:block;position:relative}.x4-tab-button{zoom:1;display:block;outline:0}.x4-tab-inner{display:block;text-align:center;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis;overflow:hidden;zoom:1}.x4-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x4-tab-bar{z-index:1}.x4-tab-bar-body{z-index:2;position:relative}.x4-tab-bar-strip{position:absolute;line-height:0;font-size:0;z-index:1}.x4-tab-bar-horizontal .x4-tab-bar-strip{width:100%;left:0}.x4-tab-bar-vertical .x4-tab-bar-strip{height:100%;top:0}.x4-tab-bar-strip-top{bottom:0}.x4-tab-bar-strip-bottom{top:0}.x4-tab-bar-strip-left{right:0}.x4-tab-bar-strip-right{left:0}.x4-tab-bar-plain{background:transparent!important}.x4-tab-icon-el{position:absolute;background-repeat:no-repeat;top:0;left:0;right:auto;bottom:0}.x4-tab-close-btn{display:block;position:absolute;font-size:0;line-height:0;background:no-repeat}.x4-tab-mc{overflow:visible}.x4-autowidth-table .x4-grid-table{table-layout:auto;width:auto!important}.x4-tree-view{overflow:hidden}.x4-tree-elbow-img,.x4-tree-icon{background-repeat:no-repeat;background-position:0 center;vertical-align:top}.x4-tree-checkbox{border:0;padding:0;vertical-align:top;position:relative;background-color:transparent}.x4-tree-animator-wrap{overflow:hidden}.x4-tree-node-text{zoom:1}.x4-surface{display:-moz-inline-stack;display:inline-block;vertical-align:middle;*vertical-align:auto;zoom:1;*display:inline;overflow:hidden}.rvml{behavior:url(#default#VML)}.x4-surface tspan{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x4-vml-sprite{position:absolute;left:0;top:0;width:1px;height:1px}.x4-vml-group{position:absolute;left:0;top:0;width:1000px;height:1000px}.x4-vml-measure-span{position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;display:inline}.x4-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}.x4-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}svg,vml{overflow:hidden}.x4-body{color:black;font-size:12px;font-family:tahoma,arial,verdana,sans-serif}.x4-animating-size,.x4-collapsed{overflow:hidden!important}.x4-editor .x4-form-item-body{padding-bottom:0}.x4-focus-element{position:absolute;top:-10px;left:-10px;width:0;height:0}.x4-focus-frame{position:absolute;left:0;top:0;z-index:100000000;width:0;height:0}.x4-focus-frame-top,.x4-focus-frame-bottom,.x4-focus-frame-left,.x4-focus-frame-right{position:absolute;top:0;left:0}.x4-focus-frame-top,.x4-focus-frame-bottom{border-top:solid 2px #15428b;height:2px}.x4-focus-frame-left,.x4-focus-frame-right{border-left:solid 2px #15428b;width:2px}.x4-mask{filter:alpha(opacity=50);opacity:.5;background:#ccc}.x4-mask-msg{padding:2px;border-style:solid;border-width:1px;border-color:#99bce8;background-image:none;background-color:#dfe9f6}.x4-mask-msg-inner{padding:0 5px;border-style:solid;border-width:1px;border-color:#a3bad9;background-color:#eee;color:#222;font:normal 11px tahoma,arial,verdana,sans-serif}.x4-mask-msg-text{padding:5px 5px 5px 20px;background-image:url(images/grid/loading.gif);background-repeat:no-repeat;background-position:0 center}.x4-progress-default{background-color:#e0e8f3;border-width:1px;height:20px;border-color:#6594cf}.x4-content-box .x4-progress-default{height:18px}.x4-progress-default .x4-progress-bar-default{background-image:none;background-color:#73a3e0;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#b2ccee),color-stop(50%,#88b1e5),color-stop(51%,#73a3e0),color-stop(100%,#5e96db));background-image:-webkit-linear-gradient(top,#b2ccee,#88b1e5 50%,#73a3e0 51%,#5e96db);background-image:-moz-linear-gradient(top,#b2ccee,#88b1e5 50%,#73a3e0 51%,#5e96db);background-image:-o-linear-gradient(top,#b2ccee,#88b1e5 50%,#73a3e0 51%,#5e96db);background-image:linear-gradient(top,#b2ccee,#88b1e5 50%,#73a3e0 51%,#5e96db)}.x4-nlg .x4-progress-default .x4-progress-bar-default{background:repeat-x;background-image:url(images/progress/progress-default-bg.gif)}.x4-progress-default .x4-progress-text{color:white;font-weight:bold;font-size:11px;text-align:center;line-height:18px}.x4-progress-default .x4-progress-text-back{color:#396295;line-height:18px}.x4-progress-default .x4-progress-bar-default:after{display:none;content:"x-slicer:bg:url(images/progress/progress-default-bg.gif)"}.x4-btn-default-small{border-color:#d1d1d1}.x4-btn-default-small{-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-image:none;background-color:white;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(48%,#f9f9f9),color-stop(52%,#e2e2e2),color-stop(100%,#e7e7e7));background-image:-webkit-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-moz-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-o-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7)}.x4-btn-default-small-mc{background-image:url(images/btn/btn-default-small-fbg.gif);background-position:0 top;background-color:white}.x4-nlg .x4-btn-default-small{background-image:url(images/btn/btn-default-small-bg.gif);background-position:0 top}.x4-nbr .x4-btn-default-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-btn-default-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x4-btn-default-small-tl{background-position:0 -6px}.x4-btn-default-small-tr{background-position:right -9px}.x4-btn-default-small-bl{background-position:0 -12px}.x4-btn-default-small-br{background-position:right -15px}.x4-btn-default-small-ml{background-position:0 top}.x4-btn-default-small-mr{background-position:right top}.x4-btn-default-small-tc{background-position:0 0}.x4-btn-default-small-bc{background-position:0 -3px}.x4-btn-default-small-tr,.x4-btn-default-small-br,.x4-btn-default-small-mr{padding-right:3px}.x4-btn-default-small-tl,.x4-btn-default-small-bl,.x4-btn-default-small-ml{padding-left:3px}.x4-btn-default-small-tc{height:3px}.x4-btn-default-small-bc{height:3px}.x4-btn-default-small-tl,.x4-btn-default-small-bl,.x4-btn-default-small-tr,.x4-btn-default-small-br,.x4-btn-default-small-tc,.x4-btn-default-small-bc,.x4-btn-default-small-ml,.x4-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-corners.gif)}.x4-btn-default-small-ml,.x4-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-sides.gif)}.x4-btn-default-small-mc{padding:0}.x4-strict .x4-ie7 .x4-btn-default-small-tl,.x4-strict .x4-ie7 .x4-btn-default-small-bl{position:relative;right:0}.x4-btn-default-small:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"}.x4-btn-default-small .x4-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 4px}.x4-btn-default-small .x4-btn-arrow{background-image:url(images/button/arrow.gif)}.x4-btn-default-small .x4-btn-arrow-right{padding-right:12px}.x4-btn-default-small .x4-btn-arrow-bottom{padding-bottom:12px}.x4-btn-default-small .x4-btn-glyph{font-size:16px;line-height:16px;color:#333;opacity:.5}.x4-ie8m .x4-btn-default-small .x4-btn-glyph{color:#999}.x4-btn-default-small-disabled{border-color:#e1e1e1;background-image:none;background-color:#f7f7f7;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f7f7f7),color-stop(48%,#f1f1f1),color-stop(52%,#dadada),color-stop(100%,#dfdfdf));background-image:-webkit-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-moz-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-o-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf)}.x4-btn-default-small-icon .x4-btn-button,.x4-btn-default-small-noicon .x4-btn-button{height:16px}.x4-btn-default-small-icon .x4-btn-inner,.x4-btn-default-small-noicon .x4-btn-inner{line-height:16px}.x4-btn-default-small-icon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-small-noicon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-small-icon-text-left .x4-btn-arrow-right .x4-btn-inner{padding-right:0}.x4-btn-default-small-icon .x4-btn-inner{width:16px;padding:0}.x4-btn-default-small-icon .x4-btn-icon-el{width:16px;height:16px}.x4-btn-default-small-icon-text-left .x4-btn-button{height:16px}.x4-btn-default-small-icon-text-left .x4-btn-inner{line-height:16px;padding-left:20px}.x4-btn-default-small-icon-text-left .x4-btn-icon-el{width:16px;right:auto}.x4-ie6 .x4-btn-default-small-icon-text-left .x4-btn-icon-el,.x4-quirks .x4-btn-default-small-icon-text-left .x4-btn-icon-el{height:16px}.x4-btn-default-small-icon-text-right .x4-btn-button{height:16px}.x4-btn-default-small-icon-text-right .x4-btn-inner{line-height:16px;padding-right:20px}.x4-btn-default-small-icon-text-right .x4-btn-icon-el{width:16px;left:auto}.x4-ie6 .x4-btn-default-small-icon-text-right .x4-btn-icon-el,.x4-quirks .x4-btn-default-small-icon-text-right .x4-btn-icon-el{height:16px}.x4-btn-default-small-icon-text-top .x4-btn-inner{padding-top:20px}.x4-btn-default-small-icon-text-top .x4-btn-icon-el{height:16px;bottom:auto}.x4-ie6 .x4-btn-default-small-icon-text-top .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-small-icon-text-top .x4-btn-icon-el{width:100%}.x4-btn-default-small-icon-text-bottom .x4-btn-inner{padding-bottom:20px}.x4-btn-default-small-icon-text-bottom .x4-btn-icon-el{height:16px;top:auto}.x4-ie6 .x4-btn-default-small-icon-text-bottom .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-small-icon-text-bottom .x4-btn-icon-el{width:100%}.x4-btn-default-small-over{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x4-btn-default-small-focus{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x4-btn-default-small-menu-active,.x4-btn-default-small-pressed{border-color:#9ebae1;background-image:none;background-color:#b6cbe4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#b6cbe4),color-stop(48%,#bfd2e6),color-stop(52%,#8dc0f5),color-stop(100%,#98c5f5));background-image:-webkit-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-moz-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-o-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5)}.x4-btn-default-small-over .x4-frame-tl,.x4-btn-default-small-over .x4-frame-bl,.x4-btn-default-small-over .x4-frame-tr,.x4-btn-default-small-over .x4-frame-br,.x4-btn-default-small-over .x4-frame-tc,.x4-btn-default-small-over .x4-frame-bc{background-image:url(images/btn/btn-default-small-over-corners.gif)}.x4-btn-default-small-over .x4-frame-ml,.x4-btn-default-small-over .x4-frame-mr{background-image:url(images/btn/btn-default-small-over-sides.gif)}.x4-btn-default-small-over .x4-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-small-over-fbg.gif)}.x4-btn-default-small-focus .x4-frame-tl,.x4-btn-default-small-focus .x4-frame-bl,.x4-btn-default-small-focus .x4-frame-tr,.x4-btn-default-small-focus .x4-frame-br,.x4-btn-default-small-focus .x4-frame-tc,.x4-btn-default-small-focus .x4-frame-bc{background-image:url(images/btn/btn-default-small-focus-corners.gif)}.x4-btn-default-small-focus .x4-frame-ml,.x4-btn-default-small-focus .x4-frame-mr{background-image:url(images/btn/btn-default-small-focus-sides.gif)}.x4-btn-default-small-focus .x4-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-small-focus-fbg.gif)}.x4-btn-default-small-menu-active .x4-frame-tl,.x4-btn-default-small-menu-active .x4-frame-bl,.x4-btn-default-small-menu-active .x4-frame-tr,.x4-btn-default-small-menu-active .x4-frame-br,.x4-btn-default-small-menu-active .x4-frame-tc,.x4-btn-default-small-menu-active .x4-frame-bc,.x4-btn-default-small-pressed .x4-frame-tl,.x4-btn-default-small-pressed .x4-frame-bl,.x4-btn-default-small-pressed .x4-frame-tr,.x4-btn-default-small-pressed .x4-frame-br,.x4-btn-default-small-pressed .x4-frame-tc,.x4-btn-default-small-pressed .x4-frame-bc{background-image:url(images/btn/btn-default-small-pressed-corners.gif)}.x4-btn-default-small-menu-active .x4-frame-ml,.x4-btn-default-small-menu-active .x4-frame-mr,.x4-btn-default-small-pressed .x4-frame-ml,.x4-btn-default-small-pressed .x4-frame-mr{background-image:url(images/btn/btn-default-small-pressed-sides.gif)}.x4-btn-default-small-menu-active .x4-frame-mc,.x4-btn-default-small-pressed .x4-frame-mc{background-color:#b6cbe4;background-image:url(images/btn/btn-default-small-pressed-fbg.gif)}.x4-btn-default-small-disabled .x4-frame-tl,.x4-btn-default-small-disabled .x4-frame-bl,.x4-btn-default-small-disabled .x4-frame-tr,.x4-btn-default-small-disabled .x4-frame-br,.x4-btn-default-small-disabled .x4-frame-tc,.x4-btn-default-small-disabled .x4-frame-bc{background-image:url(images/btn/btn-default-small-disabled-corners.gif)}.x4-btn-default-small-disabled .x4-frame-ml,.x4-btn-default-small-disabled .x4-frame-mr{background-image:url(images/btn/btn-default-small-disabled-sides.gif)}.x4-btn-default-small-disabled .x4-frame-mc{background-color:#f7f7f7;background-image:url(images/btn/btn-default-small-disabled-fbg.gif)}.x4-nlg .x4-btn-default-small-over{background-image:url(images/btn/btn-default-small-over-bg.gif)}.x4-nlg .x4-btn-default-small-focus{background-image:url(images/btn/btn-default-small-focus-bg.gif)}.x4-nlg .x4-btn-default-small-menu-active,.x4-nlg .x4-btn-default-small-pressed{background-image:url(images/btn/btn-default-small-pressed-bg.gif)}.x4-nlg .x4-btn-default-small-disabled{background-image:url(images/btn/btn-default-small-disabled-bg.gif)}.x4-nbr .x4-btn-default-small{background-image:none}.x4-btn-default-small .x4-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:14px}.x4-btn-default-small .x4-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:14px}.x4-btn-default-small-over .x4-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x4-btn-default-small-over .x4-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x4-btn-default-small-disabled .x4-btn-inner,.x4-btn-default-small-disabled .x4-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x4-btn-default-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"}.x4-btn-default-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"}.x4-btn-default-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"}.x4-btn-default-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"}.x4-btn-default-medium{border-color:#d1d1d1}.x4-btn-default-medium{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:white;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(48%,#f9f9f9),color-stop(52%,#e2e2e2),color-stop(100%,#e7e7e7));background-image:-webkit-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-moz-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-o-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7)}.x4-btn-default-medium-mc{background-image:url(images/btn/btn-default-medium-fbg.gif);background-position:0 top;background-color:white}.x4-nlg .x4-btn-default-medium{background-image:url(images/btn/btn-default-medium-bg.gif);background-position:0 top}.x4-nbr .x4-btn-default-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-btn-default-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x4-btn-default-medium-tl{background-position:0 -6px}.x4-btn-default-medium-tr{background-position:right -9px}.x4-btn-default-medium-bl{background-position:0 -12px}.x4-btn-default-medium-br{background-position:right -15px}.x4-btn-default-medium-ml{background-position:0 top}.x4-btn-default-medium-mr{background-position:right top}.x4-btn-default-medium-tc{background-position:0 0}.x4-btn-default-medium-bc{background-position:0 -3px}.x4-btn-default-medium-tr,.x4-btn-default-medium-br,.x4-btn-default-medium-mr{padding-right:3px}.x4-btn-default-medium-tl,.x4-btn-default-medium-bl,.x4-btn-default-medium-ml{padding-left:3px}.x4-btn-default-medium-tc{height:3px}.x4-btn-default-medium-bc{height:3px}.x4-btn-default-medium-tl,.x4-btn-default-medium-bl,.x4-btn-default-medium-tr,.x4-btn-default-medium-br,.x4-btn-default-medium-tc,.x4-btn-default-medium-bc,.x4-btn-default-medium-ml,.x4-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-corners.gif)}.x4-btn-default-medium-ml,.x4-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-sides.gif)}.x4-btn-default-medium-mc{padding:1px 1px 1px 1px}.x4-strict .x4-ie7 .x4-btn-default-medium-tl,.x4-strict .x4-ie7 .x4-btn-default-medium-bl{position:relative;right:0}.x4-btn-default-medium:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"}.x4-btn-default-medium .x4-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x4-btn-default-medium .x4-btn-arrow{background-image:url(images/button/arrow.gif)}.x4-btn-default-medium .x4-btn-arrow-right{padding-right:12px}.x4-btn-default-medium .x4-btn-arrow-bottom{padding-bottom:12px}.x4-btn-default-medium .x4-btn-glyph{font-size:24px;line-height:24px;color:#333;opacity:.5}.x4-ie8m .x4-btn-default-medium .x4-btn-glyph{color:#999}.x4-btn-default-medium-disabled{border-color:#e1e1e1;background-image:none;background-color:#f7f7f7;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f7f7f7),color-stop(48%,#f1f1f1),color-stop(52%,#dadada),color-stop(100%,#dfdfdf));background-image:-webkit-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-moz-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-o-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf)}.x4-btn-default-medium-icon .x4-btn-button,.x4-btn-default-medium-noicon .x4-btn-button{height:24px}.x4-btn-default-medium-icon .x4-btn-inner,.x4-btn-default-medium-noicon .x4-btn-inner{line-height:24px}.x4-btn-default-medium-icon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-medium-noicon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-medium-icon-text-left .x4-btn-arrow-right .x4-btn-inner{padding-right:0}.x4-btn-default-medium-icon .x4-btn-inner{width:24px;padding:0}.x4-btn-default-medium-icon .x4-btn-icon-el{width:24px;height:24px}.x4-btn-default-medium-icon-text-left .x4-btn-button{height:24px}.x4-btn-default-medium-icon-text-left .x4-btn-inner{line-height:24px;padding-left:28px}.x4-btn-default-medium-icon-text-left .x4-btn-icon-el{width:24px;right:auto}.x4-ie6 .x4-btn-default-medium-icon-text-left .x4-btn-icon-el,.x4-quirks .x4-btn-default-medium-icon-text-left .x4-btn-icon-el{height:24px}.x4-btn-default-medium-icon-text-right .x4-btn-button{height:24px}.x4-btn-default-medium-icon-text-right .x4-btn-inner{line-height:24px;padding-right:28px}.x4-btn-default-medium-icon-text-right .x4-btn-icon-el{width:24px;left:auto}.x4-ie6 .x4-btn-default-medium-icon-text-right .x4-btn-icon-el,.x4-quirks .x4-btn-default-medium-icon-text-right .x4-btn-icon-el{height:24px}.x4-btn-default-medium-icon-text-top .x4-btn-inner{padding-top:28px}.x4-btn-default-medium-icon-text-top .x4-btn-icon-el{height:24px;bottom:auto}.x4-ie6 .x4-btn-default-medium-icon-text-top .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-medium-icon-text-top .x4-btn-icon-el{width:100%}.x4-btn-default-medium-icon-text-bottom .x4-btn-inner{padding-bottom:28px}.x4-btn-default-medium-icon-text-bottom .x4-btn-icon-el{height:24px;top:auto}.x4-ie6 .x4-btn-default-medium-icon-text-bottom .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-medium-icon-text-bottom .x4-btn-icon-el{width:100%}.x4-btn-default-medium-over{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x4-btn-default-medium-focus{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x4-btn-default-medium-menu-active,.x4-btn-default-medium-pressed{border-color:#9ebae1;background-image:none;background-color:#b6cbe4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#b6cbe4),color-stop(48%,#bfd2e6),color-stop(52%,#8dc0f5),color-stop(100%,#98c5f5));background-image:-webkit-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-moz-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-o-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5)}.x4-btn-default-medium-over .x4-frame-tl,.x4-btn-default-medium-over .x4-frame-bl,.x4-btn-default-medium-over .x4-frame-tr,.x4-btn-default-medium-over .x4-frame-br,.x4-btn-default-medium-over .x4-frame-tc,.x4-btn-default-medium-over .x4-frame-bc{background-image:url(images/btn/btn-default-medium-over-corners.gif)}.x4-btn-default-medium-over .x4-frame-ml,.x4-btn-default-medium-over .x4-frame-mr{background-image:url(images/btn/btn-default-medium-over-sides.gif)}.x4-btn-default-medium-over .x4-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-medium-over-fbg.gif)}.x4-btn-default-medium-focus .x4-frame-tl,.x4-btn-default-medium-focus .x4-frame-bl,.x4-btn-default-medium-focus .x4-frame-tr,.x4-btn-default-medium-focus .x4-frame-br,.x4-btn-default-medium-focus .x4-frame-tc,.x4-btn-default-medium-focus .x4-frame-bc{background-image:url(images/btn/btn-default-medium-focus-corners.gif)}.x4-btn-default-medium-focus .x4-frame-ml,.x4-btn-default-medium-focus .x4-frame-mr{background-image:url(images/btn/btn-default-medium-focus-sides.gif)}.x4-btn-default-medium-focus .x4-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-medium-focus-fbg.gif)}.x4-btn-default-medium-menu-active .x4-frame-tl,.x4-btn-default-medium-menu-active .x4-frame-bl,.x4-btn-default-medium-menu-active .x4-frame-tr,.x4-btn-default-medium-menu-active .x4-frame-br,.x4-btn-default-medium-menu-active .x4-frame-tc,.x4-btn-default-medium-menu-active .x4-frame-bc,.x4-btn-default-medium-pressed .x4-frame-tl,.x4-btn-default-medium-pressed .x4-frame-bl,.x4-btn-default-medium-pressed .x4-frame-tr,.x4-btn-default-medium-pressed .x4-frame-br,.x4-btn-default-medium-pressed .x4-frame-tc,.x4-btn-default-medium-pressed .x4-frame-bc{background-image:url(images/btn/btn-default-medium-pressed-corners.gif)}.x4-btn-default-medium-menu-active .x4-frame-ml,.x4-btn-default-medium-menu-active .x4-frame-mr,.x4-btn-default-medium-pressed .x4-frame-ml,.x4-btn-default-medium-pressed .x4-frame-mr{background-image:url(images/btn/btn-default-medium-pressed-sides.gif)}.x4-btn-default-medium-menu-active .x4-frame-mc,.x4-btn-default-medium-pressed .x4-frame-mc{background-color:#b6cbe4;background-image:url(images/btn/btn-default-medium-pressed-fbg.gif)}.x4-btn-default-medium-disabled .x4-frame-tl,.x4-btn-default-medium-disabled .x4-frame-bl,.x4-btn-default-medium-disabled .x4-frame-tr,.x4-btn-default-medium-disabled .x4-frame-br,.x4-btn-default-medium-disabled .x4-frame-tc,.x4-btn-default-medium-disabled .x4-frame-bc{background-image:url(images/btn/btn-default-medium-disabled-corners.gif)}.x4-btn-default-medium-disabled .x4-frame-ml,.x4-btn-default-medium-disabled .x4-frame-mr{background-image:url(images/btn/btn-default-medium-disabled-sides.gif)}.x4-btn-default-medium-disabled .x4-frame-mc{background-color:#f7f7f7;background-image:url(images/btn/btn-default-medium-disabled-fbg.gif)}.x4-nlg .x4-btn-default-medium-over{background-image:url(images/btn/btn-default-medium-over-bg.gif)}.x4-nlg .x4-btn-default-medium-focus{background-image:url(images/btn/btn-default-medium-focus-bg.gif)}.x4-nlg .x4-btn-default-medium-menu-active,.x4-nlg .x4-btn-default-medium-pressed{background-image:url(images/btn/btn-default-medium-pressed-bg.gif)}.x4-nlg .x4-btn-default-medium-disabled{background-image:url(images/btn/btn-default-medium-disabled-bg.gif)}.x4-nbr .x4-btn-default-medium{background-image:none}.x4-btn-default-medium .x4-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:14px}.x4-btn-default-medium .x4-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:14px}.x4-btn-default-medium-over .x4-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x4-btn-default-medium-over .x4-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x4-btn-default-medium-disabled .x4-btn-inner,.x4-btn-default-medium-disabled .x4-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x4-btn-default-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"}.x4-btn-default-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"}.x4-btn-default-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"}.x4-btn-default-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"}.x4-btn-default-large{border-color:#d1d1d1}.x4-btn-default-large{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:white;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(48%,#f9f9f9),color-stop(52%,#e2e2e2),color-stop(100%,#e7e7e7));background-image:-webkit-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-moz-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-o-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7)}.x4-btn-default-large-mc{background-image:url(images/btn/btn-default-large-fbg.gif);background-position:0 top;background-color:white}.x4-nlg .x4-btn-default-large{background-image:url(images/btn/btn-default-large-bg.gif);background-position:0 top}.x4-nbr .x4-btn-default-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-btn-default-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x4-btn-default-large-tl{background-position:0 -6px}.x4-btn-default-large-tr{background-position:right -9px}.x4-btn-default-large-bl{background-position:0 -12px}.x4-btn-default-large-br{background-position:right -15px}.x4-btn-default-large-ml{background-position:0 top}.x4-btn-default-large-mr{background-position:right top}.x4-btn-default-large-tc{background-position:0 0}.x4-btn-default-large-bc{background-position:0 -3px}.x4-btn-default-large-tr,.x4-btn-default-large-br,.x4-btn-default-large-mr{padding-right:3px}.x4-btn-default-large-tl,.x4-btn-default-large-bl,.x4-btn-default-large-ml{padding-left:3px}.x4-btn-default-large-tc{height:3px}.x4-btn-default-large-bc{height:3px}.x4-btn-default-large-tl,.x4-btn-default-large-bl,.x4-btn-default-large-tr,.x4-btn-default-large-br,.x4-btn-default-large-tc,.x4-btn-default-large-bc,.x4-btn-default-large-ml,.x4-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-corners.gif)}.x4-btn-default-large-ml,.x4-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-sides.gif)}.x4-btn-default-large-mc{padding:1px 1px 1px 1px}.x4-strict .x4-ie7 .x4-btn-default-large-tl,.x4-strict .x4-ie7 .x4-btn-default-large-bl{position:relative;right:0}.x4-btn-default-large:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"}.x4-btn-default-large .x4-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x4-btn-default-large .x4-btn-arrow{background-image:url(images/button/arrow.gif)}.x4-btn-default-large .x4-btn-arrow-right{padding-right:12px}.x4-btn-default-large .x4-btn-arrow-bottom{padding-bottom:12px}.x4-btn-default-large .x4-btn-glyph{font-size:32px;line-height:32px;color:#333;opacity:.5}.x4-ie8m .x4-btn-default-large .x4-btn-glyph{color:#999}.x4-btn-default-large-disabled{border-color:#e1e1e1;background-image:none;background-color:#f7f7f7;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f7f7f7),color-stop(48%,#f1f1f1),color-stop(52%,#dadada),color-stop(100%,#dfdfdf));background-image:-webkit-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-moz-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-o-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf)}.x4-btn-default-large-icon .x4-btn-button,.x4-btn-default-large-noicon .x4-btn-button{height:32px}.x4-btn-default-large-icon .x4-btn-inner,.x4-btn-default-large-noicon .x4-btn-inner{line-height:32px}.x4-btn-default-large-icon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-large-noicon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-large-icon-text-left .x4-btn-arrow-right .x4-btn-inner{padding-right:0}.x4-btn-default-large-icon .x4-btn-inner{width:32px;padding:0}.x4-btn-default-large-icon .x4-btn-icon-el{width:32px;height:32px}.x4-btn-default-large-icon-text-left .x4-btn-button{height:32px}.x4-btn-default-large-icon-text-left .x4-btn-inner{line-height:32px;padding-left:36px}.x4-btn-default-large-icon-text-left .x4-btn-icon-el{width:32px;right:auto}.x4-ie6 .x4-btn-default-large-icon-text-left .x4-btn-icon-el,.x4-quirks .x4-btn-default-large-icon-text-left .x4-btn-icon-el{height:32px}.x4-btn-default-large-icon-text-right .x4-btn-button{height:32px}.x4-btn-default-large-icon-text-right .x4-btn-inner{line-height:32px;padding-right:36px}.x4-btn-default-large-icon-text-right .x4-btn-icon-el{width:32px;left:auto}.x4-ie6 .x4-btn-default-large-icon-text-right .x4-btn-icon-el,.x4-quirks .x4-btn-default-large-icon-text-right .x4-btn-icon-el{height:32px}.x4-btn-default-large-icon-text-top .x4-btn-inner{padding-top:36px}.x4-btn-default-large-icon-text-top .x4-btn-icon-el{height:32px;bottom:auto}.x4-ie6 .x4-btn-default-large-icon-text-top .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-large-icon-text-top .x4-btn-icon-el{width:100%}.x4-btn-default-large-icon-text-bottom .x4-btn-inner{padding-bottom:36px}.x4-btn-default-large-icon-text-bottom .x4-btn-icon-el{height:32px;top:auto}.x4-ie6 .x4-btn-default-large-icon-text-bottom .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-large-icon-text-bottom .x4-btn-icon-el{width:100%}.x4-btn-default-large-over{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x4-btn-default-large-focus{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x4-btn-default-large-menu-active,.x4-btn-default-large-pressed{border-color:#9ebae1;background-image:none;background-color:#b6cbe4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#b6cbe4),color-stop(48%,#bfd2e6),color-stop(52%,#8dc0f5),color-stop(100%,#98c5f5));background-image:-webkit-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-moz-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-o-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5)}.x4-btn-default-large-over .x4-frame-tl,.x4-btn-default-large-over .x4-frame-bl,.x4-btn-default-large-over .x4-frame-tr,.x4-btn-default-large-over .x4-frame-br,.x4-btn-default-large-over .x4-frame-tc,.x4-btn-default-large-over .x4-frame-bc{background-image:url(images/btn/btn-default-large-over-corners.gif)}.x4-btn-default-large-over .x4-frame-ml,.x4-btn-default-large-over .x4-frame-mr{background-image:url(images/btn/btn-default-large-over-sides.gif)}.x4-btn-default-large-over .x4-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-large-over-fbg.gif)}.x4-btn-default-large-focus .x4-frame-tl,.x4-btn-default-large-focus .x4-frame-bl,.x4-btn-default-large-focus .x4-frame-tr,.x4-btn-default-large-focus .x4-frame-br,.x4-btn-default-large-focus .x4-frame-tc,.x4-btn-default-large-focus .x4-frame-bc{background-image:url(images/btn/btn-default-large-focus-corners.gif)}.x4-btn-default-large-focus .x4-frame-ml,.x4-btn-default-large-focus .x4-frame-mr{background-image:url(images/btn/btn-default-large-focus-sides.gif)}.x4-btn-default-large-focus .x4-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-large-focus-fbg.gif)}.x4-btn-default-large-menu-active .x4-frame-tl,.x4-btn-default-large-menu-active .x4-frame-bl,.x4-btn-default-large-menu-active .x4-frame-tr,.x4-btn-default-large-menu-active .x4-frame-br,.x4-btn-default-large-menu-active .x4-frame-tc,.x4-btn-default-large-menu-active .x4-frame-bc,.x4-btn-default-large-pressed .x4-frame-tl,.x4-btn-default-large-pressed .x4-frame-bl,.x4-btn-default-large-pressed .x4-frame-tr,.x4-btn-default-large-pressed .x4-frame-br,.x4-btn-default-large-pressed .x4-frame-tc,.x4-btn-default-large-pressed .x4-frame-bc{background-image:url(images/btn/btn-default-large-pressed-corners.gif)}.x4-btn-default-large-menu-active .x4-frame-ml,.x4-btn-default-large-menu-active .x4-frame-mr,.x4-btn-default-large-pressed .x4-frame-ml,.x4-btn-default-large-pressed .x4-frame-mr{background-image:url(images/btn/btn-default-large-pressed-sides.gif)}.x4-btn-default-large-menu-active .x4-frame-mc,.x4-btn-default-large-pressed .x4-frame-mc{background-color:#b6cbe4;background-image:url(images/btn/btn-default-large-pressed-fbg.gif)}.x4-btn-default-large-disabled .x4-frame-tl,.x4-btn-default-large-disabled .x4-frame-bl,.x4-btn-default-large-disabled .x4-frame-tr,.x4-btn-default-large-disabled .x4-frame-br,.x4-btn-default-large-disabled .x4-frame-tc,.x4-btn-default-large-disabled .x4-frame-bc{background-image:url(images/btn/btn-default-large-disabled-corners.gif)}.x4-btn-default-large-disabled .x4-frame-ml,.x4-btn-default-large-disabled .x4-frame-mr{background-image:url(images/btn/btn-default-large-disabled-sides.gif)}.x4-btn-default-large-disabled .x4-frame-mc{background-color:#f7f7f7;background-image:url(images/btn/btn-default-large-disabled-fbg.gif)}.x4-nlg .x4-btn-default-large-over{background-image:url(images/btn/btn-default-large-over-bg.gif)}.x4-nlg .x4-btn-default-large-focus{background-image:url(images/btn/btn-default-large-focus-bg.gif)}.x4-nlg .x4-btn-default-large-menu-active,.x4-nlg .x4-btn-default-large-pressed{background-image:url(images/btn/btn-default-large-pressed-bg.gif)}.x4-nlg .x4-btn-default-large-disabled{background-image:url(images/btn/btn-default-large-disabled-bg.gif)}.x4-nbr .x4-btn-default-large{background-image:none}.x4-btn-default-large .x4-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:14px}.x4-btn-default-large .x4-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:14px}.x4-btn-default-large-over .x4-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x4-btn-default-large-over .x4-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x4-btn-default-large-disabled .x4-btn-inner,.x4-btn-default-large-disabled .x4-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x4-btn-default-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"}.x4-btn-default-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"}.x4-btn-default-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"}.x4-btn-default-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"}.x4-btn-default-toolbar-small{border-color:transparent}.x4-btn-default-toolbar-small{-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:transparent}.x4-btn-default-toolbar-small-mc{background-color:transparent}.x4-nbr .x4-btn-default-toolbar-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-btn-default-toolbar-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x4-btn-default-toolbar-small-tl{background-position:0 -6px}.x4-btn-default-toolbar-small-tr{background-position:right -9px}.x4-btn-default-toolbar-small-bl{background-position:0 -12px}.x4-btn-default-toolbar-small-br{background-position:right -15px}.x4-btn-default-toolbar-small-ml{background-position:0 top}.x4-btn-default-toolbar-small-mr{background-position:right top}.x4-btn-default-toolbar-small-tc{background-position:0 0}.x4-btn-default-toolbar-small-bc{background-position:0 -3px}.x4-btn-default-toolbar-small-tr,.x4-btn-default-toolbar-small-br,.x4-btn-default-toolbar-small-mr{padding-right:3px}.x4-btn-default-toolbar-small-tl,.x4-btn-default-toolbar-small-bl,.x4-btn-default-toolbar-small-ml{padding-left:3px}.x4-btn-default-toolbar-small-tc{height:3px}.x4-btn-default-toolbar-small-bc{height:3px}.x4-btn-default-toolbar-small-tl,.x4-btn-default-toolbar-small-bl,.x4-btn-default-toolbar-small-tr,.x4-btn-default-toolbar-small-br,.x4-btn-default-toolbar-small-tc,.x4-btn-default-toolbar-small-bc,.x4-btn-default-toolbar-small-ml,.x4-btn-default-toolbar-small-mr{zoom:1}.x4-btn-default-toolbar-small-ml,.x4-btn-default-toolbar-small-mr{zoom:1}.x4-btn-default-toolbar-small-mc{padding:0}.x4-strict .x4-ie7 .x4-btn-default-toolbar-small-tl,.x4-strict .x4-ie7 .x4-btn-default-toolbar-small-bl{position:relative;right:0}.x4-btn-default-toolbar-small .x4-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 4px}.x4-btn-default-toolbar-small .x4-btn-arrow{background-image:url(images/button/arrow.gif)}.x4-btn-default-toolbar-small .x4-btn-arrow-right{padding-right:12px}.x4-btn-default-toolbar-small .x4-btn-arrow-bottom{padding-bottom:12px}.x4-btn-default-toolbar-small .x4-btn-glyph{font-size:16px;line-height:16px;color:#333;opacity:.5}.x4-ie8m .x4-btn-default-toolbar-small .x4-btn-glyph{color:#999}.x4-btn-default-toolbar-small-disabled{border-color:#e1e1e1;background-image:none;background-color:transparent}.x4-btn-default-toolbar-small-disabled .x4-btn-inner{color:#8c8c8c}.x4-btn-default-toolbar-small-icon .x4-btn-button,.x4-btn-default-toolbar-small-noicon .x4-btn-button{height:16px}.x4-btn-default-toolbar-small-icon .x4-btn-inner,.x4-btn-default-toolbar-small-noicon .x4-btn-inner{line-height:16px}.x4-btn-default-toolbar-small-icon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-toolbar-small-noicon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-toolbar-small-icon-text-left .x4-btn-arrow-right .x4-btn-inner{padding-right:0}.x4-btn-default-toolbar-small-icon .x4-btn-inner{width:16px;padding:0}.x4-btn-default-toolbar-small-icon .x4-btn-icon-el{width:16px;height:16px}.x4-btn-default-toolbar-small-icon-text-left .x4-btn-button{height:16px}.x4-btn-default-toolbar-small-icon-text-left .x4-btn-inner{line-height:16px;padding-left:20px}.x4-btn-default-toolbar-small-icon-text-left .x4-btn-icon-el{width:16px;right:auto}.x4-ie6 .x4-btn-default-toolbar-small-icon-text-left .x4-btn-icon-el,.x4-quirks .x4-btn-default-toolbar-small-icon-text-left .x4-btn-icon-el{height:16px}.x4-btn-default-toolbar-small-icon-text-right .x4-btn-button{height:16px}.x4-btn-default-toolbar-small-icon-text-right .x4-btn-inner{line-height:16px;padding-right:20px}.x4-btn-default-toolbar-small-icon-text-right .x4-btn-icon-el{width:16px;left:auto}.x4-ie6 .x4-btn-default-toolbar-small-icon-text-right .x4-btn-icon-el,.x4-quirks .x4-btn-default-toolbar-small-icon-text-right .x4-btn-icon-el{height:16px}.x4-btn-default-toolbar-small-icon-text-top .x4-btn-inner{padding-top:20px}.x4-btn-default-toolbar-small-icon-text-top .x4-btn-icon-el{height:16px;bottom:auto}.x4-ie6 .x4-btn-default-toolbar-small-icon-text-top .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-toolbar-small-icon-text-top .x4-btn-icon-el{width:100%}.x4-btn-default-toolbar-small-icon-text-bottom .x4-btn-inner{padding-bottom:20px}.x4-btn-default-toolbar-small-icon-text-bottom .x4-btn-icon-el{height:16px;top:auto}.x4-ie6 .x4-btn-default-toolbar-small-icon-text-bottom .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-toolbar-small-icon-text-bottom .x4-btn-icon-el{width:100%}.x4-btn-default-toolbar-small-over{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x4-btn-default-toolbar-small-focus{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x4-btn-default-toolbar-small-menu-active,.x4-btn-default-toolbar-small-pressed{border-color:#7a9ac4;background-image:none;background-color:#bccfe5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#bccfe5),color-stop(48%,#c5d6e7),color-stop(52%,#95c4f4),color-stop(100%,#9fc9f5));background-image:-webkit-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-moz-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-o-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5)}.x4-btn-default-toolbar-small-over .x4-frame-tl,.x4-btn-default-toolbar-small-over .x4-frame-bl,.x4-btn-default-toolbar-small-over .x4-frame-tr,.x4-btn-default-toolbar-small-over .x4-frame-br,.x4-btn-default-toolbar-small-over .x4-frame-tc,.x4-btn-default-toolbar-small-over .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-over-corners.gif)}.x4-btn-default-toolbar-small-over .x4-frame-ml,.x4-btn-default-toolbar-small-over .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-over-sides.gif)}.x4-btn-default-toolbar-small-over .x4-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-small-over-fbg.gif)}.x4-btn-default-toolbar-small-focus .x4-frame-tl,.x4-btn-default-toolbar-small-focus .x4-frame-bl,.x4-btn-default-toolbar-small-focus .x4-frame-tr,.x4-btn-default-toolbar-small-focus .x4-frame-br,.x4-btn-default-toolbar-small-focus .x4-frame-tc,.x4-btn-default-toolbar-small-focus .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-focus-corners.gif)}.x4-btn-default-toolbar-small-focus .x4-frame-ml,.x4-btn-default-toolbar-small-focus .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-focus-sides.gif)}.x4-btn-default-toolbar-small-focus .x4-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-small-focus-fbg.gif)}.x4-btn-default-toolbar-small-menu-active .x4-frame-tl,.x4-btn-default-toolbar-small-menu-active .x4-frame-bl,.x4-btn-default-toolbar-small-menu-active .x4-frame-tr,.x4-btn-default-toolbar-small-menu-active .x4-frame-br,.x4-btn-default-toolbar-small-menu-active .x4-frame-tc,.x4-btn-default-toolbar-small-menu-active .x4-frame-bc,.x4-btn-default-toolbar-small-pressed .x4-frame-tl,.x4-btn-default-toolbar-small-pressed .x4-frame-bl,.x4-btn-default-toolbar-small-pressed .x4-frame-tr,.x4-btn-default-toolbar-small-pressed .x4-frame-br,.x4-btn-default-toolbar-small-pressed .x4-frame-tc,.x4-btn-default-toolbar-small-pressed .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-pressed-corners.gif)}.x4-btn-default-toolbar-small-menu-active .x4-frame-ml,.x4-btn-default-toolbar-small-menu-active .x4-frame-mr,.x4-btn-default-toolbar-small-pressed .x4-frame-ml,.x4-btn-default-toolbar-small-pressed .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-pressed-sides.gif)}.x4-btn-default-toolbar-small-menu-active .x4-frame-mc,.x4-btn-default-toolbar-small-pressed .x4-frame-mc{background-color:#bccfe5;background-image:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif)}.x4-btn-default-toolbar-small-disabled .x4-frame-tl,.x4-btn-default-toolbar-small-disabled .x4-frame-bl,.x4-btn-default-toolbar-small-disabled .x4-frame-tr,.x4-btn-default-toolbar-small-disabled .x4-frame-br,.x4-btn-default-toolbar-small-disabled .x4-frame-tc,.x4-btn-default-toolbar-small-disabled .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-disabled-corners.gif)}.x4-btn-default-toolbar-small-disabled .x4-frame-ml,.x4-btn-default-toolbar-small-disabled .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)}.x4-btn-default-toolbar-small-disabled .x4-frame-mc{background-color:transparent}.x4-nlg .x4-btn-default-toolbar-small-over{background-image:url(images/btn/btn-default-toolbar-small-over-bg.gif)}.x4-nlg .x4-btn-default-toolbar-small-focus{background-image:url(images/btn/btn-default-toolbar-small-focus-bg.gif)}.x4-nlg .x4-btn-default-toolbar-small-menu-active,.x4-nlg .x4-btn-default-toolbar-small-pressed{background-image:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)}.x4-nbr .x4-btn-default-toolbar-small{background-image:none}.x4-btn-default-toolbar-small .x4-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:14px}.x4-btn-default-toolbar-small .x4-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:14px}.x4-btn-default-toolbar-small-over .x4-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x4-btn-default-toolbar-small-over .x4-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x4-btn-default-toolbar-small-disabled{filter:alpha(opacity=50);opacity:.5}.x4-btn-default-toolbar-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-over-bg.gif)"}.x4-btn-default-toolbar-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-focus-bg.gif)"}.x4-btn-default-toolbar-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)"}.x4-btn-default-toolbar-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)"}.x4-btn-default-toolbar-medium{border-color:transparent}.x4-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:transparent}.x4-btn-default-toolbar-medium-mc{background-color:transparent}.x4-nbr .x4-btn-default-toolbar-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-btn-default-toolbar-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x4-btn-default-toolbar-medium-tl{background-position:0 -6px}.x4-btn-default-toolbar-medium-tr{background-position:right -9px}.x4-btn-default-toolbar-medium-bl{background-position:0 -12px}.x4-btn-default-toolbar-medium-br{background-position:right -15px}.x4-btn-default-toolbar-medium-ml{background-position:0 top}.x4-btn-default-toolbar-medium-mr{background-position:right top}.x4-btn-default-toolbar-medium-tc{background-position:0 0}.x4-btn-default-toolbar-medium-bc{background-position:0 -3px}.x4-btn-default-toolbar-medium-tr,.x4-btn-default-toolbar-medium-br,.x4-btn-default-toolbar-medium-mr{padding-right:3px}.x4-btn-default-toolbar-medium-tl,.x4-btn-default-toolbar-medium-bl,.x4-btn-default-toolbar-medium-ml{padding-left:3px}.x4-btn-default-toolbar-medium-tc{height:3px}.x4-btn-default-toolbar-medium-bc{height:3px}.x4-btn-default-toolbar-medium-tl,.x4-btn-default-toolbar-medium-bl,.x4-btn-default-toolbar-medium-tr,.x4-btn-default-toolbar-medium-br,.x4-btn-default-toolbar-medium-tc,.x4-btn-default-toolbar-medium-bc,.x4-btn-default-toolbar-medium-ml,.x4-btn-default-toolbar-medium-mr{zoom:1}.x4-btn-default-toolbar-medium-ml,.x4-btn-default-toolbar-medium-mr{zoom:1}.x4-btn-default-toolbar-medium-mc{padding:1px 1px 1px 1px}.x4-strict .x4-ie7 .x4-btn-default-toolbar-medium-tl,.x4-strict .x4-ie7 .x4-btn-default-toolbar-medium-bl{position:relative;right:0}.x4-btn-default-toolbar-medium .x4-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x4-btn-default-toolbar-medium .x4-btn-arrow{background-image:url(images/button/arrow.gif)}.x4-btn-default-toolbar-medium .x4-btn-arrow-right{padding-right:12px}.x4-btn-default-toolbar-medium .x4-btn-arrow-bottom{padding-bottom:12px}.x4-btn-default-toolbar-medium .x4-btn-glyph{font-size:24px;line-height:24px;color:#333;opacity:.5}.x4-ie8m .x4-btn-default-toolbar-medium .x4-btn-glyph{color:#999}.x4-btn-default-toolbar-medium-disabled{border-color:#e1e1e1;background-image:none;background-color:transparent}.x4-btn-default-toolbar-medium-disabled .x4-btn-inner{color:#8c8c8c}.x4-btn-default-toolbar-medium-icon .x4-btn-button,.x4-btn-default-toolbar-medium-noicon .x4-btn-button{height:24px}.x4-btn-default-toolbar-medium-icon .x4-btn-inner,.x4-btn-default-toolbar-medium-noicon .x4-btn-inner{line-height:24px}.x4-btn-default-toolbar-medium-icon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-toolbar-medium-noicon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-arrow-right .x4-btn-inner{padding-right:0}.x4-btn-default-toolbar-medium-icon .x4-btn-inner{width:24px;padding:0}.x4-btn-default-toolbar-medium-icon .x4-btn-icon-el{width:24px;height:24px}.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-button{height:24px}.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-inner{line-height:24px;padding-left:28px}.x4-btn-default-toolbar-medium-icon-text-left .x4-btn-icon-el{width:24px;right:auto}.x4-ie6 .x4-btn-default-toolbar-medium-icon-text-left .x4-btn-icon-el,.x4-quirks .x4-btn-default-toolbar-medium-icon-text-left .x4-btn-icon-el{height:24px}.x4-btn-default-toolbar-medium-icon-text-right .x4-btn-button{height:24px}.x4-btn-default-toolbar-medium-icon-text-right .x4-btn-inner{line-height:24px;padding-right:28px}.x4-btn-default-toolbar-medium-icon-text-right .x4-btn-icon-el{width:24px;left:auto}.x4-ie6 .x4-btn-default-toolbar-medium-icon-text-right .x4-btn-icon-el,.x4-quirks .x4-btn-default-toolbar-medium-icon-text-right .x4-btn-icon-el{height:24px}.x4-btn-default-toolbar-medium-icon-text-top .x4-btn-inner{padding-top:28px}.x4-btn-default-toolbar-medium-icon-text-top .x4-btn-icon-el{height:24px;bottom:auto}.x4-ie6 .x4-btn-default-toolbar-medium-icon-text-top .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-toolbar-medium-icon-text-top .x4-btn-icon-el{width:100%}.x4-btn-default-toolbar-medium-icon-text-bottom .x4-btn-inner{padding-bottom:28px}.x4-btn-default-toolbar-medium-icon-text-bottom .x4-btn-icon-el{height:24px;top:auto}.x4-ie6 .x4-btn-default-toolbar-medium-icon-text-bottom .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-toolbar-medium-icon-text-bottom .x4-btn-icon-el{width:100%}.x4-btn-default-toolbar-medium-over{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x4-btn-default-toolbar-medium-focus{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x4-btn-default-toolbar-medium-menu-active,.x4-btn-default-toolbar-medium-pressed{border-color:#7a9ac4;background-image:none;background-color:#bccfe5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#bccfe5),color-stop(48%,#c5d6e7),color-stop(52%,#95c4f4),color-stop(100%,#9fc9f5));background-image:-webkit-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-moz-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-o-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5)}.x4-btn-default-toolbar-medium-over .x4-frame-tl,.x4-btn-default-toolbar-medium-over .x4-frame-bl,.x4-btn-default-toolbar-medium-over .x4-frame-tr,.x4-btn-default-toolbar-medium-over .x4-frame-br,.x4-btn-default-toolbar-medium-over .x4-frame-tc,.x4-btn-default-toolbar-medium-over .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-over-corners.gif)}.x4-btn-default-toolbar-medium-over .x4-frame-ml,.x4-btn-default-toolbar-medium-over .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-over-sides.gif)}.x4-btn-default-toolbar-medium-over .x4-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-medium-over-fbg.gif)}.x4-btn-default-toolbar-medium-focus .x4-frame-tl,.x4-btn-default-toolbar-medium-focus .x4-frame-bl,.x4-btn-default-toolbar-medium-focus .x4-frame-tr,.x4-btn-default-toolbar-medium-focus .x4-frame-br,.x4-btn-default-toolbar-medium-focus .x4-frame-tc,.x4-btn-default-toolbar-medium-focus .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-focus-corners.gif)}.x4-btn-default-toolbar-medium-focus .x4-frame-ml,.x4-btn-default-toolbar-medium-focus .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-focus-sides.gif)}.x4-btn-default-toolbar-medium-focus .x4-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif)}.x4-btn-default-toolbar-medium-menu-active .x4-frame-tl,.x4-btn-default-toolbar-medium-menu-active .x4-frame-bl,.x4-btn-default-toolbar-medium-menu-active .x4-frame-tr,.x4-btn-default-toolbar-medium-menu-active .x4-frame-br,.x4-btn-default-toolbar-medium-menu-active .x4-frame-tc,.x4-btn-default-toolbar-medium-menu-active .x4-frame-bc,.x4-btn-default-toolbar-medium-pressed .x4-frame-tl,.x4-btn-default-toolbar-medium-pressed .x4-frame-bl,.x4-btn-default-toolbar-medium-pressed .x4-frame-tr,.x4-btn-default-toolbar-medium-pressed .x4-frame-br,.x4-btn-default-toolbar-medium-pressed .x4-frame-tc,.x4-btn-default-toolbar-medium-pressed .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif)}.x4-btn-default-toolbar-medium-menu-active .x4-frame-ml,.x4-btn-default-toolbar-medium-menu-active .x4-frame-mr,.x4-btn-default-toolbar-medium-pressed .x4-frame-ml,.x4-btn-default-toolbar-medium-pressed .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif)}.x4-btn-default-toolbar-medium-menu-active .x4-frame-mc,.x4-btn-default-toolbar-medium-pressed .x4-frame-mc{background-color:#bccfe5;background-image:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif)}.x4-btn-default-toolbar-medium-disabled .x4-frame-tl,.x4-btn-default-toolbar-medium-disabled .x4-frame-bl,.x4-btn-default-toolbar-medium-disabled .x4-frame-tr,.x4-btn-default-toolbar-medium-disabled .x4-frame-br,.x4-btn-default-toolbar-medium-disabled .x4-frame-tc,.x4-btn-default-toolbar-medium-disabled .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif)}.x4-btn-default-toolbar-medium-disabled .x4-frame-ml,.x4-btn-default-toolbar-medium-disabled .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)}.x4-btn-default-toolbar-medium-disabled .x4-frame-mc{background-color:transparent}.x4-nlg .x4-btn-default-toolbar-medium-over{background-image:url(images/btn/btn-default-toolbar-medium-over-bg.gif)}.x4-nlg .x4-btn-default-toolbar-medium-focus{background-image:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)}.x4-nlg .x4-btn-default-toolbar-medium-menu-active,.x4-nlg .x4-btn-default-toolbar-medium-pressed{background-image:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)}.x4-nbr .x4-btn-default-toolbar-medium{background-image:none}.x4-btn-default-toolbar-medium .x4-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:14px}.x4-btn-default-toolbar-medium .x4-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:14px}.x4-btn-default-toolbar-medium-over .x4-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x4-btn-default-toolbar-medium-over .x4-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x4-btn-default-toolbar-medium-disabled{filter:alpha(opacity=50);opacity:.5}.x4-btn-default-toolbar-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-over-bg.gif)"}.x4-btn-default-toolbar-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)"}.x4-btn-default-toolbar-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)"}.x4-btn-default-toolbar-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)"}.x4-btn-default-toolbar-large{border-color:transparent}.x4-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:transparent}.x4-btn-default-toolbar-large-mc{background-color:transparent}.x4-nbr .x4-btn-default-toolbar-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-btn-default-toolbar-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x4-btn-default-toolbar-large-tl{background-position:0 -6px}.x4-btn-default-toolbar-large-tr{background-position:right -9px}.x4-btn-default-toolbar-large-bl{background-position:0 -12px}.x4-btn-default-toolbar-large-br{background-position:right -15px}.x4-btn-default-toolbar-large-ml{background-position:0 top}.x4-btn-default-toolbar-large-mr{background-position:right top}.x4-btn-default-toolbar-large-tc{background-position:0 0}.x4-btn-default-toolbar-large-bc{background-position:0 -3px}.x4-btn-default-toolbar-large-tr,.x4-btn-default-toolbar-large-br,.x4-btn-default-toolbar-large-mr{padding-right:3px}.x4-btn-default-toolbar-large-tl,.x4-btn-default-toolbar-large-bl,.x4-btn-default-toolbar-large-ml{padding-left:3px}.x4-btn-default-toolbar-large-tc{height:3px}.x4-btn-default-toolbar-large-bc{height:3px}.x4-btn-default-toolbar-large-tl,.x4-btn-default-toolbar-large-bl,.x4-btn-default-toolbar-large-tr,.x4-btn-default-toolbar-large-br,.x4-btn-default-toolbar-large-tc,.x4-btn-default-toolbar-large-bc,.x4-btn-default-toolbar-large-ml,.x4-btn-default-toolbar-large-mr{zoom:1}.x4-btn-default-toolbar-large-ml,.x4-btn-default-toolbar-large-mr{zoom:1}.x4-btn-default-toolbar-large-mc{padding:1px 1px 1px 1px}.x4-strict .x4-ie7 .x4-btn-default-toolbar-large-tl,.x4-strict .x4-ie7 .x4-btn-default-toolbar-large-bl{position:relative;right:0}.x4-btn-default-toolbar-large .x4-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x4-btn-default-toolbar-large .x4-btn-arrow{background-image:url(images/button/arrow.gif)}.x4-btn-default-toolbar-large .x4-btn-arrow-right{padding-right:12px}.x4-btn-default-toolbar-large .x4-btn-arrow-bottom{padding-bottom:12px}.x4-btn-default-toolbar-large .x4-btn-glyph{font-size:32px;line-height:32px;color:#333;opacity:.5}.x4-ie8m .x4-btn-default-toolbar-large .x4-btn-glyph{color:#999}.x4-btn-default-toolbar-large-disabled{border-color:#e1e1e1;background-image:none;background-color:transparent}.x4-btn-default-toolbar-large-disabled .x4-btn-inner{color:#8c8c8c}.x4-btn-default-toolbar-large-icon .x4-btn-button,.x4-btn-default-toolbar-large-noicon .x4-btn-button{height:32px}.x4-btn-default-toolbar-large-icon .x4-btn-inner,.x4-btn-default-toolbar-large-noicon .x4-btn-inner{line-height:32px}.x4-btn-default-toolbar-large-icon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-toolbar-large-noicon .x4-btn-arrow-right .x4-btn-inner,.x4-btn-default-toolbar-large-icon-text-left .x4-btn-arrow-right .x4-btn-inner{padding-right:0}.x4-btn-default-toolbar-large-icon .x4-btn-inner{width:32px;padding:0}.x4-btn-default-toolbar-large-icon .x4-btn-icon-el{width:32px;height:32px}.x4-btn-default-toolbar-large-icon-text-left .x4-btn-button{height:32px}.x4-btn-default-toolbar-large-icon-text-left .x4-btn-inner{line-height:32px;padding-left:36px}.x4-btn-default-toolbar-large-icon-text-left .x4-btn-icon-el{width:32px;right:auto}.x4-ie6 .x4-btn-default-toolbar-large-icon-text-left .x4-btn-icon-el,.x4-quirks .x4-btn-default-toolbar-large-icon-text-left .x4-btn-icon-el{height:32px}.x4-btn-default-toolbar-large-icon-text-right .x4-btn-button{height:32px}.x4-btn-default-toolbar-large-icon-text-right .x4-btn-inner{line-height:32px;padding-right:36px}.x4-btn-default-toolbar-large-icon-text-right .x4-btn-icon-el{width:32px;left:auto}.x4-ie6 .x4-btn-default-toolbar-large-icon-text-right .x4-btn-icon-el,.x4-quirks .x4-btn-default-toolbar-large-icon-text-right .x4-btn-icon-el{height:32px}.x4-btn-default-toolbar-large-icon-text-top .x4-btn-inner{padding-top:36px}.x4-btn-default-toolbar-large-icon-text-top .x4-btn-icon-el{height:32px;bottom:auto}.x4-ie6 .x4-btn-default-toolbar-large-icon-text-top .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-toolbar-large-icon-text-top .x4-btn-icon-el{width:100%}.x4-btn-default-toolbar-large-icon-text-bottom .x4-btn-inner{padding-bottom:36px}.x4-btn-default-toolbar-large-icon-text-bottom .x4-btn-icon-el{height:32px;top:auto}.x4-ie6 .x4-btn-default-toolbar-large-icon-text-bottom .x4-btn-icon-el,.x4-quirks .x4-ie .x4-btn-default-toolbar-large-icon-text-bottom .x4-btn-icon-el{width:100%}.x4-btn-default-toolbar-large-over{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x4-btn-default-toolbar-large-focus{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x4-btn-default-toolbar-large-menu-active,.x4-btn-default-toolbar-large-pressed{border-color:#7a9ac4;background-image:none;background-color:#bccfe5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#bccfe5),color-stop(48%,#c5d6e7),color-stop(52%,#95c4f4),color-stop(100%,#9fc9f5));background-image:-webkit-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-moz-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-o-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5)}.x4-btn-default-toolbar-large-over .x4-frame-tl,.x4-btn-default-toolbar-large-over .x4-frame-bl,.x4-btn-default-toolbar-large-over .x4-frame-tr,.x4-btn-default-toolbar-large-over .x4-frame-br,.x4-btn-default-toolbar-large-over .x4-frame-tc,.x4-btn-default-toolbar-large-over .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-over-corners.gif)}.x4-btn-default-toolbar-large-over .x4-frame-ml,.x4-btn-default-toolbar-large-over .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-over-sides.gif)}.x4-btn-default-toolbar-large-over .x4-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-large-over-fbg.gif)}.x4-btn-default-toolbar-large-focus .x4-frame-tl,.x4-btn-default-toolbar-large-focus .x4-frame-bl,.x4-btn-default-toolbar-large-focus .x4-frame-tr,.x4-btn-default-toolbar-large-focus .x4-frame-br,.x4-btn-default-toolbar-large-focus .x4-frame-tc,.x4-btn-default-toolbar-large-focus .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-focus-corners.gif)}.x4-btn-default-toolbar-large-focus .x4-frame-ml,.x4-btn-default-toolbar-large-focus .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-focus-sides.gif)}.x4-btn-default-toolbar-large-focus .x4-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-large-focus-fbg.gif)}.x4-btn-default-toolbar-large-menu-active .x4-frame-tl,.x4-btn-default-toolbar-large-menu-active .x4-frame-bl,.x4-btn-default-toolbar-large-menu-active .x4-frame-tr,.x4-btn-default-toolbar-large-menu-active .x4-frame-br,.x4-btn-default-toolbar-large-menu-active .x4-frame-tc,.x4-btn-default-toolbar-large-menu-active .x4-frame-bc,.x4-btn-default-toolbar-large-pressed .x4-frame-tl,.x4-btn-default-toolbar-large-pressed .x4-frame-bl,.x4-btn-default-toolbar-large-pressed .x4-frame-tr,.x4-btn-default-toolbar-large-pressed .x4-frame-br,.x4-btn-default-toolbar-large-pressed .x4-frame-tc,.x4-btn-default-toolbar-large-pressed .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-pressed-corners.gif)}.x4-btn-default-toolbar-large-menu-active .x4-frame-ml,.x4-btn-default-toolbar-large-menu-active .x4-frame-mr,.x4-btn-default-toolbar-large-pressed .x4-frame-ml,.x4-btn-default-toolbar-large-pressed .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-pressed-sides.gif)}.x4-btn-default-toolbar-large-menu-active .x4-frame-mc,.x4-btn-default-toolbar-large-pressed .x4-frame-mc{background-color:#bccfe5;background-image:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif)}.x4-btn-default-toolbar-large-disabled .x4-frame-tl,.x4-btn-default-toolbar-large-disabled .x4-frame-bl,.x4-btn-default-toolbar-large-disabled .x4-frame-tr,.x4-btn-default-toolbar-large-disabled .x4-frame-br,.x4-btn-default-toolbar-large-disabled .x4-frame-tc,.x4-btn-default-toolbar-large-disabled .x4-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-disabled-corners.gif)}.x4-btn-default-toolbar-large-disabled .x4-frame-ml,.x4-btn-default-toolbar-large-disabled .x4-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)}.x4-btn-default-toolbar-large-disabled .x4-frame-mc{background-color:transparent}.x4-nlg .x4-btn-default-toolbar-large-over{background-image:url(images/btn/btn-default-toolbar-large-over-bg.gif)}.x4-nlg .x4-btn-default-toolbar-large-focus{background-image:url(images/btn/btn-default-toolbar-large-focus-bg.gif)}.x4-nlg .x4-btn-default-toolbar-large-menu-active,.x4-nlg .x4-btn-default-toolbar-large-pressed{background-image:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)}.x4-nbr .x4-btn-default-toolbar-large{background-image:none}.x4-btn-default-toolbar-large .x4-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:14px}.x4-btn-default-toolbar-large .x4-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:14px}.x4-btn-default-toolbar-large-over .x4-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x4-btn-default-toolbar-large-over .x4-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x4-btn-default-toolbar-large-disabled{filter:alpha(opacity=50);opacity:.5}.x4-btn-default-toolbar-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-over-bg.gif)"}.x4-btn-default-toolbar-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-focus-bg.gif)"}.x4-btn-default-toolbar-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)"}.x4-btn-default-toolbar-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)"}.x4-btn-icon-text-left .x4-btn-icon-el{background-position:left center}.x4-btn-icon-text-right .x4-btn-icon-el{background-position:right center}.x4-btn-icon-text-top .x4-btn-icon-el{background-position:center top}.x4-btn-icon-text-bottom .x4-btn-icon-el{background-position:center bottom}.x4-btn-arrow-right{background-position:right center}.x4-btn-arrow-bottom{background-position:center bottom}.x4-btn-arrow{background-repeat:no-repeat}.x4-btn-split{display:block;background-repeat:no-repeat}.x4-btn-split-right{background-position:right center}.x4-btn-split-bottom{background-position:center bottom}.x4-cycle-fixed-width .x4-btn-inner{text-align:inherit}.x4-toolbar{font-size:11px;border-style:solid;padding:2px 0 2px 2px}.x4-toolbar-item{margin:0 2px 0 0}.x4-toolbar-text{margin:0 6px 0 4px;color:#4c4c4c;line-height:16px;font-family:tahoma,arial,verdana,sans-serif;font-size:11px;font-weight:normal}.x4-toolbar-separator-horizontal{margin:0 2px 0 0;height:14px;border-style:solid;border-width:0 1px;border-left-color:#98c8ff;border-right-color:white}.x4-toolbar-footer{background:transparent;border:0;margin:3px 0 0;padding:2px 0 2px 6px}.x4-toolbar-footer .x4-toolbar-item{margin:0 6px 0 0}.x4-toolbar-spacer{width:2px}.x4-toolbar-more-icon{background-image:url(images/toolbar/more.gif)!important;background-position:center center!important;background-repeat:no-repeat}.x4-toolbar-default{border-color:#99bce8;border-width:1px;background-image:none;background-color:#d3e1f1;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dfe9f5),color-stop(100%,#d3e1f1));background-image:-webkit-linear-gradient(top,#dfe9f5,#d3e1f1);background-image:-moz-linear-gradient(top,#dfe9f5,#d3e1f1);background-image:-o-linear-gradient(top,#dfe9f5,#d3e1f1);background-image:linear-gradient(top,#dfe9f5,#d3e1f1)}.x4-toolbar-default .x4-box-scroller{cursor:pointer}.x4-toolbar-default .x4-box-scroller-disabled{filter:alpha(opacity=50);opacity:.5;cursor:default}.x4-nlg .x4-toolbar-default{background-image:url(images/toolbar/toolbar-default-bg.gif)!important;background-repeat:repeat-x}.x4-toolbar-default:after{display:none;content:"x-slicer:bg:url(images/toolbar/toolbar-default-bg.gif), stretch:bottom"}.x4-toolbar-scroll-left{background-image:url(images/toolbar/scroll-left.gif);background-position:-14px 0;width:14px;height:22px;border-style:solid;border-color:#8db2e3;border-width:0 0 1px;margin-top:0}.x4-toolbar-scroll-left-hover{background-position:0 0}.x4-toolbar-scroll-right{background-image:url(images/toolbar/scroll-right.gif);width:14px;height:22px;border-style:solid;border-color:#8db2e3;border-width:0 0 1px;margin-top:0}.x4-toolbar-scroll-right-hover{background-position:-14px 0}.x4-toolbar .x4-box-menu-after{margin:0 2px 0 2px}.x4-toolbar-vertical{padding:2px 2px 0 2px}.x4-toolbar-vertical .x4-toolbar-item{margin:0 0 2px 0}.x4-toolbar-vertical .x4-toolbar-text{margin:4px 0 6px 0}.x4-toolbar-vertical .x4-toolbar-separator-vertical{margin:0 5px 2px;border-style:solid none;border-width:1px 0;border-top-color:#98c8ff;border-bottom-color:white}.x4-toolbar-vertical .x4-box-menu-after,.x4-toolbar-vertical .x4-rtl.x4-box-menu-after{margin:2px 0 2px 0;display:block;float:none}.x4-header-draggable .x4-header-body,.x4-header-ghost{cursor:move}.x4-header-text{white-space:nowrap}.x4-panel-ghost{filter:alpha(opacity=65);opacity:.65}.x4-panel-default{border-color:#99bce8;padding:0}.x4-panel-header-default{font-size:11px;border:1px solid #99bce8}.x4-panel-header-default-horizontal{padding:4px 5px 4px 5px}.x4-panel-header-default-horizontal-noborder{padding:5px 6px 4px 6px}.x4-panel-header-default-vertical{padding:5px 4px 5px 4px}.x4-panel-header-default-vertical-noborder{padding:6px 5px 6px 4px}.x4-panel-header-text-container-default{color:#04408c;font-size:11px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;line-height:15px;padding:0 2px 1px;text-transform:none}.x4-panel-body-default{background:white;border-color:#99bce8;color:black;font-size:12px;font-size:normal;border-width:1px;border-style:solid}.x4-panel-header-default{background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-panel-header-default-vertical{background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-nlg .x4-panel-header-default-top{background:url(images/panel-header/panel-header-default-top-bg.gif)}.x4-nlg .x4-panel-header-default-bottom{background:url(images/panel-header/panel-header-default-bottom-bg.gif)}.x4-nlg .x4-panel-header-default-left{background:url(images/panel-header/panel-header-default-left-bg.gif) top right}.x4-nlg .x4-panel-header-default-right{background:url(images/panel-header/panel-header-default-right-bg.gif) top right}.x4-panel .x4-panel-header-default-collapsed-border-top{border-bottom-width:1px!important}.x4-panel .x4-panel-header-default-collapsed-border-right{border-left-width:1px!important}.x4-panel .x4-panel-header-default-collapsed-border-bottom{border-top-width:1px!important}.x4-panel .x4-panel-header-default-collapsed-border-left{border-right-width:1px!important}.x4-panel-header-default-top:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-top-bg.gif), stretch:bottom"}.x4-panel-header-default-bottom:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-bottom-bg.gif), stretch:bottom"}.x4-panel-header-default-left:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-left-bg.gif), stretch:left"}.x4-panel-header-default-right:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-right-bg.gif), stretch:left"}.x4-panel-header-default-vertical .x4-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x4-ie9m .x4-panel-header-default-vertical .x4-panel-header-text-container{background-color:#cbddf3;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3)}.x4-panel-header-default-top{-webkit-box-shadow:#f3f7fb 0 1px 0 0 inset;-moz-box-shadow:#f3f7fb 0 1px 0 0 inset;box-shadow:#f3f7fb 0 1px 0 0 inset}.x4-panel-header-default-right{-webkit-box-shadow:#f3f7fb -1px 0 0 0 inset;-moz-box-shadow:#f3f7fb -1px 0 0 0 inset;box-shadow:#f3f7fb -1px 0 0 0 inset}.x4-panel-header-default-bottom{-webkit-box-shadow:#f3f7fb 0 -1px 0 0 inset;-moz-box-shadow:#f3f7fb 0 -1px 0 0 inset;box-shadow:#f3f7fb 0 -1px 0 0 inset}.x4-panel-header-default-left{-webkit-box-shadow:#f3f7fb 1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 1px 0 0 0 inset;box-shadow:#f3f7fb 1px 0 0 0 inset}.x4-panel-header-default .x4-panel-header-icon{width:16px;height:16px;background-position:center center}.x4-panel-header-default .x4-panel-header-glyph{color:#04408c;font-size:16px;line-height:16px;opacity:.5}.x4-ie8m .x4-panel-header-default .x4-panel-header-glyph{color:#678ebf}.x4-panel-header-default-horizontal .x4-panel-header-icon-before-title{margin:0 2px 0 0}.x4-panel-header-default-horizontal .x4-panel-header-icon-after-title{margin:0 0 0 2px}.x4-panel-header-default-vertical .x4-panel-header-icon-before-title{margin:0 0 2px 0}.x4-panel-header-default-vertical .x4-panel-header-icon-after-title{margin:2px 0 0 0}.x4-panel-header-default-horizontal .x4-tool-after-title{margin:0 0 0 2px}.x4-panel-header-default-horizontal .x4-tool-before-title{margin:0 2px 0 0}.x4-panel-header-default-vertical .x4-tool-after-title{margin:2px 0 0 0}.x4-panel-header-default-vertical .x4-tool-before-title{margin:0 0 2px 0}.x4-panel-default-resizable .x4-panel-handle{filter:alpha(opacity=0);opacity:0}.x4-panel-default-framed{border-color:#99bce8;padding:4px}.x4-panel-header-default-framed{font-size:11px;border:1px solid #99bce8}.x4-panel-header-default-framed-horizontal{padding:4px 5px 4px 5px}.x4-panel-header-default-framed-horizontal-noborder{padding:5px 6px 4px 6px}.x4-panel-header-default-framed-vertical{padding:5px 4px 5px 4px}.x4-panel-header-default-framed-vertical-noborder{padding:6px 5px 6px 4px}.x4-panel-header-text-container-default-framed{color:#04408c;font-size:11px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;line-height:15px;padding:0 2px 1px;text-transform:none}.x4-panel-body-default-framed{background:#dfe9f6;border-color:#99bce8;color:black;font-size:12px;font-size:normal;border-width:0;border-style:solid}.x4-panel-default-framed{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:#dfe9f6}.x4-panel-default-framed-mc{background-color:#dfe9f6}.x4-nbr .x4-panel-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-panel-default-framed-frameInfo{font-family:dh-4-4-4-4-1-1-1-1-4-4-4-4}.x4-panel-default-framed-tl{background-position:0 -8px}.x4-panel-default-framed-tr{background-position:right -12px}.x4-panel-default-framed-bl{background-position:0 -16px}.x4-panel-default-framed-br{background-position:right -20px}.x4-panel-default-framed-ml{background-position:0 top}.x4-panel-default-framed-mr{background-position:right top}.x4-panel-default-framed-tc{background-position:0 0}.x4-panel-default-framed-bc{background-position:0 -4px}.x4-panel-default-framed-tr,.x4-panel-default-framed-br,.x4-panel-default-framed-mr{padding-right:4px}.x4-panel-default-framed-tl,.x4-panel-default-framed-bl,.x4-panel-default-framed-ml{padding-left:4px}.x4-panel-default-framed-tc{height:4px}.x4-panel-default-framed-bc{height:4px}.x4-panel-default-framed-tl,.x4-panel-default-framed-bl,.x4-panel-default-framed-tr,.x4-panel-default-framed-br,.x4-panel-default-framed-tc,.x4-panel-default-framed-bc,.x4-panel-default-framed-ml,.x4-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-corners.gif)}.x4-panel-default-framed-ml,.x4-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-sides.gif);background-repeat:repeat-y}.x4-panel-default-framed-mc{padding:1px 1px 1px 1px}.x4-strict .x4-ie7 .x4-panel-default-framed-tl,.x4-strict .x4-ie7 .x4-panel-default-framed-bl{position:relative;right:0}.x4-panel-default-framed:after{display:none;content:"x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"}.x4-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:4px 5px 4px 5px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-panel-header-default-framed-top-mc{background-image:url(images/panel-header/panel-header-default-framed-top-fbg.gif);background-position:0 top;background-color:#cbddf3}.x4-nlg .x4-panel-header-default-framed-top{background-image:url(images/panel-header/panel-header-default-framed-top-bg.gif);background-position:0 top}.x4-nbr .x4-panel-header-default-framed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-panel-header-default-framed-top-frameInfo{font-family:dh-4-4-0-0-1-1-0-1-4-5-4-5}.x4-panel-header-default-framed-top-tl{background-position:0 -8px}.x4-panel-header-default-framed-top-tr{background-position:right -12px}.x4-panel-header-default-framed-top-bl{background-position:0 -16px}.x4-panel-header-default-framed-top-br{background-position:right -20px}.x4-panel-header-default-framed-top-ml{background-position:0 top}.x4-panel-header-default-framed-top-mr{background-position:right top}.x4-panel-header-default-framed-top-tc{background-position:0 0}.x4-panel-header-default-framed-top-bc{background-position:0 -4px}.x4-panel-header-default-framed-top-tr,.x4-panel-header-default-framed-top-br,.x4-panel-header-default-framed-top-mr{padding-right:4px}.x4-panel-header-default-framed-top-tl,.x4-panel-header-default-framed-top-bl,.x4-panel-header-default-framed-top-ml{padding-left:4px}.x4-panel-header-default-framed-top-tc{height:4px}.x4-panel-header-default-framed-top-bc{height:0}.x4-panel-header-default-framed-top-tl,.x4-panel-header-default-framed-top-bl,.x4-panel-header-default-framed-top-tr,.x4-panel-header-default-framed-top-br,.x4-panel-header-default-framed-top-tc,.x4-panel-header-default-framed-top-bc,.x4-panel-header-default-framed-top-ml,.x4-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-corners.gif)}.x4-panel-header-default-framed-top-ml,.x4-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-sides.gif)}.x4-panel-header-default-framed-top-mc{padding:1px 2px 4px 2px}.x4-strict .x4-ie7 .x4-panel-header-default-framed-top-tl,.x4-strict .x4-ie7 .x4-panel-header-default-framed-top-bl{position:relative;right:0}.x4-panel-header-default-framed-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"}.x4-panel-header-default-framed-right{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 4px 5px 4px;border-width:1px 1px 1px 0;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-panel-header-default-framed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-right-fbg.gif);background-position:right 0;background-color:#cbddf3}.x4-nlg .x4-panel-header-default-framed-right{background-image:url(images/panel-header/panel-header-default-framed-right-bg.gif);background-position:right 0}.x4-nbr .x4-panel-header-default-framed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-panel-header-default-framed-right-frameInfo{font-family:dv-0-4-4-0-1-1-1-0-5-4-5-4}.x4-panel-header-default-framed-right-tl{background-position:0 0}.x4-panel-header-default-framed-right-tr{background-position:0 -4px}.x4-panel-header-default-framed-right-bl{background-position:0 -8px}.x4-panel-header-default-framed-right-br{background-position:0 -12px}.x4-panel-header-default-framed-right-ml{background-position:-4px 0}.x4-panel-header-default-framed-right-mr{background-position:right 0}.x4-panel-header-default-framed-right-tc{background-position:right 0}.x4-panel-header-default-framed-right-bc{background-position:right -4px}.x4-panel-header-default-framed-right-tr,.x4-panel-header-default-framed-right-br,.x4-panel-header-default-framed-right-mr{padding-right:4px}.x4-panel-header-default-framed-right-tl,.x4-panel-header-default-framed-right-bl,.x4-panel-header-default-framed-right-ml{padding-left:0}.x4-panel-header-default-framed-right-tc{height:4px}.x4-panel-header-default-framed-right-bc{height:4px}.x4-panel-header-default-framed-right-tl,.x4-panel-header-default-framed-right-bl,.x4-panel-header-default-framed-right-tr,.x4-panel-header-default-framed-right-br,.x4-panel-header-default-framed-right-tc,.x4-panel-header-default-framed-right-bc,.x4-panel-header-default-framed-right-ml,.x4-panel-header-default-framed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-corners.gif)}.x4-panel-header-default-framed-right-tc,.x4-panel-header-default-framed-right-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-sides.gif);background-repeat:repeat-x}.x4-panel-header-default-framed-right-mc{padding:2px 1px 2px 4px}.x4-strict .x4-ie7 .x4-panel-header-default-framed-right-tl,.x4-strict .x4-ie7 .x4-panel-header-default-framed-right-bl{position:relative;right:0}.x4-panel-header-default-framed-right:after{display:none;content:"x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-right-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-right-bg.gif), corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif)"}.x4-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:4px 5px 4px 5px;border-width:0 1px 1px 1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-panel-header-default-framed-bottom-mc{background-image:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif);background-position:0 bottom;background-color:#cbddf3}.x4-nlg .x4-panel-header-default-framed-bottom{background-image:url(images/panel-header/panel-header-default-framed-bottom-bg.gif);background-position:0 bottom}.x4-nbr .x4-panel-header-default-framed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-panel-header-default-framed-bottom-frameInfo{font-family:dh-0-0-4-4-0-1-1-1-4-5-4-5}.x4-panel-header-default-framed-bottom-tl{background-position:0 -8px}.x4-panel-header-default-framed-bottom-tr{background-position:right -12px}.x4-panel-header-default-framed-bottom-bl{background-position:0 -16px}.x4-panel-header-default-framed-bottom-br{background-position:right -20px}.x4-panel-header-default-framed-bottom-ml{background-position:0 bottom}.x4-panel-header-default-framed-bottom-mr{background-position:right bottom}.x4-panel-header-default-framed-bottom-tc{background-position:0 0}.x4-panel-header-default-framed-bottom-bc{background-position:0 -4px}.x4-panel-header-default-framed-bottom-tr,.x4-panel-header-default-framed-bottom-br,.x4-panel-header-default-framed-bottom-mr{padding-right:4px}.x4-panel-header-default-framed-bottom-tl,.x4-panel-header-default-framed-bottom-bl,.x4-panel-header-default-framed-bottom-ml{padding-left:4px}.x4-panel-header-default-framed-bottom-tc{height:0}.x4-panel-header-default-framed-bottom-bc{height:4px}.x4-panel-header-default-framed-bottom-tl,.x4-panel-header-default-framed-bottom-bl,.x4-panel-header-default-framed-bottom-tr,.x4-panel-header-default-framed-bottom-br,.x4-panel-header-default-framed-bottom-tc,.x4-panel-header-default-framed-bottom-bc,.x4-panel-header-default-framed-bottom-ml,.x4-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-corners.gif)}.x4-panel-header-default-framed-bottom-ml,.x4-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)}.x4-panel-header-default-framed-bottom-mc{padding:4px 2px 1px 2px}.x4-strict .x4-ie7 .x4-panel-header-default-framed-bottom-tl,.x4-strict .x4-ie7 .x4-panel-header-default-framed-bottom-bl{position:relative;right:0}.x4-panel-header-default-framed-bottom:after{display:none;content:"x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"}.x4-panel-header-default-framed-left{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 4px 5px 4px;border-width:1px 0 1px 1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-panel-header-default-framed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-left-fbg.gif);background-position:left 0;background-color:#cbddf3}.x4-nlg .x4-panel-header-default-framed-left{background-image:url(images/panel-header/panel-header-default-framed-left-bg.gif);background-position:left 0}.x4-nbr .x4-panel-header-default-framed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-panel-header-default-framed-left-frameInfo{font-family:dv-4-0-0-4-1-0-1-1-5-4-5-4}.x4-panel-header-default-framed-left-tl{background-position:0 0}.x4-panel-header-default-framed-left-tr{background-position:0 -4px}.x4-panel-header-default-framed-left-bl{background-position:0 -8px}.x4-panel-header-default-framed-left-br{background-position:0 -12px}.x4-panel-header-default-framed-left-ml{background-position:-4px 0}.x4-panel-header-default-framed-left-mr{background-position:right 0}.x4-panel-header-default-framed-left-tc{background-position:left 0}.x4-panel-header-default-framed-left-bc{background-position:left -4px}.x4-panel-header-default-framed-left-tr,.x4-panel-header-default-framed-left-br,.x4-panel-header-default-framed-left-mr{padding-right:0}.x4-panel-header-default-framed-left-tl,.x4-panel-header-default-framed-left-bl,.x4-panel-header-default-framed-left-ml{padding-left:4px}.x4-panel-header-default-framed-left-tc{height:4px}.x4-panel-header-default-framed-left-bc{height:4px}.x4-panel-header-default-framed-left-tl,.x4-panel-header-default-framed-left-bl,.x4-panel-header-default-framed-left-tr,.x4-panel-header-default-framed-left-br,.x4-panel-header-default-framed-left-tc,.x4-panel-header-default-framed-left-bc,.x4-panel-header-default-framed-left-ml,.x4-panel-header-default-framed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-corners.gif)}.x4-panel-header-default-framed-left-tc,.x4-panel-header-default-framed-left-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-sides.gif);background-repeat:repeat-x}.x4-panel-header-default-framed-left-mc{padding:2px 4px 2px 1px}.x4-strict .x4-ie7 .x4-panel-header-default-framed-left-tl,.x4-strict .x4-ie7 .x4-panel-header-default-framed-left-bl{position:relative;right:0}.x4-panel-header-default-framed-left:after{display:none;content:"x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-left-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-left-bg.gif), corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif)"}.x4-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:4px 5px 4px 5px;border-width:1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-panel-header-default-framed-collapsed-top-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif);background-position:0 top;background-color:#cbddf3}.x4-nlg .x4-panel-header-default-framed-collapsed-top{background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif);background-position:0 top}.x4-nbr .x4-panel-header-default-framed-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-panel-header-default-framed-collapsed-top-frameInfo{font-family:dh-4-4-4-4-1-1-1-1-4-5-4-5}.x4-panel-header-default-framed-collapsed-top-tl{background-position:0 -8px}.x4-panel-header-default-framed-collapsed-top-tr{background-position:right -12px}.x4-panel-header-default-framed-collapsed-top-bl{background-position:0 -16px}.x4-panel-header-default-framed-collapsed-top-br{background-position:right -20px}.x4-panel-header-default-framed-collapsed-top-ml{background-position:0 top}.x4-panel-header-default-framed-collapsed-top-mr{background-position:right top}.x4-panel-header-default-framed-collapsed-top-tc{background-position:0 0}.x4-panel-header-default-framed-collapsed-top-bc{background-position:0 -4px}.x4-panel-header-default-framed-collapsed-top-tr,.x4-panel-header-default-framed-collapsed-top-br,.x4-panel-header-default-framed-collapsed-top-mr{padding-right:4px}.x4-panel-header-default-framed-collapsed-top-tl,.x4-panel-header-default-framed-collapsed-top-bl,.x4-panel-header-default-framed-collapsed-top-ml{padding-left:4px}.x4-panel-header-default-framed-collapsed-top-tc{height:4px}.x4-panel-header-default-framed-collapsed-top-bc{height:4px}.x4-panel-header-default-framed-collapsed-top-tl,.x4-panel-header-default-framed-collapsed-top-bl,.x4-panel-header-default-framed-collapsed-top-tr,.x4-panel-header-default-framed-collapsed-top-br,.x4-panel-header-default-framed-collapsed-top-tc,.x4-panel-header-default-framed-collapsed-top-bc,.x4-panel-header-default-framed-collapsed-top-ml,.x4-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif)}.x4-panel-header-default-framed-collapsed-top-ml,.x4-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)}.x4-panel-header-default-framed-collapsed-top-mc{padding:1px 2px 1px 2px}.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-top-tl,.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-top-bl{position:relative;right:0}.x4-panel-header-default-framed-collapsed-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"}.x4-panel-header-default-framed-collapsed-right{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-panel-header-default-framed-collapsed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif);background-position:right 0;background-color:#cbddf3}.x4-nlg .x4-panel-header-default-framed-collapsed-right{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif);background-position:right 0}.x4-nbr .x4-panel-header-default-framed-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-panel-header-default-framed-collapsed-right-frameInfo{font-family:dv-4-4-4-4-1-1-1-1-5-4-5-4}.x4-panel-header-default-framed-collapsed-right-tl{background-position:0 0}.x4-panel-header-default-framed-collapsed-right-tr{background-position:0 -4px}.x4-panel-header-default-framed-collapsed-right-bl{background-position:0 -8px}.x4-panel-header-default-framed-collapsed-right-br{background-position:0 -12px}.x4-panel-header-default-framed-collapsed-right-ml{background-position:-4px 0}.x4-panel-header-default-framed-collapsed-right-mr{background-position:right 0}.x4-panel-header-default-framed-collapsed-right-tc{background-position:right 0}.x4-panel-header-default-framed-collapsed-right-bc{background-position:right -4px}.x4-panel-header-default-framed-collapsed-right-tr,.x4-panel-header-default-framed-collapsed-right-br,.x4-panel-header-default-framed-collapsed-right-mr{padding-right:4px}.x4-panel-header-default-framed-collapsed-right-tl,.x4-panel-header-default-framed-collapsed-right-bl,.x4-panel-header-default-framed-collapsed-right-ml{padding-left:4px}.x4-panel-header-default-framed-collapsed-right-tc{height:4px}.x4-panel-header-default-framed-collapsed-right-bc{height:4px}.x4-panel-header-default-framed-collapsed-right-tl,.x4-panel-header-default-framed-collapsed-right-bl,.x4-panel-header-default-framed-collapsed-right-tr,.x4-panel-header-default-framed-collapsed-right-br,.x4-panel-header-default-framed-collapsed-right-tc,.x4-panel-header-default-framed-collapsed-right-bc,.x4-panel-header-default-framed-collapsed-right-ml,.x4-panel-header-default-framed-collapsed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif)}.x4-panel-header-default-framed-collapsed-right-tc,.x4-panel-header-default-framed-collapsed-right-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif);background-repeat:repeat-x}.x4-panel-header-default-framed-collapsed-right-mc{padding:2px 1px 2px 1px}.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-right-tl,.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-right-bl{position:relative;right:0}.x4-panel-header-default-framed-collapsed-right:after{display:none;content:"x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif)"}.x4-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:4px 5px 4px 5px;border-width:1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-panel-header-default-framed-collapsed-bottom-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif);background-position:0 bottom;background-color:#cbddf3}.x4-nlg .x4-panel-header-default-framed-collapsed-bottom{background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif);background-position:0 bottom}.x4-nbr .x4-panel-header-default-framed-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-panel-header-default-framed-collapsed-bottom-frameInfo{font-family:dh-4-4-4-4-1-1-1-1-4-5-4-5}.x4-panel-header-default-framed-collapsed-bottom-tl{background-position:0 -8px}.x4-panel-header-default-framed-collapsed-bottom-tr{background-position:right -12px}.x4-panel-header-default-framed-collapsed-bottom-bl{background-position:0 -16px}.x4-panel-header-default-framed-collapsed-bottom-br{background-position:right -20px}.x4-panel-header-default-framed-collapsed-bottom-ml{background-position:0 bottom}.x4-panel-header-default-framed-collapsed-bottom-mr{background-position:right bottom}.x4-panel-header-default-framed-collapsed-bottom-tc{background-position:0 0}.x4-panel-header-default-framed-collapsed-bottom-bc{background-position:0 -4px}.x4-panel-header-default-framed-collapsed-bottom-tr,.x4-panel-header-default-framed-collapsed-bottom-br,.x4-panel-header-default-framed-collapsed-bottom-mr{padding-right:4px}.x4-panel-header-default-framed-collapsed-bottom-tl,.x4-panel-header-default-framed-collapsed-bottom-bl,.x4-panel-header-default-framed-collapsed-bottom-ml{padding-left:4px}.x4-panel-header-default-framed-collapsed-bottom-tc{height:4px}.x4-panel-header-default-framed-collapsed-bottom-bc{height:4px}.x4-panel-header-default-framed-collapsed-bottom-tl,.x4-panel-header-default-framed-collapsed-bottom-bl,.x4-panel-header-default-framed-collapsed-bottom-tr,.x4-panel-header-default-framed-collapsed-bottom-br,.x4-panel-header-default-framed-collapsed-bottom-tc,.x4-panel-header-default-framed-collapsed-bottom-bc,.x4-panel-header-default-framed-collapsed-bottom-ml,.x4-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif)}.x4-panel-header-default-framed-collapsed-bottom-ml,.x4-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)}.x4-panel-header-default-framed-collapsed-bottom-mc{padding:1px 2px 1px 2px}.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-bottom-tl,.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-bottom-bl{position:relative;right:0}.x4-panel-header-default-framed-collapsed-bottom:after{display:none;content:"x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"}.x4-panel-header-default-framed-collapsed-left{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x4-panel-header-default-framed-collapsed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif);background-position:left 0;background-color:#cbddf3}.x4-nlg .x4-panel-header-default-framed-collapsed-left{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif);background-position:left 0}.x4-nbr .x4-panel-header-default-framed-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-panel-header-default-framed-collapsed-left-frameInfo{font-family:dv-4-4-4-4-1-1-1-1-5-4-5-4}.x4-panel-header-default-framed-collapsed-left-tl{background-position:0 0}.x4-panel-header-default-framed-collapsed-left-tr{background-position:0 -4px}.x4-panel-header-default-framed-collapsed-left-bl{background-position:0 -8px}.x4-panel-header-default-framed-collapsed-left-br{background-position:0 -12px}.x4-panel-header-default-framed-collapsed-left-ml{background-position:-4px 0}.x4-panel-header-default-framed-collapsed-left-mr{background-position:right 0}.x4-panel-header-default-framed-collapsed-left-tc{background-position:left 0}.x4-panel-header-default-framed-collapsed-left-bc{background-position:left -4px}.x4-panel-header-default-framed-collapsed-left-tr,.x4-panel-header-default-framed-collapsed-left-br,.x4-panel-header-default-framed-collapsed-left-mr{padding-right:4px}.x4-panel-header-default-framed-collapsed-left-tl,.x4-panel-header-default-framed-collapsed-left-bl,.x4-panel-header-default-framed-collapsed-left-ml{padding-left:4px}.x4-panel-header-default-framed-collapsed-left-tc{height:4px}.x4-panel-header-default-framed-collapsed-left-bc{height:4px}.x4-panel-header-default-framed-collapsed-left-tl,.x4-panel-header-default-framed-collapsed-left-bl,.x4-panel-header-default-framed-collapsed-left-tr,.x4-panel-header-default-framed-collapsed-left-br,.x4-panel-header-default-framed-collapsed-left-tc,.x4-panel-header-default-framed-collapsed-left-bc,.x4-panel-header-default-framed-collapsed-left-ml,.x4-panel-header-default-framed-collapsed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif)}.x4-panel-header-default-framed-collapsed-left-tc,.x4-panel-header-default-framed-collapsed-left-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif);background-repeat:repeat-x}.x4-panel-header-default-framed-collapsed-left-mc{padding:2px 1px 2px 1px}.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-left-tl,.x4-strict .x4-ie7 .x4-panel-header-default-framed-collapsed-left-bl{position:relative;right:0}.x4-panel-header-default-framed-collapsed-left:after{display:none;content:"x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif)"}.x4-panel .x4-panel-header-default-framed-top{border-bottom-width:1px!important}.x4-panel .x4-panel-header-default-framed-right{border-left-width:1px!important}.x4-panel .x4-panel-header-default-framed-bottom{border-top-width:1px!important}.x4-panel .x4-panel-header-default-framed-left{border-right-width:1px!important}.x4-nbr .x4-panel-header-default-framed-collapsed-top{border-bottom-width:0!important}.x4-nbr .x4-panel-header-default-framed-collapsed-right{border-left-width:0!important}.x4-nbr .x4-panel-header-default-framed-collapsed-bottom{border-top-width:0!important}.x4-nbr .x4-panel-header-default-framed-collapsed-left{border-right-width:0!important}.x4-panel-header-default-framed-vertical .x4-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x4-ie9m .x4-panel-header-default-framed-vertical .x4-panel-header-text-container{background-color:#cbddf3;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3)}.x4-panel-header-default-framed-top{-webkit-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset;box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset}.x4-panel-header-default-framed-right{-webkit-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset;box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset}.x4-panel-header-default-framed-bottom{-webkit-box-shadow:#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset;box-shadow:#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset}.x4-panel-header-default-framed-left{-webkit-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb 1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb 1px 0 0 0 inset;box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb 1px 0 0 0 inset}.x4-panel-header-default-framed .x4-panel-header-icon{width:16px;height:16px;background-position:center center}.x4-panel-header-default-framed .x4-panel-header-glyph{color:#04408c;font-size:16px;line-height:16px;opacity:.5}.x4-ie8m .x4-panel-header-default-framed .x4-panel-header-glyph{color:#678ebf}.x4-panel-header-default-framed-horizontal .x4-panel-header-icon-before-title{margin:0 2px 0 0}.x4-panel-header-default-framed-horizontal .x4-panel-header-icon-after-title{margin:0 0 0 2px}.x4-panel-header-default-framed-vertical .x4-panel-header-icon-before-title{margin:0 0 2px 0}.x4-panel-header-default-framed-vertical .x4-panel-header-icon-after-title{margin:2px 0 0 0}.x4-panel-header-default-framed-horizontal .x4-tool-after-title{margin:0 0 0 2px}.x4-panel-header-default-framed-horizontal .x4-tool-before-title{margin:0 2px 0 0}.x4-panel-header-default-framed-vertical .x4-tool-after-title{margin:2px 0 0 0}.x4-panel-header-default-framed-vertical .x4-tool-before-title{margin:0 0 2px 0}.x4-panel-default-framed-resizable .x4-panel-handle{filter:alpha(opacity=0);opacity:0}.x4-tip-anchor{position:absolute;overflow:hidden;height:10px;width:10px;border-style:solid;border-width:5px;border-color:#8eaace;zoom:1}.x4-content-box .x4-tip-anchor{height:0;width:0}.x4-tip-anchor-top{border-top-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x4-tip-anchor-bottom{border-bottom-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-bottom-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x4-tip-anchor-left{border-top-color:transparent;border-bottom-color:transparent;border-left-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-left-color:pink;_filter:chroma(color=pink)}.x4-tip-anchor-right{border-top-color:transparent;border-bottom-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x4-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:#e9f2ff}.x4-tip-default-mc{background-color:#e9f2ff}.x4-nbr .x4-tip-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-tip-default-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x4-tip-default-tl{background-position:0 -6px}.x4-tip-default-tr{background-position:right -9px}.x4-tip-default-bl{background-position:0 -12px}.x4-tip-default-br{background-position:right -15px}.x4-tip-default-ml{background-position:0 top}.x4-tip-default-mr{background-position:right top}.x4-tip-default-tc{background-position:0 0}.x4-tip-default-bc{background-position:0 -3px}.x4-tip-default-tr,.x4-tip-default-br,.x4-tip-default-mr{padding-right:3px}.x4-tip-default-tl,.x4-tip-default-bl,.x4-tip-default-ml{padding-left:3px}.x4-tip-default-tc{height:3px}.x4-tip-default-bc{height:3px}.x4-tip-default-tl,.x4-tip-default-bl,.x4-tip-default-tr,.x4-tip-default-br,.x4-tip-default-tc,.x4-tip-default-bc,.x4-tip-default-ml,.x4-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-corners.gif)}.x4-tip-default-ml,.x4-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-sides.gif);background-repeat:repeat-y}.x4-tip-default-mc{padding:0}.x4-strict .x4-ie7 .x4-tip-default-tl,.x4-strict .x4-ie7 .x4-tip-default-bl{position:relative;right:0}.x4-tip-default:after{display:none;content:"x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"}.x4-tip-default{border-color:#8eaace}.x4-tip-default .x4-tool-img{background-color:#e9f2ff}.x4-tip-header-default .x4-tool-after-title{margin:0 0 0 6px}.x4-tip-header-default .x4-tool-before-title{margin:0 6px 0 0}.x4-tip-header-body-default{padding:3px 3px 0 3px}.x4-tip-header-text-container-default{color:#444;font-size:11px;font-weight:bold}.x4-tip-body-default{padding:3px;color:#444;font-size:11px;font-weight:normal}.x4-tip-body-default a{color:#2a2a2a}.x4-tip-form-invalid{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:white}.x4-tip-form-invalid-mc{background-color:white}.x4-nbr .x4-tip-form-invalid{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-tip-form-invalid-frameInfo{font-family:th-5-5-5-5-1-1-1-1-4-4-4-4}.x4-tip-form-invalid-tl{background-position:0 -10px}.x4-tip-form-invalid-tr{background-position:right -15px}.x4-tip-form-invalid-bl{background-position:0 -20px}.x4-tip-form-invalid-br{background-position:right -25px}.x4-tip-form-invalid-ml{background-position:0 top}.x4-tip-form-invalid-mr{background-position:right top}.x4-tip-form-invalid-tc{background-position:0 0}.x4-tip-form-invalid-bc{background-position:0 -5px}.x4-tip-form-invalid-tr,.x4-tip-form-invalid-br,.x4-tip-form-invalid-mr{padding-right:5px}.x4-tip-form-invalid-tl,.x4-tip-form-invalid-bl,.x4-tip-form-invalid-ml{padding-left:5px}.x4-tip-form-invalid-tc{height:5px}.x4-tip-form-invalid-bc{height:5px}.x4-tip-form-invalid-tl,.x4-tip-form-invalid-bl,.x4-tip-form-invalid-tr,.x4-tip-form-invalid-br,.x4-tip-form-invalid-tc,.x4-tip-form-invalid-bc,.x4-tip-form-invalid-ml,.x4-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-corners.gif)}.x4-tip-form-invalid-ml,.x4-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-sides.gif);background-repeat:repeat-y}.x4-tip-form-invalid-mc{padding:0}.x4-strict .x4-ie7 .x4-tip-form-invalid-tl,.x4-strict .x4-ie7 .x4-tip-form-invalid-bl{position:relative;right:0}.x4-tip-form-invalid:after{display:none;content:"x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"}.x4-tip-form-invalid{border-color:#a1311f;-webkit-box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset;-moz-box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset;box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset}.x4-tip-form-invalid .x4-tool-img{background-color:white}.x4-tip-header-form-invalid .x4-tool-after-title{margin:0 0 0 6px}.x4-tip-header-form-invalid .x4-tool-before-title{margin:0 6px 0 0}.x4-tip-header-body-form-invalid{padding:3px 3px 0 3px}.x4-tip-header-text-container-form-invalid{color:#444;font-size:11px;font-weight:bold}.x4-tip-body-form-invalid{padding:3px 3px 3px 22px;color:#444;font-size:11px;font-weight:normal}.x4-tip-body-form-invalid a{color:#2a2a2a}.x4-tip-body-form-invalid{background:1px 1px no-repeat;background-image:url(images/form/exclamation.gif)}.x4-tip-body-form-invalid li{margin-bottom:4px}.x4-tip-body-form-invalid li.last{margin-bottom:0}.x4-btn-group-default{border-color:#b7c8d7;-webkit-box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset;-moz-box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset;box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset}.x4-btn-group-header-default{margin:2px 2px 0 2px;padding:1px 0;line-height:15px;background:#c2d8f0;-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}.x4-btn-group-header-default .x4-tool-img{background-color:#c2d8f0}.x4-btn-group-header-text-container-default{font:normal 11px tahoma,arial,verdana,sans-serif;line-height:15px;color:#3e6aaa}.x4-btn-group-body-default{padding:0 1px}.x4-btn-group-body-default .x4-table-layout{border-spacing:0}.x4-btn-group-default-framed{-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:1px 1px 1px 1px;border-width:1px;border-style:solid;background-color:#d0def0}.x4-btn-group-default-framed-mc{background-color:#d0def0}.x4-nbr .x4-btn-group-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-btn-group-default-framed-frameInfo{font-family:dh-2-2-2-2-1-1-1-1-1-1-1-1}.x4-btn-group-default-framed-tl{background-position:0 -4px}.x4-btn-group-default-framed-tr{background-position:right -6px}.x4-btn-group-default-framed-bl{background-position:0 -8px}.x4-btn-group-default-framed-br{background-position:right -10px}.x4-btn-group-default-framed-ml{background-position:0 top}.x4-btn-group-default-framed-mr{background-position:right top}.x4-btn-group-default-framed-tc{background-position:0 0}.x4-btn-group-default-framed-bc{background-position:0 -2px}.x4-btn-group-default-framed-tr,.x4-btn-group-default-framed-br,.x4-btn-group-default-framed-mr{padding-right:2px}.x4-btn-group-default-framed-tl,.x4-btn-group-default-framed-bl,.x4-btn-group-default-framed-ml{padding-left:2px}.x4-btn-group-default-framed-tc{height:2px}.x4-btn-group-default-framed-bc{height:2px}.x4-btn-group-default-framed-tl,.x4-btn-group-default-framed-bl,.x4-btn-group-default-framed-tr,.x4-btn-group-default-framed-br,.x4-btn-group-default-framed-tc,.x4-btn-group-default-framed-bc,.x4-btn-group-default-framed-ml,.x4-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-corners.gif)}.x4-btn-group-default-framed-ml,.x4-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-sides.gif);background-repeat:repeat-y}.x4-btn-group-default-framed-mc{padding:0}.x4-strict .x4-ie7 .x4-btn-group-default-framed-tl,.x4-strict .x4-ie7 .x4-btn-group-default-framed-bl{position:relative;right:0}.x4-btn-group-default-framed:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"}.x4-btn-group-default-framed-notitle{-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:1px 1px 1px 1px;border-width:1px;border-style:solid;background-color:#d0def0}.x4-btn-group-default-framed-notitle-mc{background-color:#d0def0}.x4-nbr .x4-btn-group-default-framed-notitle{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-btn-group-default-framed-notitle-frameInfo{font-family:dh-2-2-2-2-1-1-1-1-1-1-1-1}.x4-btn-group-default-framed-notitle-tl{background-position:0 -4px}.x4-btn-group-default-framed-notitle-tr{background-position:right -6px}.x4-btn-group-default-framed-notitle-bl{background-position:0 -8px}.x4-btn-group-default-framed-notitle-br{background-position:right -10px}.x4-btn-group-default-framed-notitle-ml{background-position:0 top}.x4-btn-group-default-framed-notitle-mr{background-position:right top}.x4-btn-group-default-framed-notitle-tc{background-position:0 0}.x4-btn-group-default-framed-notitle-bc{background-position:0 -2px}.x4-btn-group-default-framed-notitle-tr,.x4-btn-group-default-framed-notitle-br,.x4-btn-group-default-framed-notitle-mr{padding-right:2px}.x4-btn-group-default-framed-notitle-tl,.x4-btn-group-default-framed-notitle-bl,.x4-btn-group-default-framed-notitle-ml{padding-left:2px}.x4-btn-group-default-framed-notitle-tc{height:2px}.x4-btn-group-default-framed-notitle-bc{height:2px}.x4-btn-group-default-framed-notitle-tl,.x4-btn-group-default-framed-notitle-bl,.x4-btn-group-default-framed-notitle-tr,.x4-btn-group-default-framed-notitle-br,.x4-btn-group-default-framed-notitle-tc,.x4-btn-group-default-framed-notitle-bc,.x4-btn-group-default-framed-notitle-ml,.x4-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-corners.gif)}.x4-btn-group-default-framed-notitle-ml,.x4-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-sides.gif);background-repeat:repeat-y}.x4-btn-group-default-framed-notitle-mc{padding:0}.x4-strict .x4-ie7 .x4-btn-group-default-framed-notitle-tl,.x4-strict .x4-ie7 .x4-btn-group-default-framed-notitle-bl{position:relative;right:0}.x4-btn-group-default-framed-notitle:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"}.x4-btn-group-default-framed{border-color:#b7c8d7;-webkit-box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset;-moz-box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset;box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset}.x4-btn-group-header-default-framed{margin:2px 2px 0 2px;padding:1px 0;line-height:15px;background:#c2d8f0;-moz-border-radius-topleft:2px;-webkit-border-top-left-radius:2px;border-top-left-radius:2px;-moz-border-radius-topright:2px;-webkit-border-top-right-radius:2px;border-top-right-radius:2px}.x4-btn-group-header-default-framed .x4-tool-img{background-color:#c2d8f0}.x4-btn-group-header-text-container-default-framed{font:normal 11px tahoma,arial,verdana,sans-serif;line-height:15px;color:#3e6aaa}.x4-btn-group-body-default-framed{padding:0 1px 0 1px}.x4-btn-group-body-default-framed .x4-table-layout{border-spacing:0}.x4-window-ghost{filter:alpha(opacity=65);opacity:.65}.x4-window-default{border-color:#a2b1c5;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;-webkit-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset}.x4-window-default{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:#ced9e7}.x4-window-default-mc{background-color:#ced9e7}.x4-nbr .x4-window-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-window-default-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-4-4-4}.x4-window-default-tl{background-position:0 -10px}.x4-window-default-tr{background-position:right -15px}.x4-window-default-bl{background-position:0 -20px}.x4-window-default-br{background-position:right -25px}.x4-window-default-ml{background-position:0 top}.x4-window-default-mr{background-position:right top}.x4-window-default-tc{background-position:0 0}.x4-window-default-bc{background-position:0 -5px}.x4-window-default-tr,.x4-window-default-br,.x4-window-default-mr{padding-right:5px}.x4-window-default-tl,.x4-window-default-bl,.x4-window-default-ml{padding-left:5px}.x4-window-default-tc{height:5px}.x4-window-default-bc{height:5px}.x4-window-default-tl,.x4-window-default-bl,.x4-window-default-tr,.x4-window-default-br,.x4-window-default-tc,.x4-window-default-bc,.x4-window-default-ml,.x4-window-default-mr{zoom:1;background-image:url(images/window/window-default-corners.gif)}.x4-window-default-ml,.x4-window-default-mr{zoom:1;background-image:url(images/window/window-default-sides.gif);background-repeat:repeat-y}.x4-window-default-mc{padding:0}.x4-strict .x4-ie7 .x4-window-default-tl,.x4-strict .x4-ie7 .x4-window-default-bl{position:relative;right:0}.x4-window-default:after{display:none;content:"x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"}.x4-window-body-default{border-color:#99bbe8;border-width:1px;border-style:solid;background:#dfe8f6;color:black}.x4-window-header-default{font-size:11px;border-color:#a2b1c5;zoom:1;background-color:#ced9e7}.x4-window-header-default .x4-tool-img{background-color:#ced9e7}.x4-window-header-default-vertical .x4-window-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x4-ie9m .x4-window-header-default-vertical .x4-window-header-text-container{background-color:#ced9e7;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#ced9e7)}.x4-window-header-text-container-default{color:#04468c;font-weight:bold;line-height:15px;font-family:tahoma,arial,verdana,sans-serif;font-size:11px;padding:0 2px 1px;text-transform:none}.x4-window-header-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:4px 5px 0 5px;border-width:1px 1px 0 1px;border-style:solid;background-color:#ced9e7}.x4-window-header-default-top-mc{background-color:#ced9e7}.x4-nbr .x4-window-header-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-window-header-default-top-frameInfo{font-family:dh-5-5-0-0-1-1-0-1-4-5-0-5}.x4-window-header-default-top-tl{background-position:0 -10px}.x4-window-header-default-top-tr{background-position:right -15px}.x4-window-header-default-top-bl{background-position:0 -20px}.x4-window-header-default-top-br{background-position:right -25px}.x4-window-header-default-top-ml{background-position:0 top}.x4-window-header-default-top-mr{background-position:right top}.x4-window-header-default-top-tc{background-position:0 0}.x4-window-header-default-top-bc{background-position:0 -5px}.x4-window-header-default-top-tr,.x4-window-header-default-top-br,.x4-window-header-default-top-mr{padding-right:5px}.x4-window-header-default-top-tl,.x4-window-header-default-top-bl,.x4-window-header-default-top-ml{padding-left:5px}.x4-window-header-default-top-tc{height:5px}.x4-window-header-default-top-bc{height:0}.x4-window-header-default-top-tl,.x4-window-header-default-top-bl,.x4-window-header-default-top-tr,.x4-window-header-default-top-br,.x4-window-header-default-top-tc,.x4-window-header-default-top-bc,.x4-window-header-default-top-ml,.x4-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-corners.gif)}.x4-window-header-default-top-ml,.x4-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-sides.gif);background-repeat:repeat-y}.x4-window-header-default-top-mc{padding:0 1px 0 1px}.x4-strict .x4-ie7 .x4-window-header-default-top-tl,.x4-strict .x4-ie7 .x4-window-header-default-top-bl{position:relative;right:0}.x4-window-header-default-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"}.x4-window-header-default-right{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:5px;-webkit-border-top-right-radius:5px;border-top-right-radius:5px;-moz-border-radius-bottomright:5px;-webkit-border-bottom-right-radius:5px;border-bottom-right-radius:5px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 4px 5px 0;border-width:1px 1px 1px 0;border-style:solid;background-color:#ced9e7}.x4-window-header-default-right-mc{background-color:#ced9e7}.x4-nbr .x4-window-header-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-window-header-default-right-frameInfo{font-family:dh-0-5-5-0-1-1-1-0-5-4-5-0}.x4-window-header-default-right-tl{background-position:0 -10px}.x4-window-header-default-right-tr{background-position:right -15px}.x4-window-header-default-right-bl{background-position:0 -20px}.x4-window-header-default-right-br{background-position:right -25px}.x4-window-header-default-right-ml{background-position:0 top}.x4-window-header-default-right-mr{background-position:right top}.x4-window-header-default-right-tc{background-position:0 0}.x4-window-header-default-right-bc{background-position:0 -5px}.x4-window-header-default-right-tr,.x4-window-header-default-right-br,.x4-window-header-default-right-mr{padding-right:5px}.x4-window-header-default-right-tl,.x4-window-header-default-right-bl,.x4-window-header-default-right-ml{padding-left:0}.x4-window-header-default-right-tc{height:5px}.x4-window-header-default-right-bc{height:5px}.x4-window-header-default-right-tl,.x4-window-header-default-right-bl,.x4-window-header-default-right-tr,.x4-window-header-default-right-br,.x4-window-header-default-right-tc,.x4-window-header-default-right-bc,.x4-window-header-default-right-ml,.x4-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-corners.gif)}.x4-window-header-default-right-ml,.x4-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-sides.gif);background-repeat:repeat-y}.x4-window-header-default-right-mc{padding:1px 0 1px 0}.x4-strict .x4-ie7 .x4-window-header-default-right-tl,.x4-strict .x4-ie7 .x4-window-header-default-right-bl{position:relative;right:0}.x4-window-header-default-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"}.x4-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: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:0 5px 4px 5px;border-width:0 1px 1px 1px;border-style:solid;background-color:#ced9e7}.x4-window-header-default-bottom-mc{background-color:#ced9e7}.x4-nbr .x4-window-header-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-window-header-default-bottom-frameInfo{font-family:dh-0-0-5-5-0-1-1-1-0-5-4-5}.x4-window-header-default-bottom-tl{background-position:0 -10px}.x4-window-header-default-bottom-tr{background-position:right -15px}.x4-window-header-default-bottom-bl{background-position:0 -20px}.x4-window-header-default-bottom-br{background-position:right -25px}.x4-window-header-default-bottom-ml{background-position:0 top}.x4-window-header-default-bottom-mr{background-position:right top}.x4-window-header-default-bottom-tc{background-position:0 0}.x4-window-header-default-bottom-bc{background-position:0 -5px}.x4-window-header-default-bottom-tr,.x4-window-header-default-bottom-br,.x4-window-header-default-bottom-mr{padding-right:5px}.x4-window-header-default-bottom-tl,.x4-window-header-default-bottom-bl,.x4-window-header-default-bottom-ml{padding-left:5px}.x4-window-header-default-bottom-tc{height:0}.x4-window-header-default-bottom-bc{height:5px}.x4-window-header-default-bottom-tl,.x4-window-header-default-bottom-bl,.x4-window-header-default-bottom-tr,.x4-window-header-default-bottom-br,.x4-window-header-default-bottom-tc,.x4-window-header-default-bottom-bc,.x4-window-header-default-bottom-ml,.x4-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-corners.gif)}.x4-window-header-default-bottom-ml,.x4-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-sides.gif);background-repeat:repeat-y}.x4-window-header-default-bottom-mc{padding:0 1px 0 1px}.x4-strict .x4-ie7 .x4-window-header-default-bottom-tl,.x4-strict .x4-ie7 .x4-window-header-default-bottom-bl{position:relative;right:0}.x4-window-header-default-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"}.x4-window-header-default-left{-moz-border-radius-topleft:5px;-webkit-border-top-left-radius:5px;border-top-left-radius:5px;-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:5px;-webkit-border-bottom-left-radius:5px;border-bottom-left-radius:5px;padding:5px 0 5px 4px;border-width:1px 0 1px 1px;border-style:solid;background-color:#ced9e7}.x4-window-header-default-left-mc{background-color:#ced9e7}.x4-nbr .x4-window-header-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-window-header-default-left-frameInfo{font-family:dh-5-0-0-5-1-0-1-1-5-0-5-4}.x4-window-header-default-left-tl{background-position:0 -10px}.x4-window-header-default-left-tr{background-position:right -15px}.x4-window-header-default-left-bl{background-position:0 -20px}.x4-window-header-default-left-br{background-position:right -25px}.x4-window-header-default-left-ml{background-position:0 top}.x4-window-header-default-left-mr{background-position:right top}.x4-window-header-default-left-tc{background-position:0 0}.x4-window-header-default-left-bc{background-position:0 -5px}.x4-window-header-default-left-tr,.x4-window-header-default-left-br,.x4-window-header-default-left-mr{padding-right:0}.x4-window-header-default-left-tl,.x4-window-header-default-left-bl,.x4-window-header-default-left-ml{padding-left:5px}.x4-window-header-default-left-tc{height:5px}.x4-window-header-default-left-bc{height:5px}.x4-window-header-default-left-tl,.x4-window-header-default-left-bl,.x4-window-header-default-left-tr,.x4-window-header-default-left-br,.x4-window-header-default-left-tc,.x4-window-header-default-left-bc,.x4-window-header-default-left-ml,.x4-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-corners.gif)}.x4-window-header-default-left-ml,.x4-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-sides.gif);background-repeat:repeat-y}.x4-window-header-default-left-mc{padding:1px 0 1px 0}.x4-strict .x4-ie7 .x4-window-header-default-left-tl,.x4-strict .x4-ie7 .x4-window-header-default-left-bl{position:relative;right:0}.x4-window-header-default-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"}.x4-window-header-default-collapsed-top{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-color:#ced9e7}.x4-window-header-default-collapsed-top-mc{background-color:#ced9e7}.x4-nbr .x4-window-header-default-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-window-header-default-collapsed-top-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-5-4-5}.x4-window-header-default-collapsed-top-tl{background-position:0 -10px}.x4-window-header-default-collapsed-top-tr{background-position:right -15px}.x4-window-header-default-collapsed-top-bl{background-position:0 -20px}.x4-window-header-default-collapsed-top-br{background-position:right -25px}.x4-window-header-default-collapsed-top-ml{background-position:0 top}.x4-window-header-default-collapsed-top-mr{background-position:right top}.x4-window-header-default-collapsed-top-tc{background-position:0 0}.x4-window-header-default-collapsed-top-bc{background-position:0 -5px}.x4-window-header-default-collapsed-top-tr,.x4-window-header-default-collapsed-top-br,.x4-window-header-default-collapsed-top-mr{padding-right:5px}.x4-window-header-default-collapsed-top-tl,.x4-window-header-default-collapsed-top-bl,.x4-window-header-default-collapsed-top-ml{padding-left:5px}.x4-window-header-default-collapsed-top-tc{height:5px}.x4-window-header-default-collapsed-top-bc{height:5px}.x4-window-header-default-collapsed-top-tl,.x4-window-header-default-collapsed-top-bl,.x4-window-header-default-collapsed-top-tr,.x4-window-header-default-collapsed-top-br,.x4-window-header-default-collapsed-top-tc,.x4-window-header-default-collapsed-top-bc,.x4-window-header-default-collapsed-top-ml,.x4-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-corners.gif)}.x4-window-header-default-collapsed-top-ml,.x4-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-sides.gif);background-repeat:repeat-y}.x4-window-header-default-collapsed-top-mc{padding:0 1px 0 1px}.x4-strict .x4-ie7 .x4-window-header-default-collapsed-top-tl,.x4-strict .x4-ie7 .x4-window-header-default-collapsed-top-bl{position:relative;right:0}.x4-window-header-default-collapsed-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"}.x4-window-header-default-collapsed-right{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-color:#ced9e7}.x4-window-header-default-collapsed-right-mc{background-color:#ced9e7}.x4-nbr .x4-window-header-default-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-window-header-default-collapsed-right-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-5-4-5-4}.x4-window-header-default-collapsed-right-tl{background-position:0 -10px}.x4-window-header-default-collapsed-right-tr{background-position:right -15px}.x4-window-header-default-collapsed-right-bl{background-position:0 -20px}.x4-window-header-default-collapsed-right-br{background-position:right -25px}.x4-window-header-default-collapsed-right-ml{background-position:0 top}.x4-window-header-default-collapsed-right-mr{background-position:right top}.x4-window-header-default-collapsed-right-tc{background-position:0 0}.x4-window-header-default-collapsed-right-bc{background-position:0 -5px}.x4-window-header-default-collapsed-right-tr,.x4-window-header-default-collapsed-right-br,.x4-window-header-default-collapsed-right-mr{padding-right:5px}.x4-window-header-default-collapsed-right-tl,.x4-window-header-default-collapsed-right-bl,.x4-window-header-default-collapsed-right-ml{padding-left:5px}.x4-window-header-default-collapsed-right-tc{height:5px}.x4-window-header-default-collapsed-right-bc{height:5px}.x4-window-header-default-collapsed-right-tl,.x4-window-header-default-collapsed-right-bl,.x4-window-header-default-collapsed-right-tr,.x4-window-header-default-collapsed-right-br,.x4-window-header-default-collapsed-right-tc,.x4-window-header-default-collapsed-right-bc,.x4-window-header-default-collapsed-right-ml,.x4-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-corners.gif)}.x4-window-header-default-collapsed-right-ml,.x4-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-sides.gif);background-repeat:repeat-y}.x4-window-header-default-collapsed-right-mc{padding:1px 0 1px 0}.x4-strict .x4-ie7 .x4-window-header-default-collapsed-right-tl,.x4-strict .x4-ie7 .x4-window-header-default-collapsed-right-bl{position:relative;right:0}.x4-window-header-default-collapsed-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"}.x4-window-header-default-collapsed-bottom{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-color:#ced9e7}.x4-window-header-default-collapsed-bottom-mc{background-color:#ced9e7}.x4-nbr .x4-window-header-default-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-window-header-default-collapsed-bottom-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-5-4-5}.x4-window-header-default-collapsed-bottom-tl{background-position:0 -10px}.x4-window-header-default-collapsed-bottom-tr{background-position:right -15px}.x4-window-header-default-collapsed-bottom-bl{background-position:0 -20px}.x4-window-header-default-collapsed-bottom-br{background-position:right -25px}.x4-window-header-default-collapsed-bottom-ml{background-position:0 top}.x4-window-header-default-collapsed-bottom-mr{background-position:right top}.x4-window-header-default-collapsed-bottom-tc{background-position:0 0}.x4-window-header-default-collapsed-bottom-bc{background-position:0 -5px}.x4-window-header-default-collapsed-bottom-tr,.x4-window-header-default-collapsed-bottom-br,.x4-window-header-default-collapsed-bottom-mr{padding-right:5px}.x4-window-header-default-collapsed-bottom-tl,.x4-window-header-default-collapsed-bottom-bl,.x4-window-header-default-collapsed-bottom-ml{padding-left:5px}.x4-window-header-default-collapsed-bottom-tc{height:5px}.x4-window-header-default-collapsed-bottom-bc{height:5px}.x4-window-header-default-collapsed-bottom-tl,.x4-window-header-default-collapsed-bottom-bl,.x4-window-header-default-collapsed-bottom-tr,.x4-window-header-default-collapsed-bottom-br,.x4-window-header-default-collapsed-bottom-tc,.x4-window-header-default-collapsed-bottom-bc,.x4-window-header-default-collapsed-bottom-ml,.x4-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-corners.gif)}.x4-window-header-default-collapsed-bottom-ml,.x4-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-sides.gif);background-repeat:repeat-y}.x4-window-header-default-collapsed-bottom-mc{padding:0 1px 0 1px}.x4-strict .x4-ie7 .x4-window-header-default-collapsed-bottom-tl,.x4-strict .x4-ie7 .x4-window-header-default-collapsed-bottom-bl{position:relative;right:0}.x4-window-header-default-collapsed-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"}.x4-window-header-default-collapsed-left{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-color:#ced9e7}.x4-window-header-default-collapsed-left-mc{background-color:#ced9e7}.x4-nbr .x4-window-header-default-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-window-header-default-collapsed-left-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-5-4-5-4}.x4-window-header-default-collapsed-left-tl{background-position:0 -10px}.x4-window-header-default-collapsed-left-tr{background-position:right -15px}.x4-window-header-default-collapsed-left-bl{background-position:0 -20px}.x4-window-header-default-collapsed-left-br{background-position:right -25px}.x4-window-header-default-collapsed-left-ml{background-position:0 top}.x4-window-header-default-collapsed-left-mr{background-position:right top}.x4-window-header-default-collapsed-left-tc{background-position:0 0}.x4-window-header-default-collapsed-left-bc{background-position:0 -5px}.x4-window-header-default-collapsed-left-tr,.x4-window-header-default-collapsed-left-br,.x4-window-header-default-collapsed-left-mr{padding-right:5px}.x4-window-header-default-collapsed-left-tl,.x4-window-header-default-collapsed-left-bl,.x4-window-header-default-collapsed-left-ml{padding-left:5px}.x4-window-header-default-collapsed-left-tc{height:5px}.x4-window-header-default-collapsed-left-bc{height:5px}.x4-window-header-default-collapsed-left-tl,.x4-window-header-default-collapsed-left-bl,.x4-window-header-default-collapsed-left-tr,.x4-window-header-default-collapsed-left-br,.x4-window-header-default-collapsed-left-tc,.x4-window-header-default-collapsed-left-bc,.x4-window-header-default-collapsed-left-ml,.x4-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-corners.gif)}.x4-window-header-default-collapsed-left-ml,.x4-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-sides.gif);background-repeat:repeat-y}.x4-window-header-default-collapsed-left-mc{padding:1px 0 1px 0}.x4-strict .x4-ie7 .x4-window-header-default-collapsed-left-tl,.x4-strict .x4-ie7 .x4-window-header-default-collapsed-left-bl{position:relative;right:0}.x4-window-header-default-collapsed-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"}.x4-window-header-default-top{-webkit-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset}.x4-window-header-default-right{-webkit-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset;box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset}.x4-window-header-default-bottom{-webkit-box-shadow:#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;box-shadow:#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset}.x4-window-header-default-left{-webkit-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb 1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb 1px 0 0 0 inset;box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb 1px 0 0 0 inset}.x4-window-header-default .x4-window-header-icon{width:16px;height:16px;color:#04468c;font-size:16px;line-height:16px;background-position:center center}.x4-window-header-default .x4-window-header-glyph{color:#04468c;font-size:16px;line-height:16px;opacity:.5}.x4-ie8m .x4-window-header-default .x4-window-header-glyph{color:#698fb9}.x4-window-header-default-horizontal .x4-window-header-icon-before-title{margin:0 2px 0 0}.x4-window-header-default-horizontal .x4-window-header-icon-after-title{margin:0 0 0 2px}.x4-window-header-default-vertical .x4-window-header-icon-before-title{margin:0 0 2px 0}.x4-window-header-default-vertical .x4-window-header-icon-after-title{margin:2px 0 0 0}.x4-window-header-default-horizontal .x4-tool-after-title{margin:0 0 0 2px}.x4-window-header-default-horizontal .x4-tool-before-title{margin:0 2px 0 0}.x4-window-header-default-vertical .x4-tool-after-title{margin:2px 0 0 0}.x4-window-header-default-vertical .x4-tool-before-title{margin:0 0 2px 0}.x4-window-default-collapsed .x4-window-header{border-width:1px!important}.x4-nbr .x4-window-default-collapsed .x4-window-header{border-width:0!important}.x4-form-invalid-under{padding:2px 2px 2px 20px;color:#c0272b;font:normal 11px tahoma,arial,verdana,sans-serif;line-height:16px;background:no-repeat 0 2px;background-image:url(images/form/exclamation.gif)}div.x4-lbl-top-err-icon{margin-bottom:3px}.x4-form-invalid-icon{width:16px;height:16px;margin:0 1px;background-image:url(images/form/exclamation.gif);background-repeat:no-repeat}.x4-form-item-label{color:black;font:normal 12px/14px tahoma,arial,verdana,sans-serif;margin-top:4px}.x4-toolbar-item .x4-form-item-label{font:normal 11px/13px tahoma,arial,verdana,sans-serif;margin-top:4px}.x4-autocontainer-form-item,.x4-anchor-form-item,.x4-vbox-form-item,.x4-table-form-item{margin-bottom:5px}.x4-ie6 .x4-form-form-item td{border-top-width:0}.x4-ie6 td.x4-form-item-pad{height:5px}.x4-form-field{color:black}.x4-form-item,.x4-form-field{font:normal 12px tahoma,arial,verdana,sans-serif}.x4-form-type-text textarea.x4-form-invalid-field,.x4-form-type-text input.x4-form-invalid-field,.x4-form-type-password textarea.x4-form-invalid-field,.x4-form-type-password input.x4-form-invalid-field,.x4-form-type-number textarea.x4-form-invalid-field,.x4-form-type-number input.x4-form-invalid-field,.x4-form-type-email textarea.x4-form-invalid-field,.x4-form-type-email input.x4-form-invalid-field,.x4-form-type-search textarea.x4-form-invalid-field,.x4-form-type-search input.x4-form-invalid-field,.x4-form-type-tel textarea.x4-form-invalid-field,.x4-form-type-tel input.x4-form-invalid-field{background-color:white;background-image:url(images/grid/invalid_line.gif);background-repeat:repeat-x;background-position:bottom;border-color:#c30}.x4-item-disabled .x4-form-item-label,.x4-item-disabled .x4-form-field,.x4-item-disabled .x4-form-display-field,.x4-item-disabled .x4-form-cb-label,.x4-item-disabled .x4-form-trigger{filter:alpha(opacity=30);opacity:.3}.x4-form-text{color:black;padding:1px 3px 2px 3px;background:white repeat-x 0 0;border-width:1px;border-style:solid;border-color:#b5b8c8;background-image:url(images/form/text-bg.gif);height:22px;line-height:17px}.x4-field-toolbar .x4-form-text{height:20px;line-height:15px}.x4-content-box .x4-form-text{height:17px}.x4-content-box .x4-field-toolbar .x4-form-text{height:15px}.x4-form-focus{border-color:#7eadd9}.x4-form-empty-field,textarea.x4-form-empty-field{color:gray}.x4-quirks .x4-ie .x4-form-text,.x4-ie7m .x4-form-text{margin-top:-1px;margin-bottom:-1px}.x4-form-textarea{line-height:normal;height:auto;background-image:url(images/form/text-bg.gif)}.x4-form-display-field-body{height:22px}.x4-toolbar-item .x4-form-display-field-body{height:20px}.x4-form-display-field{font:normal 12px/14px tahoma,arial,verdana,sans-serif;color:black;margin-top:4px}.x4-toolbar-item .x4-form-display-field{margin-top:4px;font:normal 11px/13px tahoma,arial,verdana,sans-serif}.x4-message-box .x4-window-body{background-color:#ced9e7;border-width:0}.x4-message-box-info,.x4-message-box-warning,.x4-message-box-question,.x4-message-box-error{background-position:top left;background-repeat:no-repeat}.x4-message-box-info{background-image:url(images/shared/icon-info.gif)}.x4-message-box-warning{background-image:url(images/shared/icon-warning.gif)}.x4-message-box-question{background-image:url(images/shared/icon-question.gif)}.x4-message-box-error{background-image:url(images/shared/icon-error.gif)}.x4-form-cb-wrap{height:22px}.x4-toolbar-item .x4-form-cb-wrap{height:20px}.x4-form-cb{margin-top:5px}.x4-toolbar-item .x4-form-cb{margin-top:4px}.x4-form-checkbox{width:13px;height:13px;background:url(images/form/checkbox.gif) no-repeat}.x4-form-cb-checked .x4-form-checkbox{background-position:0 -13px}.x4-form-checkbox-focus{background-position:-13px 0}.x4-form-cb-checked .x4-form-checkbox-focus{background-position:-13px -13px}.x4-form-cb-label{margin-top:4px;font:normal 12px/14px tahoma,arial,verdana,sans-serif}.x4-toolbar-item .x4-form-cb-label{font:normal 11px/13px tahoma,arial,verdana,sans-serif;margin-top:4px}.x4-form-cb-label-before{margin-right:4px}.x4-form-cb-label-after{margin-left:4px}.x4-form-checkboxgroup-body{padding:0 4px}.x4-form-invalid .x4-form-checkboxgroup-body{border:1px solid #c30;background-image:url(images/grid/invalid_line.gif);background-repeat:repeat-x;background-position:bottom}.x4-check-group-alt{background:#d1ddef;border-top:1px dotted #b5b8c8;border-bottom:1px dotted #b5b8c8}.x4-form-check-group-label{color:black;padding:2px;margin:0 30px 5px 0;border-width:0 0 1px 0;border-style:solid;border-color:black}.x4-fieldset{border:1px solid #b5b8c8;padding:0 10px;margin:0 0 10px}.x4-ie8m .x4-fieldset,.x4-quirks .x4-ie .x4-fieldset{padding-top:0}.x4-ie8m .x4-fieldset .x4-fieldset-body,.x4-quirks .x4-ie .x4-fieldset .x4-fieldset-body{padding-top:0}.x4-fieldset-header-checkbox{line-height:14px;margin:1px 3px 0 0}.x4-fieldset-header{padding:0 3px 1px}.x4-fieldset-header .x4-tool{margin-top:1px;padding:0}.x4-fieldset-header .x4-form-cb-wrap{padding:1px 0}.x4-fieldset-header-text{font:11px/14px bold tahoma,arial,verdana,sans-serif;color:#15428b;padding:1px 0}.x4-fieldset-header-text-collapsible{cursor:pointer}.x4-fieldset-with-title .x4-fieldset-header-checkbox,.x4-fieldset-with-title .x4-tool{margin:1px 3px 0 0}.x4-webkit .x4-fieldset-header{-webkit-padding-start:3px;-webkit-padding-end:3px}.x4-opera .x4-fieldset-with-legend{margin-top:-1px}.x4-opera.x4-mac .x4-fieldset-header-text{padding:2px 0 0}.x4-strict .x4-ie8 .x4-fieldset-header{margin-bottom:-1px}.x4-strict .x4-ie8 .x4-fieldset-header .x4-tool,.x4-strict .x4-ie8 .x4-fieldset-header .x4-fieldset-header-text,.x4-strict .x4-ie8 .x4-fieldset-header .x4-fieldset-header-checkbox{position:relative;top:-1px}.x4-quirks .x4-ie .x4-fieldset-header,.x4-ie8m .x4-fieldset-header{padding-left:1px;padding-right:1px}.x4-fieldset-collapsed .x4-fieldset-body{display:none}.x4-fieldset-collapsed{padding-bottom:0!important;border-width:1px 1px 0 1px!important;border-left-color:transparent!important;border-right-color:transparent!important}.x4-ie6 .x4-fieldset-collapsed{border-width:1px 0 0 0!important;padding-bottom:0!important;margin-left:1px;margin-right:1px}.x4-ie .x4-fieldset-bwrap{zoom:1}.x4-fieldset .x4-tool-toggle{background-position:0 -60px}.x4-fieldset .x4-tool-over .x4-tool-toggle{background-position:-15px -60px}.x4-fieldset-collapsed .x4-tool-toggle{background-position:0 -75px}.x4-fieldset-collapsed .x4-tool-over .x4-tool-toggle{background-position:-15px -75px}.x4-ie .x4-fieldset-noborder legend{position:relative;margin-bottom:23px}.x4-ie .x4-fieldset-noborder legend span{position:absolute;left:16px}.x4-fieldset{overflow:hidden}.x4-fieldset-bwrap{overflow:hidden;zoom:1}.x4-fieldset-body{overflow:hidden}.x4-form-radio{width:13px;height:13px;background:url(images/form/radio.gif) no-repeat}.x4-form-cb-checked .x4-form-radio{background-position:0 -13px}.x4-form-radio-focus{background-position:-13px 0}.x4-form-cb-checked .x4-form-radio-focus{background-position:-13px -13px}.x4-form-trigger{background:url(images/form/trigger.gif);width:17px;border-width:0 0 1px;border-color:#b5b8c8;border-style:solid}.x4-trigger-cell{background-color:white;width:17px}.x4-form-trigger-over{background-position:-17px 0;border-color:#7eadd9}.x4-form-trigger-wrap-focus .x4-form-trigger{background-position:-51px 0;border-color:#7eadd9}.x4-form-trigger-wrap-focus .x4-form-trigger-over{background-position:-68px 0}.x4-form-trigger-click,.x4-form-trigger-wrap-focus .x4-form-trigger-click{background-position:-34px 0}.x4-form-clear-trigger{background-image:url(images/form/clear-trigger.gif)}.x4-form-search-trigger{background-image:url(images/form/search-trigger.gif)}.x4-quirks .prefixie6 .x4-form-trigger-input-cell{height:22px}.x4-quirks .prefixie6 .x4-field-toolbar .x4-form-trigger-input-cell{height:20px}div.x4-form-spinner-up,div.x4-form-spinner-down{background-image:url(images/form/spinner.gif);background-color:white;width:17px;height:11px}.x4-form-spinner-down{background-position:0 -11px}.x4-form-trigger-wrap-focus .x4-form-spinner-down{background-position:-51px -11px}.x4-form-trigger-wrap .x4-form-spinner-down-over{background-position:-17px -11px}.x4-form-trigger-wrap-focus .x4-form-spinner-down-over{background-position:-68px -11px}.x4-form-trigger-wrap .x4-form-spinner-down-click{background-position:-34px -11px}.x4-toolbar-item div.x4-form-spinner-up,.x4-toolbar-item div.x4-form-spinner-down{background-image:url(images/form/spinner-small.gif);height:10px}.x4-toolbar-item .x4-form-spinner-down{background-position:0 -10px}.x4-toolbar-item .x4-form-trigger-wrap-focus .x4-form-spinner-down{background-position:-51px -10px}.x4-toolbar-item .x4-form-trigger-wrap .x4-form-spinner-down-over{background-position:-17px -10px}.x4-toolbar-item .x4-form-trigger-wrap-focus .x4-form-spinner-down-over{background-position:-68px -10px}.x4-toolbar-item .x4-form-trigger-wrap .x4-form-spinner-down-click{background-position:-34px -10px}.x4-tbar-page-number{width:30px}.x4-tbar-page-first{background-image:url(images/grid/page-first.gif)}.x4-tbar-page-prev{background-image:url(images/grid/page-prev.gif)}.x4-tbar-page-next{background-image:url(images/grid/page-next.gif)}.x4-tbar-page-last{background-image:url(images/grid/page-last.gif)}.x4-tbar-loading{background-image:url(images/grid/refresh.gif)}.x4-item-disabled .x4-tbar-page-first{background-image:url(images/grid/page-first-disabled.gif)}.x4-item-disabled .x4-tbar-page-prev{background-image:url(images/grid/page-prev-disabled.gif)}.x4-item-disabled .x4-tbar-page-next{background-image:url(images/grid/page-next-disabled.gif)}.x4-item-disabled .x4-tbar-page-last{background-image:url(images/grid/page-last-disabled.gif)}.x4-item-disabled .x4-tbar-loading{background-image:url(images/grid/refresh-disabled.gif)}.x4-boundlist{border-width:1px;border-style:solid;border-color:#98c0f4;background:white}.x4-strict .x4-ie7m .x4-boundlist-list-ct{position:relative}.x4-boundlist-item{padding:0 3px;line-height:20px;cursor:pointer;cursor:hand;position:relative;zoom:1;border-width:1px;border-style:dotted;border-color:white}.x4-boundlist-selected{background:#cbdaf0;border-color:#8eabe4}.x4-boundlist-item-over{background:#dfe8f6;border-color:#a3bae9}.x4-boundlist-floating{border-top-width:0}.x4-boundlist-above{border-top-width:1px;border-bottom-width:1px}.x4-datepicker{border-width:1px;border-style:solid;border-color:#1b376c;background-color:white;width:177px}.x4-datepicker-header{padding:3px 6px;text-align:center;background-image:none;background-color:#23427c;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#264888),color-stop(100%,#1f3a6c));background-image:-webkit-linear-gradient(top,#264888,#1f3a6c);background-image:-moz-linear-gradient(top,#264888,#1f3a6c);background-image:-o-linear-gradient(top,#264888,#1f3a6c);background-image:linear-gradient(top,#264888,#1f3a6c)}.x4-datepicker-arrow{width:15px;height:15px;top:6px;cursor:pointer;background-color:#23427c;filter:alpha(opacity=70);opacity:.7}a.x4-datepicker-arrow:hover{filter:alpha(opacity=100);opacity:1}.x4-datepicker-next{right:6px;background-image:url(images/shared/right-btn.gif)}.x4-datepicker-prev{left:6px;background-image:url(images/shared/left-btn.gif)}.x4-datepicker-month .x4-btn,.x4-datepicker-month .x4-btn .x4-btn-tc,.x4-datepicker-month .x4-btn .x4-btn-tl,.x4-datepicker-month .x4-btn .x4-btn-tr,.x4-datepicker-month .x4-btn .x4-btn-mc,.x4-datepicker-month .x4-btn .x4-btn-ml,.x4-datepicker-month .x4-btn .x4-btn-mr,.x4-datepicker-month .x4-btn .x4-btn-bc,.x4-datepicker-month .x4-btn .x4-btn-bl,.x4-datepicker-month .x4-btn .x4-btn-br{background:transparent;border-width:0!important}.x4-datepicker-month .x4-btn-inner{color:white}.x4-datepicker-month .x4-btn-split-right{background-image:url(images/button/s-arrow-light.gif);padding-right:12px}.x4-datepicker-column-header{width:25px;color:#233d6d;font:normal 10px tahoma,arial,verdana,sans-serif;text-align:right;border-width:0 0 1px;border-style:solid;border-color:#b2d1f5;background-image:none;background-color:#dfecfb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#edf4fd),color-stop(100%,#cde1f9));background-image:-webkit-linear-gradient(top,#edf4fd,#cde1f9);background-image:-moz-linear-gradient(top,#edf4fd,#cde1f9);background-image:-o-linear-gradient(top,#edf4fd,#cde1f9);background-image:linear-gradient(top,#edf4fd,#cde1f9)}.x4-datepicker-column-header-inner{line-height:19px;padding:0 7px 0 0}.x4-datepicker-cell{text-align:right;border-width:1px;border-style:solid;border-color:white}.x4-datepicker-date{padding:0 4px 0 0;font:normal 11px tahoma,arial,verdana,sans-serif;color:black;cursor:pointer;line-height:18px}a.x4-datepicker-date:hover{color:black;background-color:#ddecfe}.x4-datepicker-selected{border-style:solid;border-color:#8db2e3}.x4-datepicker-selected .x4-datepicker-date{background-color:#dae5f3;font-weight:bold}.x4-datepicker-today{border-color:darkred;border-style:solid}.x4-datepicker-prevday .x4-datepicker-date,.x4-datepicker-nextday .x4-datepicker-date{color:#aaa}.x4-datepicker-disabled a.x4-datepicker-date{background-color:#eee;cursor:default;color:#bbb}.x4-datepicker-disabled a.x4-datepicker-date:hover{background-color:#eee}.x4-datepicker-footer,.x4-monthpicker-buttons{padding:4px 0;border-width:1px 0 0;border-style:solid;border-color:#b2d1f5;background-image:none;background-color:#dfecfb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dee8f5),color-stop(49%,#d1dff0),color-stop(51%,#c7d8ed),color-stop(100%,#cbdaee));background-image:-webkit-linear-gradient(top,#dee8f5,#d1dff0 49%,#c7d8ed 51%,#cbdaee);background-image:-moz-linear-gradient(top,#dee8f5,#d1dff0 49%,#c7d8ed 51%,#cbdaee);background-image:-o-linear-gradient(top,#dee8f5,#d1dff0 49%,#c7d8ed 51%,#cbdaee);background-image:linear-gradient(top,#dee8f5,#d1dff0 49%,#c7d8ed 51%,#cbdaee);text-align:center}.x4-datepicker-footer .x4-btn,.x4-monthpicker-buttons .x4-btn{margin:0 2px 0 2px}.x4-monthpicker{width:177px;border-width:1px;border-style:solid;border-color:#1b376c;background-color:white}.x4-monthpicker-months{border-width:0 1px 0 0;border-color:#1b376c;border-style:solid;width:87px}.x4-monthpicker-months .x4-monthpicker-item{width:43px}.x4-monthpicker-years{width:88px}.x4-monthpicker-years .x4-monthpicker-item{width:44px}.x4-monthpicker-item{margin:5px 0 4px;font:normal 11px tahoma,arial,verdana,sans-serif;text-align:center}.x4-monthpicker-item-inner{margin:0 5px 0 5px;color:#15428b;border-width:1px;border-style:solid;border-color:white;line-height:16px;cursor:pointer}a.x4-monthpicker-item-inner:hover{background-color:#ddecfe}.x4-monthpicker-selected{background-color:#dae5f3;border-style:solid;border-color:#8db2e3}.x4-monthpicker-yearnav{height:27px}.x4-monthpicker-yearnav-button-ct{width:44px}.x4-monthpicker-yearnav-button{height:15px;width:15px;cursor:pointer;margin-top:6px;background-color:white}.x4-monthpicker-yearnav-next{background-image:url(images/tools/tool-sprites.gif);background-position:0 -120px}.x4-monthpicker-yearnav-next-over{background-position:-15px -120px}.x4-monthpicker-yearnav-prev{background-image:url(images/tools/tool-sprites.gif);background-position:0 -105px}.x4-monthpicker-yearnav-prev-over{background-position:-15px -105px}.x4-monthpicker-small .x4-monthpicker-item{margin:2px 0 2px}.x4-monthpicker-small .x4-monthpicker-item-inner{margin:0 5px 0 5px}.x4-monthpicker-small .x4-monthpicker-yearnav{height:22px}.x4-monthpicker-small .x4-monthpicker-yearnav-button{margin-top:3px}.x4-nlg .x4-datepicker-header{background-image:url(images/datepicker/datepicker-header-bg.gif);background-repeat:repeat-x;background-position:top left}.x4-nlg .x4-datepicker-footer,.x4-nlg .x4-monthpicker-buttons{background-image:url(images/datepicker/datepicker-footer-bg.gif);background-repeat:repeat-x;background-position:top left}.x4-datepicker-header:after{display:none;content:"x-slicer:bg:url(images/datepicker/datepicker-header-bg.gif)"}.x4-datepicker-footer:after{display:none;content:"x-slicer:bg:url(images/datepicker/datepicker-footer-bg.gif)"}.x4-form-date-trigger{background-image:url(images/form/date-trigger.gif)}.x4-form-file-wrap .x4-form-text{color:gray}.x4-color-picker{width:144px;height:90px;background-color:white;border-color:white;border-width:0;border-style:solid}.x4-color-picker-item{width:18px;height:18px;border-width:1px;border-color:white;border-style:solid;background-color:white;cursor:pointer;padding:2px}.x4-content-box .x4-color-picker-item{width:12px;height:12px}a.x4-color-picker-item:hover{border-color:#8bb8f3;background-color:#deecfd}.x4-color-picker-selected{border-color:#8bb8f3;background-color:#deecfd}.x4-color-picker-item-inner{line-height:10px;border-color:#aca899;border-width:1px;border-style:solid}.x4-html-editor-tb .x4-btn-text{background:transparent no-repeat;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-bold,.x4-menu-item div.x4-edit-bold{background-position:0 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-italic,.x4-menu-item div.x4-edit-italic{background-position:-16px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-underline,.x4-menu-item div.x4-edit-underline{background-position:-32px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-forecolor,.x4-menu-item div.x4-edit-forecolor{background-position:-160px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-backcolor,.x4-menu-item div.x4-edit-backcolor{background-position:-176px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-justifyleft,.x4-menu-item div.x4-edit-justifyleft{background-position:-112px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-justifycenter,.x4-menu-item div.x4-edit-justifycenter{background-position:-128px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-justifyright,.x4-menu-item div.x4-edit-justifyright{background-position:-144px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-insertorderedlist,.x4-menu-item div.x4-edit-insertorderedlist{background-position:-80px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-insertunorderedlist,.x4-menu-item div.x4-edit-insertunorderedlist{background-position:-96px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-increasefontsize,.x4-menu-item div.x4-edit-increasefontsize{background-position:-48px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-decreasefontsize,.x4-menu-item div.x4-edit-decreasefontsize{background-position:-64px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-sourceedit,.x4-menu-item div.x4-edit-sourceedit{background-position:-192px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tb .x4-edit-createlink,.x4-menu-item div.x4-edit-createlink{background-position:-208px 0;background-image:url(images/editor/tb-sprite.gif)}.x4-html-editor-tip .x4-tip-bd .x4-tip-bd-inner{padding:5px;padding-bottom:1px}.x4-html-editor-tb .x4-font-select{font-size:11px;font-family:inherit}.x4-html-editor-wrap textarea{font:normal 12px tahoma,arial,verdana,sans-serif;background-color:white;resize:none}.x4-grid-body{background:white;border-width:1px;border-style:solid;border-color:#99bce8}.x4-grid-empty{padding:10px;color:gray;background-color:white;font:normal 11px tahoma,arial,verdana,sans-serif}.x4-grid-cell{color:null;font:normal 11px/13px tahoma,arial,verdana,sans-serif;background-color:white;border-color:#ededed #d0d0d0 #ededed #d0d0d0;border-style:solid}.x4-grid-row-alt .x4-grid-td{background-color:#fafafa}.x4-grid-row-before-over .x4-grid-td{border-bottom-style:solid;border-bottom-color:#ddd}.x4-grid-row-over .x4-grid-td{border-bottom-style:solid;border-bottom-color:#ddd}.x4-grid-row-before-selected .x4-grid-td{border-bottom-style:dotted;border-bottom-color:#a3bae9}.x4-grid-row-selected .x4-grid-td{border-bottom-style:dotted;border-bottom-color:#a3bae9}.x4-grid-row-before-focused .x4-grid-td{border-bottom-style:dotted;border-bottom-color:#464646;border-bottom-width:1px}.x4-grid-row-focused .x4-grid-td{background-color:#efefef}.x4-grid-row-over .x4-grid-td{background-color:#efefef}.x4-grid-row-selected .x4-grid-td{background-color:#dfe8f6}.x4-grid-row-focused .x4-grid-td{border-bottom-style:dotted;border-bottom-color:#464646;border-bottom-width:1px}.x4-grid-table .x4-grid-row-focused-first .x4-grid-td{border-top:1px dotted #464646}.x4-grid-row-selected .x4-grid-row-summary .x4-grid-td{border-bottom-color:#dfe8f6;border-top-width:0}.x4-grid-row-focused .x4-grid-row-summary .x4-grid-td{border-bottom-color:#efefef;border-top-width:0}.x4-grid-with-row-lines .x4-grid-td{border-bottom-width:1px}.x4-grid-with-row-lines .x4-grid-table{border-top:1px solid white}.x4-grid-with-row-lines .x4-grid-table-over-first{border-top-style:solid;border-top-color:#ddd}.x4-grid-with-row-lines .x4-grid-table-selected-first{border-top-style:dotted;border-top-color:#a3bae9}.x4-grid-body .x4-grid-table-focused-first{border-top:1px dotted #464646}.x4-grid-cell-inner{text-overflow:ellipsis;padding:3px 6px 4px 6px}.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-inner{padding-top:2px;padding-bottom:3px}.x4-grid-cell-special{border-color:#ededed #d0d0d0 #ededed #d0d0d0;border-style:solid;border-right-width:1px;background-image:none;background-color:#f6f6f6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:-moz-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:-o-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:linear-gradient(top,#f6f6f6,#e9e9e9)}.x4-grid-row-selected .x4-grid-cell-special{border-right-color:#ededed #aaccf6;background-image:none;background-color:#dfe8f6;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dfe8f6),color-stop(100%,#cbdaf0));background-image:-webkit-linear-gradient(left,#dfe8f6,#cbdaf0);background-image:-moz-linear-gradient(left,#dfe8f6,#cbdaf0);background-image:-o-linear-gradient(left,#dfe8f6,#cbdaf0);background-image:linear-gradient(left,#dfe8f6,#cbdaf0)}.x4-nlg .x4-grid-cell-special{background-repeat:repeat-y;background-image:url(images/grid/cell-special-bg.gif)}.x4-nlg .x4-grid-row-selected .x4-grid-cell-special{background-image:url(images/grid/cell-special-selected-bg.gif)}.x4-grid-cell-special .x4-grid-cell-special:after{display:none;content:"x-slicer:bg:url(images/grid/cell-special-bg.gif)"}.x4-grid-cell-special .x4-grid-cell-special-selected:after{display:none;content:"x-slicer:bg:url(images/grid/cell-special-selected-bg.gif)"}.x4-grid-dirty-cell{background:url(images/grid/dirty.gif) no-repeat 0 0}.x4-grid-row .x4-grid-cell-selected{color:null;background-color:#b8cfee}.x4-grid-with-col-lines .x4-grid-cell{border-right-width:1px}.x4-grid-resize-marker{width:1px;background-color:#0f0f0f}.x4-grid-drop-indicator{position:absolute;height:1px;line-height:0;background-color:#77bc71;overflow:visible;pointer-events:none}.x4-grid-drop-indicator .x4-grid-drop-indicator-left{position:absolute;top:-8px;left:-12px;background-image:url(images/grid/dd-insert-arrow-right.png);height:16px;width:16px}.x4-grid-drop-indicator .x4-grid-drop-indicator-right{position:absolute;top:-8px;right:-11px;background-image:url(images/grid/dd-insert-arrow-left.png);height:16px;width:16px}.x4-ie6 .x4-grid-drop-indicator-left{background-image:url(images/grid/dd-insert-arrow-right.gif)}.x4-ie6 .x4-grid-drop-indicator-right{background-image:url(images/grid/dd-insert-arrow-left.gif)}.col-move-top,.col-move-bottom{width:9px;height:9px}.col-move-top{background-image:url(images/grid/col-move-top.gif)}.col-move-bottom{background-image:url(images/grid/col-move-bottom.gif)}.x4-grid-header-ct{border:1px solid #99bce8;border-bottom-color:#c5c5c5;background-color:#c5c5c5;background-image:none;background-color:#c5c5c5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f9f9f9),color-stop(100%,#e3e4e6));background-image:-webkit-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-moz-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-o-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:linear-gradient(top,#f9f9f9,#e3e4e6)}.x4-accordion-item .x4-grid-header-ct{border-width:0 0 1px!important}.x4-accordion-item .x4-grid-header-ct-hidden{border:0!important}.x4-grid-body{border-top-color:#c5c5c5}.x4-hmenu-sort-asc .x4-menu-item-icon{background-image:url(images/grid/hmenu-asc.gif)}.x4-hmenu-sort-desc .x4-menu-item-icon{background-image:url(images/grid/hmenu-desc.gif)}.x4-cols-icon .x4-menu-item-icon{background-image:url(images/grid/columns.gif)}.x4-column-header{border-right:1px solid #c5c5c5;color:black;font:normal 11px/13px tahoma,arial,verdana,sans-serif;background-image:none;background-color:#c5c5c5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f9f9f9),color-stop(100%,#e3e4e6));background-image:-webkit-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-moz-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-o-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:linear-gradient(top,#f9f9f9,#e3e4e6)}.x4-group-sub-header{background:transparent;border-top:1px solid #c5c5c5}.x4-group-sub-header .x4-column-header-inner{padding:3px 6px 5px 6px}.x4-column-header-inner{padding:4px 6px 5px 6px;text-overflow:ellipsis}.x4-column-header-over,.x4-column-header-sort-ASC,.x4-column-header-sort-DESC{background-image:none;background-color:#aaccf6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ebf3fd),color-stop(39%,#ebf3fd),color-stop(40%,#d9e8fb),color-stop(100%,#d9e8fb));background-image:-webkit-linear-gradient(top,#ebf3fd,#ebf3fd 39%,#d9e8fb 40%,#d9e8fb);background-image:-moz-linear-gradient(top,#ebf3fd,#ebf3fd 39%,#d9e8fb 40%,#d9e8fb);background-image:-o-linear-gradient(top,#ebf3fd,#ebf3fd 39%,#d9e8fb 40%,#d9e8fb);background-image:linear-gradient(top,#ebf3fd,#ebf3fd 39%,#d9e8fb 40%,#d9e8fb)}.x4-nlg .x4-grid-header-ct,.x4-nlg .x4-column-header{background-image:url(images/grid/column-header-bg.gif)}.x4-nlg .x4-column-header-over,.x4-nlg .x4-column-header-sort-ASC,.x4-nlg .x4-column-header-sort-DESC{background-image:url(images/grid/column-header-over-bg.gif)}.x4-column-header-open{background-color:transparent}.x4-column-header-open .x4-column-header-trigger{background-color:transparent}.x4-column-header-trigger{width:14px;cursor:pointer;background-color:transparent;background-position:0 center}.x4-column-header-align-right .x4-column-header-text{margin-right:9px}.x4-column-header-sort-ASC .x4-column-header-text,.x4-column-header-sort-DESC .x4-column-header-text{padding-right:12px;background-position:right center}.x4-column-header-sort-ASC .x4-column-header-text{background-image:url(images/grid/sort_asc.gif)}.x4-column-header-sort-DESC .x4-column-header-text{background-image:url(images/grid/sort_desc.gif)}.x4-column-header:after{display:none;content:"x-slicer:bg:url(images/grid/column-header-bg.gif), stretch:bottom"}.x4-column-header-over:after{display:none;content:"x-slicer:bg:url(images/grid/column-header-over-bg.gif), stretch:bottom"}.x4-grid-cell-inner-action-col{padding:2px 2px 2px 2px}.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-inner-action-col{padding-top:1px;padding-bottom:1px}.x4-action-col-cell .x4-item-disabled{filter:alpha(opacity=30);opacity:.3}.x4-action-col-icon{height:16px;width:16px;cursor:pointer}.x4-grid-cell-inner-checkcolumn{padding:4px 6px 3px 6px}.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-inner-checkcolumn{padding-top:3px;padding-bottom:2px}.x4-grid-checkcolumn{width:13px;height:13px;background:url(images/form/checkbox.gif) 0 0 no-repeat}.x4-item-disabled .x4-grid-checkcolumn{filter:alpha(opacity=30);opacity:.3}.x4-grid-checkcolumn-checked{background-position:0 -13px}.x4-grid-cell-inner-row-numberer{padding:3px 5px 4px 3px}.x4-grid-group-hd{border-width:0 0 2px 0;border-style:solid;border-color:#99bbe8;padding:10px 4px 4px 4px;background:white;cursor:pointer}.x4-grid-group-hd-not-collapsible{cursor:default}.x4-grid-group-hd-collapsible .x4-grid-group-title{background-repeat:no-repeat;background-position:left center;background-image:url(images/grid/group-collapse.gif);padding:0 0 0 14px}.x4-grid-group-title{color:#3764a0;font:bold 11px/13px tahoma,arial,verdana,sans-serif}.x4-grid-group-hd-collapsed .x4-grid-group-title{background-image:url(images/grid/group-expand.gif)}.x4-grid-group-collapsed .x4-grid-group-title{background-image:url(images/grid/group-expand.gif)}.x4-group-by-icon{background-image:url(images/grid/group-by.gif)}.x4-show-groups-icon{background-image:url(images/grid/group-by.gif)}.x4-grid-rowbody{font:normal 11px/13px tahoma,arial,verdana,sans-serif;padding:5px 6px 5px 6px}.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-rowbody{padding-top:6px;padding-bottom:4px}.x4-grid-rowwrap{border-color:#ededed #d0d0d0 #ededed #d0d0d0;border-style:solid}.x4-summary-bottom{border-bottom-color:#c5c5c5}.x4-docked-summary{border-width:1px;border-color:#99bce8;border-style:solid}.x4-docked-summary .x4-grid-table{width:100%}.x4-grid-row-summary .x4-grid-cell,.x4-grid-row-summary .x4-grid-rowwrap,.x4-grid-row-summary .x4-grid-cell-rowbody{border-color:#ededed #d0d0d0 #ededed #d0d0d0;background-color:transparent!important;border-top-width:0;font:normal 11px/13px tahoma,arial,verdana,sans-serif}.x4-grid-with-row-lines .x4-grid-table-summary{border:0}.x4-grid-locked .x4-grid-inner-locked{border-width:0 1px 0 0;border-style:solid}.x4-grid-inner-locked .x4-column-header-last,.x4-grid-inner-locked .x4-grid-cell-last{border-right-width:0!important}.x4-hmenu-lock .x4-menu-item-icon{background-image:url(images/grid/hmenu-lock.gif)}.x4-hmenu-unlock .x4-menu-item-icon{background-image:url(images/grid/hmenu-unlock.gif)}.x4-grid-editor .x4-form-text{font:normal 11px/15px tahoma,arial,verdana,sans-serif;padding:1px 5px 2px 5px;height:20px}.x4-content-box .x4-grid-editor .x4-form-text{height:15px}.x4-gecko .x4-grid-editor .x4-form-text{padding-left:4px;padding-right:4px}.x4-grid-editor .x4-form-trigger{height:20px}.x4-grid-editor .x4-form-spinner-up,.x4-grid-editor .x4-form-spinner-down{height:10px}.x4-grid-editor .x4-form-cb{margin-top:4px}.x4-grid-editor .x4-form-cb-wrap{height:20px}.x4-grid-editor .x4-form-display-field-body{height:20px}.x4-grid-editor .x4-form-display-field{font:normal 11px/15px tahoma,arial,verdana,sans-serif;padding:2px 6px 3px 6px;text-overflow:ellipsis}.x4-grid-editor .x4-form-action-col-field{padding:2px 2px 2px 2px}.x4-tree-cell-editor .x4-form-text{padding-left:2px;padding-right:2px}.x4-gecko .x4-tree-cell-editor .x4-form-text{padding-left:1px;padding-right:1px}.x4-grid-row-editor .x4-field{margin:0 1px 0 1px}.x4-grid-row-editor .x4-form-display-field{padding:2px 5px 3px 5px}.x4-grid-row-editor .x4-form-action-col-field{padding:2px 1px 2px 1px}.x4-grid-row-editor .x4-form-text{padding:1px 4px 2px 4px}.x4-gecko .x4-grid-row-editor .x4-form-text{padding-left:3px;padding-right:3px}.x4-grid-row-editor .x4-panel-body{border-top:1px solid #99bce8!important;border-bottom:1px solid #99bce8!important;padding:4px 0 4px 0;background-color:#eaf1fb}.x4-grid-with-col-lines .x4-grid-row-editor .x4-form-cb{margin-right:1px}.x4-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:4px 4px 4px 4px;border-width:0 1px 1px 1px;border-style:solid;background-color:#eaf1fb}.x4-grid-row-editor-buttons-default-bottom-mc{background-color:#eaf1fb}.x4-nbr .x4-grid-row-editor-buttons-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-grid-row-editor-buttons-default-bottom-frameInfo{font-family:th-0-0-5-5-0-1-1-1-4-4-4-4}.x4-grid-row-editor-buttons-default-bottom-tl{background-position:0 -10px}.x4-grid-row-editor-buttons-default-bottom-tr{background-position:right -15px}.x4-grid-row-editor-buttons-default-bottom-bl{background-position:0 -20px}.x4-grid-row-editor-buttons-default-bottom-br{background-position:right -25px}.x4-grid-row-editor-buttons-default-bottom-ml{background-position:0 top}.x4-grid-row-editor-buttons-default-bottom-mr{background-position:right top}.x4-grid-row-editor-buttons-default-bottom-tc{background-position:0 0}.x4-grid-row-editor-buttons-default-bottom-bc{background-position:0 -5px}.x4-grid-row-editor-buttons-default-bottom-tr,.x4-grid-row-editor-buttons-default-bottom-br,.x4-grid-row-editor-buttons-default-bottom-mr{padding-right:5px}.x4-grid-row-editor-buttons-default-bottom-tl,.x4-grid-row-editor-buttons-default-bottom-bl,.x4-grid-row-editor-buttons-default-bottom-ml{padding-left:5px}.x4-grid-row-editor-buttons-default-bottom-tc{height:0}.x4-grid-row-editor-buttons-default-bottom-bc{height:5px}.x4-grid-row-editor-buttons-default-bottom-tl,.x4-grid-row-editor-buttons-default-bottom-bl,.x4-grid-row-editor-buttons-default-bottom-tr,.x4-grid-row-editor-buttons-default-bottom-br,.x4-grid-row-editor-buttons-default-bottom-tc,.x4-grid-row-editor-buttons-default-bottom-bc,.x4-grid-row-editor-buttons-default-bottom-ml,.x4-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif)}.x4-grid-row-editor-buttons-default-bottom-ml,.x4-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif);background-repeat:repeat-y}.x4-grid-row-editor-buttons-default-bottom-mc{padding:4px 0 0 0}.x4-strict .x4-ie7 .x4-grid-row-editor-buttons-default-bottom-tl,.x4-strict .x4-ie7 .x4-grid-row-editor-buttons-default-bottom-bl{position:relative;right:0}.x4-grid-row-editor-buttons-default-bottom:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"}.x4-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:4px 4px 4px 4px;border-width:1px 1px 0 1px;border-style:solid;background-color:#eaf1fb}.x4-grid-row-editor-buttons-default-top-mc{background-color:#eaf1fb}.x4-nbr .x4-grid-row-editor-buttons-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x4-nbr .x4-grid-row-editor-buttons-default-top-frameInfo{font-family:th-5-5-0-0-1-1-0-1-4-4-4-4}.x4-grid-row-editor-buttons-default-top-tl{background-position:0 -10px}.x4-grid-row-editor-buttons-default-top-tr{background-position:right -15px}.x4-grid-row-editor-buttons-default-top-bl{background-position:0 -20px}.x4-grid-row-editor-buttons-default-top-br{background-position:right -25px}.x4-grid-row-editor-buttons-default-top-ml{background-position:0 top}.x4-grid-row-editor-buttons-default-top-mr{background-position:right top}.x4-grid-row-editor-buttons-default-top-tc{background-position:0 0}.x4-grid-row-editor-buttons-default-top-bc{background-position:0 -5px}.x4-grid-row-editor-buttons-default-top-tr,.x4-grid-row-editor-buttons-default-top-br,.x4-grid-row-editor-buttons-default-top-mr{padding-right:5px}.x4-grid-row-editor-buttons-default-top-tl,.x4-grid-row-editor-buttons-default-top-bl,.x4-grid-row-editor-buttons-default-top-ml{padding-left:5px}.x4-grid-row-editor-buttons-default-top-tc{height:5px}.x4-grid-row-editor-buttons-default-top-bc{height:0}.x4-grid-row-editor-buttons-default-top-tl,.x4-grid-row-editor-buttons-default-top-bl,.x4-grid-row-editor-buttons-default-top-tr,.x4-grid-row-editor-buttons-default-top-br,.x4-grid-row-editor-buttons-default-top-tc,.x4-grid-row-editor-buttons-default-top-bc,.x4-grid-row-editor-buttons-default-top-ml,.x4-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif)}.x4-grid-row-editor-buttons-default-top-ml,.x4-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif);background-repeat:repeat-y}.x4-grid-row-editor-buttons-default-top-mc{padding:0 0 4px 0}.x4-strict .x4-ie7 .x4-grid-row-editor-buttons-default-top-tl,.x4-strict .x4-ie7 .x4-grid-row-editor-buttons-default-top-bl{position:relative;right:0}.x4-grid-row-editor-buttons-default-top:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"}.x4-grid-row-editor-buttons-default-bottom{top:29px}.x4-grid-row-editor-buttons-default-top{bottom:29px}.x4-grid-row-editor-buttons{border-color:#99bce8}.x4-row-editor-update-button{margin-right:2px}.x4-row-editor-cancel-button{margin-left:2px}.x4-grid-row-editor-errors .x4-tip-body{padding:5px}.x4-grid-row-editor-errors-item{list-style:disc;margin-left:15px}.x4-grid-cell-inner-row-expander{padding:6px 7px 5px 7px}.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-inner-row-expander{padding-top:5px;padding-bottom:4px}.x4-grid-row-expander{width:9px;height:9px;cursor:pointer;background-image:url(images/grid/group-collapse.gif)}.x4-grid-row-collapsed .x4-grid-row-expander{background-image:url(images/grid/group-expand.gif)}.x4-grid-cell-inner-property-name{background-image:url(images/grid/property-cell-bg.gif);background-repeat:no-repeat;background-position:-16px 2px;padding-left:12px}.x4-accordion-layout-ct{background-color:white;padding:0}.x4-accordion-hd .x4-panel-header-text-container{color:black;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;text-transform:none}.x4-accordion-item{margin:0}.x4-accordion-item .x4-accordion-hd{background:#d9e7f8;border-top-color:#f3f7fb;padding:4px 5px 5px 5px}.x4-accordion-item .x4-accordion-hd-sibling-expanded{border-top-color:#99bce8}.x4-accordion-item .x4-accordion-hd-last-collapsed{border-bottom-color:#d9e7f8}.x4-accordion-item .x4-accordion-body{border-width:0}.x4-accordion-hd .x4-tool-collapse-top,.x4-accordion-hd .x4-tool-collapse-bottom{background-position:0 -255px}.x4-accordion-hd .x4-tool-expand-top,.x4-accordion-hd .x4-tool-expand-bottom{background-position:0 -240px}.x4-accordion-hd .x4-tool-over .x4-tool-collapse-top,.x4-accordion-hd .x4-tool-over .x4-tool-collapse-bottom{background-position:-15px -255px}.x4-accordion-hd .x4-tool-over .x4-tool-expand-top,.x4-accordion-hd .x4-tool-over .x4-tool-expand-bottom{background-position:-15px -240px}.x4-accordion-hd .x4-tool-img{background-color:#d9e7f8}.x4-collapse-el{cursor:pointer}.x4-layout-split-left,.x4-layout-split-right{top:50%;margin-top:-18px;width:5px;height:35px}.x4-layout-split-top,.x4-layout-split-bottom{left:50%;width:35px;height:5px;margin-left:-18px}.x4-layout-split-left{background-image:url(images/util/splitter/mini-left.gif)}.x4-layout-split-right{background-image:url(images/util/splitter/mini-right.gif)}.x4-layout-split-top{background-image:url(images/util/splitter/mini-top.gif)}.x4-layout-split-bottom{background-image:url(images/util/splitter/mini-bottom.gif)}.x4-splitter-collapsed .x4-layout-split-left{background-image:url(images/util/splitter/mini-right.gif)}.x4-splitter-collapsed .x4-layout-split-right{background-image:url(images/util/splitter/mini-left.gif)}.x4-splitter-collapsed .x4-layout-split-top{background-image:url(images/util/splitter/mini-bottom.gif)}.x4-splitter-collapsed .x4-layout-split-bottom{background-image:url(images/util/splitter/mini-top.gif)}.x4-splitter-active{background-color:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x4-splitter-active .x4-collapse-el{filter:alpha(opacity=30);opacity:.3}.x4-border-layout-ct{background-color:#dfe8f6}.x4-menu-body{background:#f0f0f0;padding:2px}.x4-menu-icon-separator{left:24px;border-left:solid 1px #e0e0e0;background-color:white;width:2px}.x4-menu-item{padding:1px;cursor:pointer}.x4-menu-item-indent{margin-left:30px}.x4-menu-item-active{background-image:none;background-color:#d9e8fb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e7f0fc),color-stop(100%,#c7ddf9));background-image:-webkit-linear-gradient(top,#e7f0fc,#c7ddf9);background-image:-moz-linear-gradient(top,#e7f0fc,#c7ddf9);background-image:-o-linear-gradient(top,#e7f0fc,#c7ddf9);background-image:linear-gradient(top,#e7f0fc,#c7ddf9);border-color:#a9cbf5;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;border-width:1px;border-style:solid;padding:0}.x4-nlg .x4-menu-item-active{background:#d9e8fb repeat-x left top;background-image:url(images/menu/menu-item-active-bg.gif)}.x4-menu-item-link{line-height:22px;padding:0 0 0 30px;display:inline-block}.x4-right-check-item-text{padding-right:22px}.x4-menu-item-icon{width:16px;height:16px;top:4px;left:3px;background-position:center center}.x4-menu-item-glyph{font-size:16px;line-height:16px;color:#222;opacity:.5}.x4-ie8m .x4-menu-item-glyph{color:#898989}.x4-gecko .x4-menu-item-active .x4-menu-item-icon,.x4-quirks .x4-menu-item-active .x4-menu-item-icon,.x4-ie9m .x4-menu-item-active .x4-menu-item-icon{top:3px;left:2px}.x4-menu-item-icon-right{width:16px;height:16px;top:3px;right:3px;background-position:center center}.x4-menu-item-text{font-size:11px;color:#222;cursor:pointer;margin-right:16px}.x4-menu-item-checked .x4-menu-item-icon,.x4-menu-item-checked .x4-menu-item-icon-right{background-image:url(images/menu/checked.gif)}.x4-menu-item-checked .x4-menu-group-icon{background-image:url(images/menu/group-checked.gif)}.x4-menu-item-unchecked .x4-menu-item-icon,.x4-menu-item-unchecked .x4-menu-item-icon-right{background-image:url(images/menu/unchecked.gif)}.x4-menu-item-unchecked .x4-menu-group-icon{background-image:none}.x4-menu-item-separator{height:2px;border-top:solid 1px #e0e0e0;background-color:white;margin:2px 0;padding:0}.x4-menu-item-arrow{width:12px;height:9px;top:7px;right:0;background-image:url(images/menu/menu-parent.gif)}.x4-gecko .x4-menu-item-active .x4-menu-item-arrow,.x4-quirks .x4-menu-item-active .x4-menu-item-arrow,.x4-ie9m .x4-menu-item-active .x4-menu-item-arrow{top:6px;right:-1px}.x4-menu-item-disabled{filter:alpha(opacity=50);opacity:.5}.x4-content-box .x4-menu-icon-separator{width:1px}.x4-content-box .x4-menu-item-separator{height:1px}.x4-ie .x4-menu-item-disabled .x4-menu-item-icon{filter:alpha(opacity=50);opacity:.5}.x4-ie .x4-menu-item-disabled .x4-menu-item-text{background-color:transparent}.x4-menu-date-item{border-color:#99bbe8}.x4-menu-item .x4-form-item-label{font-size:11px;color:#222}.x4-menu-scroll-top{height:8px;background-image:url(images/menu/scroll-top.gif)}.x4-menu-scroll-bottom{height:8px;background-image:url(images/menu/scroll-bottom.gif)}.x4-menu-scroll-top,.x4-menu-scroll-bottom{background-color:#f0f0f0}.x4-menu-item-link:after{display:none;content:"x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"}.x4-tool{cursor:pointer}.x4-tool-img{overflow:hidden;width:15px;height:15px;background-image:url(images/tools/tool-sprites.gif);margin:0}.x4-tool-placeholder{visibility:hidden}.x4-tool-close{background-position:0 0}.x4-tool-minimize{background-position:0 -15px}.x4-tool-maximize{background-position:0 -30px}.x4-tool-restore{background-position:0 -45px}.x4-tool-toggle{background-position:0 -60px}.x4-panel-collapsed .x4-tool-toggle{background-position:0 -75px}.x4-tool-gear{background-position:0 -90px}.x4-tool-prev{background-position:0 -105px}.x4-tool-next{background-position:0 -120px}.x4-tool-pin{background-position:0 -135px}.x4-tool-unpin{background-position:0 -150px}.x4-tool-right{background-position:0 -165px}.x4-tool-left{background-position:0 -180px}.x4-tool-down{background-position:0 -195px}.x4-tool-up{background-position:0 -210px}.x4-tool-refresh{background-position:0 -225px}.x4-tool-plus{background-position:0 -240px}.x4-tool-minus{background-position:0 -255px}.x4-tool-search{background-position:0 -270px}.x4-tool-save{background-position:0 -285px}.x4-tool-help{background-position:0 -300px}.x4-tool-print{background-position:0 -315px}.x4-tool-expand{background-position:0 -330px}.x4-tool-collapse{background-position:0 -345px}.x4-tool-resize{background-position:0 -360px}.x4-tool-move{background-position:0 -375px}.x4-tool-expand-bottom,.x4-tool-collapse-bottom{background-position:0 -195px}.x4-tool-expand-top,.x4-tool-collapse-top{background-position:0 -210px}.x4-tool-expand-left,.x4-tool-collapse-left{background-position:0 -180px}.x4-tool-expand-right,.x4-tool-collapse-right{background-position:0 -165px}.x4-tool-over .x4-tool-close{background-position:-15px 0}.x4-tool-over .x4-tool-minimize{background-position:-15px -15px}.x4-tool-over .x4-tool-maximize{background-position:-15px -30px}.x4-tool-over .x4-tool-restore{background-position:-15px -45px}.x4-tool-over .x4-tool-toggle{background-position:-15px -60px}.x4-panel-collapsed .x4-tool-over .x4-tool-toggle{background-position:-15px -75px}.x4-tool-over .x4-tool-gear{background-position:-15px -90px}.x4-tool-over .x4-tool-prev{background-position:-15px -105px}.x4-tool-over .x4-tool-next{background-position:-15px -120px}.x4-tool-over .x4-tool-pin{background-position:-15px -135px}.x4-tool-over .x4-tool-unpin{background-position:-15px -150px}.x4-tool-over .x4-tool-right{background-position:-15px -165px}.x4-tool-over .x4-tool-left{background-position:-15px -180px}.x4-tool-over .x4-tool-down{background-position:-15px -195px}.x4-tool-over .x4-tool-up{background-position:-15px -210px}.x4-tool-over .x4-tool-refresh{background-position:-15px -225px}.x4-tool-over .x4-tool-plus{background-position:-15px -240px}.x4-tool-over .x4-tool-minus{background-position:-15px -255px}.x4-tool-over .x4-tool-search{background-position:-15px -270px}.x4-tool-over .x4-tool-save{background-position:-15px -285px}.x4-tool-over .x4-tool-help{background-position:-15px -300px}.x4-tool-over .x4-tool-print{background-position:-15px -315px}.x4-tool-over .x4-tool-expand{background-position:-15px -330px}.x4-tool-over .x4-tool-collapse{background-position:-15px -345px}.x4-tool-over .x4-tool-resize{background-position:-15px -360px}.x4-tool-over .x4-tool-move{background-position:-15px -375px}.x4-tool-over .x4-tool-expand-bottom,.x4-tool-over .x4-tool-collapse-bottom{background-position:-15px -195px}.x4-tool-over .x4-tool-expand-top,.x4-tool-over .x4-tool-collapse-top{background-position:-15px -210px}.x4-tool-over .x4-tool-expand-left,.x4-tool-over .x4-tool-collapse-left{background-position:-15px -180px}.x4-tool-over .x4-tool-expand-right,.x4-tool-over .x4-tool-collapse-right{background-position:-15px -165px}.x4-resizable-handle{position:absolute;z-index:100;font-size:1px;line-height:6px;overflow:hidden;zoom:1;filter:alpha(opacity=0);opacity:0;background-color:#fff}.x4-collapsed .x4-resizable-handle{display:none}.x4-resizable-over .x4-resizable-handle-north{cursor:n-resize}.x4-resizable-over .x4-resizable-handle-south{cursor:s-resize}.x4-resizable-over .x4-resizable-handle-east{cursor:e-resize}.x4-resizable-over .x4-resizable-handle-west{cursor:w-resize}.x4-resizable-over .x4-resizable-handle-southeast{cursor:se-resize}.x4-resizable-over .x4-resizable-handle-northwest{cursor:nw-resize}.x4-resizable-over .x4-resizable-handle-northeast{cursor:ne-resize}.x4-resizable-over .x4-resizable-handle-southwest{cursor:sw-resize}.x4-resizable-handle-east{width:6px;height:100%;right:0;top:0}.x4-resizable-handle-south{width:100%;height:6px;left:0;bottom:0}.x4-resizable-handle-west{width:6px;height:100%;left:0;top:0}.x4-resizable-handle-north{width:100%;height:6px;left:0;top:0}.x4-resizable-handle-southeast{width:6px;height:6px;right:0;bottom:0;z-index:101}.x4-resizable-handle-northwest{width:6px;height:6px;left:0;top:0;z-index:101}.x4-resizable-handle-northeast{width:6px;height:6px;right:0;top:0;z-index:101}.x4-resizable-handle-southwest{width:6px;height:6px;left:0;bottom:0;z-index:101}.x4-ie .x4-resizable-handle-east{margin-right:-1px}.x4-ie .x4-resizable-handle-south{margin-bottom:-1px}.x4-resizable-pinned .x4-resizable-handle,.x4-resizable-over .x4-resizable-handle{filter:alpha(opacity=100);opacity:1}.x4-window .x4-window-handle{filter:alpha(opacity=0);opacity:0}.x4-window-collapsed .x4-window-handle{display:none}.x4-resizable-proxy{border:1px dashed #3b5a82;position:absolute;overflow:hidden;z-index:50000}.x4-resizable-over .x4-resizable-handle-east,.x4-resizable-over .x4-resizable-handle-west,.x4-resizable-pinned .x4-resizable-handle-east,.x4-resizable-pinned .x4-resizable-handle-west{background-image:url(images/sizer/e-handle.gif)}.x4-resizable-over .x4-resizable-handle-south,.x4-resizable-over .x4-resizable-handle-north,.x4-resizable-pinned .x4-resizable-handle-south,.x4-resizable-pinned .x4-resizable-handle-north{background-image:url(images/sizer/s-handle.gif)}.x4-resizable-over .x4-resizable-handle-southeast,.x4-resizable-pinned .x4-resizable-handle-southeast{background-position:top left;background-image:url(images/sizer/se-handle.gif)}.x4-resizable-over .x4-resizable-handle-northwest,.x4-resizable-pinned .x4-resizable-handle-northwest{background-position:bottom right;background-image:url(images/sizer/nw-handle.gif)}.x4-resizable-over .x4-resizable-handle-northeast,.x4-resizable-pinned .x4-resizable-handle-northeast{background-position:bottom left;background-image:url(images/sizer/ne-handle.gif)}.x4-resizable-over .x4-resizable-handle-southwest,.x4-resizable-pinned .x4-resizable-handle-southwest{background-position:top right;background-image:url(images/sizer/sw-handle.gif)}.x4-slider-horz{padding-left:7px;background:no-repeat 0 -15px}.x4-slider-horz .x4-slider-end{padding-right:7px;background:no-repeat right -30px}.x4-slider-horz .x4-slider-inner{height:15px}.x4-ie6 .x4-form-item .x4-slider-horz,.x4-ie7 .x4-form-item .x4-slider-horz,.x4-quirks .x4-ie .x4-form-item .x4-slider-horz{margin-top:4px}.x4-slider-horz .x4-slider-thumb{width:14px;height:15px;margin-left:-7px;background-image:url(images/slider/slider-thumb.png)}.x4-slider-horz .x4-slider-thumb-over{background-position:-14px -15px}.x4-slider-horz .x4-slider-thumb-drag{background-position:-28px -30px}.x4-slider-vert{padding-top:7px;background:no-repeat -30px 0}.x4-slider-vert .x4-slider-end{padding-bottom:7px;background:no-repeat -15px bottom;width:15px}.x4-slider-vert .x4-slider-inner{width:15px}.x4-slider-vert .x4-slider-thumb{width:15px;height:14px;margin-bottom:-7px;background-image:url(images/slider/slider-v-thumb.png)}.x4-slider-vert .x4-slider-thumb-over{background-position:-15px -14px}.x4-slider-vert .x4-slider-thumb-drag{background-position:-30px -28px}.x4-slider-horz,.x4-slider-horz .x4-slider-end,.x4-slider-horz .x4-slider-inner{background-image:url(images/slider/slider-bg.png)}.x4-slider-vert,.x4-slider-vert .x4-slider-end,.x4-slider-vert .x4-slider-inner{background-image:url(images/slider/slider-v-bg.png)}.x4-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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%)}.x4-tab-default-top-mc{background-image:url(images/tab/tab-default-top-fbg.gif);background-position:0 top;background-color:#deecfd}.x4-nlg .x4-tab-default-top{background-image:url(images/tab/tab-default-top-bg.gif);background-position:0 top}.x4-nbr .x4-tab-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-tab-default-top-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x4-tab-default-top-tl{background-position:0 -8px}.x4-tab-default-top-tr{background-position:right -12px}.x4-tab-default-top-bl{background-position:0 -16px}.x4-tab-default-top-br{background-position:right -20px}.x4-tab-default-top-ml{background-position:0 top}.x4-tab-default-top-mr{background-position:right top}.x4-tab-default-top-tc{background-position:0 0}.x4-tab-default-top-bc{background-position:0 -4px}.x4-tab-default-top-tr,.x4-tab-default-top-br,.x4-tab-default-top-mr{padding-right:4px}.x4-tab-default-top-tl,.x4-tab-default-top-bl,.x4-tab-default-top-ml{padding-left:4px}.x4-tab-default-top-tc{height:4px}.x4-tab-default-top-bc{height:0}.x4-tab-default-top-tl,.x4-tab-default-top-bl,.x4-tab-default-top-tr,.x4-tab-default-top-br,.x4-tab-default-top-tc,.x4-tab-default-top-bc,.x4-tab-default-top-ml,.x4-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x4-tab-default-top-ml,.x4-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif)}.x4-tab-default-top-mc{padding:0 6px 3px 6px}.x4-strict .x4-ie7 .x4-tab-default-top-tl,.x4-strict .x4-ie7 .x4-tab-default-top-bl{position:relative;right:0}.x4-tab-default-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x4-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:3px 9px 3px 9px;border-width:0 1px 1px 1px;border-style:solid;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%)}.x4-tab-default-bottom-mc{background-image:url(images/tab/tab-default-bottom-fbg.gif);background-position:0 top;background-color:#deecfd}.x4-nlg .x4-tab-default-bottom{background-image:url(images/tab/tab-default-bottom-bg.gif);background-position:0 top}.x4-nbr .x4-tab-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-tab-default-bottom-frameInfo{font-family:th-0-0-4-4-0-1-1-1-3-9-3-9}.x4-tab-default-bottom-tl{background-position:0 -8px}.x4-tab-default-bottom-tr{background-position:right -12px}.x4-tab-default-bottom-bl{background-position:0 -16px}.x4-tab-default-bottom-br{background-position:right -20px}.x4-tab-default-bottom-ml{background-position:0 top}.x4-tab-default-bottom-mr{background-position:right top}.x4-tab-default-bottom-tc{background-position:0 0}.x4-tab-default-bottom-bc{background-position:0 -4px}.x4-tab-default-bottom-tr,.x4-tab-default-bottom-br,.x4-tab-default-bottom-mr{padding-right:4px}.x4-tab-default-bottom-tl,.x4-tab-default-bottom-bl,.x4-tab-default-bottom-ml{padding-left:4px}.x4-tab-default-bottom-tc{height:0}.x4-tab-default-bottom-bc{height:4px}.x4-tab-default-bottom-tl,.x4-tab-default-bottom-bl,.x4-tab-default-bottom-tr,.x4-tab-default-bottom-br,.x4-tab-default-bottom-tc,.x4-tab-default-bottom-bc,.x4-tab-default-bottom-ml,.x4-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-corners.gif)}.x4-tab-default-bottom-ml,.x4-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-sides.gif)}.x4-tab-default-bottom-mc{padding:3px 6px 0 6px}.x4-strict .x4-ie7 .x4-tab-default-bottom-tl,.x4-strict .x4-ie7 .x4-tab-default-bottom-bl{position:relative;right:0}.x4-tab-default-bottom:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-bottom-fbg.gif), bg:url(images/tab/tab-default-bottom-bg.gif), corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"}.x4-tab-default-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: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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%)}.x4-tab-default-left-mc{background-image:url(images/tab/tab-default-top-fbg.gif);background-position:0 top;background-color:#deecfd}.x4-nlg .x4-tab-default-left{background-image:url(images/tab/tab-default-top-bg.gif);background-position:0 top}.x4-nbr .x4-tab-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-tab-default-left-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x4-tab-default-left-tl{background-position:0 -8px}.x4-tab-default-left-tr{background-position:right -12px}.x4-tab-default-left-bl{background-position:0 -16px}.x4-tab-default-left-br{background-position:right -20px}.x4-tab-default-left-ml{background-position:0 top}.x4-tab-default-left-mr{background-position:right top}.x4-tab-default-left-tc{background-position:0 0}.x4-tab-default-left-bc{background-position:0 -4px}.x4-tab-default-left-tr,.x4-tab-default-left-br,.x4-tab-default-left-mr{padding-right:4px}.x4-tab-default-left-tl,.x4-tab-default-left-bl,.x4-tab-default-left-ml{padding-left:4px}.x4-tab-default-left-tc{height:4px}.x4-tab-default-left-bc{height:0}.x4-tab-default-left-tl,.x4-tab-default-left-bl,.x4-tab-default-left-tr,.x4-tab-default-left-br,.x4-tab-default-left-tc,.x4-tab-default-left-bc,.x4-tab-default-left-ml,.x4-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x4-tab-default-left-ml,.x4-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif)}.x4-tab-default-left-mc{padding:0 6px 3px 6px}.x4-strict .x4-ie7 .x4-tab-default-left-tl,.x4-strict .x4-ie7 .x4-tab-default-left-bl{position:relative;right:0}.x4-tab-default-left:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x4-tab-default-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: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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%)}.x4-tab-default-right-mc{background-image:url(images/tab/tab-default-top-fbg.gif);background-position:0 top;background-color:#deecfd}.x4-nlg .x4-tab-default-right{background-image:url(images/tab/tab-default-top-bg.gif);background-position:0 top}.x4-nbr .x4-tab-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x4-nbr .x4-tab-default-right-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x4-tab-default-right-tl{background-position:0 -8px}.x4-tab-default-right-tr{background-position:right -12px}.x4-tab-default-right-bl{background-position:0 -16px}.x4-tab-default-right-br{background-position:right -20px}.x4-tab-default-right-ml{background-position:0 top}.x4-tab-default-right-mr{background-position:right top}.x4-tab-default-right-tc{background-position:0 0}.x4-tab-default-right-bc{background-position:0 -4px}.x4-tab-default-right-tr,.x4-tab-default-right-br,.x4-tab-default-right-mr{padding-right:4px}.x4-tab-default-right-tl,.x4-tab-default-right-bl,.x4-tab-default-right-ml{padding-left:4px}.x4-tab-default-right-tc{height:4px}.x4-tab-default-right-bc{height:0}.x4-tab-default-right-tl,.x4-tab-default-right-bl,.x4-tab-default-right-tr,.x4-tab-default-right-br,.x4-tab-default-right-tc,.x4-tab-default-right-bc,.x4-tab-default-right-ml,.x4-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x4-tab-default-right-ml,.x4-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif)}.x4-tab-default-right-mc{padding:0 6px 3px 6px}.x4-strict .x4-ie7 .x4-tab-default-right-tl,.x4-strict .x4-ie7 .x4-tab-default-right-bl{position:relative;right:0}.x4-tab-default-right:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x4-tab-default{border-color:#8db3e3;margin:0 0 0 2px;cursor:pointer}.x4-tab-default .x4-tab-inner{font-size:11px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;color:#416da3;line-height:13px}.x4-tab-default .x4-tab-icon-el{width:16px;height:16px;line-height:16px;background-position:center center}.x4-tab-default .x4-tab-glyph{font-size:16px;color:#416da3;opacity:.5}.x4-ie8m .x4-tab-default .x4-tab-glyph{color:#8facd0}.x4-strict .x4-ie9 .x4-tab-bar-vertical .x4-tab-default{padding-left:0}.x4-strict .x4-ie9 .x4-tab-bar-vertical .x4-tab-default .x4-tab-button{padding-left:9px}.x4-strict .x4-ie9 .x4-tab-bar-vertical .x4-tab-default .x4-tab-icon-el{left:9px}.x4-tab-default-icon .x4-tab-inner{width:16px}.x4-tab-default-left{margin:0 2px 0 0}.x4-tab-default-top,.x4-tab-default-left,.x4-tab-default-right{border-bottom:1px solid #99bce8;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);-webkit-box-shadow:white 0 1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;-moz-box-shadow:white 0 1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;box-shadow:white 0 1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset}.x4-nlg .x4-tab-default-top,.x4-nlg .x4-tab-default-left,.x4-nlg .x4-tab-default-right{background-image:url(images/tab/tab-default-top-bg.gif)}.x4-tab-default-bottom{border-top:1px solid #99bce8;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);-webkit-box-shadow:white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;-moz-box-shadow:white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;box-shadow:white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset}.x4-nlg .x4-tab-default-bottom{background-image:url(images/tab/tab-default-bottom-bg.gif)}.x4-tab-default-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;transform:rotate(270deg);transform-origin:100% 0}.x4-ie9m .x4-tab-default-left{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.x4-tab-default-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;transform:rotate(90deg);transform-origin:0 0}.x4-ie9m .x4-tab-default-right{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.x4-tab-default-icon-text-left .x4-tab-inner{padding-left:20px}.x4-tab-default-over{background-color:#e8f2ff}.x4-tab-default-over .x4-tab-glyph{color:#416da3}.x4-ie8m .x4-tab-default-over .x4-tab-glyph{color:#94afd1}.x4-tab-default-top-over,.x4-tab-default-left-over,.x4-tab-default-right-over{background-image:none;background-color:#e8f2ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#d7e5fd),color-stop(25%,#e0edff),color-stop(45%,#e8f2ff));background-image:-webkit-linear-gradient(top,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:-moz-linear-gradient(top,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:-o-linear-gradient(top,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:linear-gradient(top,#d7e5fd,#e0edff 25%,#e8f2ff 45%)}.x4-nlg .x4-tab-default-top-over,.x4-nlg .x4-tab-default-left-over,.x4-nlg .x4-tab-default-right-over{background-image:url(images/tab/tab-default-top-over-bg.gif)}.x4-tab-default-bottom-over{background-image:none;background-color:#e8f2ff;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#d7e5fd),color-stop(25%,#e0edff),color-stop(45%,#e8f2ff));background-image:-webkit-linear-gradient(bottom,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:-moz-linear-gradient(bottom,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:-o-linear-gradient(bottom,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:linear-gradient(bottom,#d7e5fd,#e0edff 25%,#e8f2ff 45%)}.x4-nlg .x4-tab-default-bottom-over{background-image:url(images/tab/tab-default-bottom-over-bg.gif)}.x4-tab-default-active{background-color:#deecfd}.x4-tab-default-active .x4-tab-inner{color:#15498b}.x4-tab-default-active .x4-tab-glyph{color:#15498b}.x4-ie8m .x4-tab-default-active .x4-tab-glyph{color:#799ac4}.x4-tab-default-top-active,.x4-tab-default-left-active,.x4-tab-default-right-active{border-bottom:1px solid #deecfd;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(25%,#f5f9fe),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#fff,#f5f9fe 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#fff,#f5f9fe 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#fff,#f5f9fe 25%,#deecfd 45%);background-image:linear-gradient(top,#fff,#f5f9fe 25%,#deecfd 45%)}.x4-nlg .x4-tab-default-top-active,.x4-nlg .x4-tab-default-left-active,.x4-nlg .x4-tab-default-right-active{background-image:url(images/tab/tab-default-top-active-bg.gif)}.x4-tab-default-bottom-active{border-top:1px solid #deecfd;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#fff),color-stop(25%,#f5f9fe),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(bottom,#fff,#f5f9fe 25%,#deecfd 45%);background-image:-moz-linear-gradient(bottom,#fff,#f5f9fe 25%,#deecfd 45%);background-image:-o-linear-gradient(bottom,#fff,#f5f9fe 25%,#deecfd 45%);background-image:linear-gradient(bottom,#fff,#f5f9fe 25%,#deecfd 45%)}.x4-nlg .x4-tab-default-bottom-active{background-image:url(images/tab/tab-default-bottom-active-bg.gif)}.x4-tab-default-disabled{border-color:#bbd2ef;cursor:default}.x4-tab-default-disabled .x4-tab-inner{color:#c3b3b3}.x4-tab-default-disabled .x4-tab-icon-el{filter:alpha(opacity=50);opacity:.5}.x4-tab-default-disabled .x4-tab-glyph{color:#c3b3b3;opacity:.3;filter:none}.x4-ie8m .x4-tab-default-disabled .x4-tab-glyph{color:#d8dae4}.x4-tab-default-top-disabled,.x4-tab-default-left-disabled,.x4-tab-default-right-disabled{border-color:#bbd2ef #bbd2ef #99bce8}.x4-tab-default-bottom-disabled{border-color:#99bce8 #bbd2ef #bbd2ef #bbd2ef}.x4-tab-default-top-disabled,.x4-tab-default-left-disabled,.x4-tab-default-right-disabled{background-image:none;background-color:#e1ecfa;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e1ecfa),color-stop(100%,#ecf4fe));background-image:-webkit-linear-gradient(top,#e1ecfa,#ecf4fe);background-image:-moz-linear-gradient(top,#e1ecfa,#ecf4fe);background-image:-o-linear-gradient(top,#e1ecfa,#ecf4fe);background-image:linear-gradient(top,#e1ecfa,#ecf4fe)}.x4-nlg .x4-tab-default-top-disabled,.x4-nlg .x4-tab-default-left-disabled,.x4-nlg .x4-tab-default-right-disabled{background-image:url(images/tab/tab-default-top-disabled-bg.gif)}.x4-tab-default-bottom-disabled{background-image:none;background-color:#e1ecfa;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#e1ecfa),color-stop(100%,#ecf4fe));background-image:-webkit-linear-gradient(bottom,#e1ecfa,#ecf4fe);background-image:-moz-linear-gradient(bottom,#e1ecfa,#ecf4fe);background-image:-o-linear-gradient(bottom,#e1ecfa,#ecf4fe);background-image:linear-gradient(bottom,#e1ecfa,#ecf4fe)}.x4-nlg .x4-tab-default-bottom-disabled{background-image:url(images/tab/tab-default-bottom-disabled-bg.gif)}.x4-nbr .x4-tab-default{background-image:none}.x4-tab-default-top-over .x4-frame-tl,.x4-tab-default-top-over .x4-frame-bl,.x4-tab-default-top-over .x4-frame-tr,.x4-tab-default-top-over .x4-frame-br,.x4-tab-default-top-over .x4-frame-tc,.x4-tab-default-top-over .x4-frame-bc,.x4-tab-default-left-over .x4-frame-tl,.x4-tab-default-left-over .x4-frame-bl,.x4-tab-default-left-over .x4-frame-tr,.x4-tab-default-left-over .x4-frame-br,.x4-tab-default-left-over .x4-frame-tc,.x4-tab-default-left-over .x4-frame-bc,.x4-tab-default-right-over .x4-frame-tl,.x4-tab-default-right-over .x4-frame-bl,.x4-tab-default-right-over .x4-frame-tr,.x4-tab-default-right-over .x4-frame-br,.x4-tab-default-right-over .x4-frame-tc,.x4-tab-default-right-over .x4-frame-bc{background-image:url(images/tab/tab-default-top-over-corners.gif)}.x4-tab-default-top-over .x4-frame-ml,.x4-tab-default-top-over .x4-frame-mr,.x4-tab-default-left-over .x4-frame-ml,.x4-tab-default-left-over .x4-frame-mr,.x4-tab-default-right-over .x4-frame-ml,.x4-tab-default-right-over .x4-frame-mr{background-image:url(images/tab/tab-default-top-over-sides.gif)}.x4-tab-default-top-over .x4-frame-mc,.x4-tab-default-left-over .x4-frame-mc,.x4-tab-default-right-over .x4-frame-mc{background-color:#e8f2ff;background-repeat:repeat-x;background-image:url(images/tab/tab-default-top-over-fbg.gif)}.x4-tab-default-bottom-over .x4-frame-tl,.x4-tab-default-bottom-over .x4-frame-bl,.x4-tab-default-bottom-over .x4-frame-tr,.x4-tab-default-bottom-over .x4-frame-br,.x4-tab-default-bottom-over .x4-frame-tc,.x4-tab-default-bottom-over .x4-frame-bc{background-image:url(images/tab/tab-default-bottom-over-corners.gif)}.x4-tab-default-bottom-over .x4-frame-ml,.x4-tab-default-bottom-over .x4-frame-mr{background-image:url(images/tab/tab-default-bottom-over-sides.gif)}.x4-tab-default-bottom-over .x4-frame-mc{background-color:#e8f2ff;background-repeat:repeat-x;background-image:url(images/tab/tab-default-bottom-over-fbg.gif)}.x4-tab-default-top-active .x4-frame-tl,.x4-tab-default-top-active .x4-frame-bl,.x4-tab-default-top-active .x4-frame-tr,.x4-tab-default-top-active .x4-frame-br,.x4-tab-default-top-active .x4-frame-tc,.x4-tab-default-top-active .x4-frame-bc,.x4-tab-default-left-active .x4-frame-tl,.x4-tab-default-left-active .x4-frame-bl,.x4-tab-default-left-active .x4-frame-tr,.x4-tab-default-left-active .x4-frame-br,.x4-tab-default-left-active .x4-frame-tc,.x4-tab-default-left-active .x4-frame-bc,.x4-tab-default-right-active .x4-frame-tl,.x4-tab-default-right-active .x4-frame-bl,.x4-tab-default-right-active .x4-frame-tr,.x4-tab-default-right-active .x4-frame-br,.x4-tab-default-right-active .x4-frame-tc,.x4-tab-default-right-active .x4-frame-bc{background-image:url(images/tab/tab-default-top-active-corners.gif)}.x4-tab-default-top-active .x4-frame-ml,.x4-tab-default-top-active .x4-frame-mr,.x4-tab-default-left-active .x4-frame-ml,.x4-tab-default-left-active .x4-frame-mr,.x4-tab-default-right-active .x4-frame-ml,.x4-tab-default-right-active .x4-frame-mr{background-image:url(images/tab/tab-default-top-active-sides.gif)}.x4-tab-default-top-active .x4-frame-mc,.x4-tab-default-left-active .x4-frame-mc,.x4-tab-default-right-active .x4-frame-mc{background-color:#deecfd;background-repeat:repeat-x;background-image:url(images/tab/tab-default-top-active-fbg.gif)}.x4-tab-default-bottom-active .x4-frame-tl,.x4-tab-default-bottom-active .x4-frame-bl,.x4-tab-default-bottom-active .x4-frame-tr,.x4-tab-default-bottom-active .x4-frame-br,.x4-tab-default-bottom-active .x4-frame-tc,.x4-tab-default-bottom-active .x4-frame-bc{background-image:url(images/tab/tab-default-bottom-active-corners.gif)}.x4-tab-default-bottom-active .x4-frame-ml,.x4-tab-default-bottom-active .x4-frame-mr{background-image:url(images/tab/tab-default-bottom-active-sides.gif)}.x4-tab-default-bottom-active .x4-frame-mc{background-color:#deecfd;background-repeat:repeat-x;background-image:url(images/tab/tab-default-bottom-active-fbg.gif)}.x4-tab-default-top-disabled .x4-frame-tl,.x4-tab-default-top-disabled .x4-frame-bl,.x4-tab-default-top-disabled .x4-frame-tr,.x4-tab-default-top-disabled .x4-frame-br,.x4-tab-default-top-disabled .x4-frame-tc,.x4-tab-default-top-disabled .x4-frame-bc,.x4-tab-default-left-disabled .x4-frame-tl,.x4-tab-default-left-disabled .x4-frame-bl,.x4-tab-default-left-disabled .x4-frame-tr,.x4-tab-default-left-disabled .x4-frame-br,.x4-tab-default-left-disabled .x4-frame-tc,.x4-tab-default-left-disabled .x4-frame-bc,.x4-tab-default-right-disabled .x4-frame-tl,.x4-tab-default-right-disabled .x4-frame-bl,.x4-tab-default-right-disabled .x4-frame-tr,.x4-tab-default-right-disabled .x4-frame-br,.x4-tab-default-right-disabled .x4-frame-tc,.x4-tab-default-right-disabled .x4-frame-bc{background-image:url(images/tab/tab-default-top-disabled-corners.gif)}.x4-tab-default-top-disabled .x4-frame-ml,.x4-tab-default-top-disabled .x4-frame-mr,.x4-tab-default-left-disabled .x4-frame-ml,.x4-tab-default-left-disabled .x4-frame-mr,.x4-tab-default-right-disabled .x4-frame-ml,.x4-tab-default-right-disabled .x4-frame-mr{background-image:url(images/tab/tab-default-top-disabled-sides.gif)}.x4-tab-default-top-disabled .x4-frame-mc,.x4-tab-default-left-disabled .x4-frame-mc,.x4-tab-default-right-disabled .x4-frame-mc{background-color:#e1ecfa;background-repeat:repeat-x;background-image:url(images/tab/tab-default-top-disabled-fbg.gif)}.x4-tab-default-bottom-disabled .x4-frame-tl,.x4-tab-default-bottom-disabled .x4-frame-bl,.x4-tab-default-bottom-disabled .x4-frame-tr,.x4-tab-default-bottom-disabled .x4-frame-br,.x4-tab-default-bottom-disabled .x4-frame-tc,.x4-tab-default-bottom-disabled .x4-frame-bc{background-image:url(images/tab/tab-default-bottom-disabled-corners.gif)}.x4-tab-default-bottom-disabled .x4-frame-ml,.x4-tab-default-bottom-disabled .x4-frame-mr{background-image:url(images/tab/tab-default-bottom-disabled-sides.gif)}.x4-tab-default-bottom-disabled .x4-frame-mc{background-color:#e1ecfa;background-repeat:repeat-x;background-image:url(images/tab/tab-default-bottom-disabled-fbg.gif)}.x4-nbr .x4-tab-default-top,.x4-nbr .x4-tab-default-left,.x4-nbr .x4-tab-default-right{border-bottom-width:1px!important}.x4-nbr .x4-tab-default-bottom{border-top-width:1px!important}.x4-tab-default .x4-tab-close-btn{width:11px;height:11px;background-image:url(images/tab/tab-default-close.gif);filter:alpha(opacity=60);opacity:.6}.x4-tab-default .x4-tab-close-btn-over{filter:alpha(opacity=100);opacity:1}.x4-tab-default .x4-tab-close-btn{top:2px;right:2px}.x4-tab-default-disabled .x4-tab-close-btn{filter:alpha(opacity=30);opacity:.3}.x4-tab-default-closable .x4-tab-wrap{padding-right:14px}.x4-tab-default-top-over:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-top-over-bg.gif), corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif), frame-bg:url(images/tab/tab-default-top-over-fbg.gif)"}.x4-tab-default-bottom-over:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-bottom-over-bg.gif), corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif), frame-bg:url(images/tab/tab-default-bottom-over-fbg.gif)"}.x4-tab-default-top-active:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-top-active-bg.gif), corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif), frame-bg:url(images/tab/tab-default-top-active-fbg.gif)"}.x4-tab-default-bottom-active:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-bottom-active-bg.gif), corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif), frame-bg:url(images/tab/tab-default-bottom-active-fbg.gif)"}.x4-tab-default-top-disabled:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-top-disabled-bg.gif), corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif), frame-bg:url(images/tab/tab-default-top-disabled-fbg.gif)"}.x4-tab-default-bottom-disabled:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-bottom-disabled-bg.gif), corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif), frame-bg:url(images/tab/tab-default-bottom-disabled-fbg.gif)"}.x4-tab-bar-default{border-style:solid;border-color:#99bce8}.x4-tab-bar-default-top{padding:1px 0 0;border-width:1px 1px 0}.x4-tab-bar-default-bottom{padding:0 0 1px 0;border-width:0 1px 1px 1px}.x4-tab-bar-default-left{padding:0 0 0 1px;border-width:1px 0 1px 1px}.x4-tab-bar-default-right{padding:0 1px 0 0;border-width:1px 1px 1px 0}.x4-tab-bar-default-horizontal{height:25px}.x4-content-box .x4-tab-bar-default-horizontal{height:23px}.x4-tab-bar-default-vertical{width:25px}.x4-content-box .x4-tab-bar-default-vertical{width:23px}.x4-tab-bar-body-default-top{padding-bottom:2px}.x4-tab-bar-body-default-bottom{padding-top:2px}.x4-tab-bar-body-default-left{padding-right:2px}.x4-tab-bar-body-default-right{padding-left:2px}.x4-tab-bar-strip-default{border-style:solid;border-color:#99bce8;background-color:#deecfd}.x4-content-box .x4-tab-bar-strip-default-horizontal{height:2px}.x4-content-box .x4-tab-bar-strip-default-vertical{width:2px}.x4-tab-bar-strip-default-top{border-width:1px 0 0 0;height:3px}.x4-tab-bar-plain .x4-tab-bar-strip-default-top{border-width:1px 1px 0}.x4-tab-bar-strip-default-bottom{border-width:0 0 1px 0;height:3px}.x4-tab-bar-plain .x4-tab-bar-strip-default-bottom{border-width:0 1px 1px 1px}.x4-tab-bar-strip-default-left{border-width:0 0 0 1px;width:3px}.x4-tab-bar-plain .x4-tab-bar-strip-default-left{border-width:1px 0 1px 1px}.x4-tab-bar-strip-default-right{border-width:0 1px 0 0;width:3px}.x4-tab-bar-plain .x4-tab-bar-strip-default-right{border-width:1px 1px 1px 0}.x4-tab-bar-default{background-color:#cbdbef}.x4-tab-bar-default-top{background-image:none;background-color:#cbdbef;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dde8f5),color-stop(100%,#cbdbef));background-image:-webkit-linear-gradient(top,#dde8f5,#cbdbef);background-image:-moz-linear-gradient(top,#dde8f5,#cbdbef);background-image:-o-linear-gradient(top,#dde8f5,#cbdbef);background-image:linear-gradient(top,#dde8f5,#cbdbef)}.x4-nlg .x4-tab-bar-default-top{background:url(images/tab-bar/tab-bar-default-top-bg.gif)}.x4-tab-bar-default-bottom{background-image:none;background-color:#cbdbef;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#dde8f5),color-stop(100%,#cbdbef));background-image:-webkit-linear-gradient(bottom,#dde8f5,#cbdbef);background-image:-moz-linear-gradient(bottom,#dde8f5,#cbdbef);background-image:-o-linear-gradient(bottom,#dde8f5,#cbdbef);background-image:linear-gradient(bottom,#dde8f5,#cbdbef)}.x4-nlg .x4-tab-bar-default-bottom{background:url(images/tab-bar/tab-bar-default-bottom-bg.gif) bottom 0}.x4-tab-bar-default-left{background-image:none;background-color:#cbdbef;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dde8f5),color-stop(100%,#cbdbef));background-image:-webkit-linear-gradient(left,#dde8f5,#cbdbef);background-image:-moz-linear-gradient(left,#dde8f5,#cbdbef);background-image:-o-linear-gradient(left,#dde8f5,#cbdbef);background-image:linear-gradient(left,#dde8f5,#cbdbef)}.x4-nlg .x4-tab-bar-default-left{background:url(images/tab-bar/tab-bar-default-left-bg.gif)}.x4-tab-bar-default-right{background-image:none;background-color:#cbdbef;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dde8f5),color-stop(100%,#cbdbef));background-image:-webkit-linear-gradient(right,#dde8f5,#cbdbef);background-image:-moz-linear-gradient(right,#dde8f5,#cbdbef);background-image:-o-linear-gradient(right,#dde8f5,#cbdbef);background-image:linear-gradient(right,#dde8f5,#cbdbef)}.x4-nlg .x4-tab-bar-default-right{background:url(images/tab-bar/tab-bar-default-right-bg.gif) 0 right}.x4-tab-bar-default .x4-box-scroller{cursor:pointer}.x4-tab-bar-default .x4-tabbar-scroll-left,.x4-tab-bar-default .x4-tabbar-scroll-right{height:20px;width:18px}.x4-tab-bar-default .x4-tabbar-scroll-top,.x4-tab-bar-default .x4-tabbar-scroll-bottom{width:20px;height:18px}.x4-tab-bar-default-bottom .x4-box-scroller{margin-top:1px}.x4-tab-bar-default-right .x4-box-scroller{margin-left:1px}.x4-tab-bar-default-top .x4-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-left-top.gif)}.x4-tab-bar-default-top .x4-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-right-top.gif)}.x4-tab-bar-default-bottom .x4-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-left-bottom.gif)}.x4-tab-bar-default-bottom .x4-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-right-bottom.gif)}.x4-tab-bar-default-left .x4-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-left.gif)}.x4-tab-bar-default-left .x4-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-left.gif)}.x4-tab-bar-default-right .x4-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-right.gif)}.x4-tab-bar-default-right .x4-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-right.gif)}.x4-tab-bar-default .x4-tabbar-scroll-left-hover,.x4-tab-bar-default .x4-tabbar-scroll-right-hover{background-position:-18px 0}.x4-tab-bar-default .x4-tabbar-scroll-top-hover,.x4-tab-bar-default .x4-tabbar-scroll-bottom-hover{background-position:0 -18px}.x4-tab-bar-default .x4-box-scroller-disabled{filter:alpha(opacity=50);opacity:.5;cursor:default}.x4-tab-bar-default-top:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-top-bg.gif), stretch:bottom"}.x4-tab-bar-default-bottom:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-bottom-bg.gif), stretch:top"}.x4-tab-bar-default-left:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-left-bg.gif), stretch:right"}.x4-tab-bar-default-right:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-right-bg.gif), stretch:left"}.x4-tab-bar-plain{border-width:0;padding:0;height:23px}.x4-column-header-checkbox{border-color:#c5c5c5}.x4-grid-row-checker,.x4-column-header-checkbox .x4-column-header-text{height:13px;width:13px;background-image:url(images/form/checkbox.gif);line-height:13px}.x4-column-header-checkbox .x4-column-header-inner{padding:5px 5px 4px 5px}.x4-grid-cell-row-checker .x4-grid-cell-inner{padding:4px 5px 3px 5px}.x4-grid-no-row-lines .x4-grid-row-focused .x4-grid-cell-row-checker .x4-grid-cell-inner{padding-top:3px;padding-bottom:2px}.x4-grid-hd-checker-on .x4-column-header-text,.x4-grid-row-selected .x4-grid-row-checker,.x4-grid-row-checked .x4-grid-row-checker{background-position:0 -13px}.x4-tree-expander{cursor:pointer}.x4-tree-arrows .x4-tree-expander{background-image:url(images/tree/arrows.gif)}.x4-tree-arrows .x4-tree-expander-over .x4-tree-expander{background-position:-32px center}.x4-tree-arrows .x4-grid-tree-node-expanded .x4-tree-expander{background-position:-16px center}.x4-tree-arrows .x4-grid-tree-node-expanded .x4-tree-expander-over .x4-tree-expander{background-position:-48px center}.x4-tree-lines .x4-tree-elbow{background-image:url(images/tree/elbow.gif)}.x4-tree-lines .x4-tree-elbow-end{background-image:url(images/tree/elbow-end.gif)}.x4-tree-lines .x4-tree-elbow-plus{background-image:url(images/tree/elbow-plus.gif)}.x4-tree-lines .x4-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-plus.gif)}.x4-tree-lines .x4-grid-tree-node-expanded .x4-tree-elbow-plus{background-image:url(images/tree/elbow-minus.gif)}.x4-tree-lines .x4-grid-tree-node-expanded .x4-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-minus.gif)}.x4-tree-lines .x4-tree-elbow-line{background-image:url(images/tree/elbow-line.gif)}.x4-tree-no-row-lines .x4-tree-expander{background-image:url(images/tree/elbow-plus-nl.gif)}.x4-tree-no-row-lines .x4-grid-tree-node-expanded .x4-tree-expander{background-image:url(images/tree/elbow-minus-nl.gif)}.x4-tree-icon{width:16px;height:20px}.x4-tree-elbow-img{width:16px;height:20px;margin-right:0}.x4-tree-icon,.x4-tree-elbow-img,.x4-tree-checkbox{margin-top:-3px;margin-bottom:-4px}.x4-tree-icon-leaf{background-image:url(images/tree/leaf.gif)}.x4-tree-icon-parent{background-image:url(images/tree/folder.gif)}.x4-grid-tree-node-expanded .x4-tree-icon-parent{background-image:url(images/tree/folder-open.gif)}.x4-tree-checkbox{margin-right:3px;top:4px;width:13px;height:13px;background-image:url(images/form/checkbox.gif)}.x4-tree-checkbox-checked{background-position:0 -13px}.x4-grid-tree-loading .x4-tree-icon{background-image:url(images/tree/loading.gif)}.x4-grid-cell-inner-treecolumn{font-size:1px;line-height:0}.x4-tree-node-text{font-size:11px;line-height:13px;padding-left:3px}.x4-grid-cell-inner-treecolumn{padding:3px 6px 4px 0}.x4-tree-drop-ok-append .x4-dd-drop-icon{background-image:url(images/tree/drop-append.gif)}.x4-tree-drop-ok-above .x4-dd-drop-icon{background-image:url(images/tree/drop-above.gif)}.x4-tree-drop-ok-below .x4-dd-drop-icon{background-image:url(images/tree/drop-below.gif)}.x4-tree-drop-ok-between .x4-dd-drop-icon{background-image:url(images/tree/drop-between.gif)}.x4-tree-ddindicator{height:1px;border-width:1px 0 0;border-style:dotted;border-color:green}.x4-box-tl{background:transparent no-repeat 0 0;zoom:1}.x4-box-tc{height:8px;background:transparent repeat-x 0 0;overflow:hidden}.x4-box-tr{background:transparent no-repeat right -8px}.x4-box-ml{background:transparent repeat-y 0;padding-left:4px;overflow:hidden;zoom:1}.x4-box-mc{background:repeat-x 0 -16px;padding:4px 10px}.x4-box-mc h3{margin:0 0 4px 0;zoom:1}.x4-box-mr{background:transparent repeat-y right;padding-right:4px;overflow:hidden}.x4-box-bl{background:transparent no-repeat 0 -16px;zoom:1}.x4-box-bc{background:transparent repeat-x 0 -8px;height:8px;overflow:hidden}.x4-box-br{background:transparent no-repeat right -24px}.x4-box-tl,.x4-box-bl{padding-left:8px;overflow:hidden}.x4-box-tr,.x4-box-br{padding-right:8px;overflow:hidden}.x4-box-tl{background-image:url(images/box/corners.gif)}.x4-box-tc{background-image:url(images/box/tb.gif)}.x4-box-tr{background-image:url(images/box/corners.gif)}.x4-box-ml{background-image:url(images/box/l.gif)}.x4-box-mc{background-color:#eee;background-image:url(images/box/tb.gif);font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:15px}.x4-box-mc h3{font-size:18px;font-weight:bold}.x4-box-mr{background-image:url(images/box/r.gif)}.x4-box-bl{background-image:url(images/box/corners.gif)}.x4-box-bc{background-image:url(images/box/tb.gif)}.x4-box-br{background-image:url(images/box/corners.gif)}.x4-box-blue .x4-box-bl,.x4-box-blue .x4-box-br,.x4-box-blue .x4-box-tl,.x4-box-blue .x4-box-tr{background-image:url(images/box/corners-blue.gif)}.x4-box-blue .x4-box-bc,.x4-box-blue .x4-box-mc,.x4-box-blue .x4-box-tc{background-image:url(images/box/tb-blue.gif)}.x4-box-blue .x4-box-mc{background-color:#c3daf9}.x4-box-blue .x4-box-mc h3{color:#17385b}.x4-box-blue .x4-box-ml{background-image:url(images/box/l-blue.gif)}.x4-box-blue .x4-box-mr{background-image:url(images/box/r-blue.gif)}.x4-message-box .x4-msg-box-wait{background-image:url(images/shared/blue-loading.gif)}.x4-form-trigger{height:22px}.x4-content-box .x4-form-trigger{height:21px}.x4-field-toolbar .x4-form-trigger{height:20px}.x4-content-box .x4-field-toolbar .x4-form-trigger{height:19px}.x4-content-box div.x4-form-spinner-up,.x4-content-box div.x4-form-spinner-down{height:10px}.x4-content-box .x4-toolbar-item div.x4-form-spinner-up,.x4-content-box .x4-toolbar-item div.x4-form-spinner-down{height:9px}.x4-html-editor-wrap .x4-toolbar{border-left-color:#b5b8c8;border-top-color:#b5b8c8;border-right-color:#b5b8c8}.x4-html-editor-input{border:1px solid #b5b8c8;border-top-width:0}.x4-column-header-trigger{background-color:#c5c5c5;background-image:url(images/grid/grid3-hd-btn.gif)}.x4-content-box .x4-grid-editor .x4-form-trigger{height:19px}.x4-grid-editor .x4-form-spinner-up,.x4-grid-editor .x4-form-spinner-down{background-image:url(images/form/spinner-small.gif)}.x4-content-box .x4-grid-editor .x4-form-spinner-up,.x4-content-box .x4-grid-editor .x4-form-spinner-down{height:9px}.x4-accordion-hd{border-width:1px 0!important;-webkit-box-shadow:inset 0 0 0 0 #d9e7f8;-moz-box-shadow:inset 0 0 0 0 #d9e7f8;box-shadow:inset 0 0 0 0 #d9e7f8}.x4-accordion-hd-sibling-expanded{-webkit-box-shadow:inset 0 1px 0 0 #f3f7fb;-moz-box-shadow:inset 0 1px 0 0 #f3f7fb;box-shadow:inset 0 1px 0 0 #f3f7fb}.x4-resizable-over .x4-resizable-handle-east,.x4-resizable-over .x4-resizable-handle-west,.x4-resizable-pinned .x4-resizable-handle-east,.x4-resizable-pinned .x4-resizable-handle-west{background-position:left}.x4-resizable-over .x4-resizable-handle-south,.x4-resizable-over .x4-resizable-handle-north,.x4-resizable-pinned .x4-resizable-handle-south,.x4-resizable-pinned .x4-resizable-handle-north{background-position:top}.x4-resizable-over .x4-resizable-handle-southeast,.x4-resizable-pinned .x4-resizable-handle-southeast{background-position:top left}.x4-resizable-over .x4-resizable-handle-northwest,.x4-resizable-pinned .x4-resizable-handle-northwest{background-position:bottom right}.x4-resizable-over .x4-resizable-handle-northeast,.x4-resizable-pinned .x4-resizable-handle-northeast{background-position:bottom left}.x4-resizable-over .x4-resizable-handle-southwest,.x4-resizable-pinned .x4-resizable-handle-southwest{background-position:top right}.x4-ie6 .x4-slider-horz,.x4-ie6 .x4-slider-horz .x4-slider-end,.x4-ie6 .x4-slider-horz .x4-slider-inner{background-image:url(images/slider/slider-bg.gif)}.x4-ie6 .x4-slider-horz .x4-slider-thumb{background-image:url(images/slider/slider-thumb.gif)}.x4-ie6 .x4-slider-vert,.x4-ie6 .x4-slider-vert .x4-slider-end,.x4-ie6 .x4-slider-vert .x4-slider-inner{background-image:url(images/slider/slider-v-bg.gif)}.x4-ie6 .x4-slider-vert .x4-slider-thumb{background-image:url(images/slider/slider-v-thumb.gif)}.x4-tab-icon-el{top:-1px}.x4-tab-noicon .x4-tab-icon{display:none} \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/boundlist/trigger-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/boundlist/trigger-arrow.png new file mode 100644 index 0000000..11daac3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/boundlist/trigger-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/corners-blue.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/corners-blue.gif new file mode 100644 index 0000000..fa419b5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/corners-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/corners.gif new file mode 100644 index 0000000..8aa8cae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/l-blue.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/l-blue.gif new file mode 100644 index 0000000..5ed7f00 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/l-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/l.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/l.gif new file mode 100644 index 0000000..0160f97 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/l.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/r-blue.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/r-blue.gif new file mode 100644 index 0000000..3ea5cae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/r-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/r.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/r.gif new file mode 100644 index 0000000..34237f6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/r.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/tb-blue.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/tb-blue.gif new file mode 100644 index 0000000..562fecc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/tb-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/tb.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/tb.gif new file mode 100644 index 0000000..435889b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/box/tb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn-group/btn-group-default-framed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn-group/btn-group-default-framed-corners.gif new file mode 100644 index 0000000..c5f0b13 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn-group/btn-group-default-framed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn-group/btn-group-default-framed-notitle-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn-group/btn-group-default-framed-notitle-corners.gif new file mode 100644 index 0000000..c5f0b13 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn-group/btn-group-default-framed-notitle-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn-group/btn-group-default-framed-notitle-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn-group/btn-group-default-framed-notitle-sides.gif new file mode 100644 index 0000000..c23814f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn-group/btn-group-default-framed-notitle-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn-group/btn-group-default-framed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn-group/btn-group-default-framed-sides.gif new file mode 100644 index 0000000..5aee7e9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn-group/btn-group-default-framed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-bg.gif new file mode 100644 index 0000000..c070109 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-corners.gif new file mode 100644 index 0000000..153748b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-disabled-bg.gif new file mode 100644 index 0000000..a82764d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-disabled-corners.gif new file mode 100644 index 0000000..71ce639 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-disabled-fbg.gif new file mode 100644 index 0000000..792449f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-disabled-sides.gif new file mode 100644 index 0000000..e5bcfdf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-fbg.gif new file mode 100644 index 0000000..5dbfc68 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-focus-bg.gif new file mode 100644 index 0000000..b357a18 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-focus-corners.gif new file mode 100644 index 0000000..f72f1c7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-focus-fbg.gif new file mode 100644 index 0000000..deb2b01 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-focus-sides.gif new file mode 100644 index 0000000..7e5c06a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-over-bg.gif new file mode 100644 index 0000000..b357a18 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-over-corners.gif new file mode 100644 index 0000000..f72f1c7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-over-fbg.gif new file mode 100644 index 0000000..deb2b01 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-over-sides.gif new file mode 100644 index 0000000..7e5c06a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-pressed-bg.gif new file mode 100644 index 0000000..bac8935 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-pressed-corners.gif new file mode 100644 index 0000000..d788020 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-pressed-fbg.gif new file mode 100644 index 0000000..2e4e716 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-pressed-sides.gif new file mode 100644 index 0000000..06fe649 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-sides.gif new file mode 100644 index 0000000..efa95bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-large-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-bg.gif new file mode 100644 index 0000000..ab1e21e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-corners.gif new file mode 100644 index 0000000..153748b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-disabled-bg.gif new file mode 100644 index 0000000..7def1f8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-disabled-corners.gif new file mode 100644 index 0000000..71ce639 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-disabled-fbg.gif new file mode 100644 index 0000000..a501f9a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-disabled-sides.gif new file mode 100644 index 0000000..a7f2f13 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-fbg.gif new file mode 100644 index 0000000..73573ea Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-focus-bg.gif new file mode 100644 index 0000000..c430378 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-focus-corners.gif new file mode 100644 index 0000000..d2d9d16 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-focus-fbg.gif new file mode 100644 index 0000000..ee5eca9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-focus-sides.gif new file mode 100644 index 0000000..c27e5d6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-over-bg.gif new file mode 100644 index 0000000..c430378 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-over-corners.gif new file mode 100644 index 0000000..d2d9d16 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-over-fbg.gif new file mode 100644 index 0000000..ee5eca9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-over-sides.gif new file mode 100644 index 0000000..c27e5d6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-pressed-bg.gif new file mode 100644 index 0000000..f4e6b50 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-pressed-corners.gif new file mode 100644 index 0000000..f06546a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-pressed-fbg.gif new file mode 100644 index 0000000..45a7aeb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-pressed-sides.gif new file mode 100644 index 0000000..5a3ca51 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-sides.gif new file mode 100644 index 0000000..d1b4251 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-medium-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-bg.gif new file mode 100644 index 0000000..ecd90b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-corners.gif new file mode 100644 index 0000000..baccd07 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-disabled-bg.gif new file mode 100644 index 0000000..cd28b4d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-disabled-corners.gif new file mode 100644 index 0000000..71ce639 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-disabled-fbg.gif new file mode 100644 index 0000000..0b31a7c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-disabled-sides.gif new file mode 100644 index 0000000..19d9646 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-fbg.gif new file mode 100644 index 0000000..b0eae50 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-focus-bg.gif new file mode 100644 index 0000000..58aad99 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-focus-corners.gif new file mode 100644 index 0000000..303a4e0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-focus-fbg.gif new file mode 100644 index 0000000..d8bd959 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-focus-sides.gif new file mode 100644 index 0000000..2614158 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-over-bg.gif new file mode 100644 index 0000000..58aad99 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-over-corners.gif new file mode 100644 index 0000000..cf99f20 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-over-fbg.gif new file mode 100644 index 0000000..d8bd959 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-over-sides.gif new file mode 100644 index 0000000..2614158 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-pressed-bg.gif new file mode 100644 index 0000000..d51c945 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-pressed-corners.gif new file mode 100644 index 0000000..d40320d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-pressed-fbg.gif new file mode 100644 index 0000000..e4cdfef Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-pressed-sides.gif new file mode 100644 index 0000000..b7613e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-sides.gif new file mode 100644 index 0000000..32d753a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-small-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-disabled-corners.gif new file mode 100644 index 0000000..dbab9b3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-disabled-sides.gif new file mode 100644 index 0000000..47d16c7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-focus-bg.gif new file mode 100644 index 0000000..79d4a9b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-focus-corners.gif new file mode 100644 index 0000000..88445cb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-focus-fbg.gif new file mode 100644 index 0000000..d7af8d4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-focus-sides.gif new file mode 100644 index 0000000..5e65528 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-over-bg.gif new file mode 100644 index 0000000..79d4a9b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-over-corners.gif new file mode 100644 index 0000000..88445cb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-over-fbg.gif new file mode 100644 index 0000000..d7af8d4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-over-sides.gif new file mode 100644 index 0000000..5e65528 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-pressed-bg.gif new file mode 100644 index 0000000..b40f97f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-pressed-corners.gif new file mode 100644 index 0000000..1aa7e49 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-pressed-fbg.gif new file mode 100644 index 0000000..1ee0bf6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-pressed-sides.gif new file mode 100644 index 0000000..cbcdae1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-large-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-disabled-corners.gif new file mode 100644 index 0000000..29b3997 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-disabled-sides.gif new file mode 100644 index 0000000..47d16c7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-focus-bg.gif new file mode 100644 index 0000000..04e7349 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-focus-corners.gif new file mode 100644 index 0000000..83b339a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-focus-fbg.gif new file mode 100644 index 0000000..57e732a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-focus-sides.gif new file mode 100644 index 0000000..83f9bd3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-over-bg.gif new file mode 100644 index 0000000..04e7349 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-over-corners.gif new file mode 100644 index 0000000..83b339a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-over-fbg.gif new file mode 100644 index 0000000..57e732a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-over-sides.gif new file mode 100644 index 0000000..83f9bd3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-pressed-bg.gif new file mode 100644 index 0000000..df711b4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-pressed-corners.gif new file mode 100644 index 0000000..ae567b7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-pressed-fbg.gif new file mode 100644 index 0000000..cca18e9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-pressed-sides.gif new file mode 100644 index 0000000..ef38051 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-medium-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-disabled-corners.gif new file mode 100644 index 0000000..b482112 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-disabled-sides.gif new file mode 100644 index 0000000..47d16c7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-focus-bg.gif new file mode 100644 index 0000000..35926be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-focus-corners.gif new file mode 100644 index 0000000..450a36c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-focus-fbg.gif new file mode 100644 index 0000000..804c747 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-focus-sides.gif new file mode 100644 index 0000000..a7a36f6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-over-bg.gif new file mode 100644 index 0000000..35926be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-over-corners.gif new file mode 100644 index 0000000..450a36c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-over-fbg.gif new file mode 100644 index 0000000..804c747 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-over-sides.gif new file mode 100644 index 0000000..a7a36f6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-pressed-bg.gif new file mode 100644 index 0000000..47bdc8e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-pressed-corners.gif new file mode 100644 index 0000000..3607a2c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-pressed-fbg.gif new file mode 100644 index 0000000..840e97c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-pressed-sides.gif new file mode 100644 index 0000000..e4f22bf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/btn/btn-default-toolbar-small-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/arrow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/arrow.gif new file mode 100644 index 0000000..3ab4f71 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/arrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/btn.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/btn.gif new file mode 100644 index 0000000..06b404d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/group-cs.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/group-cs.gif new file mode 100644 index 0000000..3d1dca8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/group-cs.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/group-lr.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/group-lr.gif new file mode 100644 index 0000000..7c549f9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/group-lr.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/group-tb.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/group-tb.gif new file mode 100644 index 0000000..adeb0a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/group-tb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-b-noline.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-b-noline.gif new file mode 100644 index 0000000..a4220ee Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-b-noline.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-b.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-b.gif new file mode 100644 index 0000000..84b6470 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-b.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-bo.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-bo.gif new file mode 100644 index 0000000..548700b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-bo.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-light-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-light-rtl.gif new file mode 100644 index 0000000..cfa5ca3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-light-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-light.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-light.gif new file mode 100644 index 0000000..08783c9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-light.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-noline-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-noline-rtl.gif new file mode 100644 index 0000000..c242ef2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-noline-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-noline.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-noline.gif new file mode 100644 index 0000000..0953eab Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-noline.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-o-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-o-rtl.gif new file mode 100644 index 0000000..612dc90 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-o-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-o.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-o.gif new file mode 100644 index 0000000..89c70f3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-o.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-rtl.gif new file mode 100644 index 0000000..8f556c5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow.gif new file mode 100644 index 0000000..8940774 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/button/s-arrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/datepicker/datepicker-footer-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/datepicker/datepicker-footer-bg.gif new file mode 100644 index 0000000..f199a61 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/datepicker/datepicker-footer-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/datepicker/datepicker-header-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/datepicker/datepicker-header-bg.gif new file mode 100644 index 0000000..87d0582 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/datepicker/datepicker-header-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/dd/drop-add.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/dd/drop-add.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/dd/drop-add.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/dd/drop-no.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/dd/drop-no.gif new file mode 100644 index 0000000..08d0833 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/dd/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/dd/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/dd/drop-yes.gif new file mode 100644 index 0000000..8aacb30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/dd/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/editor/tb-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/editor/tb-sprite.gif new file mode 100644 index 0000000..fb70577 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/editor/tb-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/checkbox.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/checkbox.gif new file mode 100644 index 0000000..835b346 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/checkbox.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/clear-trigger-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/clear-trigger-rtl.gif new file mode 100644 index 0000000..13be031 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/clear-trigger-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/clear-trigger.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/clear-trigger.gif new file mode 100644 index 0000000..da78d45 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/clear-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/date-trigger-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/date-trigger-rtl.gif new file mode 100644 index 0000000..07c5bec Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/date-trigger-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/date-trigger.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/date-trigger.gif new file mode 100644 index 0000000..25ef7b3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/date-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/error-tip-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/error-tip-corners.gif new file mode 100644 index 0000000..6ea4c38 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/error-tip-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/exclamation.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/exclamation.gif new file mode 100644 index 0000000..ea31a30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/exclamation.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/radio.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/radio.gif new file mode 100644 index 0000000..db3a530 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/radio.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/search-trigger-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/search-trigger-rtl.gif new file mode 100644 index 0000000..601ad72 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/search-trigger-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/search-trigger.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/search-trigger.gif new file mode 100644 index 0000000..db8802b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/search-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/spinner-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/spinner-rtl.gif new file mode 100644 index 0000000..ff14c06 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/spinner-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/spinner-small-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/spinner-small-rtl.gif new file mode 100644 index 0000000..70c536e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/spinner-small-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/spinner-small.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/spinner-small.gif new file mode 100644 index 0000000..e70f8d8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/spinner-small.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/spinner.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/spinner.gif new file mode 100644 index 0000000..1e323bf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/spinner.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/text-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/text-bg.gif new file mode 100644 index 0000000..4179607 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/text-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/trigger-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/trigger-rtl.gif new file mode 100644 index 0000000..4037892 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/trigger-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/trigger-square-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/trigger-square-rtl.gif new file mode 100644 index 0000000..6b23d18 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/trigger-square-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/trigger-square.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/trigger-square.gif new file mode 100644 index 0000000..3004ec5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/trigger-square.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/trigger-tpl-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/trigger-tpl-rtl.gif new file mode 100644 index 0000000..1e766e4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/trigger-tpl-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/trigger-tpl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/trigger-tpl.gif new file mode 100644 index 0000000..e3701a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/trigger-tpl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/trigger.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/trigger.gif new file mode 100644 index 0000000..f6cba37 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/form/trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif new file mode 100644 index 0000000..42719a0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif new file mode 100644 index 0000000..c5dc9f3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif new file mode 100644 index 0000000..8f61721 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif new file mode 100644 index 0000000..c5dc9f3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/arrow-left-white.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/arrow-left-white.gif new file mode 100644 index 0000000..63088f5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/arrow-left-white.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/arrow-right-white.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/arrow-right-white.gif new file mode 100644 index 0000000..e9e0678 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/arrow-right-white.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/cell-special-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/cell-special-bg.gif new file mode 100644 index 0000000..d76ffbc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/cell-special-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/cell-special-bg.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/cell-special-bg.png new file mode 100644 index 0000000..0bcc236 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/cell-special-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/cell-special-selected-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/cell-special-selected-bg.gif new file mode 100644 index 0000000..f1da867 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/cell-special-selected-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/cell-special-selected-bg.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/cell-special-selected-bg.png new file mode 100644 index 0000000..500c3bd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/cell-special-selected-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/col-move-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/col-move-bottom.gif new file mode 100644 index 0000000..cc1e473 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/col-move-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/col-move-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/col-move-top.gif new file mode 100644 index 0000000..58ff32c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/col-move-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/column-header-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/column-header-bg.gif new file mode 100644 index 0000000..dec6733 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/column-header-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/column-header-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/column-header-over-bg.gif new file mode 100644 index 0000000..e15218d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/column-header-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/columns.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/columns.gif new file mode 100644 index 0000000..2d3a823 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/columns.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/dd-insert-arrow-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/dd-insert-arrow-left.gif new file mode 100644 index 0000000..5d923b2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/dd-insert-arrow-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/dd-insert-arrow-left.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/dd-insert-arrow-left.png new file mode 100644 index 0000000..5dc6967 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/dd-insert-arrow-left.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/dd-insert-arrow-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/dd-insert-arrow-right.gif new file mode 100644 index 0000000..8d154db Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/dd-insert-arrow-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/dd-insert-arrow-right.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/dd-insert-arrow-right.png new file mode 100644 index 0000000..b1a1819 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/dd-insert-arrow-right.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/dirty-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/dirty-rtl.gif new file mode 100644 index 0000000..22fa12a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/dirty-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/dirty.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/dirty.gif new file mode 100644 index 0000000..4f217a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/dirty.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/done.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/done.gif new file mode 100644 index 0000000..a937cb2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/done.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/drop-no.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/drop-no.gif new file mode 100644 index 0000000..31a332b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/drop-yes.gif new file mode 100644 index 0000000..926010e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/footer-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/footer-bg.gif new file mode 100644 index 0000000..126120f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/footer-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid-blue-hd.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid-blue-hd.gif new file mode 100644 index 0000000..862094e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid-blue-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid-blue-split.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid-blue-split.gif new file mode 100644 index 0000000..5286f58 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid-blue-split.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid-hrow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid-hrow.gif new file mode 100644 index 0000000..6374104 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid-hrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid-loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid-loading.gif new file mode 100644 index 0000000..d112c54 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid-split.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid-split.gif new file mode 100644 index 0000000..c76a16e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid-split.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid-vista-hd.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid-vista-hd.gif new file mode 100644 index 0000000..d097263 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid-vista-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid3-hd-btn-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid3-hd-btn-left.gif new file mode 100644 index 0000000..a08458b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid3-hd-btn-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid3-hd-btn.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid3-hd-btn.gif new file mode 100644 index 0000000..2112607 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid3-hd-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid3-hrow-over.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid3-hrow-over.gif new file mode 100644 index 0000000..f9c07af Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid3-hrow-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid3-hrow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid3-hrow.gif new file mode 100644 index 0000000..8d459a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid3-hrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid3-rowheader.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid3-rowheader.gif new file mode 100644 index 0000000..2799b45 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/grid3-rowheader.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/group-by.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/group-by.gif new file mode 100644 index 0000000..d6075bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/group-by.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/group-collapse.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/group-collapse.gif new file mode 100644 index 0000000..c896868 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/group-collapse.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/group-expand-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/group-expand-sprite.gif new file mode 100644 index 0000000..9c1653b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/group-expand-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/group-expand.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/group-expand.gif new file mode 100644 index 0000000..26db3c0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/group-expand.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hd-pop.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hd-pop.gif new file mode 100644 index 0000000..eb8ba79 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hd-pop.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hmenu-asc.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hmenu-asc.gif new file mode 100644 index 0000000..15058ff Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hmenu-asc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hmenu-desc.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hmenu-desc.gif new file mode 100644 index 0000000..f26b7c2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hmenu-desc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hmenu-lock.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hmenu-lock.gif new file mode 100644 index 0000000..1596126 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hmenu-lock.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hmenu-lock.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hmenu-lock.png new file mode 100644 index 0000000..8b81e7f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hmenu-lock.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hmenu-unlock.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hmenu-unlock.gif new file mode 100644 index 0000000..af59cf9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hmenu-unlock.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hmenu-unlock.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hmenu-unlock.png new file mode 100644 index 0000000..9dd5df3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/hmenu-unlock.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/invalid_line.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/invalid_line.gif new file mode 100644 index 0000000..fb7e0f3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/invalid_line.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/loading.gif new file mode 100644 index 0000000..e846e1d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/mso-hd.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/mso-hd.gif new file mode 100644 index 0000000..669f3cf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/mso-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/nowait.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/nowait.gif new file mode 100644 index 0000000..4c5862c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/nowait.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-first-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-first-disabled.gif new file mode 100644 index 0000000..1e02c41 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-first-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-first.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-first.gif new file mode 100644 index 0000000..d84f41a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-first.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-last-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-last-disabled.gif new file mode 100644 index 0000000..8697067 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-last-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-last.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-last.gif new file mode 100644 index 0000000..3df5c2b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-last.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-next-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-next-disabled.gif new file mode 100644 index 0000000..90a7756 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-next-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-next.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-next.gif new file mode 100644 index 0000000..9601635 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-next.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-prev-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-prev-disabled.gif new file mode 100644 index 0000000..37154d6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-prev-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-prev.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-prev.gif new file mode 100644 index 0000000..eb70cf8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/page-prev.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/pick-button.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/pick-button.gif new file mode 100644 index 0000000..6957924 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/pick-button.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/property-cell-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/property-cell-bg.gif new file mode 100644 index 0000000..7890cf9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/property-cell-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/property-cell-selected-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/property-cell-selected-bg.gif new file mode 100644 index 0000000..1dfe9a6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/property-cell-selected-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/refresh-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/refresh-disabled.gif new file mode 100644 index 0000000..607800b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/refresh-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/refresh.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/refresh.gif new file mode 100644 index 0000000..110f684 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/refresh.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/row-check-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/row-check-sprite.gif new file mode 100644 index 0000000..6101164 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/row-check-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/row-expand-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/row-expand-sprite.gif new file mode 100644 index 0000000..6f4d874 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/row-expand-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/row-over.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/row-over.gif new file mode 100644 index 0000000..b288e38 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/row-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/row-sel.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/row-sel.gif new file mode 100644 index 0000000..98209e6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/row-sel.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/sort-hd.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/sort-hd.gif new file mode 100644 index 0000000..45e545f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/sort-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/sort_asc.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/sort_asc.gif new file mode 100644 index 0000000..a1fc4f5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/sort_asc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/sort_desc.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/sort_desc.gif new file mode 100644 index 0000000..508dbe8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/sort_desc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/wait.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/wait.gif new file mode 100644 index 0000000..471c1a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/grid/wait.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/layout/mini-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/layout/mini-bottom.gif new file mode 100644 index 0000000..c18f9e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/layout/mini-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/layout/mini-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/layout/mini-left.gif new file mode 100644 index 0000000..99f7993 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/layout/mini-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/layout/mini-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/layout/mini-right.gif new file mode 100644 index 0000000..5b13c5a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/layout/mini-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/layout/mini-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/layout/mini-top.gif new file mode 100644 index 0000000..a4ca2bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/layout/mini-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/checked.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/checked.gif new file mode 100644 index 0000000..fad5893 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/checked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/group-checked.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/group-checked.gif new file mode 100644 index 0000000..d30b3e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/group-checked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/item-over.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/item-over.gif new file mode 100644 index 0000000..da1f289 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/item-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/menu-item-active-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/menu-item-active-bg.gif new file mode 100644 index 0000000..d96fd89 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/menu-item-active-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/menu-parent-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/menu-parent-left.gif new file mode 100644 index 0000000..21e9683 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/menu-parent-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/menu-parent.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/menu-parent.gif new file mode 100644 index 0000000..1e37562 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/menu-parent.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/menu.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/menu.gif new file mode 100644 index 0000000..30a2c4b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/menu.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/scroll-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/scroll-bottom.gif new file mode 100644 index 0000000..c18f9e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/scroll-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/scroll-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/scroll-top.gif new file mode 100644 index 0000000..a4ca2bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/scroll-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/unchecked.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/unchecked.gif new file mode 100644 index 0000000..43823e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/menu/unchecked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-bottom-bg.gif new file mode 100644 index 0000000..8c87b35 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-bottom-bg.gif new file mode 100644 index 0000000..62cdbac Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-bottom-corners.gif new file mode 100644 index 0000000..a0775fa Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-bottom-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-bottom-fbg.gif new file mode 100644 index 0000000..b6f4c76 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-bottom-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-bottom-sides.gif new file mode 100644 index 0000000..0daf906 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif new file mode 100644 index 0000000..e92fcd9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif new file mode 100644 index 0000000..9c1aa1b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif new file mode 100644 index 0000000..b6f4c76 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif new file mode 100644 index 0000000..0daf906 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif new file mode 100644 index 0000000..c089d62 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-bg.gif new file mode 100644 index 0000000..2409be0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif new file mode 100644 index 0000000..ea10459 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-corners.gif new file mode 100644 index 0000000..4ca2459 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif new file mode 100644 index 0000000..5038738 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif new file mode 100644 index 0000000..6bb55c9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif new file mode 100644 index 0000000..3423ce9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-sides.gif new file mode 100644 index 0000000..aa3a90b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif new file mode 100644 index 0000000..8646a15 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-bg.gif new file mode 100644 index 0000000..ae8d338 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif new file mode 100644 index 0000000..2ffb03b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-corners.gif new file mode 100644 index 0000000..4674ceb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif new file mode 100644 index 0000000..4ed031c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif new file mode 100644 index 0000000..e50338b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif new file mode 100644 index 0000000..ec730ad Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-sides.gif new file mode 100644 index 0000000..a54f3e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-top-bg.gif new file mode 100644 index 0000000..84ecd1c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-top-corners.gif new file mode 100644 index 0000000..1dc5653 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif new file mode 100644 index 0000000..c4add69 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-top-sides.gif new file mode 100644 index 0000000..f95026a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-collapsed-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-bg-rtl.gif new file mode 100644 index 0000000..cac97bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-bg.gif new file mode 100644 index 0000000..ffc3565 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-corners-rtl.gif new file mode 100644 index 0000000..45d11e4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-corners.gif new file mode 100644 index 0000000..4286d5d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-fbg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-fbg-rtl.gif new file mode 100644 index 0000000..5038738 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-fbg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-fbg.gif new file mode 100644 index 0000000..6bb55c9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-sides-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-sides-rtl.gif new file mode 100644 index 0000000..3423ce9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-sides-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-sides.gif new file mode 100644 index 0000000..aa3a90b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-bg-rtl.gif new file mode 100644 index 0000000..4d7c8fc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-bg.gif new file mode 100644 index 0000000..2e00f0d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-corners-rtl.gif new file mode 100644 index 0000000..ba518f0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-corners.gif new file mode 100644 index 0000000..dd8f82d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-fbg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-fbg-rtl.gif new file mode 100644 index 0000000..4ed031c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-fbg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-fbg.gif new file mode 100644 index 0000000..e50338b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-sides-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-sides-rtl.gif new file mode 100644 index 0000000..ec730ad Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-sides-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-sides.gif new file mode 100644 index 0000000..a54f3e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-top-bg.gif new file mode 100644 index 0000000..566cf70 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-top-corners.gif new file mode 100644 index 0000000..39fb513 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-top-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-top-fbg.gif new file mode 100644 index 0000000..c4add69 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-top-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-top-sides.gif new file mode 100644 index 0000000..f95026a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-framed-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-left-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-left-bg-rtl.gif new file mode 100644 index 0000000..b6d2e98 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-left-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-left-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-left-bg.gif new file mode 100644 index 0000000..c5d86ba Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-right-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-right-bg-rtl.gif new file mode 100644 index 0000000..4d7c8fc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-right-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-right-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-right-bg.gif new file mode 100644 index 0000000..2e00f0d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-top-bg.gif new file mode 100644 index 0000000..566cf70 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel-header/panel-header-default-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel/panel-default-framed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel/panel-default-framed-corners.gif new file mode 100644 index 0000000..2939cff Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel/panel-default-framed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel/panel-default-framed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel/panel-default-framed-sides.gif new file mode 100644 index 0000000..24e492d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/panel/panel-default-framed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/progress/progress-default-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/progress/progress-default-bg.gif new file mode 100644 index 0000000..d972de8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/progress/progress-default-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/blue-loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/blue-loading.gif new file mode 100644 index 0000000..3bbf639 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/blue-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/calendar.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/calendar.gif new file mode 100644 index 0000000..133cf23 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/calendar.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/glass-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/glass-bg.gif new file mode 100644 index 0000000..26fbbae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/glass-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/hd-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/hd-sprite.gif new file mode 100644 index 0000000..42da1ea Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/hd-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/icon-error.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/icon-error.gif new file mode 100644 index 0000000..397b655 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/icon-error.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/icon-info.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/icon-info.gif new file mode 100644 index 0000000..58281c3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/icon-info.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/icon-question.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/icon-question.gif new file mode 100644 index 0000000..08abd82 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/icon-question.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/icon-warning.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/icon-warning.gif new file mode 100644 index 0000000..27ff98b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/icon-warning.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/large-loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/large-loading.gif new file mode 100644 index 0000000..b36b555 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/large-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/left-btn.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/left-btn.gif new file mode 100644 index 0000000..a0ddd9e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/left-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/loading-balls.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/loading-balls.gif new file mode 100644 index 0000000..9ce214b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/loading-balls.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/right-btn.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/right-btn.gif new file mode 100644 index 0000000..dee63e2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/right-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/shadow-c.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/shadow-c.png new file mode 100644 index 0000000..d435f80 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/shadow-c.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/shadow-lr.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/shadow-lr.png new file mode 100644 index 0000000..bb88b6f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/shadow-lr.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/shadow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/shadow.png new file mode 100644 index 0000000..75c0eba Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/shadow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/warning.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/warning.gif new file mode 100644 index 0000000..806d4bc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/shared/warning.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/e-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/e-handle-dark.gif new file mode 100644 index 0000000..b5486c1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/e-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/e-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/e-handle.gif new file mode 100644 index 0000000..00ba835 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/e-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/ne-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/ne-handle-dark.gif new file mode 100644 index 0000000..04e5ecf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/ne-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/ne-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/ne-handle.gif new file mode 100644 index 0000000..09405c7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/ne-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/nw-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/nw-handle-dark.gif new file mode 100644 index 0000000..6e49d69 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/nw-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/nw-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/nw-handle.gif new file mode 100644 index 0000000..2fcea8a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/nw-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/s-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/s-handle-dark.gif new file mode 100644 index 0000000..4eb5f0f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/s-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/s-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/s-handle.gif new file mode 100644 index 0000000..bf069c2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/s-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/se-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/se-handle-dark.gif new file mode 100644 index 0000000..c4c1087 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/se-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/se-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/se-handle.gif new file mode 100644 index 0000000..972055e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/se-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/square.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/square.gif new file mode 100644 index 0000000..14ce6f7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/square.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/sw-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/sw-handle-dark.gif new file mode 100644 index 0000000..77224b0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/sw-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/sw-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/sw-handle.gif new file mode 100644 index 0000000..3ca0ed9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/sizer/sw-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-bg.gif new file mode 100644 index 0000000..39edef4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-bg.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-bg.png new file mode 100644 index 0000000..10ede26 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-thumb.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-thumb.gif new file mode 100644 index 0000000..5ba1dfb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-thumb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-thumb.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-thumb.png new file mode 100644 index 0000000..cd654a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-thumb.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-v-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-v-bg.gif new file mode 100644 index 0000000..8cc7a87 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-v-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-v-bg.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-v-bg.png new file mode 100644 index 0000000..6ed116a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-v-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-v-thumb.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-v-thumb.gif new file mode 100644 index 0000000..58afe96 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-v-thumb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-v-thumb.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-v-thumb.png new file mode 100644 index 0000000..7b3d725 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/slider/slider-v-thumb.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-bottom-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-bottom-left.gif new file mode 100644 index 0000000..d44b785 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-bottom-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-bottom-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-bottom-right.gif new file mode 100644 index 0000000..e2248b2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-bottom-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-left-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-left-bottom.gif new file mode 100644 index 0000000..3ed2993 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-left-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-left-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-left-top.gif new file mode 100644 index 0000000..183d0e2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-left-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-right-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-right-bottom.gif new file mode 100644 index 0000000..d8f4851 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-right-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-right-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-right-top.gif new file mode 100644 index 0000000..cd67d82 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-right-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-top-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-top-left.gif new file mode 100644 index 0000000..54b38ef Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-top-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-top-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-top-right.gif new file mode 100644 index 0000000..3394e61 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/default-scroll-top-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/tab-bar-default-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/tab-bar-default-bottom-bg.gif new file mode 100644 index 0000000..8acf925 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/tab-bar-default-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/tab-bar-default-left-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/tab-bar-default-left-bg.gif new file mode 100644 index 0000000..f913424 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/tab-bar-default-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/tab-bar-default-right-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/tab-bar-default-right-bg.gif new file mode 100644 index 0000000..c053536 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/tab-bar-default-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/tab-bar-default-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/tab-bar-default-top-bg.gif new file mode 100644 index 0000000..0db6f65 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab-bar/tab-bar-default-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-active-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-active-bg.gif new file mode 100644 index 0000000..b8a8eb7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-active-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-active-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-active-corners.gif new file mode 100644 index 0000000..7c81a69 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-active-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-active-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-active-fbg.gif new file mode 100644 index 0000000..a55d492 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-active-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-active-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-active-sides.gif new file mode 100644 index 0000000..671d75d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-active-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-bg.gif new file mode 100644 index 0000000..faef4b9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-corners.gif new file mode 100644 index 0000000..14b8845 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-disabled-bg.gif new file mode 100644 index 0000000..538239e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-disabled-corners.gif new file mode 100644 index 0000000..249c3c5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-disabled-fbg.gif new file mode 100644 index 0000000..80cb16e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-disabled-sides.gif new file mode 100644 index 0000000..09fef7f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-fbg.gif new file mode 100644 index 0000000..bf702b3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-over-bg.gif new file mode 100644 index 0000000..6db9524 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-over-corners.gif new file mode 100644 index 0000000..c0abb5f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-over-fbg.gif new file mode 100644 index 0000000..c556cb0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-over-sides.gif new file mode 100644 index 0000000..ba6367e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-sides.gif new file mode 100644 index 0000000..4875921 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-close.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-close.gif new file mode 100644 index 0000000..e699878 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-close.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-active-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-active-bg.gif new file mode 100644 index 0000000..8104a68 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-active-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-active-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-active-corners.gif new file mode 100644 index 0000000..0078032 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-active-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-active-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-active-fbg.gif new file mode 100644 index 0000000..dc7c26f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-active-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-active-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-active-sides.gif new file mode 100644 index 0000000..9be8ed1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-active-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-bg.gif new file mode 100644 index 0000000..e4c1941 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-corners.gif new file mode 100644 index 0000000..677cd68 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-disabled-bg.gif new file mode 100644 index 0000000..8321084 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-disabled-corners.gif new file mode 100644 index 0000000..39c1522 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-disabled-fbg.gif new file mode 100644 index 0000000..bf668ef Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-disabled-sides.gif new file mode 100644 index 0000000..b59d3e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-fbg.gif new file mode 100644 index 0000000..b4f25d2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-over-bg.gif new file mode 100644 index 0000000..2da0711 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-over-corners.gif new file mode 100644 index 0000000..bf289d6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-over-fbg.gif new file mode 100644 index 0000000..a3bae33 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-over-sides.gif new file mode 100644 index 0000000..48a1791 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-sides.gif new file mode 100644 index 0000000..0fc85c6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tab/tab-default-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tip/tip-default-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tip/tip-default-corners.gif new file mode 100644 index 0000000..232d73c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tip/tip-default-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tip/tip-default-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tip/tip-default-sides.gif new file mode 100644 index 0000000..bc725b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tip/tip-default-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tip/tip-form-invalid-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tip/tip-form-invalid-corners.gif new file mode 100644 index 0000000..6ab8ee0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tip/tip-form-invalid-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tip/tip-form-invalid-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tip/tip-form-invalid-sides.gif new file mode 100644 index 0000000..b39a15b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tip/tip-form-invalid-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/toolbar/more-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/toolbar/more-left.gif new file mode 100644 index 0000000..f9b43bc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/toolbar/more-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/toolbar/more.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/toolbar/more.gif new file mode 100644 index 0000000..02c2509 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/toolbar/more.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/toolbar/scroll-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/toolbar/scroll-left.gif new file mode 100644 index 0000000..2db8cf5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/toolbar/scroll-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/toolbar/scroll-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/toolbar/scroll-right.gif new file mode 100644 index 0000000..5d5a7ab Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/toolbar/scroll-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/toolbar/toolbar-default-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/toolbar/toolbar-default-bg.gif new file mode 100644 index 0000000..8544215 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/toolbar/toolbar-default-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tools/tool-sprite-tpl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tools/tool-sprite-tpl.gif new file mode 100644 index 0000000..e647867 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tools/tool-sprite-tpl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tools/tool-sprites.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tools/tool-sprites.gif new file mode 100644 index 0000000..2b6b809 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tools/tool-sprites.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tools/tools-sprites-trans.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tools/tools-sprites-trans.gif new file mode 100644 index 0000000..ead931e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tools/tools-sprites-trans.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/arrows-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/arrows-rtl.gif new file mode 100644 index 0000000..7083d77 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/arrows-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/arrows.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/arrows.gif new file mode 100644 index 0000000..f7b8b1c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/arrows.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-above.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-above.gif new file mode 100644 index 0000000..30d1ca7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-above.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-add.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-add.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-add.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-append.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-append.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-append.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-below.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-below.gif new file mode 100644 index 0000000..85f66b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-below.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-between.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-between.gif new file mode 100644 index 0000000..5c6c09d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-between.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-no.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-no.gif new file mode 100644 index 0000000..9d9c6a9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-over.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-over.gif new file mode 100644 index 0000000..30d1ca7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-under.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-under.gif new file mode 100644 index 0000000..85f66b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-under.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-yes.gif new file mode 100644 index 0000000..8aacb30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-end-minus-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-end-minus-rtl.gif new file mode 100644 index 0000000..10227e6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-end-minus-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-end-minus.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-end-minus.gif new file mode 100644 index 0000000..55d8a0f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-end-minus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-end-plus-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-end-plus-rtl.gif new file mode 100644 index 0000000..f4eef89 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-end-plus-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-end-plus.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-end-plus.gif new file mode 100644 index 0000000..a5c62fa Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-end-plus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-end-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-end-rtl.gif new file mode 100644 index 0000000..a5e7248 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-end-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-end.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-end.gif new file mode 100644 index 0000000..406a88d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-end.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-line-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-line-rtl.gif new file mode 100644 index 0000000..6e5b8b4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-line-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-line.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-line.gif new file mode 100644 index 0000000..e25ed03 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-line.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-minus-nl-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-minus-nl-rtl.gif new file mode 100644 index 0000000..2d8dd98 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-minus-nl-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-minus-nl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-minus-nl.gif new file mode 100644 index 0000000..f50bd40 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-minus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-minus-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-minus-rtl.gif new file mode 100644 index 0000000..ed3e5a0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-minus-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-minus.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-minus.gif new file mode 100644 index 0000000..a728796 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-minus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-plus-nl-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-plus-nl-rtl.gif new file mode 100644 index 0000000..2d1e917 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-plus-nl-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-plus-nl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-plus-nl.gif new file mode 100644 index 0000000..96f8d72 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-plus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-plus-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-plus-rtl.gif new file mode 100644 index 0000000..cb0cb49 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-plus-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-plus.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-plus.gif new file mode 100644 index 0000000..ae41983 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-plus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-rtl.gif new file mode 100644 index 0000000..1139cb0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow.gif new file mode 100644 index 0000000..201c413 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/elbow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/folder-open-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/folder-open-rtl.gif new file mode 100644 index 0000000..a34c546 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/folder-open-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/folder-open.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/folder-open.gif new file mode 100644 index 0000000..361e1be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/folder-open.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/folder-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/folder-rtl.gif new file mode 100644 index 0000000..4fab30f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/folder-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/folder.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/folder.gif new file mode 100644 index 0000000..b2fd81a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/folder.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/leaf-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/leaf-rtl.gif new file mode 100644 index 0000000..ab0979a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/leaf-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/leaf.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/leaf.gif new file mode 100644 index 0000000..445769d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/leaf.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/loading.gif new file mode 100644 index 0000000..e846e1d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/s.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/s.gif new file mode 100644 index 0000000..1d11fa9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/tree/s.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/util/splitter/mini-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/util/splitter/mini-bottom.gif new file mode 100644 index 0000000..c18f9e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/util/splitter/mini-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/util/splitter/mini-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/util/splitter/mini-left.gif new file mode 100644 index 0000000..99f7993 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/util/splitter/mini-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/util/splitter/mini-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/util/splitter/mini-right.gif new file mode 100644 index 0000000..5b13c5a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/util/splitter/mini-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/util/splitter/mini-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/util/splitter/mini-top.gif new file mode 100644 index 0000000..a4ca2bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/util/splitter/mini-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-bottom-corners.gif new file mode 100644 index 0000000..4a9f7e2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-bottom-sides.gif new file mode 100644 index 0000000..fdf2fde Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-bottom-corners.gif new file mode 100644 index 0000000..af3995c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-bottom-sides.gif new file mode 100644 index 0000000..c54c5bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-left-corners-rtl.gif new file mode 100644 index 0000000..b3ce3f2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-left-corners.gif new file mode 100644 index 0000000..a7c3e49 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-left-sides.gif new file mode 100644 index 0000000..0946e3c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-right-corners-rtl.gif new file mode 100644 index 0000000..a5fef55 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-right-corners.gif new file mode 100644 index 0000000..6125d58 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-right-sides.gif new file mode 100644 index 0000000..6c23c96 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-top-corners.gif new file mode 100644 index 0000000..b4bb180 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-top-sides.gif new file mode 100644 index 0000000..c54c5bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-collapsed-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-left-corners-rtl.gif new file mode 100644 index 0000000..302221c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-left-corners.gif new file mode 100644 index 0000000..4a512c9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-left-sides.gif new file mode 100644 index 0000000..d0dcf0c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-right-corners-rtl.gif new file mode 100644 index 0000000..78c6a68 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-right-corners.gif new file mode 100644 index 0000000..71943eb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-right-sides.gif new file mode 100644 index 0000000..7ae4a3a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-top-corners.gif new file mode 100644 index 0000000..5208fac Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-top-sides.gif new file mode 100644 index 0000000..fdf2fde Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window-header/window-header-default-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window/window-default-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window/window-default-corners.gif new file mode 100644 index 0000000..1322153 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window/window-default-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window/window-default-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window/window-default-sides.gif new file mode 100644 index 0000000..727e4cc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic-sandbox/images/window/window-default-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/Readme.md b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/Readme.md new file mode 100644 index 0000000..f856e48 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/Readme.md @@ -0,0 +1,3 @@ +# ext-theme-classic/resources + +This folder contains static resources (typically an `"images"` folder as well). diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/ext-theme-classic-all-debug.css b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/ext-theme-classic-all-debug.css new file mode 100644 index 0000000..c21fd5d --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/ext-theme-classic-all-debug.css @@ -0,0 +1,19527 @@ +/* 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. + */ +/* including package ext-theme-neutral */ +/* including package ext-theme-classic */ +/* including package ext-theme-classic */ +/* including package ext-theme-neutral */ +/** + * @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 {string} $font-size + * The default font-family 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 + */ +/** + * @class Ext.FocusManager + */ +/** + * @var {color} + * The border-color of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-style of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-width of the focusFrame. See {@link #method-enable}. + */ +/** + * @class Ext.LoadMask + */ +/** + * @var {number} + * Opacity of the LoadMask + */ +/** + * @var {color} + * The background-color of the LoadMask + */ +/** + * @var {string} + * The type of cursor to dislay when the cursor is over the LoadMask + */ +/** + * @var {number/list} + * The padding to apply to the LoadMask's message element + */ +/** + * @var {string} + * The border-style of the LoadMask's message element + */ +/** + * @var {color} + * The border-color of the LoadMask's message element + */ +/** + * @var {number} + * The border-width of the LoadMask's message element + */ +/** + * @var {color} + * The background-color of the LoadMask's message element + */ +/** + * @var {string/list} + * The background-gradient of the LoadMask's message element. Can be either the name + * of a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the message inner element + */ +/** + * @var {string} + * The icon to display in the message inner element + */ +/** + * @var {list} + * The background-position of the icon + */ +/** + * @var {string} + * The border-style of the message inner element + */ +/** + * @var {color} + * The border-color of the message inner element + */ +/** + * @var {number} + * The border-width of the message inner element + */ +/** + * @var {color} + * The background-color of the message inner element + */ +/** + * @var {color} + * The text color of the message inner element + */ +/** + * @var {number} + * The font-size of the message inner element + */ +/** + * @var {string} + * The font-weight of the message inner element + */ +/** + * @var {string} + * The font-family of the message inner element + */ +/** + * @var {number/list} + * The padding of the message element + */ +/** + * @var {number} + * The border-radius of the message element + */ +/** + * @class Ext.ProgressBar + */ +/** + * @var {number} + * The height of the ProgressBar + */ +/** + * @var {color} + * The border-color of the ProgressBar + */ +/** + * @var {number} + * The border-width of the ProgressBar + */ +/** + * @var {number} + * The border-radius of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar's moving element + */ +/** + * @var {string/list} + * The background-gradient of the ProgressBar's moving element. Can be either the name of + * a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The color of the ProgressBar's text when in front of the ProgressBar's moving element + */ +/** + * @var {color} + * The color of the ProgressBar's text when the ProgressBar's 'moving element is not under it + */ +/** + * @var {string} + * The text-align of the ProgressBar's text + */ +/** + * @var {number} + * The font-size of the ProgressBar's text + */ +/** + * @var {string} + * The font-weight of the ProgressBar's text + */ +/** + * @var {boolean} + * True to include the "default" ProgressBar UI + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a small {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a medium {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a large {@link #scale} button + */ +/** + * @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 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 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 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 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 disabled + */ +/** + * @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 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 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 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 disabled + */ +/** + * @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-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 buton 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-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 + */ +/** + * @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 {number/list} + * The margin 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 {number/list} + * The margin of Toolbar text + */ +/** + * @var {color} + * The text-color of Toolbar text + */ +/** + * @var {number/list} + * The padding of Toolbar text + */ +/** + * @var {number} + * The line-height of Toolbar text + */ +/** + * @var {number} + * The width of Toolbar scrollers + */ +/** + * @var {number} + * The height of Toolbar scrollers + */ +/** + * @var {color} + * The border-color of Toolbar scrollers + */ +/** + * @var {number} + * The border-width of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of disabled Toolbar scrollers + */ +/** + * @var {number} + * The opacity of disabled Toolbar scrollers + */ +/** + * @var {string} + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + */ +/** + * @var {boolean} + * True to include the "default" toolbar UI + */ +/** + * @class Ext.panel.Panel + */ +/** + * @var {number} + * The default border-width of Panels + */ +/** + * @var {color} + * The base color of Panels + */ +/** + * @var {color} + * The default border-color of Panels + */ +/** + * @var {$border-width-threshold} + * 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 {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 {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 {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 + */ +/** + * @class Ext.tip.Tip + */ +/** + * @var {color} + * The background-color of the Tip + */ +/** + * @var {string/list} + * The background-gradient of the Tip. Can be either the name of a predefined gradient or a + * list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The text color of the Tip body + */ +/** + * @var {number} + * The font-size of the Tip body + */ +/** + * @var {string} + * The font-weight of the Tip body + */ +/** + * @var {number/list} + * The padding of the Tip body + */ +/** + * @var {color} + * The text color of any anchor tags inside the Tip body + */ +/** + * @var {color} + * The text color of the Tip header + */ +/** + * @var {number} + * The font-size of the Tip header + */ +/** + * @var {string} + * The font-weight of the Tip header + */ +/** + * @var {number/list} + * The padding of the Tip header's body element + */ +/** + * @var {color} + * The border-color of the Tip + */ +/** + * @var {number} + * The border-width of the Tip + */ +/** + * @var {number} + * The border-radius of the Tip + */ +/** + * @var {color} + * The inner border-color of the form field error Tip + */ +/** + * @var {number} + * The inner border-width of the form field error Tip + */ +/** + * @var {color} + * The border-color of the form field error Tip + */ +/** + * @var {number} + * The border-radius of the form field error Tip + */ +/** + * @var {number} + * The border-width of the form field error Tip + */ +/** + * @var {color} + * The background-color of the form field error Tip + */ +/** + * @var {number/list} + * The padding of the form field error Tip's body element + */ +/** + * @var {color} + * The text color of the form field error Tip's body element + */ +/** + * @var {number} + * The font-size of the form field error Tip's body element + */ +/** + * @var {string} + * The font-weight of the form field error Tip's body element + */ +/** + * @var {color} + * The color of anchor tags in the form field error Tip's body element + */ +/** + * @var {number} + * The space between {@link Ext.panel.Tool Tools} in the header + */ +/** + * @var {string} + * The sprite to use for the header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" tip UI + */ +/** + * @var {boolean} + * True to include the "form-invalid" tip UI + */ +/** + * @class Ext.container.ButtonGroup + */ +/** + * @var {color} + * The background-color of the ButtonGroup + */ +/** + * @var {color} + * The border-color of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of the ButtonGroup + */ +/** + * @var {number/list} + * The body padding of the ButtonGroup + */ +/** + * @var {number/list} + * The inner border-width of the ButtonGroup + */ +/** + * @var {color} + * The inner border-color of the ButtonGroup + */ +/** + * @var {number/list} + * The margin of the header element. Used to add space around the header. + */ +/** + * @var {number} + * The font-size of the header + */ +/** + * @var {number} + * The font-weight of the header + */ +/** + * @var {number} + * The font-family of the header + */ +/** + * @var {number} + * The line-height of the header + */ +/** + * @var {number} + * The text color of the header + */ +/** + * @var {number} + * The padding of the header + */ +/** + * @var {number} + * The background-color of the header + */ +/** + * @var {number} + * The border-spacing to use on the table layout element + */ +/** + * @var {number} + * The background-color of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of framed ButtonGroups + */ +/** + * @var {string} + * Sprite image to use for header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" button group UI + */ +/** + * @var {boolean} + * True to include the "default-framed" button group UI + */ +/** + * @class Ext.window.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 + */ +/** + * @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 {color} + * The text color of toolbar field labels + */ +/** + * @var {string} + * The font-weight of toolbar field labels + */ +/** + * @var {number} + * The font-size of toolbar field labels + */ +/** + * @var {string} + * The font-family of toolbar field labels + */ +/** + * @var {number} + * The line-height of toolbar field labels + */ +/** + * @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 {measurement} $form-item-margin-bottom + * The bottom margin to apply to form items when in auto, anchor, vbox, or table layout + */ +/** + * @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 {font} $form-field-font + * Font 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 {font} $form-toolbar-field-font + * Font 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. + */ +/** + * @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 {number} $form-field-disabled-opacity + */ +/** + * @class Ext.form.field.TextArea + */ +/** + * @var {number/string} + * The line-height to use for the TextArea's text + */ +/** + * @class Ext.form.field.Display + */ +/** + * @var {color} + * The text color of display fields + */ +/** + * @var {string} + * The font-weight of display fields + */ +/** + * @var {number} + * The font-size of display fields + */ +/** + * @var {string} + * The font-family of display fields + */ +/** + * @var {number} + * The line-height of display fields + */ +/** + * @var {string} + * The font-weight of toolbar display fields + */ +/** + * @var {number} + * The font-size of toolbar display fields + */ +/** + * @var {string} + * The font-family of toolbar display fields + */ +/** + * @var {number} + * The line-height of toolbar display fields + */ +/** + * @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 + */ +/** + * @class Ext.form.field.Checkbox + */ +/** + * @var {number} + * The size of the checkbox + */ +/** + * @var {number} + * The space between the boxLabel and the checkbox. + */ +/** + * @class Ext.form.CheckboxGroup + */ +/** + * @var {number/list} + * The padding of the CheckboxGroup body element + */ +/** + * @var {color} + * The text color of the CheckboxGroup label + */ +/** + * @var {number} + * The padding of the CheckboxGroup label + */ +/** + * @var {number} + * The margin of the CheckboxGroup label + */ +/** + * @var {number} + * The border-width of the CheckboxGroup label + */ +/** + * @var {number} + * The border-style of the CheckboxGroup label + */ +/** + * @var {number} + * The border-color of the CheckboxGroup label + */ +/** + * @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/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/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 {number/list} + * The margin to apply to the FieldSet's checkbox (for FieldSets that use + * {@link #checkboxToggle}) + */ +/** + * @var {number} + * The size of the FieldSet's collapse tool + */ +/** + * @var {string} $fieldset-collapse-tool-background-image + * The background-image to use for the collapse tool. If null the default tool + * sprite will be used. Defaults to null. + */ +/** + * @class Ext.form.field.Radio + */ +/** + * @var {number} + * The size of the radio button + */ +/** + * @class Ext.form.field.Trigger + */ +/** + * @var {number} + * The width of the Trigger field's trigger element + */ +/** + * @var {number/list} + * The width of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border + */ +/** + * @var {string} + * The style of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border when hovered + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused and the trigger is hovered + */ +/** + * @class Ext.form.field.Spinner + */ +/** + * @var {number} + * The height of the Spinner trigger buttons + */ +/** + * @var {number} + * The height of the Spinner trigger buttons when the Spinner is used on a + * {@link Ext.toolbar.Toolbar Toolbar} + */ +/** + * @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 {number/list} + * The padding of BoundList items + */ +/** + * @var {number} + * The border-width of BoundList items + */ +/** + * @var {string} + * The border-style of BoundList items + */ +/** + * @var {color} + * The border-color of BoundList items + */ +/** + * @var {color} + * The border-color of hovered BoundList items + */ +/** + * @var {color} + * The border-color of selected BoundList items + */ +/** + * @var {color} + * The background-color of hovered BoundList items + */ +/** + * @var {color} + * The background-color of selected BoundList items + */ +/** + * @class Ext.picker.Date + */ +/** + * @var {number} + * The border-width of the DatePicker + */ +/** + * @var {string} + * The border-style of the DatePicker + */ +/** + * @var {color} + * The background-color of the DatePicker + */ +/** + * @var {string} + * The background-image of the DatePicker next arrow + */ +/** + * @var {string} + * The background-image of the DatePicker previous arrow + */ +/** + * @var {number} + * The width of DatePicker arrows + */ +/** + * @var {number} + * The height of DatePicker arrows + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a DatePicker arrow + */ +/** + * @var {number} + * The opacity of the DatePicker arrows + */ +/** + * @var {number} + * The opacity of the DatePicker arrows when hovered + */ +/** + * @var {string/list} + * The Date Picker header background gradient. Can be either the name of a predefined gradient + * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the Date Picker header + */ +/** + * @var {color} + * The color of the Date Picker month button + */ +/** + * @var {number} + * The width of the arrow on the Date Picker month button + */ +/** + * @var {string} + * The background-image of the arrow on the Date Picker month button + */ +/** + * @var {boolean} + * True to render the month button as transparent + */ +/** + * @var {string} + * The text-align of the Date Picker header + */ +/** + * @var {number} + * The height of Date Picker items + */ +/** + * @var {number} + * The width of Date Picker items + */ +/** + * @var {number/list} + * The padding of Date Picker items + */ +/** + * @var {string} + * The font-family of Date Picker items + */ +/** + * @var {number} + * The font-size of Date Picker items + */ +/** + * @var {string} + * The font-weight of Date Picker items + */ +/** + * @var {string} + * The text-align of Date Picker items + */ +/** + * @var {color} + * The text color of Date Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Date Picker item + */ +/** + * @var {string} + * The font-family of Date Picker column headers + */ +/** + * @var {number} + * The font-size of Date Picker column headers + */ +/** + * @var {string} + * The font-weight of Date Picker column headers + */ +/** + * @var {string/list} + * The background-gradient of Date Picker column headers. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {string} + * The border-style of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker column headers + */ +/** + * @var {string} + * The text-align of Date Picker column headers + */ +/** + * @var {number} + * The height of Date Picker column headers + */ +/** + * @var {number/list} + * The padding of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker items + */ +/** + * @var {string} + * The border-style of Date Picker items + */ +/** + * @var {color} + * The border-color of Date Picker items + */ +/** + * @var {string} + * The border-style of today's date on the Date Picker + */ +/** + * @var {string} + * The border-style of the selected item + */ +/** + * @var {string} + * The font-weight of the selected item + */ +/** + * @var {color} + * The text color of the items in the previous and next months + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a disabled item + */ +/** + * @var {color} + * The text color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of the Date Picker footer + */ +/** + * @var {string/list} + * The background-gradient of the Date Picker footer. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The border-width of the Date Picker footer + */ +/** + * @var {string} + * The border-style of the Date Picker footer + */ +/** + * @var {string} + * The text-align of the Date Picker footer + */ +/** + * @var {number/list} + * The padding of the Date Picker footer + */ +/** + * @var {number} + * The space between the footer buttons + */ +/** + * @var {color} + * The border-color of the Month Picker + */ +/** + * @var {number} + * The border-width of the Month Picker + */ +/** + * @var {string} + * The border-style of the Month Picker + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The border-color of Month Picker items + */ +/** + * @var {string} + * The border-style of Month Picker items + */ +/** + * @var {string} + * The font-family of Month Picker items + */ +/** + * @var {number} + * The font-size of Month Picker items + */ +/** + * @var {string} + * The font-weight of Month Picker items + */ +/** + * @var {number/list} + * The margin of Month Picker items + */ +/** + * @var {string} + * The text-align of Month Picker items + */ +/** + * @var {number} + * The height of Month Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker item + */ +/** + * @var {color} + * The background-color of hovered Month Picker items + */ +/** + * @var {color} + * The background-color of selected Month Picker items + */ +/** + * @var {string} + * The border-style of selected Month Picker items + */ +/** + * @var {color} + * The border-color of selected Month Picker items + */ +/** + * @var {number} + * The height of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The width of the Month Picker year navigation buttons + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker year navigation button + */ +/** + * @var {number} + * The opacity of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The opacity of hovered Month Picker year navigation buttons + */ +/** + * @var {string} + * The background-image of the Month Picker next year navigation button + */ +/** + * @var {string} + * The background-image of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker previous year navigation button + */ +/** + * @var {string} + * The border-style of the Month Picker separator + */ +/** + * @var {number} + * The border-width of the Month Picker separator + */ +/** + * @var {color} + * The border-color of the Month Picker separator + */ +/** + * @var {number/list} + * The margin of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @var {number} + * The height of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @class Ext.picker.Color + */ +/** + * @var {color} + * The background-color of Color Pickers + */ +/** + * @var {color} + * The border-color of Color Pickers + */ +/** + * @var {number} + * The border-width of Color Pickers + */ +/** + * @var {string} + * The border-style of Color Pickers + */ +/** + * @var {number} + * The number of columns to display in the Color Picker + */ +/** + * @var {number} + * The number of rows to display in the Color Picker + */ +/** + * @var {number} + * The height of each Color Picker item + */ +/** + * @var {number} + * The width of each Color Picker item + */ +/** + * @var {number} + * The padding of each Color Picker item + */ +/** + * @var {string} + * The cursor to display when the mouse is over a Color Picker item + */ +/** + * @var {color} + * The border-color of Color Picker items + */ +/** + * @var {number} + * The border-width of Color Picker items + */ +/** + * @var {string} + * The border-style of Color Picker items + */ +/** + * @var {color} + * The border-color of hovered Color Picker items + */ +/** + * @var {color} + * The background-color of Color Picker items + */ +/** + * @var {color} + * The background-color of hovered Color Picker items + */ +/** + * @var {color} + * The border-color of the selected Color Picker item + */ +/** + * @var {color} + * The background-color of the selected Color Picker item + */ +/** + * @var {color} + * The inner border-color of Color Picker items + */ +/** + * @var {number} + * The inner border-width of Color Picker items + */ +/** + * @var {string} + * The inner border-style of Color Picker items + */ +/** + * @class Ext.form.field.HtmlEditor + */ +/** + * @var {number} + * The border-width of the HtmlEditor + */ +/** + * @var {color} + * The border-color of the HtmlEditor + */ +/** + * @var {color} + * The background-color of the HtmlEditor + */ +/** + * @var {number} + * The size of the HtmlEditor toolbar icons + */ +/** + * @var {number} + * The font-size of the HtmlEditor's font selection control + */ +/** + * @var {number} + * The font-family of the HtmlEditor's font selection control + */ +/** + * @class Ext.panel.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} $grid-row-cell-line-height + * 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 {color} + * The border-color of the focused row + */ +/** + * @var {string} + * The border-style of the focused row + */ +/** + * @var {color} + * The text color of the focused row + */ +/** + * @var {color} + * The background-color of the focused row + */ +/** + * @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.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 {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 + */ +/** + * @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.CheckColumn + */ +/** + * @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.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.grid.feature.RowWrap + */ +/** + * @var {color} + * The border-color of wrapped rows + */ +/** + * @var {string} + * The border-style of wrapped rows + */ +/** + * @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 + */ +/** + * @class Ext.grid.plugin.Editing + */ +/** + * The height of grid editor text fields. 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 caluclated by adding $grid-row-cell-line-height to the top and bottom values of + * $grid-cell-inner-padding. + */ +/** + * The padding of grid editor text fields. + */ +/** + * @var {number} + * The font size of the grid editor text + */ +/** + * @var {string} + * The font-weight of the grid editor text + */ +/** + * @var {string} + * The font-family of the grid editor text + */ +/** + * @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 {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 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 {string} + * The text-transform property of Accordion headers + */ +/** + * @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.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 {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. + */ +/** + * @class Ext.layout.container.Border + */ +/** + * @var {color} + * The background-color of the Border layout element + */ +/** + * @class Ext.menu.Menu + */ +/** + * @var {color} + * The background-color of the 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 {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} + * The font-size of {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The margin 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 {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 {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {list} + * The background-position of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} text + */ +/** + * @var {number/list} + * The margin of {@link Ext.menu.Separator Menu Separators} + */ +/** + * @var {number} + * The padding to the right of {@link Ext.menu.CheckItem Check Items}, to make room + * for the checkbox + */ +/** + * @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 space to the left and right of {@link Ext.menu.Item Menu Item} arrows + */ +/** + * @var {number} + * The opacity of disabled {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The height of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers when hovered + */ +/** + * @var {number} + * The opacity of Menu crollers when pressed + */ +/** + * @var {number/list} + * The padding to apply to the Menu body element + */ +/** + * @var {color} + * The color of Menu Item text + */ +/** + * @var {number/list} + * The margin non-MenuItems placed in a Menu + */ +/** + * @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} + */ +/** + * @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.slider.Multi + */ +/** + * @var {number} + * The horizontal slider thumb width + */ +/** + * @var {number} + * The horizontal slider thumb height + */ +/** + * @var {number} + * The width of the horizontal slider end caps + */ +/** + * @var {number} + * The vertical slider thumb width + */ +/** + * @var {number} + * The vertical slider thumb height + */ +/** + * @var {number} + * The height of the vertical slider end caps + */ +/** + * @class Ext.tab.Tab + */ +/** + * @var {color} + * The base color of Tabs + */ +/** + * @var {color} + * The base color of hovered Tabs + */ +/** + * @var {color} + * The base color of the active Tabs + */ +/** + * @var {color} + * The base color of disabled Tabs + */ +/** + * @var {color} + * The text color of Tabs + */ +/** + * @var {color} + * The text color of hovered Tabs + */ +/** + * @var {color} + * The text color of the active Tab + */ +/** + * @var {color} + * The text color of disabled Tabs + */ +/** + * @var {number} + * The font-size of Tabs + */ +/** + * @var {number} + * The font-size of hovered Tabs + */ +/** + * @var {number} + * The font-size of the active Tab + */ +/** + * @var {number} + * The font-size of disabled Tabs + */ +/** + * @var {string} + * The font-family of Tabs + */ +/** + * @var {string} + * The font-family of hovered Tabs + */ +/** + * @var {string} + * The font-family of the active Tab + */ +/** + * @var {string} + * The font-family of disabled Tabs + */ +/** + * @var {string} + * The font-weight of Tabs + */ +/** + * @var {string} + * The font-weight of hovered Tabs + */ +/** + * @var {string} + * The font-weight of the active Tab + */ +/** + * @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 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 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} + * The border-width of Tabs + */ +/** + * @var {number/list} + * The inner border-width of Tabs + */ +/** + * @var {color} + * The inner border-color of Tabs + */ +/** + * @var {color} + * The border-color of Tabs + */ +/** + * @var {color} + * The border-color of hovered Tabs + */ +/** + * @var {color} + * The border-color of the active Tab + */ +/** + * @var {color} + * The border-color of disabled Tabs + */ +/** + * @var {number/list} + * The padding of Tabs + */ +/** + * @var {number/list} + * The padding of the Tab's text element + */ +/** + * @var {number} + * The line-height of Tabs + */ +/** + * @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 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 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 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 {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a left-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `left`. + */ +/** + * @var {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a right-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `right`. + */ +/** + * @var {boolean} + * True to include the "default" tab UI + */ +/** + * @class Ext.tab.Bar + */ +/** + * @var {number/list} + * The padding of the Tab Bar + */ +/** + * @var {number/list} + * The padding of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} Tab Bar strip + */ +/** + * @var {number} + * The width of the Tab Bar scrollers + */ +/** + * @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 change the x postition of the background image on hover to allow for a + * horizonatlly alined background image sprite + */ +/** + * @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.selection.CheckboxModel + */ +/** + * @var {number} + * The horizontal space before the checkbox + */ +/** + * @var {number} + * The horizontal space after the checkbox + */ +/** + * @class Ext.tree.Panel + */ +/** + * @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 + */ +/* 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 + */ +/** + * @var {boolean} $include-content-box + * True to include rules for browsers that do not support the border-box model + * (IE6 strict and IE7 strict) + */ +/** + * @var {boolean} $include-ff + * True to include Firefox specific rules + */ +/** + * @var {boolean} $include-chrome + * True to include Chrome specific rules + */ +/** + * @var {boolean} $include-safari + * True to include Safari specific rules + */ +/** + * @var {boolean} $include-opera + * True to include Opera specific rules + */ +/** + * @var {boolean} $include-webkit + * True to include Webkit specific rules + */ +/** + * @var {measurement} $css-shadow-border-radius + * The border radius for CSS shadows + */ +/** + * @var {color} $include-shadow-images + * True to include all shadow images. + */ +/** + * @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 {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. + */ +/* including package ext-theme-base */ +/* line 1, ../../../ext-theme-base/sass/src/Component.scss */ +.x-body { + margin: 0; +} + +/* line 5, ../../../ext-theme-base/sass/src/Component.scss */ +img { + border: 0; +} + +/* line 10, ../../../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 17, ../../../ext-theme-base/sass/src/Component.scss */ +.x-rtl { + direction: rtl; +} + +/* line 21, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ltr { + direction: ltr; +} + +/* line 25, ../../../ext-theme-base/sass/src/Component.scss */ +.x-clear { + overflow: hidden; + clear: both; + font-size: 0; + line-height: 0; + display: table; +} + +/* line 33, ../../../ext-theme-base/sass/src/Component.scss */ +.x-strict .x-ie7 .x-clear { + height: 0; + width: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/Component.scss */ +.x-layer { + position: absolute !important; + overflow: hidden; + zoom: 1; +} + +/* line 49, ../../../ext-theme-base/sass/src/Component.scss */ +.x-fixed-layer { + position: fixed !important; + overflow: hidden; + zoom: 1; +} + +/* line 55, ../../../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 63, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-display { + display: none !important; +} + +/* line 67, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-visibility { + visibility: hidden !important; +} + +/* line 72, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ie6 .x-item-disabled { + filter: none; +} + +/* line 78, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hidden, +.x-hide-offsets { + display: block !important; + visibility: hidden !important; + position: absolute !important; + top: -10000px !important; +} + +/* line 88, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-nosize { + height: 0 !important; + width: 0 !important; +} + +/* line 94, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-clip { + position: absolute!important; + clip: rect(0, 0, 0, 0); + clip: rect(0 0 0 0); +} + +/* line 102, ../../../ext-theme-base/sass/src/Component.scss */ +.x-masked-relative { + position: relative; +} + +/* line 108, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ie-shadow { + background-color: #777; + display: none; + position: absolute; + overflow: hidden; + zoom: 1; +} + +/* line 117, ../../../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; + cursor: default; +} + +/* line 121, ../../../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 136, ../../../ext-theme-base/sass/src/Component.scss */ +.x-list-plain { + list-style-type: none; + margin: 0; + padding: 0; +} + +/* line 143, ../../../ext-theme-base/sass/src/Component.scss */ +.x-table-plain { + border-collapse: collapse; + border-spacing: 0; + font-size: 1em; +} + +/* line 156, ../../../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 162, ../../../ext-theme-base/sass/src/Component.scss */ +.x-frame-tc, +.x-frame-bc { + background-repeat: repeat-x; +} + +/* line 166, ../../../ext-theme-base/sass/src/Component.scss */ +.x-frame-mc { + background-repeat: repeat-x; + overflow: hidden; +} + +/* line 171, ../../../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 178, ../../../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 184, ../../../ext-theme-base/sass/src/Component.scss */ +.x-item-disabled, +.x-item-disabled * { + cursor: default; +} + +/* line 3, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x-box-item { + position: absolute !important; + left: 0; + top: 0; +} + +/* line 4, ../../../ext-theme-base/sass/src/Editor.scss */ +div.x-editor { + overflow: visible; +} + +/* line 1, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask { + z-index: 100; + position: absolute; + width: 100%; + height: 100%; + zoom: 1; +} + +/* line 10, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask-shim { + z-index: 100; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +/* line 20, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask-msg { + z-index: 20001; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress { + position: relative; + border-style: solid; + overflow: hidden; +} + +/* line 7, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress-bar { + overflow: hidden; + position: absolute; + width: 0; + height: 100%; +} + +/* line 14, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress-text { + overflow: hidden; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn { + display: inline-block; + position: relative; + zoom: 1; + *display: inline; + outline: 0; + cursor: pointer; + white-space: nowrap; + vertical-align: middle; + text-decoration: none; +} + +/* line 15, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-wrap { + position: relative; + display: block; +} + +/* line 20, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-button { + position: relative; + display: block; + text-decoration: none; + overflow: hidden; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner { + display: block; + white-space: nowrap; + overflow: hidden; + zoom: 1; +} + +/* line 35, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 45, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-center { + text-align: center; +} + +/* line 49, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-left { + text-align: left; +} + +/* line 59, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-right { + text-align: right; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-target { + position: absolute; + width: 20000px; + top: 0; + left: 0; + height: 1px; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-inner { + overflow: hidden; + zoom: 1; + position: relative; + left: 0; + top: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-horizontal-box-overflow-body { + float: left; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller { + position: relative; + background-repeat: no-repeat; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller-left, +.x-box-scroller-right { + float: left; + height: 100%; + z-index: 5; +} + +/* line 59, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller-top .x-box-scroller, +.x-box-scroller-bottom .x-box-scroller { + line-height: 0; + font-size: 0; + background-position: center 0; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-menu-after { + float: right; +} + +/* line 1, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-text { + white-space: nowrap; +} + +/* line 5, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-separator { + display: block; + font-size: 1px; + overflow: hidden; + cursor: default; + border: 0; + width: 0; + height: 0; + line-height: 0px; +} + +/* line 17, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal { + width: 2px; +} + +/* line 22, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroller { + padding-left: 0; +} + +/* line 29, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-plain { + border: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked { + position: absolute !important; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-vertical { + position: static; +} + +/* line 11, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-top { + border-bottom-width: 0 !important; +} + +/* line 15, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-bottom { + border-top-width: 0 !important; +} + +/* line 19, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-left { + border-right-width: 0 !important; +} + +/* line 23, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-right { + border-left-width: 0 !important; +} + +/* line 27, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-top { + border-top-width: 0 !important; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-right { + border-right-width: 0 !important; +} + +/* line 35, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-bottom { + border-bottom-width: 0 !important; +} + +/* line 39, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-left { + border-left-width: 0 !important; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-l { + border-left-width: 0 !important; +} + +/* line 48, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-b { + border-bottom-width: 0 !important; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-bl { + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 55, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-r { + border-right-width: 0 !important; +} + +/* line 58, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rl { + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 62, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rb { + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rbl { + border-right-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 71, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-t { + border-top-width: 0 !important; +} + +/* line 74, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tl { + border-top-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 78, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tb { + border-top-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 82, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tbl { + border-top-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 87, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tr { + border-top-width: 0 !important; + border-right-width: 0 !important; +} + +/* line 91, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trl { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 96, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trb { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 101, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trbl { + border-width: 0 !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-header-icon { + background-repeat: no-repeat; + background-position: 0 0; + vertical-align: middle; + text-align: center; +} + +/* line 8, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-header-text-container { + overflow: hidden; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +/* line 4, ../../../ext-theme-base/sass/src/dd/DD.scss */ +.x-dd-drag-proxy, +.x-dd-drag-current { + z-index: 1000000!important; + pointer-events: none; +} + +/* line 2, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-repair .x-dd-drag-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 6, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-repair .x-dd-drop-icon { + display: none; +} + +/* line 11, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85); + opacity: 0.85; + padding: 5px; + padding-left: 20px; + white-space: nowrap; + color: #000; + font: normal 11px tahoma, arial, verdana, sans-serif; + border: 1px solid; + border-color: #ddd #bbb #bbb #ddd; + background-color: #fff; +} + +/* line 28, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-icon { + position: absolute; + top: 3px; + left: 3px; + display: block; + width: 16px; + height: 16px; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + z-index: 1; +} + +/* line 66, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-ok .x-dd-drop-icon { + background-image: url(images/dd/drop-yes.gif); +} + +/* line 70, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-ok-add .x-dd-drop-icon { + background-image: url(images/dd/drop-add.gif); +} + +/* line 75, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-nodrop div.x-dd-drop-icon { + background-image: url(images/dd/drop-no.gif); +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel, +.x-plain { + overflow: hidden; + position: relative; +} + +/* line 7, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel { + outline: none; +} + +/* line 23, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-ie .x-panel-header, +.x-ie .x-panel-header-tl, +.x-ie .x-panel-header-tc, +.x-ie .x-panel-header-tr, +.x-ie .x-panel-header-ml, +.x-ie .x-panel-header-mc, +.x-ie .x-panel-header-mr, +.x-ie .x-panel-header-bl, +.x-ie .x-panel-header-bc, +.x-ie .x-panel-header-br { + zoom: 1; +} + +/* line 29, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-ie8 td.x-frame-mc { + vertical-align: top; +} + +/* line 35, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel-body { + overflow: hidden; + position: relative; +} + +/* line 42, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-vertical .x-frame-mc { + background-repeat: repeat-y; +} + +/* line 49, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel-header-plain, +.x-panel-body-plain { + border: 0; + padding: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip { + position: absolute; + overflow: visible; + /*pointer needs to be able to stick out*/ +} + +/* line 6, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip-body { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip-anchor { + position: absolute; + overflow: hidden; + border-style: solid; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Table.scss */ +.x-table-layout { + font-size: 1em; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group { + position: relative; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body { + position: relative; + zoom: 1; +} +/* line 9, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body .x-table-layout-cell { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/Viewport.scss */ +.x-viewport, .x-viewport body { + margin: 0; + padding: 0; + border: 0 none; + overflow: hidden; + height: 100%; + position: static; +} + +/* line 1, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window { + outline: none; + overflow: hidden; +} +/* line 5, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window .x-window-wrap { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window-body { + position: relative; + overflow: hidden; +} + +/* line 15, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window-body-plain { + background: transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label { + display: block; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label-right { + text-align: right; +} + +/* line 9, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label-top { + display: block; + zoom: 1; +} + +/* line 15, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-invalid-icon { + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-invalid-icon ul { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x-form-textarea { + overflow: auto; + resize: none; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x-safari.x-mac .x-form-textarea { + margin-bottom: -2px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Display.scss */ +.x-form-display-field-body { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb-wrap { + vertical-align: top; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb { + vertical-align: top; + overflow: hidden; + padding: 0; + border: 0; +} +/* line 10, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb::-moz-focus-inner { + padding: 0; + border: 0; +} + +/* line 16, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label { + display: inline-block; + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset { + display: block; + /* preserve margins in IE */ + position: relative; +} + +/* line 6, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header { + overflow: hidden; +} +/* line 10, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-item, +.x-fieldset-header .x-tool { + float: left; +} +/* line 14, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb-wrap { + font-size: 0; + line-height: 0; +} +/* line 19, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb { + margin: 0; +} + +/* line 33, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text { + float: left; +} + +/*misc*/ +/* line 4, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-webkit *:focus { + outline: none !important; +} + +/* line 11, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-item { + vertical-align: top; + table-layout: fixed; +} + +/* line 17, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-item-body { + position: relative; +} + +/* line 33, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-form-item td { + border-top: 1px solid transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + cursor: pointer; + overflow: hidden; + background-repeat: no-repeat; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-item-disabled .x-form-trigger { + cursor: default; +} + +/* line 10, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-trigger-noedit { + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap { + vertical-align: top; + border-collapse: separate; +} + +/* line 2, ../../../ext-theme-base/sass/src/form/field/Spinner.scss */ +.x-form-spinner-up, +.x-form-spinner-down { + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-inner { + table-layout: fixed; + width: 100%; + border-collapse: separate; +} + +/* line 11, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-cell { + padding: 0; +} + +/* line 15, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-header { + position: relative; + zoom: 1; +} + +/* line 20, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-arrow { + position: absolute; + outline: none; + font-size: 0; +} + +/* line 26, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-column-header { + padding: 0; +} + +/* line 30, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-date { + display: block; + zoom: 1; + text-decoration: none; +} + +/* line 36, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker { + position: absolute; + left: 0; + top: 0; +} + +/* line 42, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-body { + height: 100%; +} + +/* line 47, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-months, +.x-monthpicker-years { + float: left; + height: 100%; +} + +/* line 52, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-item { + float: left; +} + +/* line 56, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-item-inner { + display: block; + text-decoration: none; +} + +/* line 61, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button-ct { + float: left; + text-align: center; +} + +/* line 66, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button { + display: inline-block; + outline: none; + font-size: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-buttons { + position: absolute; + bottom: 0; + width: 100%; +} +/* line 78, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-strict .x-ie6 .x-monthpicker-buttons { + bottom: -1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/File.scss */ +.x-form-file-btn { + overflow: hidden; +} + +/* line 5, ../../../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 1, ../../../ext-theme-base/sass/src/form/field/Hidden.scss */ +.x-form-item-hidden { + margin: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x-color-picker-item { + float: left; + text-decoration: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x-color-picker-item-inner { + display: block; + font-size: 1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-toolbar { + position: static !important; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x-htmleditor-iframe { + display: block; + overflow: auto; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Fit.scss */ +.x-fit-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-row, +.x-grid-data-row { + outline: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-view { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-table { + table-layout: fixed; + border-collapse: separate; +} + +/* line 16, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-td { + overflow: hidden; + border-width: 0; + vertical-align: top; +} + +/* line 22, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-cell-inner { + overflow: hidden; + white-space: nowrap; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-resize-marker { + position: absolute; + z-index: 5; + top: 0; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + position: absolute; + top: 0; + line-height: 0; + font-size: 0; + overflow: hidden; + z-index: 20000; + background: no-repeat center top transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/header/Container.scss */ +.x-grid-header-ct { + cursor: default; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header { + position: absolute; + overflow: hidden; + background-repeat: repeat-x; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-inner { + zoom: 1; + white-space: nowrap; + position: relative; + overflow: hidden; +} + +/* line 14, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-text { + white-space: nowrap; + background-repeat: no-repeat; + zoom: 1; + display: inline-block; +} + +/* line 25, ../../../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 43, ../../../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 48, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-right { + text-align: right; +} + +/* line 58, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-left { + text-align: left; +} + +/* line 68, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-center { + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Action.scss */ +.x-grid-cell-inner-action-col { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/CheckColumn.scss */ +.x-grid-cell-inner-checkcolumn { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/RowNumberer.scss */ +.x-row-numberer .x-column-header-inner { + text-overflow: clip; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-group, +.x-grid-group-body, +.x-grid-group-hd { + zoom: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd { + white-space: nowrap; +} + +/* line 11, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-row-body-hidden, .x-grid-group-collapsed { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x-grid-rowbody { + zoom: 1; +} + +/* line 5, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x-grid-row-body-hidden { + display: none; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x-grid-rowwrap .x-grid-table { + border: 0; +} +/* line 6, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x-grid-rowwrap .x-grid-cell { + border-bottom: 0; + background-color: transparent; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb-wrap { + text-align: center; +} + +/* line 9, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field { + margin: 0; + white-space: nowrap; + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor div.x-form-action-col-field { + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor { + position: absolute; + overflow: visible; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons { + position: absolute; + white-space: nowrap; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-expander { + font-size: 0; + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x-abs-layout-ct { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x-abs-layout-item { + position: absolute !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter { + font-size: 1px; +} + +/* line 5, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-horizontal { + cursor: e-resize; + cursor: row-resize; +} + +/* line 10, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-vertical { + cursor: e-resize; + cursor: col-resize; +} + +/* line 17, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed, +.x-splitter-horizontal-noresize, +.x-splitter-vertical-noresize { + cursor: default; +} + +/* line 21, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-active { + z-index: 4; +} + +/* line 25, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-collapse-el { + position: absolute; + background-repeat: no-repeat; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-region-slide-in { + z-index: 5; +} + +/* line 14, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-region-collapsed-placeholder { + z-index: 4; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-column { + float: left; +} + +/* line 21, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-ie6 .x-column { + display: inline; + /*prevent IE6 double-margin bug*/ +} + +/* line 25, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-quirks .x-ie .x-form-layout-table, .x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x-form-layout-table { + border-collapse: separate; + border-spacing: 0 2px; +} + +/* line 9, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x-ie6 .x-form-layout-table { + border-collapse: collapse; + border-spacing: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu { + outline: none; +} + +/* line 5, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item { + white-space: nowrap; + overflow: hidden; +} + +/* line 14, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-cmp .x-field-label-cell { + vertical-align: middle; +} + +/* line 22, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-icon-separator { + position: absolute; + top: 0px; + z-index: 0; + height: 100%; + overflow: hidden; +} +/* line 28, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-plain .x-menu-icon-separator { + display: none; +} + +/* line 33, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-link { + text-decoration: none; + outline: 0; + zoom: 1; +} + +/* line 40, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-text { + zoom: 1; +} + +/* line 47, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-icon, +.x-menu-item-icon-right, +.x-menu-item-arrow { + position: absolute; + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/SplitterTracker.scss */ +.x-resizable-overlay { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + display: none; + z-index: 200000; + background-color: #fff; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider { + outline: none; + zoom: 1; + position: relative; +} + +/* line 9, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-inner { + position: relative; + left: 0; + top: 0; + overflow: visible; + zoom: 1; +} +/* line 17, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-inner { + background: repeat-y 0 0; +} + +/* line 23, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-end { + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-thumb { + position: absolute; + background: no-repeat 0 0; +} +/* line 31, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb { + left: 0; +} +/* line 34, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb { + bottom: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Tab.scss */ +a.x-tab { + text-decoration: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Bar.scss */ +.x-tab-bar { + position: relative; +} + +/* line 1, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox .x-column-header-text { + display: block; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 7, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x-grid-cell-row-checker { + vertical-align: middle; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab { + display: block; + white-space: nowrap; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-active { + z-index: 3; +} + +/* line 11, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-wrap { + display: block; + position: relative; +} + +/* line 16, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-button { + zoom: 1; + display: block; + outline: none; +} + +/* line 22, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-inner { + display: block; + text-align: center; + white-space: nowrap; + text-overflow: ellipsis; + -o-text-overflow: ellipsis; + overflow: hidden; + zoom: 1; +} + +/* line 32, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 42, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar { + z-index: 1; +} + +/* line 46, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-body { + z-index: 2; + position: relative; +} + +/* line 51, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip { + position: absolute; + line-height: 0; + font-size: 0; + z-index: 1; +} + +/* line 58, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-horizontal .x-tab-bar-strip { + width: 100%; + left: 0; +} + +/* line 63, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-vertical .x-tab-bar-strip { + height: 100%; + top: 0; +} + +/* line 68, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-top { + bottom: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-bottom { + top: 0; +} + +/* line 76, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-left { + right: 0; +} + +/* line 87, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-right { + left: 0; +} + +/* line 98, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-plain { + background: transparent !important; +} + +/* line 102, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-icon-el { + position: absolute; + background-repeat: no-repeat; + top: 0; + left: 0; + right: auto; + bottom: 0; +} + +/* line 118, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-close-btn { + display: block; + position: absolute; + font-size: 0; + line-height: 0; + background: no-repeat; +} + +/* line 126, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-mc { + overflow: visible; +} + +/* line 3, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-autowidth-table .x-grid-table { + table-layout: auto; + width: auto !important; +} + +/* line 8, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-view { + overflow: hidden; +} + +/* line 13, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-elbow-img, +.x-tree-icon { + background-repeat: no-repeat; + background-position: 0 center; + vertical-align: top; +} + +/* line 19, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-checkbox { + border: 0; + padding: 0; + vertical-align: top; + position: relative; + background-color: transparent; +} + +/* line 27, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-animator-wrap { + overflow: hidden; +} + +/* line 31, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-node-text { + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-surface { + display: -moz-inline-stack; + display: inline-block; + vertical-align: middle; + *vertical-align: auto; + zoom: 1; + *display: inline; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.rvml { + behavior: url(#default#VML); +} + +/* line 10, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-surface tspan { + user-select: none; + -o-user-select: none; + -ms-user-select: none; + -moz-user-select: -moz-none; + -webkit-user-select: none; + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-sprite { + position: absolute; + left: 0; + top: 0; + width: 1px; + height: 1px; +} + +/* line 22, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-group { + position: absolute; + left: 0; + top: 0; + width: 1000px; + height: 1000px; +} + +/* line 30, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-measure-span { + position: absolute; + left: -9999em; + top: -9999em; + padding: 0; + margin: 0; + display: inline; +} + +/* line 39, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 47, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 55, ../../../ext-theme-base/sass/src/draw/Component.scss */ +svg, vml { + overflow: hidden; +} + +/* including package ext-theme-neutral */ +/* line 1, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x-body { + color: black; + font-size: 12px; + font-family: tahoma, arial, verdana, sans-serif; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x-animating-size, +.x-collapsed { + overflow: hidden!important; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/Editor.scss */ +.x-editor .x-form-item-body { + padding-bottom: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-element { + position: absolute; + top: -10px; + left: -10px; + width: 0px; + height: 0px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame { + position: absolute; + left: 0px; + top: 0px; + z-index: 100000000; + width: 0px; + height: 0px; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-top, +.x-focus-frame-bottom, +.x-focus-frame-left, +.x-focus-frame-right { + position: absolute; + top: 0px; + left: 0px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-top, +.x-focus-frame-bottom { + border-top: solid 2px #15428b; + height: 2px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-left, +.x-focus-frame-right { + border-left: solid 2px #15428b; + width: 2px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + background: #cccccc; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg { + padding: 2px; + border-style: solid; + border-width: 1px; + border-color: #99bce8; + background-image: none; + background-color: #dfe9f6; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg-inner { + padding: 0 5px; + border-style: solid; + border-width: 1px; + border-color: #a3bad9; + background-color: #eeeeee; + color: #222222; + font: normal 11px tahoma, arial, verdana, sans-serif; +} + +/* line 41, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg-text { + padding: 5px 5px 5px 20px; + background-image: url(images/grid/loading.gif); + background-repeat: no-repeat; + background-position: 0 center; +} + +/** + * Creates a visual theme for an Ext.ProgressBar + * + * @param {string} $ui-label + * 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 67, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default { + background-color: #e0e8f3; + border-width: 1px; + height: 20px; + border-color: #6594cf; + /**/ + /**/ + /* */ +} +/* line 72, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-content-box .x-progress-default { + height: 18px; +} +/* line 84, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-bar-default { + background-image: none; + background-color: #73a3e0; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b2ccee), color-stop(50%, #88b1e5), color-stop(51%, #73a3e0), color-stop(100%, #5e96db)); + background-image: -webkit-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); + background-image: -moz-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); + background-image: -o-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); + background-image: linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); +} +/* line 92, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-nlg .x-progress-default .x-progress-bar-default { + background: repeat-x; + background-image: url(images/progress/progress-default-bg.gif); +} +/* line 99, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-text { + color: white; + font-weight: bold; + font-size: 11px; + text-align: center; + line-height: 18px; +} +/* line 107, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-text-back { + color: #396295; + line-height: 18px; +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-progress-default .x-progress-bar-default:after { + display: none; + content: "x-slicer:bg:url(images/progress/progress-default-bg.gif)"; +} + +/** + * Creates a visual theme for a 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-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-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-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-disabled + * The text color of the button when the button is disabled + * + * @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-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-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-disabled + * The font-family of the button when the button is disabled + * + * @param {number} $icon-size + * The size of the button icon + * + * @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=false] + * 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 + */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small { + border-color: #d1d1d1; +} + +/* line 137, ../../../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: 2px 2px 2px 2px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: white; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(48%, #f9f9f9), color-stop(52%, #e2e2e2), color-stop(100%, #e7e7e7)); + background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mc { + background-image: url(images/btn/btn-default-small-fbg.gif); + background-position: 0 top; + background-color: white; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-small { + background-image: url(images/btn/btn-default-small-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tr, +.x-btn-default-small-br, +.x-btn-default-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl, +.x-btn-default-small-bl, +.x-btn-default-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl, +.x-btn-default-small-bl, +.x-btn-default-small-tr, +.x-btn-default-small-br, +.x-btn-default-small-tc, +.x-btn-default-small-bc, +.x-btn-default-small-ml, +.x-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-ml, +.x-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-small-tl, +.x-strict .x-ie7 .x-btn-default-small-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 4px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow-right { + padding-right: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-glyph { + font-size: 16px; + line-height: 16px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-small .x-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: #f7f7f7; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf)); + background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-button, +.x-btn-default-small-noicon .x-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-inner, +.x-btn-default-small-noicon .x-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-small-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-inner { + line-height: 16px; + padding-left: 20px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-small-icon-text-left .x-btn-icon-el { + height: 16px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-inner { + line-height: 16px; + padding-right: 20px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-small-icon-text-right .x-btn-icon-el { + height: 16px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-top .x-btn-inner { + padding-top: 20px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-top .x-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-bottom .x-btn-inner { + padding-bottom: 20px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-bottom .x-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active, +.x-btn-default-small-pressed { + border-color: #9ebae1; + background-image: none; + background-color: #b6cbe4; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5)); + background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-tl, +.x-btn-default-small-over .x-frame-bl, +.x-btn-default-small-over .x-frame-tr, +.x-btn-default-small-over .x-frame-br, +.x-btn-default-small-over .x-frame-tc, +.x-btn-default-small-over .x-frame-bc { + background-image: url(images/btn/btn-default-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-ml, +.x-btn-default-small-over .x-frame-mr { + background-image: url(images/btn/btn-default-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-tl, +.x-btn-default-small-focus .x-frame-bl, +.x-btn-default-small-focus .x-frame-tr, +.x-btn-default-small-focus .x-frame-br, +.x-btn-default-small-focus .x-frame-tc, +.x-btn-default-small-focus .x-frame-bc { + background-image: url(images/btn/btn-default-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-ml, +.x-btn-default-small-focus .x-frame-mr { + background-image: url(images/btn/btn-default-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-tl, +.x-btn-default-small-menu-active .x-frame-bl, +.x-btn-default-small-menu-active .x-frame-tr, +.x-btn-default-small-menu-active .x-frame-br, +.x-btn-default-small-menu-active .x-frame-tc, +.x-btn-default-small-menu-active .x-frame-bc, +.x-btn-default-small-pressed .x-frame-tl, +.x-btn-default-small-pressed .x-frame-bl, +.x-btn-default-small-pressed .x-frame-tr, +.x-btn-default-small-pressed .x-frame-br, +.x-btn-default-small-pressed .x-frame-tc, +.x-btn-default-small-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-ml, +.x-btn-default-small-menu-active .x-frame-mr, +.x-btn-default-small-pressed .x-frame-ml, +.x-btn-default-small-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-mc, +.x-btn-default-small-pressed .x-frame-mc { + background-color: #b6cbe4; + background-image: url(images/btn/btn-default-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-tl, +.x-btn-default-small-disabled .x-frame-bl, +.x-btn-default-small-disabled .x-frame-tr, +.x-btn-default-small-disabled .x-frame-br, +.x-btn-default-small-disabled .x-frame-tc, +.x-btn-default-small-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-ml, +.x-btn-default-small-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-mc { + background-color: #f7f7f7; + background-image: url(images/btn/btn-default-small-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-over { + background-image: url(images/btn/btn-default-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-focus { + background-image: url(images/btn/btn-default-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-menu-active, +.x-nlg .x-btn-default-small-pressed { + background-image: url(images/btn/btn-default-small-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-disabled { + background-image: url(images/btn/btn-default-small-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-btn-inner, +.x-btn-default-small-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium { + border-color: #d1d1d1; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: white; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(48%, #f9f9f9), color-stop(52%, #e2e2e2), color-stop(100%, #e7e7e7)); + background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mc { + background-image: url(images/btn/btn-default-medium-fbg.gif); + background-position: 0 top; + background-color: white; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-medium { + background-image: url(images/btn/btn-default-medium-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tr, +.x-btn-default-medium-br, +.x-btn-default-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl, +.x-btn-default-medium-bl, +.x-btn-default-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl, +.x-btn-default-medium-bl, +.x-btn-default-medium-tr, +.x-btn-default-medium-br, +.x-btn-default-medium-tc, +.x-btn-default-medium-bc, +.x-btn-default-medium-ml, +.x-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-ml, +.x-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-medium-tl, +.x-strict .x-ie7 .x-btn-default-medium-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow-right { + padding-right: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-glyph { + font-size: 24px; + line-height: 24px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-medium .x-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: #f7f7f7; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf)); + background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-button, +.x-btn-default-medium-noicon .x-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-inner, +.x-btn-default-medium-noicon .x-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-medium-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-inner { + line-height: 24px; + padding-left: 28px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon-el { + height: 24px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-inner { + line-height: 24px; + padding-right: 28px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon-el { + height: 24px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-top .x-btn-inner { + padding-top: 28px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-top .x-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-bottom .x-btn-inner { + padding-bottom: 28px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-bottom .x-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active, +.x-btn-default-medium-pressed { + border-color: #9ebae1; + background-image: none; + background-color: #b6cbe4; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5)); + background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-tl, +.x-btn-default-medium-over .x-frame-bl, +.x-btn-default-medium-over .x-frame-tr, +.x-btn-default-medium-over .x-frame-br, +.x-btn-default-medium-over .x-frame-tc, +.x-btn-default-medium-over .x-frame-bc { + background-image: url(images/btn/btn-default-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-ml, +.x-btn-default-medium-over .x-frame-mr { + background-image: url(images/btn/btn-default-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-tl, +.x-btn-default-medium-focus .x-frame-bl, +.x-btn-default-medium-focus .x-frame-tr, +.x-btn-default-medium-focus .x-frame-br, +.x-btn-default-medium-focus .x-frame-tc, +.x-btn-default-medium-focus .x-frame-bc { + background-image: url(images/btn/btn-default-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-ml, +.x-btn-default-medium-focus .x-frame-mr { + background-image: url(images/btn/btn-default-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-tl, +.x-btn-default-medium-menu-active .x-frame-bl, +.x-btn-default-medium-menu-active .x-frame-tr, +.x-btn-default-medium-menu-active .x-frame-br, +.x-btn-default-medium-menu-active .x-frame-tc, +.x-btn-default-medium-menu-active .x-frame-bc, +.x-btn-default-medium-pressed .x-frame-tl, +.x-btn-default-medium-pressed .x-frame-bl, +.x-btn-default-medium-pressed .x-frame-tr, +.x-btn-default-medium-pressed .x-frame-br, +.x-btn-default-medium-pressed .x-frame-tc, +.x-btn-default-medium-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-ml, +.x-btn-default-medium-menu-active .x-frame-mr, +.x-btn-default-medium-pressed .x-frame-ml, +.x-btn-default-medium-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-mc, +.x-btn-default-medium-pressed .x-frame-mc { + background-color: #b6cbe4; + background-image: url(images/btn/btn-default-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-tl, +.x-btn-default-medium-disabled .x-frame-bl, +.x-btn-default-medium-disabled .x-frame-tr, +.x-btn-default-medium-disabled .x-frame-br, +.x-btn-default-medium-disabled .x-frame-tc, +.x-btn-default-medium-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-ml, +.x-btn-default-medium-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-mc { + background-color: #f7f7f7; + background-image: url(images/btn/btn-default-medium-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-over { + background-image: url(images/btn/btn-default-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-focus { + background-image: url(images/btn/btn-default-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-menu-active, +.x-nlg .x-btn-default-medium-pressed { + background-image: url(images/btn/btn-default-medium-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-disabled { + background-image: url(images/btn/btn-default-medium-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-btn-inner, +.x-btn-default-medium-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large { + border-color: #d1d1d1; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: white; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(48%, #f9f9f9), color-stop(52%, #e2e2e2), color-stop(100%, #e7e7e7)); + background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mc { + background-image: url(images/btn/btn-default-large-fbg.gif); + background-position: 0 top; + background-color: white; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-large { + background-image: url(images/btn/btn-default-large-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tr, +.x-btn-default-large-br, +.x-btn-default-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl, +.x-btn-default-large-bl, +.x-btn-default-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl, +.x-btn-default-large-bl, +.x-btn-default-large-tr, +.x-btn-default-large-br, +.x-btn-default-large-tc, +.x-btn-default-large-bc, +.x-btn-default-large-ml, +.x-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-ml, +.x-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-large-tl, +.x-strict .x-ie7 .x-btn-default-large-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow-right { + padding-right: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-glyph { + font-size: 32px; + line-height: 32px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-large .x-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: #f7f7f7; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf)); + background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-button, +.x-btn-default-large-noicon .x-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-inner, +.x-btn-default-large-noicon .x-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-large-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-inner { + line-height: 32px; + padding-left: 36px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-large-icon-text-left .x-btn-icon-el { + height: 32px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-inner { + line-height: 32px; + padding-right: 36px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-large-icon-text-right .x-btn-icon-el { + height: 32px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-top .x-btn-inner { + padding-top: 36px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-top .x-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-bottom .x-btn-inner { + padding-bottom: 36px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-bottom .x-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active, +.x-btn-default-large-pressed { + border-color: #9ebae1; + background-image: none; + background-color: #b6cbe4; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5)); + background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-tl, +.x-btn-default-large-over .x-frame-bl, +.x-btn-default-large-over .x-frame-tr, +.x-btn-default-large-over .x-frame-br, +.x-btn-default-large-over .x-frame-tc, +.x-btn-default-large-over .x-frame-bc { + background-image: url(images/btn/btn-default-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-ml, +.x-btn-default-large-over .x-frame-mr { + background-image: url(images/btn/btn-default-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-tl, +.x-btn-default-large-focus .x-frame-bl, +.x-btn-default-large-focus .x-frame-tr, +.x-btn-default-large-focus .x-frame-br, +.x-btn-default-large-focus .x-frame-tc, +.x-btn-default-large-focus .x-frame-bc { + background-image: url(images/btn/btn-default-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-ml, +.x-btn-default-large-focus .x-frame-mr { + background-image: url(images/btn/btn-default-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-tl, +.x-btn-default-large-menu-active .x-frame-bl, +.x-btn-default-large-menu-active .x-frame-tr, +.x-btn-default-large-menu-active .x-frame-br, +.x-btn-default-large-menu-active .x-frame-tc, +.x-btn-default-large-menu-active .x-frame-bc, +.x-btn-default-large-pressed .x-frame-tl, +.x-btn-default-large-pressed .x-frame-bl, +.x-btn-default-large-pressed .x-frame-tr, +.x-btn-default-large-pressed .x-frame-br, +.x-btn-default-large-pressed .x-frame-tc, +.x-btn-default-large-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-ml, +.x-btn-default-large-menu-active .x-frame-mr, +.x-btn-default-large-pressed .x-frame-ml, +.x-btn-default-large-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-mc, +.x-btn-default-large-pressed .x-frame-mc { + background-color: #b6cbe4; + background-image: url(images/btn/btn-default-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-tl, +.x-btn-default-large-disabled .x-frame-bl, +.x-btn-default-large-disabled .x-frame-tr, +.x-btn-default-large-disabled .x-frame-br, +.x-btn-default-large-disabled .x-frame-tc, +.x-btn-default-large-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-ml, +.x-btn-default-large-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-mc { + background-color: #f7f7f7; + background-image: url(images/btn/btn-default-large-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-over { + background-image: url(images/btn/btn-default-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-focus { + background-image: url(images/btn/btn-default-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-menu-active, +.x-nlg .x-btn-default-large-pressed { + background-image: url(images/btn/btn-default-large-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-disabled { + background-image: url(images/btn/btn-default-large-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-btn-inner, +.x-btn-default-large-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small { + border-color: transparent; +} + +/* line 137, ../../../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: 2px 2px 2px 2px; + border-width: 1px; + border-style: solid; + background-color: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tr, +.x-btn-default-toolbar-small-br, +.x-btn-default-toolbar-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl, +.x-btn-default-toolbar-small-bl, +.x-btn-default-toolbar-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl, +.x-btn-default-toolbar-small-bl, +.x-btn-default-toolbar-small-tr, +.x-btn-default-toolbar-small-br, +.x-btn-default-toolbar-small-tc, +.x-btn-default-toolbar-small-bc, +.x-btn-default-toolbar-small-ml, +.x-btn-default-toolbar-small-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-ml, +.x-btn-default-toolbar-small-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-small-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-small-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 4px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow-right { + padding-right: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-glyph { + font-size: 16px; + line-height: 16px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-small .x-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: transparent; +} +/* line 317, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-btn-inner { + color: #8c8c8c; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-button, +.x-btn-default-toolbar-small-noicon .x-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-inner { + line-height: 16px; + padding-left: 20px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el { + height: 16px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-inner { + line-height: 16px; + padding-right: 20px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el { + height: 16px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-top .x-btn-inner { + padding-top: 20px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner { + padding-bottom: 20px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active, +.x-btn-default-toolbar-small-pressed { + border-color: #7a9ac4; + background-image: none; + background-color: #bccfe5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5)); + background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-tl, +.x-btn-default-toolbar-small-over .x-frame-bl, +.x-btn-default-toolbar-small-over .x-frame-tr, +.x-btn-default-toolbar-small-over .x-frame-br, +.x-btn-default-toolbar-small-over .x-frame-tc, +.x-btn-default-toolbar-small-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-ml, +.x-btn-default-toolbar-small-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-tl, +.x-btn-default-toolbar-small-focus .x-frame-bl, +.x-btn-default-toolbar-small-focus .x-frame-tr, +.x-btn-default-toolbar-small-focus .x-frame-br, +.x-btn-default-toolbar-small-focus .x-frame-tc, +.x-btn-default-toolbar-small-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-ml, +.x-btn-default-toolbar-small-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-tl, +.x-btn-default-toolbar-small-menu-active .x-frame-bl, +.x-btn-default-toolbar-small-menu-active .x-frame-tr, +.x-btn-default-toolbar-small-menu-active .x-frame-br, +.x-btn-default-toolbar-small-menu-active .x-frame-tc, +.x-btn-default-toolbar-small-menu-active .x-frame-bc, +.x-btn-default-toolbar-small-pressed .x-frame-tl, +.x-btn-default-toolbar-small-pressed .x-frame-bl, +.x-btn-default-toolbar-small-pressed .x-frame-tr, +.x-btn-default-toolbar-small-pressed .x-frame-br, +.x-btn-default-toolbar-small-pressed .x-frame-tc, +.x-btn-default-toolbar-small-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-ml, +.x-btn-default-toolbar-small-menu-active .x-frame-mr, +.x-btn-default-toolbar-small-pressed .x-frame-ml, +.x-btn-default-toolbar-small-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-mc, +.x-btn-default-toolbar-small-pressed .x-frame-mc { + background-color: #bccfe5; + background-image: url(images/btn/btn-default-toolbar-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-tl, +.x-btn-default-toolbar-small-disabled .x-frame-bl, +.x-btn-default-toolbar-small-disabled .x-frame-tr, +.x-btn-default-toolbar-small-disabled .x-frame-br, +.x-btn-default-toolbar-small-disabled .x-frame-tc, +.x-btn-default-toolbar-small-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-ml, +.x-btn-default-toolbar-small-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-mc { + background-color: transparent; +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-over { + background-image: url(images/btn/btn-default-toolbar-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-focus { + background-image: url(images/btn/btn-default-toolbar-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-menu-active, +.x-nlg .x-btn-default-toolbar-small-pressed { + background-image: url(images/btn/btn-default-toolbar-small-pressed-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium { + border-color: transparent; +} + +/* line 137, ../../../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: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tr, +.x-btn-default-toolbar-medium-br, +.x-btn-default-toolbar-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl, +.x-btn-default-toolbar-medium-bl, +.x-btn-default-toolbar-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl, +.x-btn-default-toolbar-medium-bl, +.x-btn-default-toolbar-medium-tr, +.x-btn-default-toolbar-medium-br, +.x-btn-default-toolbar-medium-tc, +.x-btn-default-toolbar-medium-bc, +.x-btn-default-toolbar-medium-ml, +.x-btn-default-toolbar-medium-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-ml, +.x-btn-default-toolbar-medium-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-medium-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-medium-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow-right { + padding-right: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-glyph { + font-size: 24px; + line-height: 24px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-medium .x-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: transparent; +} +/* line 317, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-btn-inner { + color: #8c8c8c; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-button, +.x-btn-default-toolbar-medium-noicon .x-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-inner { + line-height: 24px; + padding-left: 28px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el { + height: 24px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-inner { + line-height: 24px; + padding-right: 28px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el { + height: 24px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-top .x-btn-inner { + padding-top: 28px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner { + padding-bottom: 28px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active, +.x-btn-default-toolbar-medium-pressed { + border-color: #7a9ac4; + background-image: none; + background-color: #bccfe5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5)); + background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-tl, +.x-btn-default-toolbar-medium-over .x-frame-bl, +.x-btn-default-toolbar-medium-over .x-frame-tr, +.x-btn-default-toolbar-medium-over .x-frame-br, +.x-btn-default-toolbar-medium-over .x-frame-tc, +.x-btn-default-toolbar-medium-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-ml, +.x-btn-default-toolbar-medium-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-tl, +.x-btn-default-toolbar-medium-focus .x-frame-bl, +.x-btn-default-toolbar-medium-focus .x-frame-tr, +.x-btn-default-toolbar-medium-focus .x-frame-br, +.x-btn-default-toolbar-medium-focus .x-frame-tc, +.x-btn-default-toolbar-medium-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-ml, +.x-btn-default-toolbar-medium-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-tl, +.x-btn-default-toolbar-medium-menu-active .x-frame-bl, +.x-btn-default-toolbar-medium-menu-active .x-frame-tr, +.x-btn-default-toolbar-medium-menu-active .x-frame-br, +.x-btn-default-toolbar-medium-menu-active .x-frame-tc, +.x-btn-default-toolbar-medium-menu-active .x-frame-bc, +.x-btn-default-toolbar-medium-pressed .x-frame-tl, +.x-btn-default-toolbar-medium-pressed .x-frame-bl, +.x-btn-default-toolbar-medium-pressed .x-frame-tr, +.x-btn-default-toolbar-medium-pressed .x-frame-br, +.x-btn-default-toolbar-medium-pressed .x-frame-tc, +.x-btn-default-toolbar-medium-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-ml, +.x-btn-default-toolbar-medium-menu-active .x-frame-mr, +.x-btn-default-toolbar-medium-pressed .x-frame-ml, +.x-btn-default-toolbar-medium-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-mc, +.x-btn-default-toolbar-medium-pressed .x-frame-mc { + background-color: #bccfe5; + background-image: url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-tl, +.x-btn-default-toolbar-medium-disabled .x-frame-bl, +.x-btn-default-toolbar-medium-disabled .x-frame-tr, +.x-btn-default-toolbar-medium-disabled .x-frame-br, +.x-btn-default-toolbar-medium-disabled .x-frame-tc, +.x-btn-default-toolbar-medium-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-ml, +.x-btn-default-toolbar-medium-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-mc { + background-color: transparent; +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-over { + background-image: url(images/btn/btn-default-toolbar-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-focus { + background-image: url(images/btn/btn-default-toolbar-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-menu-active, +.x-nlg .x-btn-default-toolbar-medium-pressed { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large { + border-color: transparent; +} + +/* line 137, ../../../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: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tr, +.x-btn-default-toolbar-large-br, +.x-btn-default-toolbar-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl, +.x-btn-default-toolbar-large-bl, +.x-btn-default-toolbar-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl, +.x-btn-default-toolbar-large-bl, +.x-btn-default-toolbar-large-tr, +.x-btn-default-toolbar-large-br, +.x-btn-default-toolbar-large-tc, +.x-btn-default-toolbar-large-bc, +.x-btn-default-toolbar-large-ml, +.x-btn-default-toolbar-large-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-ml, +.x-btn-default-toolbar-large-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-large-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-large-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow-right { + padding-right: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-glyph { + font-size: 32px; + line-height: 32px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-large .x-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: transparent; +} +/* line 317, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-btn-inner { + color: #8c8c8c; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-button, +.x-btn-default-toolbar-large-noicon .x-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-inner { + line-height: 32px; + padding-left: 36px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el { + height: 32px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-inner { + line-height: 32px; + padding-right: 36px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el { + height: 32px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-top .x-btn-inner { + padding-top: 36px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner { + padding-bottom: 36px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active, +.x-btn-default-toolbar-large-pressed { + border-color: #7a9ac4; + background-image: none; + background-color: #bccfe5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5)); + background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-tl, +.x-btn-default-toolbar-large-over .x-frame-bl, +.x-btn-default-toolbar-large-over .x-frame-tr, +.x-btn-default-toolbar-large-over .x-frame-br, +.x-btn-default-toolbar-large-over .x-frame-tc, +.x-btn-default-toolbar-large-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-ml, +.x-btn-default-toolbar-large-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-tl, +.x-btn-default-toolbar-large-focus .x-frame-bl, +.x-btn-default-toolbar-large-focus .x-frame-tr, +.x-btn-default-toolbar-large-focus .x-frame-br, +.x-btn-default-toolbar-large-focus .x-frame-tc, +.x-btn-default-toolbar-large-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-ml, +.x-btn-default-toolbar-large-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-tl, +.x-btn-default-toolbar-large-menu-active .x-frame-bl, +.x-btn-default-toolbar-large-menu-active .x-frame-tr, +.x-btn-default-toolbar-large-menu-active .x-frame-br, +.x-btn-default-toolbar-large-menu-active .x-frame-tc, +.x-btn-default-toolbar-large-menu-active .x-frame-bc, +.x-btn-default-toolbar-large-pressed .x-frame-tl, +.x-btn-default-toolbar-large-pressed .x-frame-bl, +.x-btn-default-toolbar-large-pressed .x-frame-tr, +.x-btn-default-toolbar-large-pressed .x-frame-br, +.x-btn-default-toolbar-large-pressed .x-frame-tc, +.x-btn-default-toolbar-large-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-ml, +.x-btn-default-toolbar-large-menu-active .x-frame-mr, +.x-btn-default-toolbar-large-pressed .x-frame-ml, +.x-btn-default-toolbar-large-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-mc, +.x-btn-default-toolbar-large-pressed .x-frame-mc { + background-color: #bccfe5; + background-image: url(images/btn/btn-default-toolbar-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-tl, +.x-btn-default-toolbar-large-disabled .x-frame-bl, +.x-btn-default-toolbar-large-disabled .x-frame-tr, +.x-btn-default-toolbar-large-disabled .x-frame-br, +.x-btn-default-toolbar-large-disabled .x-frame-tc, +.x-btn-default-toolbar-large-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-ml, +.x-btn-default-toolbar-large-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-mc { + background-color: transparent; +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-over { + background-image: url(images/btn/btn-default-toolbar-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-focus { + background-image: url(images/btn/btn-default-toolbar-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-menu-active, +.x-nlg .x-btn-default-toolbar-large-pressed { + background-image: url(images/btn/btn-default-toolbar-large-pressed-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 1161, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-left .x-btn-icon-el { + background-position: left center; +} + +/* line 1173, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-right .x-btn-icon-el { + background-position: right center; +} + +/* line 1184, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-top .x-btn-icon-el { + background-position: center top; +} + +/* line 1188, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-bottom .x-btn-icon-el { + background-position: center bottom; +} + +/* line 1192, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow-right { + background-position: right center; +} + +/* line 1202, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow-bottom { + background-position: center bottom; +} + +/* line 1206, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow { + background-repeat: no-repeat; +} + +/* line 1211, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split { + display: block; + background-repeat: no-repeat; +} + +/* line 1216, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split-right { + background-position: right center; +} + +/* line 1226, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split-bottom { + background-position: center bottom; +} + +/* line 1230, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-cycle-fixed-width .x-btn-inner { + text-align: inherit; +} + +/** + * Creates a visual theme for a Toolbar. + * @param {String} $ui + * The name of the UI + * + * @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 {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 {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-disabled=$toolbar-scroller-opacity-disabled] + * The opacity of disabled Toolbar scrollers + * + * @param {string} [$tool-background-image=$toolbar-tool-background-image] + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + * + * @member Ext.toolbar.Toolbar + */ +/* line 94, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar { + font-size: 11px; + border-style: solid; + padding: 2px 0 2px 2px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-item { + margin: 0 2px 0 0; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-text { + margin: 0 6px 0 4px; + color: #4c4c4c; + line-height: 16px; + font-family: tahoma, arial, verdana, sans-serif; + font-size: 11px; + font-weight: normal; +} + +/* line 121, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-separator-horizontal { + margin: 0 2px 0 0; + height: 14px; + border-style: solid; + border-width: 0 1px; + border-left-color: #98c8ff; + border-right-color: white; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-footer { + background: transparent; + border: 0; + margin: 3px 0 0; + padding: 2px 0 2px 6px; +} +/* line 144, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-footer .x-toolbar-item { + margin: 0 6px 0 0; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-spacer { + width: 2px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-more-icon { + background-image: url(images/toolbar/more.gif) !important; + background-position: center center !important; + background-repeat: no-repeat; +} + +/* line 45, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default { + border-color: #99bce8; + border-width: 1px; + background-image: none; + background-color: #d3e1f1; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfe9f5), color-stop(100%, #d3e1f1)); + background-image: -webkit-linear-gradient(top, #dfe9f5, #d3e1f1); + background-image: -moz-linear-gradient(top, #dfe9f5, #d3e1f1); + background-image: -o-linear-gradient(top, #dfe9f5, #d3e1f1); + background-image: linear-gradient(top, #dfe9f5, #d3e1f1); +} +/* line 51, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller { + cursor: pointer; +} +/* line 55, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + cursor: default; +} + +/* line 82, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-nlg .x-toolbar-default { + background-image: url(images/toolbar/toolbar-default-bg.gif) !important; + background-repeat: repeat-x; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-toolbar-default:after { + display: none; + content: "x-slicer:bg:url(images/toolbar/toolbar-default-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/* line 166, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-left { + background-image: url(images/toolbar/scroll-left.gif); + background-position: -14px 0; + width: 14px; + height: 22px; + border-style: solid; + border-color: #8db2e3; + border-width: 0 0 1px; + margin-top: 0; +} + +/* line 177, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-left-hover { + background-position: 0 0; +} + +/* line 181, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-right { + background-image: url(images/toolbar/scroll-right.gif); + width: 14px; + height: 22px; + border-style: solid; + border-color: #8db2e3; + border-width: 0 0 1px; + margin-top: 0; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-right-hover { + background-position: -14px 0; +} + +/* line 195, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar .x-box-menu-after { + margin: 0 2px 0 2px; +} + +/* line 199, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical { + padding: 2px 2px 0 2px; +} +/* line 202, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-item { + margin: 0 0 2px 0; +} +/* line 206, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-text { + margin: 4px 0 6px 0; +} +/* line 210, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-separator-vertical { + margin: 0 5px 2px; + border-style: solid none; + border-width: 1px 0; + border-top-color: #98c8ff; + border-bottom-color: white; +} +/* line 219, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-box-menu-after, +.x-toolbar-vertical .x-rtl.x-box-menu-after { + margin: 2px 0 2px 0; + display: block; + float: none; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x-header-draggable .x-header-body, +.x-header-ghost { + cursor: move; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x-header-text { + white-space: nowrap; +} + +/** + * Creates a visual theme for a Panel + * + * @param {string} $ui-label + * 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 {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-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`. + * + * @member Ext.panel.Panel + */ +/* line 736, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65); + opacity: 0.65; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default { + border-color: #99bce8; + padding: 0; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default { + font-size: 11px; + border: 1px solid #99bce8; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal { + padding: 4px 5px 4px 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal-noborder { + padding: 5px 6px 4px 6px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical-noborder { + padding: 6px 5px 6px 4px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-default { + color: #04408c; + font-size: 11px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + line-height: 15px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-default { + background: white; + border-color: #99bce8; + color: black; + font-size: 12px; + font-size: normal; + border-width: 1px; + border-style: solid; +} + +/* line 432, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default { + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 436, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical { + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 454, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-top { + background: url(images/panel-header/panel-header-default-top-bg.gif); +} +/* line 459, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-bottom { + background: url(images/panel-header/panel-header-default-bottom-bg.gif); +} +/* line 464, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-left { + background: url(images/panel-header/panel-header-default-left-bg.gif) top right; +} +/* line 469, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-right { + background: url(images/panel-header/panel-header-default-right-bg.gif) top right; +} + +/* line 494, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-top { + border-bottom-width: 1px !important; +} +/* line 498, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-right { + border-left-width: 1px !important; +} +/* line 502, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-bottom { + border-top-width: 1px !important; +} +/* line 506, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-left { + border-right-width: 1px !important; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-top:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-top-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-bottom:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-bottom-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-left:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-left-bg.gif), stretch:left"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-right:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-right-bg.gif), stretch:left"; +} + +/**/ +/* */ +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-vertical .x-panel-header-text-container { + background-color: #cbddf3; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3); +} + +/* line 533, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-top { + -webkit-box-shadow: #f3f7fb 0 1px 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 1px 0px 0 inset; + box-shadow: #f3f7fb 0 1px 0px 0 inset; +} + +/* line 537, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-right { + -webkit-box-shadow: #f3f7fb -1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb -1px 0 0px 0 inset; + box-shadow: #f3f7fb -1px 0 0px 0 inset; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-bottom { + -webkit-box-shadow: #f3f7fb 0 -1px 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 -1px 0px 0 inset; + box-shadow: #f3f7fb 0 -1px 0px 0 inset; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-left { + -webkit-box-shadow: #f3f7fb 1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 1px 0 0px 0 inset; + box-shadow: #f3f7fb 1px 0 0px 0 inset; +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default .x-panel-header-glyph { + color: #04408c; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-default .x-panel-header-glyph { + color: #678ebf; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-panel-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 2px; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-tool-after-title { + margin: 0 0 0 2px; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-tool-before-title { + margin: 0 2px 0 0; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 687, ../../../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 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed { + border-color: #99bce8; + padding: 4px; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed { + font-size: 11px; + border: 1px solid #99bce8; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal { + padding: 4px 5px 4px 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal-noborder { + padding: 5px 6px 4px 6px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical-noborder { + padding: 6px 5px 6px 4px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-default-framed { + color: #04408c; + font-size: 11px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + line-height: 15px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-default-framed { + background: #dfe9f6; + border-color: #99bce8; + color: black; + font-size: 12px; + font-size: normal; + border-width: 0; + border-style: solid; +} + +/* line 137, ../../../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: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: #dfe9f6; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mc { + background-color: #dfe9f6; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-default-framed-frameInfo { + font-family: dh-4-4-4-4-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tr, +.x-panel-default-framed-br, +.x-panel-default-framed-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl, +.x-panel-default-framed-bl, +.x-panel-default-framed-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl, +.x-panel-default-framed-bl, +.x-panel-default-framed-tr, +.x-panel-default-framed-br, +.x-panel-default-framed-tc, +.x-panel-default-framed-bc, +.x-panel-default-framed-ml, +.x-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-ml, +.x-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-default-framed-tl, +.x-strict .x-ie7 .x-panel-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 5px 4px 5px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mc { + background-image: url(images/panel-header/panel-header-default-framed-top-fbg.gif); + background-position: 0 top; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-top { + background-image: url(images/panel-header/panel-header-default-framed-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-top-frameInfo { + font-family: dh-4-4-0-0-1-1-0-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tr, +.x-panel-header-default-framed-top-br, +.x-panel-header-default-framed-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl, +.x-panel-header-default-framed-top-bl, +.x-panel-header-default-framed-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl, +.x-panel-header-default-framed-top-bl, +.x-panel-header-default-framed-top-tr, +.x-panel-header-default-framed-top-br, +.x-panel-header-default-framed-top-tc, +.x-panel-header-default-framed-top-bc, +.x-panel-header-default-framed-top-ml, +.x-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-ml, +.x-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mc { + padding: 1px 2px 4px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-top-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 4px 5px 4px; + border-width: 1px 1px 1px 0; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-right-fbg.gif); + background-position: right 0; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-right { + background-image: url(images/panel-header/panel-header-default-framed-right-bg.gif); + background-position: right 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-right-frameInfo { + font-family: dv-0-4-4-0-1-1-1-0-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc { + background-position: right 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bc { + background-position: right -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tr, +.x-panel-header-default-framed-right-br, +.x-panel-header-default-framed-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl, +.x-panel-header-default-framed-right-bl, +.x-panel-header-default-framed-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl, +.x-panel-header-default-framed-right-bl, +.x-panel-header-default-framed-right-tr, +.x-panel-header-default-framed-right-br, +.x-panel-header-default-framed-right-tc, +.x-panel-header-default-framed-right-bc, +.x-panel-header-default-framed-right-ml, +.x-panel-header-default-framed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-corners.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc, +.x-panel-header-default-framed-right-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-sides.gif); + background-repeat: repeat-x; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mc { + padding: 2px 1px 2px 4px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-right-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-right:after { + display: none; + content: "x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-right-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-right-bg.gif), corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 5px 4px 5px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mc { + background-image: url(images/panel-header/panel-header-default-framed-bottom-fbg.gif); + background-position: 0 bottom; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-bottom { + background-image: url(images/panel-header/panel-header-default-framed-bottom-bg.gif); + background-position: 0 bottom; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-bottom-frameInfo { + font-family: dh-0-0-4-4-0-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tr, +.x-panel-header-default-framed-bottom-br, +.x-panel-header-default-framed-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl, +.x-panel-header-default-framed-bottom-bl, +.x-panel-header-default-framed-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl, +.x-panel-header-default-framed-bottom-bl, +.x-panel-header-default-framed-bottom-tr, +.x-panel-header-default-framed-bottom-br, +.x-panel-header-default-framed-bottom-tc, +.x-panel-header-default-framed-bottom-bc, +.x-panel-header-default-framed-bottom-ml, +.x-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-ml, +.x-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mc { + padding: 4px 2px 1px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-bottom:after { + display: none; + content: "x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 4px 5px 4px; + border-width: 1px 0 1px 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-left-fbg.gif); + background-position: left 0; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-left { + background-image: url(images/panel-header/panel-header-default-framed-left-bg.gif); + background-position: left 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-left-frameInfo { + font-family: dv-4-0-0-4-1-0-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc { + background-position: left 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bc { + background-position: left -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tr, +.x-panel-header-default-framed-left-br, +.x-panel-header-default-framed-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl, +.x-panel-header-default-framed-left-bl, +.x-panel-header-default-framed-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl, +.x-panel-header-default-framed-left-bl, +.x-panel-header-default-framed-left-tr, +.x-panel-header-default-framed-left-br, +.x-panel-header-default-framed-left-tc, +.x-panel-header-default-framed-left-bc, +.x-panel-header-default-framed-left-ml, +.x-panel-header-default-framed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-corners.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc, +.x-panel-header-default-framed-left-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-sides.gif); + background-repeat: repeat-x; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mc { + padding: 2px 4px 2px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-left-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-left:after { + display: none; + content: "x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-left-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-left-bg.gif), corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif); + background-position: 0 top; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-top { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-top-frameInfo { + font-family: dh-4-4-4-4-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tr, +.x-panel-header-default-framed-collapsed-top-br, +.x-panel-header-default-framed-collapsed-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl, +.x-panel-header-default-framed-collapsed-top-bl, +.x-panel-header-default-framed-collapsed-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl, +.x-panel-header-default-framed-collapsed-top-bl, +.x-panel-header-default-framed-collapsed-top-tr, +.x-panel-header-default-framed-collapsed-top-br, +.x-panel-header-default-framed-collapsed-top-tc, +.x-panel-header-default-framed-collapsed-top-bc, +.x-panel-header-default-framed-collapsed-top-ml, +.x-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-ml, +.x-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mc { + padding: 1px 2px 1px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif); + background-position: right 0; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-right { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif); + background-position: right 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-right-frameInfo { + font-family: dv-4-4-4-4-1-1-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc { + background-position: right 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bc { + background-position: right -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tr, +.x-panel-header-default-framed-collapsed-right-br, +.x-panel-header-default-framed-collapsed-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl, +.x-panel-header-default-framed-collapsed-right-bl, +.x-panel-header-default-framed-collapsed-right-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl, +.x-panel-header-default-framed-collapsed-right-bl, +.x-panel-header-default-framed-collapsed-right-tr, +.x-panel-header-default-framed-collapsed-right-br, +.x-panel-header-default-framed-collapsed-right-tc, +.x-panel-header-default-framed-collapsed-right-bc, +.x-panel-header-default-framed-collapsed-right-ml, +.x-panel-header-default-framed-collapsed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc, +.x-panel-header-default-framed-collapsed-right-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif); + background-repeat: repeat-x; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mc { + padding: 2px 1px 2px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-right:after { + display: none; + content: "x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif); + background-position: 0 bottom; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-bottom { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif); + background-position: 0 bottom; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-bottom-frameInfo { + font-family: dh-4-4-4-4-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tr, +.x-panel-header-default-framed-collapsed-bottom-br, +.x-panel-header-default-framed-collapsed-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl, +.x-panel-header-default-framed-collapsed-bottom-bl, +.x-panel-header-default-framed-collapsed-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl, +.x-panel-header-default-framed-collapsed-bottom-bl, +.x-panel-header-default-framed-collapsed-bottom-tr, +.x-panel-header-default-framed-collapsed-bottom-br, +.x-panel-header-default-framed-collapsed-bottom-tc, +.x-panel-header-default-framed-collapsed-bottom-bc, +.x-panel-header-default-framed-collapsed-bottom-ml, +.x-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-ml, +.x-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mc { + padding: 1px 2px 1px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-bottom:after { + display: none; + content: "x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif); + background-position: left 0; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-left { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif); + background-position: left 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-left-frameInfo { + font-family: dv-4-4-4-4-1-1-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc { + background-position: left 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bc { + background-position: left -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tr, +.x-panel-header-default-framed-collapsed-left-br, +.x-panel-header-default-framed-collapsed-left-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl, +.x-panel-header-default-framed-collapsed-left-bl, +.x-panel-header-default-framed-collapsed-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl, +.x-panel-header-default-framed-collapsed-left-bl, +.x-panel-header-default-framed-collapsed-left-tr, +.x-panel-header-default-framed-collapsed-left-br, +.x-panel-header-default-framed-collapsed-left-tc, +.x-panel-header-default-framed-collapsed-left-bc, +.x-panel-header-default-framed-collapsed-left-ml, +.x-panel-header-default-framed-collapsed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc, +.x-panel-header-default-framed-collapsed-left-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif); + background-repeat: repeat-x; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mc { + padding: 2px 1px 2px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-left:after { + display: none; + content: "x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 396, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-top { + border-bottom-width: 1px !important; +} +/* line 400, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-right { + border-left-width: 1px !important; +} +/* line 404, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-bottom { + border-top-width: 1px !important; +} +/* line 408, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-left { + border-right-width: 1px !important; +} + +/* line 414, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-top { + border-bottom-width: 0 !important; +} +/* line 418, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-right { + border-left-width: 0 !important; +} +/* line 422, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-bottom { + border-top-width: 0 !important; +} +/* line 426, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-left { + border-right-width: 0 !important; +} + +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-framed-vertical .x-panel-header-text-container { + background-color: #cbddf3; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3); +} + +/* line 533, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-top { + -webkit-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; +} + +/* line 537, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-right { + -webkit-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset; + box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-bottom { + -webkit-box-shadow: #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + box-shadow: #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-left { + -webkit-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed .x-panel-header-glyph { + color: #04408c; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-default-framed .x-panel-header-glyph { + color: #678ebf; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-panel-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 2px; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-tool-after-title { + margin: 0 0 0 2px; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-tool-before-title { + margin: 0 2px 0 0; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 687, ../../../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; +} + +/** + * Creates a visual theme for a Ext.tip.Tip + * + * @param {string} $ui-label + * 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-body-padding=$tip-header-body-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 167, ../../../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: #8eaace; + zoom: 1; +} +/* line 182, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-content-box .x-tip-anchor { + height: 0; + width: 0; +} + +/* line 189, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-top { + border-top-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-bottom { + border-bottom-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-bottom-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-left { + border-top-color: transparent; + border-bottom-color: transparent; + border-left-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-left-color: pink; + _filter: chroma(color=pink); +} + +/* line 228, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-right { + border-top-color: transparent; + border-bottom-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 137, ../../../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: #e9f2ff; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mc { + background-color: #e9f2ff; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tip-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tip-default-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tr, +.x-tip-default-br, +.x-tip-default-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl, +.x-tip-default-bl, +.x-tip-default-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl, +.x-tip-default-bl, +.x-tip-default-tr, +.x-tip-default-br, +.x-tip-default-tc, +.x-tip-default-bc, +.x-tip-default-ml, +.x-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-ml, +.x-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tip-default-tl, +.x-strict .x-ie7 .x-tip-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tip-default:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-default { + border-color: #8eaace; +} +/* line 109, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-default .x-tool-img { + background-color: #e9f2ff; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-tool-before-title { + margin: 0 6px 0 0; +} + +/* line 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-body-default { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-text-container-default { + color: #444444; + font-size: 11px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-default { + padding: 3px; + color: #444444; + font-size: 11px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-default a { + color: #2a2a2a; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: white; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mc { + background-color: white; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tip-form-invalid { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tip-form-invalid-frameInfo { + font-family: th-5-5-5-5-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tr, +.x-tip-form-invalid-br, +.x-tip-form-invalid-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl, +.x-tip-form-invalid-bl, +.x-tip-form-invalid-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl, +.x-tip-form-invalid-bl, +.x-tip-form-invalid-tr, +.x-tip-form-invalid-br, +.x-tip-form-invalid-tc, +.x-tip-form-invalid-bc, +.x-tip-form-invalid-ml, +.x-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-ml, +.x-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tip-form-invalid-tl, +.x-strict .x-ie7 .x-tip-form-invalid-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tip-form-invalid:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-form-invalid { + border-color: #a1311f; + -webkit-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; + -moz-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; + box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; +} +/* line 109, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-form-invalid .x-tool-img { + background-color: white; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-form-invalid .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-form-invalid .x-tool-before-title { + margin: 0 6px 0 0; +} + +/* line 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-body-form-invalid { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-text-container-form-invalid { + color: #444444; + font-size: 11px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid { + padding: 3px 3px 3px 22px; + color: #444444; + font-size: 11px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid a { + color: #2a2a2a; +} + +/* line 265, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid { + background: 1px 1px no-repeat; + background-image: url(images/form/exclamation.gif); +} +/* line 268, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid li { + margin-bottom: 4px; +} +/* line 270, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid li.last { + margin-bottom: 0; +} + +/** + * Creates a visual theme for a ButtonGroup. + * + * @param {string} $ui-label + * 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 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-default { + border-color: #b7c8d7; + -webkit-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; + -moz-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; + box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default { + margin: 2px 2px 0 2px; + padding: 1px 0; + line-height: 15px; + background: #c2d8f0; + -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 109, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default .x-tool-img { + background-color: #c2d8f0; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-text-container-default { + font: normal 11px tahoma, arial, verdana, sans-serif; + line-height: 15px; + color: #3e6aaa; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default { + padding: 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default .x-table-layout { + border-spacing: 0; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed { + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + padding: 1px 1px 1px 1px; + border-width: 1px; + border-style: solid; + background-color: #d0def0; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mc { + background-color: #d0def0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-group-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-group-default-framed-frameInfo { + font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl { + background-position: 0 -4px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tr { + background-position: right -6px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bl { + background-position: 0 -8px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-br { + background-position: right -10px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bc { + background-position: 0 -2px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tr, +.x-btn-group-default-framed-br, +.x-btn-group-default-framed-mr { + padding-right: 2px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl, +.x-btn-group-default-framed-bl, +.x-btn-group-default-framed-ml { + padding-left: 2px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tc { + height: 2px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bc { + height: 2px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl, +.x-btn-group-default-framed-bl, +.x-btn-group-default-framed-tr, +.x-btn-group-default-framed-br, +.x-btn-group-default-framed-tc, +.x-btn-group-default-framed-bc, +.x-btn-group-default-framed-ml, +.x-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-ml, +.x-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-group-default-framed-tl, +.x-strict .x-ie7 .x-btn-group-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-group-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle { + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + padding: 1px 1px 1px 1px; + border-width: 1px; + border-style: solid; + background-color: #d0def0; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mc { + background-color: #d0def0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-group-default-framed-notitle { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-group-default-framed-notitle-frameInfo { + font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl { + background-position: 0 -4px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tr { + background-position: right -6px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bl { + background-position: 0 -8px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-br { + background-position: right -10px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bc { + background-position: 0 -2px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tr, +.x-btn-group-default-framed-notitle-br, +.x-btn-group-default-framed-notitle-mr { + padding-right: 2px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl, +.x-btn-group-default-framed-notitle-bl, +.x-btn-group-default-framed-notitle-ml { + padding-left: 2px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tc { + height: 2px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bc { + height: 2px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl, +.x-btn-group-default-framed-notitle-bl, +.x-btn-group-default-framed-notitle-tr, +.x-btn-group-default-framed-notitle-br, +.x-btn-group-default-framed-notitle-tc, +.x-btn-group-default-framed-notitle-bc, +.x-btn-group-default-framed-notitle-ml, +.x-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-ml, +.x-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-group-default-framed-notitle-tl, +.x-strict .x-ie7 .x-btn-group-default-framed-notitle-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-group-default-framed-notitle:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"; +} + +/**/ +/* */ +/* line 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-default-framed { + border-color: #b7c8d7; + -webkit-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; + -moz-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; + box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default-framed { + margin: 2px 2px 0 2px; + padding: 1px 0; + line-height: 15px; + background: #c2d8f0; + -moz-border-radius-topleft: 2px; + -webkit-border-top-left-radius: 2px; + border-top-left-radius: 2px; + -moz-border-radius-topright: 2px; + -webkit-border-top-right-radius: 2px; + border-top-right-radius: 2px; +} +/* line 109, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default-framed .x-tool-img { + background-color: #c2d8f0; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-text-container-default-framed { + font: normal 11px tahoma, arial, verdana, sans-serif; + line-height: 15px; + color: #3e6aaa; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default-framed { + padding: 0 1px 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default-framed .x-table-layout { + border-spacing: 0; +} + +/** + * Creates a visual theme for a Window + * + * @param {string} $ui-label + * 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`. + * + * @member Ext.window.Window + */ +/* line 545, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65); + opacity: 0.65; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default { + border-color: #a2b1c5; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-default-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tr, +.x-window-default-br, +.x-window-default-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl, +.x-window-default-bl, +.x-window-default-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl, +.x-window-default-bl, +.x-window-default-tr, +.x-window-default-br, +.x-window-default-tc, +.x-window-default-bc, +.x-window-default-ml, +.x-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-ml, +.x-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-default-tl, +.x-strict .x-ie7 .x-window-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-default:after { + display: none; + content: "x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"; +} + +/**/ +/* */ +/* line 195, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-body-default { + border-color: #99bbe8; + border-width: 1px; + border-style: solid; + background: #dfe8f6; + color: black; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default { + font-size: 11px; + border-color: #a2b1c5; + zoom: 1; + background-color: #ced9e7; +} +/* line 212, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-tool-img { + background-color: #ced9e7; +} + +/* line 223, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-window-header-default-vertical .x-window-header-text-container { + background-color: #ced9e7; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#ced9e7); +} + +/* line 233, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-text-container-default { + color: #04468c; + font-weight: bold; + line-height: 15px; + font-family: tahoma, arial, verdana, sans-serif; + font-size: 11px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-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: 4px 5px 0 5px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-top-frameInfo { + font-family: dh-5-5-0-0-1-1-0-1-4-5-0-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tr, +.x-window-header-default-top-br, +.x-window-header-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl, +.x-window-header-default-top-bl, +.x-window-header-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl, +.x-window-header-default-top-bl, +.x-window-header-default-top-tr, +.x-window-header-default-top-br, +.x-window-header-default-top-tc, +.x-window-header-default-top-bc, +.x-window-header-default-top-ml, +.x-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-ml, +.x-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mc { + padding: 0px 1px 0 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-top-tl, +.x-strict .x-ie7 .x-window-header-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px; + -webkit-border-top-right-radius: 5px; + border-top-right-radius: 5px; + -moz-border-radius-bottomright: 5px; + -webkit-border-bottom-right-radius: 5px; + border-bottom-right-radius: 5px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 4px 5px 0; + border-width: 1px 1px 1px 0; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-right-frameInfo { + font-family: dh-0-5-5-0-1-1-1-0-5-4-5-0; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tr, +.x-window-header-default-right-br, +.x-window-header-default-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl, +.x-window-header-default-right-bl, +.x-window-header-default-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl, +.x-window-header-default-right-bl, +.x-window-header-default-right-tr, +.x-window-header-default-right-br, +.x-window-header-default-right-tc, +.x-window-header-default-right-bc, +.x-window-header-default-right-ml, +.x-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-ml, +.x-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mc { + padding: 1px 0px 1px 0; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-right-tl, +.x-strict .x-ie7 .x-window-header-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 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: 0 5px 4px 5px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-bottom-frameInfo { + font-family: dh-0-0-5-5-0-1-1-1-0-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tr, +.x-window-header-default-bottom-br, +.x-window-header-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl, +.x-window-header-default-bottom-bl, +.x-window-header-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl, +.x-window-header-default-bottom-bl, +.x-window-header-default-bottom-tr, +.x-window-header-default-bottom-br, +.x-window-header-default-bottom-tc, +.x-window-header-default-bottom-bc, +.x-window-header-default-bottom-ml, +.x-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-ml, +.x-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mc { + padding: 0 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-bottom-tl, +.x-strict .x-ie7 .x-window-header-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left { + -moz-border-radius-topleft: 5px; + -webkit-border-top-left-radius: 5px; + border-top-left-radius: 5px; + -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: 5px; + -webkit-border-bottom-left-radius: 5px; + border-bottom-left-radius: 5px; + padding: 5px 0 5px 4px; + border-width: 1px 0 1px 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-left-frameInfo { + font-family: dh-5-0-0-5-1-0-1-1-5-0-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tr, +.x-window-header-default-left-br, +.x-window-header-default-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl, +.x-window-header-default-left-bl, +.x-window-header-default-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl, +.x-window-header-default-left-bl, +.x-window-header-default-left-tr, +.x-window-header-default-left-br, +.x-window-header-default-left-tc, +.x-window-header-default-left-bc, +.x-window-header-default-left-ml, +.x-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-ml, +.x-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mc { + padding: 1px 0 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-left-tl, +.x-strict .x-ie7 .x-window-header-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-top-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tr, +.x-window-header-default-collapsed-top-br, +.x-window-header-default-collapsed-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl, +.x-window-header-default-collapsed-top-bl, +.x-window-header-default-collapsed-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl, +.x-window-header-default-collapsed-top-bl, +.x-window-header-default-collapsed-top-tr, +.x-window-header-default-collapsed-top-br, +.x-window-header-default-collapsed-top-tc, +.x-window-header-default-collapsed-top-bc, +.x-window-header-default-collapsed-top-ml, +.x-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-ml, +.x-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-right-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-5-4-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tr, +.x-window-header-default-collapsed-right-br, +.x-window-header-default-collapsed-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl, +.x-window-header-default-collapsed-right-bl, +.x-window-header-default-collapsed-right-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl, +.x-window-header-default-collapsed-right-bl, +.x-window-header-default-collapsed-right-tr, +.x-window-header-default-collapsed-right-br, +.x-window-header-default-collapsed-right-tc, +.x-window-header-default-collapsed-right-bc, +.x-window-header-default-collapsed-right-ml, +.x-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-ml, +.x-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mc { + padding: 1px 0px 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-bottom-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tr, +.x-window-header-default-collapsed-bottom-br, +.x-window-header-default-collapsed-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl, +.x-window-header-default-collapsed-bottom-bl, +.x-window-header-default-collapsed-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl, +.x-window-header-default-collapsed-bottom-bl, +.x-window-header-default-collapsed-bottom-tr, +.x-window-header-default-collapsed-bottom-br, +.x-window-header-default-collapsed-bottom-tc, +.x-window-header-default-collapsed-bottom-bc, +.x-window-header-default-collapsed-bottom-ml, +.x-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-ml, +.x-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-left-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-5-4-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tr, +.x-window-header-default-collapsed-left-br, +.x-window-header-default-collapsed-left-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl, +.x-window-header-default-collapsed-left-bl, +.x-window-header-default-collapsed-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl, +.x-window-header-default-collapsed-left-bl, +.x-window-header-default-collapsed-left-tr, +.x-window-header-default-collapsed-left-br, +.x-window-header-default-collapsed-left-tc, +.x-window-header-default-collapsed-left-bc, +.x-window-header-default-collapsed-left-ml, +.x-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-ml, +.x-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mc { + padding: 1px 0px 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 337, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-top { + -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; +} + +/* line 341, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-right { + -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; +} + +/* line 345, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-bottom { + -webkit-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-left { + -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; +} + +/* line 355, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-window-header-icon { + width: 16px; + height: 16px; + color: #04468c; + font-size: 16px; + line-height: 16px; + background-position: center center; +} +/* line 364, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-window-header-glyph { + color: #04468c; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 380, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-ie8m .x-window-header-default .x-window-header-glyph { + color: #698fb9; +} + +/* line 388, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-window-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 398, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-window-header-icon-after-title { + margin: 0 0 0 2px; +} + +/* line 410, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 420, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 433, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-tool-after-title { + margin: 0 0 0 2px; +} +/* line 443, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-tool-before-title { + margin: 0 2px 0 0; +} + +/* line 455, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 465, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 483, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-collapsed .x-window-header { + border-width: 1px !important; +} + +/* line 489, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-nbr .x-window-default-collapsed .x-window-header { + border-width: 0 !important; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-invalid-under { + padding: 2px 2px 2px 20px; + color: #c0272b; + font: normal 11px tahoma, arial, verdana, sans-serif; + line-height: 16px; + background: no-repeat 0 2px; + background-image: url(images/form/exclamation.gif); +} + +/* line 14, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +div.x-lbl-top-err-icon { + margin-bottom: 3px; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-invalid-icon { + width: 16px; + height: 16px; + margin: 0 1px; + background-image: url(images/form/exclamation.gif); + background-repeat: no-repeat; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-item-label { + color: black; + font: normal 12px/14px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} +/* line 31, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-toolbar-item .x-form-item-label { + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} + +/* line 45, ../../../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; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-ie6 .x-form-form-item td { + border-top-width: 0; +} +/* line 59, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-ie6 td.x-form-item-pad { + height: 5px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-field { + color: black; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-item, +.x-form-field { + font: normal 12px tahoma, arial, verdana, sans-serif; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-type-text textarea.x-form-invalid-field, .x-form-type-text input.x-form-invalid-field, +.x-form-type-password textarea.x-form-invalid-field, +.x-form-type-password input.x-form-invalid-field, +.x-form-type-number textarea.x-form-invalid-field, +.x-form-type-number input.x-form-invalid-field, +.x-form-type-email textarea.x-form-invalid-field, +.x-form-type-email input.x-form-invalid-field, +.x-form-type-search textarea.x-form-invalid-field, +.x-form-type-search input.x-form-invalid-field, +.x-form-type-tel textarea.x-form-invalid-field, +.x-form-type-tel input.x-form-invalid-field { + background-color: white; + background-image: url(images/grid/invalid_line.gif); + background-repeat: repeat-x; + background-position: bottom; + border-color: #cc3300; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-item-disabled .x-form-item-label, +.x-item-disabled .x-form-field, +.x-item-disabled .x-form-display-field, +.x-item-disabled .x-form-cb-label, +.x-item-disabled .x-form-trigger { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-text { + color: black; + padding: 1px 3px 2px 3px; + background: white repeat-x 0 0; + border-width: 1px; + border-style: solid; + border-color: #b5b8c8; + background-image: url(images/form/text-bg.gif); + height: 22px; + line-height: 17px; +} +/* line 14, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-field-toolbar .x-form-text { + height: 20px; + line-height: 15px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-content-box .x-form-text { + height: 17px; +} +/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-content-box .x-field-toolbar .x-form-text { + height: 15px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-focus { + border-color: #7eadd9; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-empty-field, +textarea.x-form-empty-field { + color: gray; +} + +/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-quirks .x-ie .x-form-text, +.x-ie7m .x-form-text { + margin-top: -1px; + margin-bottom: -1px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/TextArea.scss */ +.x-form-textarea { + line-height: normal; + height: auto; + background-image: url(images/form/text-bg.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-form-display-field-body { + height: 22px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-toolbar-item .x-form-display-field-body { + height: 20px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-form-display-field { + font: normal 12px/14px tahoma, arial, verdana, sans-serif; + color: black; + margin-top: 4px; +} +/* line 17, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-toolbar-item .x-form-display-field { + margin-top: 4px; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box .x-window-body { + background-color: #ced9e7; + border-width: 0; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-info, +.x-message-box-warning, +.x-message-box-question, +.x-message-box-error { + background-position: top left; + background-repeat: no-repeat; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-info { + background-image: url(images/shared/icon-info.gif); +} + +/* line 33, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-warning { + background-image: url(images/shared/icon-warning.gif); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-question { + background-image: url(images/shared/icon-question.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-error { + background-image: url(images/shared/icon-error.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-wrap { + height: 22px; +} +/* line 4, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-toolbar-item .x-form-cb-wrap { + height: 20px; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb { + margin-top: 5px; +} +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-toolbar-item .x-form-cb { + margin-top: 4px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-checkbox { + width: 13px; + height: 13px; + background: url(images/form/checkbox.gif) no-repeat; +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-checked .x-form-checkbox { + background-position: 0 -13px; +} + +/* Focused */ +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-checkbox-focus { + background-position: -13px 0; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-checked .x-form-checkbox-focus { + background-position: -13px -13px; +} + +/* boxLabel */ +/* line 40, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label { + margin-top: 4px; + font: normal 12px/14px tahoma, arial, verdana, sans-serif; +} +/* line 43, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-toolbar-item .x-form-cb-label { + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label-before { + margin-right: 4px; +} + +/* line 64, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label-after { + margin-left: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-checkboxgroup-body { + padding: 0 4px; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-invalid .x-form-checkboxgroup-body { + border: 1px solid #cc3300; + background-image: url(images/grid/invalid_line.gif); + background-repeat: repeat-x; + background-position: bottom; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-check-group-alt { + background: #d1ddef; + border-top: 1px dotted #b5b8c8; + border-bottom: 1px dotted #b5b8c8; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-check-group-label { + color: black; + padding: 2px; + margin: 0 30px 5px 0; + border-width: 0 0 1px 0; + border-style: solid; + border-color: black; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset { + border: 1px solid #b5b8c8; + padding: 0 10px; + margin: 0 0 10px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie8m .x-fieldset, +.x-quirks .x-ie .x-fieldset { + padding-top: 0; +} +/* line 13, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie8m .x-fieldset .x-fieldset-body, +.x-quirks .x-ie .x-fieldset .x-fieldset-body { + padding-top: 0; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-checkbox { + line-height: 14px; + margin: 1px 3px 0 0; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header { + padding: 0 3px 1px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-tool { + margin-top: 1px; + padding: 0; +} +/* line 33, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb-wrap { + padding: 1px 0; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text { + font: 11px/14px bold tahoma, arial, verdana, sans-serif; + color: #15428b; + padding: 1px 0; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text-collapsible { + cursor: pointer; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-with-title .x-fieldset-header-checkbox, +.x-fieldset-with-title .x-tool { + margin: 1px 3px 0 0; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-webkit .x-fieldset-header { + -webkit-padding-start: 3px; + -webkit-padding-end: 3px; +} + +/* line 76, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-opera .x-fieldset-with-legend { + margin-top: -1px; +} +/* line 79, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-opera.x-mac .x-fieldset-header-text { + padding: 2px 0 0; +} + +/* line 87, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-strict .x-ie8 .x-fieldset-header { + margin-bottom: -1px; +} +/* line 91, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-strict .x-ie8 .x-fieldset-header .x-tool, +.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text, +.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox { + position: relative; + top: -1px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-quirks .x-ie .x-fieldset-header, +.x-ie8m .x-fieldset-header { + padding-left: 1px; + padding-right: 1px; +} + +/* line 109, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-fieldset-body { + display: none; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed { + padding-bottom: 0 !important; + border-width: 1px 1px 0 1px !important; + border-left-color: transparent !important; + border-right-color: transparent !important; +} + +/* line 123, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie6 .x-fieldset-collapsed { + border-width: 1px 0 0 0 !important; + padding-bottom: 0 !important; + margin-left: 1px; + margin-right: 1px; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-bwrap { + zoom: 1; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset .x-tool-toggle { + background-position: 0 -60px; +} +/* line 144, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset .x-tool-over .x-tool-toggle { + background-position: -15px -60px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-tool-toggle { + background-position: 0 -75px; +} +/* line 156, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-tool-over .x-tool-toggle { + background-position: -15px -75px; +} + +/* IE legend positioning bug */ +/* line 164, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-noborder legend { + position: relative; + margin-bottom: 23px; +} + +/* line 170, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-noborder legend span { + position: absolute; + left: 16px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset { + overflow: hidden; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-bwrap { + overflow: hidden; + zoom: 1; +} + +/* line 186, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-body { + overflow: hidden; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-radio { + width: 13px; + height: 13px; + background: url(images/form/radio.gif) no-repeat; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-cb-checked .x-form-radio { + background-position: 0 -13px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-radio-focus { + background-position: -13px 0; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-cb-checked .x-form-radio-focus { + background-position: -13px -13px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + background: url(images/form/trigger.gif); + width: 17px; + border-width: 0 0 1px; + border-color: #b5b8c8; + border-style: solid; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-trigger-cell { + background-color: white; + width: 17px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-over { + background-position: -17px 0; + border-color: #7eadd9; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap-focus .x-form-trigger { + background-position: -51px 0; + border-color: #7eadd9; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap-focus .x-form-trigger-over { + background-position: -68px 0; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-click, +.x-form-trigger-wrap-focus .x-form-trigger-click { + background-position: -34px 0; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-clear-trigger { + background-image: url(images/form/clear-trigger.gif); +} + +/* line 59, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-search-trigger { + background-image: url(images/form/search-trigger.gif); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-quirks .prefixie6 .x-form-trigger-input-cell { + height: 22px; +} +/* line 77, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-quirks .prefixie6 .x-field-toolbar .x-form-trigger-input-cell { + height: 20px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +div.x-form-spinner-up, +div.x-form-spinner-down { + background-image: url(images/form/spinner.gif); + background-color: white; + width: 17px; + height: 11px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-spinner-down { + background-position: 0 -11px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap-focus .x-form-spinner-down { + background-position: -51px -11px; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap .x-form-spinner-down-over { + background-position: -17px -11px; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap-focus .x-form-spinner-down-over { + background-position: -68px -11px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap .x-form-spinner-down-click { + background-position: -34px -11px; +} + +/* line 41, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item div.x-form-spinner-up, +.x-toolbar-item div.x-form-spinner-down { + background-image: url(images/form/spinner-small.gif); + height: 10px; +} +/* line 45, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-spinner-down { + background-position: 0 -10px; +} +/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down { + background-position: -51px -10px; +} +/* line 51, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-over { + background-position: -17px -10px; +} +/* line 54, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down-over { + background-position: -68px -10px; +} +/* line 57, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-click { + background-position: -34px -10px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-number { + width: 30px; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-first { + background-image: url(images/grid/page-first.gif); +} + +/* line 9, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-prev { + background-image: url(images/grid/page-prev.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-next { + background-image: url(images/grid/page-next.gif); +} + +/* line 17, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-last { + background-image: url(images/grid/page-last.gif); +} + +/* line 21, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-loading { + background-image: url(images/grid/refresh.gif); +} + +/* line 27, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-first { + background-image: url(images/grid/page-first-disabled.gif); +} +/* line 31, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-prev { + background-image: url(images/grid/page-prev-disabled.gif); +} +/* line 35, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-next { + background-image: url(images/grid/page-next-disabled.gif); +} +/* line 39, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-last { + background-image: url(images/grid/page-last-disabled.gif); +} +/* line 43, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-loading { + background-image: url(images/grid/refresh-disabled.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist { + border-width: 1px; + border-style: solid; + border-color: #98c0f4; + background: white; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-strict .x-ie7m .x-boundlist-list-ct { + position: relative; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-item { + padding: 0 3px; + line-height: 20px; + cursor: pointer; + cursor: hand; + position: relative; + /*allow hover in IE on empty items*/ + zoom: 1; + border-width: 1px; + border-style: dotted; + border-color: white; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-selected { + background: #cbdaf0; + border-color: #8eabe4; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-item-over { + background: #dfe8f6; + border-color: #a3bae9; +} + +/* line 43, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-floating { + border-top-width: 0; +} + +/* line 47, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-above { + border-top-width: 1px; + border-bottom-width: 1px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker { + border-width: 1px; + border-style: solid; + border-color: #1b376c; + background-color: white; + width: 177px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-header { + padding: 3px 6px; + text-align: center; + background-image: none; + background-color: #23427c; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #264888), color-stop(100%, #1f3a6c)); + background-image: -webkit-linear-gradient(top, #264888, #1f3a6c); + background-image: -moz-linear-gradient(top, #264888, #1f3a6c); + background-image: -o-linear-gradient(top, #264888, #1f3a6c); + background-image: linear-gradient(top, #264888, #1f3a6c); +} + +/* line 32, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-arrow { + width: 15px; + height: 15px; + top: 6px; + cursor: pointer; + background-color: #23427c; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-datepicker-arrow:hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 55, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-next { + right: 6px; + background-image: url(images/shared/right-btn.gif); +} + +/* line 60, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-prev { + left: 6px; + background-image: url(images/shared/left-btn.gif); +} + +/* line 76, ../../../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 83, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-month .x-btn-inner { + color: white; +} +/* line 88, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-month .x-btn-split-right { + background-image: url(images/button/s-arrow-light.gif); + padding-right: 12px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-column-header { + width: 25px; + color: #233d6d; + font: normal 10px tahoma, arial, verdana, sans-serif; + text-align: right; + border-width: 0 0 1px; + border-style: solid; + border-color: #b2d1f5; + background-image: none; + background-color: #dfecfb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #edf4fd), color-stop(100%, #cde1f9)); + background-image: -webkit-linear-gradient(top, #edf4fd, #cde1f9); + background-image: -moz-linear-gradient(top, #edf4fd, #cde1f9); + background-image: -o-linear-gradient(top, #edf4fd, #cde1f9); + background-image: linear-gradient(top, #edf4fd, #cde1f9); +} + +/* line 113, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-column-header-inner { + line-height: 19px; + padding: 0 7px 0 0; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-cell { + text-align: right; + border-width: 1px; + border-style: solid; + border-color: white; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-date { + padding: 0 4px 0 0; + font: normal 11px tahoma, arial, verdana, sans-serif; + color: black; + cursor: pointer; + line-height: 18px; +} + +/* line 138, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-datepicker-date:hover { + color: black; + background-color: #ddecfe; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-selected { + border-style: solid; + border-color: #8db2e3; +} +/* line 146, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-selected .x-datepicker-date { + background-color: #dae5f3; + font-weight: bold; +} + +/* line 152, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-today { + border-color: darkred; + border-style: solid; +} + +/* line 159, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-prevday .x-datepicker-date, +.x-datepicker-nextday .x-datepicker-date { + color: #aaaaaa; +} + +/* line 166, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-disabled a.x-datepicker-date { + background-color: #eeeeee; + cursor: default; + color: #bbbbbb; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-disabled a.x-datepicker-date:hover { + background-color: #eeeeee; +} + +/* line 179, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-footer, +.x-monthpicker-buttons { + padding: 4px 0; + border-width: 1px 0 0; + border-style: solid; + border-color: #b2d1f5; + background-image: none; + background-color: #dfecfb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dee8f5), color-stop(49%, #d1dff0), color-stop(51%, #c7d8ed), color-stop(100%, #cbdaee)); + background-image: -webkit-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee); + background-image: -moz-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee); + background-image: -o-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee); + background-image: linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee); + text-align: center; +} +/* line 195, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-footer .x-btn, +.x-monthpicker-buttons .x-btn { + margin: 0 2px 0 2px; +} + +/* line 201, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker { + width: 177px; + border-width: 1px; + border-style: solid; + border-color: #1b376c; + background-color: white; +} + +/* line 211, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-months { + border-width: 0 1px 0 0; + border-color: #1b376c; + border-style: solid; + width: 87px; +} +/* line 220, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-months .x-monthpicker-item { + width: 43px; +} + +/* line 225, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-years { + width: 88px; +} +/* line 228, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-years .x-monthpicker-item { + width: 44px; +} + +/* line 233, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-item { + margin: 5px 0 4px; + font: normal 11px tahoma, arial, verdana, sans-serif; + text-align: center; +} + +/* line 239, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-item-inner { + margin: 0 5px 0 5px; + color: #15428b; + border-width: 1px; + border-style: solid; + border-color: white; + line-height: 16px; + cursor: pointer; +} + +/* line 254, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-monthpicker-item-inner:hover { + background-color: #ddecfe; +} + +/* line 258, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-selected { + background-color: #dae5f3; + border-style: solid; + border-color: #8db2e3; +} + +/* line 264, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav { + height: 27px; +} + +/* line 268, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button-ct { + width: 44px; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button { + height: 15px; + width: 15px; + cursor: pointer; + margin-top: 6px; + background-color: white; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-next { + background-image: url(images/tools/tool-sprites.gif); + background-position: 0 -120px; +} + +/* line 299, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-next-over { + background-position: -15px -120px; +} + +/* line 303, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-prev { + background-image: url(images/tools/tool-sprites.gif); + background-position: 0 -105px; +} + +/* line 308, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-prev-over { + background-position: -15px -105px; +} + +/* line 313, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-item { + margin: 2px 0 2px; +} +/* line 317, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-item-inner { + margin: 0 5px 0 5px; +} +/* line 321, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-yearnav { + height: 22px; +} +/* line 325, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-yearnav-button { + margin-top: 3px; +} + +/* line 334, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-nlg .x-datepicker-header { + background-image: url(images/datepicker/datepicker-header-bg.gif); + background-repeat: repeat-x; + background-position: top left; +} +/* line 343, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-nlg .x-datepicker-footer, +.x-nlg .x-monthpicker-buttons { + background-image: url(images/datepicker/datepicker-footer-bg.gif); + background-repeat: repeat-x; + background-position: top left; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-datepicker-header:after { + display: none; + content: "x-slicer:bg:url(images/datepicker/datepicker-header-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-datepicker-footer:after { + display: none; + content: "x-slicer:bg:url(images/datepicker/datepicker-footer-bg.gif)"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */ +.x-form-date-trigger { + background-image: url(images/form/date-trigger.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/File.scss */ +.x-form-file-wrap .x-form-text { + color: gray; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker { + width: 144px; + height: 90px; + background-color: white; + border-color: white; + border-width: 0; + border-style: solid; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-item { + width: 18px; + height: 18px; + border-width: 1px; + border-color: white; + border-style: solid; + background-color: white; + cursor: pointer; + padding: 2px; +} +/* line 20, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-content-box .x-color-picker-item { + width: 12px; + height: 12px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +a.x-color-picker-item:hover { + border-color: #8bb8f3; + background-color: #deecfd; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-selected { + border-color: #8bb8f3; + background-color: #deecfd; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-item-inner { + line-height: 10px; + border-color: #aca899; + border-width: 1px; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-btn-text { + background: transparent no-repeat; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-bold, +.x-menu-item div.x-edit-bold { + background-position: 0 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-italic, +.x-menu-item div.x-edit-italic { + background-position: -16px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-underline, +.x-menu-item div.x-edit-underline { + background-position: -32px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-forecolor, +.x-menu-item div.x-edit-forecolor { + background-position: -160px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 31, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-backcolor, +.x-menu-item div.x-edit-backcolor { + background-position: -176px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifyleft, +.x-menu-item div.x-edit-justifyleft { + background-position: -112px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifycenter, +.x-menu-item div.x-edit-justifycenter { + background-position: -128px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifyright, +.x-menu-item div.x-edit-justifyright { + background-position: -144px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 55, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-insertorderedlist, +.x-menu-item div.x-edit-insertorderedlist { + background-position: -80px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 61, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-insertunorderedlist, +.x-menu-item div.x-edit-insertunorderedlist { + background-position: -96px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 67, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-increasefontsize, +.x-menu-item div.x-edit-increasefontsize { + background-position: -48px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-decreasefontsize, +.x-menu-item div.x-edit-decreasefontsize { + background-position: -64px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 79, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-sourceedit, +.x-menu-item div.x-edit-sourceedit { + background-position: -192px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 85, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-createlink, +.x-menu-item div.x-edit-createlink { + background-position: -208px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 90, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tip .x-tip-bd .x-tip-bd-inner { + padding: 5px; + padding-bottom: 1px; +} + +/* line 95, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-font-select { + font-size: 11px; + font-family: inherit; +} + +/* line 100, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-wrap textarea { + font: normal 12px tahoma, arial, verdana, sans-serif; + background-color: white; + resize: none; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-body { + background: white; + border-width: 1px; + border-style: solid; + border-color: #99bce8; +} + +/* line 8, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-empty { + padding: 10px; + color: gray; + background-color: white; + font: normal 11px tahoma, arial, verdana, sans-serif; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell { + color: null; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + background-color: white; + border-color: #ededed #d0d0d0 #ededed #d0d0d0; + border-style: solid; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-alt .x-grid-td { + background-color: #fafafa; +} +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-over .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #dddddd; +} +/* line 35, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-over .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #dddddd; +} +/* line 40, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-selected .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #a3bae9; +} +/* line 45, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #a3bae9; +} +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-focused .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #464646; + border-bottom-width: 1px; +} +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-td { + background-color: #efefef; +} +/* line 65, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-over .x-grid-td { + background-color: #efefef; +} +/* line 73, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-td { + background-color: #dfe8f6; +} +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #464646; + border-bottom-width: 1px; +} +/* line 92, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-table .x-grid-row-focused-first .x-grid-td { + border-top: 1px dotted #464646; +} +/* line 103, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-row-summary .x-grid-td { + border-bottom-color: #dfe8f6; + border-top-width: 0; +} +/* line 108, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-row-summary .x-grid-td { + border-bottom-color: #efefef; + border-top-width: 0; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-td { + border-bottom-width: 1px; +} +/* line 121, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table { + border-top: 1px solid white; +} +/* line 125, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table-over-first { + border-top-style: solid; + border-top-color: #dddddd; +} +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table-selected-first { + border-top-style: dotted; + border-top-color: #a3bae9; +} + +/* line 139, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-body .x-grid-table-focused-first { + border-top: 1px dotted #464646; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell-inner { + text-overflow: ellipsis; + padding: 3px 6px 4px 6px; +} + +/* line 163, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner { + padding-top: 2px; + padding-bottom: 3px; +} + +/* line 178, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell-special { + border-color: #ededed #d0d0d0 #ededed #d0d0d0; + border-style: solid; + border-right-width: 1px; + background-image: none; + background-color: #f6f6f6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: -moz-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: -o-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: linear-gradient(top, #f6f6f6, #e9e9e9); + /**/ + /**/ + /* */ + /**/ + /**/ + /* */ +} +/* line 191, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-cell-special { + border-right-color: #ededed #aaccf6; + background-image: none; + background-color: #dfe8f6; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dfe8f6), color-stop(100%, #cbdaf0)); + background-image: -webkit-linear-gradient(left, #dfe8f6, #cbdaf0); + background-image: -moz-linear-gradient(left, #dfe8f6, #cbdaf0); + background-image: -o-linear-gradient(left, #dfe8f6, #cbdaf0); + background-image: linear-gradient(left, #dfe8f6, #cbdaf0); +} +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-nlg .x-grid-cell-special { + background-repeat: repeat-y; + background-image: url(images/grid/cell-special-bg.gif); +} +/* line 211, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-nlg .x-grid-row-selected .x-grid-cell-special { + background-image: url(images/grid/cell-special-selected-bg.gif); +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-cell-special .x-grid-cell-special:after { + display: none; + content: "x-slicer:bg:url(images/grid/cell-special-bg.gif)"; +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-cell-special .x-grid-cell-special-selected:after { + display: none; + content: "x-slicer:bg:url(images/grid/cell-special-selected-bg.gif)"; +} + +/* line 228, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-dirty-cell { + background: url(images/grid/dirty.gif) no-repeat 0 0; +} + +/* line 241, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row .x-grid-cell-selected { + color: null; + background-color: #b8cfee; +} + +/* line 247, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-col-lines .x-grid-cell { + border-right-width: 1px; +} + +/* line 259, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-resize-marker { + width: 1px; + background-color: #0f0f0f; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator { + position: absolute; + height: 1px; + line-height: 0px; + background-color: #77BC71; + overflow: visible; + pointer-events: none; +} +/* line 9, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator .x-grid-drop-indicator-left { + position: absolute; + top: -8px; + left: -12px; + background-image: url(images/grid/dd-insert-arrow-right.png); + height: 16px; + width: 16px; +} +/* line 18, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator .x-grid-drop-indicator-right { + position: absolute; + top: -8px; + right: -11px; + background-image: url(images/grid/dd-insert-arrow-left.png); + height: 16px; + width: 16px; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-ie6 .x-grid-drop-indicator-left { + background-image: url(images/grid/dd-insert-arrow-right.gif); +} +/* line 33, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-ie6 .x-grid-drop-indicator-right { + background-image: url(images/grid/dd-insert-arrow-left.gif); +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + width: 9px; + height: 9px; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top { + background-image: url(images/grid/col-move-top.gif); +} + +/* line 11, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-bottom { + background-image: url(images/grid/col-move-bottom.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-grid-header-ct { + border: 1px solid #99bce8; + border-bottom-color: #c5c5c5; + background-color: #c5c5c5; + background-image: none; + background-color: #c5c5c5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #e3e4e6)); + background-image: -webkit-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -moz-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -o-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: linear-gradient(top, #f9f9f9, #e3e4e6); +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-accordion-item .x-grid-header-ct { + border-width: 0 0 1px !important; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-accordion-item .x-grid-header-ct-hidden { + border: 0 !important; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-grid-body { + border-top-color: #c5c5c5; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-hmenu-sort-asc .x-menu-item-icon { + background-image: url(images/grid/hmenu-asc.gif); +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-hmenu-sort-desc .x-menu-item-icon { + background-image: url(images/grid/hmenu-desc.gif); +} + +/* line 40, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-cols-icon .x-menu-item-icon { + background-image: url(images/grid/columns.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header { + border-right: 1px solid #c5c5c5; + color: black; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + background-image: none; + background-color: #c5c5c5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #e3e4e6)); + background-image: -webkit-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -moz-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -o-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: linear-gradient(top, #f9f9f9, #e3e4e6); +} + +/* line 24, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-group-sub-header { + background: transparent; + border-top: 1px solid #c5c5c5; +} +/* line 29, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-group-sub-header .x-column-header-inner { + padding: 3px 6px 5px 6px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-inner { + padding: 4px 6px 5px 6px; + text-overflow: ellipsis; +} + +/* line 42, ../../../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: #aaccf6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ebf3fd), color-stop(39%, #ebf3fd), color-stop(40%, #d9e8fb), color-stop(100%, #d9e8fb)); + background-image: -webkit-linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb); + background-image: -moz-linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb); + background-image: -o-linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb); + background-image: linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb); +} + +/* line 51, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-nlg .x-grid-header-ct, +.x-nlg .x-column-header { + background-image: url(images/grid/column-header-bg.gif); +} + +/* line 62, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-nlg .x-column-header-over, +.x-nlg .x-column-header-sort-ASC, +.x-nlg .x-column-header-sort-DESC { + background-image: url(images/grid/column-header-over-bg.gif); +} + +/* line 70, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-open { + background-color: transparent; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-open .x-column-header-trigger { + background-color: transparent; +} + +/* line 78, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-trigger { + width: 14px; + cursor: pointer; + background-color: transparent; + background-position: 0 center; +} + +/* line 96, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-align-right .x-column-header-text { + margin-right: 9px; +} + +/* line 110, ../../../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: 12px; + background-position: right center; +} + +/* line 127, ../../../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.gif); +} + +/* line 130, ../../../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.gif); +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-column-header:after { + display: none; + content: "x-slicer:bg:url(images/grid/column-header-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-column-header-over:after { + display: none; + content: "x-slicer:bg:url(images/grid/column-header-over-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-grid-cell-inner-action-col { + padding: 2px 2px 2px 2px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-action-col { + padding-top: 1px; + padding-bottom: 1px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-action-col-cell .x-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-action-col-icon { + height: 16px; + width: 16px; + cursor: pointer; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-cell-inner-checkcolumn { + padding: 4px 6px 3px 6px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-checkcolumn { + padding-top: 3px; + padding-bottom: 2px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-checkcolumn { + width: 13px; + height: 13px; + background: url(images/form/checkbox.gif) 0 0 no-repeat; +} +/* line 17, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-item-disabled .x-grid-checkcolumn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-checkcolumn-checked { + background-position: 0 -13px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/RowNumberer.scss */ +.x-grid-cell-inner-row-numberer { + padding: 3px 5px 4px 3px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd { + border-width: 0 0 2px 0; + border-style: solid; + border-color: #99bbe8; + padding: 10px 4px 4px 4px; + background: white; + cursor: pointer; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-not-collapsible { + cursor: default; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-collapsible .x-grid-group-title { + background-repeat: no-repeat; + background-position: left center; + background-image: url(images/grid/group-collapse.gif); + padding: 0 0 0 14px; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-title { + color: #3764a0; + font: bold 11px/13px tahoma, arial, verdana, sans-serif; +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-collapsed .x-grid-group-title { + background-image: url(images/grid/group-expand.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-collapsed .x-grid-group-title { + background-image: url(images/grid/group-expand.gif); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-group-by-icon { + background-image: url(images/grid/group-by.gif); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-show-groups-icon { + background-image: url(images/grid/group-by.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ +.x-grid-rowbody { + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + padding: 5px 6px 5px 6px; +} +/* line 6, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-rowbody { + padding-top: 6px; + padding-bottom: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowWrap.scss */ +.x-grid-rowwrap { + border-color: #ededed #d0d0d0 #ededed #d0d0d0; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-summary-bottom { + border-bottom-color: #c5c5c5; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-docked-summary { + border-width: 1px; + border-color: #99bce8; + border-style: solid; +} +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-docked-summary .x-grid-table { + width: 100%; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-grid-row-summary .x-grid-cell, +.x-grid-row-summary .x-grid-rowwrap, +.x-grid-row-summary .x-grid-cell-rowbody { + border-color: #ededed #d0d0d0 #ededed #d0d0d0; + background-color: transparent !important; + border-top-width: 0; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-grid-with-row-lines .x-grid-table-summary { + border: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-grid-locked .x-grid-inner-locked { + border-width: 0 1px 0 0; + border-style: solid; +} + +/* line 17, ../../../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 39, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-hmenu-lock .x-menu-item-icon { + background-image: url(images/grid/hmenu-lock.gif); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-hmenu-unlock .x-menu-item-icon { + background-image: url(images/grid/hmenu-unlock.gif); +} + +/* line 4, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-text { + font: normal 11px/15px tahoma, arial, verdana, sans-serif; + padding: 1px 5px 2px 5px; + height: 20px; +} +/* line 15, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-content-box .x-grid-editor .x-form-text { + height: 15px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-gecko .x-grid-editor .x-form-text { + padding-left: 4px; + padding-right: 4px; +} +/* line 31, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-trigger { + height: 20px; +} +/* line 39, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-spinner-up, .x-grid-editor .x-form-spinner-down { + height: 10px; +} +/* line 47, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb { + margin-top: 4px; +} +/* line 51, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb-wrap { + height: 20px; +} +/* line 58, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field-body { + height: 20px; +} +/* line 62, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field { + font: normal 11px/15px tahoma, arial, verdana, sans-serif; + padding: 2px 6px 3px 6px; + text-overflow: ellipsis; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-action-col-field { + padding: 2px 2px 2px 2px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x-tree-cell-editor .x-form-text { + padding-left: 2px; + padding-right: 2px; +} +/* line 8, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x-gecko .x-tree-cell-editor .x-form-text { + padding-left: 1px; + padding-right: 1px; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-field { + margin: 0 1px 0 1px; +} +/* line 7, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-display-field { + padding: 2px 5px 3px 5px; +} +/* line 16, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-action-col-field { + padding: 2px 1px 2px 1px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-text { + padding: 1px 4px 2px 4px; +} +/* line 30, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-gecko .x-grid-row-editor .x-form-text { + padding-left: 3px; + padding-right: 3px; +} +/* line 38, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-panel-body { + border-top: 1px solid #99bce8 !important; + border-bottom: 1px solid #99bce8 !important; + padding: 4px 0 4px 0; + background-color: #eaf1fb; +} +/* line 48, ../../../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 137, ../../../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: 4px 4px 4px 4px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-color: #eaf1fb; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mc { + background-color: #eaf1fb; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-grid-row-editor-buttons-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-grid-row-editor-buttons-default-bottom-frameInfo { + font-family: th-0-0-5-5-0-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tr, +.x-grid-row-editor-buttons-default-bottom-br, +.x-grid-row-editor-buttons-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl, +.x-grid-row-editor-buttons-default-bottom-bl, +.x-grid-row-editor-buttons-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl, +.x-grid-row-editor-buttons-default-bottom-bl, +.x-grid-row-editor-buttons-default-bottom-tr, +.x-grid-row-editor-buttons-default-bottom-br, +.x-grid-row-editor-buttons-default-bottom-tc, +.x-grid-row-editor-buttons-default-bottom-bc, +.x-grid-row-editor-buttons-default-bottom-ml, +.x-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-ml, +.x-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mc { + padding: 4px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-tl, +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-row-editor-buttons-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 4px 4px 4px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #eaf1fb; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mc { + background-color: #eaf1fb; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-grid-row-editor-buttons-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-grid-row-editor-buttons-default-top-frameInfo { + font-family: th-5-5-0-0-1-1-0-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tr, +.x-grid-row-editor-buttons-default-top-br, +.x-grid-row-editor-buttons-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl, +.x-grid-row-editor-buttons-default-top-bl, +.x-grid-row-editor-buttons-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl, +.x-grid-row-editor-buttons-default-top-bl, +.x-grid-row-editor-buttons-default-top-tr, +.x-grid-row-editor-buttons-default-top-br, +.x-grid-row-editor-buttons-default-top-tc, +.x-grid-row-editor-buttons-default-top-bc, +.x-grid-row-editor-buttons-default-top-ml, +.x-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-ml, +.x-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mc { + padding: 0px 0px 4px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-tl, +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-row-editor-buttons-default-top:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 97, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons-default-bottom { + top: 29px; +} + +/* line 103, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons-default-top { + bottom: 29px; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons { + border-color: #99bce8; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-row-editor-update-button { + margin-right: 2px; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-row-editor-cancel-button { + margin-left: 2px; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-errors .x-tip-body { + padding: 5px; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-errors-item { + list-style: disc; + margin-left: 15px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-cell-inner-row-expander { + padding: 6px 7px 5px 7px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-row-expander { + padding-top: 5px; + padding-bottom: 4px; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-expander { + width: 9px; + height: 9px; + cursor: pointer; + background-image: url(images/grid/group-collapse.gif); +} +/* line 20, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-collapsed .x-grid-row-expander { + background-image: url(images/grid/group-expand.gif); +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/property/Grid.scss */ +.x-grid-cell-inner-property-name { + background-image: url(images/grid/property-cell-bg.gif); + background-repeat: no-repeat; + background-position: -16px 2px; + padding-left: 12px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-layout-ct { + background-color: white; + padding: 0; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-panel-header-text-container { + color: black; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + text-transform: none; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item { + margin: 0; +} +/* line 16, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd { + background: #d9e7f8; + border-top-color: #f3f7fb; + padding: 4px 5px 5px 5px; +} +/* line 22, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd-sibling-expanded { + border-top-color: #99bce8; +} +/* line 26, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd-last-collapsed { + border-bottom-color: #d9e7f8; +} +/* line 30, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-body { + border-width: 0; +} + +/* line 37, ../../../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 -255px; +} +/* line 42, ../../../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 -240px; +} +/* line 50, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-over .x-tool-collapse-top, +.x-accordion-hd .x-tool-over .x-tool-collapse-bottom { + background-position: -15px -255px; +} +/* line 55, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-over .x-tool-expand-top, +.x-accordion-hd .x-tool-over .x-tool-expand-bottom { + background-position: -15px -240px; +} +/* line 61, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-img { + background-color: #d9e7f8; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-collapse-el { + cursor: pointer; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-left, +.x-layout-split-right { + top: 50%; + margin-top: -18px; + width: 5px; + height: 35px; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-top, +.x-layout-split-bottom { + left: 50%; + width: 35px; + height: 5px; + margin-left: -18px; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-left { + background-image: url(images/util/splitter/mini-left.gif); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-right { + background-image: url(images/util/splitter/mini-right.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-top { + background-image: url(images/util/splitter/mini-top.gif); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-bottom { + background-image: url(images/util/splitter/mini-bottom.gif); +} + +/* line 50, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-left { + background-image: url(images/util/splitter/mini-right.gif); +} +/* line 54, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-right { + background-image: url(images/util/splitter/mini-left.gif); +} +/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-top { + background-image: url(images/util/splitter/mini-bottom.gif); +} +/* line 74, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-bottom { + background-image: url(images/util/splitter/mini-top.gif); +} + +/* line 79, ../../../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 83, ../../../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 1, ../../../ext-theme-neutral/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + background-color: #dfe8f6; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-body { + background: #f0f0f0; + padding: 2px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-icon-separator { + left: 24px; + border-left: solid 1px #e0e0e0; + background-color: white; + width: 2px; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item { + padding: 1px; + cursor: pointer; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-indent { + margin-left: 30px; +} + +/* line 57, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-active { + background-image: none; + background-color: #d9e8fb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7f0fc), color-stop(100%, #c7ddf9)); + background-image: -webkit-linear-gradient(top, #e7f0fc, #c7ddf9); + background-image: -moz-linear-gradient(top, #e7f0fc, #c7ddf9); + background-image: -o-linear-gradient(top, #e7f0fc, #c7ddf9); + background-image: linear-gradient(top, #e7f0fc, #c7ddf9); + border-color: #a9cbf5; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + border-width: 1px; + border-style: solid; + padding: 0; +} +/* line 75, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-nlg .x-menu-item-active { + background: #d9e8fb repeat-x left top; + background-image: url(images/menu/menu-item-active-bg.gif); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-link { + line-height: 22px; + padding: 0 0 0 30px; + display: inline-block; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-right-check-item-text { + padding-right: 22px; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-icon { + width: 16px; + height: 16px; + top: 4px; + left: 3px; + background-position: center center; +} + +/* line 116, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-glyph { + font-size: 16px; + line-height: 16px; + color: #222222; + opacity: 0.5; +} +/* line 132, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie8m .x-menu-item-glyph { + color: #898989; +} + +/* line 142, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-gecko .x-menu-item-active .x-menu-item-icon, +.x-quirks .x-menu-item-active .x-menu-item-icon, +.x-ie9m .x-menu-item-active .x-menu-item-icon { + top: 3px; + left: 2px; +} + +/* line 168, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-icon-right { + width: 16px; + height: 16px; + top: 3px; + right: 3px; + background-position: center center; +} + +/* line 183, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-text { + font-size: 11px; + color: #222222; + cursor: pointer; + margin-right: 16px; +} + +/* line 201, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-checked .x-menu-item-icon, .x-menu-item-checked .x-menu-item-icon-right { + background-image: url(images/menu/checked.gif); +} +/* line 204, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-checked .x-menu-group-icon { + background-image: url(images/menu/group-checked.gif); +} + +/* line 210, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-unchecked .x-menu-item-icon, .x-menu-item-unchecked .x-menu-item-icon-right { + background-image: url(images/menu/unchecked.gif); +} +/* line 213, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-unchecked .x-menu-group-icon { + background-image: none; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-separator { + height: 2px; + border-top: solid 1px #e0e0e0; + background-color: white; + margin: 2px 0; + padding: 0; +} + +/* line 226, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-arrow { + width: 12px; + height: 9px; + top: 7px; + right: 0; + background-image: url(images/menu/menu-parent.gif); +} + +/* line 239, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-gecko .x-menu-item-active .x-menu-item-arrow, +.x-quirks .x-menu-item-active .x-menu-item-arrow, +.x-ie9m .x-menu-item-active .x-menu-item-arrow { + top: 6px; + right: -1px; +} + +/* line 264, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/* line 270, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-content-box .x-menu-icon-separator { + width: 1px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-content-box .x-menu-item-separator { + height: 1px; +} + +/* line 281, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie .x-menu-item-disabled .x-menu-item-icon { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 285, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie .x-menu-item-disabled .x-menu-item-text { + background-color: transparent; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-date-item { + border-color: #99BBE8; +} + +/* line 300, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item .x-form-item-label { + font-size: 11px; + color: #222222; +} + +/* line 306, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top { + height: 8px; + background-image: url(images/menu/scroll-top.gif); +} + +/* line 310, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-bottom { + height: 8px; + background-image: url(images/menu/scroll-bottom.gif); +} + +/* line 316, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top, .x-menu-scroll-bottom { + background-color: #f0f0f0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-menu-item-link:after { + display: none; + content: "x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool { + cursor: pointer; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-img { + overflow: hidden; + width: 15px; + height: 15px; + background-image: url(images/tools/tool-sprites.gif); + margin: 0; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-placeholder { + visibility: hidden; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-close { + background-position: 0 0; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-minimize { + background-position: 0 -15px; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-maximize { + background-position: 0 -30px; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-restore { + background-position: 0 -45px; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-toggle { + background-position: 0 -60px; +} +/* line 53, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-panel-collapsed .x-tool-toggle { + background-position: 0 -75px; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-gear { + background-position: 0 -90px; +} + +/* line 62, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-prev { + background-position: 0 -105px; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-next { + background-position: 0 -120px; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-pin { + background-position: 0 -135px; +} + +/* line 74, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-unpin { + background-position: 0 -150px; +} + +/* line 78, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-right { + background-position: 0 -165px; +} + +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-left { + background-position: 0 -180px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-down { + background-position: 0 -195px; +} + +/* line 90, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-up { + background-position: 0 -210px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-refresh { + background-position: 0 -225px; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-plus { + background-position: 0 -240px; +} + +/* line 102, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-minus { + background-position: 0 -255px; +} + +/* line 106, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-search { + background-position: 0 -270px; +} + +/* line 110, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-save { + background-position: 0 -285px; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-help { + background-position: 0 -300px; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-print { + background-position: 0 -315px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand { + background-position: 0 -330px; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-collapse { + background-position: 0 -345px; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-resize { + background-position: 0 -360px; +} + +/* line 134, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-move { + background-position: 0 -375px; +} + +/* line 139, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-bottom, +.x-tool-collapse-bottom { + background-position: 0 -195px; +} + +/* line 144, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-top, +.x-tool-collapse-top { + background-position: 0 -210px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-left, +.x-tool-collapse-left { + background-position: 0 -180px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-right, +.x-tool-collapse-right { + background-position: 0 -165px; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-close { + background-position: -15px 0; +} +/* line 178, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-minimize { + background-position: -15px -15px; +} +/* line 182, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-maximize { + background-position: -15px -30px; +} +/* line 186, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-restore { + background-position: -15px -45px; +} +/* line 190, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-toggle { + background-position: -15px -60px; +} +/* line 195, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-panel-collapsed .x-tool-over .x-tool-toggle { + background-position: -15px -75px; +} +/* line 200, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-gear { + background-position: -15px -90px; +} +/* line 204, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-prev { + background-position: -15px -105px; +} +/* line 208, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-next { + background-position: -15px -120px; +} +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-pin { + background-position: -15px -135px; +} +/* line 216, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-unpin { + background-position: -15px -150px; +} +/* line 220, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-right { + background-position: -15px -165px; +} +/* line 224, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-left { + background-position: -15px -180px; +} +/* line 228, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-down { + background-position: -15px -195px; +} +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-up { + background-position: -15px -210px; +} +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-refresh { + background-position: -15px -225px; +} +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-plus { + background-position: -15px -240px; +} +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-minus { + background-position: -15px -255px; +} +/* line 248, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-search { + background-position: -15px -270px; +} +/* line 252, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-save { + background-position: -15px -285px; +} +/* line 256, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-help { + background-position: -15px -300px; +} +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-print { + background-position: -15px -315px; +} +/* line 264, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand { + background-position: -15px -330px; +} +/* line 268, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-collapse { + background-position: -15px -345px; +} +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-resize { + background-position: -15px -360px; +} +/* line 276, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-move { + background-position: -15px -375px; +} +/* line 281, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-bottom, +.x-tool-over .x-tool-collapse-bottom { + background-position: -15px -195px; +} +/* line 286, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-top, +.x-tool-over .x-tool-collapse-top { + background-position: -15px -210px; +} +/* line 291, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-left, +.x-tool-over .x-tool-collapse-left { + background-position: -15px -180px; +} +/* line 296, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-right, +.x-tool-over .x-tool-collapse-right { + background-position: -15px -165px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle { + position: absolute; + z-index: 100; + font-size: 1px; + line-height: 6px; + overflow: hidden; + zoom: 1; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + background-color: #fff; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-collapsed .x-resizable-handle { + display: none; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-north { + cursor: n-resize; +} +/* line 26, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south { + cursor: s-resize; +} +/* line 29, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east { + cursor: e-resize; +} +/* line 32, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-west { + cursor: w-resize; +} +/* line 35, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast { + cursor: se-resize; +} +/* line 38, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest { + cursor: nw-resize; +} +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast { + cursor: ne-resize; +} +/* line 44, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest { + cursor: sw-resize; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-east { + width: 6px; + height: 100%; + right: 0; + top: 0; +} + +/* line 56, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-south { + width: 100%; + height: 6px; + left: 0; + bottom: 0; +} + +/* line 63, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-west { + width: 6px; + height: 100%; + left: 0; + top: 0; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-north { + width: 100%; + height: 6px; + left: 0; + top: 0; +} + +/* line 77, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-southeast { + width: 6px; + height: 6px; + right: 0; + bottom: 0; + z-index: 101; +} + +/* line 85, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-northwest { + width: 6px; + height: 6px; + left: 0; + top: 0; + z-index: 101; +} + +/* line 93, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-northeast { + width: 6px; + height: 6px; + right: 0; + top: 0; + z-index: 101; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-southwest { + width: 6px; + height: 6px; + left: 0; + bottom: 0; + z-index: 101; +} + +/*IE rounding error*/ +/* line 111, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-ie .x-resizable-handle-east { + margin-right: -1px; + /*IE rounding error*/ +} +/* line 115, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-ie .x-resizable-handle-south { + margin-bottom: -1px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-pinned .x-resizable-handle, +.x-resizable-over .x-resizable-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 127, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-window .x-window-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-window-collapsed .x-window-handle { + display: none; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-proxy { + border: 1px dashed #3b5a82; + position: absolute; + overflow: hidden; + z-index: 50000; +} + +/* line 148, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east, +.x-resizable-over .x-resizable-handle-west, +.x-resizable-pinned .x-resizable-handle-east, +.x-resizable-pinned .x-resizable-handle-west { + background-image: url(images/sizer/e-handle.gif); +} +/* line 154, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south, +.x-resizable-over .x-resizable-handle-north, +.x-resizable-pinned .x-resizable-handle-south, +.x-resizable-pinned .x-resizable-handle-north { + background-image: url(images/sizer/s-handle.gif); +} +/* line 159, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast, +.x-resizable-pinned .x-resizable-handle-southeast { + background-position: top left; + background-image: url(images/sizer/se-handle.gif); +} +/* line 164, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest, +.x-resizable-pinned .x-resizable-handle-northwest { + background-position: bottom right; + background-image: url(images/sizer/nw-handle.gif); +} +/* line 169, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast, +.x-resizable-pinned .x-resizable-handle-northeast { + background-position: bottom left; + background-image: url(images/sizer/ne-handle.gif); +} +/* line 174, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest, +.x-resizable-pinned .x-resizable-handle-southwest { + background-position: top right; + background-image: url(images/sizer/sw-handle.gif); +} + +/* Horizontal styles */ +/* line 2, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz { + padding-left: 7px; + background: no-repeat 0 -15px; +} +/* line 6, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-end { + padding-right: 7px; + background: no-repeat right -30px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-inner { + height: 15px; +} + +/* line 20, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-ie6 .x-form-item .x-slider-horz, +.x-ie7 .x-form-item .x-slider-horz, +.x-quirks .x-ie .x-form-item .x-slider-horz { + margin-top: 4px; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb { + width: 14px; + height: 15px; + margin-left: -7px; + background-image: url(images/slider/slider-thumb.png); +} + +/* line 33, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb-over { + background-position: -14px -15px; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb-drag { + background-position: -28px -30px; +} + +/* Vertical styles */ +/* line 60, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert { + padding-top: 7px; + background: no-repeat -30px 0; +} + +/* line 65, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-end { + padding-bottom: 7px; + background: no-repeat -15px bottom; + width: 15px; +} + +/* line 71, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-inner { + width: 15px; +} + +/* line 75, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb { + width: 15px; + height: 14px; + margin-bottom: -7px; + background-image: url(images/slider/slider-v-thumb.png); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb-over { + background-position: -15px -14px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb-drag { + background-position: -30px -28px; +} + +/* line 92, ../../../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 98, ../../../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); +} + +/** + * 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-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-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} [$ui-border-width=$tab-border-width] + * The border-width of 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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 + * + * @param {color} [$ui-border-bottom-color=$tabbar-strip-border-color] + * The bottom border color of inactive tabs. + * + * @member Ext.tab.Tab + */ +/** + * Creates a visual theme for a Tab Bar + * + * @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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 {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 {number} [$ui-tab-height] + * The height of tabs that will be used in this tabbar UI. The tabbar body is given + * a fixed height to leave room for the tabs, and so that the tabbar does not collapse + * when it does not contain any tabs. + * + * @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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-tab-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 137, ../../../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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mc { + background-image: url(images/tab/tab-default-top-fbg.gif); + background-position: 0 top; + background-color: #deecfd; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-tab-default-top { + background-image: url(images/tab/tab-default-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-top-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tr, +.x-tab-default-top-br, +.x-tab-default-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl, +.x-tab-default-top-bl, +.x-tab-default-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl, +.x-tab-default-top-bl, +.x-tab-default-top-tr, +.x-tab-default-top-br, +.x-tab-default-top-tc, +.x-tab-default-top-bc, +.x-tab-default-top-ml, +.x-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-ml, +.x-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-top-tl, +.x-strict .x-ie7 .x-tab-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 3px 9px 3px 9px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mc { + background-image: url(images/tab/tab-default-bottom-fbg.gif); + background-position: 0 top; + background-color: #deecfd; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-tab-default-bottom { + background-image: url(images/tab/tab-default-bottom-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-bottom-frameInfo { + font-family: th-0-0-4-4-0-1-1-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tr, +.x-tab-default-bottom-br, +.x-tab-default-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl, +.x-tab-default-bottom-bl, +.x-tab-default-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl, +.x-tab-default-bottom-bl, +.x-tab-default-bottom-tr, +.x-tab-default-bottom-br, +.x-tab-default-bottom-tc, +.x-tab-default-bottom-bc, +.x-tab-default-bottom-ml, +.x-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-ml, +.x-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mc { + padding: 3px 6px 0px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-bottom-tl, +.x-strict .x-ie7 .x-tab-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-bottom-fbg.gif), bg:url(images/tab/tab-default-bottom-bg.gif), corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mc { + background-image: url(images/tab/tab-default-top-fbg.gif); + background-position: 0 top; + background-color: #deecfd; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-tab-default-left { + background-image: url(images/tab/tab-default-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-left-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tr, +.x-tab-default-left-br, +.x-tab-default-left-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl, +.x-tab-default-left-bl, +.x-tab-default-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl, +.x-tab-default-left-bl, +.x-tab-default-left-tr, +.x-tab-default-left-br, +.x-tab-default-left-tc, +.x-tab-default-left-bc, +.x-tab-default-left-ml, +.x-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-ml, +.x-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-left-tl, +.x-strict .x-ie7 .x-tab-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-left:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-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: 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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mc { + background-image: url(images/tab/tab-default-top-fbg.gif); + background-position: 0 top; + background-color: #deecfd; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-tab-default-right { + background-image: url(images/tab/tab-default-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-right-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tr, +.x-tab-default-right-br, +.x-tab-default-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl, +.x-tab-default-right-bl, +.x-tab-default-right-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl, +.x-tab-default-right-bl, +.x-tab-default-right-tr, +.x-tab-default-right-br, +.x-tab-default-right-tc, +.x-tab-default-right-bc, +.x-tab-default-right-ml, +.x-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-ml, +.x-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-right-tl, +.x-strict .x-ie7 .x-tab-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-right:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 307, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default { + border-color: #8db3e3; + margin: 0 0 0 2px; + cursor: pointer; +} +/* line 312, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-inner { + font-size: 11px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + color: #416da3; + line-height: 13px; +} +/* line 322, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-icon-el { + width: 16px; + height: 16px; + line-height: 16px; + background-position: center center; +} +/* line 329, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-glyph { + font-size: 16px; + color: #416da3; + opacity: 0.5; +} +/* line 343, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default .x-tab-glyph { + color: #8facd0; +} +/* line 351, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default { + padding-left: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-button { + padding-left: 9px; +} +/* line 358, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-icon-el { + left: 9px; +} + +/* line 366, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-icon .x-tab-inner { + width: 16px; +} + +/* line 384, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-left { + margin: 0 2px 0 0; +} + +/* line 396, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top, +.x-tab-default-left, +.x-tab-default-right { + border-bottom: 1px solid #99bce8; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + -webkit-box-shadow: 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 -1px 0 0px 0 inset, white 1px 0 0px 0 inset; + box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; +} +/* line 403, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-top, .x-nlg +.x-tab-default-left, .x-nlg +.x-tab-default-right { + background-image: url(images/tab/tab-default-top-bg.gif); +} + +/* line 417, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom { + border-top: 1px solid #99bce8; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + -webkit-box-shadow: 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 -1px 0 0px 0 inset, white 1px 0 0px 0 inset; + box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; +} +/* line 424, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-bottom { + background-image: url(images/tab/tab-default-bottom-bg.gif); +} + +/* line 438, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-tab-default-left { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} + +/* line 454, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-tab-default-right { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +} + +/* line 471, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-icon-text-left .x-tab-inner { + padding-left: 20px; +} + +/* line 485, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-over { + background-color: #e8f2ff; +} +/* line 509, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-over .x-tab-glyph { + color: #416da3; +} +/* line 516, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-over .x-tab-glyph { + color: #94afd1; +} + +/* line 525, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over, +.x-tab-default-left-over, +.x-tab-default-right-over { + background-image: none; + background-color: #e8f2ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff)); + background-image: -webkit-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: -moz-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: -o-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); +} +/* line 529, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-top-over, .x-nlg +.x-tab-default-left-over, .x-nlg +.x-tab-default-right-over { + background-image: url(images/tab/tab-default-top-over-bg.gif); +} + +/* line 534, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over { + background-image: none; + background-color: #e8f2ff; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff)); + background-image: -webkit-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: -moz-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: -o-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); +} +/* line 538, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-bottom-over { + background-image: url(images/tab/tab-default-bottom-over-bg.gif); +} + +/* line 545, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active { + background-color: #deecfd; +} +/* line 551, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active .x-tab-inner { + color: #15498b; +} +/* line 566, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active .x-tab-glyph { + color: #15498b; +} +/* line 573, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-active .x-tab-glyph { + color: #799ac4; +} + +/* line 581, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active, +.x-tab-default-left-active, +.x-tab-default-right-active { + border-bottom: 1px solid #deecfd; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); +} +/* line 587, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-top-active, .x-nlg +.x-tab-default-left-active, .x-nlg +.x-tab-default-right-active { + background-image: url(images/tab/tab-default-top-active-bg.gif); +} + +/* line 594, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active { + border-top: 1px solid #deecfd; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: -moz-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: -o-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); +} +/* line 600, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-bottom-active { + background-image: url(images/tab/tab-default-bottom-active-bg.gif); +} + +/* line 607, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled { + border-color: #bbd2ef; + cursor: default; +} +/* line 620, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-inner { + color: #c3b3b3; +} +/* line 639, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 644, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-glyph { + color: #c3b3b3; + opacity: 0.3; + filter: none; +} +/* line 658, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-disabled .x-tab-glyph { + color: #d8dae4; +} + +/* line 667, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled, +.x-tab-default-left-disabled, +.x-tab-default-right-disabled { + border-color: #bbd2ef #bbd2ef #99bce8; +} + +/* line 671, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled { + border-color: #99bce8 #bbd2ef #bbd2ef #bbd2ef; +} + +/* line 678, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled, +.x-tab-default-left-disabled, +.x-tab-default-right-disabled { + background-image: none; + background-color: #e1ecfa; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe)); + background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe); + background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe); + background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe); + background-image: linear-gradient(top, #e1ecfa, #ecf4fe); +} +/* line 682, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-top-disabled, .x-nlg +.x-tab-default-left-disabled, .x-nlg +.x-tab-default-right-disabled { + background-image: url(images/tab/tab-default-top-disabled-bg.gif); +} + +/* line 687, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled { + background-image: none; + background-color: #e1ecfa; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe)); + background-image: -webkit-linear-gradient(bottom, #e1ecfa, #ecf4fe); + background-image: -moz-linear-gradient(bottom, #e1ecfa, #ecf4fe); + background-image: -o-linear-gradient(bottom, #e1ecfa, #ecf4fe); + background-image: linear-gradient(bottom, #e1ecfa, #ecf4fe); +} +/* line 691, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-bottom-disabled { + background-image: url(images/tab/tab-default-bottom-disabled-bg.gif); +} + +/* line 699, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default { + background-image: none; +} + +/* line 710, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-tl, +.x-tab-default-top-over .x-frame-bl, +.x-tab-default-top-over .x-frame-tr, +.x-tab-default-top-over .x-frame-br, +.x-tab-default-top-over .x-frame-tc, +.x-tab-default-top-over .x-frame-bc, +.x-tab-default-left-over .x-frame-tl, +.x-tab-default-left-over .x-frame-bl, +.x-tab-default-left-over .x-frame-tr, +.x-tab-default-left-over .x-frame-br, +.x-tab-default-left-over .x-frame-tc, +.x-tab-default-left-over .x-frame-bc, +.x-tab-default-right-over .x-frame-tl, +.x-tab-default-right-over .x-frame-bl, +.x-tab-default-right-over .x-frame-tr, +.x-tab-default-right-over .x-frame-br, +.x-tab-default-right-over .x-frame-tc, +.x-tab-default-right-over .x-frame-bc { + background-image: url(images/tab/tab-default-top-over-corners.gif); +} +/* line 714, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-ml, +.x-tab-default-top-over .x-frame-mr, +.x-tab-default-left-over .x-frame-ml, +.x-tab-default-left-over .x-frame-mr, +.x-tab-default-right-over .x-frame-ml, +.x-tab-default-right-over .x-frame-mr { + background-image: url(images/tab/tab-default-top-over-sides.gif); +} +/* line 717, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-mc, +.x-tab-default-left-over .x-frame-mc, +.x-tab-default-right-over .x-frame-mc { + background-color: #e8f2ff; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-top-over-fbg.gif); +} + +/* line 732, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-tl, +.x-tab-default-bottom-over .x-frame-bl, +.x-tab-default-bottom-over .x-frame-tr, +.x-tab-default-bottom-over .x-frame-br, +.x-tab-default-bottom-over .x-frame-tc, +.x-tab-default-bottom-over .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-over-corners.gif); +} +/* line 736, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-ml, +.x-tab-default-bottom-over .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-over-sides.gif); +} +/* line 739, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-mc { + background-color: #e8f2ff; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-bottom-over-fbg.gif); +} + +/* line 756, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-tl, +.x-tab-default-top-active .x-frame-bl, +.x-tab-default-top-active .x-frame-tr, +.x-tab-default-top-active .x-frame-br, +.x-tab-default-top-active .x-frame-tc, +.x-tab-default-top-active .x-frame-bc, +.x-tab-default-left-active .x-frame-tl, +.x-tab-default-left-active .x-frame-bl, +.x-tab-default-left-active .x-frame-tr, +.x-tab-default-left-active .x-frame-br, +.x-tab-default-left-active .x-frame-tc, +.x-tab-default-left-active .x-frame-bc, +.x-tab-default-right-active .x-frame-tl, +.x-tab-default-right-active .x-frame-bl, +.x-tab-default-right-active .x-frame-tr, +.x-tab-default-right-active .x-frame-br, +.x-tab-default-right-active .x-frame-tc, +.x-tab-default-right-active .x-frame-bc { + background-image: url(images/tab/tab-default-top-active-corners.gif); +} +/* line 760, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-ml, +.x-tab-default-top-active .x-frame-mr, +.x-tab-default-left-active .x-frame-ml, +.x-tab-default-left-active .x-frame-mr, +.x-tab-default-right-active .x-frame-ml, +.x-tab-default-right-active .x-frame-mr { + background-image: url(images/tab/tab-default-top-active-sides.gif); +} +/* line 763, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-mc, +.x-tab-default-left-active .x-frame-mc, +.x-tab-default-right-active .x-frame-mc { + background-color: #deecfd; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-top-active-fbg.gif); +} + +/* line 778, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-tl, +.x-tab-default-bottom-active .x-frame-bl, +.x-tab-default-bottom-active .x-frame-tr, +.x-tab-default-bottom-active .x-frame-br, +.x-tab-default-bottom-active .x-frame-tc, +.x-tab-default-bottom-active .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-active-corners.gif); +} +/* line 782, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-ml, +.x-tab-default-bottom-active .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-active-sides.gif); +} +/* line 785, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-mc { + background-color: #deecfd; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-bottom-active-fbg.gif); +} + +/* line 802, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-tl, +.x-tab-default-top-disabled .x-frame-bl, +.x-tab-default-top-disabled .x-frame-tr, +.x-tab-default-top-disabled .x-frame-br, +.x-tab-default-top-disabled .x-frame-tc, +.x-tab-default-top-disabled .x-frame-bc, +.x-tab-default-left-disabled .x-frame-tl, +.x-tab-default-left-disabled .x-frame-bl, +.x-tab-default-left-disabled .x-frame-tr, +.x-tab-default-left-disabled .x-frame-br, +.x-tab-default-left-disabled .x-frame-tc, +.x-tab-default-left-disabled .x-frame-bc, +.x-tab-default-right-disabled .x-frame-tl, +.x-tab-default-right-disabled .x-frame-bl, +.x-tab-default-right-disabled .x-frame-tr, +.x-tab-default-right-disabled .x-frame-br, +.x-tab-default-right-disabled .x-frame-tc, +.x-tab-default-right-disabled .x-frame-bc { + background-image: url(images/tab/tab-default-top-disabled-corners.gif); +} +/* line 806, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-ml, +.x-tab-default-top-disabled .x-frame-mr, +.x-tab-default-left-disabled .x-frame-ml, +.x-tab-default-left-disabled .x-frame-mr, +.x-tab-default-right-disabled .x-frame-ml, +.x-tab-default-right-disabled .x-frame-mr { + background-image: url(images/tab/tab-default-top-disabled-sides.gif); +} +/* line 809, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-mc, +.x-tab-default-left-disabled .x-frame-mc, +.x-tab-default-right-disabled .x-frame-mc { + background-color: #e1ecfa; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-top-disabled-fbg.gif); +} + +/* line 824, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-tl, +.x-tab-default-bottom-disabled .x-frame-bl, +.x-tab-default-bottom-disabled .x-frame-tr, +.x-tab-default-bottom-disabled .x-frame-br, +.x-tab-default-bottom-disabled .x-frame-tc, +.x-tab-default-bottom-disabled .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-disabled-corners.gif); +} +/* line 828, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-ml, +.x-tab-default-bottom-disabled .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-disabled-sides.gif); +} +/* line 831, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-mc { + background-color: #e1ecfa; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-bottom-disabled-fbg.gif); +} + +/* line 850, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default-top, +.x-nbr .x-tab-default-left, +.x-nbr .x-tab-default-right { + border-bottom-width: 1px !important; +} +/* line 853, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default-bottom { + border-top-width: 1px !important; +} + +/* line 861, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn { + width: 11px; + height: 11px; + background-image: url(images/tab/tab-default-close.gif); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 870, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn-over { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 880, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn { + top: 2px; + right: 2px; +} + +/* line 924, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-close-btn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 939, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-closable .x-tab-wrap { + padding-right: 14px; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-over:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-top-over-bg.gif), corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif), frame-bg:url(images/tab/tab-default-top-over-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-over:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-bottom-over-bg.gif), corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif), frame-bg:url(images/tab/tab-default-bottom-over-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-active:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-top-active-bg.gif), corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif), frame-bg:url(images/tab/tab-default-top-active-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-active:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-bottom-active-bg.gif), corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif), frame-bg:url(images/tab/tab-default-bottom-active-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-disabled:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-top-disabled-bg.gif), corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif), frame-bg:url(images/tab/tab-default-top-disabled-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-disabled:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-bottom-disabled-bg.gif), corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif), frame-bg:url(images/tab/tab-default-bottom-disabled-fbg.gif)"; +} + +/**/ +/* */ +/* line 94, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default { + border-style: solid; + border-color: #99bce8; +} + +/* line 100, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top { + padding: 1px 0 0; + border-width: 1px 1px 0; +} + +/* line 107, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom { + padding: 0 0 1px 0; + border-width: 0 1px 1px 1px; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left { + padding: 0 0 0 1px; + border-width: 1px 0 1px 1px; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right { + padding: 0 1px 0 0; + border-width: 1px 1px 1px 0; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-horizontal { + height: 25px; +} +/* line 153, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-default-horizontal { + height: 23px; +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-vertical { + width: 25px; +} +/* line 165, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-default-vertical { + width: 23px; +} + +/* line 172, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-top { + padding-bottom: 2px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-bottom { + padding-top: 2px; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-left { + padding-right: 2px; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-right { + padding-left: 2px; +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default { + border-style: solid; + border-color: #99bce8; + background-color: #deecfd; +} + +/* line 210, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-strip-default-horizontal { + height: 2px; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-strip-default-vertical { + width: 2px; +} + +/* line 224, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-top { + border-width: 1px 0 0 0; + height: 3px; +} +/* line 227, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-top { + border-width: 1px 1px 0; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-bottom { + border-width: 0 0 1px 0; + height: 3px; +} +/* line 235, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-bottom { + border-width: 0 1px 1px 1px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-left { + border-width: 0 0 0 1px; + width: 3px; +} +/* line 243, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-left { + border-width: 1px 0 1px 1px; +} + +/* line 257, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-right { + border-width: 0 1px 0 0; + width: 3px; +} +/* line 260, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-right { + border-width: 1px 1px 1px 0; +} + +/* line 274, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default { + background-color: #cbdbef; +} + +/* line 279, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top { + background-image: none; + background-color: #cbdbef; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef)); + background-image: -webkit-linear-gradient(top, #dde8f5, #cbdbef); + background-image: -moz-linear-gradient(top, #dde8f5, #cbdbef); + background-image: -o-linear-gradient(top, #dde8f5, #cbdbef); + background-image: linear-gradient(top, #dde8f5, #cbdbef); +} +/* line 283, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-top { + background: url(images/tab-bar/tab-bar-default-top-bg.gif); +} + +/* line 289, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom { + background-image: none; + background-color: #cbdbef; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef)); + background-image: -webkit-linear-gradient(bottom, #dde8f5, #cbdbef); + background-image: -moz-linear-gradient(bottom, #dde8f5, #cbdbef); + background-image: -o-linear-gradient(bottom, #dde8f5, #cbdbef); + background-image: linear-gradient(bottom, #dde8f5, #cbdbef); +} +/* line 293, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-bottom { + background: url(images/tab-bar/tab-bar-default-bottom-bg.gif) bottom 0; +} + +/* line 299, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left { + background-image: none; + background-color: #cbdbef; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef)); + background-image: -webkit-linear-gradient(left, #dde8f5, #cbdbef); + background-image: -moz-linear-gradient(left, #dde8f5, #cbdbef); + background-image: -o-linear-gradient(left, #dde8f5, #cbdbef); + background-image: linear-gradient(left, #dde8f5, #cbdbef); +} +/* line 303, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-left { + background: url(images/tab-bar/tab-bar-default-left-bg.gif); +} + +/* line 309, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right { + background-image: none; + background-color: #cbdbef; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef)); + background-image: -webkit-linear-gradient(right, #dde8f5, #cbdbef); + background-image: -moz-linear-gradient(right, #dde8f5, #cbdbef); + background-image: -o-linear-gradient(right, #dde8f5, #cbdbef); + background-image: linear-gradient(right, #dde8f5, #cbdbef); +} +/* line 313, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-right { + background: url(images/tab-bar/tab-bar-default-right-bg.gif) 0 right; +} + +/* line 323, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller { + cursor: pointer; +} +/* line 363, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-left, +.x-tab-bar-default .x-tabbar-scroll-right { + height: 20px; + width: 18px; +} +/* line 369, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-top, +.x-tab-bar-default .x-tabbar-scroll-bottom { + width: 20px; + height: 18px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-box-scroller { + margin-top: 1px; +} +/* line 381, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-box-scroller { + margin-left: 1px; +} + +/* line 456, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-left-top.gif); +} +/* line 459, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-right-top.gif); +} + +/* line 476, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-left-bottom.gif); +} +/* line 479, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-right-bottom.gif); +} + +/* line 496, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-left.gif); +} +/* line 499, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-left.gif); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-right.gif); +} +/* line 519, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-right.gif); +} + +/* line 539, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-left-hover, +.x-tab-bar-default .x-tabbar-scroll-right-hover { + background-position: -18px 0; +} +/* line 544, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-top-hover, +.x-tab-bar-default .x-tabbar-scroll-bottom-hover { + background-position: 0 -18px; +} +/* line 549, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + cursor: default; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-top:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-top-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-bottom:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-bottom-bg.gif), stretch:top"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-left:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-left-bg.gif), stretch:right"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-right:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-right-bg.gif), stretch:left"; +} + +/**/ +/* */ +/* line 998, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain { + border-width: 0; + padding: 0; + height: 23px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox { + border-color: #c5c5c5; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-row-checker, +.x-column-header-checkbox .x-column-header-text { + height: 13px; + width: 13px; + background-image: url(images/form/checkbox.gif); + line-height: 13px; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox .x-column-header-inner { + padding: 5px 5px 4px 5px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-cell-row-checker .x-grid-cell-inner { + padding: 4px 5px 3px 5px; +} +/* line 23, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-row-checker .x-grid-cell-inner { + padding-top: 3px; + padding-bottom: 2px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-hd-checker-on .x-column-header-text, +.x-grid-row-selected .x-grid-row-checker, +.x-grid-row-checked .x-grid-row-checker { + background-position: 0 -13px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-expander { + cursor: pointer; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander { + background-image: url(images/tree/arrows.gif); +} +/* line 11, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander-over .x-tree-expander { + background-position: -32px center; +} +/* line 15, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander { + background-position: -16px center; +} +/* line 19, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander { + background-position: -48px center; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow { + background-image: url(images/tree/elbow.gif); +} +/* line 48, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-end { + background-image: url(images/tree/elbow-end.gif); +} +/* line 52, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-plus { + background-image: url(images/tree/elbow-plus.gif); +} +/* line 56, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-plus.gif); +} +/* line 60, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus { + background-image: url(images/tree/elbow-minus.gif); +} +/* line 64, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-minus.gif); +} +/* line 68, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-line { + background-image: url(images/tree/elbow-line.gif); +} + +/* line 104, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-tree-expander { + background-image: url(images/tree/elbow-plus-nl.gif); +} +/* line 108, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-grid-tree-node-expanded .x-tree-expander { + background-image: url(images/tree/elbow-minus-nl.gif); +} + +/* line 123, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon { + width: 16px; + height: 20px; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-elbow-img { + width: 16px; + height: 20px; + margin-right: 0; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon, +.x-tree-elbow-img, +.x-tree-checkbox { + margin-top: -3px; + margin-bottom: -4px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon-leaf { + background-image: url(images/tree/leaf.gif); +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon-parent { + background-image: url(images/tree/folder.gif); +} + +/* line 171, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-node-expanded .x-tree-icon-parent { + background-image: url(images/tree/folder-open.gif); +} + +/* line 181, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-checkbox { + margin-right: 3px; + top: 4px; + width: 13px; + height: 13px; + background-image: url(images/form/checkbox.gif); +} + +/* line 196, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-checkbox-checked { + background-position: 0 -13px; +} + +/* line 200, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-loading .x-tree-icon { + background-image: url(images/tree/loading.gif); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-cell-inner-treecolumn { + font-size: 1px; + line-height: 0; +} + +/* line 221, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-node-text { + font-size: 11px; + line-height: 13px; + padding-left: 3px; +} + +/* line 235, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-cell-inner-treecolumn { + padding: 3px 6px 4px 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-append .x-dd-drop-icon { + background-image: url(images/tree/drop-append.gif); +} + +/* line 5, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-above .x-dd-drop-icon { + background-image: url(images/tree/drop-above.gif); +} + +/* line 9, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-below .x-dd-drop-icon { + background-image: url(images/tree/drop-below.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-between .x-dd-drop-icon { + background-image: url(images/tree/drop-between.gif); +} + +/* line 17, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-ddindicator { + height: 1px; + border-width: 1px 0px 0px; + border-style: dotted; + border-color: green; +} + +/* including package ext-theme-classic */ +/* line 2, ../../sass/src/dom/Element.scss */ +.x-box-tl { + background: transparent no-repeat 0 0; + zoom: 1; +} + +/* line 7, ../../sass/src/dom/Element.scss */ +.x-box-tc { + height: 8px; + background: transparent repeat-x 0 0; + overflow: hidden; +} + +/* line 13, ../../sass/src/dom/Element.scss */ +.x-box-tr { + background: transparent no-repeat right -8px; +} + +/* line 17, ../../sass/src/dom/Element.scss */ +.x-box-ml { + background: transparent repeat-y 0; + padding-left: 4px; + overflow: hidden; + zoom: 1; +} + +/* line 24, ../../sass/src/dom/Element.scss */ +.x-box-mc { + background: repeat-x 0 -16px; + padding: 4px 10px; +} + +/* line 29, ../../sass/src/dom/Element.scss */ +.x-box-mc h3 { + margin: 0 0 4px 0; + zoom: 1; +} + +/* line 34, ../../sass/src/dom/Element.scss */ +.x-box-mr { + background: transparent repeat-y right; + padding-right: 4px; + overflow: hidden; +} + +/* line 40, ../../sass/src/dom/Element.scss */ +.x-box-bl { + background: transparent no-repeat 0 -16px; + zoom: 1; +} + +/* line 45, ../../sass/src/dom/Element.scss */ +.x-box-bc { + background: transparent repeat-x 0 -8px; + height: 8px; + overflow: hidden; +} + +/* line 51, ../../sass/src/dom/Element.scss */ +.x-box-br { + background: transparent no-repeat right -24px; +} + +/* line 55, ../../sass/src/dom/Element.scss */ +.x-box-tl, .x-box-bl { + padding-left: 8px; + overflow: hidden; +} + +/* line 60, ../../sass/src/dom/Element.scss */ +.x-box-tr, .x-box-br { + padding-right: 8px; + overflow: hidden; +} + +/* line 65, ../../sass/src/dom/Element.scss */ +.x-box-tl { + background-image: url(images/box/corners.gif); +} + +/* line 69, ../../sass/src/dom/Element.scss */ +.x-box-tc { + background-image: url(images/box/tb.gif); +} + +/* line 73, ../../sass/src/dom/Element.scss */ +.x-box-tr { + background-image: url(images/box/corners.gif); +} + +/* line 77, ../../sass/src/dom/Element.scss */ +.x-box-ml { + background-image: url(images/box/l.gif); +} + +/* line 81, ../../sass/src/dom/Element.scss */ +.x-box-mc { + background-color: #eee; + background-image: url(images/box/tb.gif); + font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif; + color: #393939; + font-size: 15px; +} + +/* line 89, ../../sass/src/dom/Element.scss */ +.x-box-mc h3 { + font-size: 18px; + font-weight: bold; +} + +/* line 94, ../../sass/src/dom/Element.scss */ +.x-box-mr { + background-image: url(images/box/r.gif); +} + +/* line 98, ../../sass/src/dom/Element.scss */ +.x-box-bl { + background-image: url(images/box/corners.gif); +} + +/* line 102, ../../sass/src/dom/Element.scss */ +.x-box-bc { + background-image: url(images/box/tb.gif); +} + +/* line 106, ../../sass/src/dom/Element.scss */ +.x-box-br { + background-image: url(images/box/corners.gif); +} + +/* line 110, ../../sass/src/dom/Element.scss */ +.x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr { + background-image: url(images/box/corners-blue.gif); +} + +/* line 114, ../../sass/src/dom/Element.scss */ +.x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc { + background-image: url(images/box/tb-blue.gif); +} + +/* line 118, ../../sass/src/dom/Element.scss */ +.x-box-blue .x-box-mc { + background-color: #c3daf9; +} + +/* line 122, ../../sass/src/dom/Element.scss */ +.x-box-blue .x-box-mc h3 { + color: #17385b; +} + +/* line 126, ../../sass/src/dom/Element.scss */ +.x-box-blue .x-box-ml { + background-image: url(images/box/l-blue.gif); +} + +/* line 130, ../../sass/src/dom/Element.scss */ +.x-box-blue .x-box-mr { + background-image: url(images/box/r-blue.gif); +} + +/* line 2, ../../sass/src/window/MessageBox.scss */ +.x-message-box .x-msg-box-wait { + background-image: url(images/shared/blue-loading.gif); +} + +/* line 1, ../../sass/src/form/field/Trigger.scss */ +.x-form-trigger { + height: 22px; +} +/* line 5, ../../sass/src/form/field/Trigger.scss */ +.x-content-box .x-form-trigger { + height: 21px; +} + +/* line 12, ../../sass/src/form/field/Trigger.scss */ +.x-field-toolbar .x-form-trigger { + height: 20px; +} +/* line 16, ../../sass/src/form/field/Trigger.scss */ +.x-content-box .x-field-toolbar .x-form-trigger { + height: 19px; +} + +/* line 4, ../../sass/src/form/field/Spinner.scss */ +.x-content-box div.x-form-spinner-up, +.x-content-box div.x-form-spinner-down { + height: 10px; +} +/* line 10, ../../sass/src/form/field/Spinner.scss */ +.x-content-box .x-toolbar-item div.x-form-spinner-up, +.x-content-box .x-toolbar-item div.x-form-spinner-down { + height: 9px; +} + +/* line 2, ../../sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-wrap .x-toolbar { + border-left-color: #b5b8c8; + border-top-color: #b5b8c8; + border-right-color: #b5b8c8; +} + +/* line 9, ../../sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-input { + border: 1px solid #b5b8c8; + border-top-width: 0; +} + +/* line 1, ../../sass/src/grid/column/Column.scss */ +.x-column-header-trigger { + background-color: #c5c5c5; + background-image: url(images/grid/grid3-hd-btn.gif); +} + +/* line 6, ../../sass/src/grid/plugin/Editing.scss */ +.x-content-box .x-grid-editor .x-form-trigger { + height: 19px; +} +/* line 13, ../../sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-spinner-up, .x-grid-editor .x-form-spinner-down { + background-image: url(images/form/spinner-small.gif); +} +/* line 16, ../../sass/src/grid/plugin/Editing.scss */ +.x-content-box .x-grid-editor .x-form-spinner-up, .x-content-box .x-grid-editor .x-form-spinner-down { + height: 9px; +} + +/* line 1, ../../sass/src/layout/container/Accordion.scss */ +.x-accordion-hd { + border-width: 1px 0 !important; + -webkit-box-shadow: inset 0 0 0 0 #d9e7f8; + -moz-box-shadow: inset 0 0 0 0 #d9e7f8; + box-shadow: inset 0 0 0 0 #d9e7f8; +} + +/* line 6, ../../sass/src/layout/container/Accordion.scss */ +.x-accordion-hd-sibling-expanded { + -webkit-box-shadow: inset 0 1px 0 0 #f3f7fb; + -moz-box-shadow: inset 0 1px 0 0 #f3f7fb; + box-shadow: inset 0 1px 0 0 #f3f7fb; +} + +/* line 5, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east, +.x-resizable-over .x-resizable-handle-west, +.x-resizable-pinned .x-resizable-handle-east, +.x-resizable-pinned .x-resizable-handle-west { + background-position: left; +} +/* line 10, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south, +.x-resizable-over .x-resizable-handle-north, +.x-resizable-pinned .x-resizable-handle-south, +.x-resizable-pinned .x-resizable-handle-north { + background-position: top; +} +/* line 14, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast, +.x-resizable-pinned .x-resizable-handle-southeast { + background-position: top left; +} +/* line 18, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest, +.x-resizable-pinned .x-resizable-handle-northwest { + background-position: bottom right; +} +/* line 22, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast, +.x-resizable-pinned .x-resizable-handle-northeast { + background-position: bottom left; +} +/* line 26, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest, +.x-resizable-pinned .x-resizable-handle-southwest { + background-position: top right; +} + +/* line 6, ../../sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-horz, +.x-ie6 .x-slider-horz .x-slider-end, +.x-ie6 .x-slider-horz .x-slider-inner { + background-image: url(images/slider/slider-bg.gif); +} +/* line 10, ../../sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-horz .x-slider-thumb { + background-image: url(images/slider/slider-thumb.gif); +} +/* line 16, ../../sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-vert, +.x-ie6 .x-slider-vert .x-slider-end, +.x-ie6 .x-slider-vert .x-slider-inner { + background-image: url(images/slider/slider-v-bg.gif); +} +/* line 20, ../../sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-vert .x-slider-thumb { + background-image: url(images/slider/slider-v-thumb.gif); +} + +/* line 1, ../../sass/src/tab/Panel.scss */ +.x-tab-icon-el { + top: -1px; +} + +/* line 6, ../../sass/src/tab/Panel.scss */ +.x-tab-noicon .x-tab-icon { + display: none; +} diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/ext-theme-classic-all-rtl-debug.css b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/ext-theme-classic-all-rtl-debug.css new file mode 100644 index 0000000..68fc9c0 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/ext-theme-classic-all-rtl-debug.css @@ -0,0 +1,20927 @@ +/* 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. + */ +/* including package ext-theme-neutral */ +/* including package ext-theme-classic */ +/* including package ext-theme-classic */ +/* including package ext-theme-neutral */ +/** + * @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 {string} $font-size + * The default font-family 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 + */ +/** + * @class Ext.FocusManager + */ +/** + * @var {color} + * The border-color of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-style of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-width of the focusFrame. See {@link #method-enable}. + */ +/** + * @class Ext.LoadMask + */ +/** + * @var {number} + * Opacity of the LoadMask + */ +/** + * @var {color} + * The background-color of the LoadMask + */ +/** + * @var {string} + * The type of cursor to dislay when the cursor is over the LoadMask + */ +/** + * @var {number/list} + * The padding to apply to the LoadMask's message element + */ +/** + * @var {string} + * The border-style of the LoadMask's message element + */ +/** + * @var {color} + * The border-color of the LoadMask's message element + */ +/** + * @var {number} + * The border-width of the LoadMask's message element + */ +/** + * @var {color} + * The background-color of the LoadMask's message element + */ +/** + * @var {string/list} + * The background-gradient of the LoadMask's message element. Can be either the name + * of a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the message inner element + */ +/** + * @var {string} + * The icon to display in the message inner element + */ +/** + * @var {list} + * The background-position of the icon + */ +/** + * @var {string} + * The border-style of the message inner element + */ +/** + * @var {color} + * The border-color of the message inner element + */ +/** + * @var {number} + * The border-width of the message inner element + */ +/** + * @var {color} + * The background-color of the message inner element + */ +/** + * @var {color} + * The text color of the message inner element + */ +/** + * @var {number} + * The font-size of the message inner element + */ +/** + * @var {string} + * The font-weight of the message inner element + */ +/** + * @var {string} + * The font-family of the message inner element + */ +/** + * @var {number/list} + * The padding of the message element + */ +/** + * @var {number} + * The border-radius of the message element + */ +/** + * @class Ext.ProgressBar + */ +/** + * @var {number} + * The height of the ProgressBar + */ +/** + * @var {color} + * The border-color of the ProgressBar + */ +/** + * @var {number} + * The border-width of the ProgressBar + */ +/** + * @var {number} + * The border-radius of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar's moving element + */ +/** + * @var {string/list} + * The background-gradient of the ProgressBar's moving element. Can be either the name of + * a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The color of the ProgressBar's text when in front of the ProgressBar's moving element + */ +/** + * @var {color} + * The color of the ProgressBar's text when the ProgressBar's 'moving element is not under it + */ +/** + * @var {string} + * The text-align of the ProgressBar's text + */ +/** + * @var {number} + * The font-size of the ProgressBar's text + */ +/** + * @var {string} + * The font-weight of the ProgressBar's text + */ +/** + * @var {boolean} + * True to include the "default" ProgressBar UI + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a small {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a medium {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a large {@link #scale} button + */ +/** + * @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 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 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 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 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 disabled + */ +/** + * @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 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 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 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 disabled + */ +/** + * @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-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 buton 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-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 + */ +/** + * @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 {number/list} + * The margin 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 {number/list} + * The margin of Toolbar text + */ +/** + * @var {color} + * The text-color of Toolbar text + */ +/** + * @var {number/list} + * The padding of Toolbar text + */ +/** + * @var {number} + * The line-height of Toolbar text + */ +/** + * @var {number} + * The width of Toolbar scrollers + */ +/** + * @var {number} + * The height of Toolbar scrollers + */ +/** + * @var {color} + * The border-color of Toolbar scrollers + */ +/** + * @var {number} + * The border-width of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of disabled Toolbar scrollers + */ +/** + * @var {number} + * The opacity of disabled Toolbar scrollers + */ +/** + * @var {string} + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + */ +/** + * @var {boolean} + * True to include the "default" toolbar UI + */ +/** + * @class Ext.panel.Panel + */ +/** + * @var {number} + * The default border-width of Panels + */ +/** + * @var {color} + * The base color of Panels + */ +/** + * @var {color} + * The default border-color of Panels + */ +/** + * @var {$border-width-threshold} + * 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 {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 {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 {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 + */ +/** + * @class Ext.tip.Tip + */ +/** + * @var {color} + * The background-color of the Tip + */ +/** + * @var {string/list} + * The background-gradient of the Tip. Can be either the name of a predefined gradient or a + * list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The text color of the Tip body + */ +/** + * @var {number} + * The font-size of the Tip body + */ +/** + * @var {string} + * The font-weight of the Tip body + */ +/** + * @var {number/list} + * The padding of the Tip body + */ +/** + * @var {color} + * The text color of any anchor tags inside the Tip body + */ +/** + * @var {color} + * The text color of the Tip header + */ +/** + * @var {number} + * The font-size of the Tip header + */ +/** + * @var {string} + * The font-weight of the Tip header + */ +/** + * @var {number/list} + * The padding of the Tip header's body element + */ +/** + * @var {color} + * The border-color of the Tip + */ +/** + * @var {number} + * The border-width of the Tip + */ +/** + * @var {number} + * The border-radius of the Tip + */ +/** + * @var {color} + * The inner border-color of the form field error Tip + */ +/** + * @var {number} + * The inner border-width of the form field error Tip + */ +/** + * @var {color} + * The border-color of the form field error Tip + */ +/** + * @var {number} + * The border-radius of the form field error Tip + */ +/** + * @var {number} + * The border-width of the form field error Tip + */ +/** + * @var {color} + * The background-color of the form field error Tip + */ +/** + * @var {number/list} + * The padding of the form field error Tip's body element + */ +/** + * @var {color} + * The text color of the form field error Tip's body element + */ +/** + * @var {number} + * The font-size of the form field error Tip's body element + */ +/** + * @var {string} + * The font-weight of the form field error Tip's body element + */ +/** + * @var {color} + * The color of anchor tags in the form field error Tip's body element + */ +/** + * @var {number} + * The space between {@link Ext.panel.Tool Tools} in the header + */ +/** + * @var {string} + * The sprite to use for the header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" tip UI + */ +/** + * @var {boolean} + * True to include the "form-invalid" tip UI + */ +/** + * @class Ext.container.ButtonGroup + */ +/** + * @var {color} + * The background-color of the ButtonGroup + */ +/** + * @var {color} + * The border-color of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of the ButtonGroup + */ +/** + * @var {number/list} + * The body padding of the ButtonGroup + */ +/** + * @var {number/list} + * The inner border-width of the ButtonGroup + */ +/** + * @var {color} + * The inner border-color of the ButtonGroup + */ +/** + * @var {number/list} + * The margin of the header element. Used to add space around the header. + */ +/** + * @var {number} + * The font-size of the header + */ +/** + * @var {number} + * The font-weight of the header + */ +/** + * @var {number} + * The font-family of the header + */ +/** + * @var {number} + * The line-height of the header + */ +/** + * @var {number} + * The text color of the header + */ +/** + * @var {number} + * The padding of the header + */ +/** + * @var {number} + * The background-color of the header + */ +/** + * @var {number} + * The border-spacing to use on the table layout element + */ +/** + * @var {number} + * The background-color of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of framed ButtonGroups + */ +/** + * @var {string} + * Sprite image to use for header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" button group UI + */ +/** + * @var {boolean} + * True to include the "default-framed" button group UI + */ +/** + * @class Ext.window.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 + */ +/** + * @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 {color} + * The text color of toolbar field labels + */ +/** + * @var {string} + * The font-weight of toolbar field labels + */ +/** + * @var {number} + * The font-size of toolbar field labels + */ +/** + * @var {string} + * The font-family of toolbar field labels + */ +/** + * @var {number} + * The line-height of toolbar field labels + */ +/** + * @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 {measurement} $form-item-margin-bottom + * The bottom margin to apply to form items when in auto, anchor, vbox, or table layout + */ +/** + * @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 {font} $form-field-font + * Font 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 {font} $form-toolbar-field-font + * Font 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. + */ +/** + * @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 {number} $form-field-disabled-opacity + */ +/** + * @class Ext.form.field.TextArea + */ +/** + * @var {number/string} + * The line-height to use for the TextArea's text + */ +/** + * @class Ext.form.field.Display + */ +/** + * @var {color} + * The text color of display fields + */ +/** + * @var {string} + * The font-weight of display fields + */ +/** + * @var {number} + * The font-size of display fields + */ +/** + * @var {string} + * The font-family of display fields + */ +/** + * @var {number} + * The line-height of display fields + */ +/** + * @var {string} + * The font-weight of toolbar display fields + */ +/** + * @var {number} + * The font-size of toolbar display fields + */ +/** + * @var {string} + * The font-family of toolbar display fields + */ +/** + * @var {number} + * The line-height of toolbar display fields + */ +/** + * @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 + */ +/** + * @class Ext.form.field.Checkbox + */ +/** + * @var {number} + * The size of the checkbox + */ +/** + * @var {number} + * The space between the boxLabel and the checkbox. + */ +/** + * @class Ext.form.CheckboxGroup + */ +/** + * @var {number/list} + * The padding of the CheckboxGroup body element + */ +/** + * @var {color} + * The text color of the CheckboxGroup label + */ +/** + * @var {number} + * The padding of the CheckboxGroup label + */ +/** + * @var {number} + * The margin of the CheckboxGroup label + */ +/** + * @var {number} + * The border-width of the CheckboxGroup label + */ +/** + * @var {number} + * The border-style of the CheckboxGroup label + */ +/** + * @var {number} + * The border-color of the CheckboxGroup label + */ +/** + * @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/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/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 {number/list} + * The margin to apply to the FieldSet's checkbox (for FieldSets that use + * {@link #checkboxToggle}) + */ +/** + * @var {number} + * The size of the FieldSet's collapse tool + */ +/** + * @var {string} $fieldset-collapse-tool-background-image + * The background-image to use for the collapse tool. If null the default tool + * sprite will be used. Defaults to null. + */ +/** + * @class Ext.form.field.Radio + */ +/** + * @var {number} + * The size of the radio button + */ +/** + * @class Ext.form.field.Trigger + */ +/** + * @var {number} + * The width of the Trigger field's trigger element + */ +/** + * @var {number/list} + * The width of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border + */ +/** + * @var {string} + * The style of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border when hovered + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused and the trigger is hovered + */ +/** + * @class Ext.form.field.Spinner + */ +/** + * @var {number} + * The height of the Spinner trigger buttons + */ +/** + * @var {number} + * The height of the Spinner trigger buttons when the Spinner is used on a + * {@link Ext.toolbar.Toolbar Toolbar} + */ +/** + * @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 {number/list} + * The padding of BoundList items + */ +/** + * @var {number} + * The border-width of BoundList items + */ +/** + * @var {string} + * The border-style of BoundList items + */ +/** + * @var {color} + * The border-color of BoundList items + */ +/** + * @var {color} + * The border-color of hovered BoundList items + */ +/** + * @var {color} + * The border-color of selected BoundList items + */ +/** + * @var {color} + * The background-color of hovered BoundList items + */ +/** + * @var {color} + * The background-color of selected BoundList items + */ +/** + * @class Ext.picker.Date + */ +/** + * @var {number} + * The border-width of the DatePicker + */ +/** + * @var {string} + * The border-style of the DatePicker + */ +/** + * @var {color} + * The background-color of the DatePicker + */ +/** + * @var {string} + * The background-image of the DatePicker next arrow + */ +/** + * @var {string} + * The background-image of the DatePicker previous arrow + */ +/** + * @var {number} + * The width of DatePicker arrows + */ +/** + * @var {number} + * The height of DatePicker arrows + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a DatePicker arrow + */ +/** + * @var {number} + * The opacity of the DatePicker arrows + */ +/** + * @var {number} + * The opacity of the DatePicker arrows when hovered + */ +/** + * @var {string/list} + * The Date Picker header background gradient. Can be either the name of a predefined gradient + * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the Date Picker header + */ +/** + * @var {color} + * The color of the Date Picker month button + */ +/** + * @var {number} + * The width of the arrow on the Date Picker month button + */ +/** + * @var {string} + * The background-image of the arrow on the Date Picker month button + */ +/** + * @var {boolean} + * True to render the month button as transparent + */ +/** + * @var {string} + * The text-align of the Date Picker header + */ +/** + * @var {number} + * The height of Date Picker items + */ +/** + * @var {number} + * The width of Date Picker items + */ +/** + * @var {number/list} + * The padding of Date Picker items + */ +/** + * @var {string} + * The font-family of Date Picker items + */ +/** + * @var {number} + * The font-size of Date Picker items + */ +/** + * @var {string} + * The font-weight of Date Picker items + */ +/** + * @var {string} + * The text-align of Date Picker items + */ +/** + * @var {color} + * The text color of Date Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Date Picker item + */ +/** + * @var {string} + * The font-family of Date Picker column headers + */ +/** + * @var {number} + * The font-size of Date Picker column headers + */ +/** + * @var {string} + * The font-weight of Date Picker column headers + */ +/** + * @var {string/list} + * The background-gradient of Date Picker column headers. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {string} + * The border-style of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker column headers + */ +/** + * @var {string} + * The text-align of Date Picker column headers + */ +/** + * @var {number} + * The height of Date Picker column headers + */ +/** + * @var {number/list} + * The padding of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker items + */ +/** + * @var {string} + * The border-style of Date Picker items + */ +/** + * @var {color} + * The border-color of Date Picker items + */ +/** + * @var {string} + * The border-style of today's date on the Date Picker + */ +/** + * @var {string} + * The border-style of the selected item + */ +/** + * @var {string} + * The font-weight of the selected item + */ +/** + * @var {color} + * The text color of the items in the previous and next months + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a disabled item + */ +/** + * @var {color} + * The text color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of the Date Picker footer + */ +/** + * @var {string/list} + * The background-gradient of the Date Picker footer. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The border-width of the Date Picker footer + */ +/** + * @var {string} + * The border-style of the Date Picker footer + */ +/** + * @var {string} + * The text-align of the Date Picker footer + */ +/** + * @var {number/list} + * The padding of the Date Picker footer + */ +/** + * @var {number} + * The space between the footer buttons + */ +/** + * @var {color} + * The border-color of the Month Picker + */ +/** + * @var {number} + * The border-width of the Month Picker + */ +/** + * @var {string} + * The border-style of the Month Picker + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The border-color of Month Picker items + */ +/** + * @var {string} + * The border-style of Month Picker items + */ +/** + * @var {string} + * The font-family of Month Picker items + */ +/** + * @var {number} + * The font-size of Month Picker items + */ +/** + * @var {string} + * The font-weight of Month Picker items + */ +/** + * @var {number/list} + * The margin of Month Picker items + */ +/** + * @var {string} + * The text-align of Month Picker items + */ +/** + * @var {number} + * The height of Month Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker item + */ +/** + * @var {color} + * The background-color of hovered Month Picker items + */ +/** + * @var {color} + * The background-color of selected Month Picker items + */ +/** + * @var {string} + * The border-style of selected Month Picker items + */ +/** + * @var {color} + * The border-color of selected Month Picker items + */ +/** + * @var {number} + * The height of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The width of the Month Picker year navigation buttons + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker year navigation button + */ +/** + * @var {number} + * The opacity of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The opacity of hovered Month Picker year navigation buttons + */ +/** + * @var {string} + * The background-image of the Month Picker next year navigation button + */ +/** + * @var {string} + * The background-image of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker previous year navigation button + */ +/** + * @var {string} + * The border-style of the Month Picker separator + */ +/** + * @var {number} + * The border-width of the Month Picker separator + */ +/** + * @var {color} + * The border-color of the Month Picker separator + */ +/** + * @var {number/list} + * The margin of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @var {number} + * The height of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @class Ext.picker.Color + */ +/** + * @var {color} + * The background-color of Color Pickers + */ +/** + * @var {color} + * The border-color of Color Pickers + */ +/** + * @var {number} + * The border-width of Color Pickers + */ +/** + * @var {string} + * The border-style of Color Pickers + */ +/** + * @var {number} + * The number of columns to display in the Color Picker + */ +/** + * @var {number} + * The number of rows to display in the Color Picker + */ +/** + * @var {number} + * The height of each Color Picker item + */ +/** + * @var {number} + * The width of each Color Picker item + */ +/** + * @var {number} + * The padding of each Color Picker item + */ +/** + * @var {string} + * The cursor to display when the mouse is over a Color Picker item + */ +/** + * @var {color} + * The border-color of Color Picker items + */ +/** + * @var {number} + * The border-width of Color Picker items + */ +/** + * @var {string} + * The border-style of Color Picker items + */ +/** + * @var {color} + * The border-color of hovered Color Picker items + */ +/** + * @var {color} + * The background-color of Color Picker items + */ +/** + * @var {color} + * The background-color of hovered Color Picker items + */ +/** + * @var {color} + * The border-color of the selected Color Picker item + */ +/** + * @var {color} + * The background-color of the selected Color Picker item + */ +/** + * @var {color} + * The inner border-color of Color Picker items + */ +/** + * @var {number} + * The inner border-width of Color Picker items + */ +/** + * @var {string} + * The inner border-style of Color Picker items + */ +/** + * @class Ext.form.field.HtmlEditor + */ +/** + * @var {number} + * The border-width of the HtmlEditor + */ +/** + * @var {color} + * The border-color of the HtmlEditor + */ +/** + * @var {color} + * The background-color of the HtmlEditor + */ +/** + * @var {number} + * The size of the HtmlEditor toolbar icons + */ +/** + * @var {number} + * The font-size of the HtmlEditor's font selection control + */ +/** + * @var {number} + * The font-family of the HtmlEditor's font selection control + */ +/** + * @class Ext.panel.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} $grid-row-cell-line-height + * 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 {color} + * The border-color of the focused row + */ +/** + * @var {string} + * The border-style of the focused row + */ +/** + * @var {color} + * The text color of the focused row + */ +/** + * @var {color} + * The background-color of the focused row + */ +/** + * @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.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 {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 + */ +/** + * @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.CheckColumn + */ +/** + * @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.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.grid.feature.RowWrap + */ +/** + * @var {color} + * The border-color of wrapped rows + */ +/** + * @var {string} + * The border-style of wrapped rows + */ +/** + * @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 + */ +/** + * @class Ext.grid.plugin.Editing + */ +/** + * The height of grid editor text fields. 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 caluclated by adding $grid-row-cell-line-height to the top and bottom values of + * $grid-cell-inner-padding. + */ +/** + * The padding of grid editor text fields. + */ +/** + * @var {number} + * The font size of the grid editor text + */ +/** + * @var {string} + * The font-weight of the grid editor text + */ +/** + * @var {string} + * The font-family of the grid editor text + */ +/** + * @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 {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 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 {string} + * The text-transform property of Accordion headers + */ +/** + * @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.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 {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. + */ +/** + * @class Ext.layout.container.Border + */ +/** + * @var {color} + * The background-color of the Border layout element + */ +/** + * @class Ext.menu.Menu + */ +/** + * @var {color} + * The background-color of the 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 {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} + * The font-size of {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The margin 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 {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 {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {list} + * The background-position of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} text + */ +/** + * @var {number/list} + * The margin of {@link Ext.menu.Separator Menu Separators} + */ +/** + * @var {number} + * The padding to the right of {@link Ext.menu.CheckItem Check Items}, to make room + * for the checkbox + */ +/** + * @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 space to the left and right of {@link Ext.menu.Item Menu Item} arrows + */ +/** + * @var {number} + * The opacity of disabled {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The height of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers when hovered + */ +/** + * @var {number} + * The opacity of Menu crollers when pressed + */ +/** + * @var {number/list} + * The padding to apply to the Menu body element + */ +/** + * @var {color} + * The color of Menu Item text + */ +/** + * @var {number/list} + * The margin non-MenuItems placed in a Menu + */ +/** + * @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} + */ +/** + * @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.slider.Multi + */ +/** + * @var {number} + * The horizontal slider thumb width + */ +/** + * @var {number} + * The horizontal slider thumb height + */ +/** + * @var {number} + * The width of the horizontal slider end caps + */ +/** + * @var {number} + * The vertical slider thumb width + */ +/** + * @var {number} + * The vertical slider thumb height + */ +/** + * @var {number} + * The height of the vertical slider end caps + */ +/** + * @class Ext.tab.Tab + */ +/** + * @var {color} + * The base color of Tabs + */ +/** + * @var {color} + * The base color of hovered Tabs + */ +/** + * @var {color} + * The base color of the active Tabs + */ +/** + * @var {color} + * The base color of disabled Tabs + */ +/** + * @var {color} + * The text color of Tabs + */ +/** + * @var {color} + * The text color of hovered Tabs + */ +/** + * @var {color} + * The text color of the active Tab + */ +/** + * @var {color} + * The text color of disabled Tabs + */ +/** + * @var {number} + * The font-size of Tabs + */ +/** + * @var {number} + * The font-size of hovered Tabs + */ +/** + * @var {number} + * The font-size of the active Tab + */ +/** + * @var {number} + * The font-size of disabled Tabs + */ +/** + * @var {string} + * The font-family of Tabs + */ +/** + * @var {string} + * The font-family of hovered Tabs + */ +/** + * @var {string} + * The font-family of the active Tab + */ +/** + * @var {string} + * The font-family of disabled Tabs + */ +/** + * @var {string} + * The font-weight of Tabs + */ +/** + * @var {string} + * The font-weight of hovered Tabs + */ +/** + * @var {string} + * The font-weight of the active Tab + */ +/** + * @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 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 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} + * The border-width of Tabs + */ +/** + * @var {number/list} + * The inner border-width of Tabs + */ +/** + * @var {color} + * The inner border-color of Tabs + */ +/** + * @var {color} + * The border-color of Tabs + */ +/** + * @var {color} + * The border-color of hovered Tabs + */ +/** + * @var {color} + * The border-color of the active Tab + */ +/** + * @var {color} + * The border-color of disabled Tabs + */ +/** + * @var {number/list} + * The padding of Tabs + */ +/** + * @var {number/list} + * The padding of the Tab's text element + */ +/** + * @var {number} + * The line-height of Tabs + */ +/** + * @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 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 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 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 {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a left-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `left`. + */ +/** + * @var {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a right-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `right`. + */ +/** + * @var {boolean} + * True to include the "default" tab UI + */ +/** + * @class Ext.tab.Bar + */ +/** + * @var {number/list} + * The padding of the Tab Bar + */ +/** + * @var {number/list} + * The padding of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} Tab Bar strip + */ +/** + * @var {number} + * The width of the Tab Bar scrollers + */ +/** + * @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 change the x postition of the background image on hover to allow for a + * horizonatlly alined background image sprite + */ +/** + * @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.selection.CheckboxModel + */ +/** + * @var {number} + * The horizontal space before the checkbox + */ +/** + * @var {number} + * The horizontal space after the checkbox + */ +/** + * @class Ext.tree.Panel + */ +/** + * @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 + */ +/* 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 + */ +/** + * @var {boolean} $include-content-box + * True to include rules for browsers that do not support the border-box model + * (IE6 strict and IE7 strict) + */ +/** + * @var {boolean} $include-ff + * True to include Firefox specific rules + */ +/** + * @var {boolean} $include-chrome + * True to include Chrome specific rules + */ +/** + * @var {boolean} $include-safari + * True to include Safari specific rules + */ +/** + * @var {boolean} $include-opera + * True to include Opera specific rules + */ +/** + * @var {boolean} $include-webkit + * True to include Webkit specific rules + */ +/** + * @var {measurement} $css-shadow-border-radius + * The border radius for CSS shadows + */ +/** + * @var {color} $include-shadow-images + * True to include all shadow images. + */ +/** + * @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 {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. + */ +/* including package ext-theme-base */ +/* + * 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 + */ +/* line 1, ../../../ext-theme-base/sass/src/Component.scss */ +.x-body { + margin: 0; +} + +/* line 5, ../../../ext-theme-base/sass/src/Component.scss */ +img { + border: 0; +} + +/* line 10, ../../../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 17, ../../../ext-theme-base/sass/src/Component.scss */ +.x-rtl { + direction: rtl; +} + +/* line 21, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ltr { + direction: ltr; +} + +/* line 25, ../../../ext-theme-base/sass/src/Component.scss */ +.x-clear { + overflow: hidden; + clear: both; + font-size: 0; + line-height: 0; + display: table; +} + +/* line 33, ../../../ext-theme-base/sass/src/Component.scss */ +.x-strict .x-ie7 .x-clear { + height: 0; + width: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/Component.scss */ +.x-layer { + position: absolute !important; + overflow: hidden; + zoom: 1; +} + +/* line 49, ../../../ext-theme-base/sass/src/Component.scss */ +.x-fixed-layer { + position: fixed !important; + overflow: hidden; + zoom: 1; +} + +/* line 55, ../../../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 63, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-display { + display: none !important; +} + +/* line 67, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-visibility { + visibility: hidden !important; +} + +/* line 72, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ie6 .x-item-disabled { + filter: none; +} + +/* line 78, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hidden, +.x-hide-offsets { + display: block !important; + visibility: hidden !important; + position: absolute !important; + top: -10000px !important; +} + +/* line 88, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-nosize { + height: 0 !important; + width: 0 !important; +} + +/* line 94, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-clip { + position: absolute!important; + clip: rect(0, 0, 0, 0); + clip: rect(0 0 0 0); +} + +/* line 102, ../../../ext-theme-base/sass/src/Component.scss */ +.x-masked-relative { + position: relative; +} + +/* line 108, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ie-shadow { + background-color: #777; + display: none; + position: absolute; + overflow: hidden; + zoom: 1; +} + +/* line 117, ../../../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; + cursor: default; +} + +/* line 121, ../../../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 136, ../../../ext-theme-base/sass/src/Component.scss */ +.x-list-plain { + list-style-type: none; + margin: 0; + padding: 0; +} + +/* line 143, ../../../ext-theme-base/sass/src/Component.scss */ +.x-table-plain { + border-collapse: collapse; + border-spacing: 0; + font-size: 1em; +} + +/* line 156, ../../../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 162, ../../../ext-theme-base/sass/src/Component.scss */ +.x-frame-tc, +.x-frame-bc { + background-repeat: repeat-x; +} + +/* line 166, ../../../ext-theme-base/sass/src/Component.scss */ +.x-frame-mc { + background-repeat: repeat-x; + overflow: hidden; +} + +/* line 171, ../../../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 178, ../../../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 184, ../../../ext-theme-base/sass/src/Component.scss */ +.x-item-disabled, +.x-item-disabled * { + cursor: default; +} + +/* line 3, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x-box-item { + position: absolute !important; + left: 0; + top: 0; +} + +/* line 10, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x-rtl > .x-box-item { + right: 0; + left: auto; +} + +/* line 20, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x-ie6 .x-rtl .x-box-item, +.x-quirks .x-ie .x-rtl .x-box-item { + right: 0; + left: auto; +} + +/* line 4, ../../../ext-theme-base/sass/src/Editor.scss */ +div.x-editor { + overflow: visible; +} + +/* line 1, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask { + z-index: 100; + position: absolute; + width: 100%; + height: 100%; + zoom: 1; +} + +/* line 10, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask-shim { + z-index: 100; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +/* line 20, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask-msg { + z-index: 20001; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress { + position: relative; + border-style: solid; + overflow: hidden; +} + +/* line 7, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress-bar { + overflow: hidden; + position: absolute; + width: 0; + height: 100%; +} + +/* line 14, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress-text { + overflow: hidden; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn { + display: inline-block; + position: relative; + zoom: 1; + *display: inline; + outline: 0; + cursor: pointer; + white-space: nowrap; + vertical-align: middle; + text-decoration: none; +} + +/* line 15, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-wrap { + position: relative; + display: block; +} + +/* line 20, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-button { + position: relative; + display: block; + text-decoration: none; + overflow: hidden; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner { + display: block; + white-space: nowrap; + overflow: hidden; + zoom: 1; +} + +/* line 35, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 45, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-center { + text-align: center; +} + +/* line 49, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-left { + text-align: left; +} + +/* line 54, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-rtl.x-btn-inner-left { + text-align: right; +} + +/* line 59, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-right { + text-align: right; +} + +/* line 64, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-rtl.x-btn-inner-right { + text-align: left; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-target { + position: absolute; + width: 20000px; + top: 0; + left: 0; + height: 1px; +} + +/* line 25, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-rtl.x-box-target { + left: auto; + right: 0; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-inner { + overflow: hidden; + zoom: 1; + position: relative; + left: 0; + top: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-horizontal-box-overflow-body { + float: left; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller { + position: relative; + background-repeat: no-repeat; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller-left, +.x-box-scroller-right { + float: left; + height: 100%; + z-index: 5; +} + +/* line 59, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller-top .x-box-scroller, +.x-box-scroller-bottom .x-box-scroller { + line-height: 0; + font-size: 0; + background-position: center 0; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-menu-after { + float: right; +} + +/* line 71, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-rtl.x-box-menu-after { + float: left; +} + +/* line 1, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-text { + white-space: nowrap; +} + +/* line 5, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-separator { + display: block; + font-size: 1px; + overflow: hidden; + cursor: default; + border: 0; + width: 0; + height: 0; + line-height: 0px; +} + +/* line 17, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal { + width: 2px; +} + +/* line 22, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroller { + padding-left: 0; +} + +/* line 29, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-plain { + border: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked { + position: absolute !important; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-vertical { + position: static; +} + +/* line 11, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-top { + border-bottom-width: 0 !important; +} + +/* line 15, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-bottom { + border-top-width: 0 !important; +} + +/* line 19, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-left { + border-right-width: 0 !important; +} + +/* line 23, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-right { + border-left-width: 0 !important; +} + +/* line 27, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-top { + border-top-width: 0 !important; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-right { + border-right-width: 0 !important; +} + +/* line 35, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-bottom { + border-bottom-width: 0 !important; +} + +/* line 39, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-left { + border-left-width: 0 !important; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-l { + border-left-width: 0 !important; +} + +/* line 48, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-b { + border-bottom-width: 0 !important; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-bl { + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 55, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-r { + border-right-width: 0 !important; +} + +/* line 58, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rl { + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 62, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rb { + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rbl { + border-right-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 71, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-t { + border-top-width: 0 !important; +} + +/* line 74, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tl { + border-top-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 78, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tb { + border-top-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 82, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tbl { + border-top-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 87, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tr { + border-top-width: 0 !important; + border-right-width: 0 !important; +} + +/* line 91, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trl { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 96, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trb { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 101, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trbl { + border-width: 0 !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-header-icon { + background-repeat: no-repeat; + background-position: 0 0; + vertical-align: middle; + text-align: center; +} + +/* line 8, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-header-text-container { + overflow: hidden; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +/* line 15, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-rtl.x-header-text-container { + -o-text-overflow: clip; + text-overflow: clip; +} + +/* line 4, ../../../ext-theme-base/sass/src/dd/DD.scss */ +.x-dd-drag-proxy, +.x-dd-drag-current { + z-index: 1000000!important; + pointer-events: none; +} + +/* line 2, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-repair .x-dd-drag-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 6, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-repair .x-dd-drop-icon { + display: none; +} + +/* line 11, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85); + opacity: 0.85; + padding: 5px; + padding-left: 20px; + white-space: nowrap; + color: #000; + font: normal 11px tahoma, arial, verdana, sans-serif; + border: 1px solid; + border-color: #ddd #bbb #bbb #ddd; + background-color: #fff; +} + +/* line 28, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-icon { + position: absolute; + top: 3px; + left: 3px; + display: block; + width: 16px; + height: 16px; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + z-index: 1; +} + +/* line 51, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-rtl .x-dd-drag-ghost { + padding-left: 5px; + padding-right: 20px; +} +/* line 55, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-rtl .x-dd-drop-icon { + left: auto; + right: 3px; +} + +/* line 66, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-ok .x-dd-drop-icon { + background-image: url(images/dd/drop-yes.gif); +} + +/* line 70, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-ok-add .x-dd-drop-icon { + background-image: url(images/dd/drop-add.gif); +} + +/* line 75, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-nodrop div.x-dd-drop-icon { + background-image: url(images/dd/drop-no.gif); +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel, +.x-plain { + overflow: hidden; + position: relative; +} + +/* line 7, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel { + outline: none; +} + +/* line 23, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-ie .x-panel-header, +.x-ie .x-panel-header-tl, +.x-ie .x-panel-header-tc, +.x-ie .x-panel-header-tr, +.x-ie .x-panel-header-ml, +.x-ie .x-panel-header-mc, +.x-ie .x-panel-header-mr, +.x-ie .x-panel-header-bl, +.x-ie .x-panel-header-bc, +.x-ie .x-panel-header-br { + zoom: 1; +} + +/* line 29, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-ie8 td.x-frame-mc { + vertical-align: top; +} + +/* line 35, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel-body { + overflow: hidden; + position: relative; +} + +/* line 42, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-vertical .x-frame-mc { + background-repeat: repeat-y; +} + +/* line 49, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel-header-plain, +.x-panel-body-plain { + border: 0; + padding: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip { + position: absolute; + overflow: visible; + /*pointer needs to be able to stick out*/ +} + +/* line 6, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip-body { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip-anchor { + position: absolute; + overflow: hidden; + border-style: solid; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Table.scss */ +.x-table-layout { + font-size: 1em; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group { + position: relative; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body { + position: relative; + zoom: 1; +} +/* line 9, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body .x-table-layout-cell { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/Viewport.scss */ +.x-viewport, .x-viewport body { + margin: 0; + padding: 0; + border: 0 none; + overflow: hidden; + height: 100%; + position: static; +} + +/* line 1, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window { + outline: none; + overflow: hidden; +} +/* line 5, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window .x-window-wrap { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window-body { + position: relative; + overflow: hidden; +} + +/* line 15, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window-body-plain { + background: transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label { + display: block; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label-right { + text-align: right; +} + +/* line 9, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label-top { + display: block; + zoom: 1; +} + +/* line 15, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-invalid-icon { + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-invalid-icon ul { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x-form-textarea { + overflow: auto; + resize: none; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x-safari.x-mac .x-form-textarea { + margin-bottom: -2px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Display.scss */ +.x-form-display-field-body { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb-wrap { + vertical-align: top; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb { + vertical-align: top; + overflow: hidden; + padding: 0; + border: 0; +} +/* line 10, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb::-moz-focus-inner { + padding: 0; + border: 0; +} + +/* line 16, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label { + display: inline-block; + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset { + display: block; + /* preserve margins in IE */ + position: relative; +} + +/* line 6, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header { + overflow: hidden; +} +/* line 10, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-item, +.x-fieldset-header .x-tool { + float: left; +} +/* line 14, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb-wrap { + font-size: 0; + line-height: 0; +} +/* line 19, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb { + margin: 0; +} + +/* line 27, ../../../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 33, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text { + float: left; +} + +/*misc*/ +/* line 4, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-webkit *:focus { + outline: none !important; +} + +/* line 11, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-item { + vertical-align: top; + table-layout: fixed; +} + +/* line 17, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-item-body { + position: relative; +} + +/* line 26, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-rtl.x-form-item .x-form-item-input-row { + position: relative; + right: 0; +} + +/* line 33, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-form-item td { + border-top: 1px solid transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + cursor: pointer; + overflow: hidden; + background-repeat: no-repeat; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-item-disabled .x-form-trigger { + cursor: default; +} + +/* line 10, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-trigger-noedit { + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap { + vertical-align: top; + border-collapse: separate; +} + +/* line 2, ../../../ext-theme-base/sass/src/form/field/Spinner.scss */ +.x-form-spinner-up, +.x-form-spinner-down { + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-inner { + table-layout: fixed; + width: 100%; + border-collapse: separate; +} + +/* line 11, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-cell { + padding: 0; +} + +/* line 15, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-header { + position: relative; + zoom: 1; +} + +/* line 20, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-arrow { + position: absolute; + outline: none; + font-size: 0; +} + +/* line 26, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-column-header { + padding: 0; +} + +/* line 30, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-date { + display: block; + zoom: 1; + text-decoration: none; +} + +/* line 36, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker { + position: absolute; + left: 0; + top: 0; +} + +/* line 42, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-body { + height: 100%; +} + +/* line 47, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-months, +.x-monthpicker-years { + float: left; + height: 100%; +} + +/* line 52, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-item { + float: left; +} + +/* line 56, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-item-inner { + display: block; + text-decoration: none; +} + +/* line 61, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button-ct { + float: left; + text-align: center; +} + +/* line 66, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button { + display: inline-block; + outline: none; + font-size: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-buttons { + position: absolute; + bottom: 0; + width: 100%; +} +/* line 78, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-strict .x-ie6 .x-monthpicker-buttons { + bottom: -1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/File.scss */ +.x-form-file-btn { + overflow: hidden; +} + +/* line 5, ../../../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 29, ../../../ext-theme-base/sass/src/form/field/File.scss */ +.x-rtl.x-form-file-input { + right: auto; + left: -2px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Hidden.scss */ +.x-form-item-hidden { + margin: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x-color-picker-item { + float: left; + text-decoration: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x-color-picker-item-inner { + display: block; + font-size: 1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-toolbar { + position: static !important; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x-htmleditor-iframe { + display: block; + overflow: auto; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Fit.scss */ +.x-fit-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-row, +.x-grid-data-row { + outline: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-view { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-table { + table-layout: fixed; + border-collapse: separate; +} + +/* line 16, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-td { + overflow: hidden; + border-width: 0; + vertical-align: top; +} + +/* line 22, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-cell-inner { + overflow: hidden; + white-space: nowrap; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-resize-marker { + position: absolute; + z-index: 5; + top: 0; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + position: absolute; + top: 0; + line-height: 0; + font-size: 0; + overflow: hidden; + z-index: 20000; + background: no-repeat center top transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/header/Container.scss */ +.x-grid-header-ct { + cursor: default; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header { + position: absolute; + overflow: hidden; + background-repeat: repeat-x; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-inner { + zoom: 1; + white-space: nowrap; + position: relative; + overflow: hidden; +} + +/* line 14, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-text { + white-space: nowrap; + background-repeat: no-repeat; + zoom: 1; + display: inline-block; +} + +/* line 25, ../../../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 36, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-trigger { + left: 0; + right: auto; +} + +/* line 43, ../../../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 48, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-right { + text-align: right; +} + +/* line 53, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-align-right { + text-align: left; +} + +/* line 58, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-left { + text-align: left; +} + +/* line 63, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-align-left { + text-align: right; +} + +/* line 68, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-center { + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Action.scss */ +.x-grid-cell-inner-action-col { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/CheckColumn.scss */ +.x-grid-cell-inner-checkcolumn { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/RowNumberer.scss */ +.x-row-numberer .x-column-header-inner { + text-overflow: clip; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-group, +.x-grid-group-body, +.x-grid-group-hd { + zoom: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd { + white-space: nowrap; +} + +/* line 11, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-row-body-hidden, .x-grid-group-collapsed { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x-grid-rowbody { + zoom: 1; +} + +/* line 5, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x-grid-row-body-hidden { + display: none; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x-grid-rowwrap .x-grid-table { + border: 0; +} +/* line 6, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x-grid-rowwrap .x-grid-cell { + border-bottom: 0; + background-color: transparent; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb-wrap { + text-align: center; +} + +/* line 9, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field { + margin: 0; + white-space: nowrap; + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor div.x-form-action-col-field { + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor { + position: absolute; + overflow: visible; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons { + position: absolute; + white-space: nowrap; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-expander { + font-size: 0; + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x-abs-layout-ct { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x-abs-layout-item { + position: absolute !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter { + font-size: 1px; +} + +/* line 5, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-horizontal { + cursor: e-resize; + cursor: row-resize; +} + +/* line 10, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-vertical { + cursor: e-resize; + cursor: col-resize; +} + +/* line 17, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed, +.x-splitter-horizontal-noresize, +.x-splitter-vertical-noresize { + cursor: default; +} + +/* line 21, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-active { + z-index: 4; +} + +/* line 25, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-collapse-el { + position: absolute; + background-repeat: no-repeat; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-region-slide-in { + z-index: 5; +} + +/* line 14, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-region-collapsed-placeholder { + z-index: 4; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-column { + float: left; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-rtl > .x-column { + float: right; +} + +/* line 13, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-ie6 .x-rtl .x-column, .x-quirks .x-ie .x-rtl .x-column { + float: right; +} + +/* line 21, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-ie6 .x-column { + display: inline; + /*prevent IE6 double-margin bug*/ +} + +/* line 25, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-quirks .x-ie .x-form-layout-table, .x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x-form-layout-table { + border-collapse: separate; + border-spacing: 0 2px; +} + +/* line 9, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x-ie6 .x-form-layout-table { + border-collapse: collapse; + border-spacing: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu { + outline: none; +} + +/* line 5, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item { + white-space: nowrap; + overflow: hidden; +} + +/* line 14, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-cmp .x-field-label-cell { + vertical-align: middle; +} + +/* line 22, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-icon-separator { + position: absolute; + top: 0px; + z-index: 0; + height: 100%; + overflow: hidden; +} +/* line 28, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-plain .x-menu-icon-separator { + display: none; +} + +/* line 33, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-link { + text-decoration: none; + outline: 0; + zoom: 1; +} + +/* line 40, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-text { + zoom: 1; +} + +/* line 47, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-icon, +.x-menu-item-icon-right, +.x-menu-item-arrow { + position: absolute; + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/SplitterTracker.scss */ +.x-resizable-overlay { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + display: none; + z-index: 200000; + background-color: #fff; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider { + outline: none; + zoom: 1; + position: relative; +} + +/* line 9, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-inner { + position: relative; + left: 0; + top: 0; + overflow: visible; + zoom: 1; +} +/* line 17, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-inner { + background: repeat-y 0 0; +} + +/* line 23, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-end { + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-thumb { + position: absolute; + background: no-repeat 0 0; +} +/* line 31, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb { + left: 0; +} +/* line 34, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb { + bottom: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Tab.scss */ +a.x-tab { + text-decoration: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Bar.scss */ +.x-tab-bar { + position: relative; +} + +/* line 1, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox .x-column-header-text { + display: block; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 7, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x-grid-cell-row-checker { + vertical-align: middle; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab { + display: block; + white-space: nowrap; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-active { + z-index: 3; +} + +/* line 11, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-wrap { + display: block; + position: relative; +} + +/* line 16, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-button { + zoom: 1; + display: block; + outline: none; +} + +/* line 22, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-inner { + display: block; + text-align: center; + white-space: nowrap; + text-overflow: ellipsis; + -o-text-overflow: ellipsis; + overflow: hidden; + zoom: 1; +} + +/* line 32, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 42, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar { + z-index: 1; +} + +/* line 46, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-body { + z-index: 2; + position: relative; +} + +/* line 51, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip { + position: absolute; + line-height: 0; + font-size: 0; + z-index: 1; +} + +/* line 58, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-horizontal .x-tab-bar-strip { + width: 100%; + left: 0; +} + +/* line 63, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-vertical .x-tab-bar-strip { + height: 100%; + top: 0; +} + +/* line 68, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-top { + bottom: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-bottom { + top: 0; +} + +/* line 76, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-left { + right: 0; +} + +/* line 81, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-rtl.x-tab-bar .x-tab-bar-strip-left { + right: auto; + left: 0; +} + +/* line 87, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-right { + left: 0; +} + +/* line 92, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-rtl.x-tab-bar .x-tab-bar-strip-right { + left: auto; + right: 0; +} + +/* line 98, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-plain { + background: transparent !important; +} + +/* line 102, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-icon-el { + position: absolute; + background-repeat: no-repeat; + top: 0; + left: 0; + right: auto; + bottom: 0; +} + +/* line 112, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-rtl.x-tab-icon-el { + left: auto; + right: 0; +} + +/* line 118, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-close-btn { + display: block; + position: absolute; + font-size: 0; + line-height: 0; + background: no-repeat; +} + +/* line 126, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-mc { + overflow: visible; +} + +/* line 3, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-autowidth-table .x-grid-table { + table-layout: auto; + width: auto !important; +} + +/* line 8, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-view { + overflow: hidden; +} + +/* line 13, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-elbow-img, +.x-tree-icon { + background-repeat: no-repeat; + background-position: 0 center; + vertical-align: top; +} + +/* line 19, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-checkbox { + border: 0; + padding: 0; + vertical-align: top; + position: relative; + background-color: transparent; +} + +/* line 27, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-animator-wrap { + overflow: hidden; +} + +/* line 31, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-node-text { + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-surface { + display: -moz-inline-stack; + display: inline-block; + vertical-align: middle; + *vertical-align: auto; + zoom: 1; + *display: inline; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.rvml { + behavior: url(#default#VML); +} + +/* line 10, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-surface tspan { + user-select: none; + -o-user-select: none; + -ms-user-select: none; + -moz-user-select: -moz-none; + -webkit-user-select: none; + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-sprite { + position: absolute; + left: 0; + top: 0; + width: 1px; + height: 1px; +} + +/* line 22, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-group { + position: absolute; + left: 0; + top: 0; + width: 1000px; + height: 1000px; +} + +/* line 30, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-measure-span { + position: absolute; + left: -9999em; + top: -9999em; + padding: 0; + margin: 0; + display: inline; +} + +/* line 39, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 47, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 55, ../../../ext-theme-base/sass/src/draw/Component.scss */ +svg, vml { + overflow: hidden; +} + +/* including package ext-theme-neutral */ +/* line 1, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x-body { + color: black; + font-size: 12px; + font-family: tahoma, arial, verdana, sans-serif; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x-animating-size, +.x-collapsed { + overflow: hidden!important; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/Editor.scss */ +.x-editor .x-form-item-body { + padding-bottom: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-element { + position: absolute; + top: -10px; + left: -10px; + width: 0px; + height: 0px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame { + position: absolute; + left: 0px; + top: 0px; + z-index: 100000000; + width: 0px; + height: 0px; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-top, +.x-focus-frame-bottom, +.x-focus-frame-left, +.x-focus-frame-right { + position: absolute; + top: 0px; + left: 0px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-top, +.x-focus-frame-bottom { + border-top: solid 2px #15428b; + height: 2px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-left, +.x-focus-frame-right { + border-left: solid 2px #15428b; + width: 2px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + background: #cccccc; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg { + padding: 2px; + border-style: solid; + border-width: 1px; + border-color: #99bce8; + background-image: none; + background-color: #dfe9f6; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg-inner { + padding: 0 5px; + border-style: solid; + border-width: 1px; + border-color: #a3bad9; + background-color: #eeeeee; + color: #222222; + font: normal 11px tahoma, arial, verdana, sans-serif; +} + +/* line 41, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg-text { + padding: 5px 5px 5px 20px; + background-image: url(images/grid/loading.gif); + background-repeat: no-repeat; + background-position: 0 center; +} + +/* line 52, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-rtl.x-mask-msg-text { + padding: 5px 20px 5px 5px; + background-position: right center; +} + +/** + * Creates a visual theme for an Ext.ProgressBar + * + * @param {string} $ui-label + * 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 67, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default { + background-color: #e0e8f3; + border-width: 1px; + height: 20px; + border-color: #6594cf; + /**/ + /**/ + /* */ +} +/* line 72, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-content-box .x-progress-default { + height: 18px; +} +/* line 84, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-bar-default { + background-image: none; + background-color: #73a3e0; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b2ccee), color-stop(50%, #88b1e5), color-stop(51%, #73a3e0), color-stop(100%, #5e96db)); + background-image: -webkit-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); + background-image: -moz-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); + background-image: -o-linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); + background-image: linear-gradient(top, #b2ccee, #88b1e5 50%, #73a3e0 51%, #5e96db); +} +/* line 92, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-nlg .x-progress-default .x-progress-bar-default { + background: repeat-x; + background-image: url(images/progress/progress-default-bg.gif); +} +/* line 99, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-text { + color: white; + font-weight: bold; + font-size: 11px; + text-align: center; + line-height: 18px; +} +/* line 107, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-text-back { + color: #396295; + line-height: 18px; +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-progress-default .x-progress-bar-default:after { + display: none; + content: "x-slicer:bg:url(images/progress/progress-default-bg.gif)"; +} + +/** + * Creates a visual theme for a 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-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-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-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-disabled + * The text color of the button when the button is disabled + * + * @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-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-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-disabled + * The font-family of the button when the button is disabled + * + * @param {number} $icon-size + * The size of the button icon + * + * @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=false] + * 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 + */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small { + border-color: #d1d1d1; +} + +/* line 137, ../../../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: 2px 2px 2px 2px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: white; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(48%, #f9f9f9), color-stop(52%, #e2e2e2), color-stop(100%, #e7e7e7)); + background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mc { + background-image: url(images/btn/btn-default-small-fbg.gif); + background-position: 0 top; + background-color: white; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-small { + background-image: url(images/btn/btn-default-small-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tr, +.x-btn-default-small-br, +.x-btn-default-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl, +.x-btn-default-small-bl, +.x-btn-default-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl, +.x-btn-default-small-bl, +.x-btn-default-small-tr, +.x-btn-default-small-br, +.x-btn-default-small-tc, +.x-btn-default-small-bc, +.x-btn-default-small-ml, +.x-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-ml, +.x-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-small-tl, +.x-strict .x-ie7 .x-btn-default-small-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 4px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow-right { + padding-right: 12px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-glyph { + font-size: 16px; + line-height: 16px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-small .x-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: #f7f7f7; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf)); + background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-button, +.x-btn-default-small-noicon .x-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-inner, +.x-btn-default-small-noicon .x-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-small-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-small-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 4px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-inner { + line-height: 16px; + padding-left: 20px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-rtl.x-btn-inner { + padding-left: 4px; + padding-right: 20px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 20px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-small-icon-text-left .x-btn-icon-el { + height: 16px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-inner { + line-height: 16px; + padding-right: 20px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-rtl.x-btn-inner { + padding-right: 4px; + padding-left: 20px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-small-icon-text-right .x-btn-icon-el { + height: 16px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-top .x-btn-inner { + padding-top: 20px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-top .x-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-bottom .x-btn-inner { + padding-bottom: 20px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-bottom .x-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active, +.x-btn-default-small-pressed { + border-color: #9ebae1; + background-image: none; + background-color: #b6cbe4; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5)); + background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-tl, +.x-btn-default-small-over .x-frame-bl, +.x-btn-default-small-over .x-frame-tr, +.x-btn-default-small-over .x-frame-br, +.x-btn-default-small-over .x-frame-tc, +.x-btn-default-small-over .x-frame-bc { + background-image: url(images/btn/btn-default-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-ml, +.x-btn-default-small-over .x-frame-mr { + background-image: url(images/btn/btn-default-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-tl, +.x-btn-default-small-focus .x-frame-bl, +.x-btn-default-small-focus .x-frame-tr, +.x-btn-default-small-focus .x-frame-br, +.x-btn-default-small-focus .x-frame-tc, +.x-btn-default-small-focus .x-frame-bc { + background-image: url(images/btn/btn-default-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-ml, +.x-btn-default-small-focus .x-frame-mr { + background-image: url(images/btn/btn-default-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-tl, +.x-btn-default-small-menu-active .x-frame-bl, +.x-btn-default-small-menu-active .x-frame-tr, +.x-btn-default-small-menu-active .x-frame-br, +.x-btn-default-small-menu-active .x-frame-tc, +.x-btn-default-small-menu-active .x-frame-bc, +.x-btn-default-small-pressed .x-frame-tl, +.x-btn-default-small-pressed .x-frame-bl, +.x-btn-default-small-pressed .x-frame-tr, +.x-btn-default-small-pressed .x-frame-br, +.x-btn-default-small-pressed .x-frame-tc, +.x-btn-default-small-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-ml, +.x-btn-default-small-menu-active .x-frame-mr, +.x-btn-default-small-pressed .x-frame-ml, +.x-btn-default-small-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-mc, +.x-btn-default-small-pressed .x-frame-mc { + background-color: #b6cbe4; + background-image: url(images/btn/btn-default-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-tl, +.x-btn-default-small-disabled .x-frame-bl, +.x-btn-default-small-disabled .x-frame-tr, +.x-btn-default-small-disabled .x-frame-br, +.x-btn-default-small-disabled .x-frame-tc, +.x-btn-default-small-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-ml, +.x-btn-default-small-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-mc { + background-color: #f7f7f7; + background-image: url(images/btn/btn-default-small-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-over { + background-image: url(images/btn/btn-default-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-focus { + background-image: url(images/btn/btn-default-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-menu-active, +.x-nlg .x-btn-default-small-pressed { + background-image: url(images/btn/btn-default-small-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-disabled { + background-image: url(images/btn/btn-default-small-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 14px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-rtl.gif); + padding-right: 0; + padding-left: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-btn-inner, +.x-btn-default-small-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium { + border-color: #d1d1d1; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: white; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(48%, #f9f9f9), color-stop(52%, #e2e2e2), color-stop(100%, #e7e7e7)); + background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mc { + background-image: url(images/btn/btn-default-medium-fbg.gif); + background-position: 0 top; + background-color: white; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-medium { + background-image: url(images/btn/btn-default-medium-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tr, +.x-btn-default-medium-br, +.x-btn-default-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl, +.x-btn-default-medium-bl, +.x-btn-default-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl, +.x-btn-default-medium-bl, +.x-btn-default-medium-tr, +.x-btn-default-medium-br, +.x-btn-default-medium-tc, +.x-btn-default-medium-bc, +.x-btn-default-medium-ml, +.x-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-ml, +.x-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-medium-tl, +.x-strict .x-ie7 .x-btn-default-medium-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow-right { + padding-right: 12px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-glyph { + font-size: 24px; + line-height: 24px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-medium .x-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: #f7f7f7; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf)); + background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-button, +.x-btn-default-medium-noicon .x-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-inner, +.x-btn-default-medium-noicon .x-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-medium-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-medium-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-inner { + line-height: 24px; + padding-left: 28px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-rtl.x-btn-inner { + padding-left: 3px; + padding-right: 28px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 28px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon-el { + height: 24px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-inner { + line-height: 24px; + padding-right: 28px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 28px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon-el { + height: 24px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-top .x-btn-inner { + padding-top: 28px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-top .x-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-bottom .x-btn-inner { + padding-bottom: 28px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-bottom .x-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active, +.x-btn-default-medium-pressed { + border-color: #9ebae1; + background-image: none; + background-color: #b6cbe4; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5)); + background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-tl, +.x-btn-default-medium-over .x-frame-bl, +.x-btn-default-medium-over .x-frame-tr, +.x-btn-default-medium-over .x-frame-br, +.x-btn-default-medium-over .x-frame-tc, +.x-btn-default-medium-over .x-frame-bc { + background-image: url(images/btn/btn-default-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-ml, +.x-btn-default-medium-over .x-frame-mr { + background-image: url(images/btn/btn-default-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-tl, +.x-btn-default-medium-focus .x-frame-bl, +.x-btn-default-medium-focus .x-frame-tr, +.x-btn-default-medium-focus .x-frame-br, +.x-btn-default-medium-focus .x-frame-tc, +.x-btn-default-medium-focus .x-frame-bc { + background-image: url(images/btn/btn-default-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-ml, +.x-btn-default-medium-focus .x-frame-mr { + background-image: url(images/btn/btn-default-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-tl, +.x-btn-default-medium-menu-active .x-frame-bl, +.x-btn-default-medium-menu-active .x-frame-tr, +.x-btn-default-medium-menu-active .x-frame-br, +.x-btn-default-medium-menu-active .x-frame-tc, +.x-btn-default-medium-menu-active .x-frame-bc, +.x-btn-default-medium-pressed .x-frame-tl, +.x-btn-default-medium-pressed .x-frame-bl, +.x-btn-default-medium-pressed .x-frame-tr, +.x-btn-default-medium-pressed .x-frame-br, +.x-btn-default-medium-pressed .x-frame-tc, +.x-btn-default-medium-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-ml, +.x-btn-default-medium-menu-active .x-frame-mr, +.x-btn-default-medium-pressed .x-frame-ml, +.x-btn-default-medium-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-mc, +.x-btn-default-medium-pressed .x-frame-mc { + background-color: #b6cbe4; + background-image: url(images/btn/btn-default-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-tl, +.x-btn-default-medium-disabled .x-frame-bl, +.x-btn-default-medium-disabled .x-frame-tr, +.x-btn-default-medium-disabled .x-frame-br, +.x-btn-default-medium-disabled .x-frame-tc, +.x-btn-default-medium-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-ml, +.x-btn-default-medium-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-mc { + background-color: #f7f7f7; + background-image: url(images/btn/btn-default-medium-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-over { + background-image: url(images/btn/btn-default-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-focus { + background-image: url(images/btn/btn-default-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-menu-active, +.x-nlg .x-btn-default-medium-pressed { + background-image: url(images/btn/btn-default-medium-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-disabled { + background-image: url(images/btn/btn-default-medium-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 14px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-rtl.gif); + padding-right: 0; + padding-left: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-btn-inner, +.x-btn-default-medium-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large { + border-color: #d1d1d1; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: white; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(48%, #f9f9f9), color-stop(52%, #e2e2e2), color-stop(100%, #e7e7e7)); + background-image: -webkit-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -moz-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: -o-linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); + background-image: linear-gradient(top, #ffffff, #f9f9f9 48%, #e2e2e2 52%, #e7e7e7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mc { + background-image: url(images/btn/btn-default-large-fbg.gif); + background-position: 0 top; + background-color: white; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-large { + background-image: url(images/btn/btn-default-large-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tr, +.x-btn-default-large-br, +.x-btn-default-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl, +.x-btn-default-large-bl, +.x-btn-default-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl, +.x-btn-default-large-bl, +.x-btn-default-large-tr, +.x-btn-default-large-br, +.x-btn-default-large-tc, +.x-btn-default-large-bc, +.x-btn-default-large-ml, +.x-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-ml, +.x-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-large-tl, +.x-strict .x-ie7 .x-btn-default-large-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow-right { + padding-right: 12px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-glyph { + font-size: 32px; + line-height: 32px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-large .x-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: #f7f7f7; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f7f7f7), color-stop(48%, #f1f1f1), color-stop(52%, #dadada), color-stop(100%, #dfdfdf)); + background-image: -webkit-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -moz-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: -o-linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); + background-image: linear-gradient(top, #f7f7f7, #f1f1f1 48%, #dadada 52%, #dfdfdf); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-button, +.x-btn-default-large-noicon .x-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-inner, +.x-btn-default-large-noicon .x-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-large-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-large-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-inner { + line-height: 32px; + padding-left: 36px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-rtl.x-btn-inner { + padding-left: 3px; + padding-right: 36px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 36px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-large-icon-text-left .x-btn-icon-el { + height: 32px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-inner { + line-height: 32px; + padding-right: 36px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 36px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-large-icon-text-right .x-btn-icon-el { + height: 32px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-top .x-btn-inner { + padding-top: 36px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-top .x-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-bottom .x-btn-inner { + padding-bottom: 36px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-bottom .x-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus { + border-color: #b0ccf2; + background-image: none; + background-color: #e4f3ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e4f3ff), color-stop(48%, #d9edff), color-stop(52%, #c2d8f2), color-stop(100%, #c6dcf6)); + background-image: -webkit-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -moz-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: -o-linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); + background-image: linear-gradient(top, #e4f3ff, #d9edff 48%, #c2d8f2 52%, #c6dcf6); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active, +.x-btn-default-large-pressed { + border-color: #9ebae1; + background-image: none; + background-color: #b6cbe4; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #b6cbe4), color-stop(48%, #bfd2e6), color-stop(52%, #8dc0f5), color-stop(100%, #98c5f5)); + background-image: -webkit-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -moz-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: -o-linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); + background-image: linear-gradient(top, #b6cbe4, #bfd2e6 48%, #8dc0f5 52%, #98c5f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-tl, +.x-btn-default-large-over .x-frame-bl, +.x-btn-default-large-over .x-frame-tr, +.x-btn-default-large-over .x-frame-br, +.x-btn-default-large-over .x-frame-tc, +.x-btn-default-large-over .x-frame-bc { + background-image: url(images/btn/btn-default-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-ml, +.x-btn-default-large-over .x-frame-mr { + background-image: url(images/btn/btn-default-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-tl, +.x-btn-default-large-focus .x-frame-bl, +.x-btn-default-large-focus .x-frame-tr, +.x-btn-default-large-focus .x-frame-br, +.x-btn-default-large-focus .x-frame-tc, +.x-btn-default-large-focus .x-frame-bc { + background-image: url(images/btn/btn-default-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-ml, +.x-btn-default-large-focus .x-frame-mr { + background-image: url(images/btn/btn-default-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-mc { + background-color: #e4f3ff; + background-image: url(images/btn/btn-default-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-tl, +.x-btn-default-large-menu-active .x-frame-bl, +.x-btn-default-large-menu-active .x-frame-tr, +.x-btn-default-large-menu-active .x-frame-br, +.x-btn-default-large-menu-active .x-frame-tc, +.x-btn-default-large-menu-active .x-frame-bc, +.x-btn-default-large-pressed .x-frame-tl, +.x-btn-default-large-pressed .x-frame-bl, +.x-btn-default-large-pressed .x-frame-tr, +.x-btn-default-large-pressed .x-frame-br, +.x-btn-default-large-pressed .x-frame-tc, +.x-btn-default-large-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-ml, +.x-btn-default-large-menu-active .x-frame-mr, +.x-btn-default-large-pressed .x-frame-ml, +.x-btn-default-large-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-mc, +.x-btn-default-large-pressed .x-frame-mc { + background-color: #b6cbe4; + background-image: url(images/btn/btn-default-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-tl, +.x-btn-default-large-disabled .x-frame-bl, +.x-btn-default-large-disabled .x-frame-tr, +.x-btn-default-large-disabled .x-frame-br, +.x-btn-default-large-disabled .x-frame-tc, +.x-btn-default-large-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-ml, +.x-btn-default-large-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-mc { + background-color: #f7f7f7; + background-image: url(images/btn/btn-default-large-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-over { + background-image: url(images/btn/btn-default-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-focus { + background-image: url(images/btn/btn-default-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-menu-active, +.x-nlg .x-btn-default-large-pressed { + background-image: url(images/btn/btn-default-large-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-disabled { + background-image: url(images/btn/btn-default-large-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 14px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-rtl.gif); + padding-right: 0; + padding-left: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-btn-inner, +.x-btn-default-large-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small { + border-color: transparent; +} + +/* line 137, ../../../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: 2px 2px 2px 2px; + border-width: 1px; + border-style: solid; + background-color: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tr, +.x-btn-default-toolbar-small-br, +.x-btn-default-toolbar-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl, +.x-btn-default-toolbar-small-bl, +.x-btn-default-toolbar-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl, +.x-btn-default-toolbar-small-bl, +.x-btn-default-toolbar-small-tr, +.x-btn-default-toolbar-small-br, +.x-btn-default-toolbar-small-tc, +.x-btn-default-toolbar-small-bc, +.x-btn-default-toolbar-small-ml, +.x-btn-default-toolbar-small-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-ml, +.x-btn-default-toolbar-small-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-small-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-small-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 4px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow-right { + padding-right: 12px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-glyph { + font-size: 16px; + line-height: 16px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-small .x-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: transparent; +} +/* line 317, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-btn-inner { + color: #8c8c8c; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-button, +.x-btn-default-toolbar-small-noicon .x-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 4px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-inner { + line-height: 16px; + padding-left: 20px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-rtl.x-btn-inner { + padding-left: 4px; + padding-right: 20px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 20px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el { + height: 16px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-inner { + line-height: 16px; + padding-right: 20px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-rtl.x-btn-inner { + padding-right: 4px; + padding-left: 20px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el { + height: 16px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-top .x-btn-inner { + padding-top: 20px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner { + padding-bottom: 20px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active, +.x-btn-default-toolbar-small-pressed { + border-color: #7a9ac4; + background-image: none; + background-color: #bccfe5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5)); + background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-tl, +.x-btn-default-toolbar-small-over .x-frame-bl, +.x-btn-default-toolbar-small-over .x-frame-tr, +.x-btn-default-toolbar-small-over .x-frame-br, +.x-btn-default-toolbar-small-over .x-frame-tc, +.x-btn-default-toolbar-small-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-ml, +.x-btn-default-toolbar-small-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-tl, +.x-btn-default-toolbar-small-focus .x-frame-bl, +.x-btn-default-toolbar-small-focus .x-frame-tr, +.x-btn-default-toolbar-small-focus .x-frame-br, +.x-btn-default-toolbar-small-focus .x-frame-tc, +.x-btn-default-toolbar-small-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-ml, +.x-btn-default-toolbar-small-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-tl, +.x-btn-default-toolbar-small-menu-active .x-frame-bl, +.x-btn-default-toolbar-small-menu-active .x-frame-tr, +.x-btn-default-toolbar-small-menu-active .x-frame-br, +.x-btn-default-toolbar-small-menu-active .x-frame-tc, +.x-btn-default-toolbar-small-menu-active .x-frame-bc, +.x-btn-default-toolbar-small-pressed .x-frame-tl, +.x-btn-default-toolbar-small-pressed .x-frame-bl, +.x-btn-default-toolbar-small-pressed .x-frame-tr, +.x-btn-default-toolbar-small-pressed .x-frame-br, +.x-btn-default-toolbar-small-pressed .x-frame-tc, +.x-btn-default-toolbar-small-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-ml, +.x-btn-default-toolbar-small-menu-active .x-frame-mr, +.x-btn-default-toolbar-small-pressed .x-frame-ml, +.x-btn-default-toolbar-small-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-mc, +.x-btn-default-toolbar-small-pressed .x-frame-mc { + background-color: #bccfe5; + background-image: url(images/btn/btn-default-toolbar-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-tl, +.x-btn-default-toolbar-small-disabled .x-frame-bl, +.x-btn-default-toolbar-small-disabled .x-frame-tr, +.x-btn-default-toolbar-small-disabled .x-frame-br, +.x-btn-default-toolbar-small-disabled .x-frame-tc, +.x-btn-default-toolbar-small-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-ml, +.x-btn-default-toolbar-small-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-mc { + background-color: transparent; +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-over { + background-image: url(images/btn/btn-default-toolbar-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-focus { + background-image: url(images/btn/btn-default-toolbar-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-menu-active, +.x-nlg .x-btn-default-toolbar-small-pressed { + background-image: url(images/btn/btn-default-toolbar-small-pressed-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 14px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-noline-rtl.gif); + padding-right: 0; + padding-left: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium { + border-color: transparent; +} + +/* line 137, ../../../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: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tr, +.x-btn-default-toolbar-medium-br, +.x-btn-default-toolbar-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl, +.x-btn-default-toolbar-medium-bl, +.x-btn-default-toolbar-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl, +.x-btn-default-toolbar-medium-bl, +.x-btn-default-toolbar-medium-tr, +.x-btn-default-toolbar-medium-br, +.x-btn-default-toolbar-medium-tc, +.x-btn-default-toolbar-medium-bc, +.x-btn-default-toolbar-medium-ml, +.x-btn-default-toolbar-medium-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-ml, +.x-btn-default-toolbar-medium-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-medium-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-medium-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow-right { + padding-right: 12px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-glyph { + font-size: 24px; + line-height: 24px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-medium .x-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: transparent; +} +/* line 317, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-btn-inner { + color: #8c8c8c; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-button, +.x-btn-default-toolbar-medium-noicon .x-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-inner { + line-height: 24px; + padding-left: 28px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-rtl.x-btn-inner { + padding-left: 3px; + padding-right: 28px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 28px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el { + height: 24px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-inner { + line-height: 24px; + padding-right: 28px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 28px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el { + height: 24px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-top .x-btn-inner { + padding-top: 28px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner { + padding-bottom: 28px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active, +.x-btn-default-toolbar-medium-pressed { + border-color: #7a9ac4; + background-image: none; + background-color: #bccfe5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5)); + background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-tl, +.x-btn-default-toolbar-medium-over .x-frame-bl, +.x-btn-default-toolbar-medium-over .x-frame-tr, +.x-btn-default-toolbar-medium-over .x-frame-br, +.x-btn-default-toolbar-medium-over .x-frame-tc, +.x-btn-default-toolbar-medium-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-ml, +.x-btn-default-toolbar-medium-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-tl, +.x-btn-default-toolbar-medium-focus .x-frame-bl, +.x-btn-default-toolbar-medium-focus .x-frame-tr, +.x-btn-default-toolbar-medium-focus .x-frame-br, +.x-btn-default-toolbar-medium-focus .x-frame-tc, +.x-btn-default-toolbar-medium-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-ml, +.x-btn-default-toolbar-medium-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-tl, +.x-btn-default-toolbar-medium-menu-active .x-frame-bl, +.x-btn-default-toolbar-medium-menu-active .x-frame-tr, +.x-btn-default-toolbar-medium-menu-active .x-frame-br, +.x-btn-default-toolbar-medium-menu-active .x-frame-tc, +.x-btn-default-toolbar-medium-menu-active .x-frame-bc, +.x-btn-default-toolbar-medium-pressed .x-frame-tl, +.x-btn-default-toolbar-medium-pressed .x-frame-bl, +.x-btn-default-toolbar-medium-pressed .x-frame-tr, +.x-btn-default-toolbar-medium-pressed .x-frame-br, +.x-btn-default-toolbar-medium-pressed .x-frame-tc, +.x-btn-default-toolbar-medium-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-ml, +.x-btn-default-toolbar-medium-menu-active .x-frame-mr, +.x-btn-default-toolbar-medium-pressed .x-frame-ml, +.x-btn-default-toolbar-medium-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-mc, +.x-btn-default-toolbar-medium-pressed .x-frame-mc { + background-color: #bccfe5; + background-image: url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-tl, +.x-btn-default-toolbar-medium-disabled .x-frame-bl, +.x-btn-default-toolbar-medium-disabled .x-frame-tr, +.x-btn-default-toolbar-medium-disabled .x-frame-br, +.x-btn-default-toolbar-medium-disabled .x-frame-tc, +.x-btn-default-toolbar-medium-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-ml, +.x-btn-default-toolbar-medium-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-mc { + background-color: transparent; +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-over { + background-image: url(images/btn/btn-default-toolbar-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-focus { + background-image: url(images/btn/btn-default-toolbar-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-menu-active, +.x-nlg .x-btn-default-toolbar-medium-pressed { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 14px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-noline-rtl.gif); + padding-right: 0; + padding-left: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large { + border-color: transparent; +} + +/* line 137, ../../../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: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tr, +.x-btn-default-toolbar-large-br, +.x-btn-default-toolbar-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl, +.x-btn-default-toolbar-large-bl, +.x-btn-default-toolbar-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl, +.x-btn-default-toolbar-large-bl, +.x-btn-default-toolbar-large-tr, +.x-btn-default-toolbar-large-br, +.x-btn-default-toolbar-large-tc, +.x-btn-default-toolbar-large-bc, +.x-btn-default-toolbar-large-ml, +.x-btn-default-toolbar-large-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-ml, +.x-btn-default-toolbar-large-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-large-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-large-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow-right { + padding-right: 12px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-glyph { + font-size: 32px; + line-height: 32px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-large .x-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled { + border-color: #e1e1e1; + background-image: none; + background-color: transparent; +} +/* line 317, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-btn-inner { + color: #8c8c8c; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-button, +.x-btn-default-toolbar-large-noicon .x-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-inner { + line-height: 32px; + padding-left: 36px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-rtl.x-btn-inner { + padding-left: 3px; + padding-right: 36px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 36px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el { + height: 32px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-inner { + line-height: 32px; + padding-right: 36px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 36px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el { + height: 32px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-top .x-btn-inner { + padding-top: 36px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner { + padding-bottom: 36px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus { + border-color: #81a4d0; + background-image: none; + background-color: #dbeeff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dbeeff), color-stop(48%, #d0e7ff), color-stop(52%, #bbd2f0), color-stop(100%, #bed6f5)); + background-image: -webkit-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -moz-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: -o-linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); + background-image: linear-gradient(top, #dbeeff, #d0e7ff 48%, #bbd2f0 52%, #bed6f5); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active, +.x-btn-default-toolbar-large-pressed { + border-color: #7a9ac4; + background-image: none; + background-color: #bccfe5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #bccfe5), color-stop(48%, #c5d6e7), color-stop(52%, #95c4f4), color-stop(100%, #9fc9f5)); + background-image: -webkit-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -moz-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: -o-linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); + background-image: linear-gradient(top, #bccfe5, #c5d6e7 48%, #95c4f4 52%, #9fc9f5); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-tl, +.x-btn-default-toolbar-large-over .x-frame-bl, +.x-btn-default-toolbar-large-over .x-frame-tr, +.x-btn-default-toolbar-large-over .x-frame-br, +.x-btn-default-toolbar-large-over .x-frame-tc, +.x-btn-default-toolbar-large-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-ml, +.x-btn-default-toolbar-large-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-tl, +.x-btn-default-toolbar-large-focus .x-frame-bl, +.x-btn-default-toolbar-large-focus .x-frame-tr, +.x-btn-default-toolbar-large-focus .x-frame-br, +.x-btn-default-toolbar-large-focus .x-frame-tc, +.x-btn-default-toolbar-large-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-ml, +.x-btn-default-toolbar-large-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-mc { + background-color: #dbeeff; + background-image: url(images/btn/btn-default-toolbar-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-tl, +.x-btn-default-toolbar-large-menu-active .x-frame-bl, +.x-btn-default-toolbar-large-menu-active .x-frame-tr, +.x-btn-default-toolbar-large-menu-active .x-frame-br, +.x-btn-default-toolbar-large-menu-active .x-frame-tc, +.x-btn-default-toolbar-large-menu-active .x-frame-bc, +.x-btn-default-toolbar-large-pressed .x-frame-tl, +.x-btn-default-toolbar-large-pressed .x-frame-bl, +.x-btn-default-toolbar-large-pressed .x-frame-tr, +.x-btn-default-toolbar-large-pressed .x-frame-br, +.x-btn-default-toolbar-large-pressed .x-frame-tc, +.x-btn-default-toolbar-large-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-ml, +.x-btn-default-toolbar-large-menu-active .x-frame-mr, +.x-btn-default-toolbar-large-pressed .x-frame-ml, +.x-btn-default-toolbar-large-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-mc, +.x-btn-default-toolbar-large-pressed .x-frame-mc { + background-color: #bccfe5; + background-image: url(images/btn/btn-default-toolbar-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-tl, +.x-btn-default-toolbar-large-disabled .x-frame-bl, +.x-btn-default-toolbar-large-disabled .x-frame-tr, +.x-btn-default-toolbar-large-disabled .x-frame-br, +.x-btn-default-toolbar-large-disabled .x-frame-tc, +.x-btn-default-toolbar-large-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-ml, +.x-btn-default-toolbar-large-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-mc { + background-color: transparent; +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-over { + background-image: url(images/btn/btn-default-toolbar-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-focus { + background-image: url(images/btn/btn-default-toolbar-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-menu-active, +.x-nlg .x-btn-default-toolbar-large-pressed { + background-image: url(images/btn/btn-default-toolbar-large-pressed-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 14px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-noline-rtl.gif); + padding-right: 0; + padding-left: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 1161, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-left .x-btn-icon-el { + background-position: left center; +} +/* line 1166, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-left .x-rtl.x-btn-icon-el { + background-position: right center; +} + +/* line 1173, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-right .x-btn-icon-el { + background-position: right center; +} +/* line 1178, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-right .x-rtl.x-btn-icon-el { + background-position: left center; +} + +/* line 1184, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-top .x-btn-icon-el { + background-position: center top; +} + +/* line 1188, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-bottom .x-btn-icon-el { + background-position: center bottom; +} + +/* line 1192, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow-right { + background-position: right center; +} + +/* line 1197, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-rtl.x-btn-arrow-right { + background-position: left center; +} + +/* line 1202, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow-bottom { + background-position: center bottom; +} + +/* line 1206, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow { + background-repeat: no-repeat; +} + +/* line 1211, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split { + display: block; + background-repeat: no-repeat; +} + +/* line 1216, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split-right { + background-position: right center; +} + +/* line 1221, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-rtl.x-btn-split-right { + background-position: 0 center; +} + +/* line 1226, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split-bottom { + background-position: center bottom; +} + +/* line 1230, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-cycle-fixed-width .x-btn-inner { + text-align: inherit; +} + +/** + * Creates a visual theme for a Toolbar. + * @param {String} $ui + * The name of the UI + * + * @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 {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 {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-disabled=$toolbar-scroller-opacity-disabled] + * The opacity of disabled Toolbar scrollers + * + * @param {string} [$tool-background-image=$toolbar-tool-background-image] + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + * + * @member Ext.toolbar.Toolbar + */ +/* line 94, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar { + font-size: 11px; + border-style: solid; + padding: 2px 0 2px 2px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-item { + margin: 0 2px 0 0; +} + +/* line 107, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-rtl.x-toolbar-item { + margin: 0 0 0 2px; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-text { + margin: 0 6px 0 4px; + color: #4c4c4c; + line-height: 16px; + font-family: tahoma, arial, verdana, sans-serif; + font-size: 11px; + font-weight: normal; +} + +/* line 121, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-separator-horizontal { + margin: 0 2px 0 0; + height: 14px; + border-style: solid; + border-width: 0 1px; + border-left-color: #98c8ff; + border-right-color: white; +} + +/* line 132, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-rtl.x-toolbar { + padding: 2px 2px 2px 0; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-footer { + background: transparent; + border: 0; + margin: 3px 0 0; + padding: 2px 0 2px 6px; +} +/* line 144, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-footer .x-toolbar-item { + margin: 0 6px 0 0; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-spacer { + width: 2px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-more-icon { + background-image: url(images/toolbar/more.gif) !important; + background-position: center center !important; + background-repeat: no-repeat; +} + +/* line 45, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default { + border-color: #99bce8; + border-width: 1px; + background-image: none; + background-color: #d3e1f1; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfe9f5), color-stop(100%, #d3e1f1)); + background-image: -webkit-linear-gradient(top, #dfe9f5, #d3e1f1); + background-image: -moz-linear-gradient(top, #dfe9f5, #d3e1f1); + background-image: -o-linear-gradient(top, #dfe9f5, #d3e1f1); + background-image: linear-gradient(top, #dfe9f5, #d3e1f1); +} +/* line 51, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller { + cursor: pointer; +} +/* line 55, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + cursor: default; +} + +/* line 82, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-nlg .x-toolbar-default { + background-image: url(images/toolbar/toolbar-default-bg.gif) !important; + background-repeat: repeat-x; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-toolbar-default:after { + display: none; + content: "x-slicer:bg:url(images/toolbar/toolbar-default-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/* line 166, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-left { + background-image: url(images/toolbar/scroll-left.gif); + background-position: -14px 0; + width: 14px; + height: 22px; + border-style: solid; + border-color: #8db2e3; + border-width: 0 0 1px; + margin-top: 0; +} + +/* line 177, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-left-hover { + background-position: 0 0; +} + +/* line 181, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-right { + background-image: url(images/toolbar/scroll-right.gif); + width: 14px; + height: 22px; + border-style: solid; + border-color: #8db2e3; + border-width: 0 0 1px; + margin-top: 0; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-right-hover { + background-position: -14px 0; +} + +/* line 195, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar .x-box-menu-after { + margin: 0 2px 0 2px; +} + +/* line 199, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical { + padding: 2px 2px 0 2px; +} +/* line 202, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-item { + margin: 0 0 2px 0; +} +/* line 206, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-text { + margin: 4px 0 6px 0; +} +/* line 210, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-separator-vertical { + margin: 0 5px 2px; + border-style: solid none; + border-width: 1px 0; + border-top-color: #98c8ff; + border-bottom-color: white; +} +/* line 219, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-box-menu-after, +.x-toolbar-vertical .x-rtl.x-box-menu-after { + margin: 2px 0 2px 0; + display: block; + float: none; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x-header-draggable .x-header-body, +.x-header-ghost { + cursor: move; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x-header-text { + white-space: nowrap; +} + +/** + * Creates a visual theme for a Panel + * + * @param {string} $ui-label + * 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 {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-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`. + * + * @member Ext.panel.Panel + */ +/* line 736, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65); + opacity: 0.65; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default { + border-color: #99bce8; + padding: 0; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default { + font-size: 11px; + border: 1px solid #99bce8; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal { + padding: 4px 5px 4px 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal-noborder { + padding: 5px 6px 4px 6px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical-noborder { + padding: 6px 5px 6px 4px; +} + +/* line 249, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-vertical-noborder { + padding: 6px 4px 6px 5px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-default { + color: #04408c; + font-size: 11px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + line-height: 15px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-default { + background: white; + border-color: #99bce8; + color: black; + font-size: 12px; + font-size: normal; + border-width: 1px; + border-style: solid; +} + +/* line 432, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default { + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 436, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical { + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 441, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-vertical { + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 454, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-top { + background: url(images/panel-header/panel-header-default-top-bg.gif); +} +/* line 459, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-bottom { + background: url(images/panel-header/panel-header-default-bottom-bg.gif); +} +/* line 464, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-left { + background: url(images/panel-header/panel-header-default-left-bg.gif) top right; +} +/* line 469, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-right { + background: url(images/panel-header/panel-header-default-right-bg.gif) top right; +} +/* line 476, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-rtl.x-panel-header-default-left { + background: url(images/panel-header/panel-header-default-left-bg-rtl.gif); +} +/* line 480, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-rtl.x-panel-header-default-right { + background: url(images/panel-header/panel-header-default-right-bg-rtl.gif); +} + +/* line 494, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-top { + border-bottom-width: 1px !important; +} +/* line 498, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-right { + border-left-width: 1px !important; +} +/* line 502, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-bottom { + border-top-width: 1px !important; +} +/* line 506, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-left { + border-right-width: 1px !important; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-top:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-top-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-bottom:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-bottom-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-left:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-left-bg-rtl.gif), stretch:left"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-right:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-right-bg-rtl.gif), stretch:left"; +} + +/**/ +/* */ +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-vertical .x-panel-header-text-container { + background-color: #cbddf3; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3); +} + +/* line 527, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-rtl.x-panel-header-text-container { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-vertical .x-rtl.x-panel-header-text-container { + background-color: #cbddf3; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3); +} + +/* line 533, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-top { + -webkit-box-shadow: #f3f7fb 0 1px 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 1px 0px 0 inset; + box-shadow: #f3f7fb 0 1px 0px 0 inset; +} + +/* line 537, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-right { + -webkit-box-shadow: #f3f7fb -1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb -1px 0 0px 0 inset; + box-shadow: #f3f7fb -1px 0 0px 0 inset; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-bottom { + -webkit-box-shadow: #f3f7fb 0 -1px 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 -1px 0px 0 inset; + box-shadow: #f3f7fb 0 -1px 0px 0 inset; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-left { + -webkit-box-shadow: #f3f7fb 1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 1px 0 0px 0 inset; + box-shadow: #f3f7fb 1px 0 0px 0 inset; +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default .x-panel-header-glyph { + color: #04408c; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-default .x-panel-header-glyph { + color: #678ebf; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-panel-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 585, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 0 2px; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 2px; +} +/* line 595, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-rtl.x-panel-header-icon-after-title { + margin: 0 2px 0 0; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 607, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-icon-after-title { + margin: 2px 0 0 0; +} +/* line 617, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-rtl.x-panel-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-tool-after-title { + margin: 0 0 0 2px; +} +/* line 630, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-rtl.x-tool-after-title { + margin: 0 2px 0 0; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-tool-before-title { + margin: 0 2px 0 0; +} +/* line 640, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-rtl.x-tool-before-title { + margin: 0 0 0 2px; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 652, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-rtl.x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-tool-before-title { + margin: 0 0 2px 0; +} +/* line 662, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-rtl.x-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 670, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-collapsed-border-right { + border-right-width: 1px !important; +} +/* line 673, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-collapsed-border-left { + border-left-width: 1px !important; +} + +/* line 687, ../../../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 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed { + border-color: #99bce8; + padding: 4px; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed { + font-size: 11px; + border: 1px solid #99bce8; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal { + padding: 4px 5px 4px 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal-noborder { + padding: 5px 6px 4px 6px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical-noborder { + padding: 6px 5px 6px 4px; +} + +/* line 249, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-framed-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-framed-vertical-noborder { + padding: 6px 4px 6px 5px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-default-framed { + color: #04408c; + font-size: 11px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + line-height: 15px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-default-framed { + background: #dfe9f6; + border-color: #99bce8; + color: black; + font-size: 12px; + font-size: normal; + border-width: 0; + border-style: solid; +} + +/* line 137, ../../../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: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: #dfe9f6; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mc { + background-color: #dfe9f6; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-default-framed-frameInfo { + font-family: dh-4-4-4-4-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tr, +.x-panel-default-framed-br, +.x-panel-default-framed-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl, +.x-panel-default-framed-bl, +.x-panel-default-framed-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl, +.x-panel-default-framed-bl, +.x-panel-default-framed-tr, +.x-panel-default-framed-br, +.x-panel-default-framed-tc, +.x-panel-default-framed-bc, +.x-panel-default-framed-ml, +.x-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-ml, +.x-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-default-framed-tl, +.x-strict .x-ie7 .x-panel-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 5px 4px 5px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mc { + background-image: url(images/panel-header/panel-header-default-framed-top-fbg.gif); + background-position: 0 top; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-top { + background-image: url(images/panel-header/panel-header-default-framed-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-top-frameInfo { + font-family: dh-4-4-0-0-1-1-0-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tr, +.x-panel-header-default-framed-top-br, +.x-panel-header-default-framed-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl, +.x-panel-header-default-framed-top-bl, +.x-panel-header-default-framed-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl, +.x-panel-header-default-framed-top-bl, +.x-panel-header-default-framed-top-tr, +.x-panel-header-default-framed-top-br, +.x-panel-header-default-framed-top-tc, +.x-panel-header-default-framed-top-bc, +.x-panel-header-default-framed-top-ml, +.x-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-ml, +.x-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mc { + padding: 1px 2px 4px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-top-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 4px 5px 4px; + border-width: 1px 1px 1px 0; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right { + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-right-fbg.gif); + background-position: right 0; + background-color: #cbddf3; +} + +/* line 204, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-right-fbg-rtl.gif); + background-position: 0 0; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-right { + background-image: url(images/panel-header/panel-header-default-framed-right-bg.gif); + background-position: right 0; +} +/* line 223, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-rtl.x-panel-header-default-framed-right { + background-image: url(images/panel-header/panel-header-default-framed-right-bg-rtl.gif); + background-position: 0 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-right-frameInfo { + font-family: dv-0-4-4-0-1-1-1-0-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc { + background-position: right 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bc { + background-position: right -4px; +} + +/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right-tc { + background-position: 0 0; +} + +/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tr, +.x-panel-header-default-framed-right-br, +.x-panel-header-default-framed-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl, +.x-panel-header-default-framed-right-bl, +.x-panel-header-default-framed-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl, +.x-panel-header-default-framed-right-bl, +.x-panel-header-default-framed-right-tr, +.x-panel-header-default-framed-right-br, +.x-panel-header-default-framed-right-tc, +.x-panel-header-default-framed-right-bc, +.x-panel-header-default-framed-right-ml, +.x-panel-header-default-framed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right-tl, .x-rtl.x-panel-header-default-framed-right-ml, .x-rtl.x-panel-header-default-framed-right-bl, .x-rtl.x-panel-header-default-framed-right-tr, .x-rtl.x-panel-header-default-framed-right-mr, .x-rtl.x-panel-header-default-framed-right-br { + background-image: url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc, +.x-panel-header-default-framed-right-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-sides.gif); + background-repeat: repeat-x; +} + +/* line 418, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right-tc, .x-rtl.x-panel-header-default-framed-right-bc { + background-image: url(images/panel-header/panel-header-default-framed-right-sides-rtl.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mc { + padding: 2px 1px 2px 4px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-right-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-right:after { + display: none; + content: "x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-right-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-right-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-right-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-right-sides-rtl.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 5px 4px 5px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mc { + background-image: url(images/panel-header/panel-header-default-framed-bottom-fbg.gif); + background-position: 0 bottom; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-bottom { + background-image: url(images/panel-header/panel-header-default-framed-bottom-bg.gif); + background-position: 0 bottom; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-bottom-frameInfo { + font-family: dh-0-0-4-4-0-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tr, +.x-panel-header-default-framed-bottom-br, +.x-panel-header-default-framed-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl, +.x-panel-header-default-framed-bottom-bl, +.x-panel-header-default-framed-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl, +.x-panel-header-default-framed-bottom-bl, +.x-panel-header-default-framed-bottom-tr, +.x-panel-header-default-framed-bottom-br, +.x-panel-header-default-framed-bottom-tc, +.x-panel-header-default-framed-bottom-bc, +.x-panel-header-default-framed-bottom-ml, +.x-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-ml, +.x-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mc { + padding: 4px 2px 1px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-bottom:after { + display: none; + content: "x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 4px 5px 4px; + border-width: 1px 0 1px 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left { + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-left-fbg.gif); + background-position: left 0; + background-color: #cbddf3; +} + +/* line 204, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-left-fbg-rtl.gif); + background-position: right 0; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-left { + background-image: url(images/panel-header/panel-header-default-framed-left-bg.gif); + background-position: left 0; +} +/* line 223, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-rtl.x-panel-header-default-framed-left { + background-image: url(images/panel-header/panel-header-default-framed-left-bg-rtl.gif); + background-position: right 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-left-frameInfo { + font-family: dv-4-0-0-4-1-0-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc { + background-position: left 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bc { + background-position: left -4px; +} + +/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left-tc { + background-position: right 0; +} + +/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left-bc { + background-position: right -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tr, +.x-panel-header-default-framed-left-br, +.x-panel-header-default-framed-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl, +.x-panel-header-default-framed-left-bl, +.x-panel-header-default-framed-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl, +.x-panel-header-default-framed-left-bl, +.x-panel-header-default-framed-left-tr, +.x-panel-header-default-framed-left-br, +.x-panel-header-default-framed-left-tc, +.x-panel-header-default-framed-left-bc, +.x-panel-header-default-framed-left-ml, +.x-panel-header-default-framed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left-tl, .x-rtl.x-panel-header-default-framed-left-ml, .x-rtl.x-panel-header-default-framed-left-bl, .x-rtl.x-panel-header-default-framed-left-tr, .x-rtl.x-panel-header-default-framed-left-mr, .x-rtl.x-panel-header-default-framed-left-br { + background-image: url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc, +.x-panel-header-default-framed-left-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-sides.gif); + background-repeat: repeat-x; +} + +/* line 418, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left-tc, .x-rtl.x-panel-header-default-framed-left-bc { + background-image: url(images/panel-header/panel-header-default-framed-left-sides-rtl.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mc { + padding: 2px 4px 2px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-left-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-left:after { + display: none; + content: "x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-left-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-left-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-left-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-left-sides-rtl.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif); + background-position: 0 top; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-top { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-top-frameInfo { + font-family: dh-4-4-4-4-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tr, +.x-panel-header-default-framed-collapsed-top-br, +.x-panel-header-default-framed-collapsed-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl, +.x-panel-header-default-framed-collapsed-top-bl, +.x-panel-header-default-framed-collapsed-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl, +.x-panel-header-default-framed-collapsed-top-bl, +.x-panel-header-default-framed-collapsed-top-tr, +.x-panel-header-default-framed-collapsed-top-br, +.x-panel-header-default-framed-collapsed-top-tc, +.x-panel-header-default-framed-collapsed-top-bc, +.x-panel-header-default-framed-collapsed-top-ml, +.x-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-ml, +.x-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mc { + padding: 1px 2px 1px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right { + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif); + background-position: right 0; + background-color: #cbddf3; +} + +/* line 204, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif); + background-position: 0 0; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-right { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif); + background-position: right 0; +} +/* line 223, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-rtl.x-panel-header-default-framed-collapsed-right { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif); + background-position: 0 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-right-frameInfo { + font-family: dv-4-4-4-4-1-1-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc { + background-position: right 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bc { + background-position: right -4px; +} + +/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right-tc { + background-position: 0 0; +} + +/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tr, +.x-panel-header-default-framed-collapsed-right-br, +.x-panel-header-default-framed-collapsed-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl, +.x-panel-header-default-framed-collapsed-right-bl, +.x-panel-header-default-framed-collapsed-right-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl, +.x-panel-header-default-framed-collapsed-right-bl, +.x-panel-header-default-framed-collapsed-right-tr, +.x-panel-header-default-framed-collapsed-right-br, +.x-panel-header-default-framed-collapsed-right-tc, +.x-panel-header-default-framed-collapsed-right-bc, +.x-panel-header-default-framed-collapsed-right-ml, +.x-panel-header-default-framed-collapsed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right-tl, .x-rtl.x-panel-header-default-framed-collapsed-right-ml, .x-rtl.x-panel-header-default-framed-collapsed-right-bl, .x-rtl.x-panel-header-default-framed-collapsed-right-tr, .x-rtl.x-panel-header-default-framed-collapsed-right-mr, .x-rtl.x-panel-header-default-framed-collapsed-right-br { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc, +.x-panel-header-default-framed-collapsed-right-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif); + background-repeat: repeat-x; +} + +/* line 418, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right-tc, .x-rtl.x-panel-header-default-framed-collapsed-right-bc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mc { + padding: 2px 1px 2px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-right:after { + display: none; + content: "x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(top, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif); + background-position: 0 bottom; + background-color: #cbddf3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-bottom { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif); + background-position: 0 bottom; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-bottom-frameInfo { + font-family: dh-4-4-4-4-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tr, +.x-panel-header-default-framed-collapsed-bottom-br, +.x-panel-header-default-framed-collapsed-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl, +.x-panel-header-default-framed-collapsed-bottom-bl, +.x-panel-header-default-framed-collapsed-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl, +.x-panel-header-default-framed-collapsed-bottom-bl, +.x-panel-header-default-framed-collapsed-bottom-tr, +.x-panel-header-default-framed-collapsed-bottom-br, +.x-panel-header-default-framed-collapsed-bottom-tc, +.x-panel-header-default-framed-collapsed-bottom-bc, +.x-panel-header-default-framed-collapsed-bottom-ml, +.x-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-ml, +.x-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mc { + padding: 1px 2px 1px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-bottom:after { + display: none; + content: "x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(right, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left { + background-image: none; + background-color: #cbddf3; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dae7f6), color-stop(45%, #cddef3), color-stop(46%, #abc7ec), color-stop(50%, #abc7ec), color-stop(51%, #b8cfee), color-stop(100%, #cbddf3)); + background-image: -webkit-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -moz-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: -o-linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); + background-image: linear-gradient(left, #dae7f6, #cddef3 45%, #abc7ec 46%, #abc7ec 50%, #b8cfee 51%, #cbddf3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif); + background-position: left 0; + background-color: #cbddf3; +} + +/* line 204, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif); + background-position: right 0; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-left { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif); + background-position: left 0; +} +/* line 223, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-rtl.x-panel-header-default-framed-collapsed-left { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif); + background-position: right 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-left-frameInfo { + font-family: dv-4-4-4-4-1-1-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc { + background-position: left 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bc { + background-position: left -4px; +} + +/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left-tc { + background-position: right 0; +} + +/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left-bc { + background-position: right -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tr, +.x-panel-header-default-framed-collapsed-left-br, +.x-panel-header-default-framed-collapsed-left-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl, +.x-panel-header-default-framed-collapsed-left-bl, +.x-panel-header-default-framed-collapsed-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl, +.x-panel-header-default-framed-collapsed-left-bl, +.x-panel-header-default-framed-collapsed-left-tr, +.x-panel-header-default-framed-collapsed-left-br, +.x-panel-header-default-framed-collapsed-left-tc, +.x-panel-header-default-framed-collapsed-left-bc, +.x-panel-header-default-framed-collapsed-left-ml, +.x-panel-header-default-framed-collapsed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left-tl, .x-rtl.x-panel-header-default-framed-collapsed-left-ml, .x-rtl.x-panel-header-default-framed-collapsed-left-bl, .x-rtl.x-panel-header-default-framed-collapsed-left-tr, .x-rtl.x-panel-header-default-framed-collapsed-left-mr, .x-rtl.x-panel-header-default-framed-collapsed-left-br { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc, +.x-panel-header-default-framed-collapsed-left-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif); + background-repeat: repeat-x; +} + +/* line 418, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left-tc, .x-rtl.x-panel-header-default-framed-collapsed-left-bc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mc { + padding: 2px 1px 2px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-left:after { + display: none; + content: "x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif)"; +} + +/**/ +/* */ +/* line 396, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-top { + border-bottom-width: 1px !important; +} +/* line 400, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-right { + border-left-width: 1px !important; +} +/* line 404, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-bottom { + border-top-width: 1px !important; +} +/* line 408, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-left { + border-right-width: 1px !important; +} + +/* line 414, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-top { + border-bottom-width: 0 !important; +} +/* line 418, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-right { + border-left-width: 0 !important; +} +/* line 422, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-bottom { + border-top-width: 0 !important; +} +/* line 426, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-left { + border-right-width: 0 !important; +} + +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-framed-vertical .x-panel-header-text-container { + background-color: #cbddf3; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3); +} + +/* line 527, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-text-container { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-framed-vertical .x-rtl.x-panel-header-text-container { + background-color: #cbddf3; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3); +} + +/* line 533, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-top { + -webkit-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; +} + +/* line 537, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-right { + -webkit-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset; + box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-bottom { + -webkit-box-shadow: #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + box-shadow: #f3f7fb 0 -1px 0px 0 inset, #f3f7fb -1px 0 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-left { + -webkit-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + -moz-box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; + box-shadow: #f3f7fb 0 1px 0px 0 inset, #f3f7fb 0 -1px 0px 0 inset, #f3f7fb 1px 0 0px 0 inset; +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed .x-panel-header-glyph { + color: #04408c; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-default-framed .x-panel-header-glyph { + color: #678ebf; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-panel-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 585, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 0 2px; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 2px; +} +/* line 595, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-rtl.x-panel-header-icon-after-title { + margin: 0 2px 0 0; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 607, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-icon-after-title { + margin: 2px 0 0 0; +} +/* line 617, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-tool-after-title { + margin: 0 0 0 2px; +} +/* line 630, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-rtl.x-tool-after-title { + margin: 0 2px 0 0; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-tool-before-title { + margin: 0 2px 0 0; +} +/* line 640, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-rtl.x-tool-before-title { + margin: 0 0 0 2px; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 652, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-rtl.x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-tool-before-title { + margin: 0 0 2px 0; +} +/* line 662, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-rtl.x-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 670, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-border-right { + border-right-width: 1px !important; +} +/* line 673, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-border-left { + border-left-width: 1px !important; +} + +/* line 687, ../../../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; +} + +/** + * Creates a visual theme for a Ext.tip.Tip + * + * @param {string} $ui-label + * 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-body-padding=$tip-header-body-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 167, ../../../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: #8eaace; + zoom: 1; +} +/* line 182, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-content-box .x-tip-anchor { + height: 0; + width: 0; +} + +/* line 189, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-top { + border-top-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-bottom { + border-bottom-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-bottom-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-left { + border-top-color: transparent; + border-bottom-color: transparent; + border-left-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-left-color: pink; + _filter: chroma(color=pink); +} + +/* line 228, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-right { + border-top-color: transparent; + border-bottom-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 137, ../../../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: #e9f2ff; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mc { + background-color: #e9f2ff; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tip-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tip-default-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tr, +.x-tip-default-br, +.x-tip-default-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl, +.x-tip-default-bl, +.x-tip-default-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl, +.x-tip-default-bl, +.x-tip-default-tr, +.x-tip-default-br, +.x-tip-default-tc, +.x-tip-default-bc, +.x-tip-default-ml, +.x-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-ml, +.x-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tip-default-tl, +.x-strict .x-ie7 .x-tip-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tip-default:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-default { + border-color: #8eaace; +} +/* line 109, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-default .x-tool-img { + background-color: #e9f2ff; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 129, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-rtl.x-tool-after-title { + margin: 0 6px 0 0; +} +/* line 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-tool-before-title { + margin: 0 6px 0 0; +} +/* line 139, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-rtl.x-tool-before-title { + margin: 0 0 0 6px; +} + +/* line 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-body-default { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-text-container-default { + color: #444444; + font-size: 11px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-default { + padding: 3px; + color: #444444; + font-size: 11px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-default a { + color: #2a2a2a; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: white; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mc { + background-color: white; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tip-form-invalid { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tip-form-invalid-frameInfo { + font-family: th-5-5-5-5-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tr, +.x-tip-form-invalid-br, +.x-tip-form-invalid-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl, +.x-tip-form-invalid-bl, +.x-tip-form-invalid-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl, +.x-tip-form-invalid-bl, +.x-tip-form-invalid-tr, +.x-tip-form-invalid-br, +.x-tip-form-invalid-tc, +.x-tip-form-invalid-bc, +.x-tip-form-invalid-ml, +.x-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-ml, +.x-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tip-form-invalid-tl, +.x-strict .x-ie7 .x-tip-form-invalid-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tip-form-invalid:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-form-invalid { + border-color: #a1311f; + -webkit-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; + -moz-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; + box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; +} +/* line 109, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-form-invalid .x-tool-img { + background-color: white; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-form-invalid .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 129, ../../../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 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-form-invalid .x-tool-before-title { + margin: 0 6px 0 0; +} +/* line 139, ../../../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 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-body-form-invalid { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-text-container-form-invalid { + color: #444444; + font-size: 11px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid { + padding: 3px 3px 3px 22px; + color: #444444; + font-size: 11px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid a { + color: #2a2a2a; +} + +/* line 265, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid { + background: 1px 1px no-repeat; + background-image: url(images/form/exclamation.gif); +} +/* line 268, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid li { + margin-bottom: 4px; +} +/* line 270, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid li.last { + margin-bottom: 0; +} + +/** + * Creates a visual theme for a ButtonGroup. + * + * @param {string} $ui-label + * 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 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-default { + border-color: #b7c8d7; + -webkit-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; + -moz-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; + box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default { + margin: 2px 2px 0 2px; + padding: 1px 0; + line-height: 15px; + background: #c2d8f0; + -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 109, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default .x-tool-img { + background-color: #c2d8f0; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-text-container-default { + font: normal 11px tahoma, arial, verdana, sans-serif; + line-height: 15px; + color: #3e6aaa; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default { + padding: 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default .x-table-layout { + border-spacing: 0; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed { + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + padding: 1px 1px 1px 1px; + border-width: 1px; + border-style: solid; + background-color: #d0def0; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mc { + background-color: #d0def0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-group-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-group-default-framed-frameInfo { + font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl { + background-position: 0 -4px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tr { + background-position: right -6px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bl { + background-position: 0 -8px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-br { + background-position: right -10px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bc { + background-position: 0 -2px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tr, +.x-btn-group-default-framed-br, +.x-btn-group-default-framed-mr { + padding-right: 2px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl, +.x-btn-group-default-framed-bl, +.x-btn-group-default-framed-ml { + padding-left: 2px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tc { + height: 2px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bc { + height: 2px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl, +.x-btn-group-default-framed-bl, +.x-btn-group-default-framed-tr, +.x-btn-group-default-framed-br, +.x-btn-group-default-framed-tc, +.x-btn-group-default-framed-bc, +.x-btn-group-default-framed-ml, +.x-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-ml, +.x-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-group-default-framed-tl, +.x-strict .x-ie7 .x-btn-group-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-group-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle { + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + padding: 1px 1px 1px 1px; + border-width: 1px; + border-style: solid; + background-color: #d0def0; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mc { + background-color: #d0def0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-group-default-framed-notitle { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-group-default-framed-notitle-frameInfo { + font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl { + background-position: 0 -4px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tr { + background-position: right -6px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bl { + background-position: 0 -8px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-br { + background-position: right -10px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bc { + background-position: 0 -2px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tr, +.x-btn-group-default-framed-notitle-br, +.x-btn-group-default-framed-notitle-mr { + padding-right: 2px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl, +.x-btn-group-default-framed-notitle-bl, +.x-btn-group-default-framed-notitle-ml { + padding-left: 2px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tc { + height: 2px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bc { + height: 2px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl, +.x-btn-group-default-framed-notitle-bl, +.x-btn-group-default-framed-notitle-tr, +.x-btn-group-default-framed-notitle-br, +.x-btn-group-default-framed-notitle-tc, +.x-btn-group-default-framed-notitle-bc, +.x-btn-group-default-framed-notitle-ml, +.x-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-ml, +.x-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-group-default-framed-notitle-tl, +.x-strict .x-ie7 .x-btn-group-default-framed-notitle-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-group-default-framed-notitle:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"; +} + +/**/ +/* */ +/* line 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-default-framed { + border-color: #b7c8d7; + -webkit-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; + -moz-box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; + box-shadow: #e3ebf5 0 1px 0px 0 inset, #e3ebf5 0 -1px 0px 0 inset, #e3ebf5 -1px 0 0px 0 inset, #e3ebf5 1px 0 0px 0 inset; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default-framed { + margin: 2px 2px 0 2px; + padding: 1px 0; + line-height: 15px; + background: #c2d8f0; + -moz-border-radius-topleft: 2px; + -webkit-border-top-left-radius: 2px; + border-top-left-radius: 2px; + -moz-border-radius-topright: 2px; + -webkit-border-top-right-radius: 2px; + border-top-right-radius: 2px; +} +/* line 109, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default-framed .x-tool-img { + background-color: #c2d8f0; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-text-container-default-framed { + font: normal 11px tahoma, arial, verdana, sans-serif; + line-height: 15px; + color: #3e6aaa; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default-framed { + padding: 0 1px 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default-framed .x-table-layout { + border-spacing: 0; +} + +/** + * Creates a visual theme for a Window + * + * @param {string} $ui-label + * 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`. + * + * @member Ext.window.Window + */ +/* line 545, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65); + opacity: 0.65; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default { + border-color: #a2b1c5; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-default-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tr, +.x-window-default-br, +.x-window-default-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl, +.x-window-default-bl, +.x-window-default-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl, +.x-window-default-bl, +.x-window-default-tr, +.x-window-default-br, +.x-window-default-tc, +.x-window-default-bc, +.x-window-default-ml, +.x-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-ml, +.x-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-default-tl, +.x-strict .x-ie7 .x-window-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-default:after { + display: none; + content: "x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"; +} + +/**/ +/* */ +/* line 195, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-body-default { + border-color: #99bbe8; + border-width: 1px; + border-style: solid; + background: #dfe8f6; + color: black; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default { + font-size: 11px; + border-color: #a2b1c5; + zoom: 1; + background-color: #ced9e7; +} +/* line 212, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-tool-img { + background-color: #ced9e7; +} + +/* line 223, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-window-header-default-vertical .x-window-header-text-container { + background-color: #ced9e7; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#ced9e7); +} + +/* line 228, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-rtl.x-window-header-text-container { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-window-header-default-vertical .x-rtl.x-window-header-text-container { + background-color: #ced9e7; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#ced9e7); +} + +/* line 233, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-text-container-default { + color: #04468c; + font-weight: bold; + line-height: 15px; + font-family: tahoma, arial, verdana, sans-serif; + font-size: 11px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-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: 4px 5px 0 5px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-top-frameInfo { + font-family: dh-5-5-0-0-1-1-0-1-4-5-0-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tr, +.x-window-header-default-top-br, +.x-window-header-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl, +.x-window-header-default-top-bl, +.x-window-header-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl, +.x-window-header-default-top-bl, +.x-window-header-default-top-tr, +.x-window-header-default-top-br, +.x-window-header-default-top-tc, +.x-window-header-default-top-bc, +.x-window-header-default-top-ml, +.x-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-ml, +.x-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mc { + padding: 0px 1px 0 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-top-tl, +.x-strict .x-ie7 .x-window-header-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px; + -webkit-border-top-right-radius: 5px; + border-top-right-radius: 5px; + -moz-border-radius-bottomright: 5px; + -webkit-border-bottom-right-radius: 5px; + border-bottom-right-radius: 5px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 4px 5px 0; + border-width: 1px 1px 1px 0; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-right-frameInfo { + font-family: dh-0-5-5-0-1-1-1-0-5-4-5-0; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tr, +.x-window-header-default-right-br, +.x-window-header-default-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl, +.x-window-header-default-right-bl, +.x-window-header-default-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl, +.x-window-header-default-right-bl, +.x-window-header-default-right-tr, +.x-window-header-default-right-br, +.x-window-header-default-right-tc, +.x-window-header-default-right-bc, +.x-window-header-default-right-ml, +.x-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-window-header-default-right-tl, .x-rtl.x-window-header-default-right-ml, .x-rtl.x-window-header-default-right-bl, .x-rtl.x-window-header-default-right-tr, .x-rtl.x-window-header-default-right-mr, .x-rtl.x-window-header-default-right-br { + background-image: url(images/window-header/window-header-default-right-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-ml, +.x-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mc { + padding: 1px 0px 1px 0; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-right-tl, +.x-strict .x-ie7 .x-window-header-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 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: 0 5px 4px 5px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-bottom-frameInfo { + font-family: dh-0-0-5-5-0-1-1-1-0-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tr, +.x-window-header-default-bottom-br, +.x-window-header-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl, +.x-window-header-default-bottom-bl, +.x-window-header-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl, +.x-window-header-default-bottom-bl, +.x-window-header-default-bottom-tr, +.x-window-header-default-bottom-br, +.x-window-header-default-bottom-tc, +.x-window-header-default-bottom-bc, +.x-window-header-default-bottom-ml, +.x-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-ml, +.x-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mc { + padding: 0 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-bottom-tl, +.x-strict .x-ie7 .x-window-header-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left { + -moz-border-radius-topleft: 5px; + -webkit-border-top-left-radius: 5px; + border-top-left-radius: 5px; + -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: 5px; + -webkit-border-bottom-left-radius: 5px; + border-bottom-left-radius: 5px; + padding: 5px 0 5px 4px; + border-width: 1px 0 1px 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-left-frameInfo { + font-family: dh-5-0-0-5-1-0-1-1-5-0-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tr, +.x-window-header-default-left-br, +.x-window-header-default-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl, +.x-window-header-default-left-bl, +.x-window-header-default-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl, +.x-window-header-default-left-bl, +.x-window-header-default-left-tr, +.x-window-header-default-left-br, +.x-window-header-default-left-tc, +.x-window-header-default-left-bc, +.x-window-header-default-left-ml, +.x-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-window-header-default-left-tl, .x-rtl.x-window-header-default-left-ml, .x-rtl.x-window-header-default-left-bl, .x-rtl.x-window-header-default-left-tr, .x-rtl.x-window-header-default-left-mr, .x-rtl.x-window-header-default-left-br { + background-image: url(images/window-header/window-header-default-left-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-ml, +.x-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mc { + padding: 1px 0 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-left-tl, +.x-strict .x-ie7 .x-window-header-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-top-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tr, +.x-window-header-default-collapsed-top-br, +.x-window-header-default-collapsed-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl, +.x-window-header-default-collapsed-top-bl, +.x-window-header-default-collapsed-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl, +.x-window-header-default-collapsed-top-bl, +.x-window-header-default-collapsed-top-tr, +.x-window-header-default-collapsed-top-br, +.x-window-header-default-collapsed-top-tc, +.x-window-header-default-collapsed-top-bc, +.x-window-header-default-collapsed-top-ml, +.x-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-ml, +.x-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-right-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-5-4-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tr, +.x-window-header-default-collapsed-right-br, +.x-window-header-default-collapsed-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl, +.x-window-header-default-collapsed-right-bl, +.x-window-header-default-collapsed-right-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl, +.x-window-header-default-collapsed-right-bl, +.x-window-header-default-collapsed-right-tr, +.x-window-header-default-collapsed-right-br, +.x-window-header-default-collapsed-right-tc, +.x-window-header-default-collapsed-right-bc, +.x-window-header-default-collapsed-right-ml, +.x-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-window-header-default-collapsed-right-tl, .x-rtl.x-window-header-default-collapsed-right-ml, .x-rtl.x-window-header-default-collapsed-right-bl, .x-rtl.x-window-header-default-collapsed-right-tr, .x-rtl.x-window-header-default-collapsed-right-mr, .x-rtl.x-window-header-default-collapsed-right-br { + background-image: url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-ml, +.x-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mc { + padding: 1px 0px 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-bottom-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tr, +.x-window-header-default-collapsed-bottom-br, +.x-window-header-default-collapsed-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl, +.x-window-header-default-collapsed-bottom-bl, +.x-window-header-default-collapsed-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl, +.x-window-header-default-collapsed-bottom-bl, +.x-window-header-default-collapsed-bottom-tr, +.x-window-header-default-collapsed-bottom-br, +.x-window-header-default-collapsed-bottom-tc, +.x-window-header-default-collapsed-bottom-bc, +.x-window-header-default-collapsed-bottom-ml, +.x-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-ml, +.x-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-color: #ced9e7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mc { + background-color: #ced9e7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-left-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-5-4-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tr, +.x-window-header-default-collapsed-left-br, +.x-window-header-default-collapsed-left-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl, +.x-window-header-default-collapsed-left-bl, +.x-window-header-default-collapsed-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl, +.x-window-header-default-collapsed-left-bl, +.x-window-header-default-collapsed-left-tr, +.x-window-header-default-collapsed-left-br, +.x-window-header-default-collapsed-left-tc, +.x-window-header-default-collapsed-left-bc, +.x-window-header-default-collapsed-left-ml, +.x-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-window-header-default-collapsed-left-tl, .x-rtl.x-window-header-default-collapsed-left-ml, .x-rtl.x-window-header-default-collapsed-left-bl, .x-rtl.x-window-header-default-collapsed-left-tr, .x-rtl.x-window-header-default-collapsed-left-mr, .x-rtl.x-window-header-default-collapsed-left-br { + background-image: url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-ml, +.x-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mc { + padding: 1px 0px 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 337, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-top { + -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; +} + +/* line 341, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-right { + -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset; +} + +/* line 345, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-bottom { + -webkit-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 -1px 0px 0 inset, #ecf2fb -1px 0 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-left { + -webkit-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + -moz-box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; + box-shadow: #ecf2fb 0 1px 0px 0 inset, #ecf2fb 0 -1px 0px 0 inset, #ecf2fb 1px 0 0px 0 inset; +} + +/* line 355, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-window-header-icon { + width: 16px; + height: 16px; + color: #04468c; + font-size: 16px; + line-height: 16px; + background-position: center center; +} +/* line 364, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-window-header-glyph { + color: #04468c; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 380, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-ie8m .x-window-header-default .x-window-header-glyph { + color: #698fb9; +} + +/* line 388, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-window-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 393, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-rtl.x-window-header-icon-before-title { + margin: 0 0 0 2px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-window-header-icon-after-title { + margin: 0 0 0 2px; +} +/* line 403, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-rtl.x-window-header-icon-after-title { + margin: 0 2px 0 0; +} + +/* line 410, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 415, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-rtl.x-window-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 420, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-icon-after-title { + margin: 2px 0 0 0; +} +/* line 425, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-rtl.x-window-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 433, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-tool-after-title { + margin: 0 0 0 2px; +} +/* line 438, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-rtl.x-tool-after-title { + margin: 0 2px 0 0; +} +/* line 443, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-tool-before-title { + margin: 0 2px 0 0; +} +/* line 448, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-rtl.x-tool-before-title { + margin: 0 0 0 2px; +} + +/* line 455, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 460, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-rtl.x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 465, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-tool-before-title { + margin: 0 0 2px 0; +} +/* line 470, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-rtl.x-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 483, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-collapsed .x-window-header { + border-width: 1px !important; +} + +/* line 489, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-nbr .x-window-default-collapsed .x-window-header { + border-width: 0 !important; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-invalid-under { + padding: 2px 2px 2px 20px; + color: #c0272b; + font: normal 11px tahoma, arial, verdana, sans-serif; + line-height: 16px; + background: no-repeat 0 2px; + background-image: url(images/form/exclamation.gif); +} + +/* line 14, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +div.x-lbl-top-err-icon { + margin-bottom: 3px; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-invalid-icon { + width: 16px; + height: 16px; + margin: 0 1px; + background-image: url(images/form/exclamation.gif); + background-repeat: no-repeat; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-item-label { + color: black; + font: normal 12px/14px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} +/* line 31, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-toolbar-item .x-form-item-label { + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} + +/* line 45, ../../../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; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-ie6 .x-form-form-item td { + border-top-width: 0; +} +/* line 59, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-ie6 td.x-form-item-pad { + height: 5px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-field { + color: black; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-item, +.x-form-field { + font: normal 12px tahoma, arial, verdana, sans-serif; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-type-text textarea.x-form-invalid-field, .x-form-type-text input.x-form-invalid-field, +.x-form-type-password textarea.x-form-invalid-field, +.x-form-type-password input.x-form-invalid-field, +.x-form-type-number textarea.x-form-invalid-field, +.x-form-type-number input.x-form-invalid-field, +.x-form-type-email textarea.x-form-invalid-field, +.x-form-type-email input.x-form-invalid-field, +.x-form-type-search textarea.x-form-invalid-field, +.x-form-type-search input.x-form-invalid-field, +.x-form-type-tel textarea.x-form-invalid-field, +.x-form-type-tel input.x-form-invalid-field { + background-color: white; + background-image: url(images/grid/invalid_line.gif); + background-repeat: repeat-x; + background-position: bottom; + border-color: #cc3300; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-item-disabled .x-form-item-label, +.x-item-disabled .x-form-field, +.x-item-disabled .x-form-display-field, +.x-item-disabled .x-form-cb-label, +.x-item-disabled .x-form-trigger { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-text { + color: black; + padding: 1px 3px 2px 3px; + background: white repeat-x 0 0; + border-width: 1px; + border-style: solid; + border-color: #b5b8c8; + background-image: url(images/form/text-bg.gif); + height: 22px; + line-height: 17px; +} +/* line 14, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-field-toolbar .x-form-text { + height: 20px; + line-height: 15px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-content-box .x-form-text { + height: 17px; +} +/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-content-box .x-field-toolbar .x-form-text { + height: 15px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-focus { + border-color: #7eadd9; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-empty-field, +textarea.x-form-empty-field { + color: gray; +} + +/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-quirks .x-ie .x-form-text, +.x-ie7m .x-form-text { + margin-top: -1px; + margin-bottom: -1px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/TextArea.scss */ +.x-form-textarea { + line-height: normal; + height: auto; + background-image: url(images/form/text-bg.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-form-display-field-body { + height: 22px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-toolbar-item .x-form-display-field-body { + height: 20px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-form-display-field { + font: normal 12px/14px tahoma, arial, verdana, sans-serif; + color: black; + margin-top: 4px; +} +/* line 17, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-toolbar-item .x-form-display-field { + margin-top: 4px; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box .x-window-body { + background-color: #ced9e7; + border-width: 0; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-info, +.x-message-box-warning, +.x-message-box-question, +.x-message-box-error { + background-position: top left; + background-repeat: no-repeat; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-rtl.x-message-box-info, .x-rtl.x-message-box-warning, .x-rtl.x-message-box-question, .x-rtl.x-message-box-error { + background-position: top left; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-info { + background-image: url(images/shared/icon-info.gif); +} + +/* line 33, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-warning { + background-image: url(images/shared/icon-warning.gif); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-question { + background-image: url(images/shared/icon-question.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-error { + background-image: url(images/shared/icon-error.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-wrap { + height: 22px; +} +/* line 4, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-toolbar-item .x-form-cb-wrap { + height: 20px; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb { + margin-top: 5px; +} +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-toolbar-item .x-form-cb { + margin-top: 4px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-checkbox { + width: 13px; + height: 13px; + background: url(images/form/checkbox.gif) no-repeat; +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-checked .x-form-checkbox { + background-position: 0 -13px; +} + +/* Focused */ +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-checkbox-focus { + background-position: -13px 0; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-checked .x-form-checkbox-focus { + background-position: -13px -13px; +} + +/* boxLabel */ +/* line 40, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label { + margin-top: 4px; + font: normal 12px/14px tahoma, arial, verdana, sans-serif; +} +/* line 43, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-toolbar-item .x-form-cb-label { + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label-before { + margin-right: 4px; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-rtl.x-field .x-form-cb-label-before { + margin-right: 0; + margin-left: 4px; +} + +/* line 64, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label-after { + margin-left: 4px; +} + +/* line 69, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-rtl.x-field .x-form-cb-label-after { + margin-left: 0; + margin-right: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-checkboxgroup-body { + padding: 0 4px; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-invalid .x-form-checkboxgroup-body { + border: 1px solid #cc3300; + background-image: url(images/grid/invalid_line.gif); + background-repeat: repeat-x; + background-position: bottom; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-check-group-alt { + background: #d1ddef; + border-top: 1px dotted #b5b8c8; + border-bottom: 1px dotted #b5b8c8; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-check-group-label { + color: black; + padding: 2px; + margin: 0 30px 5px 0; + border-width: 0 0 1px 0; + border-style: solid; + border-color: black; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-rtl.x-form-check-group-label { + margin: 0 0 5px 30px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset { + border: 1px solid #b5b8c8; + padding: 0 10px; + margin: 0 0 10px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie8m .x-fieldset, +.x-quirks .x-ie .x-fieldset { + padding-top: 0; +} +/* line 13, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie8m .x-fieldset .x-fieldset-body, +.x-quirks .x-ie .x-fieldset .x-fieldset-body { + padding-top: 0; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-checkbox { + line-height: 14px; + margin: 1px 3px 0 0; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header { + padding: 0 3px 1px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-tool { + margin-top: 1px; + padding: 0; +} +/* line 33, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb-wrap { + padding: 1px 0; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text { + font: 11px/14px bold tahoma, arial, verdana, sans-serif; + color: #15428b; + padding: 1px 0; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text-collapsible { + cursor: pointer; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-with-title .x-fieldset-header-checkbox, +.x-fieldset-with-title .x-tool { + margin: 1px 3px 0 0; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-with-title .x-rtl .x-fieldset-header-checkbox, +.x-fieldset-with-title .x-rtl .x-tool { + margin: 1px 0 0 3px; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-webkit .x-fieldset-header { + -webkit-padding-start: 3px; + -webkit-padding-end: 3px; +} + +/* line 76, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-opera .x-fieldset-with-legend { + margin-top: -1px; +} +/* line 79, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-opera.x-mac .x-fieldset-header-text { + padding: 2px 0 0; +} + +/* line 87, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-strict .x-ie8 .x-fieldset-header { + margin-bottom: -1px; +} +/* line 91, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-strict .x-ie8 .x-fieldset-header .x-tool, +.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text, +.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox { + position: relative; + top: -1px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-quirks .x-ie .x-fieldset-header, +.x-ie8m .x-fieldset-header { + padding-left: 1px; + padding-right: 1px; +} + +/* line 109, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-fieldset-body { + display: none; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed { + padding-bottom: 0 !important; + border-width: 1px 1px 0 1px !important; + border-left-color: transparent !important; + border-right-color: transparent !important; +} + +/* line 123, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie6 .x-fieldset-collapsed { + border-width: 1px 0 0 0 !important; + padding-bottom: 0 !important; + margin-left: 1px; + margin-right: 1px; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-bwrap { + zoom: 1; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset .x-tool-toggle { + background-position: 0 -60px; +} +/* line 144, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset .x-tool-over .x-tool-toggle { + background-position: -15px -60px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-tool-toggle { + background-position: 0 -75px; +} +/* line 156, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-tool-over .x-tool-toggle { + background-position: -15px -75px; +} + +/* IE legend positioning bug */ +/* line 164, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-noborder legend { + position: relative; + margin-bottom: 23px; +} + +/* line 170, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-noborder legend span { + position: absolute; + left: 16px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset { + overflow: hidden; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-bwrap { + overflow: hidden; + zoom: 1; +} + +/* line 186, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-body { + overflow: hidden; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-radio { + width: 13px; + height: 13px; + background: url(images/form/radio.gif) no-repeat; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-cb-checked .x-form-radio { + background-position: 0 -13px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-radio-focus { + background-position: -13px 0; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-cb-checked .x-form-radio-focus { + background-position: -13px -13px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + background: url(images/form/trigger.gif); + width: 17px; + border-width: 0 0 1px; + border-color: #b5b8c8; + border-style: solid; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-rtl.x-form-trigger-wrap .x-form-trigger { + background-image: url(images/form/trigger-rtl.gif); +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-trigger-cell { + background-color: white; + width: 17px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-over { + background-position: -17px 0; + border-color: #7eadd9; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap-focus .x-form-trigger { + background-position: -51px 0; + border-color: #7eadd9; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap-focus .x-form-trigger-over { + background-position: -68px 0; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-click, +.x-form-trigger-wrap-focus .x-form-trigger-click { + background-position: -34px 0; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-clear-trigger { + background-image: url(images/form/clear-trigger.gif); +} + +/* line 54, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-rtl.x-form-trigger-wrap .x-form-clear-trigger { + background-image: url(images/form/clear-trigger-rtl.gif); +} + +/* line 59, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-search-trigger { + background-image: url(images/form/search-trigger.gif); +} + +/* line 64, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-rtl.x-form-trigger-wrap .x-form-search-trigger { + background-image: url(images/form/search-trigger-rtl.gif); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-quirks .prefixie6 .x-form-trigger-input-cell { + height: 22px; +} +/* line 77, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-quirks .prefixie6 .x-field-toolbar .x-form-trigger-input-cell { + height: 20px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +div.x-form-spinner-up, +div.x-form-spinner-down { + background-image: url(images/form/spinner.gif); + background-color: white; + width: 17px; + height: 11px; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-rtl.x-form-trigger-wrap .x-form-spinner-up, +.x-rtl.x-form-trigger-wrap .x-form-spinner-down { + background-image: url(images/form/spinner-rtl.gif); +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-spinner-down { + background-position: 0 -11px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap-focus .x-form-spinner-down { + background-position: -51px -11px; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap .x-form-spinner-down-over { + background-position: -17px -11px; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap-focus .x-form-spinner-down-over { + background-position: -68px -11px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap .x-form-spinner-down-click { + background-position: -34px -11px; +} + +/* line 41, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item div.x-form-spinner-up, +.x-toolbar-item div.x-form-spinner-down { + background-image: url(images/form/spinner-small.gif); + height: 10px; +} +/* line 45, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-spinner-down { + background-position: 0 -10px; +} +/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down { + background-position: -51px -10px; +} +/* line 51, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-over { + background-position: -17px -10px; +} +/* line 54, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down-over { + background-position: -68px -10px; +} +/* line 57, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-click { + background-position: -34px -10px; +} + +/* line 65, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-rtl.x-form-trigger-wrap .x-form-spinner-up, +.x-toolbar-item .x-rtl.x-form-trigger-wrap .x-form-spinner-down { + background-image: url(images/form/spinner-small-rtl.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-number { + width: 30px; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-first { + background-image: url(images/grid/page-first.gif); +} + +/* line 9, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-prev { + background-image: url(images/grid/page-prev.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-next { + background-image: url(images/grid/page-next.gif); +} + +/* line 17, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-last { + background-image: url(images/grid/page-last.gif); +} + +/* line 21, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-loading { + background-image: url(images/grid/refresh.gif); +} + +/* line 27, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-first { + background-image: url(images/grid/page-first-disabled.gif); +} +/* line 31, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-prev { + background-image: url(images/grid/page-prev-disabled.gif); +} +/* line 35, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-next { + background-image: url(images/grid/page-next-disabled.gif); +} +/* line 39, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-last { + background-image: url(images/grid/page-last-disabled.gif); +} +/* line 43, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-loading { + background-image: url(images/grid/refresh-disabled.gif); +} + +/* line 51, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-rtl.x-tbar-page-first { + background-image: url(images/grid/page-last.gif); +} +/* line 55, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-rtl.x-tbar-page-prev { + background-image: url(images/grid/page-next.gif); +} +/* line 59, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-rtl.x-tbar-page-next { + background-image: url(images/grid/page-prev.gif); +} +/* line 63, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-rtl.x-tbar-page-last { + background-image: url(images/grid/page-first.gif); +} + +/* line 71, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-rtl.x-tbar-page-first { + background-image: url(images/grid/page-last-disabled.gif); +} +/* line 75, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-rtl.x-tbar-page-prev { + background-image: url(images/grid/page-next-disabled.gif); +} +/* line 79, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-rtl.x-tbar-page-next { + background-image: url(images/grid/page-prev-disabled.gif); +} +/* line 83, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-rtl.x-tbar-page-last { + background-image: url(images/grid/page-first-disabled.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist { + border-width: 1px; + border-style: solid; + border-color: #98c0f4; + background: white; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-strict .x-ie7m .x-boundlist-list-ct { + position: relative; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-item { + padding: 0 3px; + line-height: 20px; + cursor: pointer; + cursor: hand; + position: relative; + /*allow hover in IE on empty items*/ + zoom: 1; + border-width: 1px; + border-style: dotted; + border-color: white; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-selected { + background: #cbdaf0; + border-color: #8eabe4; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-item-over { + background: #dfe8f6; + border-color: #a3bae9; +} + +/* line 43, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-floating { + border-top-width: 0; +} + +/* line 47, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-above { + border-top-width: 1px; + border-bottom-width: 1px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker { + border-width: 1px; + border-style: solid; + border-color: #1b376c; + background-color: white; + width: 177px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-header { + padding: 3px 6px; + text-align: center; + background-image: none; + background-color: #23427c; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #264888), color-stop(100%, #1f3a6c)); + background-image: -webkit-linear-gradient(top, #264888, #1f3a6c); + background-image: -moz-linear-gradient(top, #264888, #1f3a6c); + background-image: -o-linear-gradient(top, #264888, #1f3a6c); + background-image: linear-gradient(top, #264888, #1f3a6c); +} + +/* line 32, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-arrow { + width: 15px; + height: 15px; + top: 6px; + cursor: pointer; + background-color: #23427c; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-datepicker-arrow:hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 55, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-next { + right: 6px; + background-image: url(images/shared/right-btn.gif); +} + +/* line 60, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-prev { + left: 6px; + background-image: url(images/shared/left-btn.gif); +} + +/* line 76, ../../../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 83, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-month .x-btn-inner { + color: white; +} +/* line 88, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-month .x-btn-split-right { + background-image: url(images/button/s-arrow-light.gif); + padding-right: 12px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-column-header { + width: 25px; + color: #233d6d; + font: normal 10px tahoma, arial, verdana, sans-serif; + text-align: right; + border-width: 0 0 1px; + border-style: solid; + border-color: #b2d1f5; + background-image: none; + background-color: #dfecfb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #edf4fd), color-stop(100%, #cde1f9)); + background-image: -webkit-linear-gradient(top, #edf4fd, #cde1f9); + background-image: -moz-linear-gradient(top, #edf4fd, #cde1f9); + background-image: -o-linear-gradient(top, #edf4fd, #cde1f9); + background-image: linear-gradient(top, #edf4fd, #cde1f9); +} + +/* line 113, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-column-header-inner { + line-height: 19px; + padding: 0 7px 0 0; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-cell { + text-align: right; + border-width: 1px; + border-style: solid; + border-color: white; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-date { + padding: 0 4px 0 0; + font: normal 11px tahoma, arial, verdana, sans-serif; + color: black; + cursor: pointer; + line-height: 18px; +} + +/* line 138, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-datepicker-date:hover { + color: black; + background-color: #ddecfe; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-selected { + border-style: solid; + border-color: #8db2e3; +} +/* line 146, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-selected .x-datepicker-date { + background-color: #dae5f3; + font-weight: bold; +} + +/* line 152, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-today { + border-color: darkred; + border-style: solid; +} + +/* line 159, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-prevday .x-datepicker-date, +.x-datepicker-nextday .x-datepicker-date { + color: #aaaaaa; +} + +/* line 166, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-disabled a.x-datepicker-date { + background-color: #eeeeee; + cursor: default; + color: #bbbbbb; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-disabled a.x-datepicker-date:hover { + background-color: #eeeeee; +} + +/* line 179, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-footer, +.x-monthpicker-buttons { + padding: 4px 0; + border-width: 1px 0 0; + border-style: solid; + border-color: #b2d1f5; + background-image: none; + background-color: #dfecfb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dee8f5), color-stop(49%, #d1dff0), color-stop(51%, #c7d8ed), color-stop(100%, #cbdaee)); + background-image: -webkit-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee); + background-image: -moz-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee); + background-image: -o-linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee); + background-image: linear-gradient(top, #dee8f5, #d1dff0 49%, #c7d8ed 51%, #cbdaee); + text-align: center; +} +/* line 195, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-footer .x-btn, +.x-monthpicker-buttons .x-btn { + margin: 0 2px 0 2px; +} + +/* line 201, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker { + width: 177px; + border-width: 1px; + border-style: solid; + border-color: #1b376c; + background-color: white; +} + +/* line 211, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-months { + border-width: 0 1px 0 0; + border-color: #1b376c; + border-style: solid; + width: 87px; +} +/* line 220, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-months .x-monthpicker-item { + width: 43px; +} + +/* line 225, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-years { + width: 88px; +} +/* line 228, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-years .x-monthpicker-item { + width: 44px; +} + +/* line 233, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-item { + margin: 5px 0 4px; + font: normal 11px tahoma, arial, verdana, sans-serif; + text-align: center; +} + +/* line 239, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-item-inner { + margin: 0 5px 0 5px; + color: #15428b; + border-width: 1px; + border-style: solid; + border-color: white; + line-height: 16px; + cursor: pointer; +} + +/* line 254, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-monthpicker-item-inner:hover { + background-color: #ddecfe; +} + +/* line 258, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-selected { + background-color: #dae5f3; + border-style: solid; + border-color: #8db2e3; +} + +/* line 264, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav { + height: 27px; +} + +/* line 268, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button-ct { + width: 44px; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button { + height: 15px; + width: 15px; + cursor: pointer; + margin-top: 6px; + background-color: white; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-next { + background-image: url(images/tools/tool-sprites.gif); + background-position: 0 -120px; +} + +/* line 299, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-next-over { + background-position: -15px -120px; +} + +/* line 303, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-prev { + background-image: url(images/tools/tool-sprites.gif); + background-position: 0 -105px; +} + +/* line 308, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-prev-over { + background-position: -15px -105px; +} + +/* line 313, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-item { + margin: 2px 0 2px; +} +/* line 317, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-item-inner { + margin: 0 5px 0 5px; +} +/* line 321, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-yearnav { + height: 22px; +} +/* line 325, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-yearnav-button { + margin-top: 3px; +} + +/* line 334, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-nlg .x-datepicker-header { + background-image: url(images/datepicker/datepicker-header-bg.gif); + background-repeat: repeat-x; + background-position: top left; +} +/* line 343, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-nlg .x-datepicker-footer, +.x-nlg .x-monthpicker-buttons { + background-image: url(images/datepicker/datepicker-footer-bg.gif); + background-repeat: repeat-x; + background-position: top left; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-datepicker-header:after { + display: none; + content: "x-slicer:bg:url(images/datepicker/datepicker-header-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-datepicker-footer:after { + display: none; + content: "x-slicer:bg:url(images/datepicker/datepicker-footer-bg.gif)"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */ +.x-form-date-trigger { + background-image: url(images/form/date-trigger.gif); +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */ +.x-rtl.x-form-trigger-wrap .x-form-date-trigger { + background-image: url(images/form/date-trigger-rtl.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/File.scss */ +.x-form-file-wrap .x-form-text { + color: gray; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker { + width: 144px; + height: 90px; + background-color: white; + border-color: white; + border-width: 0; + border-style: solid; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-item { + width: 18px; + height: 18px; + border-width: 1px; + border-color: white; + border-style: solid; + background-color: white; + cursor: pointer; + padding: 2px; +} +/* line 20, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-content-box .x-color-picker-item { + width: 12px; + height: 12px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +a.x-color-picker-item:hover { + border-color: #8bb8f3; + background-color: #deecfd; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-selected { + border-color: #8bb8f3; + background-color: #deecfd; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-item-inner { + line-height: 10px; + border-color: #aca899; + border-width: 1px; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-btn-text { + background: transparent no-repeat; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-bold, +.x-menu-item div.x-edit-bold { + background-position: 0 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-italic, +.x-menu-item div.x-edit-italic { + background-position: -16px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-underline, +.x-menu-item div.x-edit-underline { + background-position: -32px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-forecolor, +.x-menu-item div.x-edit-forecolor { + background-position: -160px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 31, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-backcolor, +.x-menu-item div.x-edit-backcolor { + background-position: -176px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifyleft, +.x-menu-item div.x-edit-justifyleft { + background-position: -112px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifycenter, +.x-menu-item div.x-edit-justifycenter { + background-position: -128px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifyright, +.x-menu-item div.x-edit-justifyright { + background-position: -144px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 55, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-insertorderedlist, +.x-menu-item div.x-edit-insertorderedlist { + background-position: -80px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 61, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-insertunorderedlist, +.x-menu-item div.x-edit-insertunorderedlist { + background-position: -96px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 67, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-increasefontsize, +.x-menu-item div.x-edit-increasefontsize { + background-position: -48px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-decreasefontsize, +.x-menu-item div.x-edit-decreasefontsize { + background-position: -64px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 79, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-sourceedit, +.x-menu-item div.x-edit-sourceedit { + background-position: -192px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 85, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-createlink, +.x-menu-item div.x-edit-createlink { + background-position: -208px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 90, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tip .x-tip-bd .x-tip-bd-inner { + padding: 5px; + padding-bottom: 1px; +} + +/* line 95, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-font-select { + font-size: 11px; + font-family: inherit; +} + +/* line 100, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-wrap textarea { + font: normal 12px tahoma, arial, verdana, sans-serif; + background-color: white; + resize: none; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-body { + background: white; + border-width: 1px; + border-style: solid; + border-color: #99bce8; +} + +/* line 8, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-empty { + padding: 10px; + color: gray; + background-color: white; + font: normal 11px tahoma, arial, verdana, sans-serif; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell { + color: null; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + background-color: white; + border-color: #ededed #d0d0d0 #ededed #d0d0d0; + border-style: solid; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-alt .x-grid-td { + background-color: #fafafa; +} +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-over .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #dddddd; +} +/* line 35, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-over .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #dddddd; +} +/* line 40, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-selected .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #a3bae9; +} +/* line 45, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #a3bae9; +} +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-focused .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #464646; + border-bottom-width: 1px; +} +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-td { + background-color: #efefef; +} +/* line 65, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-over .x-grid-td { + background-color: #efefef; +} +/* line 73, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-td { + background-color: #dfe8f6; +} +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #464646; + border-bottom-width: 1px; +} +/* line 92, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-table .x-grid-row-focused-first .x-grid-td { + border-top: 1px dotted #464646; +} +/* line 103, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-row-summary .x-grid-td { + border-bottom-color: #dfe8f6; + border-top-width: 0; +} +/* line 108, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-row-summary .x-grid-td { + border-bottom-color: #efefef; + border-top-width: 0; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-td { + border-bottom-width: 1px; +} +/* line 121, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table { + border-top: 1px solid white; +} +/* line 125, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table-over-first { + border-top-style: solid; + border-top-color: #dddddd; +} +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table-selected-first { + border-top-style: dotted; + border-top-color: #a3bae9; +} + +/* line 139, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-body .x-grid-table-focused-first { + border-top: 1px dotted #464646; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell-inner { + text-overflow: ellipsis; + padding: 3px 6px 4px 6px; +} + +/* line 163, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner { + padding-top: 2px; + padding-bottom: 3px; +} + +/* line 178, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell-special { + border-color: #ededed #d0d0d0 #ededed #d0d0d0; + border-style: solid; + border-right-width: 1px; + background-image: none; + background-color: #f6f6f6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: -moz-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: -o-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: linear-gradient(top, #f6f6f6, #e9e9e9); + /**/ + /**/ + /* */ + /**/ + /**/ + /* */ +} +/* line 191, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-cell-special { + border-right-color: #ededed #aaccf6; + background-image: none; + background-color: #dfe8f6; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dfe8f6), color-stop(100%, #cbdaf0)); + background-image: -webkit-linear-gradient(left, #dfe8f6, #cbdaf0); + background-image: -moz-linear-gradient(left, #dfe8f6, #cbdaf0); + background-image: -o-linear-gradient(left, #dfe8f6, #cbdaf0); + background-image: linear-gradient(left, #dfe8f6, #cbdaf0); +} +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-nlg .x-grid-cell-special { + background-repeat: repeat-y; + background-image: url(images/grid/cell-special-bg.gif); +} +/* line 211, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-nlg .x-grid-row-selected .x-grid-cell-special { + background-image: url(images/grid/cell-special-selected-bg.gif); +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-cell-special .x-grid-cell-special:after { + display: none; + content: "x-slicer:bg:url(images/grid/cell-special-bg.gif)"; +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-cell-special .x-grid-cell-special-selected:after { + display: none; + content: "x-slicer:bg:url(images/grid/cell-special-selected-bg.gif)"; +} + +/* line 221, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-rtl.x-grid-cell-special { + border-right-width: 0; + border-left-width: 1px; +} + +/* line 228, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-dirty-cell { + background: url(images/grid/dirty.gif) no-repeat 0 0; +} + +/* line 233, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-rtl.x-grid-dirty-cell { + background-image: url(images/grid/dirty-rtl.gif); + background-position: right 0; +} + +/* line 241, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row .x-grid-cell-selected { + color: null; + background-color: #b8cfee; +} + +/* line 247, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-col-lines .x-grid-cell { + border-right-width: 1px; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-rtl.x-grid-with-col-lines .x-grid-cell { + border-right-width: 0; + border-left-width: 1px; +} + +/* line 259, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-resize-marker { + width: 1px; + background-color: #0f0f0f; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator { + position: absolute; + height: 1px; + line-height: 0px; + background-color: #77BC71; + overflow: visible; + pointer-events: none; +} +/* line 9, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator .x-grid-drop-indicator-left { + position: absolute; + top: -8px; + left: -12px; + background-image: url(images/grid/dd-insert-arrow-right.png); + height: 16px; + width: 16px; +} +/* line 18, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator .x-grid-drop-indicator-right { + position: absolute; + top: -8px; + right: -11px; + background-image: url(images/grid/dd-insert-arrow-left.png); + height: 16px; + width: 16px; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-ie6 .x-grid-drop-indicator-left { + background-image: url(images/grid/dd-insert-arrow-right.gif); +} +/* line 33, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-ie6 .x-grid-drop-indicator-right { + background-image: url(images/grid/dd-insert-arrow-left.gif); +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + width: 9px; + height: 9px; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top { + background-image: url(images/grid/col-move-top.gif); +} + +/* line 11, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-bottom { + background-image: url(images/grid/col-move-bottom.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-grid-header-ct { + border: 1px solid #99bce8; + border-bottom-color: #c5c5c5; + background-color: #c5c5c5; + background-image: none; + background-color: #c5c5c5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #e3e4e6)); + background-image: -webkit-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -moz-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -o-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: linear-gradient(top, #f9f9f9, #e3e4e6); +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-accordion-item .x-grid-header-ct { + border-width: 0 0 1px !important; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-accordion-item .x-grid-header-ct-hidden { + border: 0 !important; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-grid-body { + border-top-color: #c5c5c5; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-hmenu-sort-asc .x-menu-item-icon { + background-image: url(images/grid/hmenu-asc.gif); +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-hmenu-sort-desc .x-menu-item-icon { + background-image: url(images/grid/hmenu-desc.gif); +} + +/* line 40, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-cols-icon .x-menu-item-icon { + background-image: url(images/grid/columns.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header { + border-right: 1px solid #c5c5c5; + color: black; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + background-image: none; + background-color: #c5c5c5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #e3e4e6)); + background-image: -webkit-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -moz-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -o-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: linear-gradient(top, #f9f9f9, #e3e4e6); +} + +/* line 18, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header { + border-right: 0 none; + border-left: 1px solid #c5c5c5; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-group-sub-header { + background: transparent; + border-top: 1px solid #c5c5c5; +} +/* line 29, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-group-sub-header .x-column-header-inner { + padding: 3px 6px 5px 6px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-inner { + padding: 4px 6px 5px 6px; + text-overflow: ellipsis; +} + +/* line 42, ../../../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: #aaccf6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ebf3fd), color-stop(39%, #ebf3fd), color-stop(40%, #d9e8fb), color-stop(100%, #d9e8fb)); + background-image: -webkit-linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb); + background-image: -moz-linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb); + background-image: -o-linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb); + background-image: linear-gradient(top, #ebf3fd, #ebf3fd 39%, #d9e8fb 40%, #d9e8fb); +} + +/* line 51, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-nlg .x-grid-header-ct, +.x-nlg .x-column-header { + background-image: url(images/grid/column-header-bg.gif); +} + +/* line 62, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-nlg .x-column-header-over, +.x-nlg .x-column-header-sort-ASC, +.x-nlg .x-column-header-sort-DESC { + background-image: url(images/grid/column-header-over-bg.gif); +} + +/* line 70, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-open { + background-color: transparent; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-open .x-column-header-trigger { + background-color: transparent; +} + +/* line 78, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-trigger { + width: 14px; + cursor: pointer; + background-color: transparent; + background-position: 0 center; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-trigger { + background-position: right center; +} + +/* line 96, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-align-right .x-column-header-text { + margin-right: 9px; +} + +/* line 101, ../../../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: 9px; +} + +/* line 110, ../../../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: 12px; + background-position: right center; +} + +/* line 119, ../../../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: 12px; + background-position: 0 center; +} + +/* line 127, ../../../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.gif); +} + +/* line 130, ../../../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.gif); +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-column-header:after { + display: none; + content: "x-slicer:bg:url(images/grid/column-header-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-column-header-over:after { + display: none; + content: "x-slicer:bg:url(images/grid/column-header-over-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-grid-cell-inner-action-col { + padding: 2px 2px 2px 2px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-action-col { + padding-top: 1px; + padding-bottom: 1px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-action-col-cell .x-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-action-col-icon { + height: 16px; + width: 16px; + cursor: pointer; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-cell-inner-checkcolumn { + padding: 4px 6px 3px 6px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-checkcolumn { + padding-top: 3px; + padding-bottom: 2px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-checkcolumn { + width: 13px; + height: 13px; + background: url(images/form/checkbox.gif) 0 0 no-repeat; +} +/* line 17, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-item-disabled .x-grid-checkcolumn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-checkcolumn-checked { + background-position: 0 -13px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/RowNumberer.scss */ +.x-grid-cell-inner-row-numberer { + padding: 3px 5px 4px 3px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd { + border-width: 0 0 2px 0; + border-style: solid; + border-color: #99bbe8; + padding: 10px 4px 4px 4px; + background: white; + cursor: pointer; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-not-collapsible { + cursor: default; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-collapsible .x-grid-group-title { + background-repeat: no-repeat; + background-position: left center; + background-image: url(images/grid/group-collapse.gif); + padding: 0 0 0 14px; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-rtl.x-grid-view .x-grid-group-hd-collapsible .x-grid-group-title { + background-position: right center; + padding: 0 14px 0 0; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-title { + color: #3764a0; + font: bold 11px/13px tahoma, arial, verdana, sans-serif; +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-collapsed .x-grid-group-title { + background-image: url(images/grid/group-expand.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-collapsed .x-grid-group-title { + background-image: url(images/grid/group-expand.gif); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-group-by-icon { + background-image: url(images/grid/group-by.gif); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-show-groups-icon { + background-image: url(images/grid/group-by.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ +.x-grid-rowbody { + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + padding: 5px 6px 5px 6px; +} +/* line 6, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-rowbody { + padding-top: 6px; + padding-bottom: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowWrap.scss */ +.x-grid-rowwrap { + border-color: #ededed #d0d0d0 #ededed #d0d0d0; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-summary-bottom { + border-bottom-color: #c5c5c5; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-docked-summary { + border-width: 1px; + border-color: #99bce8; + border-style: solid; +} +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-docked-summary .x-grid-table { + width: 100%; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-grid-row-summary .x-grid-cell, +.x-grid-row-summary .x-grid-rowwrap, +.x-grid-row-summary .x-grid-cell-rowbody { + border-color: #ededed #d0d0d0 #ededed #d0d0d0; + background-color: transparent !important; + border-top-width: 0; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-grid-with-row-lines .x-grid-table-summary { + border: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-grid-locked .x-grid-inner-locked { + border-width: 0 1px 0 0; + border-style: solid; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-grid-locked .x-rtl.x-grid-inner-locked { + border-width: 0 0 0 1px; +} + +/* line 17, ../../../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 21, ../../../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 29, ../../../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 32, ../../../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 39, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-hmenu-lock .x-menu-item-icon { + background-image: url(images/grid/hmenu-lock.gif); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-hmenu-unlock .x-menu-item-icon { + background-image: url(images/grid/hmenu-unlock.gif); +} + +/* line 4, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-text { + font: normal 11px/15px tahoma, arial, verdana, sans-serif; + padding: 1px 5px 2px 5px; + height: 20px; +} +/* line 15, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-content-box .x-grid-editor .x-form-text { + height: 15px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-gecko .x-grid-editor .x-form-text { + padding-left: 4px; + padding-right: 4px; +} +/* line 31, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-trigger { + height: 20px; +} +/* line 39, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-spinner-up, .x-grid-editor .x-form-spinner-down { + height: 10px; +} +/* line 47, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb { + margin-top: 4px; +} +/* line 51, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb-wrap { + height: 20px; +} +/* line 58, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field-body { + height: 20px; +} +/* line 62, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field { + font: normal 11px/15px tahoma, arial, verdana, sans-serif; + padding: 2px 6px 3px 6px; + text-overflow: ellipsis; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-action-col-field { + padding: 2px 2px 2px 2px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x-tree-cell-editor .x-form-text { + padding-left: 2px; + padding-right: 2px; +} +/* line 8, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x-gecko .x-tree-cell-editor .x-form-text { + padding-left: 1px; + padding-right: 1px; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-field { + margin: 0 1px 0 1px; +} +/* line 7, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-display-field { + padding: 2px 5px 3px 5px; +} +/* line 16, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-action-col-field { + padding: 2px 1px 2px 1px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-text { + padding: 1px 4px 2px 4px; +} +/* line 30, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-gecko .x-grid-row-editor .x-form-text { + padding-left: 3px; + padding-right: 3px; +} +/* line 38, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-panel-body { + border-top: 1px solid #99bce8 !important; + border-bottom: 1px solid #99bce8 !important; + padding: 4px 0 4px 0; + background-color: #eaf1fb; +} +/* line 48, ../../../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 53, ../../../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 137, ../../../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: 4px 4px 4px 4px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-color: #eaf1fb; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mc { + background-color: #eaf1fb; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-grid-row-editor-buttons-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-grid-row-editor-buttons-default-bottom-frameInfo { + font-family: th-0-0-5-5-0-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tr, +.x-grid-row-editor-buttons-default-bottom-br, +.x-grid-row-editor-buttons-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl, +.x-grid-row-editor-buttons-default-bottom-bl, +.x-grid-row-editor-buttons-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl, +.x-grid-row-editor-buttons-default-bottom-bl, +.x-grid-row-editor-buttons-default-bottom-tr, +.x-grid-row-editor-buttons-default-bottom-br, +.x-grid-row-editor-buttons-default-bottom-tc, +.x-grid-row-editor-buttons-default-bottom-bc, +.x-grid-row-editor-buttons-default-bottom-ml, +.x-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-ml, +.x-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mc { + padding: 4px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-tl, +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-row-editor-buttons-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 4px 4px 4px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #eaf1fb; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mc { + background-color: #eaf1fb; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-grid-row-editor-buttons-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-grid-row-editor-buttons-default-top-frameInfo { + font-family: th-5-5-0-0-1-1-0-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tr, +.x-grid-row-editor-buttons-default-top-br, +.x-grid-row-editor-buttons-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl, +.x-grid-row-editor-buttons-default-top-bl, +.x-grid-row-editor-buttons-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl, +.x-grid-row-editor-buttons-default-top-bl, +.x-grid-row-editor-buttons-default-top-tr, +.x-grid-row-editor-buttons-default-top-br, +.x-grid-row-editor-buttons-default-top-tc, +.x-grid-row-editor-buttons-default-top-bc, +.x-grid-row-editor-buttons-default-top-ml, +.x-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-ml, +.x-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mc { + padding: 0px 0px 4px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-tl, +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-row-editor-buttons-default-top:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 97, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons-default-bottom { + top: 29px; +} + +/* line 103, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons-default-top { + bottom: 29px; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons { + border-color: #99bce8; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-row-editor-update-button { + margin-right: 2px; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-row-editor-cancel-button { + margin-left: 2px; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-rtl.x-row-editor-update-button { + margin-left: 2px; + margin-right: auto; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-rtl.x-row-editor-cancel-button { + margin-right: 2px; + margin-left: auto; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-errors .x-tip-body { + padding: 5px; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-errors-item { + list-style: disc; + margin-left: 15px; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-rtl.x-grid-row-editor-errors .x-grid-row-editor-errors-item { + margin-left: 0; + margin-right: 15px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-cell-inner-row-expander { + padding: 6px 7px 5px 7px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-row-expander { + padding-top: 5px; + padding-bottom: 4px; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-expander { + width: 9px; + height: 9px; + cursor: pointer; + background-image: url(images/grid/group-collapse.gif); +} +/* line 20, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-collapsed .x-grid-row-expander { + background-image: url(images/grid/group-expand.gif); +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/property/Grid.scss */ +.x-grid-cell-inner-property-name { + background-image: url(images/grid/property-cell-bg.gif); + background-repeat: no-repeat; + background-position: -16px 2px; + padding-left: 12px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-layout-ct { + background-color: white; + padding: 0; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-panel-header-text-container { + color: black; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + text-transform: none; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item { + margin: 0; +} +/* line 16, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd { + background: #d9e7f8; + border-top-color: #f3f7fb; + padding: 4px 5px 5px 5px; +} +/* line 22, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd-sibling-expanded { + border-top-color: #99bce8; +} +/* line 26, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd-last-collapsed { + border-bottom-color: #d9e7f8; +} +/* line 30, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-body { + border-width: 0; +} + +/* line 37, ../../../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 -255px; +} +/* line 42, ../../../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 -240px; +} +/* line 50, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-over .x-tool-collapse-top, +.x-accordion-hd .x-tool-over .x-tool-collapse-bottom { + background-position: -15px -255px; +} +/* line 55, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-over .x-tool-expand-top, +.x-accordion-hd .x-tool-over .x-tool-expand-bottom { + background-position: -15px -240px; +} +/* line 61, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-img { + background-color: #d9e7f8; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-collapse-el { + cursor: pointer; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-left, +.x-layout-split-right { + top: 50%; + margin-top: -18px; + width: 5px; + height: 35px; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-top, +.x-layout-split-bottom { + left: 50%; + width: 35px; + height: 5px; + margin-left: -18px; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-left { + background-image: url(images/util/splitter/mini-left.gif); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-right { + background-image: url(images/util/splitter/mini-right.gif); +} + +/* line 31, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-rtl.x-layout-split-left { + background-image: url(images/util/splitter/mini-right.gif); +} +/* line 35, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-rtl.x-layout-split-right { + background-image: url(images/util/splitter/mini-left.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-top { + background-image: url(images/util/splitter/mini-top.gif); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-bottom { + background-image: url(images/util/splitter/mini-bottom.gif); +} + +/* line 50, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-left { + background-image: url(images/util/splitter/mini-right.gif); +} +/* line 54, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-right { + background-image: url(images/util/splitter/mini-left.gif); +} +/* line 60, ../../../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.gif); +} +/* line 64, ../../../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.gif); +} +/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-top { + background-image: url(images/util/splitter/mini-bottom.gif); +} +/* line 74, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-bottom { + background-image: url(images/util/splitter/mini-top.gif); +} + +/* line 79, ../../../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 83, ../../../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 1, ../../../ext-theme-neutral/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + background-color: #dfe8f6; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-body { + background: #f0f0f0; + padding: 2px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-icon-separator { + left: 24px; + border-left: solid 1px #e0e0e0; + background-color: white; + width: 2px; +} + +/* line 27, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu .x-menu-icon-separator { + left: auto; + right: 24px; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item { + padding: 1px; + cursor: pointer; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-indent { + margin-left: 30px; +} + +/* line 51, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-indent { + margin-left: 0; + margin-right: 30px; +} + +/* line 57, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-active { + background-image: none; + background-color: #d9e8fb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e7f0fc), color-stop(100%, #c7ddf9)); + background-image: -webkit-linear-gradient(top, #e7f0fc, #c7ddf9); + background-image: -moz-linear-gradient(top, #e7f0fc, #c7ddf9); + background-image: -o-linear-gradient(top, #e7f0fc, #c7ddf9); + background-image: linear-gradient(top, #e7f0fc, #c7ddf9); + border-color: #a9cbf5; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + border-width: 1px; + border-style: solid; + padding: 0; +} +/* line 75, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-nlg .x-menu-item-active { + background: #d9e8fb repeat-x left top; + background-image: url(images/menu/menu-item-active-bg.gif); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-link { + line-height: 22px; + padding: 0 0 0 30px; + display: inline-block; +} + +/* line 91, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-link { + padding: 0 30px 0 0; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-right-check-item-text { + padding-right: 22px; +} + +/* line 102, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-right-check-item-text { + padding-left: 22px; + padding-right: 0; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-icon { + width: 16px; + height: 16px; + top: 4px; + left: 3px; + background-position: center center; +} + +/* line 116, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-glyph { + font-size: 16px; + line-height: 16px; + color: #222222; + opacity: 0.5; +} +/* line 132, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie8m .x-menu-item-glyph { + color: #898989; +} + +/* line 142, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-gecko .x-menu-item-active .x-menu-item-icon, +.x-quirks .x-menu-item-active .x-menu-item-icon, +.x-ie9m .x-menu-item-active .x-menu-item-icon { + top: 3px; + left: 2px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-icon { + left: auto; + right: 3px; +} + +/* line 159, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-gecko .x-menu-item-active .x-rtl.x-menu-item-icon, +.x-quirks .x-menu-item-active .x-rtl.x-menu-item-icon, +.x-ie9m .x-menu-item-active .x-rtl.x-menu-item-icon { + left: auto; + right: 2px; +} + +/* line 168, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-icon-right { + width: 16px; + height: 16px; + top: 3px; + right: 3px; + background-position: center center; +} + +/* line 177, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-icon-right { + right: auto; + left: 3px; +} + +/* line 183, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-text { + font-size: 11px; + color: #222222; + cursor: pointer; + margin-right: 16px; +} + +/* line 193, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +a.x-rtl .x-menu-item-text { + margin-right: 0; + margin-left: 16px; +} + +/* line 201, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-checked .x-menu-item-icon, .x-menu-item-checked .x-menu-item-icon-right { + background-image: url(images/menu/checked.gif); +} +/* line 204, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-checked .x-menu-group-icon { + background-image: url(images/menu/group-checked.gif); +} + +/* line 210, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-unchecked .x-menu-item-icon, .x-menu-item-unchecked .x-menu-item-icon-right { + background-image: url(images/menu/unchecked.gif); +} +/* line 213, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-unchecked .x-menu-group-icon { + background-image: none; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-separator { + height: 2px; + border-top: solid 1px #e0e0e0; + background-color: white; + margin: 2px 0; + padding: 0; +} + +/* line 226, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-arrow { + width: 12px; + height: 9px; + top: 7px; + right: 0; + background-image: url(images/menu/menu-parent.gif); +} + +/* line 239, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-gecko .x-menu-item-active .x-menu-item-arrow, +.x-quirks .x-menu-item-active .x-menu-item-arrow, +.x-ie9m .x-menu-item-active .x-menu-item-arrow { + top: 6px; + right: -1px; +} + +/* line 246, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-arrow { + left: 0; + right: auto; + background-image: url(images/menu/menu-parent-left.gif); +} + +/* line 257, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-gecko .x-menu-item-active .x-rtl.x-menu-item-arrow, +.x-ie9m .x-menu-item-active .x-rtl.x-menu-item-arrow, +.x-quirks .x-menu-item-active .x-rtl.x-menu-item-arrow { + right: auto; + left: -1px; +} + +/* line 264, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/* line 270, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-content-box .x-menu-icon-separator { + width: 1px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-content-box .x-menu-item-separator { + height: 1px; +} + +/* line 281, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie .x-menu-item-disabled .x-menu-item-icon { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 285, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie .x-menu-item-disabled .x-menu-item-text { + background-color: transparent; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-date-item { + border-color: #99BBE8; +} + +/* line 300, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item .x-form-item-label { + font-size: 11px; + color: #222222; +} + +/* line 306, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top { + height: 8px; + background-image: url(images/menu/scroll-top.gif); +} + +/* line 310, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-bottom { + height: 8px; + background-image: url(images/menu/scroll-bottom.gif); +} + +/* line 316, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top, .x-menu-scroll-bottom { + background-color: #f0f0f0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-menu-item-link:after { + display: none; + content: "x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool { + cursor: pointer; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-img { + overflow: hidden; + width: 15px; + height: 15px; + background-image: url(images/tools/tool-sprites.gif); + margin: 0; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-placeholder { + visibility: hidden; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-close { + background-position: 0 0; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-minimize { + background-position: 0 -15px; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-maximize { + background-position: 0 -30px; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-restore { + background-position: 0 -45px; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-toggle { + background-position: 0 -60px; +} +/* line 53, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-panel-collapsed .x-tool-toggle { + background-position: 0 -75px; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-gear { + background-position: 0 -90px; +} + +/* line 62, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-prev { + background-position: 0 -105px; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-next { + background-position: 0 -120px; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-pin { + background-position: 0 -135px; +} + +/* line 74, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-unpin { + background-position: 0 -150px; +} + +/* line 78, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-right { + background-position: 0 -165px; +} + +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-left { + background-position: 0 -180px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-down { + background-position: 0 -195px; +} + +/* line 90, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-up { + background-position: 0 -210px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-refresh { + background-position: 0 -225px; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-plus { + background-position: 0 -240px; +} + +/* line 102, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-minus { + background-position: 0 -255px; +} + +/* line 106, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-search { + background-position: 0 -270px; +} + +/* line 110, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-save { + background-position: 0 -285px; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-help { + background-position: 0 -300px; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-print { + background-position: 0 -315px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand { + background-position: 0 -330px; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-collapse { + background-position: 0 -345px; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-resize { + background-position: 0 -360px; +} + +/* line 134, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-move { + background-position: 0 -375px; +} + +/* line 139, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-bottom, +.x-tool-collapse-bottom { + background-position: 0 -195px; +} + +/* line 144, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-top, +.x-tool-collapse-top { + background-position: 0 -210px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-left, +.x-tool-collapse-left { + background-position: 0 -180px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-right, +.x-tool-collapse-right { + background-position: 0 -165px; +} + +/* line 161, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-rtl.x-tool-expand-left, .x-rtl.x-tool-collapse-left { + background-position: 0 -165px; +} +/* line 166, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-rtl.x-tool-expand-right, .x-rtl.x-tool-collapse-right { + background-position: 0 -180px; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-close { + background-position: -15px 0; +} +/* line 178, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-minimize { + background-position: -15px -15px; +} +/* line 182, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-maximize { + background-position: -15px -30px; +} +/* line 186, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-restore { + background-position: -15px -45px; +} +/* line 190, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-toggle { + background-position: -15px -60px; +} +/* line 195, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-panel-collapsed .x-tool-over .x-tool-toggle { + background-position: -15px -75px; +} +/* line 200, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-gear { + background-position: -15px -90px; +} +/* line 204, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-prev { + background-position: -15px -105px; +} +/* line 208, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-next { + background-position: -15px -120px; +} +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-pin { + background-position: -15px -135px; +} +/* line 216, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-unpin { + background-position: -15px -150px; +} +/* line 220, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-right { + background-position: -15px -165px; +} +/* line 224, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-left { + background-position: -15px -180px; +} +/* line 228, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-down { + background-position: -15px -195px; +} +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-up { + background-position: -15px -210px; +} +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-refresh { + background-position: -15px -225px; +} +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-plus { + background-position: -15px -240px; +} +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-minus { + background-position: -15px -255px; +} +/* line 248, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-search { + background-position: -15px -270px; +} +/* line 252, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-save { + background-position: -15px -285px; +} +/* line 256, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-help { + background-position: -15px -300px; +} +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-print { + background-position: -15px -315px; +} +/* line 264, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand { + background-position: -15px -330px; +} +/* line 268, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-collapse { + background-position: -15px -345px; +} +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-resize { + background-position: -15px -360px; +} +/* line 276, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-move { + background-position: -15px -375px; +} +/* line 281, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-bottom, +.x-tool-over .x-tool-collapse-bottom { + background-position: -15px -195px; +} +/* line 286, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-top, +.x-tool-over .x-tool-collapse-top { + background-position: -15px -210px; +} +/* line 291, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-left, +.x-tool-over .x-tool-collapse-left { + background-position: -15px -180px; +} +/* line 296, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-right, +.x-tool-over .x-tool-collapse-right { + background-position: -15px -165px; +} +/* line 303, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-rtl.x-tool-expand-left, .x-tool-over .x-rtl.x-tool-collapse-left { + background-position: -15px -165px; +} +/* line 308, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-rtl.x-tool-expand-right, .x-tool-over .x-rtl.x-tool-collapse-right { + background-position: -15px -180px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle { + position: absolute; + z-index: 100; + font-size: 1px; + line-height: 6px; + overflow: hidden; + zoom: 1; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + background-color: #fff; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-collapsed .x-resizable-handle { + display: none; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-north { + cursor: n-resize; +} +/* line 26, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south { + cursor: s-resize; +} +/* line 29, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east { + cursor: e-resize; +} +/* line 32, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-west { + cursor: w-resize; +} +/* line 35, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast { + cursor: se-resize; +} +/* line 38, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest { + cursor: nw-resize; +} +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast { + cursor: ne-resize; +} +/* line 44, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest { + cursor: sw-resize; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-east { + width: 6px; + height: 100%; + right: 0; + top: 0; +} + +/* line 56, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-south { + width: 100%; + height: 6px; + left: 0; + bottom: 0; +} + +/* line 63, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-west { + width: 6px; + height: 100%; + left: 0; + top: 0; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-north { + width: 100%; + height: 6px; + left: 0; + top: 0; +} + +/* line 77, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-southeast { + width: 6px; + height: 6px; + right: 0; + bottom: 0; + z-index: 101; +} + +/* line 85, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-northwest { + width: 6px; + height: 6px; + left: 0; + top: 0; + z-index: 101; +} + +/* line 93, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-northeast { + width: 6px; + height: 6px; + right: 0; + top: 0; + z-index: 101; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-southwest { + width: 6px; + height: 6px; + left: 0; + bottom: 0; + z-index: 101; +} + +/*IE rounding error*/ +/* line 111, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-ie .x-resizable-handle-east { + margin-right: -1px; + /*IE rounding error*/ +} +/* line 115, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-ie .x-resizable-handle-south { + margin-bottom: -1px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-pinned .x-resizable-handle, +.x-resizable-over .x-resizable-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 127, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-window .x-window-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-window-collapsed .x-window-handle { + display: none; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-proxy { + border: 1px dashed #3b5a82; + position: absolute; + overflow: hidden; + z-index: 50000; +} + +/* line 148, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east, +.x-resizable-over .x-resizable-handle-west, +.x-resizable-pinned .x-resizable-handle-east, +.x-resizable-pinned .x-resizable-handle-west { + background-image: url(images/sizer/e-handle.gif); +} +/* line 154, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south, +.x-resizable-over .x-resizable-handle-north, +.x-resizable-pinned .x-resizable-handle-south, +.x-resizable-pinned .x-resizable-handle-north { + background-image: url(images/sizer/s-handle.gif); +} +/* line 159, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast, +.x-resizable-pinned .x-resizable-handle-southeast { + background-position: top left; + background-image: url(images/sizer/se-handle.gif); +} +/* line 164, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest, +.x-resizable-pinned .x-resizable-handle-northwest { + background-position: bottom right; + background-image: url(images/sizer/nw-handle.gif); +} +/* line 169, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast, +.x-resizable-pinned .x-resizable-handle-northeast { + background-position: bottom left; + background-image: url(images/sizer/ne-handle.gif); +} +/* line 174, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest, +.x-resizable-pinned .x-resizable-handle-southwest { + background-position: top right; + background-image: url(images/sizer/sw-handle.gif); +} + +/* Horizontal styles */ +/* line 2, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz { + padding-left: 7px; + background: no-repeat 0 -15px; +} +/* line 6, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-end { + padding-right: 7px; + background: no-repeat right -30px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-inner { + height: 15px; +} + +/* line 20, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-ie6 .x-form-item .x-slider-horz, +.x-ie7 .x-form-item .x-slider-horz, +.x-quirks .x-ie .x-form-item .x-slider-horz { + margin-top: 4px; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb { + width: 14px; + height: 15px; + margin-left: -7px; + background-image: url(images/slider/slider-thumb.png); +} + +/* line 33, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb-over { + background-position: -14px -15px; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb-drag { + background-position: -28px -30px; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-rtl.x-slider-horz { + padding-left: 0; + padding-right: 7px; + background-position: right -30px; +} +/* line 47, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-rtl.x-slider-horz .x-slider-end { + padding-right: 0; + padding-left: 7px; + background-position: left -15px; +} +/* line 53, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-rtl.x-slider-horz .x-slider-thumb { + margin-right: -7px; +} + +/* Vertical styles */ +/* line 60, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert { + padding-top: 7px; + background: no-repeat -30px 0; +} + +/* line 65, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-end { + padding-bottom: 7px; + background: no-repeat -15px bottom; + width: 15px; +} + +/* line 71, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-inner { + width: 15px; +} + +/* line 75, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb { + width: 15px; + height: 14px; + margin-bottom: -7px; + background-image: url(images/slider/slider-v-thumb.png); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb-over { + background-position: -15px -14px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb-drag { + background-position: -30px -28px; +} + +/* line 92, ../../../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 98, ../../../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); +} + +/** + * 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-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-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} [$ui-border-width=$tab-border-width] + * The border-width of 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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 + * + * @param {color} [$ui-border-bottom-color=$tabbar-strip-border-color] + * The bottom border color of inactive tabs. + * + * @member Ext.tab.Tab + */ +/** + * Creates a visual theme for a Tab Bar + * + * @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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 {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 {number} [$ui-tab-height] + * The height of tabs that will be used in this tabbar UI. The tabbar body is given + * a fixed height to leave room for the tabs, and so that the tabbar does not collapse + * when it does not contain any tabs. + * + * @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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-tab-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 137, ../../../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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mc { + background-image: url(images/tab/tab-default-top-fbg.gif); + background-position: 0 top; + background-color: #deecfd; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-tab-default-top { + background-image: url(images/tab/tab-default-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-top-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tr, +.x-tab-default-top-br, +.x-tab-default-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl, +.x-tab-default-top-bl, +.x-tab-default-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl, +.x-tab-default-top-bl, +.x-tab-default-top-tr, +.x-tab-default-top-br, +.x-tab-default-top-tc, +.x-tab-default-top-bc, +.x-tab-default-top-ml, +.x-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-ml, +.x-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-top-tl, +.x-strict .x-ie7 .x-tab-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 3px 9px 3px 9px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mc { + background-image: url(images/tab/tab-default-bottom-fbg.gif); + background-position: 0 top; + background-color: #deecfd; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-tab-default-bottom { + background-image: url(images/tab/tab-default-bottom-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-bottom-frameInfo { + font-family: th-0-0-4-4-0-1-1-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tr, +.x-tab-default-bottom-br, +.x-tab-default-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl, +.x-tab-default-bottom-bl, +.x-tab-default-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl, +.x-tab-default-bottom-bl, +.x-tab-default-bottom-tr, +.x-tab-default-bottom-br, +.x-tab-default-bottom-tc, +.x-tab-default-bottom-bc, +.x-tab-default-bottom-ml, +.x-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-ml, +.x-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mc { + padding: 3px 6px 0px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-bottom-tl, +.x-strict .x-ie7 .x-tab-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-bottom-fbg.gif), bg:url(images/tab/tab-default-bottom-bg.gif), corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mc { + background-image: url(images/tab/tab-default-top-fbg.gif); + background-position: 0 top; + background-color: #deecfd; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-tab-default-left { + background-image: url(images/tab/tab-default-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-left-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tr, +.x-tab-default-left-br, +.x-tab-default-left-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl, +.x-tab-default-left-bl, +.x-tab-default-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl, +.x-tab-default-left-bl, +.x-tab-default-left-tr, +.x-tab-default-left-br, +.x-tab-default-left-tc, +.x-tab-default-left-bc, +.x-tab-default-left-ml, +.x-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-ml, +.x-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-left-tl, +.x-strict .x-ie7 .x-tab-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-left:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-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: 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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mc { + background-image: url(images/tab/tab-default-top-fbg.gif); + background-position: 0 top; + background-color: #deecfd; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-tab-default-right { + background-image: url(images/tab/tab-default-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-right-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tr, +.x-tab-default-right-br, +.x-tab-default-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl, +.x-tab-default-right-bl, +.x-tab-default-right-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl, +.x-tab-default-right-bl, +.x-tab-default-right-tr, +.x-tab-default-right-br, +.x-tab-default-right-tc, +.x-tab-default-right-bc, +.x-tab-default-right-ml, +.x-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-ml, +.x-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-right-tl, +.x-strict .x-ie7 .x-tab-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-right:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 307, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default { + border-color: #8db3e3; + margin: 0 0 0 2px; + cursor: pointer; +} +/* line 312, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-inner { + font-size: 11px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + color: #416da3; + line-height: 13px; +} +/* line 322, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-icon-el { + width: 16px; + height: 16px; + line-height: 16px; + background-position: center center; +} +/* line 329, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-glyph { + font-size: 16px; + color: #416da3; + opacity: 0.5; +} +/* line 343, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default .x-tab-glyph { + color: #8facd0; +} +/* line 351, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default { + padding-left: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-button { + padding-left: 9px; +} +/* line 358, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-icon-el { + left: 9px; +} + +/* line 366, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-icon .x-tab-inner { + width: 16px; +} + +/* line 373, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default { + margin: 0 2px 0 0; +} + +/* line 379, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default { + margin: 0 2px 0 0; +} + +/* line 384, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-left { + margin: 0 2px 0 0; +} + +/* line 389, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-left { + margin: 0 0 0 2px; +} + +/* line 396, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top, +.x-tab-default-left, +.x-tab-default-right { + border-bottom: 1px solid #99bce8; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(top, #ccdef6, #d6e6fa 25%, #deecfd 45%); + -webkit-box-shadow: 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 -1px 0 0px 0 inset, white 1px 0 0px 0 inset; + box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; +} +/* line 403, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-top, .x-nlg +.x-tab-default-left, .x-nlg +.x-tab-default-right { + background-image: url(images/tab/tab-default-top-bg.gif); +} + +/* line 417, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom { + border-top: 1px solid #99bce8; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ccdef6), color-stop(25%, #d6e6fa), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -moz-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: -o-linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + background-image: linear-gradient(bottom, #ccdef6, #d6e6fa 25%, #deecfd 45%); + -webkit-box-shadow: 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 -1px 0 0px 0 inset, white 1px 0 0px 0 inset; + box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; +} +/* line 424, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-bottom { + background-image: url(images/tab/tab-default-bottom-bg.gif); +} + +/* line 438, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-tab-default-left { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} + +/* line 449, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-left { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-rtl.x-tab-default-left { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +} + +/* line 454, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-tab-default-right { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +} + +/* line 465, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-right { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-rtl.x-tab-default-right { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} + +/* line 471, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-icon-text-left .x-tab-inner { + padding-left: 20px; +} + +/* line 478, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-icon-text-left .x-tab-inner { + padding-left: 0; + padding-right: 20px; +} + +/* line 485, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-over { + background-color: #e8f2ff; +} +/* line 509, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-over .x-tab-glyph { + color: #416da3; +} +/* line 516, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-over .x-tab-glyph { + color: #94afd1; +} + +/* line 525, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over, +.x-tab-default-left-over, +.x-tab-default-right-over { + background-image: none; + background-color: #e8f2ff; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff)); + background-image: -webkit-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: -moz-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: -o-linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: linear-gradient(top, #d7e5fd, #e0edff 25%, #e8f2ff 45%); +} +/* line 529, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-top-over, .x-nlg +.x-tab-default-left-over, .x-nlg +.x-tab-default-right-over { + background-image: url(images/tab/tab-default-top-over-bg.gif); +} + +/* line 534, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over { + background-image: none; + background-color: #e8f2ff; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #d7e5fd), color-stop(25%, #e0edff), color-stop(45%, #e8f2ff)); + background-image: -webkit-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: -moz-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: -o-linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); + background-image: linear-gradient(bottom, #d7e5fd, #e0edff 25%, #e8f2ff 45%); +} +/* line 538, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-bottom-over { + background-image: url(images/tab/tab-default-bottom-over-bg.gif); +} + +/* line 545, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active { + background-color: #deecfd; +} +/* line 551, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active .x-tab-inner { + color: #15498b; +} +/* line 566, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active .x-tab-glyph { + color: #15498b; +} +/* line 573, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-active .x-tab-glyph { + color: #799ac4; +} + +/* line 581, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active, +.x-tab-default-left-active, +.x-tab-default-right-active { + border-bottom: 1px solid #deecfd; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: -moz-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: -o-linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: linear-gradient(top, #ffffff, #f5f9fe 25%, #deecfd 45%); +} +/* line 587, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-top-active, .x-nlg +.x-tab-default-left-active, .x-nlg +.x-tab-default-right-active { + background-image: url(images/tab/tab-default-top-active-bg.gif); +} + +/* line 594, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active { + border-top: 1px solid #deecfd; + background-image: none; + background-color: #deecfd; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff), color-stop(25%, #f5f9fe), color-stop(45%, #deecfd)); + background-image: -webkit-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: -moz-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: -o-linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); + background-image: linear-gradient(bottom, #ffffff, #f5f9fe 25%, #deecfd 45%); +} +/* line 600, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-bottom-active { + background-image: url(images/tab/tab-default-bottom-active-bg.gif); +} + +/* line 607, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled { + border-color: #bbd2ef; + cursor: default; +} +/* line 620, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-inner { + color: #c3b3b3; +} +/* line 639, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 644, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-glyph { + color: #c3b3b3; + opacity: 0.3; + filter: none; +} +/* line 658, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-disabled .x-tab-glyph { + color: #d8dae4; +} + +/* line 667, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled, +.x-tab-default-left-disabled, +.x-tab-default-right-disabled { + border-color: #bbd2ef #bbd2ef #99bce8; +} + +/* line 671, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled { + border-color: #99bce8 #bbd2ef #bbd2ef #bbd2ef; +} + +/* line 678, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled, +.x-tab-default-left-disabled, +.x-tab-default-right-disabled { + background-image: none; + background-color: #e1ecfa; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe)); + background-image: -webkit-linear-gradient(top, #e1ecfa, #ecf4fe); + background-image: -moz-linear-gradient(top, #e1ecfa, #ecf4fe); + background-image: -o-linear-gradient(top, #e1ecfa, #ecf4fe); + background-image: linear-gradient(top, #e1ecfa, #ecf4fe); +} +/* line 682, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-top-disabled, .x-nlg +.x-tab-default-left-disabled, .x-nlg +.x-tab-default-right-disabled { + background-image: url(images/tab/tab-default-top-disabled-bg.gif); +} + +/* line 687, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled { + background-image: none; + background-color: #e1ecfa; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #e1ecfa), color-stop(100%, #ecf4fe)); + background-image: -webkit-linear-gradient(bottom, #e1ecfa, #ecf4fe); + background-image: -moz-linear-gradient(bottom, #e1ecfa, #ecf4fe); + background-image: -o-linear-gradient(bottom, #e1ecfa, #ecf4fe); + background-image: linear-gradient(bottom, #e1ecfa, #ecf4fe); +} +/* line 691, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-bottom-disabled { + background-image: url(images/tab/tab-default-bottom-disabled-bg.gif); +} + +/* line 699, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default { + background-image: none; +} + +/* line 710, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-tl, +.x-tab-default-top-over .x-frame-bl, +.x-tab-default-top-over .x-frame-tr, +.x-tab-default-top-over .x-frame-br, +.x-tab-default-top-over .x-frame-tc, +.x-tab-default-top-over .x-frame-bc, +.x-tab-default-left-over .x-frame-tl, +.x-tab-default-left-over .x-frame-bl, +.x-tab-default-left-over .x-frame-tr, +.x-tab-default-left-over .x-frame-br, +.x-tab-default-left-over .x-frame-tc, +.x-tab-default-left-over .x-frame-bc, +.x-tab-default-right-over .x-frame-tl, +.x-tab-default-right-over .x-frame-bl, +.x-tab-default-right-over .x-frame-tr, +.x-tab-default-right-over .x-frame-br, +.x-tab-default-right-over .x-frame-tc, +.x-tab-default-right-over .x-frame-bc { + background-image: url(images/tab/tab-default-top-over-corners.gif); +} +/* line 714, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-ml, +.x-tab-default-top-over .x-frame-mr, +.x-tab-default-left-over .x-frame-ml, +.x-tab-default-left-over .x-frame-mr, +.x-tab-default-right-over .x-frame-ml, +.x-tab-default-right-over .x-frame-mr { + background-image: url(images/tab/tab-default-top-over-sides.gif); +} +/* line 717, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-mc, +.x-tab-default-left-over .x-frame-mc, +.x-tab-default-right-over .x-frame-mc { + background-color: #e8f2ff; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-top-over-fbg.gif); +} + +/* line 732, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-tl, +.x-tab-default-bottom-over .x-frame-bl, +.x-tab-default-bottom-over .x-frame-tr, +.x-tab-default-bottom-over .x-frame-br, +.x-tab-default-bottom-over .x-frame-tc, +.x-tab-default-bottom-over .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-over-corners.gif); +} +/* line 736, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-ml, +.x-tab-default-bottom-over .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-over-sides.gif); +} +/* line 739, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-mc { + background-color: #e8f2ff; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-bottom-over-fbg.gif); +} + +/* line 756, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-tl, +.x-tab-default-top-active .x-frame-bl, +.x-tab-default-top-active .x-frame-tr, +.x-tab-default-top-active .x-frame-br, +.x-tab-default-top-active .x-frame-tc, +.x-tab-default-top-active .x-frame-bc, +.x-tab-default-left-active .x-frame-tl, +.x-tab-default-left-active .x-frame-bl, +.x-tab-default-left-active .x-frame-tr, +.x-tab-default-left-active .x-frame-br, +.x-tab-default-left-active .x-frame-tc, +.x-tab-default-left-active .x-frame-bc, +.x-tab-default-right-active .x-frame-tl, +.x-tab-default-right-active .x-frame-bl, +.x-tab-default-right-active .x-frame-tr, +.x-tab-default-right-active .x-frame-br, +.x-tab-default-right-active .x-frame-tc, +.x-tab-default-right-active .x-frame-bc { + background-image: url(images/tab/tab-default-top-active-corners.gif); +} +/* line 760, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-ml, +.x-tab-default-top-active .x-frame-mr, +.x-tab-default-left-active .x-frame-ml, +.x-tab-default-left-active .x-frame-mr, +.x-tab-default-right-active .x-frame-ml, +.x-tab-default-right-active .x-frame-mr { + background-image: url(images/tab/tab-default-top-active-sides.gif); +} +/* line 763, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-mc, +.x-tab-default-left-active .x-frame-mc, +.x-tab-default-right-active .x-frame-mc { + background-color: #deecfd; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-top-active-fbg.gif); +} + +/* line 778, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-tl, +.x-tab-default-bottom-active .x-frame-bl, +.x-tab-default-bottom-active .x-frame-tr, +.x-tab-default-bottom-active .x-frame-br, +.x-tab-default-bottom-active .x-frame-tc, +.x-tab-default-bottom-active .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-active-corners.gif); +} +/* line 782, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-ml, +.x-tab-default-bottom-active .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-active-sides.gif); +} +/* line 785, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-mc { + background-color: #deecfd; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-bottom-active-fbg.gif); +} + +/* line 802, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-tl, +.x-tab-default-top-disabled .x-frame-bl, +.x-tab-default-top-disabled .x-frame-tr, +.x-tab-default-top-disabled .x-frame-br, +.x-tab-default-top-disabled .x-frame-tc, +.x-tab-default-top-disabled .x-frame-bc, +.x-tab-default-left-disabled .x-frame-tl, +.x-tab-default-left-disabled .x-frame-bl, +.x-tab-default-left-disabled .x-frame-tr, +.x-tab-default-left-disabled .x-frame-br, +.x-tab-default-left-disabled .x-frame-tc, +.x-tab-default-left-disabled .x-frame-bc, +.x-tab-default-right-disabled .x-frame-tl, +.x-tab-default-right-disabled .x-frame-bl, +.x-tab-default-right-disabled .x-frame-tr, +.x-tab-default-right-disabled .x-frame-br, +.x-tab-default-right-disabled .x-frame-tc, +.x-tab-default-right-disabled .x-frame-bc { + background-image: url(images/tab/tab-default-top-disabled-corners.gif); +} +/* line 806, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-ml, +.x-tab-default-top-disabled .x-frame-mr, +.x-tab-default-left-disabled .x-frame-ml, +.x-tab-default-left-disabled .x-frame-mr, +.x-tab-default-right-disabled .x-frame-ml, +.x-tab-default-right-disabled .x-frame-mr { + background-image: url(images/tab/tab-default-top-disabled-sides.gif); +} +/* line 809, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-mc, +.x-tab-default-left-disabled .x-frame-mc, +.x-tab-default-right-disabled .x-frame-mc { + background-color: #e1ecfa; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-top-disabled-fbg.gif); +} + +/* line 824, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-tl, +.x-tab-default-bottom-disabled .x-frame-bl, +.x-tab-default-bottom-disabled .x-frame-tr, +.x-tab-default-bottom-disabled .x-frame-br, +.x-tab-default-bottom-disabled .x-frame-tc, +.x-tab-default-bottom-disabled .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-disabled-corners.gif); +} +/* line 828, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-ml, +.x-tab-default-bottom-disabled .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-disabled-sides.gif); +} +/* line 831, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-mc { + background-color: #e1ecfa; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-bottom-disabled-fbg.gif); +} + +/* line 850, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default-top, +.x-nbr .x-tab-default-left, +.x-nbr .x-tab-default-right { + border-bottom-width: 1px !important; +} +/* line 853, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default-bottom { + border-top-width: 1px !important; +} + +/* line 861, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn { + width: 11px; + height: 11px; + background-image: url(images/tab/tab-default-close.gif); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 870, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn-over { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 880, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn { + top: 2px; + right: 2px; +} + +/* line 886, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default .x-tab-close-btn { + right: auto; + left: 2px; +} + +/* line 924, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-close-btn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 939, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-closable .x-tab-wrap { + padding-right: 14px; +} + +/* line 944, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-closable .x-tab-wrap { + padding-right: 0px; + padding-left: 14px; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-over:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-top-over-bg.gif), corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif), frame-bg:url(images/tab/tab-default-top-over-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-over:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-bottom-over-bg.gif), corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif), frame-bg:url(images/tab/tab-default-bottom-over-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-active:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-top-active-bg.gif), corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif), frame-bg:url(images/tab/tab-default-top-active-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-active:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-bottom-active-bg.gif), corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif), frame-bg:url(images/tab/tab-default-bottom-active-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-disabled:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-top-disabled-bg.gif), corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif), frame-bg:url(images/tab/tab-default-top-disabled-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-disabled:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-bottom-disabled-bg.gif), corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif), frame-bg:url(images/tab/tab-default-bottom-disabled-fbg.gif)"; +} + +/**/ +/* */ +/* line 94, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default { + border-style: solid; + border-color: #99bce8; +} + +/* line 100, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top { + padding: 1px 0 0; + border-width: 1px 1px 0; +} + +/* line 107, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom { + padding: 0 0 1px 0; + border-width: 0 1px 1px 1px; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left { + padding: 0 0 0 1px; + border-width: 1px 0 1px 1px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-left { + padding: 0 1px 0 0; + border-width: 1px 1px 1px 0; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right { + padding: 0 1px 0 0; + border-width: 1px 1px 1px 0; +} + +/* line 138, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-right { + padding: 0 0 0 1px; + border-width: 1px 0 1px 1px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-horizontal { + height: 25px; +} +/* line 153, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-default-horizontal { + height: 23px; +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-vertical { + width: 25px; +} +/* line 165, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-default-vertical { + width: 23px; +} + +/* line 172, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-top { + padding-bottom: 2px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-bottom { + padding-top: 2px; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-left { + padding-right: 2px; +} + +/* line 185, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-body-default-left { + padding-right: 0; + padding-left: 2px; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-right { + padding-left: 2px; +} + +/* line 196, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-body-default-right { + padding-left: 0; + padding-right: 2px; +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default { + border-style: solid; + border-color: #99bce8; + background-color: #deecfd; +} + +/* line 210, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-strip-default-horizontal { + height: 2px; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-strip-default-vertical { + width: 2px; +} + +/* line 224, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-top { + border-width: 1px 0 0 0; + height: 3px; +} +/* line 227, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-top { + border-width: 1px 1px 0; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-bottom { + border-width: 0 0 1px 0; + height: 3px; +} +/* line 235, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-bottom { + border-width: 0 1px 1px 1px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-left { + border-width: 0 0 0 1px; + width: 3px; +} +/* line 243, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-left { + border-width: 1px 0 1px 1px; +} + +/* line 249, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-strip-default-left { + border-width: 0 1px 0 0; +} +/* line 251, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-rtl.x-tab-bar-strip-default-left { + border-width: 1px 1px 1px 0; +} + +/* line 257, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-right { + border-width: 0 1px 0 0; + width: 3px; +} +/* line 260, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-right { + border-width: 1px 1px 1px 0; +} + +/* line 266, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-strip-default-right { + border-width: 0 0 0 1px; +} +/* line 268, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-rtl.x-tab-bar-strip-default-right { + border-width: 1px 0 1px 1px; +} + +/* line 274, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default { + background-color: #cbdbef; +} + +/* line 279, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top { + background-image: none; + background-color: #cbdbef; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef)); + background-image: -webkit-linear-gradient(top, #dde8f5, #cbdbef); + background-image: -moz-linear-gradient(top, #dde8f5, #cbdbef); + background-image: -o-linear-gradient(top, #dde8f5, #cbdbef); + background-image: linear-gradient(top, #dde8f5, #cbdbef); +} +/* line 283, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-top { + background: url(images/tab-bar/tab-bar-default-top-bg.gif); +} + +/* line 289, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom { + background-image: none; + background-color: #cbdbef; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef)); + background-image: -webkit-linear-gradient(bottom, #dde8f5, #cbdbef); + background-image: -moz-linear-gradient(bottom, #dde8f5, #cbdbef); + background-image: -o-linear-gradient(bottom, #dde8f5, #cbdbef); + background-image: linear-gradient(bottom, #dde8f5, #cbdbef); +} +/* line 293, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-bottom { + background: url(images/tab-bar/tab-bar-default-bottom-bg.gif) bottom 0; +} + +/* line 299, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left { + background-image: none; + background-color: #cbdbef; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef)); + background-image: -webkit-linear-gradient(left, #dde8f5, #cbdbef); + background-image: -moz-linear-gradient(left, #dde8f5, #cbdbef); + background-image: -o-linear-gradient(left, #dde8f5, #cbdbef); + background-image: linear-gradient(left, #dde8f5, #cbdbef); +} +/* line 303, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-left { + background: url(images/tab-bar/tab-bar-default-left-bg.gif); +} + +/* line 309, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right { + background-image: none; + background-color: #cbdbef; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dde8f5), color-stop(100%, #cbdbef)); + background-image: -webkit-linear-gradient(right, #dde8f5, #cbdbef); + background-image: -moz-linear-gradient(right, #dde8f5, #cbdbef); + background-image: -o-linear-gradient(right, #dde8f5, #cbdbef); + background-image: linear-gradient(right, #dde8f5, #cbdbef); +} +/* line 313, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-right { + background: url(images/tab-bar/tab-bar-default-right-bg.gif) 0 right; +} + +/* line 323, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller { + cursor: pointer; +} +/* line 363, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-left, +.x-tab-bar-default .x-tabbar-scroll-right { + height: 20px; + width: 18px; +} +/* line 369, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-top, +.x-tab-bar-default .x-tabbar-scroll-bottom { + width: 20px; + height: 18px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-box-scroller { + margin-top: 1px; +} +/* line 381, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-box-scroller { + margin-left: 1px; +} +/* line 386, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-right .x-box-scroller { + margin-left: 0; + margin-right: 1px; +} + +/* line 456, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-left-top.gif); +} +/* line 459, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-right-top.gif); +} + +/* line 466, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-top .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-right-top.gif); +} +/* line 469, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-top .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-left-top.gif); +} + +/* line 476, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-left-bottom.gif); +} +/* line 479, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-right-bottom.gif); +} + +/* line 486, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-bottom .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-right-bottom.gif); +} +/* line 489, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-bottom .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-left-bottom.gif); +} + +/* line 496, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-left.gif); +} +/* line 499, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-left.gif); +} + +/* line 506, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-left .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-right.gif); +} +/* line 509, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-left .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-right.gif); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-right.gif); +} +/* line 519, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-right.gif); +} + +/* line 526, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-right .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-left.gif); +} +/* line 529, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-right .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-left.gif); +} + +/* line 539, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-left-hover, +.x-tab-bar-default .x-tabbar-scroll-right-hover { + background-position: -18px 0; +} +/* line 544, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-top-hover, +.x-tab-bar-default .x-tabbar-scroll-bottom-hover { + background-position: 0 -18px; +} +/* line 549, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + cursor: default; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-top:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-top-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-bottom:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-bottom-bg.gif), stretch:top"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-left:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-left-bg.gif), stretch:right"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-right:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-right-bg.gif), stretch:left"; +} + +/**/ +/* */ +/* line 998, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain { + border-width: 0; + padding: 0; + height: 23px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox { + border-color: #c5c5c5; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-row-checker, +.x-column-header-checkbox .x-column-header-text { + height: 13px; + width: 13px; + background-image: url(images/form/checkbox.gif); + line-height: 13px; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox .x-column-header-inner { + padding: 5px 5px 4px 5px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-cell-row-checker .x-grid-cell-inner { + padding: 4px 5px 3px 5px; +} +/* line 23, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-row-checker .x-grid-cell-inner { + padding-top: 3px; + padding-bottom: 2px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-hd-checker-on .x-column-header-text, +.x-grid-row-selected .x-grid-row-checker, +.x-grid-row-checked .x-grid-row-checker { + background-position: 0 -13px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-expander { + cursor: pointer; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander { + background-image: url(images/tree/arrows.gif); +} +/* line 11, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander-over .x-tree-expander { + background-position: -32px center; +} +/* line 15, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander { + background-position: -16px center; +} +/* line 19, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander { + background-position: -48px center; +} +/* line 24, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-rtl.x-tree-expander { + background: url(images/tree/arrows-rtl.gif) no-repeat -48px center; +} +/* line 28, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander-over .x-rtl.x-tree-expander { + background-position: -16px center; +} +/* line 32, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-rtl.x-tree-expander { + background-position: -32px center; +} +/* line 36, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-rtl.x-tree-expander { + background-position: 0 center; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow { + background-image: url(images/tree/elbow.gif); +} +/* line 48, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-end { + background-image: url(images/tree/elbow-end.gif); +} +/* line 52, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-plus { + background-image: url(images/tree/elbow-plus.gif); +} +/* line 56, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-plus.gif); +} +/* line 60, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus { + background-image: url(images/tree/elbow-minus.gif); +} +/* line 64, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-minus.gif); +} +/* line 68, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-line { + background-image: url(images/tree/elbow-line.gif); +} +/* line 73, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow { + background-image: url(images/tree/elbow-rtl.gif); +} +/* line 77, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow-end { + background-image: url(images/tree/elbow-end-rtl.gif); +} +/* line 81, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow-plus { + background-image: url(images/tree/elbow-plus-rtl.gif); +} +/* line 85, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-plus-rtl.gif); +} +/* line 89, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-rtl.x-tree-elbow-plus { + background-image: url(images/tree/elbow-minus-rtl.gif); +} +/* line 93, ../../../ext-theme-neutral/sass/src/tree/Panel.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.gif); +} +/* line 97, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow-line { + background-image: url(images/tree/elbow-line-rtl.gif); +} + +/* line 104, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-tree-expander { + background-image: url(images/tree/elbow-plus-nl.gif); +} +/* line 108, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-grid-tree-node-expanded .x-tree-expander { + background-image: url(images/tree/elbow-minus-nl.gif); +} +/* line 113, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-rtl.x-tree-expander { + background-image: url(images/tree/elbow-plus-nl-rtl.gif); +} +/* line 117, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-grid-tree-node-expanded .x-rtl.x-tree-expander { + background-image: url(images/tree/elbow-minus-nl-rtl.gif); +} + +/* line 123, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon { + width: 16px; + height: 20px; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-elbow-img { + width: 16px; + height: 20px; + margin-right: 0; +} + +/* line 135, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-elbow-img { + margin-right: 0; + margin-left: 0; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon, +.x-tree-elbow-img, +.x-tree-checkbox { + margin-top: -3px; + margin-bottom: -4px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon-leaf { + background-image: url(images/tree/leaf.gif); +} + +/* line 156, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-icon-leaf { + background-image: url(images/tree/leaf-rtl.gif); +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon-parent { + background-image: url(images/tree/folder.gif); +} + +/* line 166, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-icon-parent { + background-image: url(images/tree/folder-rtl.gif); +} + +/* line 171, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-node-expanded .x-tree-icon-parent { + background-image: url(images/tree/folder-open.gif); +} + +/* line 176, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-node-expanded .x-rtl.x-tree-icon-parent { + background-image: url(images/tree/folder-open-rtl.gif); +} + +/* line 181, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-checkbox { + margin-right: 3px; + top: 4px; + width: 13px; + height: 13px; + background-image: url(images/form/checkbox.gif); +} + +/* line 190, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-checkbox { + margin-right: 0; + margin-left: 3px; +} + +/* line 196, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-checkbox-checked { + background-position: 0 -13px; +} + +/* line 200, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-loading .x-tree-icon { + background-image: url(images/tree/loading.gif); +} + +/* line 205, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-loading .x-rtl.x-tree-icon { + background-image: url(images/tree/loading.gif); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-cell-inner-treecolumn { + font-size: 1px; + line-height: 0; +} + +/* line 221, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-node-text { + font-size: 11px; + line-height: 13px; + padding-left: 3px; +} + +/* line 228, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-node-text { + padding-left: 0; + padding-right: 3px; +} + +/* line 235, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-cell-inner-treecolumn { + padding: 3px 6px 4px 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-append .x-dd-drop-icon { + background-image: url(images/tree/drop-append.gif); +} + +/* line 5, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-above .x-dd-drop-icon { + background-image: url(images/tree/drop-above.gif); +} + +/* line 9, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-below .x-dd-drop-icon { + background-image: url(images/tree/drop-below.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-between .x-dd-drop-icon { + background-image: url(images/tree/drop-between.gif); +} + +/* line 17, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-ddindicator { + height: 1px; + border-width: 1px 0px 0px; + border-style: dotted; + border-color: green; +} + +/* including package ext-theme-classic */ +/* line 2, ../../sass/src/dom/Element.scss */ +.x-box-tl { + background: transparent no-repeat 0 0; + zoom: 1; +} + +/* line 7, ../../sass/src/dom/Element.scss */ +.x-box-tc { + height: 8px; + background: transparent repeat-x 0 0; + overflow: hidden; +} + +/* line 13, ../../sass/src/dom/Element.scss */ +.x-box-tr { + background: transparent no-repeat right -8px; +} + +/* line 17, ../../sass/src/dom/Element.scss */ +.x-box-ml { + background: transparent repeat-y 0; + padding-left: 4px; + overflow: hidden; + zoom: 1; +} + +/* line 24, ../../sass/src/dom/Element.scss */ +.x-box-mc { + background: repeat-x 0 -16px; + padding: 4px 10px; +} + +/* line 29, ../../sass/src/dom/Element.scss */ +.x-box-mc h3 { + margin: 0 0 4px 0; + zoom: 1; +} + +/* line 34, ../../sass/src/dom/Element.scss */ +.x-box-mr { + background: transparent repeat-y right; + padding-right: 4px; + overflow: hidden; +} + +/* line 40, ../../sass/src/dom/Element.scss */ +.x-box-bl { + background: transparent no-repeat 0 -16px; + zoom: 1; +} + +/* line 45, ../../sass/src/dom/Element.scss */ +.x-box-bc { + background: transparent repeat-x 0 -8px; + height: 8px; + overflow: hidden; +} + +/* line 51, ../../sass/src/dom/Element.scss */ +.x-box-br { + background: transparent no-repeat right -24px; +} + +/* line 55, ../../sass/src/dom/Element.scss */ +.x-box-tl, .x-box-bl { + padding-left: 8px; + overflow: hidden; +} + +/* line 60, ../../sass/src/dom/Element.scss */ +.x-box-tr, .x-box-br { + padding-right: 8px; + overflow: hidden; +} + +/* line 65, ../../sass/src/dom/Element.scss */ +.x-box-tl { + background-image: url(images/box/corners.gif); +} + +/* line 69, ../../sass/src/dom/Element.scss */ +.x-box-tc { + background-image: url(images/box/tb.gif); +} + +/* line 73, ../../sass/src/dom/Element.scss */ +.x-box-tr { + background-image: url(images/box/corners.gif); +} + +/* line 77, ../../sass/src/dom/Element.scss */ +.x-box-ml { + background-image: url(images/box/l.gif); +} + +/* line 81, ../../sass/src/dom/Element.scss */ +.x-box-mc { + background-color: #eee; + background-image: url(images/box/tb.gif); + font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif; + color: #393939; + font-size: 15px; +} + +/* line 89, ../../sass/src/dom/Element.scss */ +.x-box-mc h3 { + font-size: 18px; + font-weight: bold; +} + +/* line 94, ../../sass/src/dom/Element.scss */ +.x-box-mr { + background-image: url(images/box/r.gif); +} + +/* line 98, ../../sass/src/dom/Element.scss */ +.x-box-bl { + background-image: url(images/box/corners.gif); +} + +/* line 102, ../../sass/src/dom/Element.scss */ +.x-box-bc { + background-image: url(images/box/tb.gif); +} + +/* line 106, ../../sass/src/dom/Element.scss */ +.x-box-br { + background-image: url(images/box/corners.gif); +} + +/* line 110, ../../sass/src/dom/Element.scss */ +.x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr { + background-image: url(images/box/corners-blue.gif); +} + +/* line 114, ../../sass/src/dom/Element.scss */ +.x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc { + background-image: url(images/box/tb-blue.gif); +} + +/* line 118, ../../sass/src/dom/Element.scss */ +.x-box-blue .x-box-mc { + background-color: #c3daf9; +} + +/* line 122, ../../sass/src/dom/Element.scss */ +.x-box-blue .x-box-mc h3 { + color: #17385b; +} + +/* line 126, ../../sass/src/dom/Element.scss */ +.x-box-blue .x-box-ml { + background-image: url(images/box/l-blue.gif); +} + +/* line 130, ../../sass/src/dom/Element.scss */ +.x-box-blue .x-box-mr { + background-image: url(images/box/r-blue.gif); +} + +/* line 3, ../../sass/src/toolbar/Toolbar.scss */ +.x-rtl.x-toolbar-more-icon { + background-image: url(images/toolbar/more-left.gif) !important; +} + +/* line 2, ../../sass/src/window/MessageBox.scss */ +.x-message-box .x-msg-box-wait { + background-image: url(images/shared/blue-loading.gif); +} + +/* line 1, ../../sass/src/form/field/Trigger.scss */ +.x-form-trigger { + height: 22px; +} +/* line 5, ../../sass/src/form/field/Trigger.scss */ +.x-content-box .x-form-trigger { + height: 21px; +} + +/* line 12, ../../sass/src/form/field/Trigger.scss */ +.x-field-toolbar .x-form-trigger { + height: 20px; +} +/* line 16, ../../sass/src/form/field/Trigger.scss */ +.x-content-box .x-field-toolbar .x-form-trigger { + height: 19px; +} + +/* line 4, ../../sass/src/form/field/Spinner.scss */ +.x-content-box div.x-form-spinner-up, +.x-content-box div.x-form-spinner-down { + height: 10px; +} +/* line 10, ../../sass/src/form/field/Spinner.scss */ +.x-content-box .x-toolbar-item div.x-form-spinner-up, +.x-content-box .x-toolbar-item div.x-form-spinner-down { + height: 9px; +} + +/* line 2, ../../sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-wrap .x-toolbar { + border-left-color: #b5b8c8; + border-top-color: #b5b8c8; + border-right-color: #b5b8c8; +} + +/* line 9, ../../sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-input { + border: 1px solid #b5b8c8; + border-top-width: 0; +} + +/* line 1, ../../sass/src/grid/column/Column.scss */ +.x-column-header-trigger { + background-color: #c5c5c5; + background-image: url(images/grid/grid3-hd-btn.gif); +} + +/* line 8, ../../sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-trigger { + background-image: url(images/grid/grid3-hd-btn-left.gif); +} + +/* line 6, ../../sass/src/grid/plugin/Editing.scss */ +.x-content-box .x-grid-editor .x-form-trigger { + height: 19px; +} +/* line 13, ../../sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-spinner-up, .x-grid-editor .x-form-spinner-down { + background-image: url(images/form/spinner-small.gif); +} +/* line 16, ../../sass/src/grid/plugin/Editing.scss */ +.x-content-box .x-grid-editor .x-form-spinner-up, .x-content-box .x-grid-editor .x-form-spinner-down { + height: 9px; +} +/* line 24, ../../sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-rtl.x-form-trigger-wrap .x-form-spinner-up, .x-grid-editor .x-rtl.x-form-trigger-wrap .x-form-spinner-down { + background-image: url(images/form/spinner-small-rtl.gif); +} + +/* line 1, ../../sass/src/layout/container/Accordion.scss */ +.x-accordion-hd { + border-width: 1px 0 !important; + -webkit-box-shadow: inset 0 0 0 0 #d9e7f8; + -moz-box-shadow: inset 0 0 0 0 #d9e7f8; + box-shadow: inset 0 0 0 0 #d9e7f8; +} + +/* line 6, ../../sass/src/layout/container/Accordion.scss */ +.x-accordion-hd-sibling-expanded { + -webkit-box-shadow: inset 0 1px 0 0 #f3f7fb; + -moz-box-shadow: inset 0 1px 0 0 #f3f7fb; + box-shadow: inset 0 1px 0 0 #f3f7fb; +} + +/* line 5, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east, +.x-resizable-over .x-resizable-handle-west, +.x-resizable-pinned .x-resizable-handle-east, +.x-resizable-pinned .x-resizable-handle-west { + background-position: left; +} +/* line 10, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south, +.x-resizable-over .x-resizable-handle-north, +.x-resizable-pinned .x-resizable-handle-south, +.x-resizable-pinned .x-resizable-handle-north { + background-position: top; +} +/* line 14, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast, +.x-resizable-pinned .x-resizable-handle-southeast { + background-position: top left; +} +/* line 18, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest, +.x-resizable-pinned .x-resizable-handle-northwest { + background-position: bottom right; +} +/* line 22, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast, +.x-resizable-pinned .x-resizable-handle-northeast { + background-position: bottom left; +} +/* line 26, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest, +.x-resizable-pinned .x-resizable-handle-southwest { + background-position: top right; +} + +/* line 6, ../../sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-horz, +.x-ie6 .x-slider-horz .x-slider-end, +.x-ie6 .x-slider-horz .x-slider-inner { + background-image: url(images/slider/slider-bg.gif); +} +/* line 10, ../../sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-horz .x-slider-thumb { + background-image: url(images/slider/slider-thumb.gif); +} +/* line 16, ../../sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-vert, +.x-ie6 .x-slider-vert .x-slider-end, +.x-ie6 .x-slider-vert .x-slider-inner { + background-image: url(images/slider/slider-v-bg.gif); +} +/* line 20, ../../sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-vert .x-slider-thumb { + background-image: url(images/slider/slider-v-thumb.gif); +} + +/* line 1, ../../sass/src/tab/Panel.scss */ +.x-tab-icon-el { + top: -1px; +} + +/* line 6, ../../sass/src/tab/Panel.scss */ +.x-tab-noicon .x-tab-icon { + display: none; +} diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/ext-theme-classic-all-rtl.css b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/ext-theme-classic-all-rtl.css new file mode 100644 index 0000000..631043d --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/ext-theme-classic-all-rtl.css @@ -0,0 +1 @@ +.x-body{margin:0}img{border:0}.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}.x-rtl{direction:rtl}.x-ltr{direction:ltr}.x-clear{overflow:hidden;clear:both;font-size:0;line-height:0;display:table}.x-strict .x-ie7 .x-clear{height:0;width:0}.x-layer{position:absolute!important;overflow:hidden;zoom:1}.x-fixed-layer{position:fixed!important;overflow:hidden;zoom:1}.x-shim{position:absolute;left:0;top:0;overflow:hidden;filter:alpha(opacity=0);opacity:0}.x-hide-display{display:none!important}.x-hide-visibility{visibility:hidden!important}.x-ie6 .x-item-disabled{filter:none}.x-hidden,.x-hide-offsets{display:block!important;visibility:hidden!important;position:absolute!important;top:-10000px!important}.x-hide-nosize{height:0!important;width:0!important}.x-hide-clip{position:absolute!important;clip:rect(0,0,0,0);clip:rect(0 0 0 0)}.x-masked-relative{position:relative}.x-ie-shadow{background-color:#777;display:none;position:absolute;overflow:hidden;zoom:1}.x-unselectable{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x-selectable{cursor:auto;-moz-user-select:text;-webkit-user-select:text;-ms-user-select:text;user-select:text;-o-user-select:text}.x-list-plain{list-style-type:none;margin:0;padding:0}.x-table-plain{border-collapse:collapse;border-spacing:0;font-size:1em}.x-frame-tl,.x-frame-tr,.x-frame-tc,.x-frame-bl,.x-frame-br,.x-frame-bc{overflow:hidden;background-repeat:no-repeat}.x-frame-tc,.x-frame-bc{background-repeat:repeat-x}.x-frame-mc{background-repeat:repeat-x;overflow:hidden}.x-proxy-el{position:absolute;background:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x-css-shadow{position:absolute;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px}.x-item-disabled,.x-item-disabled *{cursor:default}.x-box-item{position:absolute!important;left:0;top:0}.x-rtl>.x-box-item{right:0;left:auto}.x-ie6 .x-rtl .x-box-item,.x-quirks .x-ie .x-rtl .x-box-item{right:0;left:auto}div.x-editor{overflow:visible}.x-mask{z-index:100;position:absolute;width:100%;height:100%;zoom:1}.x-mask-shim{z-index:100;position:absolute;top:0;left:0;width:100%;height:100%}.x-mask-msg{z-index:20001;position:absolute}.x-progress{position:relative;border-style:solid;overflow:hidden}.x-progress-bar{overflow:hidden;position:absolute;width:0;height:100%}.x-progress-text{overflow:hidden;position:absolute}.x-btn{display:inline-block;position:relative;zoom:1;*display:inline;outline:0;cursor:pointer;white-space:nowrap;vertical-align:middle;text-decoration:none}.x-btn-wrap{position:relative;display:block}.x-btn-button{position:relative;display:block;text-decoration:none;overflow:hidden;zoom:1}.x-btn-inner{display:block;white-space:nowrap;overflow:hidden;zoom:1}.x-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x-btn-inner-center{text-align:center}.x-btn-inner-left{text-align:left}.x-rtl.x-btn-inner-left{text-align:right}.x-btn-inner-right{text-align:right}.x-rtl.x-btn-inner-right{text-align:left}.x-box-layout-ct{overflow:hidden;zoom:1}.x-box-target{position:absolute;width:20000px;top:0;left:0;height:1px}.x-rtl.x-box-target{left:auto;right:0}.x-box-inner{overflow:hidden;zoom:1;position:relative;left:0;top:0}.x-horizontal-box-overflow-body{float:left}.x-box-scroller{position:relative;background-repeat:no-repeat}.x-box-scroller-left,.x-box-scroller-right{float:left;height:100%;z-index:5}.x-box-scroller-top .x-box-scroller,.x-box-scroller-bottom .x-box-scroller{line-height:0;font-size:0;background-position:center 0}.x-box-menu-after{float:right}.x-rtl.x-box-menu-after{float:left}.x-toolbar-text{white-space:nowrap}.x-toolbar-separator{display:block;font-size:1px;overflow:hidden;cursor:default;border:0;width:0;height:0;line-height:0}.x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal{width:2px}.x-toolbar-scroller{padding-left:0}.x-toolbar-plain{border:0}.x-docked{position:absolute!important;z-index:1}.x-docked-vertical{position:static}.x-docked-top{border-bottom-width:0!important}.x-docked-bottom{border-top-width:0!important}.x-docked-left{border-right-width:0!important}.x-docked-right{border-left-width:0!important}.x-docked-noborder-top{border-top-width:0!important}.x-docked-noborder-right{border-right-width:0!important}.x-docked-noborder-bottom{border-bottom-width:0!important}.x-docked-noborder-left{border-left-width:0!important}.x-noborder-l{border-left-width:0!important}.x-noborder-b{border-bottom-width:0!important}.x-noborder-bl{border-bottom-width:0!important;border-left-width:0!important}.x-noborder-r{border-right-width:0!important}.x-noborder-rl{border-right-width:0!important;border-left-width:0!important}.x-noborder-rb{border-right-width:0!important;border-bottom-width:0!important}.x-noborder-rbl{border-right-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x-noborder-t{border-top-width:0!important}.x-noborder-tl{border-top-width:0!important;border-left-width:0!important}.x-noborder-tb{border-top-width:0!important;border-bottom-width:0!important}.x-noborder-tbl{border-top-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x-noborder-tr{border-top-width:0!important;border-right-width:0!important}.x-noborder-trl{border-top-width:0!important;border-right-width:0!important;border-left-width:0!important}.x-noborder-trb{border-top-width:0!important;border-right-width:0!important;border-bottom-width:0!important}.x-noborder-trbl{border-width:0!important}.x-header-icon{background-repeat:no-repeat;background-position:0 0;vertical-align:middle;text-align:center}.x-header-text-container{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.x-rtl.x-header-text-container{-o-text-overflow:clip;text-overflow:clip}.x-dd-drag-proxy,.x-dd-drag-current{z-index:1000000!important;pointer-events:none}.x-dd-drag-repair .x-dd-drag-ghost{filter:alpha(opacity=60);opacity:.6}.x-dd-drag-repair .x-dd-drop-icon{display:none}.x-dd-drag-ghost{filter:alpha(opacity=85);opacity:.85;padding:5px;padding-left:20px;white-space:nowrap;color:#000;font:normal 11px tahoma,arial,verdana,sans-serif;border:1px solid;border-color:#ddd #bbb #bbb #ddd;background-color:#fff}.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}.x-rtl .x-dd-drag-ghost{padding-left:5px;padding-right:20px}.x-rtl .x-dd-drop-icon{left:auto;right:3px}.x-dd-drop-ok .x-dd-drop-icon{background-image:url(images/dd/drop-yes.gif)}.x-dd-drop-ok-add .x-dd-drop-icon{background-image:url(images/dd/drop-add.gif)}.x-dd-drop-nodrop div.x-dd-drop-icon{background-image:url(images/dd/drop-no.gif)}.x-panel,.x-plain{overflow:hidden;position:relative}.x-panel{outline:0}.x-ie .x-panel-header,.x-ie .x-panel-header-tl,.x-ie .x-panel-header-tc,.x-ie .x-panel-header-tr,.x-ie .x-panel-header-ml,.x-ie .x-panel-header-mc,.x-ie .x-panel-header-mr,.x-ie .x-panel-header-bl,.x-ie .x-panel-header-bc,.x-ie .x-panel-header-br{zoom:1}.x-ie8 td.x-frame-mc{vertical-align:top}.x-panel-body{overflow:hidden;position:relative}.x-nlg .x-panel-header-vertical .x-frame-mc{background-repeat:repeat-y}.x-panel-header-plain,.x-panel-body-plain{border:0;padding:0}.x-tip{position:absolute;overflow:visible}.x-tip-body{overflow:hidden;position:relative}.x-tip-anchor{position:absolute;overflow:hidden;border-style:solid}.x-table-layout{font-size:1em}.x-btn-group{position:relative;overflow:hidden}.x-btn-group-body{position:relative;zoom:1}.x-btn-group-body .x-table-layout-cell{vertical-align:top}.x-viewport,.x-viewport body{margin:0;padding:0;border:0 none;overflow:hidden;height:100%;position:static}.x-window{outline:0;overflow:hidden}.x-window .x-window-wrap{position:relative}.x-window-body{position:relative;overflow:hidden}.x-window-body-plain{background:transparent}.x-form-item-label{display:block}.x-form-item-label-right{text-align:right}.x-form-item-label-top{display:block;zoom:1}.x-form-invalid-icon{overflow:hidden}.x-form-invalid-icon ul{display:none}.x-form-textarea{overflow:auto;resize:none}.x-safari.x-mac .x-form-textarea{margin-bottom:-2px}.x-form-display-field-body{vertical-align:top}.x-form-cb-wrap{vertical-align:top}.x-form-cb{vertical-align:top;overflow:hidden;padding:0;border:0}.x-form-cb::-moz-focus-inner{padding:0;border:0}.x-form-cb-label{display:inline-block;zoom:1}.x-fieldset{display:block;position:relative}.x-fieldset-header{overflow:hidden}.x-fieldset-header .x-form-item,.x-fieldset-header .x-tool{float:left}.x-fieldset-header .x-form-cb-wrap{font-size:0;line-height:0}.x-fieldset-header .x-form-cb{margin:0}.x-rtl.x-fieldset-header .x-form-item,.x-rtl.x-fieldset-header .x-tool{float:right}.x-fieldset-header-text{float:left}.x-webkit *:focus{outline:none!important}.x-form-item{vertical-align:top;table-layout:fixed}.x-form-item-body{position:relative}.x-rtl.x-form-item .x-form-item-input-row{position:relative;right:0}.x-form-form-item td{border-top:1px solid transparent}.x-form-trigger{cursor:pointer;overflow:hidden;background-repeat:no-repeat}.x-item-disabled .x-form-trigger{cursor:default}.x-trigger-noedit{cursor:default}.x-form-trigger-wrap{vertical-align:top;border-collapse:separate}.x-form-spinner-up,.x-form-spinner-down{font-size:0}.x-datepicker{position:relative}.x-datepicker-inner{table-layout:fixed;width:100%;border-collapse:separate}.x-datepicker-cell{padding:0}.x-datepicker-header{position:relative;zoom:1}.x-datepicker-arrow{position:absolute;outline:0;font-size:0}.x-datepicker-column-header{padding:0}.x-datepicker-date{display:block;zoom:1;text-decoration:none}.x-monthpicker{position:absolute;left:0;top:0}.x-monthpicker-body{height:100%}.x-monthpicker-months,.x-monthpicker-years{float:left;height:100%}.x-monthpicker-item{float:left}.x-monthpicker-item-inner{display:block;text-decoration:none}.x-monthpicker-yearnav-button-ct{float:left;text-align:center}.x-monthpicker-yearnav-button{display:inline-block;outline:0;font-size:0}.x-monthpicker-buttons{position:absolute;bottom:0;width:100%}.x-strict .x-ie6 .x-monthpicker-buttons{bottom:-1px}.x-form-file-btn{overflow:hidden}.x-form-file-input{border:0;position:absolute;cursor:pointer;top:-2px;right:-2px;filter:alpha(opacity=0);opacity:0;font-size:1000px}.x-rtl.x-form-file-input{right:auto;left:-2px}.x-form-item-hidden{margin:0}.x-color-picker-item{float:left;text-decoration:none}.x-color-picker-item-inner{display:block;font-size:1px}.x-html-editor-tb .x-toolbar{position:static!important}.x-htmleditor-iframe{display:block;overflow:auto}.x-fit-item{position:relative}.x-grid-row,.x-grid-data-row{outline:0}.x-grid-view{overflow:hidden;position:relative}.x-grid-table{table-layout:fixed;border-collapse:separate}.x-grid-td{overflow:hidden;border-width:0;vertical-align:top}.x-grid-cell-inner{overflow:hidden;white-space:nowrap;zoom:1}.x-grid-resize-marker{position:absolute;z-index:5;top:0}.col-move-top,.col-move-bottom{position:absolute;top:0;line-height:0;font-size:0;overflow:hidden;z-index:20000;background:no-repeat center top transparent}.x-grid-header-ct{cursor:default}.x-column-header{position:absolute;overflow:hidden;background-repeat:repeat-x}.x-column-header-inner{zoom:1;white-space:nowrap;position:relative;overflow:hidden}.x-column-header-text{white-space:nowrap;background-repeat:no-repeat;zoom:1;display:inline-block}.x-column-header-trigger{display:none;height:100%;background-repeat:no-repeat;position:absolute;right:0;top:0;z-index:2}.x-rtl.x-column-header-trigger{left:0;right:auto}.x-column-header-over .x-column-header-trigger,.x-column-header-open .x-column-header-trigger{display:block}.x-column-header-align-right{text-align:right}.x-rtl.x-column-header-align-right{text-align:left}.x-column-header-align-left{text-align:left}.x-rtl.x-column-header-align-left{text-align:right}.x-column-header-align-center{text-align:center}.x-grid-cell-inner-action-col{line-height:0;font-size:0}.x-grid-cell-inner-checkcolumn{line-height:0;font-size:0}.x-row-numberer .x-column-header-inner{text-overflow:clip}.x-grid-group,.x-grid-group-body,.x-grid-group-hd{zoom:1}.x-grid-group-hd{white-space:nowrap}.x-grid-row-body-hidden,.x-grid-group-collapsed{display:none}.x-grid-rowbody{zoom:1}.x-grid-row-body-hidden{display:none}td.x-grid-rowwrap .x-grid-table{border:0}td.x-grid-rowwrap .x-grid-cell{border-bottom:0;background-color:transparent}.x-grid-editor .x-form-cb-wrap{text-align:center}.x-grid-editor .x-form-display-field{margin:0;white-space:nowrap;overflow:hidden}.x-grid-editor div.x-form-action-col-field{line-height:0}.x-grid-row-editor{position:absolute;overflow:visible;z-index:1}.x-grid-row-editor-buttons{position:absolute;white-space:nowrap}.x-grid-row-expander{font-size:0;line-height:0}.x-abs-layout-ct{position:relative}.x-abs-layout-item{position:absolute!important}.x-splitter{font-size:1px}.x-splitter-horizontal{cursor:e-resize;cursor:row-resize}.x-splitter-vertical{cursor:e-resize;cursor:col-resize}.x-splitter-collapsed,.x-splitter-horizontal-noresize,.x-splitter-vertical-noresize{cursor:default}.x-splitter-active{z-index:4}.x-collapse-el{position:absolute;background-repeat:no-repeat}.x-border-layout-ct{overflow:hidden;zoom:1}.x-border-layout-ct{position:relative}.x-border-region-slide-in{z-index:5}.x-region-collapsed-placeholder{z-index:4}.x-column{float:left}.x-rtl>.x-column{float:right}.x-ie6 .x-rtl .x-column,.x-quirks .x-ie .x-rtl .x-column{float:right}.x-ie6 .x-column{display:inline}.x-quirks .x-ie .x-form-layout-table,.x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item{position:relative}.x-form-layout-table{border-collapse:separate;border-spacing:0 2px}.x-ie6 .x-form-layout-table{border-collapse:collapse;border-spacing:0}.x-menu{outline:0}.x-menu-item{white-space:nowrap;overflow:hidden}.x-menu-item-cmp .x-field-label-cell{vertical-align:middle}.x-menu-icon-separator{position:absolute;top:0;z-index:0;height:100%;overflow:hidden}.x-menu-plain .x-menu-icon-separator{display:none}.x-menu-item-link{text-decoration:none;outline:0;zoom:1}.x-menu-item-text{zoom:1}.x-menu-item-icon,.x-menu-item-icon-right,.x-menu-item-arrow{position:absolute;text-align:center}.x-resizable-overlay{position:absolute;left:0;top:0;width:100%;height:100%;display:none;z-index:200000;background-color:#fff;filter:alpha(opacity=0);opacity:0}.x-slider{outline:0;zoom:1;position:relative}.x-slider-inner{position:relative;left:0;top:0;overflow:visible;zoom:1}.x-slider-vert .x-slider-inner{background:repeat-y 0 0}.x-slider-end{zoom:1}.x-slider-thumb{position:absolute;background:no-repeat 0 0}.x-slider-horz .x-slider-thumb{left:0}.x-slider-vert .x-slider-thumb{bottom:0}a.x-tab{text-decoration:none}.x-tab-bar{position:relative}.x-column-header-checkbox .x-column-header-text{display:block;background-repeat:no-repeat;font-size:0}.x-grid-cell-row-checker{vertical-align:middle;background-repeat:no-repeat;font-size:0}.x-tab{display:block;white-space:nowrap;z-index:1}.x-tab-active{z-index:3}.x-tab-wrap{display:block;position:relative}.x-tab-button{zoom:1;display:block;outline:0}.x-tab-inner{display:block;text-align:center;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis;overflow:hidden;zoom:1}.x-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x-tab-bar{z-index:1}.x-tab-bar-body{z-index:2;position:relative}.x-tab-bar-strip{position:absolute;line-height:0;font-size:0;z-index:1}.x-tab-bar-horizontal .x-tab-bar-strip{width:100%;left:0}.x-tab-bar-vertical .x-tab-bar-strip{height:100%;top:0}.x-tab-bar-strip-top{bottom:0}.x-tab-bar-strip-bottom{top:0}.x-tab-bar-strip-left{right:0}.x-rtl.x-tab-bar .x-tab-bar-strip-left{right:auto;left:0}.x-tab-bar-strip-right{left:0}.x-rtl.x-tab-bar .x-tab-bar-strip-right{left:auto;right:0}.x-tab-bar-plain{background:transparent!important}.x-tab-icon-el{position:absolute;background-repeat:no-repeat;top:0;left:0;right:auto;bottom:0}.x-rtl.x-tab-icon-el{left:auto;right:0}.x-tab-close-btn{display:block;position:absolute;font-size:0;line-height:0;background:no-repeat}.x-tab-mc{overflow:visible}.x-autowidth-table .x-grid-table{table-layout:auto;width:auto!important}.x-tree-view{overflow:hidden}.x-tree-elbow-img,.x-tree-icon{background-repeat:no-repeat;background-position:0 center;vertical-align:top}.x-tree-checkbox{border:0;padding:0;vertical-align:top;position:relative;background-color:transparent}.x-tree-animator-wrap{overflow:hidden}.x-tree-node-text{zoom:1}.x-surface{display:-moz-inline-stack;display:inline-block;vertical-align:middle;*vertical-align:auto;zoom:1;*display:inline;overflow:hidden}.rvml{behavior:url(#default#VML)}.x-surface tspan{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x-vml-sprite{position:absolute;left:0;top:0;width:1px;height:1px}.x-vml-group{position:absolute;left:0;top:0;width:1000px;height:1000px}.x-vml-measure-span{position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;display:inline}.x-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}.x-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}svg,vml{overflow:hidden}.x-body{color:black;font-size:12px;font-family:tahoma,arial,verdana,sans-serif}.x-animating-size,.x-collapsed{overflow:hidden!important}.x-editor .x-form-item-body{padding-bottom:0}.x-focus-element{position:absolute;top:-10px;left:-10px;width:0;height:0}.x-focus-frame{position:absolute;left:0;top:0;z-index:100000000;width:0;height:0}.x-focus-frame-top,.x-focus-frame-bottom,.x-focus-frame-left,.x-focus-frame-right{position:absolute;top:0;left:0}.x-focus-frame-top,.x-focus-frame-bottom{border-top:solid 2px #15428b;height:2px}.x-focus-frame-left,.x-focus-frame-right{border-left:solid 2px #15428b;width:2px}.x-mask{filter:alpha(opacity=50);opacity:.5;background:#ccc}.x-mask-msg{padding:2px;border-style:solid;border-width:1px;border-color:#99bce8;background-image:none;background-color:#dfe9f6}.x-mask-msg-inner{padding:0 5px;border-style:solid;border-width:1px;border-color:#a3bad9;background-color:#eee;color:#222;font:normal 11px tahoma,arial,verdana,sans-serif}.x-mask-msg-text{padding:5px 5px 5px 20px;background-image:url(images/grid/loading.gif);background-repeat:no-repeat;background-position:0 center}.x-rtl.x-mask-msg-text{padding:5px 20px 5px 5px;background-position:right center}.x-progress-default{background-color:#e0e8f3;border-width:1px;height:20px;border-color:#6594cf}.x-content-box .x-progress-default{height:18px}.x-progress-default .x-progress-bar-default{background-image:none;background-color:#73a3e0;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#b2ccee),color-stop(50%,#88b1e5),color-stop(51%,#73a3e0),color-stop(100%,#5e96db));background-image:-webkit-linear-gradient(top,#b2ccee,#88b1e5 50%,#73a3e0 51%,#5e96db);background-image:-moz-linear-gradient(top,#b2ccee,#88b1e5 50%,#73a3e0 51%,#5e96db);background-image:-o-linear-gradient(top,#b2ccee,#88b1e5 50%,#73a3e0 51%,#5e96db);background-image:linear-gradient(top,#b2ccee,#88b1e5 50%,#73a3e0 51%,#5e96db)}.x-nlg .x-progress-default .x-progress-bar-default{background:repeat-x;background-image:url(images/progress/progress-default-bg.gif)}.x-progress-default .x-progress-text{color:white;font-weight:bold;font-size:11px;text-align:center;line-height:18px}.x-progress-default .x-progress-text-back{color:#396295;line-height:18px}.x-progress-default .x-progress-bar-default:after{display:none;content:"x-slicer:bg:url(images/progress/progress-default-bg.gif)"}.x-btn-default-small{border-color:#d1d1d1}.x-btn-default-small{-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-image:none;background-color:white;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(48%,#f9f9f9),color-stop(52%,#e2e2e2),color-stop(100%,#e7e7e7));background-image:-webkit-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-moz-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-o-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7)}.x-btn-default-small-mc{background-image:url(images/btn/btn-default-small-fbg.gif);background-position:0 top;background-color:white}.x-nlg .x-btn-default-small{background-image:url(images/btn/btn-default-small-bg.gif);background-position:0 top}.x-nbr .x-btn-default-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-btn-default-small-tl{background-position:0 -6px}.x-btn-default-small-tr{background-position:right -9px}.x-btn-default-small-bl{background-position:0 -12px}.x-btn-default-small-br{background-position:right -15px}.x-btn-default-small-ml{background-position:0 top}.x-btn-default-small-mr{background-position:right top}.x-btn-default-small-tc{background-position:0 0}.x-btn-default-small-bc{background-position:0 -3px}.x-btn-default-small-tr,.x-btn-default-small-br,.x-btn-default-small-mr{padding-right:3px}.x-btn-default-small-tl,.x-btn-default-small-bl,.x-btn-default-small-ml{padding-left:3px}.x-btn-default-small-tc{height:3px}.x-btn-default-small-bc{height:3px}.x-btn-default-small-tl,.x-btn-default-small-bl,.x-btn-default-small-tr,.x-btn-default-small-br,.x-btn-default-small-tc,.x-btn-default-small-bc,.x-btn-default-small-ml,.x-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-corners.gif)}.x-btn-default-small-ml,.x-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-sides.gif)}.x-btn-default-small-mc{padding:0}.x-strict .x-ie7 .x-btn-default-small-tl,.x-strict .x-ie7 .x-btn-default-small-bl{position:relative;right:0}.x-btn-default-small:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"}.x-btn-default-small .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 4px}.x-btn-default-small .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-small .x-btn-arrow-right{padding-right:12px}.x-btn-default-small .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:12px}.x-btn-default-small .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-small .x-btn-glyph{font-size:16px;line-height:16px;color:#333;opacity:.5}.x-ie8m .x-btn-default-small .x-btn-glyph{color:#999}.x-btn-default-small-disabled{border-color:#e1e1e1;background-image:none;background-color:#f7f7f7;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f7f7f7),color-stop(48%,#f1f1f1),color-stop(52%,#dadada),color-stop(100%,#dfdfdf));background-image:-webkit-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-moz-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-o-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf)}.x-btn-default-small-icon .x-btn-button,.x-btn-default-small-noicon .x-btn-button{height:16px}.x-btn-default-small-icon .x-btn-inner,.x-btn-default-small-noicon .x-btn-inner{line-height:16px}.x-btn-default-small-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-small-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-small-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-small-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:4px;padding-left:0}.x-btn-default-small-icon .x-btn-inner{width:16px;padding:0}.x-btn-default-small-icon .x-btn-icon-el{width:16px;height:16px}.x-btn-default-small-icon-text-left .x-btn-button{height:16px}.x-btn-default-small-icon-text-left .x-btn-inner{line-height:16px;padding-left:20px}.x-btn-default-small-icon-text-left .x-rtl.x-btn-inner{padding-left:4px;padding-right:20px}.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:20px}.x-btn-default-small-icon-text-left .x-btn-icon-el{width:16px;right:auto}.x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-small-icon-text-left .x-btn-icon-el{height:16px}.x-btn-default-small-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-small-icon-text-right .x-btn-button{height:16px}.x-btn-default-small-icon-text-right .x-btn-inner{line-height:16px;padding-right:20px}.x-btn-default-small-icon-text-right .x-rtl.x-btn-inner{padding-right:4px;padding-left:20px}.x-btn-default-small-icon-text-right .x-btn-icon-el{width:16px;left:auto}.x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-small-icon-text-right .x-btn-icon-el{height:16px}.x-btn-default-small-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-small-icon-text-top .x-btn-inner{padding-top:20px}.x-btn-default-small-icon-text-top .x-btn-icon-el{height:16px;bottom:auto}.x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-small-icon-text-bottom .x-btn-inner{padding-bottom:20px}.x-btn-default-small-icon-text-bottom .x-btn-icon-el{height:16px;top:auto}.x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-small-over{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x-btn-default-small-focus{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x-btn-default-small-menu-active,.x-btn-default-small-pressed{border-color:#9ebae1;background-image:none;background-color:#b6cbe4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#b6cbe4),color-stop(48%,#bfd2e6),color-stop(52%,#8dc0f5),color-stop(100%,#98c5f5));background-image:-webkit-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-moz-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-o-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5)}.x-btn-default-small-over .x-frame-tl,.x-btn-default-small-over .x-frame-bl,.x-btn-default-small-over .x-frame-tr,.x-btn-default-small-over .x-frame-br,.x-btn-default-small-over .x-frame-tc,.x-btn-default-small-over .x-frame-bc{background-image:url(images/btn/btn-default-small-over-corners.gif)}.x-btn-default-small-over .x-frame-ml,.x-btn-default-small-over .x-frame-mr{background-image:url(images/btn/btn-default-small-over-sides.gif)}.x-btn-default-small-over .x-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-small-over-fbg.gif)}.x-btn-default-small-focus .x-frame-tl,.x-btn-default-small-focus .x-frame-bl,.x-btn-default-small-focus .x-frame-tr,.x-btn-default-small-focus .x-frame-br,.x-btn-default-small-focus .x-frame-tc,.x-btn-default-small-focus .x-frame-bc{background-image:url(images/btn/btn-default-small-focus-corners.gif)}.x-btn-default-small-focus .x-frame-ml,.x-btn-default-small-focus .x-frame-mr{background-image:url(images/btn/btn-default-small-focus-sides.gif)}.x-btn-default-small-focus .x-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-small-focus-fbg.gif)}.x-btn-default-small-menu-active .x-frame-tl,.x-btn-default-small-menu-active .x-frame-bl,.x-btn-default-small-menu-active .x-frame-tr,.x-btn-default-small-menu-active .x-frame-br,.x-btn-default-small-menu-active .x-frame-tc,.x-btn-default-small-menu-active .x-frame-bc,.x-btn-default-small-pressed .x-frame-tl,.x-btn-default-small-pressed .x-frame-bl,.x-btn-default-small-pressed .x-frame-tr,.x-btn-default-small-pressed .x-frame-br,.x-btn-default-small-pressed .x-frame-tc,.x-btn-default-small-pressed .x-frame-bc{background-image:url(images/btn/btn-default-small-pressed-corners.gif)}.x-btn-default-small-menu-active .x-frame-ml,.x-btn-default-small-menu-active .x-frame-mr,.x-btn-default-small-pressed .x-frame-ml,.x-btn-default-small-pressed .x-frame-mr{background-image:url(images/btn/btn-default-small-pressed-sides.gif)}.x-btn-default-small-menu-active .x-frame-mc,.x-btn-default-small-pressed .x-frame-mc{background-color:#b6cbe4;background-image:url(images/btn/btn-default-small-pressed-fbg.gif)}.x-btn-default-small-disabled .x-frame-tl,.x-btn-default-small-disabled .x-frame-bl,.x-btn-default-small-disabled .x-frame-tr,.x-btn-default-small-disabled .x-frame-br,.x-btn-default-small-disabled .x-frame-tc,.x-btn-default-small-disabled .x-frame-bc{background-image:url(images/btn/btn-default-small-disabled-corners.gif)}.x-btn-default-small-disabled .x-frame-ml,.x-btn-default-small-disabled .x-frame-mr{background-image:url(images/btn/btn-default-small-disabled-sides.gif)}.x-btn-default-small-disabled .x-frame-mc{background-color:#f7f7f7;background-image:url(images/btn/btn-default-small-disabled-fbg.gif)}.x-nlg .x-btn-default-small-over{background-image:url(images/btn/btn-default-small-over-bg.gif)}.x-nlg .x-btn-default-small-focus{background-image:url(images/btn/btn-default-small-focus-bg.gif)}.x-nlg .x-btn-default-small-menu-active,.x-nlg .x-btn-default-small-pressed{background-image:url(images/btn/btn-default-small-pressed-bg.gif)}.x-nlg .x-btn-default-small-disabled{background-image:url(images/btn/btn-default-small-disabled-bg.gif)}.x-nbr .x-btn-default-small{background-image:none}.x-btn-default-small .x-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:14px}.x-btn-default-small .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-rtl.gif);padding-right:0;padding-left:14px}.x-btn-default-small .x-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:14px}.x-btn-default-small-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-small-over .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x-btn-default-small-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-small-disabled .x-btn-inner,.x-btn-default-small-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-btn-default-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"}.x-btn-default-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"}.x-btn-default-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"}.x-btn-default-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"}.x-btn-default-medium{border-color:#d1d1d1}.x-btn-default-medium{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:white;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(48%,#f9f9f9),color-stop(52%,#e2e2e2),color-stop(100%,#e7e7e7));background-image:-webkit-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-moz-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-o-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7)}.x-btn-default-medium-mc{background-image:url(images/btn/btn-default-medium-fbg.gif);background-position:0 top;background-color:white}.x-nlg .x-btn-default-medium{background-image:url(images/btn/btn-default-medium-bg.gif);background-position:0 top}.x-nbr .x-btn-default-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-medium-tl{background-position:0 -6px}.x-btn-default-medium-tr{background-position:right -9px}.x-btn-default-medium-bl{background-position:0 -12px}.x-btn-default-medium-br{background-position:right -15px}.x-btn-default-medium-ml{background-position:0 top}.x-btn-default-medium-mr{background-position:right top}.x-btn-default-medium-tc{background-position:0 0}.x-btn-default-medium-bc{background-position:0 -3px}.x-btn-default-medium-tr,.x-btn-default-medium-br,.x-btn-default-medium-mr{padding-right:3px}.x-btn-default-medium-tl,.x-btn-default-medium-bl,.x-btn-default-medium-ml{padding-left:3px}.x-btn-default-medium-tc{height:3px}.x-btn-default-medium-bc{height:3px}.x-btn-default-medium-tl,.x-btn-default-medium-bl,.x-btn-default-medium-tr,.x-btn-default-medium-br,.x-btn-default-medium-tc,.x-btn-default-medium-bc,.x-btn-default-medium-ml,.x-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-corners.gif)}.x-btn-default-medium-ml,.x-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-sides.gif)}.x-btn-default-medium-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-medium-tl,.x-strict .x-ie7 .x-btn-default-medium-bl{position:relative;right:0}.x-btn-default-medium:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"}.x-btn-default-medium .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x-btn-default-medium .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-medium .x-btn-arrow-right{padding-right:12px}.x-btn-default-medium .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:12px}.x-btn-default-medium .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-medium .x-btn-glyph{font-size:24px;line-height:24px;color:#333;opacity:.5}.x-ie8m .x-btn-default-medium .x-btn-glyph{color:#999}.x-btn-default-medium-disabled{border-color:#e1e1e1;background-image:none;background-color:#f7f7f7;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f7f7f7),color-stop(48%,#f1f1f1),color-stop(52%,#dadada),color-stop(100%,#dfdfdf));background-image:-webkit-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-moz-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-o-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf)}.x-btn-default-medium-icon .x-btn-button,.x-btn-default-medium-noicon .x-btn-button{height:24px}.x-btn-default-medium-icon .x-btn-inner,.x-btn-default-medium-noicon .x-btn-inner{line-height:24px}.x-btn-default-medium-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-medium-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-medium-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-medium-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:0}.x-btn-default-medium-icon .x-btn-inner{width:24px;padding:0}.x-btn-default-medium-icon .x-btn-icon-el{width:24px;height:24px}.x-btn-default-medium-icon-text-left .x-btn-button{height:24px}.x-btn-default-medium-icon-text-left .x-btn-inner{line-height:24px;padding-left:28px}.x-btn-default-medium-icon-text-left .x-rtl.x-btn-inner{padding-left:3px;padding-right:28px}.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:28px}.x-btn-default-medium-icon-text-left .x-btn-icon-el{width:24px;right:auto}.x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon-el{height:24px}.x-btn-default-medium-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-medium-icon-text-right .x-btn-button{height:24px}.x-btn-default-medium-icon-text-right .x-btn-inner{line-height:24px;padding-right:28px}.x-btn-default-medium-icon-text-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:28px}.x-btn-default-medium-icon-text-right .x-btn-icon-el{width:24px;left:auto}.x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon-el{height:24px}.x-btn-default-medium-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-medium-icon-text-top .x-btn-inner{padding-top:28px}.x-btn-default-medium-icon-text-top .x-btn-icon-el{height:24px;bottom:auto}.x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-medium-icon-text-bottom .x-btn-inner{padding-bottom:28px}.x-btn-default-medium-icon-text-bottom .x-btn-icon-el{height:24px;top:auto}.x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-medium-over{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x-btn-default-medium-focus{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x-btn-default-medium-menu-active,.x-btn-default-medium-pressed{border-color:#9ebae1;background-image:none;background-color:#b6cbe4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#b6cbe4),color-stop(48%,#bfd2e6),color-stop(52%,#8dc0f5),color-stop(100%,#98c5f5));background-image:-webkit-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-moz-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-o-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5)}.x-btn-default-medium-over .x-frame-tl,.x-btn-default-medium-over .x-frame-bl,.x-btn-default-medium-over .x-frame-tr,.x-btn-default-medium-over .x-frame-br,.x-btn-default-medium-over .x-frame-tc,.x-btn-default-medium-over .x-frame-bc{background-image:url(images/btn/btn-default-medium-over-corners.gif)}.x-btn-default-medium-over .x-frame-ml,.x-btn-default-medium-over .x-frame-mr{background-image:url(images/btn/btn-default-medium-over-sides.gif)}.x-btn-default-medium-over .x-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-medium-over-fbg.gif)}.x-btn-default-medium-focus .x-frame-tl,.x-btn-default-medium-focus .x-frame-bl,.x-btn-default-medium-focus .x-frame-tr,.x-btn-default-medium-focus .x-frame-br,.x-btn-default-medium-focus .x-frame-tc,.x-btn-default-medium-focus .x-frame-bc{background-image:url(images/btn/btn-default-medium-focus-corners.gif)}.x-btn-default-medium-focus .x-frame-ml,.x-btn-default-medium-focus .x-frame-mr{background-image:url(images/btn/btn-default-medium-focus-sides.gif)}.x-btn-default-medium-focus .x-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-medium-focus-fbg.gif)}.x-btn-default-medium-menu-active .x-frame-tl,.x-btn-default-medium-menu-active .x-frame-bl,.x-btn-default-medium-menu-active .x-frame-tr,.x-btn-default-medium-menu-active .x-frame-br,.x-btn-default-medium-menu-active .x-frame-tc,.x-btn-default-medium-menu-active .x-frame-bc,.x-btn-default-medium-pressed .x-frame-tl,.x-btn-default-medium-pressed .x-frame-bl,.x-btn-default-medium-pressed .x-frame-tr,.x-btn-default-medium-pressed .x-frame-br,.x-btn-default-medium-pressed .x-frame-tc,.x-btn-default-medium-pressed .x-frame-bc{background-image:url(images/btn/btn-default-medium-pressed-corners.gif)}.x-btn-default-medium-menu-active .x-frame-ml,.x-btn-default-medium-menu-active .x-frame-mr,.x-btn-default-medium-pressed .x-frame-ml,.x-btn-default-medium-pressed .x-frame-mr{background-image:url(images/btn/btn-default-medium-pressed-sides.gif)}.x-btn-default-medium-menu-active .x-frame-mc,.x-btn-default-medium-pressed .x-frame-mc{background-color:#b6cbe4;background-image:url(images/btn/btn-default-medium-pressed-fbg.gif)}.x-btn-default-medium-disabled .x-frame-tl,.x-btn-default-medium-disabled .x-frame-bl,.x-btn-default-medium-disabled .x-frame-tr,.x-btn-default-medium-disabled .x-frame-br,.x-btn-default-medium-disabled .x-frame-tc,.x-btn-default-medium-disabled .x-frame-bc{background-image:url(images/btn/btn-default-medium-disabled-corners.gif)}.x-btn-default-medium-disabled .x-frame-ml,.x-btn-default-medium-disabled .x-frame-mr{background-image:url(images/btn/btn-default-medium-disabled-sides.gif)}.x-btn-default-medium-disabled .x-frame-mc{background-color:#f7f7f7;background-image:url(images/btn/btn-default-medium-disabled-fbg.gif)}.x-nlg .x-btn-default-medium-over{background-image:url(images/btn/btn-default-medium-over-bg.gif)}.x-nlg .x-btn-default-medium-focus{background-image:url(images/btn/btn-default-medium-focus-bg.gif)}.x-nlg .x-btn-default-medium-menu-active,.x-nlg .x-btn-default-medium-pressed{background-image:url(images/btn/btn-default-medium-pressed-bg.gif)}.x-nlg .x-btn-default-medium-disabled{background-image:url(images/btn/btn-default-medium-disabled-bg.gif)}.x-nbr .x-btn-default-medium{background-image:none}.x-btn-default-medium .x-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:14px}.x-btn-default-medium .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-rtl.gif);padding-right:0;padding-left:14px}.x-btn-default-medium .x-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:14px}.x-btn-default-medium-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-medium-over .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x-btn-default-medium-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-medium-disabled .x-btn-inner,.x-btn-default-medium-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-btn-default-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"}.x-btn-default-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"}.x-btn-default-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"}.x-btn-default-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"}.x-btn-default-large{border-color:#d1d1d1}.x-btn-default-large{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:white;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(48%,#f9f9f9),color-stop(52%,#e2e2e2),color-stop(100%,#e7e7e7));background-image:-webkit-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-moz-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-o-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7)}.x-btn-default-large-mc{background-image:url(images/btn/btn-default-large-fbg.gif);background-position:0 top;background-color:white}.x-nlg .x-btn-default-large{background-image:url(images/btn/btn-default-large-bg.gif);background-position:0 top}.x-nbr .x-btn-default-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-large-tl{background-position:0 -6px}.x-btn-default-large-tr{background-position:right -9px}.x-btn-default-large-bl{background-position:0 -12px}.x-btn-default-large-br{background-position:right -15px}.x-btn-default-large-ml{background-position:0 top}.x-btn-default-large-mr{background-position:right top}.x-btn-default-large-tc{background-position:0 0}.x-btn-default-large-bc{background-position:0 -3px}.x-btn-default-large-tr,.x-btn-default-large-br,.x-btn-default-large-mr{padding-right:3px}.x-btn-default-large-tl,.x-btn-default-large-bl,.x-btn-default-large-ml{padding-left:3px}.x-btn-default-large-tc{height:3px}.x-btn-default-large-bc{height:3px}.x-btn-default-large-tl,.x-btn-default-large-bl,.x-btn-default-large-tr,.x-btn-default-large-br,.x-btn-default-large-tc,.x-btn-default-large-bc,.x-btn-default-large-ml,.x-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-corners.gif)}.x-btn-default-large-ml,.x-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-sides.gif)}.x-btn-default-large-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-large-tl,.x-strict .x-ie7 .x-btn-default-large-bl{position:relative;right:0}.x-btn-default-large:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"}.x-btn-default-large .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x-btn-default-large .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-large .x-btn-arrow-right{padding-right:12px}.x-btn-default-large .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:12px}.x-btn-default-large .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-large .x-btn-glyph{font-size:32px;line-height:32px;color:#333;opacity:.5}.x-ie8m .x-btn-default-large .x-btn-glyph{color:#999}.x-btn-default-large-disabled{border-color:#e1e1e1;background-image:none;background-color:#f7f7f7;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f7f7f7),color-stop(48%,#f1f1f1),color-stop(52%,#dadada),color-stop(100%,#dfdfdf));background-image:-webkit-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-moz-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-o-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf)}.x-btn-default-large-icon .x-btn-button,.x-btn-default-large-noicon .x-btn-button{height:32px}.x-btn-default-large-icon .x-btn-inner,.x-btn-default-large-noicon .x-btn-inner{line-height:32px}.x-btn-default-large-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-large-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-large-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-large-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:0}.x-btn-default-large-icon .x-btn-inner{width:32px;padding:0}.x-btn-default-large-icon .x-btn-icon-el{width:32px;height:32px}.x-btn-default-large-icon-text-left .x-btn-button{height:32px}.x-btn-default-large-icon-text-left .x-btn-inner{line-height:32px;padding-left:36px}.x-btn-default-large-icon-text-left .x-rtl.x-btn-inner{padding-left:3px;padding-right:36px}.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:36px}.x-btn-default-large-icon-text-left .x-btn-icon-el{width:32px;right:auto}.x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-large-icon-text-left .x-btn-icon-el{height:32px}.x-btn-default-large-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-large-icon-text-right .x-btn-button{height:32px}.x-btn-default-large-icon-text-right .x-btn-inner{line-height:32px;padding-right:36px}.x-btn-default-large-icon-text-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:36px}.x-btn-default-large-icon-text-right .x-btn-icon-el{width:32px;left:auto}.x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-large-icon-text-right .x-btn-icon-el{height:32px}.x-btn-default-large-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-large-icon-text-top .x-btn-inner{padding-top:36px}.x-btn-default-large-icon-text-top .x-btn-icon-el{height:32px;bottom:auto}.x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-large-icon-text-bottom .x-btn-inner{padding-bottom:36px}.x-btn-default-large-icon-text-bottom .x-btn-icon-el{height:32px;top:auto}.x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-large-over{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x-btn-default-large-focus{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x-btn-default-large-menu-active,.x-btn-default-large-pressed{border-color:#9ebae1;background-image:none;background-color:#b6cbe4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#b6cbe4),color-stop(48%,#bfd2e6),color-stop(52%,#8dc0f5),color-stop(100%,#98c5f5));background-image:-webkit-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-moz-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-o-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5)}.x-btn-default-large-over .x-frame-tl,.x-btn-default-large-over .x-frame-bl,.x-btn-default-large-over .x-frame-tr,.x-btn-default-large-over .x-frame-br,.x-btn-default-large-over .x-frame-tc,.x-btn-default-large-over .x-frame-bc{background-image:url(images/btn/btn-default-large-over-corners.gif)}.x-btn-default-large-over .x-frame-ml,.x-btn-default-large-over .x-frame-mr{background-image:url(images/btn/btn-default-large-over-sides.gif)}.x-btn-default-large-over .x-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-large-over-fbg.gif)}.x-btn-default-large-focus .x-frame-tl,.x-btn-default-large-focus .x-frame-bl,.x-btn-default-large-focus .x-frame-tr,.x-btn-default-large-focus .x-frame-br,.x-btn-default-large-focus .x-frame-tc,.x-btn-default-large-focus .x-frame-bc{background-image:url(images/btn/btn-default-large-focus-corners.gif)}.x-btn-default-large-focus .x-frame-ml,.x-btn-default-large-focus .x-frame-mr{background-image:url(images/btn/btn-default-large-focus-sides.gif)}.x-btn-default-large-focus .x-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-large-focus-fbg.gif)}.x-btn-default-large-menu-active .x-frame-tl,.x-btn-default-large-menu-active .x-frame-bl,.x-btn-default-large-menu-active .x-frame-tr,.x-btn-default-large-menu-active .x-frame-br,.x-btn-default-large-menu-active .x-frame-tc,.x-btn-default-large-menu-active .x-frame-bc,.x-btn-default-large-pressed .x-frame-tl,.x-btn-default-large-pressed .x-frame-bl,.x-btn-default-large-pressed .x-frame-tr,.x-btn-default-large-pressed .x-frame-br,.x-btn-default-large-pressed .x-frame-tc,.x-btn-default-large-pressed .x-frame-bc{background-image:url(images/btn/btn-default-large-pressed-corners.gif)}.x-btn-default-large-menu-active .x-frame-ml,.x-btn-default-large-menu-active .x-frame-mr,.x-btn-default-large-pressed .x-frame-ml,.x-btn-default-large-pressed .x-frame-mr{background-image:url(images/btn/btn-default-large-pressed-sides.gif)}.x-btn-default-large-menu-active .x-frame-mc,.x-btn-default-large-pressed .x-frame-mc{background-color:#b6cbe4;background-image:url(images/btn/btn-default-large-pressed-fbg.gif)}.x-btn-default-large-disabled .x-frame-tl,.x-btn-default-large-disabled .x-frame-bl,.x-btn-default-large-disabled .x-frame-tr,.x-btn-default-large-disabled .x-frame-br,.x-btn-default-large-disabled .x-frame-tc,.x-btn-default-large-disabled .x-frame-bc{background-image:url(images/btn/btn-default-large-disabled-corners.gif)}.x-btn-default-large-disabled .x-frame-ml,.x-btn-default-large-disabled .x-frame-mr{background-image:url(images/btn/btn-default-large-disabled-sides.gif)}.x-btn-default-large-disabled .x-frame-mc{background-color:#f7f7f7;background-image:url(images/btn/btn-default-large-disabled-fbg.gif)}.x-nlg .x-btn-default-large-over{background-image:url(images/btn/btn-default-large-over-bg.gif)}.x-nlg .x-btn-default-large-focus{background-image:url(images/btn/btn-default-large-focus-bg.gif)}.x-nlg .x-btn-default-large-menu-active,.x-nlg .x-btn-default-large-pressed{background-image:url(images/btn/btn-default-large-pressed-bg.gif)}.x-nlg .x-btn-default-large-disabled{background-image:url(images/btn/btn-default-large-disabled-bg.gif)}.x-nbr .x-btn-default-large{background-image:none}.x-btn-default-large .x-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:14px}.x-btn-default-large .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-rtl.gif);padding-right:0;padding-left:14px}.x-btn-default-large .x-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:14px}.x-btn-default-large-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-large-over .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x-btn-default-large-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-large-disabled .x-btn-inner,.x-btn-default-large-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-btn-default-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"}.x-btn-default-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"}.x-btn-default-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"}.x-btn-default-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"}.x-btn-default-toolbar-small{border-color:transparent}.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:2px 2px 2px 2px;border-width:1px;border-style:solid;background-color:transparent}.x-btn-default-toolbar-small-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-default-toolbar-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-btn-default-toolbar-small-tl{background-position:0 -6px}.x-btn-default-toolbar-small-tr{background-position:right -9px}.x-btn-default-toolbar-small-bl{background-position:0 -12px}.x-btn-default-toolbar-small-br{background-position:right -15px}.x-btn-default-toolbar-small-ml{background-position:0 top}.x-btn-default-toolbar-small-mr{background-position:right top}.x-btn-default-toolbar-small-tc{background-position:0 0}.x-btn-default-toolbar-small-bc{background-position:0 -3px}.x-btn-default-toolbar-small-tr,.x-btn-default-toolbar-small-br,.x-btn-default-toolbar-small-mr{padding-right:3px}.x-btn-default-toolbar-small-tl,.x-btn-default-toolbar-small-bl,.x-btn-default-toolbar-small-ml{padding-left:3px}.x-btn-default-toolbar-small-tc{height:3px}.x-btn-default-toolbar-small-bc{height:3px}.x-btn-default-toolbar-small-tl,.x-btn-default-toolbar-small-bl,.x-btn-default-toolbar-small-tr,.x-btn-default-toolbar-small-br,.x-btn-default-toolbar-small-tc,.x-btn-default-toolbar-small-bc,.x-btn-default-toolbar-small-ml,.x-btn-default-toolbar-small-mr{zoom:1}.x-btn-default-toolbar-small-ml,.x-btn-default-toolbar-small-mr{zoom:1}.x-btn-default-toolbar-small-mc{padding:0}.x-strict .x-ie7 .x-btn-default-toolbar-small-tl,.x-strict .x-ie7 .x-btn-default-toolbar-small-bl{position:relative;right:0}.x-btn-default-toolbar-small .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 4px}.x-btn-default-toolbar-small .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-toolbar-small .x-btn-arrow-right{padding-right:12px}.x-btn-default-toolbar-small .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:12px}.x-btn-default-toolbar-small .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-toolbar-small .x-btn-glyph{font-size:16px;line-height:16px;color:#333;opacity:.5}.x-ie8m .x-btn-default-toolbar-small .x-btn-glyph{color:#999}.x-btn-default-toolbar-small-disabled{border-color:#e1e1e1;background-image:none;background-color:transparent}.x-btn-default-toolbar-small-disabled .x-btn-inner{color:#8c8c8c}.x-btn-default-toolbar-small-icon .x-btn-button,.x-btn-default-toolbar-small-noicon .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon .x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-inner{line-height:16px}.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:4px;padding-left:0}.x-btn-default-toolbar-small-icon .x-btn-inner{width:16px;padding:0}.x-btn-default-toolbar-small-icon .x-btn-icon-el{width:16px;height:16px}.x-btn-default-toolbar-small-icon-text-left .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon-text-left .x-btn-inner{line-height:16px;padding-left:20px}.x-btn-default-toolbar-small-icon-text-left .x-rtl.x-btn-inner{padding-left:4px;padding-right:20px}.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:20px}.x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el{width:16px;right:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el{height:16px}.x-btn-default-toolbar-small-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-toolbar-small-icon-text-right .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon-text-right .x-btn-inner{line-height:16px;padding-right:20px}.x-btn-default-toolbar-small-icon-text-right .x-rtl.x-btn-inner{padding-right:4px;padding-left:20px}.x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el{width:16px;left:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el{height:16px}.x-btn-default-toolbar-small-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-toolbar-small-icon-text-top .x-btn-inner{padding-top:20px}.x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el{height:16px;bottom:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner{padding-bottom:20px}.x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el{height:16px;top:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-small-over{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x-btn-default-toolbar-small-focus{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x-btn-default-toolbar-small-menu-active,.x-btn-default-toolbar-small-pressed{border-color:#7a9ac4;background-image:none;background-color:#bccfe5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#bccfe5),color-stop(48%,#c5d6e7),color-stop(52%,#95c4f4),color-stop(100%,#9fc9f5));background-image:-webkit-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-moz-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-o-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5)}.x-btn-default-toolbar-small-over .x-frame-tl,.x-btn-default-toolbar-small-over .x-frame-bl,.x-btn-default-toolbar-small-over .x-frame-tr,.x-btn-default-toolbar-small-over .x-frame-br,.x-btn-default-toolbar-small-over .x-frame-tc,.x-btn-default-toolbar-small-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-over-corners.gif)}.x-btn-default-toolbar-small-over .x-frame-ml,.x-btn-default-toolbar-small-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-over-sides.gif)}.x-btn-default-toolbar-small-over .x-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-small-over-fbg.gif)}.x-btn-default-toolbar-small-focus .x-frame-tl,.x-btn-default-toolbar-small-focus .x-frame-bl,.x-btn-default-toolbar-small-focus .x-frame-tr,.x-btn-default-toolbar-small-focus .x-frame-br,.x-btn-default-toolbar-small-focus .x-frame-tc,.x-btn-default-toolbar-small-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-focus-corners.gif)}.x-btn-default-toolbar-small-focus .x-frame-ml,.x-btn-default-toolbar-small-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-focus-sides.gif)}.x-btn-default-toolbar-small-focus .x-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-small-focus-fbg.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-tl,.x-btn-default-toolbar-small-menu-active .x-frame-bl,.x-btn-default-toolbar-small-menu-active .x-frame-tr,.x-btn-default-toolbar-small-menu-active .x-frame-br,.x-btn-default-toolbar-small-menu-active .x-frame-tc,.x-btn-default-toolbar-small-menu-active .x-frame-bc,.x-btn-default-toolbar-small-pressed .x-frame-tl,.x-btn-default-toolbar-small-pressed .x-frame-bl,.x-btn-default-toolbar-small-pressed .x-frame-tr,.x-btn-default-toolbar-small-pressed .x-frame-br,.x-btn-default-toolbar-small-pressed .x-frame-tc,.x-btn-default-toolbar-small-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-pressed-corners.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-ml,.x-btn-default-toolbar-small-menu-active .x-frame-mr,.x-btn-default-toolbar-small-pressed .x-frame-ml,.x-btn-default-toolbar-small-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-pressed-sides.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-mc,.x-btn-default-toolbar-small-pressed .x-frame-mc{background-color:#bccfe5;background-image:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif)}.x-btn-default-toolbar-small-disabled .x-frame-tl,.x-btn-default-toolbar-small-disabled .x-frame-bl,.x-btn-default-toolbar-small-disabled .x-frame-tr,.x-btn-default-toolbar-small-disabled .x-frame-br,.x-btn-default-toolbar-small-disabled .x-frame-tc,.x-btn-default-toolbar-small-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-disabled-corners.gif)}.x-btn-default-toolbar-small-disabled .x-frame-ml,.x-btn-default-toolbar-small-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)}.x-btn-default-toolbar-small-disabled .x-frame-mc{background-color:transparent}.x-nlg .x-btn-default-toolbar-small-over{background-image:url(images/btn/btn-default-toolbar-small-over-bg.gif)}.x-nlg .x-btn-default-toolbar-small-focus{background-image:url(images/btn/btn-default-toolbar-small-focus-bg.gif)}.x-nlg .x-btn-default-toolbar-small-menu-active,.x-nlg .x-btn-default-toolbar-small-pressed{background-image:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)}.x-nbr .x-btn-default-toolbar-small{background-image:none}.x-btn-default-toolbar-small .x-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:14px}.x-btn-default-toolbar-small .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-noline-rtl.gif);padding-right:0;padding-left:14px}.x-btn-default-toolbar-small .x-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:14px}.x-btn-default-toolbar-small-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-toolbar-small-over .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x-btn-default-toolbar-small-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-toolbar-small-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-over-bg.gif)"}.x-btn-default-toolbar-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-focus-bg.gif)"}.x-btn-default-toolbar-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)"}.x-btn-default-toolbar-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)"}.x-btn-default-toolbar-medium{border-color:transparent}.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:transparent}.x-btn-default-toolbar-medium-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-default-toolbar-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-toolbar-medium-tl{background-position:0 -6px}.x-btn-default-toolbar-medium-tr{background-position:right -9px}.x-btn-default-toolbar-medium-bl{background-position:0 -12px}.x-btn-default-toolbar-medium-br{background-position:right -15px}.x-btn-default-toolbar-medium-ml{background-position:0 top}.x-btn-default-toolbar-medium-mr{background-position:right top}.x-btn-default-toolbar-medium-tc{background-position:0 0}.x-btn-default-toolbar-medium-bc{background-position:0 -3px}.x-btn-default-toolbar-medium-tr,.x-btn-default-toolbar-medium-br,.x-btn-default-toolbar-medium-mr{padding-right:3px}.x-btn-default-toolbar-medium-tl,.x-btn-default-toolbar-medium-bl,.x-btn-default-toolbar-medium-ml{padding-left:3px}.x-btn-default-toolbar-medium-tc{height:3px}.x-btn-default-toolbar-medium-bc{height:3px}.x-btn-default-toolbar-medium-tl,.x-btn-default-toolbar-medium-bl,.x-btn-default-toolbar-medium-tr,.x-btn-default-toolbar-medium-br,.x-btn-default-toolbar-medium-tc,.x-btn-default-toolbar-medium-bc,.x-btn-default-toolbar-medium-ml,.x-btn-default-toolbar-medium-mr{zoom:1}.x-btn-default-toolbar-medium-ml,.x-btn-default-toolbar-medium-mr{zoom:1}.x-btn-default-toolbar-medium-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-toolbar-medium-tl,.x-strict .x-ie7 .x-btn-default-toolbar-medium-bl{position:relative;right:0}.x-btn-default-toolbar-medium .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x-btn-default-toolbar-medium .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-toolbar-medium .x-btn-arrow-right{padding-right:12px}.x-btn-default-toolbar-medium .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:12px}.x-btn-default-toolbar-medium .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-toolbar-medium .x-btn-glyph{font-size:24px;line-height:24px;color:#333;opacity:.5}.x-ie8m .x-btn-default-toolbar-medium .x-btn-glyph{color:#999}.x-btn-default-toolbar-medium-disabled{border-color:#e1e1e1;background-image:none;background-color:transparent}.x-btn-default-toolbar-medium-disabled .x-btn-inner{color:#8c8c8c}.x-btn-default-toolbar-medium-icon .x-btn-button,.x-btn-default-toolbar-medium-noicon .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon .x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-inner{line-height:24px}.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:0}.x-btn-default-toolbar-medium-icon .x-btn-inner{width:24px;padding:0}.x-btn-default-toolbar-medium-icon .x-btn-icon-el{width:24px;height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-inner{line-height:24px;padding-left:28px}.x-btn-default-toolbar-medium-icon-text-left .x-rtl.x-btn-inner{padding-left:3px;padding-right:28px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:28px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el{width:24px;right:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el{height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-toolbar-medium-icon-text-right .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-inner{line-height:24px;padding-right:28px}.x-btn-default-toolbar-medium-icon-text-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:28px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el{width:24px;left:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el{height:24px}.x-btn-default-toolbar-medium-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-toolbar-medium-icon-text-top .x-btn-inner{padding-top:28px}.x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el{height:24px;bottom:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner{padding-bottom:28px}.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el{height:24px;top:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-medium-over{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x-btn-default-toolbar-medium-focus{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x-btn-default-toolbar-medium-menu-active,.x-btn-default-toolbar-medium-pressed{border-color:#7a9ac4;background-image:none;background-color:#bccfe5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#bccfe5),color-stop(48%,#c5d6e7),color-stop(52%,#95c4f4),color-stop(100%,#9fc9f5));background-image:-webkit-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-moz-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-o-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5)}.x-btn-default-toolbar-medium-over .x-frame-tl,.x-btn-default-toolbar-medium-over .x-frame-bl,.x-btn-default-toolbar-medium-over .x-frame-tr,.x-btn-default-toolbar-medium-over .x-frame-br,.x-btn-default-toolbar-medium-over .x-frame-tc,.x-btn-default-toolbar-medium-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-over-corners.gif)}.x-btn-default-toolbar-medium-over .x-frame-ml,.x-btn-default-toolbar-medium-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-over-sides.gif)}.x-btn-default-toolbar-medium-over .x-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-medium-over-fbg.gif)}.x-btn-default-toolbar-medium-focus .x-frame-tl,.x-btn-default-toolbar-medium-focus .x-frame-bl,.x-btn-default-toolbar-medium-focus .x-frame-tr,.x-btn-default-toolbar-medium-focus .x-frame-br,.x-btn-default-toolbar-medium-focus .x-frame-tc,.x-btn-default-toolbar-medium-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-focus-corners.gif)}.x-btn-default-toolbar-medium-focus .x-frame-ml,.x-btn-default-toolbar-medium-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-focus-sides.gif)}.x-btn-default-toolbar-medium-focus .x-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-tl,.x-btn-default-toolbar-medium-menu-active .x-frame-bl,.x-btn-default-toolbar-medium-menu-active .x-frame-tr,.x-btn-default-toolbar-medium-menu-active .x-frame-br,.x-btn-default-toolbar-medium-menu-active .x-frame-tc,.x-btn-default-toolbar-medium-menu-active .x-frame-bc,.x-btn-default-toolbar-medium-pressed .x-frame-tl,.x-btn-default-toolbar-medium-pressed .x-frame-bl,.x-btn-default-toolbar-medium-pressed .x-frame-tr,.x-btn-default-toolbar-medium-pressed .x-frame-br,.x-btn-default-toolbar-medium-pressed .x-frame-tc,.x-btn-default-toolbar-medium-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-ml,.x-btn-default-toolbar-medium-menu-active .x-frame-mr,.x-btn-default-toolbar-medium-pressed .x-frame-ml,.x-btn-default-toolbar-medium-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-mc,.x-btn-default-toolbar-medium-pressed .x-frame-mc{background-color:#bccfe5;background-image:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-tl,.x-btn-default-toolbar-medium-disabled .x-frame-bl,.x-btn-default-toolbar-medium-disabled .x-frame-tr,.x-btn-default-toolbar-medium-disabled .x-frame-br,.x-btn-default-toolbar-medium-disabled .x-frame-tc,.x-btn-default-toolbar-medium-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-ml,.x-btn-default-toolbar-medium-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-mc{background-color:transparent}.x-nlg .x-btn-default-toolbar-medium-over{background-image:url(images/btn/btn-default-toolbar-medium-over-bg.gif)}.x-nlg .x-btn-default-toolbar-medium-focus{background-image:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)}.x-nlg .x-btn-default-toolbar-medium-menu-active,.x-nlg .x-btn-default-toolbar-medium-pressed{background-image:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)}.x-nbr .x-btn-default-toolbar-medium{background-image:none}.x-btn-default-toolbar-medium .x-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:14px}.x-btn-default-toolbar-medium .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-noline-rtl.gif);padding-right:0;padding-left:14px}.x-btn-default-toolbar-medium .x-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:14px}.x-btn-default-toolbar-medium-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-toolbar-medium-over .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x-btn-default-toolbar-medium-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-toolbar-medium-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-over-bg.gif)"}.x-btn-default-toolbar-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)"}.x-btn-default-toolbar-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)"}.x-btn-default-toolbar-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)"}.x-btn-default-toolbar-large{border-color:transparent}.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:transparent}.x-btn-default-toolbar-large-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-default-toolbar-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-toolbar-large-tl{background-position:0 -6px}.x-btn-default-toolbar-large-tr{background-position:right -9px}.x-btn-default-toolbar-large-bl{background-position:0 -12px}.x-btn-default-toolbar-large-br{background-position:right -15px}.x-btn-default-toolbar-large-ml{background-position:0 top}.x-btn-default-toolbar-large-mr{background-position:right top}.x-btn-default-toolbar-large-tc{background-position:0 0}.x-btn-default-toolbar-large-bc{background-position:0 -3px}.x-btn-default-toolbar-large-tr,.x-btn-default-toolbar-large-br,.x-btn-default-toolbar-large-mr{padding-right:3px}.x-btn-default-toolbar-large-tl,.x-btn-default-toolbar-large-bl,.x-btn-default-toolbar-large-ml{padding-left:3px}.x-btn-default-toolbar-large-tc{height:3px}.x-btn-default-toolbar-large-bc{height:3px}.x-btn-default-toolbar-large-tl,.x-btn-default-toolbar-large-bl,.x-btn-default-toolbar-large-tr,.x-btn-default-toolbar-large-br,.x-btn-default-toolbar-large-tc,.x-btn-default-toolbar-large-bc,.x-btn-default-toolbar-large-ml,.x-btn-default-toolbar-large-mr{zoom:1}.x-btn-default-toolbar-large-ml,.x-btn-default-toolbar-large-mr{zoom:1}.x-btn-default-toolbar-large-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-toolbar-large-tl,.x-strict .x-ie7 .x-btn-default-toolbar-large-bl{position:relative;right:0}.x-btn-default-toolbar-large .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x-btn-default-toolbar-large .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-toolbar-large .x-btn-arrow-right{padding-right:12px}.x-btn-default-toolbar-large .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:12px}.x-btn-default-toolbar-large .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-toolbar-large .x-btn-glyph{font-size:32px;line-height:32px;color:#333;opacity:.5}.x-ie8m .x-btn-default-toolbar-large .x-btn-glyph{color:#999}.x-btn-default-toolbar-large-disabled{border-color:#e1e1e1;background-image:none;background-color:transparent}.x-btn-default-toolbar-large-disabled .x-btn-inner{color:#8c8c8c}.x-btn-default-toolbar-large-icon .x-btn-button,.x-btn-default-toolbar-large-noicon .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon .x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-inner{line-height:32px}.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:0}.x-btn-default-toolbar-large-icon .x-btn-inner{width:32px;padding:0}.x-btn-default-toolbar-large-icon .x-btn-icon-el{width:32px;height:32px}.x-btn-default-toolbar-large-icon-text-left .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon-text-left .x-btn-inner{line-height:32px;padding-left:36px}.x-btn-default-toolbar-large-icon-text-left .x-rtl.x-btn-inner{padding-left:3px;padding-right:36px}.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:36px}.x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el{width:32px;right:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el{height:32px}.x-btn-default-toolbar-large-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-toolbar-large-icon-text-right .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon-text-right .x-btn-inner{line-height:32px;padding-right:36px}.x-btn-default-toolbar-large-icon-text-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:36px}.x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el{width:32px;left:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el{height:32px}.x-btn-default-toolbar-large-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-toolbar-large-icon-text-top .x-btn-inner{padding-top:36px}.x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el{height:32px;bottom:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner{padding-bottom:36px}.x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el{height:32px;top:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-large-over{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x-btn-default-toolbar-large-focus{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x-btn-default-toolbar-large-menu-active,.x-btn-default-toolbar-large-pressed{border-color:#7a9ac4;background-image:none;background-color:#bccfe5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#bccfe5),color-stop(48%,#c5d6e7),color-stop(52%,#95c4f4),color-stop(100%,#9fc9f5));background-image:-webkit-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-moz-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-o-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5)}.x-btn-default-toolbar-large-over .x-frame-tl,.x-btn-default-toolbar-large-over .x-frame-bl,.x-btn-default-toolbar-large-over .x-frame-tr,.x-btn-default-toolbar-large-over .x-frame-br,.x-btn-default-toolbar-large-over .x-frame-tc,.x-btn-default-toolbar-large-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-over-corners.gif)}.x-btn-default-toolbar-large-over .x-frame-ml,.x-btn-default-toolbar-large-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-over-sides.gif)}.x-btn-default-toolbar-large-over .x-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-large-over-fbg.gif)}.x-btn-default-toolbar-large-focus .x-frame-tl,.x-btn-default-toolbar-large-focus .x-frame-bl,.x-btn-default-toolbar-large-focus .x-frame-tr,.x-btn-default-toolbar-large-focus .x-frame-br,.x-btn-default-toolbar-large-focus .x-frame-tc,.x-btn-default-toolbar-large-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-focus-corners.gif)}.x-btn-default-toolbar-large-focus .x-frame-ml,.x-btn-default-toolbar-large-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-focus-sides.gif)}.x-btn-default-toolbar-large-focus .x-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-large-focus-fbg.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-tl,.x-btn-default-toolbar-large-menu-active .x-frame-bl,.x-btn-default-toolbar-large-menu-active .x-frame-tr,.x-btn-default-toolbar-large-menu-active .x-frame-br,.x-btn-default-toolbar-large-menu-active .x-frame-tc,.x-btn-default-toolbar-large-menu-active .x-frame-bc,.x-btn-default-toolbar-large-pressed .x-frame-tl,.x-btn-default-toolbar-large-pressed .x-frame-bl,.x-btn-default-toolbar-large-pressed .x-frame-tr,.x-btn-default-toolbar-large-pressed .x-frame-br,.x-btn-default-toolbar-large-pressed .x-frame-tc,.x-btn-default-toolbar-large-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-pressed-corners.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-ml,.x-btn-default-toolbar-large-menu-active .x-frame-mr,.x-btn-default-toolbar-large-pressed .x-frame-ml,.x-btn-default-toolbar-large-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-pressed-sides.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-mc,.x-btn-default-toolbar-large-pressed .x-frame-mc{background-color:#bccfe5;background-image:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif)}.x-btn-default-toolbar-large-disabled .x-frame-tl,.x-btn-default-toolbar-large-disabled .x-frame-bl,.x-btn-default-toolbar-large-disabled .x-frame-tr,.x-btn-default-toolbar-large-disabled .x-frame-br,.x-btn-default-toolbar-large-disabled .x-frame-tc,.x-btn-default-toolbar-large-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-disabled-corners.gif)}.x-btn-default-toolbar-large-disabled .x-frame-ml,.x-btn-default-toolbar-large-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)}.x-btn-default-toolbar-large-disabled .x-frame-mc{background-color:transparent}.x-nlg .x-btn-default-toolbar-large-over{background-image:url(images/btn/btn-default-toolbar-large-over-bg.gif)}.x-nlg .x-btn-default-toolbar-large-focus{background-image:url(images/btn/btn-default-toolbar-large-focus-bg.gif)}.x-nlg .x-btn-default-toolbar-large-menu-active,.x-nlg .x-btn-default-toolbar-large-pressed{background-image:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)}.x-nbr .x-btn-default-toolbar-large{background-image:none}.x-btn-default-toolbar-large .x-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:14px}.x-btn-default-toolbar-large .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-noline-rtl.gif);padding-right:0;padding-left:14px}.x-btn-default-toolbar-large .x-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:14px}.x-btn-default-toolbar-large-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-toolbar-large-over .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x-btn-default-toolbar-large-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-toolbar-large-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-over-bg.gif)"}.x-btn-default-toolbar-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-focus-bg.gif)"}.x-btn-default-toolbar-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)"}.x-btn-default-toolbar-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)"}.x-btn-icon-text-left .x-btn-icon-el{background-position:left center}.x-btn-icon-text-left .x-rtl.x-btn-icon-el{background-position:right center}.x-btn-icon-text-right .x-btn-icon-el{background-position:right center}.x-btn-icon-text-right .x-rtl.x-btn-icon-el{background-position:left center}.x-btn-icon-text-top .x-btn-icon-el{background-position:center top}.x-btn-icon-text-bottom .x-btn-icon-el{background-position:center bottom}.x-btn-arrow-right{background-position:right center}.x-rtl.x-btn-arrow-right{background-position:left center}.x-btn-arrow-bottom{background-position:center bottom}.x-btn-arrow{background-repeat:no-repeat}.x-btn-split{display:block;background-repeat:no-repeat}.x-btn-split-right{background-position:right center}.x-rtl.x-btn-split-right{background-position:0 center}.x-btn-split-bottom{background-position:center bottom}.x-cycle-fixed-width .x-btn-inner{text-align:inherit}.x-toolbar{font-size:11px;border-style:solid;padding:2px 0 2px 2px}.x-toolbar-item{margin:0 2px 0 0}.x-rtl.x-toolbar-item{margin:0 0 0 2px}.x-toolbar-text{margin:0 6px 0 4px;color:#4c4c4c;line-height:16px;font-family:tahoma,arial,verdana,sans-serif;font-size:11px;font-weight:normal}.x-toolbar-separator-horizontal{margin:0 2px 0 0;height:14px;border-style:solid;border-width:0 1px;border-left-color:#98c8ff;border-right-color:white}.x-rtl.x-toolbar{padding:2px 2px 2px 0}.x-toolbar-footer{background:transparent;border:0;margin:3px 0 0;padding:2px 0 2px 6px}.x-toolbar-footer .x-toolbar-item{margin:0 6px 0 0}.x-toolbar-spacer{width:2px}.x-toolbar-more-icon{background-image:url(images/toolbar/more.gif)!important;background-position:center center!important;background-repeat:no-repeat}.x-toolbar-default{border-color:#99bce8;border-width:1px;background-image:none;background-color:#d3e1f1;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dfe9f5),color-stop(100%,#d3e1f1));background-image:-webkit-linear-gradient(top,#dfe9f5,#d3e1f1);background-image:-moz-linear-gradient(top,#dfe9f5,#d3e1f1);background-image:-o-linear-gradient(top,#dfe9f5,#d3e1f1);background-image:linear-gradient(top,#dfe9f5,#d3e1f1)}.x-toolbar-default .x-box-scroller{cursor:pointer}.x-toolbar-default .x-box-scroller-disabled{filter:alpha(opacity=50);opacity:.5;cursor:default}.x-nlg .x-toolbar-default{background-image:url(images/toolbar/toolbar-default-bg.gif)!important;background-repeat:repeat-x}.x-toolbar-default:after{display:none;content:"x-slicer:bg:url(images/toolbar/toolbar-default-bg.gif), stretch:bottom"}.x-toolbar-scroll-left{background-image:url(images/toolbar/scroll-left.gif);background-position:-14px 0;width:14px;height:22px;border-style:solid;border-color:#8db2e3;border-width:0 0 1px;margin-top:0}.x-toolbar-scroll-left-hover{background-position:0 0}.x-toolbar-scroll-right{background-image:url(images/toolbar/scroll-right.gif);width:14px;height:22px;border-style:solid;border-color:#8db2e3;border-width:0 0 1px;margin-top:0}.x-toolbar-scroll-right-hover{background-position:-14px 0}.x-toolbar .x-box-menu-after{margin:0 2px 0 2px}.x-toolbar-vertical{padding:2px 2px 0 2px}.x-toolbar-vertical .x-toolbar-item{margin:0 0 2px 0}.x-toolbar-vertical .x-toolbar-text{margin:4px 0 6px 0}.x-toolbar-vertical .x-toolbar-separator-vertical{margin:0 5px 2px;border-style:solid none;border-width:1px 0;border-top-color:#98c8ff;border-bottom-color:white}.x-toolbar-vertical .x-box-menu-after,.x-toolbar-vertical .x-rtl.x-box-menu-after{margin:2px 0 2px 0;display:block;float:none}.x-header-draggable .x-header-body,.x-header-ghost{cursor:move}.x-header-text{white-space:nowrap}.x-panel-ghost{filter:alpha(opacity=65);opacity:.65}.x-panel-default{border-color:#99bce8;padding:0}.x-panel-header-default{font-size:11px;border:1px solid #99bce8}.x-panel-header-default-horizontal{padding:4px 5px 4px 5px}.x-panel-header-default-horizontal-noborder{padding:5px 6px 4px 6px}.x-panel-header-default-vertical{padding:5px 4px 5px 4px}.x-panel-header-default-vertical-noborder{padding:6px 5px 6px 4px}.x-rtl.x-panel-header-default-vertical{padding:5px 4px 5px 4px}.x-rtl.x-panel-header-default-vertical-noborder{padding:6px 4px 6px 5px}.x-panel-header-text-container-default{color:#04408c;font-size:11px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;line-height:15px;padding:0 2px 1px;text-transform:none}.x-panel-body-default{background:white;border-color:#99bce8;color:black;font-size:12px;font-size:normal;border-width:1px;border-style:solid}.x-panel-header-default{background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-panel-header-default-vertical{background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-rtl.x-panel-header-default-vertical{background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-nlg .x-panel-header-default-top{background:url(images/panel-header/panel-header-default-top-bg.gif)}.x-nlg .x-panel-header-default-bottom{background:url(images/panel-header/panel-header-default-bottom-bg.gif)}.x-nlg .x-panel-header-default-left{background:url(images/panel-header/panel-header-default-left-bg.gif) top right}.x-nlg .x-panel-header-default-right{background:url(images/panel-header/panel-header-default-right-bg.gif) top right}.x-nlg .x-rtl.x-panel-header-default-left{background:url(images/panel-header/panel-header-default-left-bg-rtl.gif)}.x-nlg .x-rtl.x-panel-header-default-right{background:url(images/panel-header/panel-header-default-right-bg-rtl.gif)}.x-panel .x-panel-header-default-collapsed-border-top{border-bottom-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-right{border-left-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-bottom{border-top-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-left{border-right-width:1px!important}.x-panel-header-default-top:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-top-bg.gif), stretch:bottom"}.x-panel-header-default-bottom:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-bottom-bg.gif), stretch:bottom"}.x-panel-header-default-left:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-left-bg-rtl.gif), stretch:left"}.x-panel-header-default-right:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-right-bg-rtl.gif), stretch:left"}.x-panel-header-default-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-default-vertical .x-panel-header-text-container{background-color:#cbddf3;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3)}.x-panel-header-default-vertical .x-rtl.x-panel-header-text-container{-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-panel-header-default-vertical .x-rtl.x-panel-header-text-container{background-color:#cbddf3;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3),progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3)}.x-panel-header-default-top{-webkit-box-shadow:#f3f7fb 0 1px 0 0 inset;-moz-box-shadow:#f3f7fb 0 1px 0 0 inset;box-shadow:#f3f7fb 0 1px 0 0 inset}.x-panel-header-default-right{-webkit-box-shadow:#f3f7fb -1px 0 0 0 inset;-moz-box-shadow:#f3f7fb -1px 0 0 0 inset;box-shadow:#f3f7fb -1px 0 0 0 inset}.x-panel-header-default-bottom{-webkit-box-shadow:#f3f7fb 0 -1px 0 0 inset;-moz-box-shadow:#f3f7fb 0 -1px 0 0 inset;box-shadow:#f3f7fb 0 -1px 0 0 inset}.x-panel-header-default-left{-webkit-box-shadow:#f3f7fb 1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 1px 0 0 0 inset;box-shadow:#f3f7fb 1px 0 0 0 inset}.x-panel-header-default .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-default .x-panel-header-glyph{color:#04408c;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-default .x-panel-header-glyph{color:#678ebf}.x-panel-header-default-horizontal .x-panel-header-icon-before-title{margin:0 2px 0 0}.x-panel-header-default-horizontal .x-rtl.x-panel-header-icon-before-title{margin:0 0 0 2px}.x-panel-header-default-horizontal .x-panel-header-icon-after-title{margin:0 0 0 2px}.x-panel-header-default-horizontal .x-rtl.x-panel-header-icon-after-title{margin:0 2px 0 0}.x-panel-header-default-vertical .x-panel-header-icon-before-title{margin:0 0 2px 0}.x-panel-header-default-vertical .x-rtl.x-panel-header-icon-before-title{margin:0 0 2px 0}.x-panel-header-default-vertical .x-panel-header-icon-after-title{margin:2px 0 0 0}.x-panel-header-default-vertical .x-rtl.x-panel-header-icon-after-title{margin:2px 0 0 0}.x-panel-header-default-horizontal .x-tool-after-title{margin:0 0 0 2px}.x-panel-header-default-horizontal .x-rtl.x-tool-after-title{margin:0 2px 0 0}.x-panel-header-default-horizontal .x-tool-before-title{margin:0 2px 0 0}.x-panel-header-default-horizontal .x-rtl.x-tool-before-title{margin:0 0 0 2px}.x-panel-header-default-vertical .x-tool-after-title{margin:2px 0 0 0}.x-panel-header-default-vertical .x-rtl.x-tool-after-title{margin:2px 0 0 0}.x-panel-header-default-vertical .x-tool-before-title{margin:0 0 2px 0}.x-panel-header-default-vertical .x-rtl.x-tool-before-title{margin:0 0 2px 0}.x-rtl.x-panel-header-default-collapsed-border-right{border-right-width:1px!important}.x-rtl.x-panel-header-default-collapsed-border-left{border-left-width:1px!important}.x-panel-default-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-panel-default-framed{border-color:#99bce8;padding:4px}.x-panel-header-default-framed{font-size:11px;border:1px solid #99bce8}.x-panel-header-default-framed-horizontal{padding:4px 5px 4px 5px}.x-panel-header-default-framed-horizontal-noborder{padding:5px 6px 4px 6px}.x-panel-header-default-framed-vertical{padding:5px 4px 5px 4px}.x-panel-header-default-framed-vertical-noborder{padding:6px 5px 6px 4px}.x-rtl.x-panel-header-default-framed-vertical{padding:5px 4px 5px 4px}.x-rtl.x-panel-header-default-framed-vertical-noborder{padding:6px 4px 6px 5px}.x-panel-header-text-container-default-framed{color:#04408c;font-size:11px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;line-height:15px;padding:0 2px 1px;text-transform:none}.x-panel-body-default-framed{background:#dfe9f6;border-color:#99bce8;color:black;font-size:12px;font-size:normal;border-width:0;border-style:solid}.x-panel-default-framed{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:#dfe9f6}.x-panel-default-framed-mc{background-color:#dfe9f6}.x-nbr .x-panel-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-default-framed-frameInfo{font-family:dh-4-4-4-4-1-1-1-1-4-4-4-4}.x-panel-default-framed-tl{background-position:0 -8px}.x-panel-default-framed-tr{background-position:right -12px}.x-panel-default-framed-bl{background-position:0 -16px}.x-panel-default-framed-br{background-position:right -20px}.x-panel-default-framed-ml{background-position:0 top}.x-panel-default-framed-mr{background-position:right top}.x-panel-default-framed-tc{background-position:0 0}.x-panel-default-framed-bc{background-position:0 -4px}.x-panel-default-framed-tr,.x-panel-default-framed-br,.x-panel-default-framed-mr{padding-right:4px}.x-panel-default-framed-tl,.x-panel-default-framed-bl,.x-panel-default-framed-ml{padding-left:4px}.x-panel-default-framed-tc{height:4px}.x-panel-default-framed-bc{height:4px}.x-panel-default-framed-tl,.x-panel-default-framed-bl,.x-panel-default-framed-tr,.x-panel-default-framed-br,.x-panel-default-framed-tc,.x-panel-default-framed-bc,.x-panel-default-framed-ml,.x-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-corners.gif)}.x-panel-default-framed-ml,.x-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-sides.gif);background-repeat:repeat-y}.x-panel-default-framed-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-panel-default-framed-tl,.x-strict .x-ie7 .x-panel-default-framed-bl{position:relative;right:0}.x-panel-default-framed:after{display:none;content:"x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"}.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:4px 5px 4px 5px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-panel-header-default-framed-top-mc{background-image:url(images/panel-header/panel-header-default-framed-top-fbg.gif);background-position:0 top;background-color:#cbddf3}.x-nlg .x-panel-header-default-framed-top{background-image:url(images/panel-header/panel-header-default-framed-top-bg.gif);background-position:0 top}.x-nbr .x-panel-header-default-framed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-top-frameInfo{font-family:dh-4-4-0-0-1-1-0-1-4-5-4-5}.x-panel-header-default-framed-top-tl{background-position:0 -8px}.x-panel-header-default-framed-top-tr{background-position:right -12px}.x-panel-header-default-framed-top-bl{background-position:0 -16px}.x-panel-header-default-framed-top-br{background-position:right -20px}.x-panel-header-default-framed-top-ml{background-position:0 top}.x-panel-header-default-framed-top-mr{background-position:right top}.x-panel-header-default-framed-top-tc{background-position:0 0}.x-panel-header-default-framed-top-bc{background-position:0 -4px}.x-panel-header-default-framed-top-tr,.x-panel-header-default-framed-top-br,.x-panel-header-default-framed-top-mr{padding-right:4px}.x-panel-header-default-framed-top-tl,.x-panel-header-default-framed-top-bl,.x-panel-header-default-framed-top-ml{padding-left:4px}.x-panel-header-default-framed-top-tc{height:4px}.x-panel-header-default-framed-top-bc{height:0}.x-panel-header-default-framed-top-tl,.x-panel-header-default-framed-top-bl,.x-panel-header-default-framed-top-tr,.x-panel-header-default-framed-top-br,.x-panel-header-default-framed-top-tc,.x-panel-header-default-framed-top-bc,.x-panel-header-default-framed-top-ml,.x-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-corners.gif)}.x-panel-header-default-framed-top-ml,.x-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-sides.gif)}.x-panel-header-default-framed-top-mc{padding:1px 2px 4px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-top-tl,.x-strict .x-ie7 .x-panel-header-default-framed-top-bl{position:relative;right:0}.x-panel-header-default-framed-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"}.x-panel-header-default-framed-right{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 4px 5px 4px;border-width:1px 1px 1px 0;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-rtl.x-panel-header-default-framed-right{background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-panel-header-default-framed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-right-fbg.gif);background-position:right 0;background-color:#cbddf3}.x-rtl.x-panel-header-default-framed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-right-fbg-rtl.gif);background-position:0 0}.x-nlg .x-panel-header-default-framed-right{background-image:url(images/panel-header/panel-header-default-framed-right-bg.gif);background-position:right 0}.x-nlg .x-rtl.x-panel-header-default-framed-right{background-image:url(images/panel-header/panel-header-default-framed-right-bg-rtl.gif);background-position:0 0}.x-nbr .x-panel-header-default-framed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-right-frameInfo{font-family:dv-0-4-4-0-1-1-1-0-5-4-5-4}.x-panel-header-default-framed-right-tl{background-position:0 0}.x-panel-header-default-framed-right-tr{background-position:0 -4px}.x-panel-header-default-framed-right-bl{background-position:0 -8px}.x-panel-header-default-framed-right-br{background-position:0 -12px}.x-panel-header-default-framed-right-ml{background-position:-4px 0}.x-panel-header-default-framed-right-mr{background-position:right 0}.x-panel-header-default-framed-right-tc{background-position:right 0}.x-panel-header-default-framed-right-bc{background-position:right -4px}.x-rtl.x-panel-header-default-framed-right-tc{background-position:0 0}.x-rtl.x-panel-header-default-framed-right-bc{background-position:0 -4px}.x-panel-header-default-framed-right-tr,.x-panel-header-default-framed-right-br,.x-panel-header-default-framed-right-mr{padding-right:4px}.x-panel-header-default-framed-right-tl,.x-panel-header-default-framed-right-bl,.x-panel-header-default-framed-right-ml{padding-left:0}.x-panel-header-default-framed-right-tc{height:4px}.x-panel-header-default-framed-right-bc{height:4px}.x-panel-header-default-framed-right-tl,.x-panel-header-default-framed-right-bl,.x-panel-header-default-framed-right-tr,.x-panel-header-default-framed-right-br,.x-panel-header-default-framed-right-tc,.x-panel-header-default-framed-right-bc,.x-panel-header-default-framed-right-ml,.x-panel-header-default-framed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-corners.gif)}.x-rtl.x-panel-header-default-framed-right-tl,.x-rtl.x-panel-header-default-framed-right-ml,.x-rtl.x-panel-header-default-framed-right-bl,.x-rtl.x-panel-header-default-framed-right-tr,.x-rtl.x-panel-header-default-framed-right-mr,.x-rtl.x-panel-header-default-framed-right-br{background-image:url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif)}.x-panel-header-default-framed-right-tc,.x-panel-header-default-framed-right-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-sides.gif);background-repeat:repeat-x}.x-rtl.x-panel-header-default-framed-right-tc,.x-rtl.x-panel-header-default-framed-right-bc{background-image:url(images/panel-header/panel-header-default-framed-right-sides-rtl.gif)}.x-panel-header-default-framed-right-mc{padding:2px 1px 2px 4px}.x-strict .x-ie7 .x-panel-header-default-framed-right-tl,.x-strict .x-ie7 .x-panel-header-default-framed-right-bl{position:relative;right:0}.x-panel-header-default-framed-right:after{display:none;content:"x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-right-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-right-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-right-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-right-sides-rtl.gif)"}.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:4px 5px 4px 5px;border-width:0 1px 1px 1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-panel-header-default-framed-bottom-mc{background-image:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif);background-position:0 bottom;background-color:#cbddf3}.x-nlg .x-panel-header-default-framed-bottom{background-image:url(images/panel-header/panel-header-default-framed-bottom-bg.gif);background-position:0 bottom}.x-nbr .x-panel-header-default-framed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-bottom-frameInfo{font-family:dh-0-0-4-4-0-1-1-1-4-5-4-5}.x-panel-header-default-framed-bottom-tl{background-position:0 -8px}.x-panel-header-default-framed-bottom-tr{background-position:right -12px}.x-panel-header-default-framed-bottom-bl{background-position:0 -16px}.x-panel-header-default-framed-bottom-br{background-position:right -20px}.x-panel-header-default-framed-bottom-ml{background-position:0 bottom}.x-panel-header-default-framed-bottom-mr{background-position:right bottom}.x-panel-header-default-framed-bottom-tc{background-position:0 0}.x-panel-header-default-framed-bottom-bc{background-position:0 -4px}.x-panel-header-default-framed-bottom-tr,.x-panel-header-default-framed-bottom-br,.x-panel-header-default-framed-bottom-mr{padding-right:4px}.x-panel-header-default-framed-bottom-tl,.x-panel-header-default-framed-bottom-bl,.x-panel-header-default-framed-bottom-ml{padding-left:4px}.x-panel-header-default-framed-bottom-tc{height:0}.x-panel-header-default-framed-bottom-bc{height:4px}.x-panel-header-default-framed-bottom-tl,.x-panel-header-default-framed-bottom-bl,.x-panel-header-default-framed-bottom-tr,.x-panel-header-default-framed-bottom-br,.x-panel-header-default-framed-bottom-tc,.x-panel-header-default-framed-bottom-bc,.x-panel-header-default-framed-bottom-ml,.x-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-corners.gif)}.x-panel-header-default-framed-bottom-ml,.x-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)}.x-panel-header-default-framed-bottom-mc{padding:4px 2px 1px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl,.x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl{position:relative;right:0}.x-panel-header-default-framed-bottom:after{display:none;content:"x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"}.x-panel-header-default-framed-left{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 4px 5px 4px;border-width:1px 0 1px 1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-rtl.x-panel-header-default-framed-left{background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-panel-header-default-framed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-left-fbg.gif);background-position:left 0;background-color:#cbddf3}.x-rtl.x-panel-header-default-framed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-left-fbg-rtl.gif);background-position:right 0}.x-nlg .x-panel-header-default-framed-left{background-image:url(images/panel-header/panel-header-default-framed-left-bg.gif);background-position:left 0}.x-nlg .x-rtl.x-panel-header-default-framed-left{background-image:url(images/panel-header/panel-header-default-framed-left-bg-rtl.gif);background-position:right 0}.x-nbr .x-panel-header-default-framed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-left-frameInfo{font-family:dv-4-0-0-4-1-0-1-1-5-4-5-4}.x-panel-header-default-framed-left-tl{background-position:0 0}.x-panel-header-default-framed-left-tr{background-position:0 -4px}.x-panel-header-default-framed-left-bl{background-position:0 -8px}.x-panel-header-default-framed-left-br{background-position:0 -12px}.x-panel-header-default-framed-left-ml{background-position:-4px 0}.x-panel-header-default-framed-left-mr{background-position:right 0}.x-panel-header-default-framed-left-tc{background-position:left 0}.x-panel-header-default-framed-left-bc{background-position:left -4px}.x-rtl.x-panel-header-default-framed-left-tc{background-position:right 0}.x-rtl.x-panel-header-default-framed-left-bc{background-position:right -4px}.x-panel-header-default-framed-left-tr,.x-panel-header-default-framed-left-br,.x-panel-header-default-framed-left-mr{padding-right:0}.x-panel-header-default-framed-left-tl,.x-panel-header-default-framed-left-bl,.x-panel-header-default-framed-left-ml{padding-left:4px}.x-panel-header-default-framed-left-tc{height:4px}.x-panel-header-default-framed-left-bc{height:4px}.x-panel-header-default-framed-left-tl,.x-panel-header-default-framed-left-bl,.x-panel-header-default-framed-left-tr,.x-panel-header-default-framed-left-br,.x-panel-header-default-framed-left-tc,.x-panel-header-default-framed-left-bc,.x-panel-header-default-framed-left-ml,.x-panel-header-default-framed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-corners.gif)}.x-rtl.x-panel-header-default-framed-left-tl,.x-rtl.x-panel-header-default-framed-left-ml,.x-rtl.x-panel-header-default-framed-left-bl,.x-rtl.x-panel-header-default-framed-left-tr,.x-rtl.x-panel-header-default-framed-left-mr,.x-rtl.x-panel-header-default-framed-left-br{background-image:url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif)}.x-panel-header-default-framed-left-tc,.x-panel-header-default-framed-left-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-sides.gif);background-repeat:repeat-x}.x-rtl.x-panel-header-default-framed-left-tc,.x-rtl.x-panel-header-default-framed-left-bc{background-image:url(images/panel-header/panel-header-default-framed-left-sides-rtl.gif)}.x-panel-header-default-framed-left-mc{padding:2px 4px 2px 1px}.x-strict .x-ie7 .x-panel-header-default-framed-left-tl,.x-strict .x-ie7 .x-panel-header-default-framed-left-bl{position:relative;right:0}.x-panel-header-default-framed-left:after{display:none;content:"x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-left-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-left-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-left-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-left-sides-rtl.gif)"}.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:4px 5px 4px 5px;border-width:1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-panel-header-default-framed-collapsed-top-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif);background-position:0 top;background-color:#cbddf3}.x-nlg .x-panel-header-default-framed-collapsed-top{background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif);background-position:0 top}.x-nbr .x-panel-header-default-framed-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-top-frameInfo{font-family:dh-4-4-4-4-1-1-1-1-4-5-4-5}.x-panel-header-default-framed-collapsed-top-tl{background-position:0 -8px}.x-panel-header-default-framed-collapsed-top-tr{background-position:right -12px}.x-panel-header-default-framed-collapsed-top-bl{background-position:0 -16px}.x-panel-header-default-framed-collapsed-top-br{background-position:right -20px}.x-panel-header-default-framed-collapsed-top-ml{background-position:0 top}.x-panel-header-default-framed-collapsed-top-mr{background-position:right top}.x-panel-header-default-framed-collapsed-top-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-top-bc{background-position:0 -4px}.x-panel-header-default-framed-collapsed-top-tr,.x-panel-header-default-framed-collapsed-top-br,.x-panel-header-default-framed-collapsed-top-mr{padding-right:4px}.x-panel-header-default-framed-collapsed-top-tl,.x-panel-header-default-framed-collapsed-top-bl,.x-panel-header-default-framed-collapsed-top-ml{padding-left:4px}.x-panel-header-default-framed-collapsed-top-tc{height:4px}.x-panel-header-default-framed-collapsed-top-bc{height:4px}.x-panel-header-default-framed-collapsed-top-tl,.x-panel-header-default-framed-collapsed-top-bl,.x-panel-header-default-framed-collapsed-top-tr,.x-panel-header-default-framed-collapsed-top-br,.x-panel-header-default-framed-collapsed-top-tc,.x-panel-header-default-framed-collapsed-top-bc,.x-panel-header-default-framed-collapsed-top-ml,.x-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif)}.x-panel-header-default-framed-collapsed-top-ml,.x-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)}.x-panel-header-default-framed-collapsed-top-mc{padding:1px 2px 1px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"}.x-panel-header-default-framed-collapsed-right{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-rtl.x-panel-header-default-framed-collapsed-right{background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-panel-header-default-framed-collapsed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif);background-position:right 0;background-color:#cbddf3}.x-rtl.x-panel-header-default-framed-collapsed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif);background-position:0 0}.x-nlg .x-panel-header-default-framed-collapsed-right{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif);background-position:right 0}.x-nlg .x-rtl.x-panel-header-default-framed-collapsed-right{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif);background-position:0 0}.x-nbr .x-panel-header-default-framed-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-right-frameInfo{font-family:dv-4-4-4-4-1-1-1-1-5-4-5-4}.x-panel-header-default-framed-collapsed-right-tl{background-position:0 0}.x-panel-header-default-framed-collapsed-right-tr{background-position:0 -4px}.x-panel-header-default-framed-collapsed-right-bl{background-position:0 -8px}.x-panel-header-default-framed-collapsed-right-br{background-position:0 -12px}.x-panel-header-default-framed-collapsed-right-ml{background-position:-4px 0}.x-panel-header-default-framed-collapsed-right-mr{background-position:right 0}.x-panel-header-default-framed-collapsed-right-tc{background-position:right 0}.x-panel-header-default-framed-collapsed-right-bc{background-position:right -4px}.x-rtl.x-panel-header-default-framed-collapsed-right-tc{background-position:0 0}.x-rtl.x-panel-header-default-framed-collapsed-right-bc{background-position:0 -4px}.x-panel-header-default-framed-collapsed-right-tr,.x-panel-header-default-framed-collapsed-right-br,.x-panel-header-default-framed-collapsed-right-mr{padding-right:4px}.x-panel-header-default-framed-collapsed-right-tl,.x-panel-header-default-framed-collapsed-right-bl,.x-panel-header-default-framed-collapsed-right-ml{padding-left:4px}.x-panel-header-default-framed-collapsed-right-tc{height:4px}.x-panel-header-default-framed-collapsed-right-bc{height:4px}.x-panel-header-default-framed-collapsed-right-tl,.x-panel-header-default-framed-collapsed-right-bl,.x-panel-header-default-framed-collapsed-right-tr,.x-panel-header-default-framed-collapsed-right-br,.x-panel-header-default-framed-collapsed-right-tc,.x-panel-header-default-framed-collapsed-right-bc,.x-panel-header-default-framed-collapsed-right-ml,.x-panel-header-default-framed-collapsed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif)}.x-rtl.x-panel-header-default-framed-collapsed-right-tl,.x-rtl.x-panel-header-default-framed-collapsed-right-ml,.x-rtl.x-panel-header-default-framed-collapsed-right-bl,.x-rtl.x-panel-header-default-framed-collapsed-right-tr,.x-rtl.x-panel-header-default-framed-collapsed-right-mr,.x-rtl.x-panel-header-default-framed-collapsed-right-br{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif)}.x-panel-header-default-framed-collapsed-right-tc,.x-panel-header-default-framed-collapsed-right-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif);background-repeat:repeat-x}.x-rtl.x-panel-header-default-framed-collapsed-right-tc,.x-rtl.x-panel-header-default-framed-collapsed-right-bc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif)}.x-panel-header-default-framed-collapsed-right-mc{padding:2px 1px 2px 1px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-right:after{display:none;content:"x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif)"}.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:4px 5px 4px 5px;border-width:1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-panel-header-default-framed-collapsed-bottom-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif);background-position:0 bottom;background-color:#cbddf3}.x-nlg .x-panel-header-default-framed-collapsed-bottom{background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif);background-position:0 bottom}.x-nbr .x-panel-header-default-framed-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-bottom-frameInfo{font-family:dh-4-4-4-4-1-1-1-1-4-5-4-5}.x-panel-header-default-framed-collapsed-bottom-tl{background-position:0 -8px}.x-panel-header-default-framed-collapsed-bottom-tr{background-position:right -12px}.x-panel-header-default-framed-collapsed-bottom-bl{background-position:0 -16px}.x-panel-header-default-framed-collapsed-bottom-br{background-position:right -20px}.x-panel-header-default-framed-collapsed-bottom-ml{background-position:0 bottom}.x-panel-header-default-framed-collapsed-bottom-mr{background-position:right bottom}.x-panel-header-default-framed-collapsed-bottom-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-bottom-bc{background-position:0 -4px}.x-panel-header-default-framed-collapsed-bottom-tr,.x-panel-header-default-framed-collapsed-bottom-br,.x-panel-header-default-framed-collapsed-bottom-mr{padding-right:4px}.x-panel-header-default-framed-collapsed-bottom-tl,.x-panel-header-default-framed-collapsed-bottom-bl,.x-panel-header-default-framed-collapsed-bottom-ml{padding-left:4px}.x-panel-header-default-framed-collapsed-bottom-tc{height:4px}.x-panel-header-default-framed-collapsed-bottom-bc{height:4px}.x-panel-header-default-framed-collapsed-bottom-tl,.x-panel-header-default-framed-collapsed-bottom-bl,.x-panel-header-default-framed-collapsed-bottom-tr,.x-panel-header-default-framed-collapsed-bottom-br,.x-panel-header-default-framed-collapsed-bottom-tc,.x-panel-header-default-framed-collapsed-bottom-bc,.x-panel-header-default-framed-collapsed-bottom-ml,.x-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif)}.x-panel-header-default-framed-collapsed-bottom-ml,.x-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)}.x-panel-header-default-framed-collapsed-bottom-mc{padding:1px 2px 1px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-bottom:after{display:none;content:"x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"}.x-panel-header-default-framed-collapsed-left{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-rtl.x-panel-header-default-framed-collapsed-left{background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(left,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-panel-header-default-framed-collapsed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif);background-position:left 0;background-color:#cbddf3}.x-rtl.x-panel-header-default-framed-collapsed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif);background-position:right 0}.x-nlg .x-panel-header-default-framed-collapsed-left{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif);background-position:left 0}.x-nlg .x-rtl.x-panel-header-default-framed-collapsed-left{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif);background-position:right 0}.x-nbr .x-panel-header-default-framed-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-left-frameInfo{font-family:dv-4-4-4-4-1-1-1-1-5-4-5-4}.x-panel-header-default-framed-collapsed-left-tl{background-position:0 0}.x-panel-header-default-framed-collapsed-left-tr{background-position:0 -4px}.x-panel-header-default-framed-collapsed-left-bl{background-position:0 -8px}.x-panel-header-default-framed-collapsed-left-br{background-position:0 -12px}.x-panel-header-default-framed-collapsed-left-ml{background-position:-4px 0}.x-panel-header-default-framed-collapsed-left-mr{background-position:right 0}.x-panel-header-default-framed-collapsed-left-tc{background-position:left 0}.x-panel-header-default-framed-collapsed-left-bc{background-position:left -4px}.x-rtl.x-panel-header-default-framed-collapsed-left-tc{background-position:right 0}.x-rtl.x-panel-header-default-framed-collapsed-left-bc{background-position:right -4px}.x-panel-header-default-framed-collapsed-left-tr,.x-panel-header-default-framed-collapsed-left-br,.x-panel-header-default-framed-collapsed-left-mr{padding-right:4px}.x-panel-header-default-framed-collapsed-left-tl,.x-panel-header-default-framed-collapsed-left-bl,.x-panel-header-default-framed-collapsed-left-ml{padding-left:4px}.x-panel-header-default-framed-collapsed-left-tc{height:4px}.x-panel-header-default-framed-collapsed-left-bc{height:4px}.x-panel-header-default-framed-collapsed-left-tl,.x-panel-header-default-framed-collapsed-left-bl,.x-panel-header-default-framed-collapsed-left-tr,.x-panel-header-default-framed-collapsed-left-br,.x-panel-header-default-framed-collapsed-left-tc,.x-panel-header-default-framed-collapsed-left-bc,.x-panel-header-default-framed-collapsed-left-ml,.x-panel-header-default-framed-collapsed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif)}.x-rtl.x-panel-header-default-framed-collapsed-left-tl,.x-rtl.x-panel-header-default-framed-collapsed-left-ml,.x-rtl.x-panel-header-default-framed-collapsed-left-bl,.x-rtl.x-panel-header-default-framed-collapsed-left-tr,.x-rtl.x-panel-header-default-framed-collapsed-left-mr,.x-rtl.x-panel-header-default-framed-collapsed-left-br{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif)}.x-panel-header-default-framed-collapsed-left-tc,.x-panel-header-default-framed-collapsed-left-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif);background-repeat:repeat-x}.x-rtl.x-panel-header-default-framed-collapsed-left-tc,.x-rtl.x-panel-header-default-framed-collapsed-left-bc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif)}.x-panel-header-default-framed-collapsed-left-mc{padding:2px 1px 2px 1px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-left:after{display:none;content:"x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif)"}.x-panel .x-panel-header-default-framed-top{border-bottom-width:1px!important}.x-panel .x-panel-header-default-framed-right{border-left-width:1px!important}.x-panel .x-panel-header-default-framed-bottom{border-top-width:1px!important}.x-panel .x-panel-header-default-framed-left{border-right-width:1px!important}.x-nbr .x-panel-header-default-framed-collapsed-top{border-bottom-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-right{border-left-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-bottom{border-top-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-left{border-right-width:0!important}.x-panel-header-default-framed-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-default-framed-vertical .x-panel-header-text-container{background-color:#cbddf3;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3)}.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-text-container{-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-panel-header-default-framed-vertical .x-rtl.x-panel-header-text-container{background-color:#cbddf3;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3),progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3)}.x-panel-header-default-framed-top{-webkit-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset;box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset}.x-panel-header-default-framed-right{-webkit-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset;box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset}.x-panel-header-default-framed-bottom{-webkit-box-shadow:#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset;box-shadow:#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset}.x-panel-header-default-framed-left{-webkit-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb 1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb 1px 0 0 0 inset;box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb 1px 0 0 0 inset}.x-panel-header-default-framed .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-default-framed .x-panel-header-glyph{color:#04408c;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-default-framed .x-panel-header-glyph{color:#678ebf}.x-panel-header-default-framed-horizontal .x-panel-header-icon-before-title{margin:0 2px 0 0}.x-panel-header-default-framed-horizontal .x-rtl.x-panel-header-icon-before-title{margin:0 0 0 2px}.x-panel-header-default-framed-horizontal .x-panel-header-icon-after-title{margin:0 0 0 2px}.x-panel-header-default-framed-horizontal .x-rtl.x-panel-header-icon-after-title{margin:0 2px 0 0}.x-panel-header-default-framed-vertical .x-panel-header-icon-before-title{margin:0 0 2px 0}.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-icon-before-title{margin:0 0 2px 0}.x-panel-header-default-framed-vertical .x-panel-header-icon-after-title{margin:2px 0 0 0}.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-icon-after-title{margin:2px 0 0 0}.x-panel-header-default-framed-horizontal .x-tool-after-title{margin:0 0 0 2px}.x-panel-header-default-framed-horizontal .x-rtl.x-tool-after-title{margin:0 2px 0 0}.x-panel-header-default-framed-horizontal .x-tool-before-title{margin:0 2px 0 0}.x-panel-header-default-framed-horizontal .x-rtl.x-tool-before-title{margin:0 0 0 2px}.x-panel-header-default-framed-vertical .x-tool-after-title{margin:2px 0 0 0}.x-panel-header-default-framed-vertical .x-rtl.x-tool-after-title{margin:2px 0 0 0}.x-panel-header-default-framed-vertical .x-tool-before-title{margin:0 0 2px 0}.x-panel-header-default-framed-vertical .x-rtl.x-tool-before-title{margin:0 0 2px 0}.x-rtl.x-panel-header-default-framed-collapsed-border-right{border-right-width:1px!important}.x-rtl.x-panel-header-default-framed-collapsed-border-left{border-left-width:1px!important}.x-panel-default-framed-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-tip-anchor{position:absolute;overflow:hidden;height:10px;width:10px;border-style:solid;border-width:5px;border-color:#8eaace;zoom:1}.x-content-box .x-tip-anchor{height:0;width:0}.x-tip-anchor-top{border-top-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-bottom{border-bottom-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-bottom-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-left{border-top-color:transparent;border-bottom-color:transparent;border-left-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-left-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-right{border-top-color:transparent;border-bottom-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.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:#e9f2ff}.x-tip-default-mc{background-color:#e9f2ff}.x-nbr .x-tip-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tip-default-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-tip-default-tl{background-position:0 -6px}.x-tip-default-tr{background-position:right -9px}.x-tip-default-bl{background-position:0 -12px}.x-tip-default-br{background-position:right -15px}.x-tip-default-ml{background-position:0 top}.x-tip-default-mr{background-position:right top}.x-tip-default-tc{background-position:0 0}.x-tip-default-bc{background-position:0 -3px}.x-tip-default-tr,.x-tip-default-br,.x-tip-default-mr{padding-right:3px}.x-tip-default-tl,.x-tip-default-bl,.x-tip-default-ml{padding-left:3px}.x-tip-default-tc{height:3px}.x-tip-default-bc{height:3px}.x-tip-default-tl,.x-tip-default-bl,.x-tip-default-tr,.x-tip-default-br,.x-tip-default-tc,.x-tip-default-bc,.x-tip-default-ml,.x-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-corners.gif)}.x-tip-default-ml,.x-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-sides.gif);background-repeat:repeat-y}.x-tip-default-mc{padding:0}.x-strict .x-ie7 .x-tip-default-tl,.x-strict .x-ie7 .x-tip-default-bl{position:relative;right:0}.x-tip-default:after{display:none;content:"x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"}.x-tip-default{border-color:#8eaace}.x-tip-default .x-tool-img{background-color:#e9f2ff}.x-tip-header-default .x-tool-after-title{margin:0 0 0 6px}.x-tip-header-default .x-rtl.x-tool-after-title{margin:0 6px 0 0}.x-tip-header-default .x-tool-before-title{margin:0 6px 0 0}.x-tip-header-default .x-rtl.x-tool-before-title{margin:0 0 0 6px}.x-tip-header-body-default{padding:3px 3px 0 3px}.x-tip-header-text-container-default{color:#444;font-size:11px;font-weight:bold}.x-tip-body-default{padding:3px;color:#444;font-size:11px;font-weight:normal}.x-tip-body-default a{color:#2a2a2a}.x-tip-form-invalid{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:white}.x-tip-form-invalid-mc{background-color:white}.x-nbr .x-tip-form-invalid{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tip-form-invalid-frameInfo{font-family:th-5-5-5-5-1-1-1-1-4-4-4-4}.x-tip-form-invalid-tl{background-position:0 -10px}.x-tip-form-invalid-tr{background-position:right -15px}.x-tip-form-invalid-bl{background-position:0 -20px}.x-tip-form-invalid-br{background-position:right -25px}.x-tip-form-invalid-ml{background-position:0 top}.x-tip-form-invalid-mr{background-position:right top}.x-tip-form-invalid-tc{background-position:0 0}.x-tip-form-invalid-bc{background-position:0 -5px}.x-tip-form-invalid-tr,.x-tip-form-invalid-br,.x-tip-form-invalid-mr{padding-right:5px}.x-tip-form-invalid-tl,.x-tip-form-invalid-bl,.x-tip-form-invalid-ml{padding-left:5px}.x-tip-form-invalid-tc{height:5px}.x-tip-form-invalid-bc{height:5px}.x-tip-form-invalid-tl,.x-tip-form-invalid-bl,.x-tip-form-invalid-tr,.x-tip-form-invalid-br,.x-tip-form-invalid-tc,.x-tip-form-invalid-bc,.x-tip-form-invalid-ml,.x-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-corners.gif)}.x-tip-form-invalid-ml,.x-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-sides.gif);background-repeat:repeat-y}.x-tip-form-invalid-mc{padding:0}.x-strict .x-ie7 .x-tip-form-invalid-tl,.x-strict .x-ie7 .x-tip-form-invalid-bl{position:relative;right:0}.x-tip-form-invalid:after{display:none;content:"x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"}.x-tip-form-invalid{border-color:#a1311f;-webkit-box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset;-moz-box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset;box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset}.x-tip-form-invalid .x-tool-img{background-color:white}.x-tip-header-form-invalid .x-tool-after-title{margin:0 0 0 6px}.x-tip-header-form-invalid .x-rtl.x-tool-after-title{margin:0 6px 0 0}.x-tip-header-form-invalid .x-tool-before-title{margin:0 6px 0 0}.x-tip-header-form-invalid .x-rtl.x-tool-before-title{margin:0 0 0 6px}.x-tip-header-body-form-invalid{padding:3px 3px 0 3px}.x-tip-header-text-container-form-invalid{color:#444;font-size:11px;font-weight:bold}.x-tip-body-form-invalid{padding:3px 3px 3px 22px;color:#444;font-size:11px;font-weight:normal}.x-tip-body-form-invalid a{color:#2a2a2a}.x-tip-body-form-invalid{background:1px 1px no-repeat;background-image:url(images/form/exclamation.gif)}.x-tip-body-form-invalid li{margin-bottom:4px}.x-tip-body-form-invalid li.last{margin-bottom:0}.x-btn-group-default{border-color:#b7c8d7;-webkit-box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset;-moz-box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset;box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset}.x-btn-group-header-default{margin:2px 2px 0 2px;padding:1px 0;line-height:15px;background:#c2d8f0;-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}.x-btn-group-header-default .x-tool-img{background-color:#c2d8f0}.x-btn-group-header-text-container-default{font:normal 11px tahoma,arial,verdana,sans-serif;line-height:15px;color:#3e6aaa}.x-btn-group-body-default{padding:0 1px}.x-btn-group-body-default .x-table-layout{border-spacing:0}.x-btn-group-default-framed{-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:1px 1px 1px 1px;border-width:1px;border-style:solid;background-color:#d0def0}.x-btn-group-default-framed-mc{background-color:#d0def0}.x-nbr .x-btn-group-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-group-default-framed-frameInfo{font-family:dh-2-2-2-2-1-1-1-1-1-1-1-1}.x-btn-group-default-framed-tl{background-position:0 -4px}.x-btn-group-default-framed-tr{background-position:right -6px}.x-btn-group-default-framed-bl{background-position:0 -8px}.x-btn-group-default-framed-br{background-position:right -10px}.x-btn-group-default-framed-ml{background-position:0 top}.x-btn-group-default-framed-mr{background-position:right top}.x-btn-group-default-framed-tc{background-position:0 0}.x-btn-group-default-framed-bc{background-position:0 -2px}.x-btn-group-default-framed-tr,.x-btn-group-default-framed-br,.x-btn-group-default-framed-mr{padding-right:2px}.x-btn-group-default-framed-tl,.x-btn-group-default-framed-bl,.x-btn-group-default-framed-ml{padding-left:2px}.x-btn-group-default-framed-tc{height:2px}.x-btn-group-default-framed-bc{height:2px}.x-btn-group-default-framed-tl,.x-btn-group-default-framed-bl,.x-btn-group-default-framed-tr,.x-btn-group-default-framed-br,.x-btn-group-default-framed-tc,.x-btn-group-default-framed-bc,.x-btn-group-default-framed-ml,.x-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-corners.gif)}.x-btn-group-default-framed-ml,.x-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-sides.gif);background-repeat:repeat-y}.x-btn-group-default-framed-mc{padding:0}.x-strict .x-ie7 .x-btn-group-default-framed-tl,.x-strict .x-ie7 .x-btn-group-default-framed-bl{position:relative;right:0}.x-btn-group-default-framed:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"}.x-btn-group-default-framed-notitle{-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:1px 1px 1px 1px;border-width:1px;border-style:solid;background-color:#d0def0}.x-btn-group-default-framed-notitle-mc{background-color:#d0def0}.x-nbr .x-btn-group-default-framed-notitle{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-group-default-framed-notitle-frameInfo{font-family:dh-2-2-2-2-1-1-1-1-1-1-1-1}.x-btn-group-default-framed-notitle-tl{background-position:0 -4px}.x-btn-group-default-framed-notitle-tr{background-position:right -6px}.x-btn-group-default-framed-notitle-bl{background-position:0 -8px}.x-btn-group-default-framed-notitle-br{background-position:right -10px}.x-btn-group-default-framed-notitle-ml{background-position:0 top}.x-btn-group-default-framed-notitle-mr{background-position:right top}.x-btn-group-default-framed-notitle-tc{background-position:0 0}.x-btn-group-default-framed-notitle-bc{background-position:0 -2px}.x-btn-group-default-framed-notitle-tr,.x-btn-group-default-framed-notitle-br,.x-btn-group-default-framed-notitle-mr{padding-right:2px}.x-btn-group-default-framed-notitle-tl,.x-btn-group-default-framed-notitle-bl,.x-btn-group-default-framed-notitle-ml{padding-left:2px}.x-btn-group-default-framed-notitle-tc{height:2px}.x-btn-group-default-framed-notitle-bc{height:2px}.x-btn-group-default-framed-notitle-tl,.x-btn-group-default-framed-notitle-bl,.x-btn-group-default-framed-notitle-tr,.x-btn-group-default-framed-notitle-br,.x-btn-group-default-framed-notitle-tc,.x-btn-group-default-framed-notitle-bc,.x-btn-group-default-framed-notitle-ml,.x-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-corners.gif)}.x-btn-group-default-framed-notitle-ml,.x-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-sides.gif);background-repeat:repeat-y}.x-btn-group-default-framed-notitle-mc{padding:0}.x-strict .x-ie7 .x-btn-group-default-framed-notitle-tl,.x-strict .x-ie7 .x-btn-group-default-framed-notitle-bl{position:relative;right:0}.x-btn-group-default-framed-notitle:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"}.x-btn-group-default-framed{border-color:#b7c8d7;-webkit-box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset;-moz-box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset;box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset}.x-btn-group-header-default-framed{margin:2px 2px 0 2px;padding:1px 0;line-height:15px;background:#c2d8f0;-moz-border-radius-topleft:2px;-webkit-border-top-left-radius:2px;border-top-left-radius:2px;-moz-border-radius-topright:2px;-webkit-border-top-right-radius:2px;border-top-right-radius:2px}.x-btn-group-header-default-framed .x-tool-img{background-color:#c2d8f0}.x-btn-group-header-text-container-default-framed{font:normal 11px tahoma,arial,verdana,sans-serif;line-height:15px;color:#3e6aaa}.x-btn-group-body-default-framed{padding:0 1px 0 1px}.x-btn-group-body-default-framed .x-table-layout{border-spacing:0}.x-window-ghost{filter:alpha(opacity=65);opacity:.65}.x-window-default{border-color:#a2b1c5;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;-webkit-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset}.x-window-default{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:#ced9e7}.x-window-default-mc{background-color:#ced9e7}.x-nbr .x-window-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-default-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-4-4-4}.x-window-default-tl{background-position:0 -10px}.x-window-default-tr{background-position:right -15px}.x-window-default-bl{background-position:0 -20px}.x-window-default-br{background-position:right -25px}.x-window-default-ml{background-position:0 top}.x-window-default-mr{background-position:right top}.x-window-default-tc{background-position:0 0}.x-window-default-bc{background-position:0 -5px}.x-window-default-tr,.x-window-default-br,.x-window-default-mr{padding-right:5px}.x-window-default-tl,.x-window-default-bl,.x-window-default-ml{padding-left:5px}.x-window-default-tc{height:5px}.x-window-default-bc{height:5px}.x-window-default-tl,.x-window-default-bl,.x-window-default-tr,.x-window-default-br,.x-window-default-tc,.x-window-default-bc,.x-window-default-ml,.x-window-default-mr{zoom:1;background-image:url(images/window/window-default-corners.gif)}.x-window-default-ml,.x-window-default-mr{zoom:1;background-image:url(images/window/window-default-sides.gif);background-repeat:repeat-y}.x-window-default-mc{padding:0}.x-strict .x-ie7 .x-window-default-tl,.x-strict .x-ie7 .x-window-default-bl{position:relative;right:0}.x-window-default:after{display:none;content:"x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"}.x-window-body-default{border-color:#99bbe8;border-width:1px;border-style:solid;background:#dfe8f6;color:black}.x-window-header-default{font-size:11px;border-color:#a2b1c5;zoom:1;background-color:#ced9e7}.x-window-header-default .x-tool-img{background-color:#ced9e7}.x-window-header-default-vertical .x-window-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-window-header-default-vertical .x-window-header-text-container{background-color:#ced9e7;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#ced9e7)}.x-window-header-default-vertical .x-rtl.x-window-header-text-container{-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-window-header-default-vertical .x-rtl.x-window-header-text-container{background-color:#ced9e7;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3),progid:DXImageTransform.Microsoft.Chroma(color=#ced9e7)}.x-window-header-text-container-default{color:#04468c;font-weight:bold;line-height:15px;font-family:tahoma,arial,verdana,sans-serif;font-size:11px;padding:0 2px 1px;text-transform:none}.x-window-header-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:4px 5px 0 5px;border-width:1px 1px 0 1px;border-style:solid;background-color:#ced9e7}.x-window-header-default-top-mc{background-color:#ced9e7}.x-nbr .x-window-header-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-top-frameInfo{font-family:dh-5-5-0-0-1-1-0-1-4-5-0-5}.x-window-header-default-top-tl{background-position:0 -10px}.x-window-header-default-top-tr{background-position:right -15px}.x-window-header-default-top-bl{background-position:0 -20px}.x-window-header-default-top-br{background-position:right -25px}.x-window-header-default-top-ml{background-position:0 top}.x-window-header-default-top-mr{background-position:right top}.x-window-header-default-top-tc{background-position:0 0}.x-window-header-default-top-bc{background-position:0 -5px}.x-window-header-default-top-tr,.x-window-header-default-top-br,.x-window-header-default-top-mr{padding-right:5px}.x-window-header-default-top-tl,.x-window-header-default-top-bl,.x-window-header-default-top-ml{padding-left:5px}.x-window-header-default-top-tc{height:5px}.x-window-header-default-top-bc{height:0}.x-window-header-default-top-tl,.x-window-header-default-top-bl,.x-window-header-default-top-tr,.x-window-header-default-top-br,.x-window-header-default-top-tc,.x-window-header-default-top-bc,.x-window-header-default-top-ml,.x-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-corners.gif)}.x-window-header-default-top-ml,.x-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-sides.gif);background-repeat:repeat-y}.x-window-header-default-top-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-top-tl,.x-strict .x-ie7 .x-window-header-default-top-bl{position:relative;right:0}.x-window-header-default-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"}.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:5px;-webkit-border-top-right-radius:5px;border-top-right-radius:5px;-moz-border-radius-bottomright:5px;-webkit-border-bottom-right-radius:5px;border-bottom-right-radius:5px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 4px 5px 0;border-width:1px 1px 1px 0;border-style:solid;background-color:#ced9e7}.x-window-header-default-right-mc{background-color:#ced9e7}.x-nbr .x-window-header-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-right-frameInfo{font-family:dh-0-5-5-0-1-1-1-0-5-4-5-0}.x-window-header-default-right-tl{background-position:0 -10px}.x-window-header-default-right-tr{background-position:right -15px}.x-window-header-default-right-bl{background-position:0 -20px}.x-window-header-default-right-br{background-position:right -25px}.x-window-header-default-right-ml{background-position:0 top}.x-window-header-default-right-mr{background-position:right top}.x-window-header-default-right-tc{background-position:0 0}.x-window-header-default-right-bc{background-position:0 -5px}.x-window-header-default-right-tr,.x-window-header-default-right-br,.x-window-header-default-right-mr{padding-right:5px}.x-window-header-default-right-tl,.x-window-header-default-right-bl,.x-window-header-default-right-ml{padding-left:0}.x-window-header-default-right-tc{height:5px}.x-window-header-default-right-bc{height:5px}.x-window-header-default-right-tl,.x-window-header-default-right-bl,.x-window-header-default-right-tr,.x-window-header-default-right-br,.x-window-header-default-right-tc,.x-window-header-default-right-bc,.x-window-header-default-right-ml,.x-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-corners.gif)}.x-rtl.x-window-header-default-right-tl,.x-rtl.x-window-header-default-right-ml,.x-rtl.x-window-header-default-right-bl,.x-rtl.x-window-header-default-right-tr,.x-rtl.x-window-header-default-right-mr,.x-rtl.x-window-header-default-right-br{background-image:url(images/window-header/window-header-default-right-corners-rtl.gif)}.x-window-header-default-right-ml,.x-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-sides.gif);background-repeat:repeat-y}.x-window-header-default-right-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-right-tl,.x-strict .x-ie7 .x-window-header-default-right-bl{position:relative;right:0}.x-window-header-default-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"}.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: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:0 5px 4px 5px;border-width:0 1px 1px 1px;border-style:solid;background-color:#ced9e7}.x-window-header-default-bottom-mc{background-color:#ced9e7}.x-nbr .x-window-header-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-bottom-frameInfo{font-family:dh-0-0-5-5-0-1-1-1-0-5-4-5}.x-window-header-default-bottom-tl{background-position:0 -10px}.x-window-header-default-bottom-tr{background-position:right -15px}.x-window-header-default-bottom-bl{background-position:0 -20px}.x-window-header-default-bottom-br{background-position:right -25px}.x-window-header-default-bottom-ml{background-position:0 top}.x-window-header-default-bottom-mr{background-position:right top}.x-window-header-default-bottom-tc{background-position:0 0}.x-window-header-default-bottom-bc{background-position:0 -5px}.x-window-header-default-bottom-tr,.x-window-header-default-bottom-br,.x-window-header-default-bottom-mr{padding-right:5px}.x-window-header-default-bottom-tl,.x-window-header-default-bottom-bl,.x-window-header-default-bottom-ml{padding-left:5px}.x-window-header-default-bottom-tc{height:0}.x-window-header-default-bottom-bc{height:5px}.x-window-header-default-bottom-tl,.x-window-header-default-bottom-bl,.x-window-header-default-bottom-tr,.x-window-header-default-bottom-br,.x-window-header-default-bottom-tc,.x-window-header-default-bottom-bc,.x-window-header-default-bottom-ml,.x-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-corners.gif)}.x-window-header-default-bottom-ml,.x-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-sides.gif);background-repeat:repeat-y}.x-window-header-default-bottom-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-bottom-tl,.x-strict .x-ie7 .x-window-header-default-bottom-bl{position:relative;right:0}.x-window-header-default-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"}.x-window-header-default-left{-moz-border-radius-topleft:5px;-webkit-border-top-left-radius:5px;border-top-left-radius:5px;-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:5px;-webkit-border-bottom-left-radius:5px;border-bottom-left-radius:5px;padding:5px 0 5px 4px;border-width:1px 0 1px 1px;border-style:solid;background-color:#ced9e7}.x-window-header-default-left-mc{background-color:#ced9e7}.x-nbr .x-window-header-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-left-frameInfo{font-family:dh-5-0-0-5-1-0-1-1-5-0-5-4}.x-window-header-default-left-tl{background-position:0 -10px}.x-window-header-default-left-tr{background-position:right -15px}.x-window-header-default-left-bl{background-position:0 -20px}.x-window-header-default-left-br{background-position:right -25px}.x-window-header-default-left-ml{background-position:0 top}.x-window-header-default-left-mr{background-position:right top}.x-window-header-default-left-tc{background-position:0 0}.x-window-header-default-left-bc{background-position:0 -5px}.x-window-header-default-left-tr,.x-window-header-default-left-br,.x-window-header-default-left-mr{padding-right:0}.x-window-header-default-left-tl,.x-window-header-default-left-bl,.x-window-header-default-left-ml{padding-left:5px}.x-window-header-default-left-tc{height:5px}.x-window-header-default-left-bc{height:5px}.x-window-header-default-left-tl,.x-window-header-default-left-bl,.x-window-header-default-left-tr,.x-window-header-default-left-br,.x-window-header-default-left-tc,.x-window-header-default-left-bc,.x-window-header-default-left-ml,.x-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-corners.gif)}.x-rtl.x-window-header-default-left-tl,.x-rtl.x-window-header-default-left-ml,.x-rtl.x-window-header-default-left-bl,.x-rtl.x-window-header-default-left-tr,.x-rtl.x-window-header-default-left-mr,.x-rtl.x-window-header-default-left-br{background-image:url(images/window-header/window-header-default-left-corners-rtl.gif)}.x-window-header-default-left-ml,.x-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-sides.gif);background-repeat:repeat-y}.x-window-header-default-left-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-left-tl,.x-strict .x-ie7 .x-window-header-default-left-bl{position:relative;right:0}.x-window-header-default-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"}.x-window-header-default-collapsed-top{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-color:#ced9e7}.x-window-header-default-collapsed-top-mc{background-color:#ced9e7}.x-nbr .x-window-header-default-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-top-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-5-4-5}.x-window-header-default-collapsed-top-tl{background-position:0 -10px}.x-window-header-default-collapsed-top-tr{background-position:right -15px}.x-window-header-default-collapsed-top-bl{background-position:0 -20px}.x-window-header-default-collapsed-top-br{background-position:right -25px}.x-window-header-default-collapsed-top-ml{background-position:0 top}.x-window-header-default-collapsed-top-mr{background-position:right top}.x-window-header-default-collapsed-top-tc{background-position:0 0}.x-window-header-default-collapsed-top-bc{background-position:0 -5px}.x-window-header-default-collapsed-top-tr,.x-window-header-default-collapsed-top-br,.x-window-header-default-collapsed-top-mr{padding-right:5px}.x-window-header-default-collapsed-top-tl,.x-window-header-default-collapsed-top-bl,.x-window-header-default-collapsed-top-ml{padding-left:5px}.x-window-header-default-collapsed-top-tc{height:5px}.x-window-header-default-collapsed-top-bc{height:5px}.x-window-header-default-collapsed-top-tl,.x-window-header-default-collapsed-top-bl,.x-window-header-default-collapsed-top-tr,.x-window-header-default-collapsed-top-br,.x-window-header-default-collapsed-top-tc,.x-window-header-default-collapsed-top-bc,.x-window-header-default-collapsed-top-ml,.x-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-corners.gif)}.x-window-header-default-collapsed-top-ml,.x-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-top-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-top-bl{position:relative;right:0}.x-window-header-default-collapsed-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"}.x-window-header-default-collapsed-right{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-color:#ced9e7}.x-window-header-default-collapsed-right-mc{background-color:#ced9e7}.x-nbr .x-window-header-default-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-right-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-5-4-5-4}.x-window-header-default-collapsed-right-tl{background-position:0 -10px}.x-window-header-default-collapsed-right-tr{background-position:right -15px}.x-window-header-default-collapsed-right-bl{background-position:0 -20px}.x-window-header-default-collapsed-right-br{background-position:right -25px}.x-window-header-default-collapsed-right-ml{background-position:0 top}.x-window-header-default-collapsed-right-mr{background-position:right top}.x-window-header-default-collapsed-right-tc{background-position:0 0}.x-window-header-default-collapsed-right-bc{background-position:0 -5px}.x-window-header-default-collapsed-right-tr,.x-window-header-default-collapsed-right-br,.x-window-header-default-collapsed-right-mr{padding-right:5px}.x-window-header-default-collapsed-right-tl,.x-window-header-default-collapsed-right-bl,.x-window-header-default-collapsed-right-ml{padding-left:5px}.x-window-header-default-collapsed-right-tc{height:5px}.x-window-header-default-collapsed-right-bc{height:5px}.x-window-header-default-collapsed-right-tl,.x-window-header-default-collapsed-right-bl,.x-window-header-default-collapsed-right-tr,.x-window-header-default-collapsed-right-br,.x-window-header-default-collapsed-right-tc,.x-window-header-default-collapsed-right-bc,.x-window-header-default-collapsed-right-ml,.x-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-corners.gif)}.x-rtl.x-window-header-default-collapsed-right-tl,.x-rtl.x-window-header-default-collapsed-right-ml,.x-rtl.x-window-header-default-collapsed-right-bl,.x-rtl.x-window-header-default-collapsed-right-tr,.x-rtl.x-window-header-default-collapsed-right-mr,.x-rtl.x-window-header-default-collapsed-right-br{background-image:url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif)}.x-window-header-default-collapsed-right-ml,.x-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-right-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-right-bl{position:relative;right:0}.x-window-header-default-collapsed-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"}.x-window-header-default-collapsed-bottom{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-color:#ced9e7}.x-window-header-default-collapsed-bottom-mc{background-color:#ced9e7}.x-nbr .x-window-header-default-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-bottom-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-5-4-5}.x-window-header-default-collapsed-bottom-tl{background-position:0 -10px}.x-window-header-default-collapsed-bottom-tr{background-position:right -15px}.x-window-header-default-collapsed-bottom-bl{background-position:0 -20px}.x-window-header-default-collapsed-bottom-br{background-position:right -25px}.x-window-header-default-collapsed-bottom-ml{background-position:0 top}.x-window-header-default-collapsed-bottom-mr{background-position:right top}.x-window-header-default-collapsed-bottom-tc{background-position:0 0}.x-window-header-default-collapsed-bottom-bc{background-position:0 -5px}.x-window-header-default-collapsed-bottom-tr,.x-window-header-default-collapsed-bottom-br,.x-window-header-default-collapsed-bottom-mr{padding-right:5px}.x-window-header-default-collapsed-bottom-tl,.x-window-header-default-collapsed-bottom-bl,.x-window-header-default-collapsed-bottom-ml{padding-left:5px}.x-window-header-default-collapsed-bottom-tc{height:5px}.x-window-header-default-collapsed-bottom-bc{height:5px}.x-window-header-default-collapsed-bottom-tl,.x-window-header-default-collapsed-bottom-bl,.x-window-header-default-collapsed-bottom-tr,.x-window-header-default-collapsed-bottom-br,.x-window-header-default-collapsed-bottom-tc,.x-window-header-default-collapsed-bottom-bc,.x-window-header-default-collapsed-bottom-ml,.x-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-corners.gif)}.x-window-header-default-collapsed-bottom-ml,.x-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-bottom-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl{position:relative;right:0}.x-window-header-default-collapsed-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"}.x-window-header-default-collapsed-left{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-color:#ced9e7}.x-window-header-default-collapsed-left-mc{background-color:#ced9e7}.x-nbr .x-window-header-default-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-left-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-5-4-5-4}.x-window-header-default-collapsed-left-tl{background-position:0 -10px}.x-window-header-default-collapsed-left-tr{background-position:right -15px}.x-window-header-default-collapsed-left-bl{background-position:0 -20px}.x-window-header-default-collapsed-left-br{background-position:right -25px}.x-window-header-default-collapsed-left-ml{background-position:0 top}.x-window-header-default-collapsed-left-mr{background-position:right top}.x-window-header-default-collapsed-left-tc{background-position:0 0}.x-window-header-default-collapsed-left-bc{background-position:0 -5px}.x-window-header-default-collapsed-left-tr,.x-window-header-default-collapsed-left-br,.x-window-header-default-collapsed-left-mr{padding-right:5px}.x-window-header-default-collapsed-left-tl,.x-window-header-default-collapsed-left-bl,.x-window-header-default-collapsed-left-ml{padding-left:5px}.x-window-header-default-collapsed-left-tc{height:5px}.x-window-header-default-collapsed-left-bc{height:5px}.x-window-header-default-collapsed-left-tl,.x-window-header-default-collapsed-left-bl,.x-window-header-default-collapsed-left-tr,.x-window-header-default-collapsed-left-br,.x-window-header-default-collapsed-left-tc,.x-window-header-default-collapsed-left-bc,.x-window-header-default-collapsed-left-ml,.x-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-corners.gif)}.x-rtl.x-window-header-default-collapsed-left-tl,.x-rtl.x-window-header-default-collapsed-left-ml,.x-rtl.x-window-header-default-collapsed-left-bl,.x-rtl.x-window-header-default-collapsed-left-tr,.x-rtl.x-window-header-default-collapsed-left-mr,.x-rtl.x-window-header-default-collapsed-left-br{background-image:url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif)}.x-window-header-default-collapsed-left-ml,.x-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-left-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-left-bl{position:relative;right:0}.x-window-header-default-collapsed-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"}.x-window-header-default-top{-webkit-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset}.x-window-header-default-right{-webkit-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset;box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset}.x-window-header-default-bottom{-webkit-box-shadow:#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;box-shadow:#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset}.x-window-header-default-left{-webkit-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb 1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb 1px 0 0 0 inset;box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb 1px 0 0 0 inset}.x-window-header-default .x-window-header-icon{width:16px;height:16px;color:#04468c;font-size:16px;line-height:16px;background-position:center center}.x-window-header-default .x-window-header-glyph{color:#04468c;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-window-header-default .x-window-header-glyph{color:#698fb9}.x-window-header-default-horizontal .x-window-header-icon-before-title{margin:0 2px 0 0}.x-window-header-default-horizontal .x-rtl.x-window-header-icon-before-title{margin:0 0 0 2px}.x-window-header-default-horizontal .x-window-header-icon-after-title{margin:0 0 0 2px}.x-window-header-default-horizontal .x-rtl.x-window-header-icon-after-title{margin:0 2px 0 0}.x-window-header-default-vertical .x-window-header-icon-before-title{margin:0 0 2px 0}.x-window-header-default-vertical .x-rtl.x-window-header-icon-before-title{margin:0 0 2px 0}.x-window-header-default-vertical .x-window-header-icon-after-title{margin:2px 0 0 0}.x-window-header-default-vertical .x-rtl.x-window-header-icon-after-title{margin:2px 0 0 0}.x-window-header-default-horizontal .x-tool-after-title{margin:0 0 0 2px}.x-window-header-default-horizontal .x-rtl.x-tool-after-title{margin:0 2px 0 0}.x-window-header-default-horizontal .x-tool-before-title{margin:0 2px 0 0}.x-window-header-default-horizontal .x-rtl.x-tool-before-title{margin:0 0 0 2px}.x-window-header-default-vertical .x-tool-after-title{margin:2px 0 0 0}.x-window-header-default-vertical .x-rtl.x-tool-after-title{margin:2px 0 0 0}.x-window-header-default-vertical .x-tool-before-title{margin:0 0 2px 0}.x-window-header-default-vertical .x-rtl.x-tool-before-title{margin:0 0 2px 0}.x-window-default-collapsed .x-window-header{border-width:1px!important}.x-nbr .x-window-default-collapsed .x-window-header{border-width:0!important}.x-form-invalid-under{padding:2px 2px 2px 20px;color:#c0272b;font:normal 11px tahoma,arial,verdana,sans-serif;line-height:16px;background:no-repeat 0 2px;background-image:url(images/form/exclamation.gif)}div.x-lbl-top-err-icon{margin-bottom:3px}.x-form-invalid-icon{width:16px;height:16px;margin:0 1px;background-image:url(images/form/exclamation.gif);background-repeat:no-repeat}.x-form-item-label{color:black;font:normal 12px/14px tahoma,arial,verdana,sans-serif;margin-top:4px}.x-toolbar-item .x-form-item-label{font:normal 11px/13px tahoma,arial,verdana,sans-serif;margin-top:4px}.x-autocontainer-form-item,.x-anchor-form-item,.x-vbox-form-item,.x-table-form-item{margin-bottom:5px}.x-ie6 .x-form-form-item td{border-top-width:0}.x-ie6 td.x-form-item-pad{height:5px}.x-form-field{color:black}.x-form-item,.x-form-field{font:normal 12px tahoma,arial,verdana,sans-serif}.x-form-type-text textarea.x-form-invalid-field,.x-form-type-text input.x-form-invalid-field,.x-form-type-password textarea.x-form-invalid-field,.x-form-type-password input.x-form-invalid-field,.x-form-type-number textarea.x-form-invalid-field,.x-form-type-number input.x-form-invalid-field,.x-form-type-email textarea.x-form-invalid-field,.x-form-type-email input.x-form-invalid-field,.x-form-type-search textarea.x-form-invalid-field,.x-form-type-search input.x-form-invalid-field,.x-form-type-tel textarea.x-form-invalid-field,.x-form-type-tel input.x-form-invalid-field{background-color:white;background-image:url(images/grid/invalid_line.gif);background-repeat:repeat-x;background-position:bottom;border-color:#c30}.x-item-disabled .x-form-item-label,.x-item-disabled .x-form-field,.x-item-disabled .x-form-display-field,.x-item-disabled .x-form-cb-label,.x-item-disabled .x-form-trigger{filter:alpha(opacity=30);opacity:.3}.x-form-text{color:black;padding:1px 3px 2px 3px;background:white repeat-x 0 0;border-width:1px;border-style:solid;border-color:#b5b8c8;background-image:url(images/form/text-bg.gif);height:22px;line-height:17px}.x-field-toolbar .x-form-text{height:20px;line-height:15px}.x-content-box .x-form-text{height:17px}.x-content-box .x-field-toolbar .x-form-text{height:15px}.x-form-focus{border-color:#7eadd9}.x-form-empty-field,textarea.x-form-empty-field{color:gray}.x-quirks .x-ie .x-form-text,.x-ie7m .x-form-text{margin-top:-1px;margin-bottom:-1px}.x-form-textarea{line-height:normal;height:auto;background-image:url(images/form/text-bg.gif)}.x-form-display-field-body{height:22px}.x-toolbar-item .x-form-display-field-body{height:20px}.x-form-display-field{font:normal 12px/14px tahoma,arial,verdana,sans-serif;color:black;margin-top:4px}.x-toolbar-item .x-form-display-field{margin-top:4px;font:normal 11px/13px tahoma,arial,verdana,sans-serif}.x-message-box .x-window-body{background-color:#ced9e7;border-width:0}.x-message-box-info,.x-message-box-warning,.x-message-box-question,.x-message-box-error{background-position:top left;background-repeat:no-repeat}.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:top left}.x-message-box-info{background-image:url(images/shared/icon-info.gif)}.x-message-box-warning{background-image:url(images/shared/icon-warning.gif)}.x-message-box-question{background-image:url(images/shared/icon-question.gif)}.x-message-box-error{background-image:url(images/shared/icon-error.gif)}.x-form-cb-wrap{height:22px}.x-toolbar-item .x-form-cb-wrap{height:20px}.x-form-cb{margin-top:5px}.x-toolbar-item .x-form-cb{margin-top:4px}.x-form-checkbox{width:13px;height:13px;background:url(images/form/checkbox.gif) no-repeat}.x-form-cb-checked .x-form-checkbox{background-position:0 -13px}.x-form-checkbox-focus{background-position:-13px 0}.x-form-cb-checked .x-form-checkbox-focus{background-position:-13px -13px}.x-form-cb-label{margin-top:4px;font:normal 12px/14px tahoma,arial,verdana,sans-serif}.x-toolbar-item .x-form-cb-label{font:normal 11px/13px tahoma,arial,verdana,sans-serif;margin-top:4px}.x-form-cb-label-before{margin-right:4px}.x-rtl.x-field .x-form-cb-label-before{margin-right:0;margin-left:4px}.x-form-cb-label-after{margin-left:4px}.x-rtl.x-field .x-form-cb-label-after{margin-left:0;margin-right:4px}.x-form-checkboxgroup-body{padding:0 4px}.x-form-invalid .x-form-checkboxgroup-body{border:1px solid #c30;background-image:url(images/grid/invalid_line.gif);background-repeat:repeat-x;background-position:bottom}.x-check-group-alt{background:#d1ddef;border-top:1px dotted #b5b8c8;border-bottom:1px dotted #b5b8c8}.x-form-check-group-label{color:black;padding:2px;margin:0 30px 5px 0;border-width:0 0 1px 0;border-style:solid;border-color:black}.x-rtl.x-form-check-group-label{margin:0 0 5px 30px}.x-fieldset{border:1px solid #b5b8c8;padding:0 10px;margin:0 0 10px}.x-ie8m .x-fieldset,.x-quirks .x-ie .x-fieldset{padding-top:0}.x-ie8m .x-fieldset .x-fieldset-body,.x-quirks .x-ie .x-fieldset .x-fieldset-body{padding-top:0}.x-fieldset-header-checkbox{line-height:14px;margin:1px 3px 0 0}.x-fieldset-header{padding:0 3px 1px}.x-fieldset-header .x-tool{margin-top:1px;padding:0}.x-fieldset-header .x-form-cb-wrap{padding:1px 0}.x-fieldset-header-text{font:11px/14px bold tahoma,arial,verdana,sans-serif;color:#15428b;padding:1px 0}.x-fieldset-header-text-collapsible{cursor:pointer}.x-fieldset-with-title .x-fieldset-header-checkbox,.x-fieldset-with-title .x-tool{margin:1px 3px 0 0}.x-fieldset-with-title .x-rtl .x-fieldset-header-checkbox,.x-fieldset-with-title .x-rtl .x-tool{margin:1px 0 0 3px}.x-webkit .x-fieldset-header{-webkit-padding-start:3px;-webkit-padding-end:3px}.x-opera .x-fieldset-with-legend{margin-top:-1px}.x-opera.x-mac .x-fieldset-header-text{padding:2px 0 0}.x-strict .x-ie8 .x-fieldset-header{margin-bottom:-1px}.x-strict .x-ie8 .x-fieldset-header .x-tool,.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text,.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox{position:relative;top:-1px}.x-quirks .x-ie .x-fieldset-header,.x-ie8m .x-fieldset-header{padding-left:1px;padding-right:1px}.x-fieldset-collapsed .x-fieldset-body{display:none}.x-fieldset-collapsed{padding-bottom:0!important;border-width:1px 1px 0 1px!important;border-left-color:transparent!important;border-right-color:transparent!important}.x-ie6 .x-fieldset-collapsed{border-width:1px 0 0 0!important;padding-bottom:0!important;margin-left:1px;margin-right:1px}.x-ie .x-fieldset-bwrap{zoom:1}.x-fieldset .x-tool-toggle{background-position:0 -60px}.x-fieldset .x-tool-over .x-tool-toggle{background-position:-15px -60px}.x-fieldset-collapsed .x-tool-toggle{background-position:0 -75px}.x-fieldset-collapsed .x-tool-over .x-tool-toggle{background-position:-15px -75px}.x-ie .x-fieldset-noborder legend{position:relative;margin-bottom:23px}.x-ie .x-fieldset-noborder legend span{position:absolute;left:16px}.x-fieldset{overflow:hidden}.x-fieldset-bwrap{overflow:hidden;zoom:1}.x-fieldset-body{overflow:hidden}.x-form-radio{width:13px;height:13px;background:url(images/form/radio.gif) no-repeat}.x-form-cb-checked .x-form-radio{background-position:0 -13px}.x-form-radio-focus{background-position:-13px 0}.x-form-cb-checked .x-form-radio-focus{background-position:-13px -13px}.x-form-trigger{background:url(images/form/trigger.gif);width:17px;border-width:0 0 1px;border-color:#b5b8c8;border-style:solid}.x-rtl.x-form-trigger-wrap .x-form-trigger{background-image:url(images/form/trigger-rtl.gif)}.x-trigger-cell{background-color:white;width:17px}.x-form-trigger-over{background-position:-17px 0;border-color:#7eadd9}.x-form-trigger-wrap-focus .x-form-trigger{background-position:-51px 0;border-color:#7eadd9}.x-form-trigger-wrap-focus .x-form-trigger-over{background-position:-68px 0}.x-form-trigger-click,.x-form-trigger-wrap-focus .x-form-trigger-click{background-position:-34px 0}.x-form-clear-trigger{background-image:url(images/form/clear-trigger.gif)}.x-rtl.x-form-trigger-wrap .x-form-clear-trigger{background-image:url(images/form/clear-trigger-rtl.gif)}.x-form-search-trigger{background-image:url(images/form/search-trigger.gif)}.x-rtl.x-form-trigger-wrap .x-form-search-trigger{background-image:url(images/form/search-trigger-rtl.gif)}.x-quirks .prefixie6 .x-form-trigger-input-cell{height:22px}.x-quirks .prefixie6 .x-field-toolbar .x-form-trigger-input-cell{height:20px}div.x-form-spinner-up,div.x-form-spinner-down{background-image:url(images/form/spinner.gif);background-color:white;width:17px;height:11px}.x-rtl.x-form-trigger-wrap .x-form-spinner-up,.x-rtl.x-form-trigger-wrap .x-form-spinner-down{background-image:url(images/form/spinner-rtl.gif)}.x-form-spinner-down{background-position:0 -11px}.x-form-trigger-wrap-focus .x-form-spinner-down{background-position:-51px -11px}.x-form-trigger-wrap .x-form-spinner-down-over{background-position:-17px -11px}.x-form-trigger-wrap-focus .x-form-spinner-down-over{background-position:-68px -11px}.x-form-trigger-wrap .x-form-spinner-down-click{background-position:-34px -11px}.x-toolbar-item div.x-form-spinner-up,.x-toolbar-item div.x-form-spinner-down{background-image:url(images/form/spinner-small.gif);height:10px}.x-toolbar-item .x-form-spinner-down{background-position:0 -10px}.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down{background-position:-51px -10px}.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-over{background-position:-17px -10px}.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down-over{background-position:-68px -10px}.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-click{background-position:-34px -10px}.x-toolbar-item .x-rtl.x-form-trigger-wrap .x-form-spinner-up,.x-toolbar-item .x-rtl.x-form-trigger-wrap .x-form-spinner-down{background-image:url(images/form/spinner-small-rtl.gif)}.x-tbar-page-number{width:30px}.x-tbar-page-first{background-image:url(images/grid/page-first.gif)}.x-tbar-page-prev{background-image:url(images/grid/page-prev.gif)}.x-tbar-page-next{background-image:url(images/grid/page-next.gif)}.x-tbar-page-last{background-image:url(images/grid/page-last.gif)}.x-tbar-loading{background-image:url(images/grid/refresh.gif)}.x-item-disabled .x-tbar-page-first{background-image:url(images/grid/page-first-disabled.gif)}.x-item-disabled .x-tbar-page-prev{background-image:url(images/grid/page-prev-disabled.gif)}.x-item-disabled .x-tbar-page-next{background-image:url(images/grid/page-next-disabled.gif)}.x-item-disabled .x-tbar-page-last{background-image:url(images/grid/page-last-disabled.gif)}.x-item-disabled .x-tbar-loading{background-image:url(images/grid/refresh-disabled.gif)}.x-rtl.x-tbar-page-first{background-image:url(images/grid/page-last.gif)}.x-rtl.x-tbar-page-prev{background-image:url(images/grid/page-next.gif)}.x-rtl.x-tbar-page-next{background-image:url(images/grid/page-prev.gif)}.x-rtl.x-tbar-page-last{background-image:url(images/grid/page-first.gif)}.x-item-disabled .x-rtl.x-tbar-page-first{background-image:url(images/grid/page-last-disabled.gif)}.x-item-disabled .x-rtl.x-tbar-page-prev{background-image:url(images/grid/page-next-disabled.gif)}.x-item-disabled .x-rtl.x-tbar-page-next{background-image:url(images/grid/page-prev-disabled.gif)}.x-item-disabled .x-rtl.x-tbar-page-last{background-image:url(images/grid/page-first-disabled.gif)}.x-boundlist{border-width:1px;border-style:solid;border-color:#98c0f4;background:white}.x-strict .x-ie7m .x-boundlist-list-ct{position:relative}.x-boundlist-item{padding:0 3px;line-height:20px;cursor:pointer;cursor:hand;position:relative;zoom:1;border-width:1px;border-style:dotted;border-color:white}.x-boundlist-selected{background:#cbdaf0;border-color:#8eabe4}.x-boundlist-item-over{background:#dfe8f6;border-color:#a3bae9}.x-boundlist-floating{border-top-width:0}.x-boundlist-above{border-top-width:1px;border-bottom-width:1px}.x-datepicker{border-width:1px;border-style:solid;border-color:#1b376c;background-color:white;width:177px}.x-datepicker-header{padding:3px 6px;text-align:center;background-image:none;background-color:#23427c;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#264888),color-stop(100%,#1f3a6c));background-image:-webkit-linear-gradient(top,#264888,#1f3a6c);background-image:-moz-linear-gradient(top,#264888,#1f3a6c);background-image:-o-linear-gradient(top,#264888,#1f3a6c);background-image:linear-gradient(top,#264888,#1f3a6c)}.x-datepicker-arrow{width:15px;height:15px;top:6px;cursor:pointer;background-color:#23427c;filter:alpha(opacity=70);opacity:.7}a.x-datepicker-arrow:hover{filter:alpha(opacity=100);opacity:1}.x-datepicker-next{right:6px;background-image:url(images/shared/right-btn.gif)}.x-datepicker-prev{left:6px;background-image:url(images/shared/left-btn.gif)}.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}.x-datepicker-month .x-btn-inner{color:white}.x-datepicker-month .x-btn-split-right{background-image:url(images/button/s-arrow-light.gif);padding-right:12px}.x-datepicker-column-header{width:25px;color:#233d6d;font:normal 10px tahoma,arial,verdana,sans-serif;text-align:right;border-width:0 0 1px;border-style:solid;border-color:#b2d1f5;background-image:none;background-color:#dfecfb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#edf4fd),color-stop(100%,#cde1f9));background-image:-webkit-linear-gradient(top,#edf4fd,#cde1f9);background-image:-moz-linear-gradient(top,#edf4fd,#cde1f9);background-image:-o-linear-gradient(top,#edf4fd,#cde1f9);background-image:linear-gradient(top,#edf4fd,#cde1f9)}.x-datepicker-column-header-inner{line-height:19px;padding:0 7px 0 0}.x-datepicker-cell{text-align:right;border-width:1px;border-style:solid;border-color:white}.x-datepicker-date{padding:0 4px 0 0;font:normal 11px tahoma,arial,verdana,sans-serif;color:black;cursor:pointer;line-height:18px}a.x-datepicker-date:hover{color:black;background-color:#ddecfe}.x-datepicker-selected{border-style:solid;border-color:#8db2e3}.x-datepicker-selected .x-datepicker-date{background-color:#dae5f3;font-weight:bold}.x-datepicker-today{border-color:darkred;border-style:solid}.x-datepicker-prevday .x-datepicker-date,.x-datepicker-nextday .x-datepicker-date{color:#aaa}.x-datepicker-disabled a.x-datepicker-date{background-color:#eee;cursor:default;color:#bbb}.x-datepicker-disabled a.x-datepicker-date:hover{background-color:#eee}.x-datepicker-footer,.x-monthpicker-buttons{padding:4px 0;border-width:1px 0 0;border-style:solid;border-color:#b2d1f5;background-image:none;background-color:#dfecfb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dee8f5),color-stop(49%,#d1dff0),color-stop(51%,#c7d8ed),color-stop(100%,#cbdaee));background-image:-webkit-linear-gradient(top,#dee8f5,#d1dff0 49%,#c7d8ed 51%,#cbdaee);background-image:-moz-linear-gradient(top,#dee8f5,#d1dff0 49%,#c7d8ed 51%,#cbdaee);background-image:-o-linear-gradient(top,#dee8f5,#d1dff0 49%,#c7d8ed 51%,#cbdaee);background-image:linear-gradient(top,#dee8f5,#d1dff0 49%,#c7d8ed 51%,#cbdaee);text-align:center}.x-datepicker-footer .x-btn,.x-monthpicker-buttons .x-btn{margin:0 2px 0 2px}.x-monthpicker{width:177px;border-width:1px;border-style:solid;border-color:#1b376c;background-color:white}.x-monthpicker-months{border-width:0 1px 0 0;border-color:#1b376c;border-style:solid;width:87px}.x-monthpicker-months .x-monthpicker-item{width:43px}.x-monthpicker-years{width:88px}.x-monthpicker-years .x-monthpicker-item{width:44px}.x-monthpicker-item{margin:5px 0 4px;font:normal 11px tahoma,arial,verdana,sans-serif;text-align:center}.x-monthpicker-item-inner{margin:0 5px 0 5px;color:#15428b;border-width:1px;border-style:solid;border-color:white;line-height:16px;cursor:pointer}a.x-monthpicker-item-inner:hover{background-color:#ddecfe}.x-monthpicker-selected{background-color:#dae5f3;border-style:solid;border-color:#8db2e3}.x-monthpicker-yearnav{height:27px}.x-monthpicker-yearnav-button-ct{width:44px}.x-monthpicker-yearnav-button{height:15px;width:15px;cursor:pointer;margin-top:6px;background-color:white}.x-monthpicker-yearnav-next{background-image:url(images/tools/tool-sprites.gif);background-position:0 -120px}.x-monthpicker-yearnav-next-over{background-position:-15px -120px}.x-monthpicker-yearnav-prev{background-image:url(images/tools/tool-sprites.gif);background-position:0 -105px}.x-monthpicker-yearnav-prev-over{background-position:-15px -105px}.x-monthpicker-small .x-monthpicker-item{margin:2px 0 2px}.x-monthpicker-small .x-monthpicker-item-inner{margin:0 5px 0 5px}.x-monthpicker-small .x-monthpicker-yearnav{height:22px}.x-monthpicker-small .x-monthpicker-yearnav-button{margin-top:3px}.x-nlg .x-datepicker-header{background-image:url(images/datepicker/datepicker-header-bg.gif);background-repeat:repeat-x;background-position:top left}.x-nlg .x-datepicker-footer,.x-nlg .x-monthpicker-buttons{background-image:url(images/datepicker/datepicker-footer-bg.gif);background-repeat:repeat-x;background-position:top left}.x-datepicker-header:after{display:none;content:"x-slicer:bg:url(images/datepicker/datepicker-header-bg.gif)"}.x-datepicker-footer:after{display:none;content:"x-slicer:bg:url(images/datepicker/datepicker-footer-bg.gif)"}.x-form-date-trigger{background-image:url(images/form/date-trigger.gif)}.x-rtl.x-form-trigger-wrap .x-form-date-trigger{background-image:url(images/form/date-trigger-rtl.gif)}.x-form-file-wrap .x-form-text{color:gray}.x-color-picker{width:144px;height:90px;background-color:white;border-color:white;border-width:0;border-style:solid}.x-color-picker-item{width:18px;height:18px;border-width:1px;border-color:white;border-style:solid;background-color:white;cursor:pointer;padding:2px}.x-content-box .x-color-picker-item{width:12px;height:12px}a.x-color-picker-item:hover{border-color:#8bb8f3;background-color:#deecfd}.x-color-picker-selected{border-color:#8bb8f3;background-color:#deecfd}.x-color-picker-item-inner{line-height:10px;border-color:#aca899;border-width:1px;border-style:solid}.x-html-editor-tb .x-btn-text{background:transparent no-repeat;background-image:url(images/editor/tb-sprite.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.x-html-editor-tip .x-tip-bd .x-tip-bd-inner{padding:5px;padding-bottom:1px}.x-html-editor-tb .x-font-select{font-size:11px;font-family:inherit}.x-html-editor-wrap textarea{font:normal 12px tahoma,arial,verdana,sans-serif;background-color:white;resize:none}.x-grid-body{background:white;border-width:1px;border-style:solid;border-color:#99bce8}.x-grid-empty{padding:10px;color:gray;background-color:white;font:normal 11px tahoma,arial,verdana,sans-serif}.x-grid-cell{color:null;font:normal 11px/13px tahoma,arial,verdana,sans-serif;background-color:white;border-color:#ededed #d0d0d0 #ededed #d0d0d0;border-style:solid}.x-grid-row-alt .x-grid-td{background-color:#fafafa}.x-grid-row-before-over .x-grid-td{border-bottom-style:solid;border-bottom-color:#ddd}.x-grid-row-over .x-grid-td{border-bottom-style:solid;border-bottom-color:#ddd}.x-grid-row-before-selected .x-grid-td{border-bottom-style:dotted;border-bottom-color:#a3bae9}.x-grid-row-selected .x-grid-td{border-bottom-style:dotted;border-bottom-color:#a3bae9}.x-grid-row-before-focused .x-grid-td{border-bottom-style:dotted;border-bottom-color:#464646;border-bottom-width:1px}.x-grid-row-focused .x-grid-td{background-color:#efefef}.x-grid-row-over .x-grid-td{background-color:#efefef}.x-grid-row-selected .x-grid-td{background-color:#dfe8f6}.x-grid-row-focused .x-grid-td{border-bottom-style:dotted;border-bottom-color:#464646;border-bottom-width:1px}.x-grid-table .x-grid-row-focused-first .x-grid-td{border-top:1px dotted #464646}.x-grid-row-selected .x-grid-row-summary .x-grid-td{border-bottom-color:#dfe8f6;border-top-width:0}.x-grid-row-focused .x-grid-row-summary .x-grid-td{border-bottom-color:#efefef;border-top-width:0}.x-grid-with-row-lines .x-grid-td{border-bottom-width:1px}.x-grid-with-row-lines .x-grid-table{border-top:1px solid white}.x-grid-with-row-lines .x-grid-table-over-first{border-top-style:solid;border-top-color:#ddd}.x-grid-with-row-lines .x-grid-table-selected-first{border-top-style:dotted;border-top-color:#a3bae9}.x-grid-body .x-grid-table-focused-first{border-top:1px dotted #464646}.x-grid-cell-inner{text-overflow:ellipsis;padding:3px 6px 4px 6px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner{padding-top:2px;padding-bottom:3px}.x-grid-cell-special{border-color:#ededed #d0d0d0 #ededed #d0d0d0;border-style:solid;border-right-width:1px;background-image:none;background-color:#f6f6f6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:-moz-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:-o-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:linear-gradient(top,#f6f6f6,#e9e9e9)}.x-grid-row-selected .x-grid-cell-special{border-right-color:#ededed #aaccf6;background-image:none;background-color:#dfe8f6;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dfe8f6),color-stop(100%,#cbdaf0));background-image:-webkit-linear-gradient(left,#dfe8f6,#cbdaf0);background-image:-moz-linear-gradient(left,#dfe8f6,#cbdaf0);background-image:-o-linear-gradient(left,#dfe8f6,#cbdaf0);background-image:linear-gradient(left,#dfe8f6,#cbdaf0)}.x-nlg .x-grid-cell-special{background-repeat:repeat-y;background-image:url(images/grid/cell-special-bg.gif)}.x-nlg .x-grid-row-selected .x-grid-cell-special{background-image:url(images/grid/cell-special-selected-bg.gif)}.x-grid-cell-special .x-grid-cell-special:after{display:none;content:"x-slicer:bg:url(images/grid/cell-special-bg.gif)"}.x-grid-cell-special .x-grid-cell-special-selected:after{display:none;content:"x-slicer:bg:url(images/grid/cell-special-selected-bg.gif)"}.x-rtl.x-grid-cell-special{border-right-width:0;border-left-width:1px}.x-grid-dirty-cell{background:url(images/grid/dirty.gif) no-repeat 0 0}.x-rtl.x-grid-dirty-cell{background-image:url(images/grid/dirty-rtl.gif);background-position:right 0}.x-grid-row .x-grid-cell-selected{color:null;background-color:#b8cfee}.x-grid-with-col-lines .x-grid-cell{border-right-width:1px}.x-rtl.x-grid-with-col-lines .x-grid-cell{border-right-width:0;border-left-width:1px}.x-grid-resize-marker{width:1px;background-color:#0f0f0f}.x-grid-drop-indicator{position:absolute;height:1px;line-height:0;background-color:#77bc71;overflow:visible;pointer-events:none}.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}.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}.x-ie6 .x-grid-drop-indicator-left{background-image:url(images/grid/dd-insert-arrow-right.gif)}.x-ie6 .x-grid-drop-indicator-right{background-image:url(images/grid/dd-insert-arrow-left.gif)}.col-move-top,.col-move-bottom{width:9px;height:9px}.col-move-top{background-image:url(images/grid/col-move-top.gif)}.col-move-bottom{background-image:url(images/grid/col-move-bottom.gif)}.x-grid-header-ct{border:1px solid #99bce8;border-bottom-color:#c5c5c5;background-color:#c5c5c5;background-image:none;background-color:#c5c5c5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f9f9f9),color-stop(100%,#e3e4e6));background-image:-webkit-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-moz-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-o-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:linear-gradient(top,#f9f9f9,#e3e4e6)}.x-accordion-item .x-grid-header-ct{border-width:0 0 1px!important}.x-accordion-item .x-grid-header-ct-hidden{border:0!important}.x-grid-body{border-top-color:#c5c5c5}.x-hmenu-sort-asc .x-menu-item-icon{background-image:url(images/grid/hmenu-asc.gif)}.x-hmenu-sort-desc .x-menu-item-icon{background-image:url(images/grid/hmenu-desc.gif)}.x-cols-icon .x-menu-item-icon{background-image:url(images/grid/columns.gif)}.x-column-header{border-right:1px solid #c5c5c5;color:black;font:normal 11px/13px tahoma,arial,verdana,sans-serif;background-image:none;background-color:#c5c5c5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f9f9f9),color-stop(100%,#e3e4e6));background-image:-webkit-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-moz-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-o-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:linear-gradient(top,#f9f9f9,#e3e4e6)}.x-rtl.x-column-header{border-right:0 none;border-left:1px solid #c5c5c5}.x-group-sub-header{background:transparent;border-top:1px solid #c5c5c5}.x-group-sub-header .x-column-header-inner{padding:3px 6px 5px 6px}.x-column-header-inner{padding:4px 6px 5px 6px;text-overflow:ellipsis}.x-column-header-over,.x-column-header-sort-ASC,.x-column-header-sort-DESC{background-image:none;background-color:#aaccf6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ebf3fd),color-stop(39%,#ebf3fd),color-stop(40%,#d9e8fb),color-stop(100%,#d9e8fb));background-image:-webkit-linear-gradient(top,#ebf3fd,#ebf3fd 39%,#d9e8fb 40%,#d9e8fb);background-image:-moz-linear-gradient(top,#ebf3fd,#ebf3fd 39%,#d9e8fb 40%,#d9e8fb);background-image:-o-linear-gradient(top,#ebf3fd,#ebf3fd 39%,#d9e8fb 40%,#d9e8fb);background-image:linear-gradient(top,#ebf3fd,#ebf3fd 39%,#d9e8fb 40%,#d9e8fb)}.x-nlg .x-grid-header-ct,.x-nlg .x-column-header{background-image:url(images/grid/column-header-bg.gif)}.x-nlg .x-column-header-over,.x-nlg .x-column-header-sort-ASC,.x-nlg .x-column-header-sort-DESC{background-image:url(images/grid/column-header-over-bg.gif)}.x-column-header-open{background-color:transparent}.x-column-header-open .x-column-header-trigger{background-color:transparent}.x-column-header-trigger{width:14px;cursor:pointer;background-color:transparent;background-position:0 center}.x-rtl.x-column-header-trigger{background-position:right center}.x-column-header-align-right .x-column-header-text{margin-right:9px}.x-column-header-align-right .x-rtl.x-column-header-text{margin-right:0;margin-left:9px}.x-column-header-sort-ASC .x-column-header-text,.x-column-header-sort-DESC .x-column-header-text{padding-right:12px;background-position:right center}.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:12px;background-position:0 center}.x-column-header-sort-ASC .x-column-header-text{background-image:url(images/grid/sort_asc.gif)}.x-column-header-sort-DESC .x-column-header-text{background-image:url(images/grid/sort_desc.gif)}.x-column-header:after{display:none;content:"x-slicer:bg:url(images/grid/column-header-bg.gif), stretch:bottom"}.x-column-header-over:after{display:none;content:"x-slicer:bg:url(images/grid/column-header-over-bg.gif), stretch:bottom"}.x-grid-cell-inner-action-col{padding:2px 2px 2px 2px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-action-col{padding-top:1px;padding-bottom:1px}.x-action-col-cell .x-item-disabled{filter:alpha(opacity=30);opacity:.3}.x-action-col-icon{height:16px;width:16px;cursor:pointer}.x-grid-cell-inner-checkcolumn{padding:4px 6px 3px 6px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-checkcolumn{padding-top:3px;padding-bottom:2px}.x-grid-checkcolumn{width:13px;height:13px;background:url(images/form/checkbox.gif) 0 0 no-repeat}.x-item-disabled .x-grid-checkcolumn{filter:alpha(opacity=30);opacity:.3}.x-grid-checkcolumn-checked{background-position:0 -13px}.x-grid-cell-inner-row-numberer{padding:3px 5px 4px 3px}.x-grid-group-hd{border-width:0 0 2px 0;border-style:solid;border-color:#99bbe8;padding:10px 4px 4px 4px;background:white;cursor:pointer}.x-grid-group-hd-not-collapsible{cursor:default}.x-grid-group-hd-collapsible .x-grid-group-title{background-repeat:no-repeat;background-position:left center;background-image:url(images/grid/group-collapse.gif);padding:0 0 0 14px}.x-rtl.x-grid-view .x-grid-group-hd-collapsible .x-grid-group-title{background-position:right center;padding:0 14px 0 0}.x-grid-group-title{color:#3764a0;font:bold 11px/13px tahoma,arial,verdana,sans-serif}.x-grid-group-hd-collapsed .x-grid-group-title{background-image:url(images/grid/group-expand.gif)}.x-grid-group-collapsed .x-grid-group-title{background-image:url(images/grid/group-expand.gif)}.x-group-by-icon{background-image:url(images/grid/group-by.gif)}.x-show-groups-icon{background-image:url(images/grid/group-by.gif)}.x-grid-rowbody{font:normal 11px/13px tahoma,arial,verdana,sans-serif;padding:5px 6px 5px 6px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-rowbody{padding-top:6px;padding-bottom:4px}.x-grid-rowwrap{border-color:#ededed #d0d0d0 #ededed #d0d0d0;border-style:solid}.x-summary-bottom{border-bottom-color:#c5c5c5}.x-docked-summary{border-width:1px;border-color:#99bce8;border-style:solid}.x-docked-summary .x-grid-table{width:100%}.x-grid-row-summary .x-grid-cell,.x-grid-row-summary .x-grid-rowwrap,.x-grid-row-summary .x-grid-cell-rowbody{border-color:#ededed #d0d0d0 #ededed #d0d0d0;background-color:transparent!important;border-top-width:0;font:normal 11px/13px tahoma,arial,verdana,sans-serif}.x-grid-with-row-lines .x-grid-table-summary{border:0}.x-grid-locked .x-grid-inner-locked{border-width:0 1px 0 0;border-style:solid}.x-grid-locked .x-rtl.x-grid-inner-locked{border-width:0 0 0 1px}.x-grid-inner-locked .x-column-header-last,.x-grid-inner-locked .x-grid-cell-last{border-right-width:0!important}.x-grid-inner-locked .x-rtl.x-column-header-last{border-left-width:0!important}.x-rtl.x-grid-inner-locked .x-grid-row .x-column-header-last{border-left:0 none}.x-rtl.x-grid-inner-locked .x-grid-row .x-grid-cell-last{border-left:0 none}.x-hmenu-lock .x-menu-item-icon{background-image:url(images/grid/hmenu-lock.gif)}.x-hmenu-unlock .x-menu-item-icon{background-image:url(images/grid/hmenu-unlock.gif)}.x-grid-editor .x-form-text{font:normal 11px/15px tahoma,arial,verdana,sans-serif;padding:1px 5px 2px 5px;height:20px}.x-content-box .x-grid-editor .x-form-text{height:15px}.x-gecko .x-grid-editor .x-form-text{padding-left:4px;padding-right:4px}.x-grid-editor .x-form-trigger{height:20px}.x-grid-editor .x-form-spinner-up,.x-grid-editor .x-form-spinner-down{height:10px}.x-grid-editor .x-form-cb{margin-top:4px}.x-grid-editor .x-form-cb-wrap{height:20px}.x-grid-editor .x-form-display-field-body{height:20px}.x-grid-editor .x-form-display-field{font:normal 11px/15px tahoma,arial,verdana,sans-serif;padding:2px 6px 3px 6px;text-overflow:ellipsis}.x-grid-editor .x-form-action-col-field{padding:2px 2px 2px 2px}.x-tree-cell-editor .x-form-text{padding-left:2px;padding-right:2px}.x-gecko .x-tree-cell-editor .x-form-text{padding-left:1px;padding-right:1px}.x-grid-row-editor .x-field{margin:0 1px 0 1px}.x-grid-row-editor .x-form-display-field{padding:2px 5px 3px 5px}.x-grid-row-editor .x-form-action-col-field{padding:2px 1px 2px 1px}.x-grid-row-editor .x-form-text{padding:1px 4px 2px 4px}.x-gecko .x-grid-row-editor .x-form-text{padding-left:3px;padding-right:3px}.x-grid-row-editor .x-panel-body{border-top:1px solid #99bce8!important;border-bottom:1px solid #99bce8!important;padding:4px 0 4px 0;background-color:#eaf1fb}.x-grid-with-col-lines .x-grid-row-editor .x-form-cb{margin-right:1px}.x-grid-with-col-lines .x-grid-row-editor .x-rtl.x-form-cb{margin-right:0;margin-left:1px}.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:4px 4px 4px 4px;border-width:0 1px 1px 1px;border-style:solid;background-color:#eaf1fb}.x-grid-row-editor-buttons-default-bottom-mc{background-color:#eaf1fb}.x-nbr .x-grid-row-editor-buttons-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-grid-row-editor-buttons-default-bottom-frameInfo{font-family:th-0-0-5-5-0-1-1-1-4-4-4-4}.x-grid-row-editor-buttons-default-bottom-tl{background-position:0 -10px}.x-grid-row-editor-buttons-default-bottom-tr{background-position:right -15px}.x-grid-row-editor-buttons-default-bottom-bl{background-position:0 -20px}.x-grid-row-editor-buttons-default-bottom-br{background-position:right -25px}.x-grid-row-editor-buttons-default-bottom-ml{background-position:0 top}.x-grid-row-editor-buttons-default-bottom-mr{background-position:right top}.x-grid-row-editor-buttons-default-bottom-tc{background-position:0 0}.x-grid-row-editor-buttons-default-bottom-bc{background-position:0 -5px}.x-grid-row-editor-buttons-default-bottom-tr,.x-grid-row-editor-buttons-default-bottom-br,.x-grid-row-editor-buttons-default-bottom-mr{padding-right:5px}.x-grid-row-editor-buttons-default-bottom-tl,.x-grid-row-editor-buttons-default-bottom-bl,.x-grid-row-editor-buttons-default-bottom-ml{padding-left:5px}.x-grid-row-editor-buttons-default-bottom-tc{height:0}.x-grid-row-editor-buttons-default-bottom-bc{height:5px}.x-grid-row-editor-buttons-default-bottom-tl,.x-grid-row-editor-buttons-default-bottom-bl,.x-grid-row-editor-buttons-default-bottom-tr,.x-grid-row-editor-buttons-default-bottom-br,.x-grid-row-editor-buttons-default-bottom-tc,.x-grid-row-editor-buttons-default-bottom-bc,.x-grid-row-editor-buttons-default-bottom-ml,.x-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif)}.x-grid-row-editor-buttons-default-bottom-ml,.x-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif);background-repeat:repeat-y}.x-grid-row-editor-buttons-default-bottom-mc{padding:4px 0 0 0}.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-tl,.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-bl{position:relative;right:0}.x-grid-row-editor-buttons-default-bottom:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"}.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:4px 4px 4px 4px;border-width:1px 1px 0 1px;border-style:solid;background-color:#eaf1fb}.x-grid-row-editor-buttons-default-top-mc{background-color:#eaf1fb}.x-nbr .x-grid-row-editor-buttons-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-grid-row-editor-buttons-default-top-frameInfo{font-family:th-5-5-0-0-1-1-0-1-4-4-4-4}.x-grid-row-editor-buttons-default-top-tl{background-position:0 -10px}.x-grid-row-editor-buttons-default-top-tr{background-position:right -15px}.x-grid-row-editor-buttons-default-top-bl{background-position:0 -20px}.x-grid-row-editor-buttons-default-top-br{background-position:right -25px}.x-grid-row-editor-buttons-default-top-ml{background-position:0 top}.x-grid-row-editor-buttons-default-top-mr{background-position:right top}.x-grid-row-editor-buttons-default-top-tc{background-position:0 0}.x-grid-row-editor-buttons-default-top-bc{background-position:0 -5px}.x-grid-row-editor-buttons-default-top-tr,.x-grid-row-editor-buttons-default-top-br,.x-grid-row-editor-buttons-default-top-mr{padding-right:5px}.x-grid-row-editor-buttons-default-top-tl,.x-grid-row-editor-buttons-default-top-bl,.x-grid-row-editor-buttons-default-top-ml{padding-left:5px}.x-grid-row-editor-buttons-default-top-tc{height:5px}.x-grid-row-editor-buttons-default-top-bc{height:0}.x-grid-row-editor-buttons-default-top-tl,.x-grid-row-editor-buttons-default-top-bl,.x-grid-row-editor-buttons-default-top-tr,.x-grid-row-editor-buttons-default-top-br,.x-grid-row-editor-buttons-default-top-tc,.x-grid-row-editor-buttons-default-top-bc,.x-grid-row-editor-buttons-default-top-ml,.x-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif)}.x-grid-row-editor-buttons-default-top-ml,.x-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif);background-repeat:repeat-y}.x-grid-row-editor-buttons-default-top-mc{padding:0 0 4px 0}.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-tl,.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-bl{position:relative;right:0}.x-grid-row-editor-buttons-default-top:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"}.x-grid-row-editor-buttons-default-bottom{top:29px}.x-grid-row-editor-buttons-default-top{bottom:29px}.x-grid-row-editor-buttons{border-color:#99bce8}.x-row-editor-update-button{margin-right:2px}.x-row-editor-cancel-button{margin-left:2px}.x-rtl.x-row-editor-update-button{margin-left:2px;margin-right:auto}.x-rtl.x-row-editor-cancel-button{margin-right:2px;margin-left:auto}.x-grid-row-editor-errors .x-tip-body{padding:5px}.x-grid-row-editor-errors-item{list-style:disc;margin-left:15px}.x-rtl.x-grid-row-editor-errors .x-grid-row-editor-errors-item{margin-left:0;margin-right:15px}.x-grid-cell-inner-row-expander{padding:6px 7px 5px 7px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-row-expander{padding-top:5px;padding-bottom:4px}.x-grid-row-expander{width:9px;height:9px;cursor:pointer;background-image:url(images/grid/group-collapse.gif)}.x-grid-row-collapsed .x-grid-row-expander{background-image:url(images/grid/group-expand.gif)}.x-grid-cell-inner-property-name{background-image:url(images/grid/property-cell-bg.gif);background-repeat:no-repeat;background-position:-16px 2px;padding-left:12px}.x-accordion-layout-ct{background-color:white;padding:0}.x-accordion-hd .x-panel-header-text-container{color:black;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;text-transform:none}.x-accordion-item{margin:0}.x-accordion-item .x-accordion-hd{background:#d9e7f8;border-top-color:#f3f7fb;padding:4px 5px 5px 5px}.x-accordion-item .x-accordion-hd-sibling-expanded{border-top-color:#99bce8}.x-accordion-item .x-accordion-hd-last-collapsed{border-bottom-color:#d9e7f8}.x-accordion-item .x-accordion-body{border-width:0}.x-accordion-hd .x-tool-collapse-top,.x-accordion-hd .x-tool-collapse-bottom{background-position:0 -255px}.x-accordion-hd .x-tool-expand-top,.x-accordion-hd .x-tool-expand-bottom{background-position:0 -240px}.x-accordion-hd .x-tool-over .x-tool-collapse-top,.x-accordion-hd .x-tool-over .x-tool-collapse-bottom{background-position:-15px -255px}.x-accordion-hd .x-tool-over .x-tool-expand-top,.x-accordion-hd .x-tool-over .x-tool-expand-bottom{background-position:-15px -240px}.x-accordion-hd .x-tool-img{background-color:#d9e7f8}.x-collapse-el{cursor:pointer}.x-layout-split-left,.x-layout-split-right{top:50%;margin-top:-18px;width:5px;height:35px}.x-layout-split-top,.x-layout-split-bottom{left:50%;width:35px;height:5px;margin-left:-18px}.x-layout-split-left{background-image:url(images/util/splitter/mini-left.gif)}.x-layout-split-right{background-image:url(images/util/splitter/mini-right.gif)}.x-rtl.x-layout-split-left{background-image:url(images/util/splitter/mini-right.gif)}.x-rtl.x-layout-split-right{background-image:url(images/util/splitter/mini-left.gif)}.x-layout-split-top{background-image:url(images/util/splitter/mini-top.gif)}.x-layout-split-bottom{background-image:url(images/util/splitter/mini-bottom.gif)}.x-splitter-collapsed .x-layout-split-left{background-image:url(images/util/splitter/mini-right.gif)}.x-splitter-collapsed .x-layout-split-right{background-image:url(images/util/splitter/mini-left.gif)}.x-splitter-collapsed .x-rtl.x-layout-split-left{background-image:url(images/util/splitter/mini-left.gif)}.x-splitter-collapsed .x-rtl.x-layout-split-right{background-image:url(images/util/splitter/mini-right.gif)}.x-splitter-collapsed .x-layout-split-top{background-image:url(images/util/splitter/mini-bottom.gif)}.x-splitter-collapsed .x-layout-split-bottom{background-image:url(images/util/splitter/mini-top.gif)}.x-splitter-active{background-color:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x-splitter-active .x-collapse-el{filter:alpha(opacity=30);opacity:.3}.x-border-layout-ct{background-color:#dfe8f6}.x-menu-body{background:#f0f0f0;padding:2px}.x-menu-icon-separator{left:24px;border-left:solid 1px #e0e0e0;background-color:white;width:2px}.x-rtl.x-menu .x-menu-icon-separator{left:auto;right:24px}.x-menu-item{padding:1px;cursor:pointer}.x-menu-item-indent{margin-left:30px}.x-rtl.x-menu-item-indent{margin-left:0;margin-right:30px}.x-menu-item-active{background-image:none;background-color:#d9e8fb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e7f0fc),color-stop(100%,#c7ddf9));background-image:-webkit-linear-gradient(top,#e7f0fc,#c7ddf9);background-image:-moz-linear-gradient(top,#e7f0fc,#c7ddf9);background-image:-o-linear-gradient(top,#e7f0fc,#c7ddf9);background-image:linear-gradient(top,#e7f0fc,#c7ddf9);border-color:#a9cbf5;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;border-width:1px;border-style:solid;padding:0}.x-nlg .x-menu-item-active{background:#d9e8fb repeat-x left top;background-image:url(images/menu/menu-item-active-bg.gif)}.x-menu-item-link{line-height:22px;padding:0 0 0 30px;display:inline-block}.x-rtl.x-menu-item-link{padding:0 30px 0 0}.x-right-check-item-text{padding-right:22px}.x-rtl.x-right-check-item-text{padding-left:22px;padding-right:0}.x-menu-item-icon{width:16px;height:16px;top:4px;left:3px;background-position:center center}.x-menu-item-glyph{font-size:16px;line-height:16px;color:#222;opacity:.5}.x-ie8m .x-menu-item-glyph{color:#898989}.x-gecko .x-menu-item-active .x-menu-item-icon,.x-quirks .x-menu-item-active .x-menu-item-icon,.x-ie9m .x-menu-item-active .x-menu-item-icon{top:3px;left:2px}.x-rtl.x-menu-item-icon{left:auto;right:3px}.x-gecko .x-menu-item-active .x-rtl.x-menu-item-icon,.x-quirks .x-menu-item-active .x-rtl.x-menu-item-icon,.x-ie9m .x-menu-item-active .x-rtl.x-menu-item-icon{left:auto;right:2px}.x-menu-item-icon-right{width:16px;height:16px;top:3px;right:3px;background-position:center center}.x-rtl.x-menu-item-icon-right{right:auto;left:3px}.x-menu-item-text{font-size:11px;color:#222;cursor:pointer;margin-right:16px}a.x-rtl .x-menu-item-text{margin-right:0;margin-left:16px}.x-menu-item-checked .x-menu-item-icon,.x-menu-item-checked .x-menu-item-icon-right{background-image:url(images/menu/checked.gif)}.x-menu-item-checked .x-menu-group-icon{background-image:url(images/menu/group-checked.gif)}.x-menu-item-unchecked .x-menu-item-icon,.x-menu-item-unchecked .x-menu-item-icon-right{background-image:url(images/menu/unchecked.gif)}.x-menu-item-unchecked .x-menu-group-icon{background-image:none}.x-menu-item-separator{height:2px;border-top:solid 1px #e0e0e0;background-color:white;margin:2px 0;padding:0}.x-menu-item-arrow{width:12px;height:9px;top:7px;right:0;background-image:url(images/menu/menu-parent.gif)}.x-gecko .x-menu-item-active .x-menu-item-arrow,.x-quirks .x-menu-item-active .x-menu-item-arrow,.x-ie9m .x-menu-item-active .x-menu-item-arrow{top:6px;right:-1px}.x-rtl.x-menu-item-arrow{left:0;right:auto;background-image:url(images/menu/menu-parent-left.gif)}.x-gecko .x-menu-item-active .x-rtl.x-menu-item-arrow,.x-ie9m .x-menu-item-active .x-rtl.x-menu-item-arrow,.x-quirks .x-menu-item-active .x-rtl.x-menu-item-arrow{right:auto;left:-1px}.x-menu-item-disabled{filter:alpha(opacity=50);opacity:.5}.x-content-box .x-menu-icon-separator{width:1px}.x-content-box .x-menu-item-separator{height:1px}.x-ie .x-menu-item-disabled .x-menu-item-icon{filter:alpha(opacity=50);opacity:.5}.x-ie .x-menu-item-disabled .x-menu-item-text{background-color:transparent}.x-menu-date-item{border-color:#99bbe8}.x-menu-item .x-form-item-label{font-size:11px;color:#222}.x-menu-scroll-top{height:8px;background-image:url(images/menu/scroll-top.gif)}.x-menu-scroll-bottom{height:8px;background-image:url(images/menu/scroll-bottom.gif)}.x-menu-scroll-top,.x-menu-scroll-bottom{background-color:#f0f0f0}.x-menu-item-link:after{display:none;content:"x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"}.x-tool{cursor:pointer}.x-tool-img{overflow:hidden;width:15px;height:15px;background-image:url(images/tools/tool-sprites.gif);margin:0}.x-tool-placeholder{visibility:hidden}.x-tool-close{background-position:0 0}.x-tool-minimize{background-position:0 -15px}.x-tool-maximize{background-position:0 -30px}.x-tool-restore{background-position:0 -45px}.x-tool-toggle{background-position:0 -60px}.x-panel-collapsed .x-tool-toggle{background-position:0 -75px}.x-tool-gear{background-position:0 -90px}.x-tool-prev{background-position:0 -105px}.x-tool-next{background-position:0 -120px}.x-tool-pin{background-position:0 -135px}.x-tool-unpin{background-position:0 -150px}.x-tool-right{background-position:0 -165px}.x-tool-left{background-position:0 -180px}.x-tool-down{background-position:0 -195px}.x-tool-up{background-position:0 -210px}.x-tool-refresh{background-position:0 -225px}.x-tool-plus{background-position:0 -240px}.x-tool-minus{background-position:0 -255px}.x-tool-search{background-position:0 -270px}.x-tool-save{background-position:0 -285px}.x-tool-help{background-position:0 -300px}.x-tool-print{background-position:0 -315px}.x-tool-expand{background-position:0 -330px}.x-tool-collapse{background-position:0 -345px}.x-tool-resize{background-position:0 -360px}.x-tool-move{background-position:0 -375px}.x-tool-expand-bottom,.x-tool-collapse-bottom{background-position:0 -195px}.x-tool-expand-top,.x-tool-collapse-top{background-position:0 -210px}.x-tool-expand-left,.x-tool-collapse-left{background-position:0 -180px}.x-tool-expand-right,.x-tool-collapse-right{background-position:0 -165px}.x-rtl.x-tool-expand-left,.x-rtl.x-tool-collapse-left{background-position:0 -165px}.x-rtl.x-tool-expand-right,.x-rtl.x-tool-collapse-right{background-position:0 -180px}.x-tool-over .x-tool-close{background-position:-15px 0}.x-tool-over .x-tool-minimize{background-position:-15px -15px}.x-tool-over .x-tool-maximize{background-position:-15px -30px}.x-tool-over .x-tool-restore{background-position:-15px -45px}.x-tool-over .x-tool-toggle{background-position:-15px -60px}.x-panel-collapsed .x-tool-over .x-tool-toggle{background-position:-15px -75px}.x-tool-over .x-tool-gear{background-position:-15px -90px}.x-tool-over .x-tool-prev{background-position:-15px -105px}.x-tool-over .x-tool-next{background-position:-15px -120px}.x-tool-over .x-tool-pin{background-position:-15px -135px}.x-tool-over .x-tool-unpin{background-position:-15px -150px}.x-tool-over .x-tool-right{background-position:-15px -165px}.x-tool-over .x-tool-left{background-position:-15px -180px}.x-tool-over .x-tool-down{background-position:-15px -195px}.x-tool-over .x-tool-up{background-position:-15px -210px}.x-tool-over .x-tool-refresh{background-position:-15px -225px}.x-tool-over .x-tool-plus{background-position:-15px -240px}.x-tool-over .x-tool-minus{background-position:-15px -255px}.x-tool-over .x-tool-search{background-position:-15px -270px}.x-tool-over .x-tool-save{background-position:-15px -285px}.x-tool-over .x-tool-help{background-position:-15px -300px}.x-tool-over .x-tool-print{background-position:-15px -315px}.x-tool-over .x-tool-expand{background-position:-15px -330px}.x-tool-over .x-tool-collapse{background-position:-15px -345px}.x-tool-over .x-tool-resize{background-position:-15px -360px}.x-tool-over .x-tool-move{background-position:-15px -375px}.x-tool-over .x-tool-expand-bottom,.x-tool-over .x-tool-collapse-bottom{background-position:-15px -195px}.x-tool-over .x-tool-expand-top,.x-tool-over .x-tool-collapse-top{background-position:-15px -210px}.x-tool-over .x-tool-expand-left,.x-tool-over .x-tool-collapse-left{background-position:-15px -180px}.x-tool-over .x-tool-expand-right,.x-tool-over .x-tool-collapse-right{background-position:-15px -165px}.x-tool-over .x-rtl.x-tool-expand-left,.x-tool-over .x-rtl.x-tool-collapse-left{background-position:-15px -165px}.x-tool-over .x-rtl.x-tool-expand-right,.x-tool-over .x-rtl.x-tool-collapse-right{background-position:-15px -180px}.x-resizable-handle{position:absolute;z-index:100;font-size:1px;line-height:6px;overflow:hidden;zoom:1;filter:alpha(opacity=0);opacity:0;background-color:#fff}.x-collapsed .x-resizable-handle{display:none}.x-resizable-over .x-resizable-handle-north{cursor:n-resize}.x-resizable-over .x-resizable-handle-south{cursor:s-resize}.x-resizable-over .x-resizable-handle-east{cursor:e-resize}.x-resizable-over .x-resizable-handle-west{cursor:w-resize}.x-resizable-over .x-resizable-handle-southeast{cursor:se-resize}.x-resizable-over .x-resizable-handle-northwest{cursor:nw-resize}.x-resizable-over .x-resizable-handle-northeast{cursor:ne-resize}.x-resizable-over .x-resizable-handle-southwest{cursor:sw-resize}.x-resizable-handle-east{width:6px;height:100%;right:0;top:0}.x-resizable-handle-south{width:100%;height:6px;left:0;bottom:0}.x-resizable-handle-west{width:6px;height:100%;left:0;top:0}.x-resizable-handle-north{width:100%;height:6px;left:0;top:0}.x-resizable-handle-southeast{width:6px;height:6px;right:0;bottom:0;z-index:101}.x-resizable-handle-northwest{width:6px;height:6px;left:0;top:0;z-index:101}.x-resizable-handle-northeast{width:6px;height:6px;right:0;top:0;z-index:101}.x-resizable-handle-southwest{width:6px;height:6px;left:0;bottom:0;z-index:101}.x-ie .x-resizable-handle-east{margin-right:-1px}.x-ie .x-resizable-handle-south{margin-bottom:-1px}.x-resizable-pinned .x-resizable-handle,.x-resizable-over .x-resizable-handle{filter:alpha(opacity=100);opacity:1}.x-window .x-window-handle{filter:alpha(opacity=0);opacity:0}.x-window-collapsed .x-window-handle{display:none}.x-resizable-proxy{border:1px dashed #3b5a82;position:absolute;overflow:hidden;z-index:50000}.x-resizable-over .x-resizable-handle-east,.x-resizable-over .x-resizable-handle-west,.x-resizable-pinned .x-resizable-handle-east,.x-resizable-pinned .x-resizable-handle-west{background-image:url(images/sizer/e-handle.gif)}.x-resizable-over .x-resizable-handle-south,.x-resizable-over .x-resizable-handle-north,.x-resizable-pinned .x-resizable-handle-south,.x-resizable-pinned .x-resizable-handle-north{background-image:url(images/sizer/s-handle.gif)}.x-resizable-over .x-resizable-handle-southeast,.x-resizable-pinned .x-resizable-handle-southeast{background-position:top left;background-image:url(images/sizer/se-handle.gif)}.x-resizable-over .x-resizable-handle-northwest,.x-resizable-pinned .x-resizable-handle-northwest{background-position:bottom right;background-image:url(images/sizer/nw-handle.gif)}.x-resizable-over .x-resizable-handle-northeast,.x-resizable-pinned .x-resizable-handle-northeast{background-position:bottom left;background-image:url(images/sizer/ne-handle.gif)}.x-resizable-over .x-resizable-handle-southwest,.x-resizable-pinned .x-resizable-handle-southwest{background-position:top right;background-image:url(images/sizer/sw-handle.gif)}.x-slider-horz{padding-left:7px;background:no-repeat 0 -15px}.x-slider-horz .x-slider-end{padding-right:7px;background:no-repeat right -30px}.x-slider-horz .x-slider-inner{height:15px}.x-ie6 .x-form-item .x-slider-horz,.x-ie7 .x-form-item .x-slider-horz,.x-quirks .x-ie .x-form-item .x-slider-horz{margin-top:4px}.x-slider-horz .x-slider-thumb{width:14px;height:15px;margin-left:-7px;background-image:url(images/slider/slider-thumb.png)}.x-slider-horz .x-slider-thumb-over{background-position:-14px -15px}.x-slider-horz .x-slider-thumb-drag{background-position:-28px -30px}.x-rtl.x-slider-horz{padding-left:0;padding-right:7px;background-position:right -30px}.x-rtl.x-slider-horz .x-slider-end{padding-right:0;padding-left:7px;background-position:left -15px}.x-rtl.x-slider-horz .x-slider-thumb{margin-right:-7px}.x-slider-vert{padding-top:7px;background:no-repeat -30px 0}.x-slider-vert .x-slider-end{padding-bottom:7px;background:no-repeat -15px bottom;width:15px}.x-slider-vert .x-slider-inner{width:15px}.x-slider-vert .x-slider-thumb{width:15px;height:14px;margin-bottom:-7px;background-image:url(images/slider/slider-v-thumb.png)}.x-slider-vert .x-slider-thumb-over{background-position:-15px -14px}.x-slider-vert .x-slider-thumb-drag{background-position:-30px -28px}.x-slider-horz,.x-slider-horz .x-slider-end,.x-slider-horz .x-slider-inner{background-image:url(images/slider/slider-bg.png)}.x-slider-vert,.x-slider-vert .x-slider-end,.x-slider-vert .x-slider-inner{background-image:url(images/slider/slider-v-bg.png)}.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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%)}.x-tab-default-top-mc{background-image:url(images/tab/tab-default-top-fbg.gif);background-position:0 top;background-color:#deecfd}.x-nlg .x-tab-default-top{background-image:url(images/tab/tab-default-top-bg.gif);background-position:0 top}.x-nbr .x-tab-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-tab-default-top-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x-tab-default-top-tl{background-position:0 -8px}.x-tab-default-top-tr{background-position:right -12px}.x-tab-default-top-bl{background-position:0 -16px}.x-tab-default-top-br{background-position:right -20px}.x-tab-default-top-ml{background-position:0 top}.x-tab-default-top-mr{background-position:right top}.x-tab-default-top-tc{background-position:0 0}.x-tab-default-top-bc{background-position:0 -4px}.x-tab-default-top-tr,.x-tab-default-top-br,.x-tab-default-top-mr{padding-right:4px}.x-tab-default-top-tl,.x-tab-default-top-bl,.x-tab-default-top-ml{padding-left:4px}.x-tab-default-top-tc{height:4px}.x-tab-default-top-bc{height:0}.x-tab-default-top-tl,.x-tab-default-top-bl,.x-tab-default-top-tr,.x-tab-default-top-br,.x-tab-default-top-tc,.x-tab-default-top-bc,.x-tab-default-top-ml,.x-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-top-ml,.x-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif)}.x-tab-default-top-mc{padding:0 6px 3px 6px}.x-strict .x-ie7 .x-tab-default-top-tl,.x-strict .x-ie7 .x-tab-default-top-bl{position:relative;right:0}.x-tab-default-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.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:3px 9px 3px 9px;border-width:0 1px 1px 1px;border-style:solid;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%)}.x-tab-default-bottom-mc{background-image:url(images/tab/tab-default-bottom-fbg.gif);background-position:0 top;background-color:#deecfd}.x-nlg .x-tab-default-bottom{background-image:url(images/tab/tab-default-bottom-bg.gif);background-position:0 top}.x-nbr .x-tab-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-tab-default-bottom-frameInfo{font-family:th-0-0-4-4-0-1-1-1-3-9-3-9}.x-tab-default-bottom-tl{background-position:0 -8px}.x-tab-default-bottom-tr{background-position:right -12px}.x-tab-default-bottom-bl{background-position:0 -16px}.x-tab-default-bottom-br{background-position:right -20px}.x-tab-default-bottom-ml{background-position:0 top}.x-tab-default-bottom-mr{background-position:right top}.x-tab-default-bottom-tc{background-position:0 0}.x-tab-default-bottom-bc{background-position:0 -4px}.x-tab-default-bottom-tr,.x-tab-default-bottom-br,.x-tab-default-bottom-mr{padding-right:4px}.x-tab-default-bottom-tl,.x-tab-default-bottom-bl,.x-tab-default-bottom-ml{padding-left:4px}.x-tab-default-bottom-tc{height:0}.x-tab-default-bottom-bc{height:4px}.x-tab-default-bottom-tl,.x-tab-default-bottom-bl,.x-tab-default-bottom-tr,.x-tab-default-bottom-br,.x-tab-default-bottom-tc,.x-tab-default-bottom-bc,.x-tab-default-bottom-ml,.x-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-corners.gif)}.x-tab-default-bottom-ml,.x-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-sides.gif)}.x-tab-default-bottom-mc{padding:3px 6px 0 6px}.x-strict .x-ie7 .x-tab-default-bottom-tl,.x-strict .x-ie7 .x-tab-default-bottom-bl{position:relative;right:0}.x-tab-default-bottom:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-bottom-fbg.gif), bg:url(images/tab/tab-default-bottom-bg.gif), corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"}.x-tab-default-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: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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%)}.x-tab-default-left-mc{background-image:url(images/tab/tab-default-top-fbg.gif);background-position:0 top;background-color:#deecfd}.x-nlg .x-tab-default-left{background-image:url(images/tab/tab-default-top-bg.gif);background-position:0 top}.x-nbr .x-tab-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-tab-default-left-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x-tab-default-left-tl{background-position:0 -8px}.x-tab-default-left-tr{background-position:right -12px}.x-tab-default-left-bl{background-position:0 -16px}.x-tab-default-left-br{background-position:right -20px}.x-tab-default-left-ml{background-position:0 top}.x-tab-default-left-mr{background-position:right top}.x-tab-default-left-tc{background-position:0 0}.x-tab-default-left-bc{background-position:0 -4px}.x-tab-default-left-tr,.x-tab-default-left-br,.x-tab-default-left-mr{padding-right:4px}.x-tab-default-left-tl,.x-tab-default-left-bl,.x-tab-default-left-ml{padding-left:4px}.x-tab-default-left-tc{height:4px}.x-tab-default-left-bc{height:0}.x-tab-default-left-tl,.x-tab-default-left-bl,.x-tab-default-left-tr,.x-tab-default-left-br,.x-tab-default-left-tc,.x-tab-default-left-bc,.x-tab-default-left-ml,.x-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-left-ml,.x-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif)}.x-tab-default-left-mc{padding:0 6px 3px 6px}.x-strict .x-ie7 .x-tab-default-left-tl,.x-strict .x-ie7 .x-tab-default-left-bl{position:relative;right:0}.x-tab-default-left:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x-tab-default-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: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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%)}.x-tab-default-right-mc{background-image:url(images/tab/tab-default-top-fbg.gif);background-position:0 top;background-color:#deecfd}.x-nlg .x-tab-default-right{background-image:url(images/tab/tab-default-top-bg.gif);background-position:0 top}.x-nbr .x-tab-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-tab-default-right-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x-tab-default-right-tl{background-position:0 -8px}.x-tab-default-right-tr{background-position:right -12px}.x-tab-default-right-bl{background-position:0 -16px}.x-tab-default-right-br{background-position:right -20px}.x-tab-default-right-ml{background-position:0 top}.x-tab-default-right-mr{background-position:right top}.x-tab-default-right-tc{background-position:0 0}.x-tab-default-right-bc{background-position:0 -4px}.x-tab-default-right-tr,.x-tab-default-right-br,.x-tab-default-right-mr{padding-right:4px}.x-tab-default-right-tl,.x-tab-default-right-bl,.x-tab-default-right-ml{padding-left:4px}.x-tab-default-right-tc{height:4px}.x-tab-default-right-bc{height:0}.x-tab-default-right-tl,.x-tab-default-right-bl,.x-tab-default-right-tr,.x-tab-default-right-br,.x-tab-default-right-tc,.x-tab-default-right-bc,.x-tab-default-right-ml,.x-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-right-ml,.x-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif)}.x-tab-default-right-mc{padding:0 6px 3px 6px}.x-strict .x-ie7 .x-tab-default-right-tl,.x-strict .x-ie7 .x-tab-default-right-bl{position:relative;right:0}.x-tab-default-right:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x-tab-default{border-color:#8db3e3;margin:0 0 0 2px;cursor:pointer}.x-tab-default .x-tab-inner{font-size:11px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;color:#416da3;line-height:13px}.x-tab-default .x-tab-icon-el{width:16px;height:16px;line-height:16px;background-position:center center}.x-tab-default .x-tab-glyph{font-size:16px;color:#416da3;opacity:.5}.x-ie8m .x-tab-default .x-tab-glyph{color:#8facd0}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default{padding-left:0}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-button{padding-left:9px}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-icon-el{left:9px}.x-tab-default-icon .x-tab-inner{width:16px}.x-rtl.x-tab-default{margin:0 2px 0 0}.x-rtl.x-tab-default{margin:0 2px 0 0}.x-tab-default-left{margin:0 2px 0 0}.x-rtl.x-tab-default-left{margin:0 0 0 2px}.x-tab-default-top,.x-tab-default-left,.x-tab-default-right{border-bottom:1px solid #99bce8;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);-webkit-box-shadow:white 0 1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;-moz-box-shadow:white 0 1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;box-shadow:white 0 1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset}.x-nlg .x-tab-default-top,.x-nlg .x-tab-default-left,.x-nlg .x-tab-default-right{background-image:url(images/tab/tab-default-top-bg.gif)}.x-tab-default-bottom{border-top:1px solid #99bce8;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);-webkit-box-shadow:white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;-moz-box-shadow:white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;box-shadow:white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset}.x-nlg .x-tab-default-bottom{background-image:url(images/tab/tab-default-bottom-bg.gif)}.x-tab-default-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-tab-default-left{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.x-rtl.x-tab-default-left{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-rtl.x-tab-default-left{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.x-tab-default-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-tab-default-right{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.x-rtl.x-tab-default-right{-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-rtl.x-tab-default-right{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.x-tab-default-icon-text-left .x-tab-inner{padding-left:20px}.x-rtl.x-tab-default-icon-text-left .x-tab-inner{padding-left:0;padding-right:20px}.x-tab-default-over{background-color:#e8f2ff}.x-tab-default-over .x-tab-glyph{color:#416da3}.x-ie8m .x-tab-default-over .x-tab-glyph{color:#94afd1}.x-tab-default-top-over,.x-tab-default-left-over,.x-tab-default-right-over{background-image:none;background-color:#e8f2ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#d7e5fd),color-stop(25%,#e0edff),color-stop(45%,#e8f2ff));background-image:-webkit-linear-gradient(top,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:-moz-linear-gradient(top,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:-o-linear-gradient(top,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:linear-gradient(top,#d7e5fd,#e0edff 25%,#e8f2ff 45%)}.x-nlg .x-tab-default-top-over,.x-nlg .x-tab-default-left-over,.x-nlg .x-tab-default-right-over{background-image:url(images/tab/tab-default-top-over-bg.gif)}.x-tab-default-bottom-over{background-image:none;background-color:#e8f2ff;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#d7e5fd),color-stop(25%,#e0edff),color-stop(45%,#e8f2ff));background-image:-webkit-linear-gradient(bottom,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:-moz-linear-gradient(bottom,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:-o-linear-gradient(bottom,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:linear-gradient(bottom,#d7e5fd,#e0edff 25%,#e8f2ff 45%)}.x-nlg .x-tab-default-bottom-over{background-image:url(images/tab/tab-default-bottom-over-bg.gif)}.x-tab-default-active{background-color:#deecfd}.x-tab-default-active .x-tab-inner{color:#15498b}.x-tab-default-active .x-tab-glyph{color:#15498b}.x-ie8m .x-tab-default-active .x-tab-glyph{color:#799ac4}.x-tab-default-top-active,.x-tab-default-left-active,.x-tab-default-right-active{border-bottom:1px solid #deecfd;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(25%,#f5f9fe),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#fff,#f5f9fe 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#fff,#f5f9fe 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#fff,#f5f9fe 25%,#deecfd 45%);background-image:linear-gradient(top,#fff,#f5f9fe 25%,#deecfd 45%)}.x-nlg .x-tab-default-top-active,.x-nlg .x-tab-default-left-active,.x-nlg .x-tab-default-right-active{background-image:url(images/tab/tab-default-top-active-bg.gif)}.x-tab-default-bottom-active{border-top:1px solid #deecfd;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#fff),color-stop(25%,#f5f9fe),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(bottom,#fff,#f5f9fe 25%,#deecfd 45%);background-image:-moz-linear-gradient(bottom,#fff,#f5f9fe 25%,#deecfd 45%);background-image:-o-linear-gradient(bottom,#fff,#f5f9fe 25%,#deecfd 45%);background-image:linear-gradient(bottom,#fff,#f5f9fe 25%,#deecfd 45%)}.x-nlg .x-tab-default-bottom-active{background-image:url(images/tab/tab-default-bottom-active-bg.gif)}.x-tab-default-disabled{border-color:#bbd2ef;cursor:default}.x-tab-default-disabled .x-tab-inner{color:#c3b3b3}.x-tab-default-disabled .x-tab-icon-el{filter:alpha(opacity=50);opacity:.5}.x-tab-default-disabled .x-tab-glyph{color:#c3b3b3;opacity:.3;filter:none}.x-ie8m .x-tab-default-disabled .x-tab-glyph{color:#d8dae4}.x-tab-default-top-disabled,.x-tab-default-left-disabled,.x-tab-default-right-disabled{border-color:#bbd2ef #bbd2ef #99bce8}.x-tab-default-bottom-disabled{border-color:#99bce8 #bbd2ef #bbd2ef #bbd2ef}.x-tab-default-top-disabled,.x-tab-default-left-disabled,.x-tab-default-right-disabled{background-image:none;background-color:#e1ecfa;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e1ecfa),color-stop(100%,#ecf4fe));background-image:-webkit-linear-gradient(top,#e1ecfa,#ecf4fe);background-image:-moz-linear-gradient(top,#e1ecfa,#ecf4fe);background-image:-o-linear-gradient(top,#e1ecfa,#ecf4fe);background-image:linear-gradient(top,#e1ecfa,#ecf4fe)}.x-nlg .x-tab-default-top-disabled,.x-nlg .x-tab-default-left-disabled,.x-nlg .x-tab-default-right-disabled{background-image:url(images/tab/tab-default-top-disabled-bg.gif)}.x-tab-default-bottom-disabled{background-image:none;background-color:#e1ecfa;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#e1ecfa),color-stop(100%,#ecf4fe));background-image:-webkit-linear-gradient(bottom,#e1ecfa,#ecf4fe);background-image:-moz-linear-gradient(bottom,#e1ecfa,#ecf4fe);background-image:-o-linear-gradient(bottom,#e1ecfa,#ecf4fe);background-image:linear-gradient(bottom,#e1ecfa,#ecf4fe)}.x-nlg .x-tab-default-bottom-disabled{background-image:url(images/tab/tab-default-bottom-disabled-bg.gif)}.x-nbr .x-tab-default{background-image:none}.x-tab-default-top-over .x-frame-tl,.x-tab-default-top-over .x-frame-bl,.x-tab-default-top-over .x-frame-tr,.x-tab-default-top-over .x-frame-br,.x-tab-default-top-over .x-frame-tc,.x-tab-default-top-over .x-frame-bc,.x-tab-default-left-over .x-frame-tl,.x-tab-default-left-over .x-frame-bl,.x-tab-default-left-over .x-frame-tr,.x-tab-default-left-over .x-frame-br,.x-tab-default-left-over .x-frame-tc,.x-tab-default-left-over .x-frame-bc,.x-tab-default-right-over .x-frame-tl,.x-tab-default-right-over .x-frame-bl,.x-tab-default-right-over .x-frame-tr,.x-tab-default-right-over .x-frame-br,.x-tab-default-right-over .x-frame-tc,.x-tab-default-right-over .x-frame-bc{background-image:url(images/tab/tab-default-top-over-corners.gif)}.x-tab-default-top-over .x-frame-ml,.x-tab-default-top-over .x-frame-mr,.x-tab-default-left-over .x-frame-ml,.x-tab-default-left-over .x-frame-mr,.x-tab-default-right-over .x-frame-ml,.x-tab-default-right-over .x-frame-mr{background-image:url(images/tab/tab-default-top-over-sides.gif)}.x-tab-default-top-over .x-frame-mc,.x-tab-default-left-over .x-frame-mc,.x-tab-default-right-over .x-frame-mc{background-color:#e8f2ff;background-repeat:repeat-x;background-image:url(images/tab/tab-default-top-over-fbg.gif)}.x-tab-default-bottom-over .x-frame-tl,.x-tab-default-bottom-over .x-frame-bl,.x-tab-default-bottom-over .x-frame-tr,.x-tab-default-bottom-over .x-frame-br,.x-tab-default-bottom-over .x-frame-tc,.x-tab-default-bottom-over .x-frame-bc{background-image:url(images/tab/tab-default-bottom-over-corners.gif)}.x-tab-default-bottom-over .x-frame-ml,.x-tab-default-bottom-over .x-frame-mr{background-image:url(images/tab/tab-default-bottom-over-sides.gif)}.x-tab-default-bottom-over .x-frame-mc{background-color:#e8f2ff;background-repeat:repeat-x;background-image:url(images/tab/tab-default-bottom-over-fbg.gif)}.x-tab-default-top-active .x-frame-tl,.x-tab-default-top-active .x-frame-bl,.x-tab-default-top-active .x-frame-tr,.x-tab-default-top-active .x-frame-br,.x-tab-default-top-active .x-frame-tc,.x-tab-default-top-active .x-frame-bc,.x-tab-default-left-active .x-frame-tl,.x-tab-default-left-active .x-frame-bl,.x-tab-default-left-active .x-frame-tr,.x-tab-default-left-active .x-frame-br,.x-tab-default-left-active .x-frame-tc,.x-tab-default-left-active .x-frame-bc,.x-tab-default-right-active .x-frame-tl,.x-tab-default-right-active .x-frame-bl,.x-tab-default-right-active .x-frame-tr,.x-tab-default-right-active .x-frame-br,.x-tab-default-right-active .x-frame-tc,.x-tab-default-right-active .x-frame-bc{background-image:url(images/tab/tab-default-top-active-corners.gif)}.x-tab-default-top-active .x-frame-ml,.x-tab-default-top-active .x-frame-mr,.x-tab-default-left-active .x-frame-ml,.x-tab-default-left-active .x-frame-mr,.x-tab-default-right-active .x-frame-ml,.x-tab-default-right-active .x-frame-mr{background-image:url(images/tab/tab-default-top-active-sides.gif)}.x-tab-default-top-active .x-frame-mc,.x-tab-default-left-active .x-frame-mc,.x-tab-default-right-active .x-frame-mc{background-color:#deecfd;background-repeat:repeat-x;background-image:url(images/tab/tab-default-top-active-fbg.gif)}.x-tab-default-bottom-active .x-frame-tl,.x-tab-default-bottom-active .x-frame-bl,.x-tab-default-bottom-active .x-frame-tr,.x-tab-default-bottom-active .x-frame-br,.x-tab-default-bottom-active .x-frame-tc,.x-tab-default-bottom-active .x-frame-bc{background-image:url(images/tab/tab-default-bottom-active-corners.gif)}.x-tab-default-bottom-active .x-frame-ml,.x-tab-default-bottom-active .x-frame-mr{background-image:url(images/tab/tab-default-bottom-active-sides.gif)}.x-tab-default-bottom-active .x-frame-mc{background-color:#deecfd;background-repeat:repeat-x;background-image:url(images/tab/tab-default-bottom-active-fbg.gif)}.x-tab-default-top-disabled .x-frame-tl,.x-tab-default-top-disabled .x-frame-bl,.x-tab-default-top-disabled .x-frame-tr,.x-tab-default-top-disabled .x-frame-br,.x-tab-default-top-disabled .x-frame-tc,.x-tab-default-top-disabled .x-frame-bc,.x-tab-default-left-disabled .x-frame-tl,.x-tab-default-left-disabled .x-frame-bl,.x-tab-default-left-disabled .x-frame-tr,.x-tab-default-left-disabled .x-frame-br,.x-tab-default-left-disabled .x-frame-tc,.x-tab-default-left-disabled .x-frame-bc,.x-tab-default-right-disabled .x-frame-tl,.x-tab-default-right-disabled .x-frame-bl,.x-tab-default-right-disabled .x-frame-tr,.x-tab-default-right-disabled .x-frame-br,.x-tab-default-right-disabled .x-frame-tc,.x-tab-default-right-disabled .x-frame-bc{background-image:url(images/tab/tab-default-top-disabled-corners.gif)}.x-tab-default-top-disabled .x-frame-ml,.x-tab-default-top-disabled .x-frame-mr,.x-tab-default-left-disabled .x-frame-ml,.x-tab-default-left-disabled .x-frame-mr,.x-tab-default-right-disabled .x-frame-ml,.x-tab-default-right-disabled .x-frame-mr{background-image:url(images/tab/tab-default-top-disabled-sides.gif)}.x-tab-default-top-disabled .x-frame-mc,.x-tab-default-left-disabled .x-frame-mc,.x-tab-default-right-disabled .x-frame-mc{background-color:#e1ecfa;background-repeat:repeat-x;background-image:url(images/tab/tab-default-top-disabled-fbg.gif)}.x-tab-default-bottom-disabled .x-frame-tl,.x-tab-default-bottom-disabled .x-frame-bl,.x-tab-default-bottom-disabled .x-frame-tr,.x-tab-default-bottom-disabled .x-frame-br,.x-tab-default-bottom-disabled .x-frame-tc,.x-tab-default-bottom-disabled .x-frame-bc{background-image:url(images/tab/tab-default-bottom-disabled-corners.gif)}.x-tab-default-bottom-disabled .x-frame-ml,.x-tab-default-bottom-disabled .x-frame-mr{background-image:url(images/tab/tab-default-bottom-disabled-sides.gif)}.x-tab-default-bottom-disabled .x-frame-mc{background-color:#e1ecfa;background-repeat:repeat-x;background-image:url(images/tab/tab-default-bottom-disabled-fbg.gif)}.x-nbr .x-tab-default-top,.x-nbr .x-tab-default-left,.x-nbr .x-tab-default-right{border-bottom-width:1px!important}.x-nbr .x-tab-default-bottom{border-top-width:1px!important}.x-tab-default .x-tab-close-btn{width:11px;height:11px;background-image:url(images/tab/tab-default-close.gif);filter:alpha(opacity=60);opacity:.6}.x-tab-default .x-tab-close-btn-over{filter:alpha(opacity=100);opacity:1}.x-tab-default .x-tab-close-btn{top:2px;right:2px}.x-rtl.x-tab-default .x-tab-close-btn{right:auto;left:2px}.x-tab-default-disabled .x-tab-close-btn{filter:alpha(opacity=30);opacity:.3}.x-tab-default-closable .x-tab-wrap{padding-right:14px}.x-rtl.x-tab-default-closable .x-tab-wrap{padding-right:0;padding-left:14px}.x-tab-default-top-over:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-top-over-bg.gif), corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif), frame-bg:url(images/tab/tab-default-top-over-fbg.gif)"}.x-tab-default-bottom-over:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-bottom-over-bg.gif), corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif), frame-bg:url(images/tab/tab-default-bottom-over-fbg.gif)"}.x-tab-default-top-active:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-top-active-bg.gif), corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif), frame-bg:url(images/tab/tab-default-top-active-fbg.gif)"}.x-tab-default-bottom-active:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-bottom-active-bg.gif), corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif), frame-bg:url(images/tab/tab-default-bottom-active-fbg.gif)"}.x-tab-default-top-disabled:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-top-disabled-bg.gif), corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif), frame-bg:url(images/tab/tab-default-top-disabled-fbg.gif)"}.x-tab-default-bottom-disabled:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-bottom-disabled-bg.gif), corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif), frame-bg:url(images/tab/tab-default-bottom-disabled-fbg.gif)"}.x-tab-bar-default{border-style:solid;border-color:#99bce8}.x-tab-bar-default-top{padding:1px 0 0;border-width:1px 1px 0}.x-tab-bar-default-bottom{padding:0 0 1px 0;border-width:0 1px 1px 1px}.x-tab-bar-default-left{padding:0 0 0 1px;border-width:1px 0 1px 1px}.x-rtl.x-tab-bar-default-left{padding:0 1px 0 0;border-width:1px 1px 1px 0}.x-tab-bar-default-right{padding:0 1px 0 0;border-width:1px 1px 1px 0}.x-rtl.x-tab-bar-default-right{padding:0 0 0 1px;border-width:1px 0 1px 1px}.x-tab-bar-default-horizontal{height:25px}.x-content-box .x-tab-bar-default-horizontal{height:23px}.x-tab-bar-default-vertical{width:25px}.x-content-box .x-tab-bar-default-vertical{width:23px}.x-tab-bar-body-default-top{padding-bottom:2px}.x-tab-bar-body-default-bottom{padding-top:2px}.x-tab-bar-body-default-left{padding-right:2px}.x-rtl.x-tab-bar-body-default-left{padding-right:0;padding-left:2px}.x-tab-bar-body-default-right{padding-left:2px}.x-rtl.x-tab-bar-body-default-right{padding-left:0;padding-right:2px}.x-tab-bar-strip-default{border-style:solid;border-color:#99bce8;background-color:#deecfd}.x-content-box .x-tab-bar-strip-default-horizontal{height:2px}.x-content-box .x-tab-bar-strip-default-vertical{width:2px}.x-tab-bar-strip-default-top{border-width:1px 0 0 0;height:3px}.x-tab-bar-plain .x-tab-bar-strip-default-top{border-width:1px 1px 0}.x-tab-bar-strip-default-bottom{border-width:0 0 1px 0;height:3px}.x-tab-bar-plain .x-tab-bar-strip-default-bottom{border-width:0 1px 1px 1px}.x-tab-bar-strip-default-left{border-width:0 0 0 1px;width:3px}.x-tab-bar-plain .x-tab-bar-strip-default-left{border-width:1px 0 1px 1px}.x-rtl.x-tab-bar-strip-default-left{border-width:0 1px 0 0}.x-tab-bar-plain .x-rtl.x-tab-bar-strip-default-left{border-width:1px 1px 1px 0}.x-tab-bar-strip-default-right{border-width:0 1px 0 0;width:3px}.x-tab-bar-plain .x-tab-bar-strip-default-right{border-width:1px 1px 1px 0}.x-rtl.x-tab-bar-strip-default-right{border-width:0 0 0 1px}.x-tab-bar-plain .x-rtl.x-tab-bar-strip-default-right{border-width:1px 0 1px 1px}.x-tab-bar-default{background-color:#cbdbef}.x-tab-bar-default-top{background-image:none;background-color:#cbdbef;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dde8f5),color-stop(100%,#cbdbef));background-image:-webkit-linear-gradient(top,#dde8f5,#cbdbef);background-image:-moz-linear-gradient(top,#dde8f5,#cbdbef);background-image:-o-linear-gradient(top,#dde8f5,#cbdbef);background-image:linear-gradient(top,#dde8f5,#cbdbef)}.x-nlg .x-tab-bar-default-top{background:url(images/tab-bar/tab-bar-default-top-bg.gif)}.x-tab-bar-default-bottom{background-image:none;background-color:#cbdbef;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#dde8f5),color-stop(100%,#cbdbef));background-image:-webkit-linear-gradient(bottom,#dde8f5,#cbdbef);background-image:-moz-linear-gradient(bottom,#dde8f5,#cbdbef);background-image:-o-linear-gradient(bottom,#dde8f5,#cbdbef);background-image:linear-gradient(bottom,#dde8f5,#cbdbef)}.x-nlg .x-tab-bar-default-bottom{background:url(images/tab-bar/tab-bar-default-bottom-bg.gif) bottom 0}.x-tab-bar-default-left{background-image:none;background-color:#cbdbef;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dde8f5),color-stop(100%,#cbdbef));background-image:-webkit-linear-gradient(left,#dde8f5,#cbdbef);background-image:-moz-linear-gradient(left,#dde8f5,#cbdbef);background-image:-o-linear-gradient(left,#dde8f5,#cbdbef);background-image:linear-gradient(left,#dde8f5,#cbdbef)}.x-nlg .x-tab-bar-default-left{background:url(images/tab-bar/tab-bar-default-left-bg.gif)}.x-tab-bar-default-right{background-image:none;background-color:#cbdbef;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dde8f5),color-stop(100%,#cbdbef));background-image:-webkit-linear-gradient(right,#dde8f5,#cbdbef);background-image:-moz-linear-gradient(right,#dde8f5,#cbdbef);background-image:-o-linear-gradient(right,#dde8f5,#cbdbef);background-image:linear-gradient(right,#dde8f5,#cbdbef)}.x-nlg .x-tab-bar-default-right{background:url(images/tab-bar/tab-bar-default-right-bg.gif) 0 right}.x-tab-bar-default .x-box-scroller{cursor:pointer}.x-tab-bar-default .x-tabbar-scroll-left,.x-tab-bar-default .x-tabbar-scroll-right{height:20px;width:18px}.x-tab-bar-default .x-tabbar-scroll-top,.x-tab-bar-default .x-tabbar-scroll-bottom{width:20px;height:18px}.x-tab-bar-default-bottom .x-box-scroller{margin-top:1px}.x-tab-bar-default-right .x-box-scroller{margin-left:1px}.x-rtl.x-tab-bar-default-right .x-box-scroller{margin-left:0;margin-right:1px}.x-tab-bar-default-top .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-left-top.gif)}.x-tab-bar-default-top .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-right-top.gif)}.x-rtl.x-tab-bar-default-top .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-right-top.gif)}.x-rtl.x-tab-bar-default-top .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-left-top.gif)}.x-tab-bar-default-bottom .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-left-bottom.gif)}.x-tab-bar-default-bottom .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-right-bottom.gif)}.x-rtl.x-tab-bar-default-bottom .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-right-bottom.gif)}.x-rtl.x-tab-bar-default-bottom .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-left-bottom.gif)}.x-tab-bar-default-left .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-left.gif)}.x-tab-bar-default-left .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-left.gif)}.x-rtl.x-tab-bar-default-left .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-right.gif)}.x-rtl.x-tab-bar-default-left .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-right.gif)}.x-tab-bar-default-right .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-right.gif)}.x-tab-bar-default-right .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-right.gif)}.x-rtl.x-tab-bar-default-right .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-left.gif)}.x-rtl.x-tab-bar-default-right .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-left.gif)}.x-tab-bar-default .x-tabbar-scroll-left-hover,.x-tab-bar-default .x-tabbar-scroll-right-hover{background-position:-18px 0}.x-tab-bar-default .x-tabbar-scroll-top-hover,.x-tab-bar-default .x-tabbar-scroll-bottom-hover{background-position:0 -18px}.x-tab-bar-default .x-box-scroller-disabled{filter:alpha(opacity=50);opacity:.5;cursor:default}.x-tab-bar-default-top:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-top-bg.gif), stretch:bottom"}.x-tab-bar-default-bottom:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-bottom-bg.gif), stretch:top"}.x-tab-bar-default-left:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-left-bg.gif), stretch:right"}.x-tab-bar-default-right:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-right-bg.gif), stretch:left"}.x-tab-bar-plain{border-width:0;padding:0;height:23px}.x-column-header-checkbox{border-color:#c5c5c5}.x-grid-row-checker,.x-column-header-checkbox .x-column-header-text{height:13px;width:13px;background-image:url(images/form/checkbox.gif);line-height:13px}.x-column-header-checkbox .x-column-header-inner{padding:5px 5px 4px 5px}.x-grid-cell-row-checker .x-grid-cell-inner{padding:4px 5px 3px 5px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-row-checker .x-grid-cell-inner{padding-top:3px;padding-bottom:2px}.x-grid-hd-checker-on .x-column-header-text,.x-grid-row-selected .x-grid-row-checker,.x-grid-row-checked .x-grid-row-checker{background-position:0 -13px}.x-tree-expander{cursor:pointer}.x-tree-arrows .x-tree-expander{background-image:url(images/tree/arrows.gif)}.x-tree-arrows .x-tree-expander-over .x-tree-expander{background-position:-32px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander{background-position:-16px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander{background-position:-48px center}.x-tree-arrows .x-rtl.x-tree-expander{background:url(images/tree/arrows-rtl.gif) no-repeat -48px center}.x-tree-arrows .x-tree-expander-over .x-rtl.x-tree-expander{background-position:-16px center}.x-tree-arrows .x-grid-tree-node-expanded .x-rtl.x-tree-expander{background-position:-32px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-rtl.x-tree-expander{background-position:0 center}.x-tree-lines .x-tree-elbow{background-image:url(images/tree/elbow.gif)}.x-tree-lines .x-tree-elbow-end{background-image:url(images/tree/elbow-end.gif)}.x-tree-lines .x-tree-elbow-plus{background-image:url(images/tree/elbow-plus.gif)}.x-tree-lines .x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-plus.gif)}.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus{background-image:url(images/tree/elbow-minus.gif)}.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-minus.gif)}.x-tree-lines .x-tree-elbow-line{background-image:url(images/tree/elbow-line.gif)}.x-tree-lines .x-rtl.x-tree-elbow{background-image:url(images/tree/elbow-rtl.gif)}.x-tree-lines .x-rtl.x-tree-elbow-end{background-image:url(images/tree/elbow-end-rtl.gif)}.x-tree-lines .x-rtl.x-tree-elbow-plus{background-image:url(images/tree/elbow-plus-rtl.gif)}.x-tree-lines .x-rtl.x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-plus-rtl.gif)}.x-tree-lines .x-grid-tree-node-expanded .x-rtl.x-tree-elbow-plus{background-image:url(images/tree/elbow-minus-rtl.gif)}.x-tree-lines .x-grid-tree-node-expanded .x-rtl.x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-minus-rtl.gif)}.x-tree-lines .x-rtl.x-tree-elbow-line{background-image:url(images/tree/elbow-line-rtl.gif)}.x-tree-no-row-lines .x-tree-expander{background-image:url(images/tree/elbow-plus-nl.gif)}.x-tree-no-row-lines .x-grid-tree-node-expanded .x-tree-expander{background-image:url(images/tree/elbow-minus-nl.gif)}.x-tree-no-row-lines .x-rtl.x-tree-expander{background-image:url(images/tree/elbow-plus-nl-rtl.gif)}.x-tree-no-row-lines .x-grid-tree-node-expanded .x-rtl.x-tree-expander{background-image:url(images/tree/elbow-minus-nl-rtl.gif)}.x-tree-icon{width:16px;height:20px}.x-tree-elbow-img{width:16px;height:20px;margin-right:0}.x-rtl.x-tree-elbow-img{margin-right:0;margin-left:0}.x-tree-icon,.x-tree-elbow-img,.x-tree-checkbox{margin-top:-3px;margin-bottom:-4px}.x-tree-icon-leaf{background-image:url(images/tree/leaf.gif)}.x-rtl.x-tree-icon-leaf{background-image:url(images/tree/leaf-rtl.gif)}.x-tree-icon-parent{background-image:url(images/tree/folder.gif)}.x-rtl.x-tree-icon-parent{background-image:url(images/tree/folder-rtl.gif)}.x-grid-tree-node-expanded .x-tree-icon-parent{background-image:url(images/tree/folder-open.gif)}.x-grid-tree-node-expanded .x-rtl.x-tree-icon-parent{background-image:url(images/tree/folder-open-rtl.gif)}.x-tree-checkbox{margin-right:3px;top:4px;width:13px;height:13px;background-image:url(images/form/checkbox.gif)}.x-rtl.x-tree-checkbox{margin-right:0;margin-left:3px}.x-tree-checkbox-checked{background-position:0 -13px}.x-grid-tree-loading .x-tree-icon{background-image:url(images/tree/loading.gif)}.x-grid-tree-loading .x-rtl.x-tree-icon{background-image:url(images/tree/loading.gif)}.x-grid-cell-inner-treecolumn{font-size:1px;line-height:0}.x-tree-node-text{font-size:11px;line-height:13px;padding-left:3px}.x-rtl.x-tree-node-text{padding-left:0;padding-right:3px}.x-grid-cell-inner-treecolumn{padding:3px 6px 4px 0}.x-tree-drop-ok-append .x-dd-drop-icon{background-image:url(images/tree/drop-append.gif)}.x-tree-drop-ok-above .x-dd-drop-icon{background-image:url(images/tree/drop-above.gif)}.x-tree-drop-ok-below .x-dd-drop-icon{background-image:url(images/tree/drop-below.gif)}.x-tree-drop-ok-between .x-dd-drop-icon{background-image:url(images/tree/drop-between.gif)}.x-tree-ddindicator{height:1px;border-width:1px 0 0;border-style:dotted;border-color:green}.x-box-tl{background:transparent no-repeat 0 0;zoom:1}.x-box-tc{height:8px;background:transparent repeat-x 0 0;overflow:hidden}.x-box-tr{background:transparent no-repeat right -8px}.x-box-ml{background:transparent repeat-y 0;padding-left:4px;overflow:hidden;zoom:1}.x-box-mc{background:repeat-x 0 -16px;padding:4px 10px}.x-box-mc h3{margin:0 0 4px 0;zoom:1}.x-box-mr{background:transparent repeat-y right;padding-right:4px;overflow:hidden}.x-box-bl{background:transparent no-repeat 0 -16px;zoom:1}.x-box-bc{background:transparent repeat-x 0 -8px;height:8px;overflow:hidden}.x-box-br{background:transparent no-repeat right -24px}.x-box-tl,.x-box-bl{padding-left:8px;overflow:hidden}.x-box-tr,.x-box-br{padding-right:8px;overflow:hidden}.x-box-tl{background-image:url(images/box/corners.gif)}.x-box-tc{background-image:url(images/box/tb.gif)}.x-box-tr{background-image:url(images/box/corners.gif)}.x-box-ml{background-image:url(images/box/l.gif)}.x-box-mc{background-color:#eee;background-image:url(images/box/tb.gif);font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:15px}.x-box-mc h3{font-size:18px;font-weight:bold}.x-box-mr{background-image:url(images/box/r.gif)}.x-box-bl{background-image:url(images/box/corners.gif)}.x-box-bc{background-image:url(images/box/tb.gif)}.x-box-br{background-image:url(images/box/corners.gif)}.x-box-blue .x-box-bl,.x-box-blue .x-box-br,.x-box-blue .x-box-tl,.x-box-blue .x-box-tr{background-image:url(images/box/corners-blue.gif)}.x-box-blue .x-box-bc,.x-box-blue .x-box-mc,.x-box-blue .x-box-tc{background-image:url(images/box/tb-blue.gif)}.x-box-blue .x-box-mc{background-color:#c3daf9}.x-box-blue .x-box-mc h3{color:#17385b}.x-box-blue .x-box-ml{background-image:url(images/box/l-blue.gif)}.x-box-blue .x-box-mr{background-image:url(images/box/r-blue.gif)}.x-rtl.x-toolbar-more-icon{background-image:url(images/toolbar/more-left.gif)!important}.x-message-box .x-msg-box-wait{background-image:url(images/shared/blue-loading.gif)}.x-form-trigger{height:22px}.x-content-box .x-form-trigger{height:21px}.x-field-toolbar .x-form-trigger{height:20px}.x-content-box .x-field-toolbar .x-form-trigger{height:19px}.x-content-box div.x-form-spinner-up,.x-content-box div.x-form-spinner-down{height:10px}.x-content-box .x-toolbar-item div.x-form-spinner-up,.x-content-box .x-toolbar-item div.x-form-spinner-down{height:9px}.x-html-editor-wrap .x-toolbar{border-left-color:#b5b8c8;border-top-color:#b5b8c8;border-right-color:#b5b8c8}.x-html-editor-input{border:1px solid #b5b8c8;border-top-width:0}.x-column-header-trigger{background-color:#c5c5c5;background-image:url(images/grid/grid3-hd-btn.gif)}.x-rtl.x-column-header-trigger{background-image:url(images/grid/grid3-hd-btn-left.gif)}.x-content-box .x-grid-editor .x-form-trigger{height:19px}.x-grid-editor .x-form-spinner-up,.x-grid-editor .x-form-spinner-down{background-image:url(images/form/spinner-small.gif)}.x-content-box .x-grid-editor .x-form-spinner-up,.x-content-box .x-grid-editor .x-form-spinner-down{height:9px}.x-grid-editor .x-rtl.x-form-trigger-wrap .x-form-spinner-up,.x-grid-editor .x-rtl.x-form-trigger-wrap .x-form-spinner-down{background-image:url(images/form/spinner-small-rtl.gif)}.x-accordion-hd{border-width:1px 0!important;-webkit-box-shadow:inset 0 0 0 0 #d9e7f8;-moz-box-shadow:inset 0 0 0 0 #d9e7f8;box-shadow:inset 0 0 0 0 #d9e7f8}.x-accordion-hd-sibling-expanded{-webkit-box-shadow:inset 0 1px 0 0 #f3f7fb;-moz-box-shadow:inset 0 1px 0 0 #f3f7fb;box-shadow:inset 0 1px 0 0 #f3f7fb}.x-resizable-over .x-resizable-handle-east,.x-resizable-over .x-resizable-handle-west,.x-resizable-pinned .x-resizable-handle-east,.x-resizable-pinned .x-resizable-handle-west{background-position:left}.x-resizable-over .x-resizable-handle-south,.x-resizable-over .x-resizable-handle-north,.x-resizable-pinned .x-resizable-handle-south,.x-resizable-pinned .x-resizable-handle-north{background-position:top}.x-resizable-over .x-resizable-handle-southeast,.x-resizable-pinned .x-resizable-handle-southeast{background-position:top left}.x-resizable-over .x-resizable-handle-northwest,.x-resizable-pinned .x-resizable-handle-northwest{background-position:bottom right}.x-resizable-over .x-resizable-handle-northeast,.x-resizable-pinned .x-resizable-handle-northeast{background-position:bottom left}.x-resizable-over .x-resizable-handle-southwest,.x-resizable-pinned .x-resizable-handle-southwest{background-position:top right}.x-ie6 .x-slider-horz,.x-ie6 .x-slider-horz .x-slider-end,.x-ie6 .x-slider-horz .x-slider-inner{background-image:url(images/slider/slider-bg.gif)}.x-ie6 .x-slider-horz .x-slider-thumb{background-image:url(images/slider/slider-thumb.gif)}.x-ie6 .x-slider-vert,.x-ie6 .x-slider-vert .x-slider-end,.x-ie6 .x-slider-vert .x-slider-inner{background-image:url(images/slider/slider-v-bg.gif)}.x-ie6 .x-slider-vert .x-slider-thumb{background-image:url(images/slider/slider-v-thumb.gif)}.x-tab-icon-el{top:-1px}.x-tab-noicon .x-tab-icon{display:none} \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/ext-theme-classic-all.css b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/ext-theme-classic-all.css new file mode 100644 index 0000000..d3a9d0b --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/ext-theme-classic-all.css @@ -0,0 +1 @@ +.x-body{margin:0}img{border:0}.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}.x-rtl{direction:rtl}.x-ltr{direction:ltr}.x-clear{overflow:hidden;clear:both;font-size:0;line-height:0;display:table}.x-strict .x-ie7 .x-clear{height:0;width:0}.x-layer{position:absolute!important;overflow:hidden;zoom:1}.x-fixed-layer{position:fixed!important;overflow:hidden;zoom:1}.x-shim{position:absolute;left:0;top:0;overflow:hidden;filter:alpha(opacity=0);opacity:0}.x-hide-display{display:none!important}.x-hide-visibility{visibility:hidden!important}.x-ie6 .x-item-disabled{filter:none}.x-hidden,.x-hide-offsets{display:block!important;visibility:hidden!important;position:absolute!important;top:-10000px!important}.x-hide-nosize{height:0!important;width:0!important}.x-hide-clip{position:absolute!important;clip:rect(0,0,0,0);clip:rect(0 0 0 0)}.x-masked-relative{position:relative}.x-ie-shadow{background-color:#777;display:none;position:absolute;overflow:hidden;zoom:1}.x-unselectable{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x-selectable{cursor:auto;-moz-user-select:text;-webkit-user-select:text;-ms-user-select:text;user-select:text;-o-user-select:text}.x-list-plain{list-style-type:none;margin:0;padding:0}.x-table-plain{border-collapse:collapse;border-spacing:0;font-size:1em}.x-frame-tl,.x-frame-tr,.x-frame-tc,.x-frame-bl,.x-frame-br,.x-frame-bc{overflow:hidden;background-repeat:no-repeat}.x-frame-tc,.x-frame-bc{background-repeat:repeat-x}.x-frame-mc{background-repeat:repeat-x;overflow:hidden}.x-proxy-el{position:absolute;background:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x-css-shadow{position:absolute;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px}.x-item-disabled,.x-item-disabled *{cursor:default}.x-box-item{position:absolute!important;left:0;top:0}div.x-editor{overflow:visible}.x-mask{z-index:100;position:absolute;width:100%;height:100%;zoom:1}.x-mask-shim{z-index:100;position:absolute;top:0;left:0;width:100%;height:100%}.x-mask-msg{z-index:20001;position:absolute}.x-progress{position:relative;border-style:solid;overflow:hidden}.x-progress-bar{overflow:hidden;position:absolute;width:0;height:100%}.x-progress-text{overflow:hidden;position:absolute}.x-btn{display:inline-block;position:relative;zoom:1;*display:inline;outline:0;cursor:pointer;white-space:nowrap;vertical-align:middle;text-decoration:none}.x-btn-wrap{position:relative;display:block}.x-btn-button{position:relative;display:block;text-decoration:none;overflow:hidden;zoom:1}.x-btn-inner{display:block;white-space:nowrap;overflow:hidden;zoom:1}.x-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x-btn-inner-center{text-align:center}.x-btn-inner-left{text-align:left}.x-btn-inner-right{text-align:right}.x-box-layout-ct{overflow:hidden;zoom:1}.x-box-target{position:absolute;width:20000px;top:0;left:0;height:1px}.x-box-inner{overflow:hidden;zoom:1;position:relative;left:0;top:0}.x-horizontal-box-overflow-body{float:left}.x-box-scroller{position:relative;background-repeat:no-repeat}.x-box-scroller-left,.x-box-scroller-right{float:left;height:100%;z-index:5}.x-box-scroller-top .x-box-scroller,.x-box-scroller-bottom .x-box-scroller{line-height:0;font-size:0;background-position:center 0}.x-box-menu-after{float:right}.x-toolbar-text{white-space:nowrap}.x-toolbar-separator{display:block;font-size:1px;overflow:hidden;cursor:default;border:0;width:0;height:0;line-height:0}.x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal{width:2px}.x-toolbar-scroller{padding-left:0}.x-toolbar-plain{border:0}.x-docked{position:absolute!important;z-index:1}.x-docked-vertical{position:static}.x-docked-top{border-bottom-width:0!important}.x-docked-bottom{border-top-width:0!important}.x-docked-left{border-right-width:0!important}.x-docked-right{border-left-width:0!important}.x-docked-noborder-top{border-top-width:0!important}.x-docked-noborder-right{border-right-width:0!important}.x-docked-noborder-bottom{border-bottom-width:0!important}.x-docked-noborder-left{border-left-width:0!important}.x-noborder-l{border-left-width:0!important}.x-noborder-b{border-bottom-width:0!important}.x-noborder-bl{border-bottom-width:0!important;border-left-width:0!important}.x-noborder-r{border-right-width:0!important}.x-noborder-rl{border-right-width:0!important;border-left-width:0!important}.x-noborder-rb{border-right-width:0!important;border-bottom-width:0!important}.x-noborder-rbl{border-right-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x-noborder-t{border-top-width:0!important}.x-noborder-tl{border-top-width:0!important;border-left-width:0!important}.x-noborder-tb{border-top-width:0!important;border-bottom-width:0!important}.x-noborder-tbl{border-top-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x-noborder-tr{border-top-width:0!important;border-right-width:0!important}.x-noborder-trl{border-top-width:0!important;border-right-width:0!important;border-left-width:0!important}.x-noborder-trb{border-top-width:0!important;border-right-width:0!important;border-bottom-width:0!important}.x-noborder-trbl{border-width:0!important}.x-header-icon{background-repeat:no-repeat;background-position:0 0;vertical-align:middle;text-align:center}.x-header-text-container{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.x-dd-drag-proxy,.x-dd-drag-current{z-index:1000000!important;pointer-events:none}.x-dd-drag-repair .x-dd-drag-ghost{filter:alpha(opacity=60);opacity:.6}.x-dd-drag-repair .x-dd-drop-icon{display:none}.x-dd-drag-ghost{filter:alpha(opacity=85);opacity:.85;padding:5px;padding-left:20px;white-space:nowrap;color:#000;font:normal 11px tahoma,arial,verdana,sans-serif;border:1px solid;border-color:#ddd #bbb #bbb #ddd;background-color:#fff}.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}.x-dd-drop-ok .x-dd-drop-icon{background-image:url(images/dd/drop-yes.gif)}.x-dd-drop-ok-add .x-dd-drop-icon{background-image:url(images/dd/drop-add.gif)}.x-dd-drop-nodrop div.x-dd-drop-icon{background-image:url(images/dd/drop-no.gif)}.x-panel,.x-plain{overflow:hidden;position:relative}.x-panel{outline:0}.x-ie .x-panel-header,.x-ie .x-panel-header-tl,.x-ie .x-panel-header-tc,.x-ie .x-panel-header-tr,.x-ie .x-panel-header-ml,.x-ie .x-panel-header-mc,.x-ie .x-panel-header-mr,.x-ie .x-panel-header-bl,.x-ie .x-panel-header-bc,.x-ie .x-panel-header-br{zoom:1}.x-ie8 td.x-frame-mc{vertical-align:top}.x-panel-body{overflow:hidden;position:relative}.x-nlg .x-panel-header-vertical .x-frame-mc{background-repeat:repeat-y}.x-panel-header-plain,.x-panel-body-plain{border:0;padding:0}.x-tip{position:absolute;overflow:visible}.x-tip-body{overflow:hidden;position:relative}.x-tip-anchor{position:absolute;overflow:hidden;border-style:solid}.x-table-layout{font-size:1em}.x-btn-group{position:relative;overflow:hidden}.x-btn-group-body{position:relative;zoom:1}.x-btn-group-body .x-table-layout-cell{vertical-align:top}.x-viewport,.x-viewport body{margin:0;padding:0;border:0 none;overflow:hidden;height:100%;position:static}.x-window{outline:0;overflow:hidden}.x-window .x-window-wrap{position:relative}.x-window-body{position:relative;overflow:hidden}.x-window-body-plain{background:transparent}.x-form-item-label{display:block}.x-form-item-label-right{text-align:right}.x-form-item-label-top{display:block;zoom:1}.x-form-invalid-icon{overflow:hidden}.x-form-invalid-icon ul{display:none}.x-form-textarea{overflow:auto;resize:none}.x-safari.x-mac .x-form-textarea{margin-bottom:-2px}.x-form-display-field-body{vertical-align:top}.x-form-cb-wrap{vertical-align:top}.x-form-cb{vertical-align:top;overflow:hidden;padding:0;border:0}.x-form-cb::-moz-focus-inner{padding:0;border:0}.x-form-cb-label{display:inline-block;zoom:1}.x-fieldset{display:block;position:relative}.x-fieldset-header{overflow:hidden}.x-fieldset-header .x-form-item,.x-fieldset-header .x-tool{float:left}.x-fieldset-header .x-form-cb-wrap{font-size:0;line-height:0}.x-fieldset-header .x-form-cb{margin:0}.x-fieldset-header-text{float:left}.x-webkit *:focus{outline:none!important}.x-form-item{vertical-align:top;table-layout:fixed}.x-form-item-body{position:relative}.x-form-form-item td{border-top:1px solid transparent}.x-form-trigger{cursor:pointer;overflow:hidden;background-repeat:no-repeat}.x-item-disabled .x-form-trigger{cursor:default}.x-trigger-noedit{cursor:default}.x-form-trigger-wrap{vertical-align:top;border-collapse:separate}.x-form-spinner-up,.x-form-spinner-down{font-size:0}.x-datepicker{position:relative}.x-datepicker-inner{table-layout:fixed;width:100%;border-collapse:separate}.x-datepicker-cell{padding:0}.x-datepicker-header{position:relative;zoom:1}.x-datepicker-arrow{position:absolute;outline:0;font-size:0}.x-datepicker-column-header{padding:0}.x-datepicker-date{display:block;zoom:1;text-decoration:none}.x-monthpicker{position:absolute;left:0;top:0}.x-monthpicker-body{height:100%}.x-monthpicker-months,.x-monthpicker-years{float:left;height:100%}.x-monthpicker-item{float:left}.x-monthpicker-item-inner{display:block;text-decoration:none}.x-monthpicker-yearnav-button-ct{float:left;text-align:center}.x-monthpicker-yearnav-button{display:inline-block;outline:0;font-size:0}.x-monthpicker-buttons{position:absolute;bottom:0;width:100%}.x-strict .x-ie6 .x-monthpicker-buttons{bottom:-1px}.x-form-file-btn{overflow:hidden}.x-form-file-input{border:0;position:absolute;cursor:pointer;top:-2px;right:-2px;filter:alpha(opacity=0);opacity:0;font-size:1000px}.x-form-item-hidden{margin:0}.x-color-picker-item{float:left;text-decoration:none}.x-color-picker-item-inner{display:block;font-size:1px}.x-html-editor-tb .x-toolbar{position:static!important}.x-htmleditor-iframe{display:block;overflow:auto}.x-fit-item{position:relative}.x-grid-row,.x-grid-data-row{outline:0}.x-grid-view{overflow:hidden;position:relative}.x-grid-table{table-layout:fixed;border-collapse:separate}.x-grid-td{overflow:hidden;border-width:0;vertical-align:top}.x-grid-cell-inner{overflow:hidden;white-space:nowrap;zoom:1}.x-grid-resize-marker{position:absolute;z-index:5;top:0}.col-move-top,.col-move-bottom{position:absolute;top:0;line-height:0;font-size:0;overflow:hidden;z-index:20000;background:no-repeat center top transparent}.x-grid-header-ct{cursor:default}.x-column-header{position:absolute;overflow:hidden;background-repeat:repeat-x}.x-column-header-inner{zoom:1;white-space:nowrap;position:relative;overflow:hidden}.x-column-header-text{white-space:nowrap;background-repeat:no-repeat;zoom:1;display:inline-block}.x-column-header-trigger{display:none;height:100%;background-repeat:no-repeat;position:absolute;right:0;top:0;z-index:2}.x-column-header-over .x-column-header-trigger,.x-column-header-open .x-column-header-trigger{display:block}.x-column-header-align-right{text-align:right}.x-column-header-align-left{text-align:left}.x-column-header-align-center{text-align:center}.x-grid-cell-inner-action-col{line-height:0;font-size:0}.x-grid-cell-inner-checkcolumn{line-height:0;font-size:0}.x-row-numberer .x-column-header-inner{text-overflow:clip}.x-grid-group,.x-grid-group-body,.x-grid-group-hd{zoom:1}.x-grid-group-hd{white-space:nowrap}.x-grid-row-body-hidden,.x-grid-group-collapsed{display:none}.x-grid-rowbody{zoom:1}.x-grid-row-body-hidden{display:none}td.x-grid-rowwrap .x-grid-table{border:0}td.x-grid-rowwrap .x-grid-cell{border-bottom:0;background-color:transparent}.x-grid-editor .x-form-cb-wrap{text-align:center}.x-grid-editor .x-form-display-field{margin:0;white-space:nowrap;overflow:hidden}.x-grid-editor div.x-form-action-col-field{line-height:0}.x-grid-row-editor{position:absolute;overflow:visible;z-index:1}.x-grid-row-editor-buttons{position:absolute;white-space:nowrap}.x-grid-row-expander{font-size:0;line-height:0}.x-abs-layout-ct{position:relative}.x-abs-layout-item{position:absolute!important}.x-splitter{font-size:1px}.x-splitter-horizontal{cursor:e-resize;cursor:row-resize}.x-splitter-vertical{cursor:e-resize;cursor:col-resize}.x-splitter-collapsed,.x-splitter-horizontal-noresize,.x-splitter-vertical-noresize{cursor:default}.x-splitter-active{z-index:4}.x-collapse-el{position:absolute;background-repeat:no-repeat}.x-border-layout-ct{overflow:hidden;zoom:1}.x-border-layout-ct{position:relative}.x-border-region-slide-in{z-index:5}.x-region-collapsed-placeholder{z-index:4}.x-column{float:left}.x-ie6 .x-column{display:inline}.x-quirks .x-ie .x-form-layout-table,.x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item{position:relative}.x-form-layout-table{border-collapse:separate;border-spacing:0 2px}.x-ie6 .x-form-layout-table{border-collapse:collapse;border-spacing:0}.x-menu{outline:0}.x-menu-item{white-space:nowrap;overflow:hidden}.x-menu-item-cmp .x-field-label-cell{vertical-align:middle}.x-menu-icon-separator{position:absolute;top:0;z-index:0;height:100%;overflow:hidden}.x-menu-plain .x-menu-icon-separator{display:none}.x-menu-item-link{text-decoration:none;outline:0;zoom:1}.x-menu-item-text{zoom:1}.x-menu-item-icon,.x-menu-item-icon-right,.x-menu-item-arrow{position:absolute;text-align:center}.x-resizable-overlay{position:absolute;left:0;top:0;width:100%;height:100%;display:none;z-index:200000;background-color:#fff;filter:alpha(opacity=0);opacity:0}.x-slider{outline:0;zoom:1;position:relative}.x-slider-inner{position:relative;left:0;top:0;overflow:visible;zoom:1}.x-slider-vert .x-slider-inner{background:repeat-y 0 0}.x-slider-end{zoom:1}.x-slider-thumb{position:absolute;background:no-repeat 0 0}.x-slider-horz .x-slider-thumb{left:0}.x-slider-vert .x-slider-thumb{bottom:0}a.x-tab{text-decoration:none}.x-tab-bar{position:relative}.x-column-header-checkbox .x-column-header-text{display:block;background-repeat:no-repeat;font-size:0}.x-grid-cell-row-checker{vertical-align:middle;background-repeat:no-repeat;font-size:0}.x-tab{display:block;white-space:nowrap;z-index:1}.x-tab-active{z-index:3}.x-tab-wrap{display:block;position:relative}.x-tab-button{zoom:1;display:block;outline:0}.x-tab-inner{display:block;text-align:center;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis;overflow:hidden;zoom:1}.x-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x-tab-bar{z-index:1}.x-tab-bar-body{z-index:2;position:relative}.x-tab-bar-strip{position:absolute;line-height:0;font-size:0;z-index:1}.x-tab-bar-horizontal .x-tab-bar-strip{width:100%;left:0}.x-tab-bar-vertical .x-tab-bar-strip{height:100%;top:0}.x-tab-bar-strip-top{bottom:0}.x-tab-bar-strip-bottom{top:0}.x-tab-bar-strip-left{right:0}.x-tab-bar-strip-right{left:0}.x-tab-bar-plain{background:transparent!important}.x-tab-icon-el{position:absolute;background-repeat:no-repeat;top:0;left:0;right:auto;bottom:0}.x-tab-close-btn{display:block;position:absolute;font-size:0;line-height:0;background:no-repeat}.x-tab-mc{overflow:visible}.x-autowidth-table .x-grid-table{table-layout:auto;width:auto!important}.x-tree-view{overflow:hidden}.x-tree-elbow-img,.x-tree-icon{background-repeat:no-repeat;background-position:0 center;vertical-align:top}.x-tree-checkbox{border:0;padding:0;vertical-align:top;position:relative;background-color:transparent}.x-tree-animator-wrap{overflow:hidden}.x-tree-node-text{zoom:1}.x-surface{display:-moz-inline-stack;display:inline-block;vertical-align:middle;*vertical-align:auto;zoom:1;*display:inline;overflow:hidden}.rvml{behavior:url(#default#VML)}.x-surface tspan{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x-vml-sprite{position:absolute;left:0;top:0;width:1px;height:1px}.x-vml-group{position:absolute;left:0;top:0;width:1000px;height:1000px}.x-vml-measure-span{position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;display:inline}.x-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}.x-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}svg,vml{overflow:hidden}.x-body{color:black;font-size:12px;font-family:tahoma,arial,verdana,sans-serif}.x-animating-size,.x-collapsed{overflow:hidden!important}.x-editor .x-form-item-body{padding-bottom:0}.x-focus-element{position:absolute;top:-10px;left:-10px;width:0;height:0}.x-focus-frame{position:absolute;left:0;top:0;z-index:100000000;width:0;height:0}.x-focus-frame-top,.x-focus-frame-bottom,.x-focus-frame-left,.x-focus-frame-right{position:absolute;top:0;left:0}.x-focus-frame-top,.x-focus-frame-bottom{border-top:solid 2px #15428b;height:2px}.x-focus-frame-left,.x-focus-frame-right{border-left:solid 2px #15428b;width:2px}.x-mask{filter:alpha(opacity=50);opacity:.5;background:#ccc}.x-mask-msg{padding:2px;border-style:solid;border-width:1px;border-color:#99bce8;background-image:none;background-color:#dfe9f6}.x-mask-msg-inner{padding:0 5px;border-style:solid;border-width:1px;border-color:#a3bad9;background-color:#eee;color:#222;font:normal 11px tahoma,arial,verdana,sans-serif}.x-mask-msg-text{padding:5px 5px 5px 20px;background-image:url(images/grid/loading.gif);background-repeat:no-repeat;background-position:0 center}.x-progress-default{background-color:#e0e8f3;border-width:1px;height:20px;border-color:#6594cf}.x-content-box .x-progress-default{height:18px}.x-progress-default .x-progress-bar-default{background-image:none;background-color:#73a3e0;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#b2ccee),color-stop(50%,#88b1e5),color-stop(51%,#73a3e0),color-stop(100%,#5e96db));background-image:-webkit-linear-gradient(top,#b2ccee,#88b1e5 50%,#73a3e0 51%,#5e96db);background-image:-moz-linear-gradient(top,#b2ccee,#88b1e5 50%,#73a3e0 51%,#5e96db);background-image:-o-linear-gradient(top,#b2ccee,#88b1e5 50%,#73a3e0 51%,#5e96db);background-image:linear-gradient(top,#b2ccee,#88b1e5 50%,#73a3e0 51%,#5e96db)}.x-nlg .x-progress-default .x-progress-bar-default{background:repeat-x;background-image:url(images/progress/progress-default-bg.gif)}.x-progress-default .x-progress-text{color:white;font-weight:bold;font-size:11px;text-align:center;line-height:18px}.x-progress-default .x-progress-text-back{color:#396295;line-height:18px}.x-progress-default .x-progress-bar-default:after{display:none;content:"x-slicer:bg:url(images/progress/progress-default-bg.gif)"}.x-btn-default-small{border-color:#d1d1d1}.x-btn-default-small{-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-image:none;background-color:white;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(48%,#f9f9f9),color-stop(52%,#e2e2e2),color-stop(100%,#e7e7e7));background-image:-webkit-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-moz-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-o-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7)}.x-btn-default-small-mc{background-image:url(images/btn/btn-default-small-fbg.gif);background-position:0 top;background-color:white}.x-nlg .x-btn-default-small{background-image:url(images/btn/btn-default-small-bg.gif);background-position:0 top}.x-nbr .x-btn-default-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-btn-default-small-tl{background-position:0 -6px}.x-btn-default-small-tr{background-position:right -9px}.x-btn-default-small-bl{background-position:0 -12px}.x-btn-default-small-br{background-position:right -15px}.x-btn-default-small-ml{background-position:0 top}.x-btn-default-small-mr{background-position:right top}.x-btn-default-small-tc{background-position:0 0}.x-btn-default-small-bc{background-position:0 -3px}.x-btn-default-small-tr,.x-btn-default-small-br,.x-btn-default-small-mr{padding-right:3px}.x-btn-default-small-tl,.x-btn-default-small-bl,.x-btn-default-small-ml{padding-left:3px}.x-btn-default-small-tc{height:3px}.x-btn-default-small-bc{height:3px}.x-btn-default-small-tl,.x-btn-default-small-bl,.x-btn-default-small-tr,.x-btn-default-small-br,.x-btn-default-small-tc,.x-btn-default-small-bc,.x-btn-default-small-ml,.x-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-corners.gif)}.x-btn-default-small-ml,.x-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-sides.gif)}.x-btn-default-small-mc{padding:0}.x-strict .x-ie7 .x-btn-default-small-tl,.x-strict .x-ie7 .x-btn-default-small-bl{position:relative;right:0}.x-btn-default-small:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"}.x-btn-default-small .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 4px}.x-btn-default-small .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-small .x-btn-arrow-right{padding-right:12px}.x-btn-default-small .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-small .x-btn-glyph{font-size:16px;line-height:16px;color:#333;opacity:.5}.x-ie8m .x-btn-default-small .x-btn-glyph{color:#999}.x-btn-default-small-disabled{border-color:#e1e1e1;background-image:none;background-color:#f7f7f7;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f7f7f7),color-stop(48%,#f1f1f1),color-stop(52%,#dadada),color-stop(100%,#dfdfdf));background-image:-webkit-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-moz-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-o-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf)}.x-btn-default-small-icon .x-btn-button,.x-btn-default-small-noicon .x-btn-button{height:16px}.x-btn-default-small-icon .x-btn-inner,.x-btn-default-small-noicon .x-btn-inner{line-height:16px}.x-btn-default-small-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-small-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-small-icon .x-btn-inner{width:16px;padding:0}.x-btn-default-small-icon .x-btn-icon-el{width:16px;height:16px}.x-btn-default-small-icon-text-left .x-btn-button{height:16px}.x-btn-default-small-icon-text-left .x-btn-inner{line-height:16px;padding-left:20px}.x-btn-default-small-icon-text-left .x-btn-icon-el{width:16px;right:auto}.x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-small-icon-text-left .x-btn-icon-el{height:16px}.x-btn-default-small-icon-text-right .x-btn-button{height:16px}.x-btn-default-small-icon-text-right .x-btn-inner{line-height:16px;padding-right:20px}.x-btn-default-small-icon-text-right .x-btn-icon-el{width:16px;left:auto}.x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-small-icon-text-right .x-btn-icon-el{height:16px}.x-btn-default-small-icon-text-top .x-btn-inner{padding-top:20px}.x-btn-default-small-icon-text-top .x-btn-icon-el{height:16px;bottom:auto}.x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-small-icon-text-bottom .x-btn-inner{padding-bottom:20px}.x-btn-default-small-icon-text-bottom .x-btn-icon-el{height:16px;top:auto}.x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-small-over{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x-btn-default-small-focus{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x-btn-default-small-menu-active,.x-btn-default-small-pressed{border-color:#9ebae1;background-image:none;background-color:#b6cbe4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#b6cbe4),color-stop(48%,#bfd2e6),color-stop(52%,#8dc0f5),color-stop(100%,#98c5f5));background-image:-webkit-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-moz-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-o-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5)}.x-btn-default-small-over .x-frame-tl,.x-btn-default-small-over .x-frame-bl,.x-btn-default-small-over .x-frame-tr,.x-btn-default-small-over .x-frame-br,.x-btn-default-small-over .x-frame-tc,.x-btn-default-small-over .x-frame-bc{background-image:url(images/btn/btn-default-small-over-corners.gif)}.x-btn-default-small-over .x-frame-ml,.x-btn-default-small-over .x-frame-mr{background-image:url(images/btn/btn-default-small-over-sides.gif)}.x-btn-default-small-over .x-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-small-over-fbg.gif)}.x-btn-default-small-focus .x-frame-tl,.x-btn-default-small-focus .x-frame-bl,.x-btn-default-small-focus .x-frame-tr,.x-btn-default-small-focus .x-frame-br,.x-btn-default-small-focus .x-frame-tc,.x-btn-default-small-focus .x-frame-bc{background-image:url(images/btn/btn-default-small-focus-corners.gif)}.x-btn-default-small-focus .x-frame-ml,.x-btn-default-small-focus .x-frame-mr{background-image:url(images/btn/btn-default-small-focus-sides.gif)}.x-btn-default-small-focus .x-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-small-focus-fbg.gif)}.x-btn-default-small-menu-active .x-frame-tl,.x-btn-default-small-menu-active .x-frame-bl,.x-btn-default-small-menu-active .x-frame-tr,.x-btn-default-small-menu-active .x-frame-br,.x-btn-default-small-menu-active .x-frame-tc,.x-btn-default-small-menu-active .x-frame-bc,.x-btn-default-small-pressed .x-frame-tl,.x-btn-default-small-pressed .x-frame-bl,.x-btn-default-small-pressed .x-frame-tr,.x-btn-default-small-pressed .x-frame-br,.x-btn-default-small-pressed .x-frame-tc,.x-btn-default-small-pressed .x-frame-bc{background-image:url(images/btn/btn-default-small-pressed-corners.gif)}.x-btn-default-small-menu-active .x-frame-ml,.x-btn-default-small-menu-active .x-frame-mr,.x-btn-default-small-pressed .x-frame-ml,.x-btn-default-small-pressed .x-frame-mr{background-image:url(images/btn/btn-default-small-pressed-sides.gif)}.x-btn-default-small-menu-active .x-frame-mc,.x-btn-default-small-pressed .x-frame-mc{background-color:#b6cbe4;background-image:url(images/btn/btn-default-small-pressed-fbg.gif)}.x-btn-default-small-disabled .x-frame-tl,.x-btn-default-small-disabled .x-frame-bl,.x-btn-default-small-disabled .x-frame-tr,.x-btn-default-small-disabled .x-frame-br,.x-btn-default-small-disabled .x-frame-tc,.x-btn-default-small-disabled .x-frame-bc{background-image:url(images/btn/btn-default-small-disabled-corners.gif)}.x-btn-default-small-disabled .x-frame-ml,.x-btn-default-small-disabled .x-frame-mr{background-image:url(images/btn/btn-default-small-disabled-sides.gif)}.x-btn-default-small-disabled .x-frame-mc{background-color:#f7f7f7;background-image:url(images/btn/btn-default-small-disabled-fbg.gif)}.x-nlg .x-btn-default-small-over{background-image:url(images/btn/btn-default-small-over-bg.gif)}.x-nlg .x-btn-default-small-focus{background-image:url(images/btn/btn-default-small-focus-bg.gif)}.x-nlg .x-btn-default-small-menu-active,.x-nlg .x-btn-default-small-pressed{background-image:url(images/btn/btn-default-small-pressed-bg.gif)}.x-nlg .x-btn-default-small-disabled{background-image:url(images/btn/btn-default-small-disabled-bg.gif)}.x-nbr .x-btn-default-small{background-image:none}.x-btn-default-small .x-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:14px}.x-btn-default-small .x-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:14px}.x-btn-default-small-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-small-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-small-disabled .x-btn-inner,.x-btn-default-small-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-btn-default-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"}.x-btn-default-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"}.x-btn-default-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"}.x-btn-default-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"}.x-btn-default-medium{border-color:#d1d1d1}.x-btn-default-medium{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:white;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(48%,#f9f9f9),color-stop(52%,#e2e2e2),color-stop(100%,#e7e7e7));background-image:-webkit-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-moz-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-o-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7)}.x-btn-default-medium-mc{background-image:url(images/btn/btn-default-medium-fbg.gif);background-position:0 top;background-color:white}.x-nlg .x-btn-default-medium{background-image:url(images/btn/btn-default-medium-bg.gif);background-position:0 top}.x-nbr .x-btn-default-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-medium-tl{background-position:0 -6px}.x-btn-default-medium-tr{background-position:right -9px}.x-btn-default-medium-bl{background-position:0 -12px}.x-btn-default-medium-br{background-position:right -15px}.x-btn-default-medium-ml{background-position:0 top}.x-btn-default-medium-mr{background-position:right top}.x-btn-default-medium-tc{background-position:0 0}.x-btn-default-medium-bc{background-position:0 -3px}.x-btn-default-medium-tr,.x-btn-default-medium-br,.x-btn-default-medium-mr{padding-right:3px}.x-btn-default-medium-tl,.x-btn-default-medium-bl,.x-btn-default-medium-ml{padding-left:3px}.x-btn-default-medium-tc{height:3px}.x-btn-default-medium-bc{height:3px}.x-btn-default-medium-tl,.x-btn-default-medium-bl,.x-btn-default-medium-tr,.x-btn-default-medium-br,.x-btn-default-medium-tc,.x-btn-default-medium-bc,.x-btn-default-medium-ml,.x-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-corners.gif)}.x-btn-default-medium-ml,.x-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-sides.gif)}.x-btn-default-medium-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-medium-tl,.x-strict .x-ie7 .x-btn-default-medium-bl{position:relative;right:0}.x-btn-default-medium:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"}.x-btn-default-medium .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x-btn-default-medium .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-medium .x-btn-arrow-right{padding-right:12px}.x-btn-default-medium .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-medium .x-btn-glyph{font-size:24px;line-height:24px;color:#333;opacity:.5}.x-ie8m .x-btn-default-medium .x-btn-glyph{color:#999}.x-btn-default-medium-disabled{border-color:#e1e1e1;background-image:none;background-color:#f7f7f7;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f7f7f7),color-stop(48%,#f1f1f1),color-stop(52%,#dadada),color-stop(100%,#dfdfdf));background-image:-webkit-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-moz-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-o-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf)}.x-btn-default-medium-icon .x-btn-button,.x-btn-default-medium-noicon .x-btn-button{height:24px}.x-btn-default-medium-icon .x-btn-inner,.x-btn-default-medium-noicon .x-btn-inner{line-height:24px}.x-btn-default-medium-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-medium-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-medium-icon .x-btn-inner{width:24px;padding:0}.x-btn-default-medium-icon .x-btn-icon-el{width:24px;height:24px}.x-btn-default-medium-icon-text-left .x-btn-button{height:24px}.x-btn-default-medium-icon-text-left .x-btn-inner{line-height:24px;padding-left:28px}.x-btn-default-medium-icon-text-left .x-btn-icon-el{width:24px;right:auto}.x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon-el{height:24px}.x-btn-default-medium-icon-text-right .x-btn-button{height:24px}.x-btn-default-medium-icon-text-right .x-btn-inner{line-height:24px;padding-right:28px}.x-btn-default-medium-icon-text-right .x-btn-icon-el{width:24px;left:auto}.x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon-el{height:24px}.x-btn-default-medium-icon-text-top .x-btn-inner{padding-top:28px}.x-btn-default-medium-icon-text-top .x-btn-icon-el{height:24px;bottom:auto}.x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-medium-icon-text-bottom .x-btn-inner{padding-bottom:28px}.x-btn-default-medium-icon-text-bottom .x-btn-icon-el{height:24px;top:auto}.x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-medium-over{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x-btn-default-medium-focus{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x-btn-default-medium-menu-active,.x-btn-default-medium-pressed{border-color:#9ebae1;background-image:none;background-color:#b6cbe4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#b6cbe4),color-stop(48%,#bfd2e6),color-stop(52%,#8dc0f5),color-stop(100%,#98c5f5));background-image:-webkit-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-moz-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-o-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5)}.x-btn-default-medium-over .x-frame-tl,.x-btn-default-medium-over .x-frame-bl,.x-btn-default-medium-over .x-frame-tr,.x-btn-default-medium-over .x-frame-br,.x-btn-default-medium-over .x-frame-tc,.x-btn-default-medium-over .x-frame-bc{background-image:url(images/btn/btn-default-medium-over-corners.gif)}.x-btn-default-medium-over .x-frame-ml,.x-btn-default-medium-over .x-frame-mr{background-image:url(images/btn/btn-default-medium-over-sides.gif)}.x-btn-default-medium-over .x-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-medium-over-fbg.gif)}.x-btn-default-medium-focus .x-frame-tl,.x-btn-default-medium-focus .x-frame-bl,.x-btn-default-medium-focus .x-frame-tr,.x-btn-default-medium-focus .x-frame-br,.x-btn-default-medium-focus .x-frame-tc,.x-btn-default-medium-focus .x-frame-bc{background-image:url(images/btn/btn-default-medium-focus-corners.gif)}.x-btn-default-medium-focus .x-frame-ml,.x-btn-default-medium-focus .x-frame-mr{background-image:url(images/btn/btn-default-medium-focus-sides.gif)}.x-btn-default-medium-focus .x-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-medium-focus-fbg.gif)}.x-btn-default-medium-menu-active .x-frame-tl,.x-btn-default-medium-menu-active .x-frame-bl,.x-btn-default-medium-menu-active .x-frame-tr,.x-btn-default-medium-menu-active .x-frame-br,.x-btn-default-medium-menu-active .x-frame-tc,.x-btn-default-medium-menu-active .x-frame-bc,.x-btn-default-medium-pressed .x-frame-tl,.x-btn-default-medium-pressed .x-frame-bl,.x-btn-default-medium-pressed .x-frame-tr,.x-btn-default-medium-pressed .x-frame-br,.x-btn-default-medium-pressed .x-frame-tc,.x-btn-default-medium-pressed .x-frame-bc{background-image:url(images/btn/btn-default-medium-pressed-corners.gif)}.x-btn-default-medium-menu-active .x-frame-ml,.x-btn-default-medium-menu-active .x-frame-mr,.x-btn-default-medium-pressed .x-frame-ml,.x-btn-default-medium-pressed .x-frame-mr{background-image:url(images/btn/btn-default-medium-pressed-sides.gif)}.x-btn-default-medium-menu-active .x-frame-mc,.x-btn-default-medium-pressed .x-frame-mc{background-color:#b6cbe4;background-image:url(images/btn/btn-default-medium-pressed-fbg.gif)}.x-btn-default-medium-disabled .x-frame-tl,.x-btn-default-medium-disabled .x-frame-bl,.x-btn-default-medium-disabled .x-frame-tr,.x-btn-default-medium-disabled .x-frame-br,.x-btn-default-medium-disabled .x-frame-tc,.x-btn-default-medium-disabled .x-frame-bc{background-image:url(images/btn/btn-default-medium-disabled-corners.gif)}.x-btn-default-medium-disabled .x-frame-ml,.x-btn-default-medium-disabled .x-frame-mr{background-image:url(images/btn/btn-default-medium-disabled-sides.gif)}.x-btn-default-medium-disabled .x-frame-mc{background-color:#f7f7f7;background-image:url(images/btn/btn-default-medium-disabled-fbg.gif)}.x-nlg .x-btn-default-medium-over{background-image:url(images/btn/btn-default-medium-over-bg.gif)}.x-nlg .x-btn-default-medium-focus{background-image:url(images/btn/btn-default-medium-focus-bg.gif)}.x-nlg .x-btn-default-medium-menu-active,.x-nlg .x-btn-default-medium-pressed{background-image:url(images/btn/btn-default-medium-pressed-bg.gif)}.x-nlg .x-btn-default-medium-disabled{background-image:url(images/btn/btn-default-medium-disabled-bg.gif)}.x-nbr .x-btn-default-medium{background-image:none}.x-btn-default-medium .x-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:14px}.x-btn-default-medium .x-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:14px}.x-btn-default-medium-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-medium-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-medium-disabled .x-btn-inner,.x-btn-default-medium-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-btn-default-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"}.x-btn-default-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"}.x-btn-default-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"}.x-btn-default-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"}.x-btn-default-large{border-color:#d1d1d1}.x-btn-default-large{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:white;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(48%,#f9f9f9),color-stop(52%,#e2e2e2),color-stop(100%,#e7e7e7));background-image:-webkit-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-moz-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:-o-linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7);background-image:linear-gradient(top,#fff,#f9f9f9 48%,#e2e2e2 52%,#e7e7e7)}.x-btn-default-large-mc{background-image:url(images/btn/btn-default-large-fbg.gif);background-position:0 top;background-color:white}.x-nlg .x-btn-default-large{background-image:url(images/btn/btn-default-large-bg.gif);background-position:0 top}.x-nbr .x-btn-default-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-large-tl{background-position:0 -6px}.x-btn-default-large-tr{background-position:right -9px}.x-btn-default-large-bl{background-position:0 -12px}.x-btn-default-large-br{background-position:right -15px}.x-btn-default-large-ml{background-position:0 top}.x-btn-default-large-mr{background-position:right top}.x-btn-default-large-tc{background-position:0 0}.x-btn-default-large-bc{background-position:0 -3px}.x-btn-default-large-tr,.x-btn-default-large-br,.x-btn-default-large-mr{padding-right:3px}.x-btn-default-large-tl,.x-btn-default-large-bl,.x-btn-default-large-ml{padding-left:3px}.x-btn-default-large-tc{height:3px}.x-btn-default-large-bc{height:3px}.x-btn-default-large-tl,.x-btn-default-large-bl,.x-btn-default-large-tr,.x-btn-default-large-br,.x-btn-default-large-tc,.x-btn-default-large-bc,.x-btn-default-large-ml,.x-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-corners.gif)}.x-btn-default-large-ml,.x-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-sides.gif)}.x-btn-default-large-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-large-tl,.x-strict .x-ie7 .x-btn-default-large-bl{position:relative;right:0}.x-btn-default-large:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"}.x-btn-default-large .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x-btn-default-large .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-large .x-btn-arrow-right{padding-right:12px}.x-btn-default-large .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-large .x-btn-glyph{font-size:32px;line-height:32px;color:#333;opacity:.5}.x-ie8m .x-btn-default-large .x-btn-glyph{color:#999}.x-btn-default-large-disabled{border-color:#e1e1e1;background-image:none;background-color:#f7f7f7;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f7f7f7),color-stop(48%,#f1f1f1),color-stop(52%,#dadada),color-stop(100%,#dfdfdf));background-image:-webkit-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-moz-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:-o-linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf);background-image:linear-gradient(top,#f7f7f7,#f1f1f1 48%,#dadada 52%,#dfdfdf)}.x-btn-default-large-icon .x-btn-button,.x-btn-default-large-noicon .x-btn-button{height:32px}.x-btn-default-large-icon .x-btn-inner,.x-btn-default-large-noicon .x-btn-inner{line-height:32px}.x-btn-default-large-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-large-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-large-icon .x-btn-inner{width:32px;padding:0}.x-btn-default-large-icon .x-btn-icon-el{width:32px;height:32px}.x-btn-default-large-icon-text-left .x-btn-button{height:32px}.x-btn-default-large-icon-text-left .x-btn-inner{line-height:32px;padding-left:36px}.x-btn-default-large-icon-text-left .x-btn-icon-el{width:32px;right:auto}.x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-large-icon-text-left .x-btn-icon-el{height:32px}.x-btn-default-large-icon-text-right .x-btn-button{height:32px}.x-btn-default-large-icon-text-right .x-btn-inner{line-height:32px;padding-right:36px}.x-btn-default-large-icon-text-right .x-btn-icon-el{width:32px;left:auto}.x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-large-icon-text-right .x-btn-icon-el{height:32px}.x-btn-default-large-icon-text-top .x-btn-inner{padding-top:36px}.x-btn-default-large-icon-text-top .x-btn-icon-el{height:32px;bottom:auto}.x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-large-icon-text-bottom .x-btn-inner{padding-bottom:36px}.x-btn-default-large-icon-text-bottom .x-btn-icon-el{height:32px;top:auto}.x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-large-over{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x-btn-default-large-focus{border-color:#b0ccf2;background-image:none;background-color:#e4f3ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e4f3ff),color-stop(48%,#d9edff),color-stop(52%,#c2d8f2),color-stop(100%,#c6dcf6));background-image:-webkit-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-moz-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:-o-linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6);background-image:linear-gradient(top,#e4f3ff,#d9edff 48%,#c2d8f2 52%,#c6dcf6)}.x-btn-default-large-menu-active,.x-btn-default-large-pressed{border-color:#9ebae1;background-image:none;background-color:#b6cbe4;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#b6cbe4),color-stop(48%,#bfd2e6),color-stop(52%,#8dc0f5),color-stop(100%,#98c5f5));background-image:-webkit-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-moz-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:-o-linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5);background-image:linear-gradient(top,#b6cbe4,#bfd2e6 48%,#8dc0f5 52%,#98c5f5)}.x-btn-default-large-over .x-frame-tl,.x-btn-default-large-over .x-frame-bl,.x-btn-default-large-over .x-frame-tr,.x-btn-default-large-over .x-frame-br,.x-btn-default-large-over .x-frame-tc,.x-btn-default-large-over .x-frame-bc{background-image:url(images/btn/btn-default-large-over-corners.gif)}.x-btn-default-large-over .x-frame-ml,.x-btn-default-large-over .x-frame-mr{background-image:url(images/btn/btn-default-large-over-sides.gif)}.x-btn-default-large-over .x-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-large-over-fbg.gif)}.x-btn-default-large-focus .x-frame-tl,.x-btn-default-large-focus .x-frame-bl,.x-btn-default-large-focus .x-frame-tr,.x-btn-default-large-focus .x-frame-br,.x-btn-default-large-focus .x-frame-tc,.x-btn-default-large-focus .x-frame-bc{background-image:url(images/btn/btn-default-large-focus-corners.gif)}.x-btn-default-large-focus .x-frame-ml,.x-btn-default-large-focus .x-frame-mr{background-image:url(images/btn/btn-default-large-focus-sides.gif)}.x-btn-default-large-focus .x-frame-mc{background-color:#e4f3ff;background-image:url(images/btn/btn-default-large-focus-fbg.gif)}.x-btn-default-large-menu-active .x-frame-tl,.x-btn-default-large-menu-active .x-frame-bl,.x-btn-default-large-menu-active .x-frame-tr,.x-btn-default-large-menu-active .x-frame-br,.x-btn-default-large-menu-active .x-frame-tc,.x-btn-default-large-menu-active .x-frame-bc,.x-btn-default-large-pressed .x-frame-tl,.x-btn-default-large-pressed .x-frame-bl,.x-btn-default-large-pressed .x-frame-tr,.x-btn-default-large-pressed .x-frame-br,.x-btn-default-large-pressed .x-frame-tc,.x-btn-default-large-pressed .x-frame-bc{background-image:url(images/btn/btn-default-large-pressed-corners.gif)}.x-btn-default-large-menu-active .x-frame-ml,.x-btn-default-large-menu-active .x-frame-mr,.x-btn-default-large-pressed .x-frame-ml,.x-btn-default-large-pressed .x-frame-mr{background-image:url(images/btn/btn-default-large-pressed-sides.gif)}.x-btn-default-large-menu-active .x-frame-mc,.x-btn-default-large-pressed .x-frame-mc{background-color:#b6cbe4;background-image:url(images/btn/btn-default-large-pressed-fbg.gif)}.x-btn-default-large-disabled .x-frame-tl,.x-btn-default-large-disabled .x-frame-bl,.x-btn-default-large-disabled .x-frame-tr,.x-btn-default-large-disabled .x-frame-br,.x-btn-default-large-disabled .x-frame-tc,.x-btn-default-large-disabled .x-frame-bc{background-image:url(images/btn/btn-default-large-disabled-corners.gif)}.x-btn-default-large-disabled .x-frame-ml,.x-btn-default-large-disabled .x-frame-mr{background-image:url(images/btn/btn-default-large-disabled-sides.gif)}.x-btn-default-large-disabled .x-frame-mc{background-color:#f7f7f7;background-image:url(images/btn/btn-default-large-disabled-fbg.gif)}.x-nlg .x-btn-default-large-over{background-image:url(images/btn/btn-default-large-over-bg.gif)}.x-nlg .x-btn-default-large-focus{background-image:url(images/btn/btn-default-large-focus-bg.gif)}.x-nlg .x-btn-default-large-menu-active,.x-nlg .x-btn-default-large-pressed{background-image:url(images/btn/btn-default-large-pressed-bg.gif)}.x-nlg .x-btn-default-large-disabled{background-image:url(images/btn/btn-default-large-disabled-bg.gif)}.x-nbr .x-btn-default-large{background-image:none}.x-btn-default-large .x-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:14px}.x-btn-default-large .x-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:14px}.x-btn-default-large-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-large-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-large-disabled .x-btn-inner,.x-btn-default-large-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-btn-default-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"}.x-btn-default-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"}.x-btn-default-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"}.x-btn-default-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"}.x-btn-default-toolbar-small{border-color:transparent}.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:2px 2px 2px 2px;border-width:1px;border-style:solid;background-color:transparent}.x-btn-default-toolbar-small-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-default-toolbar-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-btn-default-toolbar-small-tl{background-position:0 -6px}.x-btn-default-toolbar-small-tr{background-position:right -9px}.x-btn-default-toolbar-small-bl{background-position:0 -12px}.x-btn-default-toolbar-small-br{background-position:right -15px}.x-btn-default-toolbar-small-ml{background-position:0 top}.x-btn-default-toolbar-small-mr{background-position:right top}.x-btn-default-toolbar-small-tc{background-position:0 0}.x-btn-default-toolbar-small-bc{background-position:0 -3px}.x-btn-default-toolbar-small-tr,.x-btn-default-toolbar-small-br,.x-btn-default-toolbar-small-mr{padding-right:3px}.x-btn-default-toolbar-small-tl,.x-btn-default-toolbar-small-bl,.x-btn-default-toolbar-small-ml{padding-left:3px}.x-btn-default-toolbar-small-tc{height:3px}.x-btn-default-toolbar-small-bc{height:3px}.x-btn-default-toolbar-small-tl,.x-btn-default-toolbar-small-bl,.x-btn-default-toolbar-small-tr,.x-btn-default-toolbar-small-br,.x-btn-default-toolbar-small-tc,.x-btn-default-toolbar-small-bc,.x-btn-default-toolbar-small-ml,.x-btn-default-toolbar-small-mr{zoom:1}.x-btn-default-toolbar-small-ml,.x-btn-default-toolbar-small-mr{zoom:1}.x-btn-default-toolbar-small-mc{padding:0}.x-strict .x-ie7 .x-btn-default-toolbar-small-tl,.x-strict .x-ie7 .x-btn-default-toolbar-small-bl{position:relative;right:0}.x-btn-default-toolbar-small .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 4px}.x-btn-default-toolbar-small .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-toolbar-small .x-btn-arrow-right{padding-right:12px}.x-btn-default-toolbar-small .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-toolbar-small .x-btn-glyph{font-size:16px;line-height:16px;color:#333;opacity:.5}.x-ie8m .x-btn-default-toolbar-small .x-btn-glyph{color:#999}.x-btn-default-toolbar-small-disabled{border-color:#e1e1e1;background-image:none;background-color:transparent}.x-btn-default-toolbar-small-disabled .x-btn-inner{color:#8c8c8c}.x-btn-default-toolbar-small-icon .x-btn-button,.x-btn-default-toolbar-small-noicon .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon .x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-inner{line-height:16px}.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-small-icon .x-btn-inner{width:16px;padding:0}.x-btn-default-toolbar-small-icon .x-btn-icon-el{width:16px;height:16px}.x-btn-default-toolbar-small-icon-text-left .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon-text-left .x-btn-inner{line-height:16px;padding-left:20px}.x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el{width:16px;right:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el{height:16px}.x-btn-default-toolbar-small-icon-text-right .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon-text-right .x-btn-inner{line-height:16px;padding-right:20px}.x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el{width:16px;left:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el{height:16px}.x-btn-default-toolbar-small-icon-text-top .x-btn-inner{padding-top:20px}.x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el{height:16px;bottom:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner{padding-bottom:20px}.x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el{height:16px;top:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-small-over{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x-btn-default-toolbar-small-focus{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x-btn-default-toolbar-small-menu-active,.x-btn-default-toolbar-small-pressed{border-color:#7a9ac4;background-image:none;background-color:#bccfe5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#bccfe5),color-stop(48%,#c5d6e7),color-stop(52%,#95c4f4),color-stop(100%,#9fc9f5));background-image:-webkit-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-moz-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-o-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5)}.x-btn-default-toolbar-small-over .x-frame-tl,.x-btn-default-toolbar-small-over .x-frame-bl,.x-btn-default-toolbar-small-over .x-frame-tr,.x-btn-default-toolbar-small-over .x-frame-br,.x-btn-default-toolbar-small-over .x-frame-tc,.x-btn-default-toolbar-small-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-over-corners.gif)}.x-btn-default-toolbar-small-over .x-frame-ml,.x-btn-default-toolbar-small-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-over-sides.gif)}.x-btn-default-toolbar-small-over .x-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-small-over-fbg.gif)}.x-btn-default-toolbar-small-focus .x-frame-tl,.x-btn-default-toolbar-small-focus .x-frame-bl,.x-btn-default-toolbar-small-focus .x-frame-tr,.x-btn-default-toolbar-small-focus .x-frame-br,.x-btn-default-toolbar-small-focus .x-frame-tc,.x-btn-default-toolbar-small-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-focus-corners.gif)}.x-btn-default-toolbar-small-focus .x-frame-ml,.x-btn-default-toolbar-small-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-focus-sides.gif)}.x-btn-default-toolbar-small-focus .x-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-small-focus-fbg.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-tl,.x-btn-default-toolbar-small-menu-active .x-frame-bl,.x-btn-default-toolbar-small-menu-active .x-frame-tr,.x-btn-default-toolbar-small-menu-active .x-frame-br,.x-btn-default-toolbar-small-menu-active .x-frame-tc,.x-btn-default-toolbar-small-menu-active .x-frame-bc,.x-btn-default-toolbar-small-pressed .x-frame-tl,.x-btn-default-toolbar-small-pressed .x-frame-bl,.x-btn-default-toolbar-small-pressed .x-frame-tr,.x-btn-default-toolbar-small-pressed .x-frame-br,.x-btn-default-toolbar-small-pressed .x-frame-tc,.x-btn-default-toolbar-small-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-pressed-corners.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-ml,.x-btn-default-toolbar-small-menu-active .x-frame-mr,.x-btn-default-toolbar-small-pressed .x-frame-ml,.x-btn-default-toolbar-small-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-pressed-sides.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-mc,.x-btn-default-toolbar-small-pressed .x-frame-mc{background-color:#bccfe5;background-image:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif)}.x-btn-default-toolbar-small-disabled .x-frame-tl,.x-btn-default-toolbar-small-disabled .x-frame-bl,.x-btn-default-toolbar-small-disabled .x-frame-tr,.x-btn-default-toolbar-small-disabled .x-frame-br,.x-btn-default-toolbar-small-disabled .x-frame-tc,.x-btn-default-toolbar-small-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-disabled-corners.gif)}.x-btn-default-toolbar-small-disabled .x-frame-ml,.x-btn-default-toolbar-small-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)}.x-btn-default-toolbar-small-disabled .x-frame-mc{background-color:transparent}.x-nlg .x-btn-default-toolbar-small-over{background-image:url(images/btn/btn-default-toolbar-small-over-bg.gif)}.x-nlg .x-btn-default-toolbar-small-focus{background-image:url(images/btn/btn-default-toolbar-small-focus-bg.gif)}.x-nlg .x-btn-default-toolbar-small-menu-active,.x-nlg .x-btn-default-toolbar-small-pressed{background-image:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)}.x-nbr .x-btn-default-toolbar-small{background-image:none}.x-btn-default-toolbar-small .x-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:14px}.x-btn-default-toolbar-small .x-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:14px}.x-btn-default-toolbar-small-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-toolbar-small-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-toolbar-small-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-over-bg.gif)"}.x-btn-default-toolbar-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-focus-bg.gif)"}.x-btn-default-toolbar-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)"}.x-btn-default-toolbar-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)"}.x-btn-default-toolbar-medium{border-color:transparent}.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:transparent}.x-btn-default-toolbar-medium-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-default-toolbar-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-toolbar-medium-tl{background-position:0 -6px}.x-btn-default-toolbar-medium-tr{background-position:right -9px}.x-btn-default-toolbar-medium-bl{background-position:0 -12px}.x-btn-default-toolbar-medium-br{background-position:right -15px}.x-btn-default-toolbar-medium-ml{background-position:0 top}.x-btn-default-toolbar-medium-mr{background-position:right top}.x-btn-default-toolbar-medium-tc{background-position:0 0}.x-btn-default-toolbar-medium-bc{background-position:0 -3px}.x-btn-default-toolbar-medium-tr,.x-btn-default-toolbar-medium-br,.x-btn-default-toolbar-medium-mr{padding-right:3px}.x-btn-default-toolbar-medium-tl,.x-btn-default-toolbar-medium-bl,.x-btn-default-toolbar-medium-ml{padding-left:3px}.x-btn-default-toolbar-medium-tc{height:3px}.x-btn-default-toolbar-medium-bc{height:3px}.x-btn-default-toolbar-medium-tl,.x-btn-default-toolbar-medium-bl,.x-btn-default-toolbar-medium-tr,.x-btn-default-toolbar-medium-br,.x-btn-default-toolbar-medium-tc,.x-btn-default-toolbar-medium-bc,.x-btn-default-toolbar-medium-ml,.x-btn-default-toolbar-medium-mr{zoom:1}.x-btn-default-toolbar-medium-ml,.x-btn-default-toolbar-medium-mr{zoom:1}.x-btn-default-toolbar-medium-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-toolbar-medium-tl,.x-strict .x-ie7 .x-btn-default-toolbar-medium-bl{position:relative;right:0}.x-btn-default-toolbar-medium .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x-btn-default-toolbar-medium .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-toolbar-medium .x-btn-arrow-right{padding-right:12px}.x-btn-default-toolbar-medium .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-toolbar-medium .x-btn-glyph{font-size:24px;line-height:24px;color:#333;opacity:.5}.x-ie8m .x-btn-default-toolbar-medium .x-btn-glyph{color:#999}.x-btn-default-toolbar-medium-disabled{border-color:#e1e1e1;background-image:none;background-color:transparent}.x-btn-default-toolbar-medium-disabled .x-btn-inner{color:#8c8c8c}.x-btn-default-toolbar-medium-icon .x-btn-button,.x-btn-default-toolbar-medium-noicon .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon .x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-inner{line-height:24px}.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-medium-icon .x-btn-inner{width:24px;padding:0}.x-btn-default-toolbar-medium-icon .x-btn-icon-el{width:24px;height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-inner{line-height:24px;padding-left:28px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el{width:24px;right:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el{height:24px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-inner{line-height:24px;padding-right:28px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el{width:24px;left:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el{height:24px}.x-btn-default-toolbar-medium-icon-text-top .x-btn-inner{padding-top:28px}.x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el{height:24px;bottom:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner{padding-bottom:28px}.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el{height:24px;top:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-medium-over{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x-btn-default-toolbar-medium-focus{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x-btn-default-toolbar-medium-menu-active,.x-btn-default-toolbar-medium-pressed{border-color:#7a9ac4;background-image:none;background-color:#bccfe5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#bccfe5),color-stop(48%,#c5d6e7),color-stop(52%,#95c4f4),color-stop(100%,#9fc9f5));background-image:-webkit-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-moz-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-o-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5)}.x-btn-default-toolbar-medium-over .x-frame-tl,.x-btn-default-toolbar-medium-over .x-frame-bl,.x-btn-default-toolbar-medium-over .x-frame-tr,.x-btn-default-toolbar-medium-over .x-frame-br,.x-btn-default-toolbar-medium-over .x-frame-tc,.x-btn-default-toolbar-medium-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-over-corners.gif)}.x-btn-default-toolbar-medium-over .x-frame-ml,.x-btn-default-toolbar-medium-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-over-sides.gif)}.x-btn-default-toolbar-medium-over .x-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-medium-over-fbg.gif)}.x-btn-default-toolbar-medium-focus .x-frame-tl,.x-btn-default-toolbar-medium-focus .x-frame-bl,.x-btn-default-toolbar-medium-focus .x-frame-tr,.x-btn-default-toolbar-medium-focus .x-frame-br,.x-btn-default-toolbar-medium-focus .x-frame-tc,.x-btn-default-toolbar-medium-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-focus-corners.gif)}.x-btn-default-toolbar-medium-focus .x-frame-ml,.x-btn-default-toolbar-medium-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-focus-sides.gif)}.x-btn-default-toolbar-medium-focus .x-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-tl,.x-btn-default-toolbar-medium-menu-active .x-frame-bl,.x-btn-default-toolbar-medium-menu-active .x-frame-tr,.x-btn-default-toolbar-medium-menu-active .x-frame-br,.x-btn-default-toolbar-medium-menu-active .x-frame-tc,.x-btn-default-toolbar-medium-menu-active .x-frame-bc,.x-btn-default-toolbar-medium-pressed .x-frame-tl,.x-btn-default-toolbar-medium-pressed .x-frame-bl,.x-btn-default-toolbar-medium-pressed .x-frame-tr,.x-btn-default-toolbar-medium-pressed .x-frame-br,.x-btn-default-toolbar-medium-pressed .x-frame-tc,.x-btn-default-toolbar-medium-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-ml,.x-btn-default-toolbar-medium-menu-active .x-frame-mr,.x-btn-default-toolbar-medium-pressed .x-frame-ml,.x-btn-default-toolbar-medium-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-mc,.x-btn-default-toolbar-medium-pressed .x-frame-mc{background-color:#bccfe5;background-image:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-tl,.x-btn-default-toolbar-medium-disabled .x-frame-bl,.x-btn-default-toolbar-medium-disabled .x-frame-tr,.x-btn-default-toolbar-medium-disabled .x-frame-br,.x-btn-default-toolbar-medium-disabled .x-frame-tc,.x-btn-default-toolbar-medium-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-ml,.x-btn-default-toolbar-medium-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-mc{background-color:transparent}.x-nlg .x-btn-default-toolbar-medium-over{background-image:url(images/btn/btn-default-toolbar-medium-over-bg.gif)}.x-nlg .x-btn-default-toolbar-medium-focus{background-image:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)}.x-nlg .x-btn-default-toolbar-medium-menu-active,.x-nlg .x-btn-default-toolbar-medium-pressed{background-image:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)}.x-nbr .x-btn-default-toolbar-medium{background-image:none}.x-btn-default-toolbar-medium .x-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:14px}.x-btn-default-toolbar-medium .x-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:14px}.x-btn-default-toolbar-medium-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-toolbar-medium-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-toolbar-medium-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-over-bg.gif)"}.x-btn-default-toolbar-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)"}.x-btn-default-toolbar-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)"}.x-btn-default-toolbar-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)"}.x-btn-default-toolbar-large{border-color:transparent}.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:transparent}.x-btn-default-toolbar-large-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-default-toolbar-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-toolbar-large-tl{background-position:0 -6px}.x-btn-default-toolbar-large-tr{background-position:right -9px}.x-btn-default-toolbar-large-bl{background-position:0 -12px}.x-btn-default-toolbar-large-br{background-position:right -15px}.x-btn-default-toolbar-large-ml{background-position:0 top}.x-btn-default-toolbar-large-mr{background-position:right top}.x-btn-default-toolbar-large-tc{background-position:0 0}.x-btn-default-toolbar-large-bc{background-position:0 -3px}.x-btn-default-toolbar-large-tr,.x-btn-default-toolbar-large-br,.x-btn-default-toolbar-large-mr{padding-right:3px}.x-btn-default-toolbar-large-tl,.x-btn-default-toolbar-large-bl,.x-btn-default-toolbar-large-ml{padding-left:3px}.x-btn-default-toolbar-large-tc{height:3px}.x-btn-default-toolbar-large-bc{height:3px}.x-btn-default-toolbar-large-tl,.x-btn-default-toolbar-large-bl,.x-btn-default-toolbar-large-tr,.x-btn-default-toolbar-large-br,.x-btn-default-toolbar-large-tc,.x-btn-default-toolbar-large-bc,.x-btn-default-toolbar-large-ml,.x-btn-default-toolbar-large-mr{zoom:1}.x-btn-default-toolbar-large-ml,.x-btn-default-toolbar-large-mr{zoom:1}.x-btn-default-toolbar-large-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-toolbar-large-tl,.x-strict .x-ie7 .x-btn-default-toolbar-large-bl{position:relative;right:0}.x-btn-default-toolbar-large .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x-btn-default-toolbar-large .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-toolbar-large .x-btn-arrow-right{padding-right:12px}.x-btn-default-toolbar-large .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-toolbar-large .x-btn-glyph{font-size:32px;line-height:32px;color:#333;opacity:.5}.x-ie8m .x-btn-default-toolbar-large .x-btn-glyph{color:#999}.x-btn-default-toolbar-large-disabled{border-color:#e1e1e1;background-image:none;background-color:transparent}.x-btn-default-toolbar-large-disabled .x-btn-inner{color:#8c8c8c}.x-btn-default-toolbar-large-icon .x-btn-button,.x-btn-default-toolbar-large-noicon .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon .x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-inner{line-height:32px}.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-large-icon .x-btn-inner{width:32px;padding:0}.x-btn-default-toolbar-large-icon .x-btn-icon-el{width:32px;height:32px}.x-btn-default-toolbar-large-icon-text-left .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon-text-left .x-btn-inner{line-height:32px;padding-left:36px}.x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el{width:32px;right:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el{height:32px}.x-btn-default-toolbar-large-icon-text-right .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon-text-right .x-btn-inner{line-height:32px;padding-right:36px}.x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el{width:32px;left:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el{height:32px}.x-btn-default-toolbar-large-icon-text-top .x-btn-inner{padding-top:36px}.x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el{height:32px;bottom:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner{padding-bottom:36px}.x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el{height:32px;top:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-large-over{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x-btn-default-toolbar-large-focus{border-color:#81a4d0;background-image:none;background-color:#dbeeff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dbeeff),color-stop(48%,#d0e7ff),color-stop(52%,#bbd2f0),color-stop(100%,#bed6f5));background-image:-webkit-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-moz-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:-o-linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5);background-image:linear-gradient(top,#dbeeff,#d0e7ff 48%,#bbd2f0 52%,#bed6f5)}.x-btn-default-toolbar-large-menu-active,.x-btn-default-toolbar-large-pressed{border-color:#7a9ac4;background-image:none;background-color:#bccfe5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#bccfe5),color-stop(48%,#c5d6e7),color-stop(52%,#95c4f4),color-stop(100%,#9fc9f5));background-image:-webkit-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-moz-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:-o-linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5);background-image:linear-gradient(top,#bccfe5,#c5d6e7 48%,#95c4f4 52%,#9fc9f5)}.x-btn-default-toolbar-large-over .x-frame-tl,.x-btn-default-toolbar-large-over .x-frame-bl,.x-btn-default-toolbar-large-over .x-frame-tr,.x-btn-default-toolbar-large-over .x-frame-br,.x-btn-default-toolbar-large-over .x-frame-tc,.x-btn-default-toolbar-large-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-over-corners.gif)}.x-btn-default-toolbar-large-over .x-frame-ml,.x-btn-default-toolbar-large-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-over-sides.gif)}.x-btn-default-toolbar-large-over .x-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-large-over-fbg.gif)}.x-btn-default-toolbar-large-focus .x-frame-tl,.x-btn-default-toolbar-large-focus .x-frame-bl,.x-btn-default-toolbar-large-focus .x-frame-tr,.x-btn-default-toolbar-large-focus .x-frame-br,.x-btn-default-toolbar-large-focus .x-frame-tc,.x-btn-default-toolbar-large-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-focus-corners.gif)}.x-btn-default-toolbar-large-focus .x-frame-ml,.x-btn-default-toolbar-large-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-focus-sides.gif)}.x-btn-default-toolbar-large-focus .x-frame-mc{background-color:#dbeeff;background-image:url(images/btn/btn-default-toolbar-large-focus-fbg.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-tl,.x-btn-default-toolbar-large-menu-active .x-frame-bl,.x-btn-default-toolbar-large-menu-active .x-frame-tr,.x-btn-default-toolbar-large-menu-active .x-frame-br,.x-btn-default-toolbar-large-menu-active .x-frame-tc,.x-btn-default-toolbar-large-menu-active .x-frame-bc,.x-btn-default-toolbar-large-pressed .x-frame-tl,.x-btn-default-toolbar-large-pressed .x-frame-bl,.x-btn-default-toolbar-large-pressed .x-frame-tr,.x-btn-default-toolbar-large-pressed .x-frame-br,.x-btn-default-toolbar-large-pressed .x-frame-tc,.x-btn-default-toolbar-large-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-pressed-corners.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-ml,.x-btn-default-toolbar-large-menu-active .x-frame-mr,.x-btn-default-toolbar-large-pressed .x-frame-ml,.x-btn-default-toolbar-large-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-pressed-sides.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-mc,.x-btn-default-toolbar-large-pressed .x-frame-mc{background-color:#bccfe5;background-image:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif)}.x-btn-default-toolbar-large-disabled .x-frame-tl,.x-btn-default-toolbar-large-disabled .x-frame-bl,.x-btn-default-toolbar-large-disabled .x-frame-tr,.x-btn-default-toolbar-large-disabled .x-frame-br,.x-btn-default-toolbar-large-disabled .x-frame-tc,.x-btn-default-toolbar-large-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-disabled-corners.gif)}.x-btn-default-toolbar-large-disabled .x-frame-ml,.x-btn-default-toolbar-large-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)}.x-btn-default-toolbar-large-disabled .x-frame-mc{background-color:transparent}.x-nlg .x-btn-default-toolbar-large-over{background-image:url(images/btn/btn-default-toolbar-large-over-bg.gif)}.x-nlg .x-btn-default-toolbar-large-focus{background-image:url(images/btn/btn-default-toolbar-large-focus-bg.gif)}.x-nlg .x-btn-default-toolbar-large-menu-active,.x-nlg .x-btn-default-toolbar-large-pressed{background-image:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)}.x-nbr .x-btn-default-toolbar-large{background-image:none}.x-btn-default-toolbar-large .x-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:14px}.x-btn-default-toolbar-large .x-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:14px}.x-btn-default-toolbar-large-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-toolbar-large-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-toolbar-large-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-over-bg.gif)"}.x-btn-default-toolbar-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-focus-bg.gif)"}.x-btn-default-toolbar-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)"}.x-btn-default-toolbar-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)"}.x-btn-icon-text-left .x-btn-icon-el{background-position:left center}.x-btn-icon-text-right .x-btn-icon-el{background-position:right center}.x-btn-icon-text-top .x-btn-icon-el{background-position:center top}.x-btn-icon-text-bottom .x-btn-icon-el{background-position:center bottom}.x-btn-arrow-right{background-position:right center}.x-btn-arrow-bottom{background-position:center bottom}.x-btn-arrow{background-repeat:no-repeat}.x-btn-split{display:block;background-repeat:no-repeat}.x-btn-split-right{background-position:right center}.x-btn-split-bottom{background-position:center bottom}.x-cycle-fixed-width .x-btn-inner{text-align:inherit}.x-toolbar{font-size:11px;border-style:solid;padding:2px 0 2px 2px}.x-toolbar-item{margin:0 2px 0 0}.x-toolbar-text{margin:0 6px 0 4px;color:#4c4c4c;line-height:16px;font-family:tahoma,arial,verdana,sans-serif;font-size:11px;font-weight:normal}.x-toolbar-separator-horizontal{margin:0 2px 0 0;height:14px;border-style:solid;border-width:0 1px;border-left-color:#98c8ff;border-right-color:white}.x-toolbar-footer{background:transparent;border:0;margin:3px 0 0;padding:2px 0 2px 6px}.x-toolbar-footer .x-toolbar-item{margin:0 6px 0 0}.x-toolbar-spacer{width:2px}.x-toolbar-more-icon{background-image:url(images/toolbar/more.gif)!important;background-position:center center!important;background-repeat:no-repeat}.x-toolbar-default{border-color:#99bce8;border-width:1px;background-image:none;background-color:#d3e1f1;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dfe9f5),color-stop(100%,#d3e1f1));background-image:-webkit-linear-gradient(top,#dfe9f5,#d3e1f1);background-image:-moz-linear-gradient(top,#dfe9f5,#d3e1f1);background-image:-o-linear-gradient(top,#dfe9f5,#d3e1f1);background-image:linear-gradient(top,#dfe9f5,#d3e1f1)}.x-toolbar-default .x-box-scroller{cursor:pointer}.x-toolbar-default .x-box-scroller-disabled{filter:alpha(opacity=50);opacity:.5;cursor:default}.x-nlg .x-toolbar-default{background-image:url(images/toolbar/toolbar-default-bg.gif)!important;background-repeat:repeat-x}.x-toolbar-default:after{display:none;content:"x-slicer:bg:url(images/toolbar/toolbar-default-bg.gif), stretch:bottom"}.x-toolbar-scroll-left{background-image:url(images/toolbar/scroll-left.gif);background-position:-14px 0;width:14px;height:22px;border-style:solid;border-color:#8db2e3;border-width:0 0 1px;margin-top:0}.x-toolbar-scroll-left-hover{background-position:0 0}.x-toolbar-scroll-right{background-image:url(images/toolbar/scroll-right.gif);width:14px;height:22px;border-style:solid;border-color:#8db2e3;border-width:0 0 1px;margin-top:0}.x-toolbar-scroll-right-hover{background-position:-14px 0}.x-toolbar .x-box-menu-after{margin:0 2px 0 2px}.x-toolbar-vertical{padding:2px 2px 0 2px}.x-toolbar-vertical .x-toolbar-item{margin:0 0 2px 0}.x-toolbar-vertical .x-toolbar-text{margin:4px 0 6px 0}.x-toolbar-vertical .x-toolbar-separator-vertical{margin:0 5px 2px;border-style:solid none;border-width:1px 0;border-top-color:#98c8ff;border-bottom-color:white}.x-toolbar-vertical .x-box-menu-after,.x-toolbar-vertical .x-rtl.x-box-menu-after{margin:2px 0 2px 0;display:block;float:none}.x-header-draggable .x-header-body,.x-header-ghost{cursor:move}.x-header-text{white-space:nowrap}.x-panel-ghost{filter:alpha(opacity=65);opacity:.65}.x-panel-default{border-color:#99bce8;padding:0}.x-panel-header-default{font-size:11px;border:1px solid #99bce8}.x-panel-header-default-horizontal{padding:4px 5px 4px 5px}.x-panel-header-default-horizontal-noborder{padding:5px 6px 4px 6px}.x-panel-header-default-vertical{padding:5px 4px 5px 4px}.x-panel-header-default-vertical-noborder{padding:6px 5px 6px 4px}.x-panel-header-text-container-default{color:#04408c;font-size:11px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;line-height:15px;padding:0 2px 1px;text-transform:none}.x-panel-body-default{background:white;border-color:#99bce8;color:black;font-size:12px;font-size:normal;border-width:1px;border-style:solid}.x-panel-header-default{background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-panel-header-default-vertical{background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-nlg .x-panel-header-default-top{background:url(images/panel-header/panel-header-default-top-bg.gif)}.x-nlg .x-panel-header-default-bottom{background:url(images/panel-header/panel-header-default-bottom-bg.gif)}.x-nlg .x-panel-header-default-left{background:url(images/panel-header/panel-header-default-left-bg.gif) top right}.x-nlg .x-panel-header-default-right{background:url(images/panel-header/panel-header-default-right-bg.gif) top right}.x-panel .x-panel-header-default-collapsed-border-top{border-bottom-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-right{border-left-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-bottom{border-top-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-left{border-right-width:1px!important}.x-panel-header-default-top:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-top-bg.gif), stretch:bottom"}.x-panel-header-default-bottom:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-bottom-bg.gif), stretch:bottom"}.x-panel-header-default-left:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-left-bg.gif), stretch:left"}.x-panel-header-default-right:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-right-bg.gif), stretch:left"}.x-panel-header-default-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-default-vertical .x-panel-header-text-container{background-color:#cbddf3;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3)}.x-panel-header-default-top{-webkit-box-shadow:#f3f7fb 0 1px 0 0 inset;-moz-box-shadow:#f3f7fb 0 1px 0 0 inset;box-shadow:#f3f7fb 0 1px 0 0 inset}.x-panel-header-default-right{-webkit-box-shadow:#f3f7fb -1px 0 0 0 inset;-moz-box-shadow:#f3f7fb -1px 0 0 0 inset;box-shadow:#f3f7fb -1px 0 0 0 inset}.x-panel-header-default-bottom{-webkit-box-shadow:#f3f7fb 0 -1px 0 0 inset;-moz-box-shadow:#f3f7fb 0 -1px 0 0 inset;box-shadow:#f3f7fb 0 -1px 0 0 inset}.x-panel-header-default-left{-webkit-box-shadow:#f3f7fb 1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 1px 0 0 0 inset;box-shadow:#f3f7fb 1px 0 0 0 inset}.x-panel-header-default .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-default .x-panel-header-glyph{color:#04408c;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-default .x-panel-header-glyph{color:#678ebf}.x-panel-header-default-horizontal .x-panel-header-icon-before-title{margin:0 2px 0 0}.x-panel-header-default-horizontal .x-panel-header-icon-after-title{margin:0 0 0 2px}.x-panel-header-default-vertical .x-panel-header-icon-before-title{margin:0 0 2px 0}.x-panel-header-default-vertical .x-panel-header-icon-after-title{margin:2px 0 0 0}.x-panel-header-default-horizontal .x-tool-after-title{margin:0 0 0 2px}.x-panel-header-default-horizontal .x-tool-before-title{margin:0 2px 0 0}.x-panel-header-default-vertical .x-tool-after-title{margin:2px 0 0 0}.x-panel-header-default-vertical .x-tool-before-title{margin:0 0 2px 0}.x-panel-default-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-panel-default-framed{border-color:#99bce8;padding:4px}.x-panel-header-default-framed{font-size:11px;border:1px solid #99bce8}.x-panel-header-default-framed-horizontal{padding:4px 5px 4px 5px}.x-panel-header-default-framed-horizontal-noborder{padding:5px 6px 4px 6px}.x-panel-header-default-framed-vertical{padding:5px 4px 5px 4px}.x-panel-header-default-framed-vertical-noborder{padding:6px 5px 6px 4px}.x-panel-header-text-container-default-framed{color:#04408c;font-size:11px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;line-height:15px;padding:0 2px 1px;text-transform:none}.x-panel-body-default-framed{background:#dfe9f6;border-color:#99bce8;color:black;font-size:12px;font-size:normal;border-width:0;border-style:solid}.x-panel-default-framed{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:#dfe9f6}.x-panel-default-framed-mc{background-color:#dfe9f6}.x-nbr .x-panel-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-default-framed-frameInfo{font-family:dh-4-4-4-4-1-1-1-1-4-4-4-4}.x-panel-default-framed-tl{background-position:0 -8px}.x-panel-default-framed-tr{background-position:right -12px}.x-panel-default-framed-bl{background-position:0 -16px}.x-panel-default-framed-br{background-position:right -20px}.x-panel-default-framed-ml{background-position:0 top}.x-panel-default-framed-mr{background-position:right top}.x-panel-default-framed-tc{background-position:0 0}.x-panel-default-framed-bc{background-position:0 -4px}.x-panel-default-framed-tr,.x-panel-default-framed-br,.x-panel-default-framed-mr{padding-right:4px}.x-panel-default-framed-tl,.x-panel-default-framed-bl,.x-panel-default-framed-ml{padding-left:4px}.x-panel-default-framed-tc{height:4px}.x-panel-default-framed-bc{height:4px}.x-panel-default-framed-tl,.x-panel-default-framed-bl,.x-panel-default-framed-tr,.x-panel-default-framed-br,.x-panel-default-framed-tc,.x-panel-default-framed-bc,.x-panel-default-framed-ml,.x-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-corners.gif)}.x-panel-default-framed-ml,.x-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-sides.gif);background-repeat:repeat-y}.x-panel-default-framed-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-panel-default-framed-tl,.x-strict .x-ie7 .x-panel-default-framed-bl{position:relative;right:0}.x-panel-default-framed:after{display:none;content:"x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"}.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:4px 5px 4px 5px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-panel-header-default-framed-top-mc{background-image:url(images/panel-header/panel-header-default-framed-top-fbg.gif);background-position:0 top;background-color:#cbddf3}.x-nlg .x-panel-header-default-framed-top{background-image:url(images/panel-header/panel-header-default-framed-top-bg.gif);background-position:0 top}.x-nbr .x-panel-header-default-framed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-top-frameInfo{font-family:dh-4-4-0-0-1-1-0-1-4-5-4-5}.x-panel-header-default-framed-top-tl{background-position:0 -8px}.x-panel-header-default-framed-top-tr{background-position:right -12px}.x-panel-header-default-framed-top-bl{background-position:0 -16px}.x-panel-header-default-framed-top-br{background-position:right -20px}.x-panel-header-default-framed-top-ml{background-position:0 top}.x-panel-header-default-framed-top-mr{background-position:right top}.x-panel-header-default-framed-top-tc{background-position:0 0}.x-panel-header-default-framed-top-bc{background-position:0 -4px}.x-panel-header-default-framed-top-tr,.x-panel-header-default-framed-top-br,.x-panel-header-default-framed-top-mr{padding-right:4px}.x-panel-header-default-framed-top-tl,.x-panel-header-default-framed-top-bl,.x-panel-header-default-framed-top-ml{padding-left:4px}.x-panel-header-default-framed-top-tc{height:4px}.x-panel-header-default-framed-top-bc{height:0}.x-panel-header-default-framed-top-tl,.x-panel-header-default-framed-top-bl,.x-panel-header-default-framed-top-tr,.x-panel-header-default-framed-top-br,.x-panel-header-default-framed-top-tc,.x-panel-header-default-framed-top-bc,.x-panel-header-default-framed-top-ml,.x-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-corners.gif)}.x-panel-header-default-framed-top-ml,.x-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-sides.gif)}.x-panel-header-default-framed-top-mc{padding:1px 2px 4px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-top-tl,.x-strict .x-ie7 .x-panel-header-default-framed-top-bl{position:relative;right:0}.x-panel-header-default-framed-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"}.x-panel-header-default-framed-right{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 4px 5px 4px;border-width:1px 1px 1px 0;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-panel-header-default-framed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-right-fbg.gif);background-position:right 0;background-color:#cbddf3}.x-nlg .x-panel-header-default-framed-right{background-image:url(images/panel-header/panel-header-default-framed-right-bg.gif);background-position:right 0}.x-nbr .x-panel-header-default-framed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-right-frameInfo{font-family:dv-0-4-4-0-1-1-1-0-5-4-5-4}.x-panel-header-default-framed-right-tl{background-position:0 0}.x-panel-header-default-framed-right-tr{background-position:0 -4px}.x-panel-header-default-framed-right-bl{background-position:0 -8px}.x-panel-header-default-framed-right-br{background-position:0 -12px}.x-panel-header-default-framed-right-ml{background-position:-4px 0}.x-panel-header-default-framed-right-mr{background-position:right 0}.x-panel-header-default-framed-right-tc{background-position:right 0}.x-panel-header-default-framed-right-bc{background-position:right -4px}.x-panel-header-default-framed-right-tr,.x-panel-header-default-framed-right-br,.x-panel-header-default-framed-right-mr{padding-right:4px}.x-panel-header-default-framed-right-tl,.x-panel-header-default-framed-right-bl,.x-panel-header-default-framed-right-ml{padding-left:0}.x-panel-header-default-framed-right-tc{height:4px}.x-panel-header-default-framed-right-bc{height:4px}.x-panel-header-default-framed-right-tl,.x-panel-header-default-framed-right-bl,.x-panel-header-default-framed-right-tr,.x-panel-header-default-framed-right-br,.x-panel-header-default-framed-right-tc,.x-panel-header-default-framed-right-bc,.x-panel-header-default-framed-right-ml,.x-panel-header-default-framed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-corners.gif)}.x-panel-header-default-framed-right-tc,.x-panel-header-default-framed-right-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-sides.gif);background-repeat:repeat-x}.x-panel-header-default-framed-right-mc{padding:2px 1px 2px 4px}.x-strict .x-ie7 .x-panel-header-default-framed-right-tl,.x-strict .x-ie7 .x-panel-header-default-framed-right-bl{position:relative;right:0}.x-panel-header-default-framed-right:after{display:none;content:"x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-right-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-right-bg.gif), corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif)"}.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:4px 5px 4px 5px;border-width:0 1px 1px 1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-panel-header-default-framed-bottom-mc{background-image:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif);background-position:0 bottom;background-color:#cbddf3}.x-nlg .x-panel-header-default-framed-bottom{background-image:url(images/panel-header/panel-header-default-framed-bottom-bg.gif);background-position:0 bottom}.x-nbr .x-panel-header-default-framed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-bottom-frameInfo{font-family:dh-0-0-4-4-0-1-1-1-4-5-4-5}.x-panel-header-default-framed-bottom-tl{background-position:0 -8px}.x-panel-header-default-framed-bottom-tr{background-position:right -12px}.x-panel-header-default-framed-bottom-bl{background-position:0 -16px}.x-panel-header-default-framed-bottom-br{background-position:right -20px}.x-panel-header-default-framed-bottom-ml{background-position:0 bottom}.x-panel-header-default-framed-bottom-mr{background-position:right bottom}.x-panel-header-default-framed-bottom-tc{background-position:0 0}.x-panel-header-default-framed-bottom-bc{background-position:0 -4px}.x-panel-header-default-framed-bottom-tr,.x-panel-header-default-framed-bottom-br,.x-panel-header-default-framed-bottom-mr{padding-right:4px}.x-panel-header-default-framed-bottom-tl,.x-panel-header-default-framed-bottom-bl,.x-panel-header-default-framed-bottom-ml{padding-left:4px}.x-panel-header-default-framed-bottom-tc{height:0}.x-panel-header-default-framed-bottom-bc{height:4px}.x-panel-header-default-framed-bottom-tl,.x-panel-header-default-framed-bottom-bl,.x-panel-header-default-framed-bottom-tr,.x-panel-header-default-framed-bottom-br,.x-panel-header-default-framed-bottom-tc,.x-panel-header-default-framed-bottom-bc,.x-panel-header-default-framed-bottom-ml,.x-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-corners.gif)}.x-panel-header-default-framed-bottom-ml,.x-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)}.x-panel-header-default-framed-bottom-mc{padding:4px 2px 1px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl,.x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl{position:relative;right:0}.x-panel-header-default-framed-bottom:after{display:none;content:"x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"}.x-panel-header-default-framed-left{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 4px 5px 4px;border-width:1px 0 1px 1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-panel-header-default-framed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-left-fbg.gif);background-position:left 0;background-color:#cbddf3}.x-nlg .x-panel-header-default-framed-left{background-image:url(images/panel-header/panel-header-default-framed-left-bg.gif);background-position:left 0}.x-nbr .x-panel-header-default-framed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-left-frameInfo{font-family:dv-4-0-0-4-1-0-1-1-5-4-5-4}.x-panel-header-default-framed-left-tl{background-position:0 0}.x-panel-header-default-framed-left-tr{background-position:0 -4px}.x-panel-header-default-framed-left-bl{background-position:0 -8px}.x-panel-header-default-framed-left-br{background-position:0 -12px}.x-panel-header-default-framed-left-ml{background-position:-4px 0}.x-panel-header-default-framed-left-mr{background-position:right 0}.x-panel-header-default-framed-left-tc{background-position:left 0}.x-panel-header-default-framed-left-bc{background-position:left -4px}.x-panel-header-default-framed-left-tr,.x-panel-header-default-framed-left-br,.x-panel-header-default-framed-left-mr{padding-right:0}.x-panel-header-default-framed-left-tl,.x-panel-header-default-framed-left-bl,.x-panel-header-default-framed-left-ml{padding-left:4px}.x-panel-header-default-framed-left-tc{height:4px}.x-panel-header-default-framed-left-bc{height:4px}.x-panel-header-default-framed-left-tl,.x-panel-header-default-framed-left-bl,.x-panel-header-default-framed-left-tr,.x-panel-header-default-framed-left-br,.x-panel-header-default-framed-left-tc,.x-panel-header-default-framed-left-bc,.x-panel-header-default-framed-left-ml,.x-panel-header-default-framed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-corners.gif)}.x-panel-header-default-framed-left-tc,.x-panel-header-default-framed-left-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-sides.gif);background-repeat:repeat-x}.x-panel-header-default-framed-left-mc{padding:2px 4px 2px 1px}.x-strict .x-ie7 .x-panel-header-default-framed-left-tl,.x-strict .x-ie7 .x-panel-header-default-framed-left-bl{position:relative;right:0}.x-panel-header-default-framed-left:after{display:none;content:"x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-left-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-left-bg.gif), corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif)"}.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:4px 5px 4px 5px;border-width:1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-panel-header-default-framed-collapsed-top-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif);background-position:0 top;background-color:#cbddf3}.x-nlg .x-panel-header-default-framed-collapsed-top{background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif);background-position:0 top}.x-nbr .x-panel-header-default-framed-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-top-frameInfo{font-family:dh-4-4-4-4-1-1-1-1-4-5-4-5}.x-panel-header-default-framed-collapsed-top-tl{background-position:0 -8px}.x-panel-header-default-framed-collapsed-top-tr{background-position:right -12px}.x-panel-header-default-framed-collapsed-top-bl{background-position:0 -16px}.x-panel-header-default-framed-collapsed-top-br{background-position:right -20px}.x-panel-header-default-framed-collapsed-top-ml{background-position:0 top}.x-panel-header-default-framed-collapsed-top-mr{background-position:right top}.x-panel-header-default-framed-collapsed-top-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-top-bc{background-position:0 -4px}.x-panel-header-default-framed-collapsed-top-tr,.x-panel-header-default-framed-collapsed-top-br,.x-panel-header-default-framed-collapsed-top-mr{padding-right:4px}.x-panel-header-default-framed-collapsed-top-tl,.x-panel-header-default-framed-collapsed-top-bl,.x-panel-header-default-framed-collapsed-top-ml{padding-left:4px}.x-panel-header-default-framed-collapsed-top-tc{height:4px}.x-panel-header-default-framed-collapsed-top-bc{height:4px}.x-panel-header-default-framed-collapsed-top-tl,.x-panel-header-default-framed-collapsed-top-bl,.x-panel-header-default-framed-collapsed-top-tr,.x-panel-header-default-framed-collapsed-top-br,.x-panel-header-default-framed-collapsed-top-tc,.x-panel-header-default-framed-collapsed-top-bc,.x-panel-header-default-framed-collapsed-top-ml,.x-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif)}.x-panel-header-default-framed-collapsed-top-ml,.x-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)}.x-panel-header-default-framed-collapsed-top-mc{padding:1px 2px 1px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"}.x-panel-header-default-framed-collapsed-right{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-panel-header-default-framed-collapsed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif);background-position:right 0;background-color:#cbddf3}.x-nlg .x-panel-header-default-framed-collapsed-right{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif);background-position:right 0}.x-nbr .x-panel-header-default-framed-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-right-frameInfo{font-family:dv-4-4-4-4-1-1-1-1-5-4-5-4}.x-panel-header-default-framed-collapsed-right-tl{background-position:0 0}.x-panel-header-default-framed-collapsed-right-tr{background-position:0 -4px}.x-panel-header-default-framed-collapsed-right-bl{background-position:0 -8px}.x-panel-header-default-framed-collapsed-right-br{background-position:0 -12px}.x-panel-header-default-framed-collapsed-right-ml{background-position:-4px 0}.x-panel-header-default-framed-collapsed-right-mr{background-position:right 0}.x-panel-header-default-framed-collapsed-right-tc{background-position:right 0}.x-panel-header-default-framed-collapsed-right-bc{background-position:right -4px}.x-panel-header-default-framed-collapsed-right-tr,.x-panel-header-default-framed-collapsed-right-br,.x-panel-header-default-framed-collapsed-right-mr{padding-right:4px}.x-panel-header-default-framed-collapsed-right-tl,.x-panel-header-default-framed-collapsed-right-bl,.x-panel-header-default-framed-collapsed-right-ml{padding-left:4px}.x-panel-header-default-framed-collapsed-right-tc{height:4px}.x-panel-header-default-framed-collapsed-right-bc{height:4px}.x-panel-header-default-framed-collapsed-right-tl,.x-panel-header-default-framed-collapsed-right-bl,.x-panel-header-default-framed-collapsed-right-tr,.x-panel-header-default-framed-collapsed-right-br,.x-panel-header-default-framed-collapsed-right-tc,.x-panel-header-default-framed-collapsed-right-bc,.x-panel-header-default-framed-collapsed-right-ml,.x-panel-header-default-framed-collapsed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif)}.x-panel-header-default-framed-collapsed-right-tc,.x-panel-header-default-framed-collapsed-right-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif);background-repeat:repeat-x}.x-panel-header-default-framed-collapsed-right-mc{padding:2px 1px 2px 1px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-right:after{display:none;content:"x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif)"}.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:4px 5px 4px 5px;border-width:1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(top,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-panel-header-default-framed-collapsed-bottom-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif);background-position:0 bottom;background-color:#cbddf3}.x-nlg .x-panel-header-default-framed-collapsed-bottom{background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif);background-position:0 bottom}.x-nbr .x-panel-header-default-framed-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-bottom-frameInfo{font-family:dh-4-4-4-4-1-1-1-1-4-5-4-5}.x-panel-header-default-framed-collapsed-bottom-tl{background-position:0 -8px}.x-panel-header-default-framed-collapsed-bottom-tr{background-position:right -12px}.x-panel-header-default-framed-collapsed-bottom-bl{background-position:0 -16px}.x-panel-header-default-framed-collapsed-bottom-br{background-position:right -20px}.x-panel-header-default-framed-collapsed-bottom-ml{background-position:0 bottom}.x-panel-header-default-framed-collapsed-bottom-mr{background-position:right bottom}.x-panel-header-default-framed-collapsed-bottom-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-bottom-bc{background-position:0 -4px}.x-panel-header-default-framed-collapsed-bottom-tr,.x-panel-header-default-framed-collapsed-bottom-br,.x-panel-header-default-framed-collapsed-bottom-mr{padding-right:4px}.x-panel-header-default-framed-collapsed-bottom-tl,.x-panel-header-default-framed-collapsed-bottom-bl,.x-panel-header-default-framed-collapsed-bottom-ml{padding-left:4px}.x-panel-header-default-framed-collapsed-bottom-tc{height:4px}.x-panel-header-default-framed-collapsed-bottom-bc{height:4px}.x-panel-header-default-framed-collapsed-bottom-tl,.x-panel-header-default-framed-collapsed-bottom-bl,.x-panel-header-default-framed-collapsed-bottom-tr,.x-panel-header-default-framed-collapsed-bottom-br,.x-panel-header-default-framed-collapsed-bottom-tc,.x-panel-header-default-framed-collapsed-bottom-bc,.x-panel-header-default-framed-collapsed-bottom-ml,.x-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif)}.x-panel-header-default-framed-collapsed-bottom-ml,.x-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)}.x-panel-header-default-framed-collapsed-bottom-mc{padding:1px 2px 1px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-bottom:after{display:none;content:"x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"}.x-panel-header-default-framed-collapsed-left{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-image:none;background-color:#cbddf3;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dae7f6),color-stop(45%,#cddef3),color-stop(46%,#abc7ec),color-stop(50%,#abc7ec),color-stop(51%,#b8cfee),color-stop(100%,#cbddf3));background-image:-webkit-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-moz-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:-o-linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3);background-image:linear-gradient(right,#dae7f6,#cddef3 45%,#abc7ec 46%,#abc7ec 50%,#b8cfee 51%,#cbddf3)}.x-panel-header-default-framed-collapsed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif);background-position:left 0;background-color:#cbddf3}.x-nlg .x-panel-header-default-framed-collapsed-left{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif);background-position:left 0}.x-nbr .x-panel-header-default-framed-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-left-frameInfo{font-family:dv-4-4-4-4-1-1-1-1-5-4-5-4}.x-panel-header-default-framed-collapsed-left-tl{background-position:0 0}.x-panel-header-default-framed-collapsed-left-tr{background-position:0 -4px}.x-panel-header-default-framed-collapsed-left-bl{background-position:0 -8px}.x-panel-header-default-framed-collapsed-left-br{background-position:0 -12px}.x-panel-header-default-framed-collapsed-left-ml{background-position:-4px 0}.x-panel-header-default-framed-collapsed-left-mr{background-position:right 0}.x-panel-header-default-framed-collapsed-left-tc{background-position:left 0}.x-panel-header-default-framed-collapsed-left-bc{background-position:left -4px}.x-panel-header-default-framed-collapsed-left-tr,.x-panel-header-default-framed-collapsed-left-br,.x-panel-header-default-framed-collapsed-left-mr{padding-right:4px}.x-panel-header-default-framed-collapsed-left-tl,.x-panel-header-default-framed-collapsed-left-bl,.x-panel-header-default-framed-collapsed-left-ml{padding-left:4px}.x-panel-header-default-framed-collapsed-left-tc{height:4px}.x-panel-header-default-framed-collapsed-left-bc{height:4px}.x-panel-header-default-framed-collapsed-left-tl,.x-panel-header-default-framed-collapsed-left-bl,.x-panel-header-default-framed-collapsed-left-tr,.x-panel-header-default-framed-collapsed-left-br,.x-panel-header-default-framed-collapsed-left-tc,.x-panel-header-default-framed-collapsed-left-bc,.x-panel-header-default-framed-collapsed-left-ml,.x-panel-header-default-framed-collapsed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif)}.x-panel-header-default-framed-collapsed-left-tc,.x-panel-header-default-framed-collapsed-left-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif);background-repeat:repeat-x}.x-panel-header-default-framed-collapsed-left-mc{padding:2px 1px 2px 1px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-left:after{display:none;content:"x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif)"}.x-panel .x-panel-header-default-framed-top{border-bottom-width:1px!important}.x-panel .x-panel-header-default-framed-right{border-left-width:1px!important}.x-panel .x-panel-header-default-framed-bottom{border-top-width:1px!important}.x-panel .x-panel-header-default-framed-left{border-right-width:1px!important}.x-nbr .x-panel-header-default-framed-collapsed-top{border-bottom-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-right{border-left-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-bottom{border-top-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-left{border-right-width:0!important}.x-panel-header-default-framed-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-default-framed-vertical .x-panel-header-text-container{background-color:#cbddf3;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#cbddf3)}.x-panel-header-default-framed-top{-webkit-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset;box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset}.x-panel-header-default-framed-right{-webkit-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset;box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset}.x-panel-header-default-framed-bottom{-webkit-box-shadow:#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset;box-shadow:#f3f7fb 0 -1px 0 0 inset,#f3f7fb -1px 0 0 0 inset,#f3f7fb 1px 0 0 0 inset}.x-panel-header-default-framed-left{-webkit-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb 1px 0 0 0 inset;-moz-box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb 1px 0 0 0 inset;box-shadow:#f3f7fb 0 1px 0 0 inset,#f3f7fb 0 -1px 0 0 inset,#f3f7fb 1px 0 0 0 inset}.x-panel-header-default-framed .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-default-framed .x-panel-header-glyph{color:#04408c;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-default-framed .x-panel-header-glyph{color:#678ebf}.x-panel-header-default-framed-horizontal .x-panel-header-icon-before-title{margin:0 2px 0 0}.x-panel-header-default-framed-horizontal .x-panel-header-icon-after-title{margin:0 0 0 2px}.x-panel-header-default-framed-vertical .x-panel-header-icon-before-title{margin:0 0 2px 0}.x-panel-header-default-framed-vertical .x-panel-header-icon-after-title{margin:2px 0 0 0}.x-panel-header-default-framed-horizontal .x-tool-after-title{margin:0 0 0 2px}.x-panel-header-default-framed-horizontal .x-tool-before-title{margin:0 2px 0 0}.x-panel-header-default-framed-vertical .x-tool-after-title{margin:2px 0 0 0}.x-panel-header-default-framed-vertical .x-tool-before-title{margin:0 0 2px 0}.x-panel-default-framed-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-tip-anchor{position:absolute;overflow:hidden;height:10px;width:10px;border-style:solid;border-width:5px;border-color:#8eaace;zoom:1}.x-content-box .x-tip-anchor{height:0;width:0}.x-tip-anchor-top{border-top-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-bottom{border-bottom-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-bottom-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-left{border-top-color:transparent;border-bottom-color:transparent;border-left-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-left-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-right{border-top-color:transparent;border-bottom-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.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:#e9f2ff}.x-tip-default-mc{background-color:#e9f2ff}.x-nbr .x-tip-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tip-default-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-tip-default-tl{background-position:0 -6px}.x-tip-default-tr{background-position:right -9px}.x-tip-default-bl{background-position:0 -12px}.x-tip-default-br{background-position:right -15px}.x-tip-default-ml{background-position:0 top}.x-tip-default-mr{background-position:right top}.x-tip-default-tc{background-position:0 0}.x-tip-default-bc{background-position:0 -3px}.x-tip-default-tr,.x-tip-default-br,.x-tip-default-mr{padding-right:3px}.x-tip-default-tl,.x-tip-default-bl,.x-tip-default-ml{padding-left:3px}.x-tip-default-tc{height:3px}.x-tip-default-bc{height:3px}.x-tip-default-tl,.x-tip-default-bl,.x-tip-default-tr,.x-tip-default-br,.x-tip-default-tc,.x-tip-default-bc,.x-tip-default-ml,.x-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-corners.gif)}.x-tip-default-ml,.x-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-sides.gif);background-repeat:repeat-y}.x-tip-default-mc{padding:0}.x-strict .x-ie7 .x-tip-default-tl,.x-strict .x-ie7 .x-tip-default-bl{position:relative;right:0}.x-tip-default:after{display:none;content:"x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"}.x-tip-default{border-color:#8eaace}.x-tip-default .x-tool-img{background-color:#e9f2ff}.x-tip-header-default .x-tool-after-title{margin:0 0 0 6px}.x-tip-header-default .x-tool-before-title{margin:0 6px 0 0}.x-tip-header-body-default{padding:3px 3px 0 3px}.x-tip-header-text-container-default{color:#444;font-size:11px;font-weight:bold}.x-tip-body-default{padding:3px;color:#444;font-size:11px;font-weight:normal}.x-tip-body-default a{color:#2a2a2a}.x-tip-form-invalid{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:white}.x-tip-form-invalid-mc{background-color:white}.x-nbr .x-tip-form-invalid{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tip-form-invalid-frameInfo{font-family:th-5-5-5-5-1-1-1-1-4-4-4-4}.x-tip-form-invalid-tl{background-position:0 -10px}.x-tip-form-invalid-tr{background-position:right -15px}.x-tip-form-invalid-bl{background-position:0 -20px}.x-tip-form-invalid-br{background-position:right -25px}.x-tip-form-invalid-ml{background-position:0 top}.x-tip-form-invalid-mr{background-position:right top}.x-tip-form-invalid-tc{background-position:0 0}.x-tip-form-invalid-bc{background-position:0 -5px}.x-tip-form-invalid-tr,.x-tip-form-invalid-br,.x-tip-form-invalid-mr{padding-right:5px}.x-tip-form-invalid-tl,.x-tip-form-invalid-bl,.x-tip-form-invalid-ml{padding-left:5px}.x-tip-form-invalid-tc{height:5px}.x-tip-form-invalid-bc{height:5px}.x-tip-form-invalid-tl,.x-tip-form-invalid-bl,.x-tip-form-invalid-tr,.x-tip-form-invalid-br,.x-tip-form-invalid-tc,.x-tip-form-invalid-bc,.x-tip-form-invalid-ml,.x-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-corners.gif)}.x-tip-form-invalid-ml,.x-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-sides.gif);background-repeat:repeat-y}.x-tip-form-invalid-mc{padding:0}.x-strict .x-ie7 .x-tip-form-invalid-tl,.x-strict .x-ie7 .x-tip-form-invalid-bl{position:relative;right:0}.x-tip-form-invalid:after{display:none;content:"x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"}.x-tip-form-invalid{border-color:#a1311f;-webkit-box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset;-moz-box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset;box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset}.x-tip-form-invalid .x-tool-img{background-color:white}.x-tip-header-form-invalid .x-tool-after-title{margin:0 0 0 6px}.x-tip-header-form-invalid .x-tool-before-title{margin:0 6px 0 0}.x-tip-header-body-form-invalid{padding:3px 3px 0 3px}.x-tip-header-text-container-form-invalid{color:#444;font-size:11px;font-weight:bold}.x-tip-body-form-invalid{padding:3px 3px 3px 22px;color:#444;font-size:11px;font-weight:normal}.x-tip-body-form-invalid a{color:#2a2a2a}.x-tip-body-form-invalid{background:1px 1px no-repeat;background-image:url(images/form/exclamation.gif)}.x-tip-body-form-invalid li{margin-bottom:4px}.x-tip-body-form-invalid li.last{margin-bottom:0}.x-btn-group-default{border-color:#b7c8d7;-webkit-box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset;-moz-box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset;box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset}.x-btn-group-header-default{margin:2px 2px 0 2px;padding:1px 0;line-height:15px;background:#c2d8f0;-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}.x-btn-group-header-default .x-tool-img{background-color:#c2d8f0}.x-btn-group-header-text-container-default{font:normal 11px tahoma,arial,verdana,sans-serif;line-height:15px;color:#3e6aaa}.x-btn-group-body-default{padding:0 1px}.x-btn-group-body-default .x-table-layout{border-spacing:0}.x-btn-group-default-framed{-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:1px 1px 1px 1px;border-width:1px;border-style:solid;background-color:#d0def0}.x-btn-group-default-framed-mc{background-color:#d0def0}.x-nbr .x-btn-group-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-group-default-framed-frameInfo{font-family:dh-2-2-2-2-1-1-1-1-1-1-1-1}.x-btn-group-default-framed-tl{background-position:0 -4px}.x-btn-group-default-framed-tr{background-position:right -6px}.x-btn-group-default-framed-bl{background-position:0 -8px}.x-btn-group-default-framed-br{background-position:right -10px}.x-btn-group-default-framed-ml{background-position:0 top}.x-btn-group-default-framed-mr{background-position:right top}.x-btn-group-default-framed-tc{background-position:0 0}.x-btn-group-default-framed-bc{background-position:0 -2px}.x-btn-group-default-framed-tr,.x-btn-group-default-framed-br,.x-btn-group-default-framed-mr{padding-right:2px}.x-btn-group-default-framed-tl,.x-btn-group-default-framed-bl,.x-btn-group-default-framed-ml{padding-left:2px}.x-btn-group-default-framed-tc{height:2px}.x-btn-group-default-framed-bc{height:2px}.x-btn-group-default-framed-tl,.x-btn-group-default-framed-bl,.x-btn-group-default-framed-tr,.x-btn-group-default-framed-br,.x-btn-group-default-framed-tc,.x-btn-group-default-framed-bc,.x-btn-group-default-framed-ml,.x-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-corners.gif)}.x-btn-group-default-framed-ml,.x-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-sides.gif);background-repeat:repeat-y}.x-btn-group-default-framed-mc{padding:0}.x-strict .x-ie7 .x-btn-group-default-framed-tl,.x-strict .x-ie7 .x-btn-group-default-framed-bl{position:relative;right:0}.x-btn-group-default-framed:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"}.x-btn-group-default-framed-notitle{-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:1px 1px 1px 1px;border-width:1px;border-style:solid;background-color:#d0def0}.x-btn-group-default-framed-notitle-mc{background-color:#d0def0}.x-nbr .x-btn-group-default-framed-notitle{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-group-default-framed-notitle-frameInfo{font-family:dh-2-2-2-2-1-1-1-1-1-1-1-1}.x-btn-group-default-framed-notitle-tl{background-position:0 -4px}.x-btn-group-default-framed-notitle-tr{background-position:right -6px}.x-btn-group-default-framed-notitle-bl{background-position:0 -8px}.x-btn-group-default-framed-notitle-br{background-position:right -10px}.x-btn-group-default-framed-notitle-ml{background-position:0 top}.x-btn-group-default-framed-notitle-mr{background-position:right top}.x-btn-group-default-framed-notitle-tc{background-position:0 0}.x-btn-group-default-framed-notitle-bc{background-position:0 -2px}.x-btn-group-default-framed-notitle-tr,.x-btn-group-default-framed-notitle-br,.x-btn-group-default-framed-notitle-mr{padding-right:2px}.x-btn-group-default-framed-notitle-tl,.x-btn-group-default-framed-notitle-bl,.x-btn-group-default-framed-notitle-ml{padding-left:2px}.x-btn-group-default-framed-notitle-tc{height:2px}.x-btn-group-default-framed-notitle-bc{height:2px}.x-btn-group-default-framed-notitle-tl,.x-btn-group-default-framed-notitle-bl,.x-btn-group-default-framed-notitle-tr,.x-btn-group-default-framed-notitle-br,.x-btn-group-default-framed-notitle-tc,.x-btn-group-default-framed-notitle-bc,.x-btn-group-default-framed-notitle-ml,.x-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-corners.gif)}.x-btn-group-default-framed-notitle-ml,.x-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-sides.gif);background-repeat:repeat-y}.x-btn-group-default-framed-notitle-mc{padding:0}.x-strict .x-ie7 .x-btn-group-default-framed-notitle-tl,.x-strict .x-ie7 .x-btn-group-default-framed-notitle-bl{position:relative;right:0}.x-btn-group-default-framed-notitle:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"}.x-btn-group-default-framed{border-color:#b7c8d7;-webkit-box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset;-moz-box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset;box-shadow:#e3ebf5 0 1px 0 0 inset,#e3ebf5 0 -1px 0 0 inset,#e3ebf5 -1px 0 0 0 inset,#e3ebf5 1px 0 0 0 inset}.x-btn-group-header-default-framed{margin:2px 2px 0 2px;padding:1px 0;line-height:15px;background:#c2d8f0;-moz-border-radius-topleft:2px;-webkit-border-top-left-radius:2px;border-top-left-radius:2px;-moz-border-radius-topright:2px;-webkit-border-top-right-radius:2px;border-top-right-radius:2px}.x-btn-group-header-default-framed .x-tool-img{background-color:#c2d8f0}.x-btn-group-header-text-container-default-framed{font:normal 11px tahoma,arial,verdana,sans-serif;line-height:15px;color:#3e6aaa}.x-btn-group-body-default-framed{padding:0 1px 0 1px}.x-btn-group-body-default-framed .x-table-layout{border-spacing:0}.x-window-ghost{filter:alpha(opacity=65);opacity:.65}.x-window-default{border-color:#a2b1c5;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;-webkit-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset}.x-window-default{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:#ced9e7}.x-window-default-mc{background-color:#ced9e7}.x-nbr .x-window-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-default-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-4-4-4}.x-window-default-tl{background-position:0 -10px}.x-window-default-tr{background-position:right -15px}.x-window-default-bl{background-position:0 -20px}.x-window-default-br{background-position:right -25px}.x-window-default-ml{background-position:0 top}.x-window-default-mr{background-position:right top}.x-window-default-tc{background-position:0 0}.x-window-default-bc{background-position:0 -5px}.x-window-default-tr,.x-window-default-br,.x-window-default-mr{padding-right:5px}.x-window-default-tl,.x-window-default-bl,.x-window-default-ml{padding-left:5px}.x-window-default-tc{height:5px}.x-window-default-bc{height:5px}.x-window-default-tl,.x-window-default-bl,.x-window-default-tr,.x-window-default-br,.x-window-default-tc,.x-window-default-bc,.x-window-default-ml,.x-window-default-mr{zoom:1;background-image:url(images/window/window-default-corners.gif)}.x-window-default-ml,.x-window-default-mr{zoom:1;background-image:url(images/window/window-default-sides.gif);background-repeat:repeat-y}.x-window-default-mc{padding:0}.x-strict .x-ie7 .x-window-default-tl,.x-strict .x-ie7 .x-window-default-bl{position:relative;right:0}.x-window-default:after{display:none;content:"x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"}.x-window-body-default{border-color:#99bbe8;border-width:1px;border-style:solid;background:#dfe8f6;color:black}.x-window-header-default{font-size:11px;border-color:#a2b1c5;zoom:1;background-color:#ced9e7}.x-window-header-default .x-tool-img{background-color:#ced9e7}.x-window-header-default-vertical .x-window-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-window-header-default-vertical .x-window-header-text-container{background-color:#ced9e7;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#ced9e7)}.x-window-header-text-container-default{color:#04468c;font-weight:bold;line-height:15px;font-family:tahoma,arial,verdana,sans-serif;font-size:11px;padding:0 2px 1px;text-transform:none}.x-window-header-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:4px 5px 0 5px;border-width:1px 1px 0 1px;border-style:solid;background-color:#ced9e7}.x-window-header-default-top-mc{background-color:#ced9e7}.x-nbr .x-window-header-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-top-frameInfo{font-family:dh-5-5-0-0-1-1-0-1-4-5-0-5}.x-window-header-default-top-tl{background-position:0 -10px}.x-window-header-default-top-tr{background-position:right -15px}.x-window-header-default-top-bl{background-position:0 -20px}.x-window-header-default-top-br{background-position:right -25px}.x-window-header-default-top-ml{background-position:0 top}.x-window-header-default-top-mr{background-position:right top}.x-window-header-default-top-tc{background-position:0 0}.x-window-header-default-top-bc{background-position:0 -5px}.x-window-header-default-top-tr,.x-window-header-default-top-br,.x-window-header-default-top-mr{padding-right:5px}.x-window-header-default-top-tl,.x-window-header-default-top-bl,.x-window-header-default-top-ml{padding-left:5px}.x-window-header-default-top-tc{height:5px}.x-window-header-default-top-bc{height:0}.x-window-header-default-top-tl,.x-window-header-default-top-bl,.x-window-header-default-top-tr,.x-window-header-default-top-br,.x-window-header-default-top-tc,.x-window-header-default-top-bc,.x-window-header-default-top-ml,.x-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-corners.gif)}.x-window-header-default-top-ml,.x-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-sides.gif);background-repeat:repeat-y}.x-window-header-default-top-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-top-tl,.x-strict .x-ie7 .x-window-header-default-top-bl{position:relative;right:0}.x-window-header-default-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"}.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:5px;-webkit-border-top-right-radius:5px;border-top-right-radius:5px;-moz-border-radius-bottomright:5px;-webkit-border-bottom-right-radius:5px;border-bottom-right-radius:5px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 4px 5px 0;border-width:1px 1px 1px 0;border-style:solid;background-color:#ced9e7}.x-window-header-default-right-mc{background-color:#ced9e7}.x-nbr .x-window-header-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-right-frameInfo{font-family:dh-0-5-5-0-1-1-1-0-5-4-5-0}.x-window-header-default-right-tl{background-position:0 -10px}.x-window-header-default-right-tr{background-position:right -15px}.x-window-header-default-right-bl{background-position:0 -20px}.x-window-header-default-right-br{background-position:right -25px}.x-window-header-default-right-ml{background-position:0 top}.x-window-header-default-right-mr{background-position:right top}.x-window-header-default-right-tc{background-position:0 0}.x-window-header-default-right-bc{background-position:0 -5px}.x-window-header-default-right-tr,.x-window-header-default-right-br,.x-window-header-default-right-mr{padding-right:5px}.x-window-header-default-right-tl,.x-window-header-default-right-bl,.x-window-header-default-right-ml{padding-left:0}.x-window-header-default-right-tc{height:5px}.x-window-header-default-right-bc{height:5px}.x-window-header-default-right-tl,.x-window-header-default-right-bl,.x-window-header-default-right-tr,.x-window-header-default-right-br,.x-window-header-default-right-tc,.x-window-header-default-right-bc,.x-window-header-default-right-ml,.x-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-corners.gif)}.x-window-header-default-right-ml,.x-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-sides.gif);background-repeat:repeat-y}.x-window-header-default-right-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-right-tl,.x-strict .x-ie7 .x-window-header-default-right-bl{position:relative;right:0}.x-window-header-default-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"}.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: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:0 5px 4px 5px;border-width:0 1px 1px 1px;border-style:solid;background-color:#ced9e7}.x-window-header-default-bottom-mc{background-color:#ced9e7}.x-nbr .x-window-header-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-bottom-frameInfo{font-family:dh-0-0-5-5-0-1-1-1-0-5-4-5}.x-window-header-default-bottom-tl{background-position:0 -10px}.x-window-header-default-bottom-tr{background-position:right -15px}.x-window-header-default-bottom-bl{background-position:0 -20px}.x-window-header-default-bottom-br{background-position:right -25px}.x-window-header-default-bottom-ml{background-position:0 top}.x-window-header-default-bottom-mr{background-position:right top}.x-window-header-default-bottom-tc{background-position:0 0}.x-window-header-default-bottom-bc{background-position:0 -5px}.x-window-header-default-bottom-tr,.x-window-header-default-bottom-br,.x-window-header-default-bottom-mr{padding-right:5px}.x-window-header-default-bottom-tl,.x-window-header-default-bottom-bl,.x-window-header-default-bottom-ml{padding-left:5px}.x-window-header-default-bottom-tc{height:0}.x-window-header-default-bottom-bc{height:5px}.x-window-header-default-bottom-tl,.x-window-header-default-bottom-bl,.x-window-header-default-bottom-tr,.x-window-header-default-bottom-br,.x-window-header-default-bottom-tc,.x-window-header-default-bottom-bc,.x-window-header-default-bottom-ml,.x-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-corners.gif)}.x-window-header-default-bottom-ml,.x-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-sides.gif);background-repeat:repeat-y}.x-window-header-default-bottom-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-bottom-tl,.x-strict .x-ie7 .x-window-header-default-bottom-bl{position:relative;right:0}.x-window-header-default-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"}.x-window-header-default-left{-moz-border-radius-topleft:5px;-webkit-border-top-left-radius:5px;border-top-left-radius:5px;-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:5px;-webkit-border-bottom-left-radius:5px;border-bottom-left-radius:5px;padding:5px 0 5px 4px;border-width:1px 0 1px 1px;border-style:solid;background-color:#ced9e7}.x-window-header-default-left-mc{background-color:#ced9e7}.x-nbr .x-window-header-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-left-frameInfo{font-family:dh-5-0-0-5-1-0-1-1-5-0-5-4}.x-window-header-default-left-tl{background-position:0 -10px}.x-window-header-default-left-tr{background-position:right -15px}.x-window-header-default-left-bl{background-position:0 -20px}.x-window-header-default-left-br{background-position:right -25px}.x-window-header-default-left-ml{background-position:0 top}.x-window-header-default-left-mr{background-position:right top}.x-window-header-default-left-tc{background-position:0 0}.x-window-header-default-left-bc{background-position:0 -5px}.x-window-header-default-left-tr,.x-window-header-default-left-br,.x-window-header-default-left-mr{padding-right:0}.x-window-header-default-left-tl,.x-window-header-default-left-bl,.x-window-header-default-left-ml{padding-left:5px}.x-window-header-default-left-tc{height:5px}.x-window-header-default-left-bc{height:5px}.x-window-header-default-left-tl,.x-window-header-default-left-bl,.x-window-header-default-left-tr,.x-window-header-default-left-br,.x-window-header-default-left-tc,.x-window-header-default-left-bc,.x-window-header-default-left-ml,.x-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-corners.gif)}.x-window-header-default-left-ml,.x-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-sides.gif);background-repeat:repeat-y}.x-window-header-default-left-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-left-tl,.x-strict .x-ie7 .x-window-header-default-left-bl{position:relative;right:0}.x-window-header-default-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"}.x-window-header-default-collapsed-top{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-color:#ced9e7}.x-window-header-default-collapsed-top-mc{background-color:#ced9e7}.x-nbr .x-window-header-default-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-top-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-5-4-5}.x-window-header-default-collapsed-top-tl{background-position:0 -10px}.x-window-header-default-collapsed-top-tr{background-position:right -15px}.x-window-header-default-collapsed-top-bl{background-position:0 -20px}.x-window-header-default-collapsed-top-br{background-position:right -25px}.x-window-header-default-collapsed-top-ml{background-position:0 top}.x-window-header-default-collapsed-top-mr{background-position:right top}.x-window-header-default-collapsed-top-tc{background-position:0 0}.x-window-header-default-collapsed-top-bc{background-position:0 -5px}.x-window-header-default-collapsed-top-tr,.x-window-header-default-collapsed-top-br,.x-window-header-default-collapsed-top-mr{padding-right:5px}.x-window-header-default-collapsed-top-tl,.x-window-header-default-collapsed-top-bl,.x-window-header-default-collapsed-top-ml{padding-left:5px}.x-window-header-default-collapsed-top-tc{height:5px}.x-window-header-default-collapsed-top-bc{height:5px}.x-window-header-default-collapsed-top-tl,.x-window-header-default-collapsed-top-bl,.x-window-header-default-collapsed-top-tr,.x-window-header-default-collapsed-top-br,.x-window-header-default-collapsed-top-tc,.x-window-header-default-collapsed-top-bc,.x-window-header-default-collapsed-top-ml,.x-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-corners.gif)}.x-window-header-default-collapsed-top-ml,.x-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-top-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-top-bl{position:relative;right:0}.x-window-header-default-collapsed-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"}.x-window-header-default-collapsed-right{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-color:#ced9e7}.x-window-header-default-collapsed-right-mc{background-color:#ced9e7}.x-nbr .x-window-header-default-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-right-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-5-4-5-4}.x-window-header-default-collapsed-right-tl{background-position:0 -10px}.x-window-header-default-collapsed-right-tr{background-position:right -15px}.x-window-header-default-collapsed-right-bl{background-position:0 -20px}.x-window-header-default-collapsed-right-br{background-position:right -25px}.x-window-header-default-collapsed-right-ml{background-position:0 top}.x-window-header-default-collapsed-right-mr{background-position:right top}.x-window-header-default-collapsed-right-tc{background-position:0 0}.x-window-header-default-collapsed-right-bc{background-position:0 -5px}.x-window-header-default-collapsed-right-tr,.x-window-header-default-collapsed-right-br,.x-window-header-default-collapsed-right-mr{padding-right:5px}.x-window-header-default-collapsed-right-tl,.x-window-header-default-collapsed-right-bl,.x-window-header-default-collapsed-right-ml{padding-left:5px}.x-window-header-default-collapsed-right-tc{height:5px}.x-window-header-default-collapsed-right-bc{height:5px}.x-window-header-default-collapsed-right-tl,.x-window-header-default-collapsed-right-bl,.x-window-header-default-collapsed-right-tr,.x-window-header-default-collapsed-right-br,.x-window-header-default-collapsed-right-tc,.x-window-header-default-collapsed-right-bc,.x-window-header-default-collapsed-right-ml,.x-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-corners.gif)}.x-window-header-default-collapsed-right-ml,.x-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-right-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-right-bl{position:relative;right:0}.x-window-header-default-collapsed-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"}.x-window-header-default-collapsed-bottom{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-color:#ced9e7}.x-window-header-default-collapsed-bottom-mc{background-color:#ced9e7}.x-nbr .x-window-header-default-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-bottom-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-5-4-5}.x-window-header-default-collapsed-bottom-tl{background-position:0 -10px}.x-window-header-default-collapsed-bottom-tr{background-position:right -15px}.x-window-header-default-collapsed-bottom-bl{background-position:0 -20px}.x-window-header-default-collapsed-bottom-br{background-position:right -25px}.x-window-header-default-collapsed-bottom-ml{background-position:0 top}.x-window-header-default-collapsed-bottom-mr{background-position:right top}.x-window-header-default-collapsed-bottom-tc{background-position:0 0}.x-window-header-default-collapsed-bottom-bc{background-position:0 -5px}.x-window-header-default-collapsed-bottom-tr,.x-window-header-default-collapsed-bottom-br,.x-window-header-default-collapsed-bottom-mr{padding-right:5px}.x-window-header-default-collapsed-bottom-tl,.x-window-header-default-collapsed-bottom-bl,.x-window-header-default-collapsed-bottom-ml{padding-left:5px}.x-window-header-default-collapsed-bottom-tc{height:5px}.x-window-header-default-collapsed-bottom-bc{height:5px}.x-window-header-default-collapsed-bottom-tl,.x-window-header-default-collapsed-bottom-bl,.x-window-header-default-collapsed-bottom-tr,.x-window-header-default-collapsed-bottom-br,.x-window-header-default-collapsed-bottom-tc,.x-window-header-default-collapsed-bottom-bc,.x-window-header-default-collapsed-bottom-ml,.x-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-corners.gif)}.x-window-header-default-collapsed-bottom-ml,.x-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-bottom-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl{position:relative;right:0}.x-window-header-default-collapsed-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"}.x-window-header-default-collapsed-left{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-color:#ced9e7}.x-window-header-default-collapsed-left-mc{background-color:#ced9e7}.x-nbr .x-window-header-default-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-left-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-5-4-5-4}.x-window-header-default-collapsed-left-tl{background-position:0 -10px}.x-window-header-default-collapsed-left-tr{background-position:right -15px}.x-window-header-default-collapsed-left-bl{background-position:0 -20px}.x-window-header-default-collapsed-left-br{background-position:right -25px}.x-window-header-default-collapsed-left-ml{background-position:0 top}.x-window-header-default-collapsed-left-mr{background-position:right top}.x-window-header-default-collapsed-left-tc{background-position:0 0}.x-window-header-default-collapsed-left-bc{background-position:0 -5px}.x-window-header-default-collapsed-left-tr,.x-window-header-default-collapsed-left-br,.x-window-header-default-collapsed-left-mr{padding-right:5px}.x-window-header-default-collapsed-left-tl,.x-window-header-default-collapsed-left-bl,.x-window-header-default-collapsed-left-ml{padding-left:5px}.x-window-header-default-collapsed-left-tc{height:5px}.x-window-header-default-collapsed-left-bc{height:5px}.x-window-header-default-collapsed-left-tl,.x-window-header-default-collapsed-left-bl,.x-window-header-default-collapsed-left-tr,.x-window-header-default-collapsed-left-br,.x-window-header-default-collapsed-left-tc,.x-window-header-default-collapsed-left-bc,.x-window-header-default-collapsed-left-ml,.x-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-corners.gif)}.x-window-header-default-collapsed-left-ml,.x-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-left-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-left-bl{position:relative;right:0}.x-window-header-default-collapsed-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"}.x-window-header-default-top{-webkit-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset}.x-window-header-default-right{-webkit-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset;box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset}.x-window-header-default-bottom{-webkit-box-shadow:#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset;box-shadow:#ecf2fb 0 -1px 0 0 inset,#ecf2fb -1px 0 0 0 inset,#ecf2fb 1px 0 0 0 inset}.x-window-header-default-left{-webkit-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb 1px 0 0 0 inset;-moz-box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb 1px 0 0 0 inset;box-shadow:#ecf2fb 0 1px 0 0 inset,#ecf2fb 0 -1px 0 0 inset,#ecf2fb 1px 0 0 0 inset}.x-window-header-default .x-window-header-icon{width:16px;height:16px;color:#04468c;font-size:16px;line-height:16px;background-position:center center}.x-window-header-default .x-window-header-glyph{color:#04468c;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-window-header-default .x-window-header-glyph{color:#698fb9}.x-window-header-default-horizontal .x-window-header-icon-before-title{margin:0 2px 0 0}.x-window-header-default-horizontal .x-window-header-icon-after-title{margin:0 0 0 2px}.x-window-header-default-vertical .x-window-header-icon-before-title{margin:0 0 2px 0}.x-window-header-default-vertical .x-window-header-icon-after-title{margin:2px 0 0 0}.x-window-header-default-horizontal .x-tool-after-title{margin:0 0 0 2px}.x-window-header-default-horizontal .x-tool-before-title{margin:0 2px 0 0}.x-window-header-default-vertical .x-tool-after-title{margin:2px 0 0 0}.x-window-header-default-vertical .x-tool-before-title{margin:0 0 2px 0}.x-window-default-collapsed .x-window-header{border-width:1px!important}.x-nbr .x-window-default-collapsed .x-window-header{border-width:0!important}.x-form-invalid-under{padding:2px 2px 2px 20px;color:#c0272b;font:normal 11px tahoma,arial,verdana,sans-serif;line-height:16px;background:no-repeat 0 2px;background-image:url(images/form/exclamation.gif)}div.x-lbl-top-err-icon{margin-bottom:3px}.x-form-invalid-icon{width:16px;height:16px;margin:0 1px;background-image:url(images/form/exclamation.gif);background-repeat:no-repeat}.x-form-item-label{color:black;font:normal 12px/14px tahoma,arial,verdana,sans-serif;margin-top:4px}.x-toolbar-item .x-form-item-label{font:normal 11px/13px tahoma,arial,verdana,sans-serif;margin-top:4px}.x-autocontainer-form-item,.x-anchor-form-item,.x-vbox-form-item,.x-table-form-item{margin-bottom:5px}.x-ie6 .x-form-form-item td{border-top-width:0}.x-ie6 td.x-form-item-pad{height:5px}.x-form-field{color:black}.x-form-item,.x-form-field{font:normal 12px tahoma,arial,verdana,sans-serif}.x-form-type-text textarea.x-form-invalid-field,.x-form-type-text input.x-form-invalid-field,.x-form-type-password textarea.x-form-invalid-field,.x-form-type-password input.x-form-invalid-field,.x-form-type-number textarea.x-form-invalid-field,.x-form-type-number input.x-form-invalid-field,.x-form-type-email textarea.x-form-invalid-field,.x-form-type-email input.x-form-invalid-field,.x-form-type-search textarea.x-form-invalid-field,.x-form-type-search input.x-form-invalid-field,.x-form-type-tel textarea.x-form-invalid-field,.x-form-type-tel input.x-form-invalid-field{background-color:white;background-image:url(images/grid/invalid_line.gif);background-repeat:repeat-x;background-position:bottom;border-color:#c30}.x-item-disabled .x-form-item-label,.x-item-disabled .x-form-field,.x-item-disabled .x-form-display-field,.x-item-disabled .x-form-cb-label,.x-item-disabled .x-form-trigger{filter:alpha(opacity=30);opacity:.3}.x-form-text{color:black;padding:1px 3px 2px 3px;background:white repeat-x 0 0;border-width:1px;border-style:solid;border-color:#b5b8c8;background-image:url(images/form/text-bg.gif);height:22px;line-height:17px}.x-field-toolbar .x-form-text{height:20px;line-height:15px}.x-content-box .x-form-text{height:17px}.x-content-box .x-field-toolbar .x-form-text{height:15px}.x-form-focus{border-color:#7eadd9}.x-form-empty-field,textarea.x-form-empty-field{color:gray}.x-quirks .x-ie .x-form-text,.x-ie7m .x-form-text{margin-top:-1px;margin-bottom:-1px}.x-form-textarea{line-height:normal;height:auto;background-image:url(images/form/text-bg.gif)}.x-form-display-field-body{height:22px}.x-toolbar-item .x-form-display-field-body{height:20px}.x-form-display-field{font:normal 12px/14px tahoma,arial,verdana,sans-serif;color:black;margin-top:4px}.x-toolbar-item .x-form-display-field{margin-top:4px;font:normal 11px/13px tahoma,arial,verdana,sans-serif}.x-message-box .x-window-body{background-color:#ced9e7;border-width:0}.x-message-box-info,.x-message-box-warning,.x-message-box-question,.x-message-box-error{background-position:top left;background-repeat:no-repeat}.x-message-box-info{background-image:url(images/shared/icon-info.gif)}.x-message-box-warning{background-image:url(images/shared/icon-warning.gif)}.x-message-box-question{background-image:url(images/shared/icon-question.gif)}.x-message-box-error{background-image:url(images/shared/icon-error.gif)}.x-form-cb-wrap{height:22px}.x-toolbar-item .x-form-cb-wrap{height:20px}.x-form-cb{margin-top:5px}.x-toolbar-item .x-form-cb{margin-top:4px}.x-form-checkbox{width:13px;height:13px;background:url(images/form/checkbox.gif) no-repeat}.x-form-cb-checked .x-form-checkbox{background-position:0 -13px}.x-form-checkbox-focus{background-position:-13px 0}.x-form-cb-checked .x-form-checkbox-focus{background-position:-13px -13px}.x-form-cb-label{margin-top:4px;font:normal 12px/14px tahoma,arial,verdana,sans-serif}.x-toolbar-item .x-form-cb-label{font:normal 11px/13px tahoma,arial,verdana,sans-serif;margin-top:4px}.x-form-cb-label-before{margin-right:4px}.x-form-cb-label-after{margin-left:4px}.x-form-checkboxgroup-body{padding:0 4px}.x-form-invalid .x-form-checkboxgroup-body{border:1px solid #c30;background-image:url(images/grid/invalid_line.gif);background-repeat:repeat-x;background-position:bottom}.x-check-group-alt{background:#d1ddef;border-top:1px dotted #b5b8c8;border-bottom:1px dotted #b5b8c8}.x-form-check-group-label{color:black;padding:2px;margin:0 30px 5px 0;border-width:0 0 1px 0;border-style:solid;border-color:black}.x-fieldset{border:1px solid #b5b8c8;padding:0 10px;margin:0 0 10px}.x-ie8m .x-fieldset,.x-quirks .x-ie .x-fieldset{padding-top:0}.x-ie8m .x-fieldset .x-fieldset-body,.x-quirks .x-ie .x-fieldset .x-fieldset-body{padding-top:0}.x-fieldset-header-checkbox{line-height:14px;margin:1px 3px 0 0}.x-fieldset-header{padding:0 3px 1px}.x-fieldset-header .x-tool{margin-top:1px;padding:0}.x-fieldset-header .x-form-cb-wrap{padding:1px 0}.x-fieldset-header-text{font:11px/14px bold tahoma,arial,verdana,sans-serif;color:#15428b;padding:1px 0}.x-fieldset-header-text-collapsible{cursor:pointer}.x-fieldset-with-title .x-fieldset-header-checkbox,.x-fieldset-with-title .x-tool{margin:1px 3px 0 0}.x-webkit .x-fieldset-header{-webkit-padding-start:3px;-webkit-padding-end:3px}.x-opera .x-fieldset-with-legend{margin-top:-1px}.x-opera.x-mac .x-fieldset-header-text{padding:2px 0 0}.x-strict .x-ie8 .x-fieldset-header{margin-bottom:-1px}.x-strict .x-ie8 .x-fieldset-header .x-tool,.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text,.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox{position:relative;top:-1px}.x-quirks .x-ie .x-fieldset-header,.x-ie8m .x-fieldset-header{padding-left:1px;padding-right:1px}.x-fieldset-collapsed .x-fieldset-body{display:none}.x-fieldset-collapsed{padding-bottom:0!important;border-width:1px 1px 0 1px!important;border-left-color:transparent!important;border-right-color:transparent!important}.x-ie6 .x-fieldset-collapsed{border-width:1px 0 0 0!important;padding-bottom:0!important;margin-left:1px;margin-right:1px}.x-ie .x-fieldset-bwrap{zoom:1}.x-fieldset .x-tool-toggle{background-position:0 -60px}.x-fieldset .x-tool-over .x-tool-toggle{background-position:-15px -60px}.x-fieldset-collapsed .x-tool-toggle{background-position:0 -75px}.x-fieldset-collapsed .x-tool-over .x-tool-toggle{background-position:-15px -75px}.x-ie .x-fieldset-noborder legend{position:relative;margin-bottom:23px}.x-ie .x-fieldset-noborder legend span{position:absolute;left:16px}.x-fieldset{overflow:hidden}.x-fieldset-bwrap{overflow:hidden;zoom:1}.x-fieldset-body{overflow:hidden}.x-form-radio{width:13px;height:13px;background:url(images/form/radio.gif) no-repeat}.x-form-cb-checked .x-form-radio{background-position:0 -13px}.x-form-radio-focus{background-position:-13px 0}.x-form-cb-checked .x-form-radio-focus{background-position:-13px -13px}.x-form-trigger{background:url(images/form/trigger.gif);width:17px;border-width:0 0 1px;border-color:#b5b8c8;border-style:solid}.x-trigger-cell{background-color:white;width:17px}.x-form-trigger-over{background-position:-17px 0;border-color:#7eadd9}.x-form-trigger-wrap-focus .x-form-trigger{background-position:-51px 0;border-color:#7eadd9}.x-form-trigger-wrap-focus .x-form-trigger-over{background-position:-68px 0}.x-form-trigger-click,.x-form-trigger-wrap-focus .x-form-trigger-click{background-position:-34px 0}.x-form-clear-trigger{background-image:url(images/form/clear-trigger.gif)}.x-form-search-trigger{background-image:url(images/form/search-trigger.gif)}.x-quirks .prefixie6 .x-form-trigger-input-cell{height:22px}.x-quirks .prefixie6 .x-field-toolbar .x-form-trigger-input-cell{height:20px}div.x-form-spinner-up,div.x-form-spinner-down{background-image:url(images/form/spinner.gif);background-color:white;width:17px;height:11px}.x-form-spinner-down{background-position:0 -11px}.x-form-trigger-wrap-focus .x-form-spinner-down{background-position:-51px -11px}.x-form-trigger-wrap .x-form-spinner-down-over{background-position:-17px -11px}.x-form-trigger-wrap-focus .x-form-spinner-down-over{background-position:-68px -11px}.x-form-trigger-wrap .x-form-spinner-down-click{background-position:-34px -11px}.x-toolbar-item div.x-form-spinner-up,.x-toolbar-item div.x-form-spinner-down{background-image:url(images/form/spinner-small.gif);height:10px}.x-toolbar-item .x-form-spinner-down{background-position:0 -10px}.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down{background-position:-51px -10px}.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-over{background-position:-17px -10px}.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down-over{background-position:-68px -10px}.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-click{background-position:-34px -10px}.x-tbar-page-number{width:30px}.x-tbar-page-first{background-image:url(images/grid/page-first.gif)}.x-tbar-page-prev{background-image:url(images/grid/page-prev.gif)}.x-tbar-page-next{background-image:url(images/grid/page-next.gif)}.x-tbar-page-last{background-image:url(images/grid/page-last.gif)}.x-tbar-loading{background-image:url(images/grid/refresh.gif)}.x-item-disabled .x-tbar-page-first{background-image:url(images/grid/page-first-disabled.gif)}.x-item-disabled .x-tbar-page-prev{background-image:url(images/grid/page-prev-disabled.gif)}.x-item-disabled .x-tbar-page-next{background-image:url(images/grid/page-next-disabled.gif)}.x-item-disabled .x-tbar-page-last{background-image:url(images/grid/page-last-disabled.gif)}.x-item-disabled .x-tbar-loading{background-image:url(images/grid/refresh-disabled.gif)}.x-boundlist{border-width:1px;border-style:solid;border-color:#98c0f4;background:white}.x-strict .x-ie7m .x-boundlist-list-ct{position:relative}.x-boundlist-item{padding:0 3px;line-height:20px;cursor:pointer;cursor:hand;position:relative;zoom:1;border-width:1px;border-style:dotted;border-color:white}.x-boundlist-selected{background:#cbdaf0;border-color:#8eabe4}.x-boundlist-item-over{background:#dfe8f6;border-color:#a3bae9}.x-boundlist-floating{border-top-width:0}.x-boundlist-above{border-top-width:1px;border-bottom-width:1px}.x-datepicker{border-width:1px;border-style:solid;border-color:#1b376c;background-color:white;width:177px}.x-datepicker-header{padding:3px 6px;text-align:center;background-image:none;background-color:#23427c;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#264888),color-stop(100%,#1f3a6c));background-image:-webkit-linear-gradient(top,#264888,#1f3a6c);background-image:-moz-linear-gradient(top,#264888,#1f3a6c);background-image:-o-linear-gradient(top,#264888,#1f3a6c);background-image:linear-gradient(top,#264888,#1f3a6c)}.x-datepicker-arrow{width:15px;height:15px;top:6px;cursor:pointer;background-color:#23427c;filter:alpha(opacity=70);opacity:.7}a.x-datepicker-arrow:hover{filter:alpha(opacity=100);opacity:1}.x-datepicker-next{right:6px;background-image:url(images/shared/right-btn.gif)}.x-datepicker-prev{left:6px;background-image:url(images/shared/left-btn.gif)}.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}.x-datepicker-month .x-btn-inner{color:white}.x-datepicker-month .x-btn-split-right{background-image:url(images/button/s-arrow-light.gif);padding-right:12px}.x-datepicker-column-header{width:25px;color:#233d6d;font:normal 10px tahoma,arial,verdana,sans-serif;text-align:right;border-width:0 0 1px;border-style:solid;border-color:#b2d1f5;background-image:none;background-color:#dfecfb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#edf4fd),color-stop(100%,#cde1f9));background-image:-webkit-linear-gradient(top,#edf4fd,#cde1f9);background-image:-moz-linear-gradient(top,#edf4fd,#cde1f9);background-image:-o-linear-gradient(top,#edf4fd,#cde1f9);background-image:linear-gradient(top,#edf4fd,#cde1f9)}.x-datepicker-column-header-inner{line-height:19px;padding:0 7px 0 0}.x-datepicker-cell{text-align:right;border-width:1px;border-style:solid;border-color:white}.x-datepicker-date{padding:0 4px 0 0;font:normal 11px tahoma,arial,verdana,sans-serif;color:black;cursor:pointer;line-height:18px}a.x-datepicker-date:hover{color:black;background-color:#ddecfe}.x-datepicker-selected{border-style:solid;border-color:#8db2e3}.x-datepicker-selected .x-datepicker-date{background-color:#dae5f3;font-weight:bold}.x-datepicker-today{border-color:darkred;border-style:solid}.x-datepicker-prevday .x-datepicker-date,.x-datepicker-nextday .x-datepicker-date{color:#aaa}.x-datepicker-disabled a.x-datepicker-date{background-color:#eee;cursor:default;color:#bbb}.x-datepicker-disabled a.x-datepicker-date:hover{background-color:#eee}.x-datepicker-footer,.x-monthpicker-buttons{padding:4px 0;border-width:1px 0 0;border-style:solid;border-color:#b2d1f5;background-image:none;background-color:#dfecfb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dee8f5),color-stop(49%,#d1dff0),color-stop(51%,#c7d8ed),color-stop(100%,#cbdaee));background-image:-webkit-linear-gradient(top,#dee8f5,#d1dff0 49%,#c7d8ed 51%,#cbdaee);background-image:-moz-linear-gradient(top,#dee8f5,#d1dff0 49%,#c7d8ed 51%,#cbdaee);background-image:-o-linear-gradient(top,#dee8f5,#d1dff0 49%,#c7d8ed 51%,#cbdaee);background-image:linear-gradient(top,#dee8f5,#d1dff0 49%,#c7d8ed 51%,#cbdaee);text-align:center}.x-datepicker-footer .x-btn,.x-monthpicker-buttons .x-btn{margin:0 2px 0 2px}.x-monthpicker{width:177px;border-width:1px;border-style:solid;border-color:#1b376c;background-color:white}.x-monthpicker-months{border-width:0 1px 0 0;border-color:#1b376c;border-style:solid;width:87px}.x-monthpicker-months .x-monthpicker-item{width:43px}.x-monthpicker-years{width:88px}.x-monthpicker-years .x-monthpicker-item{width:44px}.x-monthpicker-item{margin:5px 0 4px;font:normal 11px tahoma,arial,verdana,sans-serif;text-align:center}.x-monthpicker-item-inner{margin:0 5px 0 5px;color:#15428b;border-width:1px;border-style:solid;border-color:white;line-height:16px;cursor:pointer}a.x-monthpicker-item-inner:hover{background-color:#ddecfe}.x-monthpicker-selected{background-color:#dae5f3;border-style:solid;border-color:#8db2e3}.x-monthpicker-yearnav{height:27px}.x-monthpicker-yearnav-button-ct{width:44px}.x-monthpicker-yearnav-button{height:15px;width:15px;cursor:pointer;margin-top:6px;background-color:white}.x-monthpicker-yearnav-next{background-image:url(images/tools/tool-sprites.gif);background-position:0 -120px}.x-monthpicker-yearnav-next-over{background-position:-15px -120px}.x-monthpicker-yearnav-prev{background-image:url(images/tools/tool-sprites.gif);background-position:0 -105px}.x-monthpicker-yearnav-prev-over{background-position:-15px -105px}.x-monthpicker-small .x-monthpicker-item{margin:2px 0 2px}.x-monthpicker-small .x-monthpicker-item-inner{margin:0 5px 0 5px}.x-monthpicker-small .x-monthpicker-yearnav{height:22px}.x-monthpicker-small .x-monthpicker-yearnav-button{margin-top:3px}.x-nlg .x-datepicker-header{background-image:url(images/datepicker/datepicker-header-bg.gif);background-repeat:repeat-x;background-position:top left}.x-nlg .x-datepicker-footer,.x-nlg .x-monthpicker-buttons{background-image:url(images/datepicker/datepicker-footer-bg.gif);background-repeat:repeat-x;background-position:top left}.x-datepicker-header:after{display:none;content:"x-slicer:bg:url(images/datepicker/datepicker-header-bg.gif)"}.x-datepicker-footer:after{display:none;content:"x-slicer:bg:url(images/datepicker/datepicker-footer-bg.gif)"}.x-form-date-trigger{background-image:url(images/form/date-trigger.gif)}.x-form-file-wrap .x-form-text{color:gray}.x-color-picker{width:144px;height:90px;background-color:white;border-color:white;border-width:0;border-style:solid}.x-color-picker-item{width:18px;height:18px;border-width:1px;border-color:white;border-style:solid;background-color:white;cursor:pointer;padding:2px}.x-content-box .x-color-picker-item{width:12px;height:12px}a.x-color-picker-item:hover{border-color:#8bb8f3;background-color:#deecfd}.x-color-picker-selected{border-color:#8bb8f3;background-color:#deecfd}.x-color-picker-item-inner{line-height:10px;border-color:#aca899;border-width:1px;border-style:solid}.x-html-editor-tb .x-btn-text{background:transparent no-repeat;background-image:url(images/editor/tb-sprite.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.x-html-editor-tip .x-tip-bd .x-tip-bd-inner{padding:5px;padding-bottom:1px}.x-html-editor-tb .x-font-select{font-size:11px;font-family:inherit}.x-html-editor-wrap textarea{font:normal 12px tahoma,arial,verdana,sans-serif;background-color:white;resize:none}.x-grid-body{background:white;border-width:1px;border-style:solid;border-color:#99bce8}.x-grid-empty{padding:10px;color:gray;background-color:white;font:normal 11px tahoma,arial,verdana,sans-serif}.x-grid-cell{color:null;font:normal 11px/13px tahoma,arial,verdana,sans-serif;background-color:white;border-color:#ededed #d0d0d0 #ededed #d0d0d0;border-style:solid}.x-grid-row-alt .x-grid-td{background-color:#fafafa}.x-grid-row-before-over .x-grid-td{border-bottom-style:solid;border-bottom-color:#ddd}.x-grid-row-over .x-grid-td{border-bottom-style:solid;border-bottom-color:#ddd}.x-grid-row-before-selected .x-grid-td{border-bottom-style:dotted;border-bottom-color:#a3bae9}.x-grid-row-selected .x-grid-td{border-bottom-style:dotted;border-bottom-color:#a3bae9}.x-grid-row-before-focused .x-grid-td{border-bottom-style:dotted;border-bottom-color:#464646;border-bottom-width:1px}.x-grid-row-focused .x-grid-td{background-color:#efefef}.x-grid-row-over .x-grid-td{background-color:#efefef}.x-grid-row-selected .x-grid-td{background-color:#dfe8f6}.x-grid-row-focused .x-grid-td{border-bottom-style:dotted;border-bottom-color:#464646;border-bottom-width:1px}.x-grid-table .x-grid-row-focused-first .x-grid-td{border-top:1px dotted #464646}.x-grid-row-selected .x-grid-row-summary .x-grid-td{border-bottom-color:#dfe8f6;border-top-width:0}.x-grid-row-focused .x-grid-row-summary .x-grid-td{border-bottom-color:#efefef;border-top-width:0}.x-grid-with-row-lines .x-grid-td{border-bottom-width:1px}.x-grid-with-row-lines .x-grid-table{border-top:1px solid white}.x-grid-with-row-lines .x-grid-table-over-first{border-top-style:solid;border-top-color:#ddd}.x-grid-with-row-lines .x-grid-table-selected-first{border-top-style:dotted;border-top-color:#a3bae9}.x-grid-body .x-grid-table-focused-first{border-top:1px dotted #464646}.x-grid-cell-inner{text-overflow:ellipsis;padding:3px 6px 4px 6px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner{padding-top:2px;padding-bottom:3px}.x-grid-cell-special{border-color:#ededed #d0d0d0 #ededed #d0d0d0;border-style:solid;border-right-width:1px;background-image:none;background-color:#f6f6f6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:-moz-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:-o-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:linear-gradient(top,#f6f6f6,#e9e9e9)}.x-grid-row-selected .x-grid-cell-special{border-right-color:#ededed #aaccf6;background-image:none;background-color:#dfe8f6;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dfe8f6),color-stop(100%,#cbdaf0));background-image:-webkit-linear-gradient(left,#dfe8f6,#cbdaf0);background-image:-moz-linear-gradient(left,#dfe8f6,#cbdaf0);background-image:-o-linear-gradient(left,#dfe8f6,#cbdaf0);background-image:linear-gradient(left,#dfe8f6,#cbdaf0)}.x-nlg .x-grid-cell-special{background-repeat:repeat-y;background-image:url(images/grid/cell-special-bg.gif)}.x-nlg .x-grid-row-selected .x-grid-cell-special{background-image:url(images/grid/cell-special-selected-bg.gif)}.x-grid-cell-special .x-grid-cell-special:after{display:none;content:"x-slicer:bg:url(images/grid/cell-special-bg.gif)"}.x-grid-cell-special .x-grid-cell-special-selected:after{display:none;content:"x-slicer:bg:url(images/grid/cell-special-selected-bg.gif)"}.x-grid-dirty-cell{background:url(images/grid/dirty.gif) no-repeat 0 0}.x-grid-row .x-grid-cell-selected{color:null;background-color:#b8cfee}.x-grid-with-col-lines .x-grid-cell{border-right-width:1px}.x-grid-resize-marker{width:1px;background-color:#0f0f0f}.x-grid-drop-indicator{position:absolute;height:1px;line-height:0;background-color:#77bc71;overflow:visible;pointer-events:none}.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}.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}.x-ie6 .x-grid-drop-indicator-left{background-image:url(images/grid/dd-insert-arrow-right.gif)}.x-ie6 .x-grid-drop-indicator-right{background-image:url(images/grid/dd-insert-arrow-left.gif)}.col-move-top,.col-move-bottom{width:9px;height:9px}.col-move-top{background-image:url(images/grid/col-move-top.gif)}.col-move-bottom{background-image:url(images/grid/col-move-bottom.gif)}.x-grid-header-ct{border:1px solid #99bce8;border-bottom-color:#c5c5c5;background-color:#c5c5c5;background-image:none;background-color:#c5c5c5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f9f9f9),color-stop(100%,#e3e4e6));background-image:-webkit-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-moz-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-o-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:linear-gradient(top,#f9f9f9,#e3e4e6)}.x-accordion-item .x-grid-header-ct{border-width:0 0 1px!important}.x-accordion-item .x-grid-header-ct-hidden{border:0!important}.x-grid-body{border-top-color:#c5c5c5}.x-hmenu-sort-asc .x-menu-item-icon{background-image:url(images/grid/hmenu-asc.gif)}.x-hmenu-sort-desc .x-menu-item-icon{background-image:url(images/grid/hmenu-desc.gif)}.x-cols-icon .x-menu-item-icon{background-image:url(images/grid/columns.gif)}.x-column-header{border-right:1px solid #c5c5c5;color:black;font:normal 11px/13px tahoma,arial,verdana,sans-serif;background-image:none;background-color:#c5c5c5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f9f9f9),color-stop(100%,#e3e4e6));background-image:-webkit-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-moz-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-o-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:linear-gradient(top,#f9f9f9,#e3e4e6)}.x-group-sub-header{background:transparent;border-top:1px solid #c5c5c5}.x-group-sub-header .x-column-header-inner{padding:3px 6px 5px 6px}.x-column-header-inner{padding:4px 6px 5px 6px;text-overflow:ellipsis}.x-column-header-over,.x-column-header-sort-ASC,.x-column-header-sort-DESC{background-image:none;background-color:#aaccf6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ebf3fd),color-stop(39%,#ebf3fd),color-stop(40%,#d9e8fb),color-stop(100%,#d9e8fb));background-image:-webkit-linear-gradient(top,#ebf3fd,#ebf3fd 39%,#d9e8fb 40%,#d9e8fb);background-image:-moz-linear-gradient(top,#ebf3fd,#ebf3fd 39%,#d9e8fb 40%,#d9e8fb);background-image:-o-linear-gradient(top,#ebf3fd,#ebf3fd 39%,#d9e8fb 40%,#d9e8fb);background-image:linear-gradient(top,#ebf3fd,#ebf3fd 39%,#d9e8fb 40%,#d9e8fb)}.x-nlg .x-grid-header-ct,.x-nlg .x-column-header{background-image:url(images/grid/column-header-bg.gif)}.x-nlg .x-column-header-over,.x-nlg .x-column-header-sort-ASC,.x-nlg .x-column-header-sort-DESC{background-image:url(images/grid/column-header-over-bg.gif)}.x-column-header-open{background-color:transparent}.x-column-header-open .x-column-header-trigger{background-color:transparent}.x-column-header-trigger{width:14px;cursor:pointer;background-color:transparent;background-position:0 center}.x-column-header-align-right .x-column-header-text{margin-right:9px}.x-column-header-sort-ASC .x-column-header-text,.x-column-header-sort-DESC .x-column-header-text{padding-right:12px;background-position:right center}.x-column-header-sort-ASC .x-column-header-text{background-image:url(images/grid/sort_asc.gif)}.x-column-header-sort-DESC .x-column-header-text{background-image:url(images/grid/sort_desc.gif)}.x-column-header:after{display:none;content:"x-slicer:bg:url(images/grid/column-header-bg.gif), stretch:bottom"}.x-column-header-over:after{display:none;content:"x-slicer:bg:url(images/grid/column-header-over-bg.gif), stretch:bottom"}.x-grid-cell-inner-action-col{padding:2px 2px 2px 2px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-action-col{padding-top:1px;padding-bottom:1px}.x-action-col-cell .x-item-disabled{filter:alpha(opacity=30);opacity:.3}.x-action-col-icon{height:16px;width:16px;cursor:pointer}.x-grid-cell-inner-checkcolumn{padding:4px 6px 3px 6px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-checkcolumn{padding-top:3px;padding-bottom:2px}.x-grid-checkcolumn{width:13px;height:13px;background:url(images/form/checkbox.gif) 0 0 no-repeat}.x-item-disabled .x-grid-checkcolumn{filter:alpha(opacity=30);opacity:.3}.x-grid-checkcolumn-checked{background-position:0 -13px}.x-grid-cell-inner-row-numberer{padding:3px 5px 4px 3px}.x-grid-group-hd{border-width:0 0 2px 0;border-style:solid;border-color:#99bbe8;padding:10px 4px 4px 4px;background:white;cursor:pointer}.x-grid-group-hd-not-collapsible{cursor:default}.x-grid-group-hd-collapsible .x-grid-group-title{background-repeat:no-repeat;background-position:left center;background-image:url(images/grid/group-collapse.gif);padding:0 0 0 14px}.x-grid-group-title{color:#3764a0;font:bold 11px/13px tahoma,arial,verdana,sans-serif}.x-grid-group-hd-collapsed .x-grid-group-title{background-image:url(images/grid/group-expand.gif)}.x-grid-group-collapsed .x-grid-group-title{background-image:url(images/grid/group-expand.gif)}.x-group-by-icon{background-image:url(images/grid/group-by.gif)}.x-show-groups-icon{background-image:url(images/grid/group-by.gif)}.x-grid-rowbody{font:normal 11px/13px tahoma,arial,verdana,sans-serif;padding:5px 6px 5px 6px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-rowbody{padding-top:6px;padding-bottom:4px}.x-grid-rowwrap{border-color:#ededed #d0d0d0 #ededed #d0d0d0;border-style:solid}.x-summary-bottom{border-bottom-color:#c5c5c5}.x-docked-summary{border-width:1px;border-color:#99bce8;border-style:solid}.x-docked-summary .x-grid-table{width:100%}.x-grid-row-summary .x-grid-cell,.x-grid-row-summary .x-grid-rowwrap,.x-grid-row-summary .x-grid-cell-rowbody{border-color:#ededed #d0d0d0 #ededed #d0d0d0;background-color:transparent!important;border-top-width:0;font:normal 11px/13px tahoma,arial,verdana,sans-serif}.x-grid-with-row-lines .x-grid-table-summary{border:0}.x-grid-locked .x-grid-inner-locked{border-width:0 1px 0 0;border-style:solid}.x-grid-inner-locked .x-column-header-last,.x-grid-inner-locked .x-grid-cell-last{border-right-width:0!important}.x-hmenu-lock .x-menu-item-icon{background-image:url(images/grid/hmenu-lock.gif)}.x-hmenu-unlock .x-menu-item-icon{background-image:url(images/grid/hmenu-unlock.gif)}.x-grid-editor .x-form-text{font:normal 11px/15px tahoma,arial,verdana,sans-serif;padding:1px 5px 2px 5px;height:20px}.x-content-box .x-grid-editor .x-form-text{height:15px}.x-gecko .x-grid-editor .x-form-text{padding-left:4px;padding-right:4px}.x-grid-editor .x-form-trigger{height:20px}.x-grid-editor .x-form-spinner-up,.x-grid-editor .x-form-spinner-down{height:10px}.x-grid-editor .x-form-cb{margin-top:4px}.x-grid-editor .x-form-cb-wrap{height:20px}.x-grid-editor .x-form-display-field-body{height:20px}.x-grid-editor .x-form-display-field{font:normal 11px/15px tahoma,arial,verdana,sans-serif;padding:2px 6px 3px 6px;text-overflow:ellipsis}.x-grid-editor .x-form-action-col-field{padding:2px 2px 2px 2px}.x-tree-cell-editor .x-form-text{padding-left:2px;padding-right:2px}.x-gecko .x-tree-cell-editor .x-form-text{padding-left:1px;padding-right:1px}.x-grid-row-editor .x-field{margin:0 1px 0 1px}.x-grid-row-editor .x-form-display-field{padding:2px 5px 3px 5px}.x-grid-row-editor .x-form-action-col-field{padding:2px 1px 2px 1px}.x-grid-row-editor .x-form-text{padding:1px 4px 2px 4px}.x-gecko .x-grid-row-editor .x-form-text{padding-left:3px;padding-right:3px}.x-grid-row-editor .x-panel-body{border-top:1px solid #99bce8!important;border-bottom:1px solid #99bce8!important;padding:4px 0 4px 0;background-color:#eaf1fb}.x-grid-with-col-lines .x-grid-row-editor .x-form-cb{margin-right:1px}.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:4px 4px 4px 4px;border-width:0 1px 1px 1px;border-style:solid;background-color:#eaf1fb}.x-grid-row-editor-buttons-default-bottom-mc{background-color:#eaf1fb}.x-nbr .x-grid-row-editor-buttons-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-grid-row-editor-buttons-default-bottom-frameInfo{font-family:th-0-0-5-5-0-1-1-1-4-4-4-4}.x-grid-row-editor-buttons-default-bottom-tl{background-position:0 -10px}.x-grid-row-editor-buttons-default-bottom-tr{background-position:right -15px}.x-grid-row-editor-buttons-default-bottom-bl{background-position:0 -20px}.x-grid-row-editor-buttons-default-bottom-br{background-position:right -25px}.x-grid-row-editor-buttons-default-bottom-ml{background-position:0 top}.x-grid-row-editor-buttons-default-bottom-mr{background-position:right top}.x-grid-row-editor-buttons-default-bottom-tc{background-position:0 0}.x-grid-row-editor-buttons-default-bottom-bc{background-position:0 -5px}.x-grid-row-editor-buttons-default-bottom-tr,.x-grid-row-editor-buttons-default-bottom-br,.x-grid-row-editor-buttons-default-bottom-mr{padding-right:5px}.x-grid-row-editor-buttons-default-bottom-tl,.x-grid-row-editor-buttons-default-bottom-bl,.x-grid-row-editor-buttons-default-bottom-ml{padding-left:5px}.x-grid-row-editor-buttons-default-bottom-tc{height:0}.x-grid-row-editor-buttons-default-bottom-bc{height:5px}.x-grid-row-editor-buttons-default-bottom-tl,.x-grid-row-editor-buttons-default-bottom-bl,.x-grid-row-editor-buttons-default-bottom-tr,.x-grid-row-editor-buttons-default-bottom-br,.x-grid-row-editor-buttons-default-bottom-tc,.x-grid-row-editor-buttons-default-bottom-bc,.x-grid-row-editor-buttons-default-bottom-ml,.x-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif)}.x-grid-row-editor-buttons-default-bottom-ml,.x-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif);background-repeat:repeat-y}.x-grid-row-editor-buttons-default-bottom-mc{padding:4px 0 0 0}.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-tl,.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-bl{position:relative;right:0}.x-grid-row-editor-buttons-default-bottom:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"}.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:4px 4px 4px 4px;border-width:1px 1px 0 1px;border-style:solid;background-color:#eaf1fb}.x-grid-row-editor-buttons-default-top-mc{background-color:#eaf1fb}.x-nbr .x-grid-row-editor-buttons-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-grid-row-editor-buttons-default-top-frameInfo{font-family:th-5-5-0-0-1-1-0-1-4-4-4-4}.x-grid-row-editor-buttons-default-top-tl{background-position:0 -10px}.x-grid-row-editor-buttons-default-top-tr{background-position:right -15px}.x-grid-row-editor-buttons-default-top-bl{background-position:0 -20px}.x-grid-row-editor-buttons-default-top-br{background-position:right -25px}.x-grid-row-editor-buttons-default-top-ml{background-position:0 top}.x-grid-row-editor-buttons-default-top-mr{background-position:right top}.x-grid-row-editor-buttons-default-top-tc{background-position:0 0}.x-grid-row-editor-buttons-default-top-bc{background-position:0 -5px}.x-grid-row-editor-buttons-default-top-tr,.x-grid-row-editor-buttons-default-top-br,.x-grid-row-editor-buttons-default-top-mr{padding-right:5px}.x-grid-row-editor-buttons-default-top-tl,.x-grid-row-editor-buttons-default-top-bl,.x-grid-row-editor-buttons-default-top-ml{padding-left:5px}.x-grid-row-editor-buttons-default-top-tc{height:5px}.x-grid-row-editor-buttons-default-top-bc{height:0}.x-grid-row-editor-buttons-default-top-tl,.x-grid-row-editor-buttons-default-top-bl,.x-grid-row-editor-buttons-default-top-tr,.x-grid-row-editor-buttons-default-top-br,.x-grid-row-editor-buttons-default-top-tc,.x-grid-row-editor-buttons-default-top-bc,.x-grid-row-editor-buttons-default-top-ml,.x-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif)}.x-grid-row-editor-buttons-default-top-ml,.x-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif);background-repeat:repeat-y}.x-grid-row-editor-buttons-default-top-mc{padding:0 0 4px 0}.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-tl,.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-bl{position:relative;right:0}.x-grid-row-editor-buttons-default-top:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"}.x-grid-row-editor-buttons-default-bottom{top:29px}.x-grid-row-editor-buttons-default-top{bottom:29px}.x-grid-row-editor-buttons{border-color:#99bce8}.x-row-editor-update-button{margin-right:2px}.x-row-editor-cancel-button{margin-left:2px}.x-grid-row-editor-errors .x-tip-body{padding:5px}.x-grid-row-editor-errors-item{list-style:disc;margin-left:15px}.x-grid-cell-inner-row-expander{padding:6px 7px 5px 7px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-row-expander{padding-top:5px;padding-bottom:4px}.x-grid-row-expander{width:9px;height:9px;cursor:pointer;background-image:url(images/grid/group-collapse.gif)}.x-grid-row-collapsed .x-grid-row-expander{background-image:url(images/grid/group-expand.gif)}.x-grid-cell-inner-property-name{background-image:url(images/grid/property-cell-bg.gif);background-repeat:no-repeat;background-position:-16px 2px;padding-left:12px}.x-accordion-layout-ct{background-color:white;padding:0}.x-accordion-hd .x-panel-header-text-container{color:black;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;text-transform:none}.x-accordion-item{margin:0}.x-accordion-item .x-accordion-hd{background:#d9e7f8;border-top-color:#f3f7fb;padding:4px 5px 5px 5px}.x-accordion-item .x-accordion-hd-sibling-expanded{border-top-color:#99bce8}.x-accordion-item .x-accordion-hd-last-collapsed{border-bottom-color:#d9e7f8}.x-accordion-item .x-accordion-body{border-width:0}.x-accordion-hd .x-tool-collapse-top,.x-accordion-hd .x-tool-collapse-bottom{background-position:0 -255px}.x-accordion-hd .x-tool-expand-top,.x-accordion-hd .x-tool-expand-bottom{background-position:0 -240px}.x-accordion-hd .x-tool-over .x-tool-collapse-top,.x-accordion-hd .x-tool-over .x-tool-collapse-bottom{background-position:-15px -255px}.x-accordion-hd .x-tool-over .x-tool-expand-top,.x-accordion-hd .x-tool-over .x-tool-expand-bottom{background-position:-15px -240px}.x-accordion-hd .x-tool-img{background-color:#d9e7f8}.x-collapse-el{cursor:pointer}.x-layout-split-left,.x-layout-split-right{top:50%;margin-top:-18px;width:5px;height:35px}.x-layout-split-top,.x-layout-split-bottom{left:50%;width:35px;height:5px;margin-left:-18px}.x-layout-split-left{background-image:url(images/util/splitter/mini-left.gif)}.x-layout-split-right{background-image:url(images/util/splitter/mini-right.gif)}.x-layout-split-top{background-image:url(images/util/splitter/mini-top.gif)}.x-layout-split-bottom{background-image:url(images/util/splitter/mini-bottom.gif)}.x-splitter-collapsed .x-layout-split-left{background-image:url(images/util/splitter/mini-right.gif)}.x-splitter-collapsed .x-layout-split-right{background-image:url(images/util/splitter/mini-left.gif)}.x-splitter-collapsed .x-layout-split-top{background-image:url(images/util/splitter/mini-bottom.gif)}.x-splitter-collapsed .x-layout-split-bottom{background-image:url(images/util/splitter/mini-top.gif)}.x-splitter-active{background-color:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x-splitter-active .x-collapse-el{filter:alpha(opacity=30);opacity:.3}.x-border-layout-ct{background-color:#dfe8f6}.x-menu-body{background:#f0f0f0;padding:2px}.x-menu-icon-separator{left:24px;border-left:solid 1px #e0e0e0;background-color:white;width:2px}.x-menu-item{padding:1px;cursor:pointer}.x-menu-item-indent{margin-left:30px}.x-menu-item-active{background-image:none;background-color:#d9e8fb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e7f0fc),color-stop(100%,#c7ddf9));background-image:-webkit-linear-gradient(top,#e7f0fc,#c7ddf9);background-image:-moz-linear-gradient(top,#e7f0fc,#c7ddf9);background-image:-o-linear-gradient(top,#e7f0fc,#c7ddf9);background-image:linear-gradient(top,#e7f0fc,#c7ddf9);border-color:#a9cbf5;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;border-width:1px;border-style:solid;padding:0}.x-nlg .x-menu-item-active{background:#d9e8fb repeat-x left top;background-image:url(images/menu/menu-item-active-bg.gif)}.x-menu-item-link{line-height:22px;padding:0 0 0 30px;display:inline-block}.x-right-check-item-text{padding-right:22px}.x-menu-item-icon{width:16px;height:16px;top:4px;left:3px;background-position:center center}.x-menu-item-glyph{font-size:16px;line-height:16px;color:#222;opacity:.5}.x-ie8m .x-menu-item-glyph{color:#898989}.x-gecko .x-menu-item-active .x-menu-item-icon,.x-quirks .x-menu-item-active .x-menu-item-icon,.x-ie9m .x-menu-item-active .x-menu-item-icon{top:3px;left:2px}.x-menu-item-icon-right{width:16px;height:16px;top:3px;right:3px;background-position:center center}.x-menu-item-text{font-size:11px;color:#222;cursor:pointer;margin-right:16px}.x-menu-item-checked .x-menu-item-icon,.x-menu-item-checked .x-menu-item-icon-right{background-image:url(images/menu/checked.gif)}.x-menu-item-checked .x-menu-group-icon{background-image:url(images/menu/group-checked.gif)}.x-menu-item-unchecked .x-menu-item-icon,.x-menu-item-unchecked .x-menu-item-icon-right{background-image:url(images/menu/unchecked.gif)}.x-menu-item-unchecked .x-menu-group-icon{background-image:none}.x-menu-item-separator{height:2px;border-top:solid 1px #e0e0e0;background-color:white;margin:2px 0;padding:0}.x-menu-item-arrow{width:12px;height:9px;top:7px;right:0;background-image:url(images/menu/menu-parent.gif)}.x-gecko .x-menu-item-active .x-menu-item-arrow,.x-quirks .x-menu-item-active .x-menu-item-arrow,.x-ie9m .x-menu-item-active .x-menu-item-arrow{top:6px;right:-1px}.x-menu-item-disabled{filter:alpha(opacity=50);opacity:.5}.x-content-box .x-menu-icon-separator{width:1px}.x-content-box .x-menu-item-separator{height:1px}.x-ie .x-menu-item-disabled .x-menu-item-icon{filter:alpha(opacity=50);opacity:.5}.x-ie .x-menu-item-disabled .x-menu-item-text{background-color:transparent}.x-menu-date-item{border-color:#99bbe8}.x-menu-item .x-form-item-label{font-size:11px;color:#222}.x-menu-scroll-top{height:8px;background-image:url(images/menu/scroll-top.gif)}.x-menu-scroll-bottom{height:8px;background-image:url(images/menu/scroll-bottom.gif)}.x-menu-scroll-top,.x-menu-scroll-bottom{background-color:#f0f0f0}.x-menu-item-link:after{display:none;content:"x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"}.x-tool{cursor:pointer}.x-tool-img{overflow:hidden;width:15px;height:15px;background-image:url(images/tools/tool-sprites.gif);margin:0}.x-tool-placeholder{visibility:hidden}.x-tool-close{background-position:0 0}.x-tool-minimize{background-position:0 -15px}.x-tool-maximize{background-position:0 -30px}.x-tool-restore{background-position:0 -45px}.x-tool-toggle{background-position:0 -60px}.x-panel-collapsed .x-tool-toggle{background-position:0 -75px}.x-tool-gear{background-position:0 -90px}.x-tool-prev{background-position:0 -105px}.x-tool-next{background-position:0 -120px}.x-tool-pin{background-position:0 -135px}.x-tool-unpin{background-position:0 -150px}.x-tool-right{background-position:0 -165px}.x-tool-left{background-position:0 -180px}.x-tool-down{background-position:0 -195px}.x-tool-up{background-position:0 -210px}.x-tool-refresh{background-position:0 -225px}.x-tool-plus{background-position:0 -240px}.x-tool-minus{background-position:0 -255px}.x-tool-search{background-position:0 -270px}.x-tool-save{background-position:0 -285px}.x-tool-help{background-position:0 -300px}.x-tool-print{background-position:0 -315px}.x-tool-expand{background-position:0 -330px}.x-tool-collapse{background-position:0 -345px}.x-tool-resize{background-position:0 -360px}.x-tool-move{background-position:0 -375px}.x-tool-expand-bottom,.x-tool-collapse-bottom{background-position:0 -195px}.x-tool-expand-top,.x-tool-collapse-top{background-position:0 -210px}.x-tool-expand-left,.x-tool-collapse-left{background-position:0 -180px}.x-tool-expand-right,.x-tool-collapse-right{background-position:0 -165px}.x-tool-over .x-tool-close{background-position:-15px 0}.x-tool-over .x-tool-minimize{background-position:-15px -15px}.x-tool-over .x-tool-maximize{background-position:-15px -30px}.x-tool-over .x-tool-restore{background-position:-15px -45px}.x-tool-over .x-tool-toggle{background-position:-15px -60px}.x-panel-collapsed .x-tool-over .x-tool-toggle{background-position:-15px -75px}.x-tool-over .x-tool-gear{background-position:-15px -90px}.x-tool-over .x-tool-prev{background-position:-15px -105px}.x-tool-over .x-tool-next{background-position:-15px -120px}.x-tool-over .x-tool-pin{background-position:-15px -135px}.x-tool-over .x-tool-unpin{background-position:-15px -150px}.x-tool-over .x-tool-right{background-position:-15px -165px}.x-tool-over .x-tool-left{background-position:-15px -180px}.x-tool-over .x-tool-down{background-position:-15px -195px}.x-tool-over .x-tool-up{background-position:-15px -210px}.x-tool-over .x-tool-refresh{background-position:-15px -225px}.x-tool-over .x-tool-plus{background-position:-15px -240px}.x-tool-over .x-tool-minus{background-position:-15px -255px}.x-tool-over .x-tool-search{background-position:-15px -270px}.x-tool-over .x-tool-save{background-position:-15px -285px}.x-tool-over .x-tool-help{background-position:-15px -300px}.x-tool-over .x-tool-print{background-position:-15px -315px}.x-tool-over .x-tool-expand{background-position:-15px -330px}.x-tool-over .x-tool-collapse{background-position:-15px -345px}.x-tool-over .x-tool-resize{background-position:-15px -360px}.x-tool-over .x-tool-move{background-position:-15px -375px}.x-tool-over .x-tool-expand-bottom,.x-tool-over .x-tool-collapse-bottom{background-position:-15px -195px}.x-tool-over .x-tool-expand-top,.x-tool-over .x-tool-collapse-top{background-position:-15px -210px}.x-tool-over .x-tool-expand-left,.x-tool-over .x-tool-collapse-left{background-position:-15px -180px}.x-tool-over .x-tool-expand-right,.x-tool-over .x-tool-collapse-right{background-position:-15px -165px}.x-resizable-handle{position:absolute;z-index:100;font-size:1px;line-height:6px;overflow:hidden;zoom:1;filter:alpha(opacity=0);opacity:0;background-color:#fff}.x-collapsed .x-resizable-handle{display:none}.x-resizable-over .x-resizable-handle-north{cursor:n-resize}.x-resizable-over .x-resizable-handle-south{cursor:s-resize}.x-resizable-over .x-resizable-handle-east{cursor:e-resize}.x-resizable-over .x-resizable-handle-west{cursor:w-resize}.x-resizable-over .x-resizable-handle-southeast{cursor:se-resize}.x-resizable-over .x-resizable-handle-northwest{cursor:nw-resize}.x-resizable-over .x-resizable-handle-northeast{cursor:ne-resize}.x-resizable-over .x-resizable-handle-southwest{cursor:sw-resize}.x-resizable-handle-east{width:6px;height:100%;right:0;top:0}.x-resizable-handle-south{width:100%;height:6px;left:0;bottom:0}.x-resizable-handle-west{width:6px;height:100%;left:0;top:0}.x-resizable-handle-north{width:100%;height:6px;left:0;top:0}.x-resizable-handle-southeast{width:6px;height:6px;right:0;bottom:0;z-index:101}.x-resizable-handle-northwest{width:6px;height:6px;left:0;top:0;z-index:101}.x-resizable-handle-northeast{width:6px;height:6px;right:0;top:0;z-index:101}.x-resizable-handle-southwest{width:6px;height:6px;left:0;bottom:0;z-index:101}.x-ie .x-resizable-handle-east{margin-right:-1px}.x-ie .x-resizable-handle-south{margin-bottom:-1px}.x-resizable-pinned .x-resizable-handle,.x-resizable-over .x-resizable-handle{filter:alpha(opacity=100);opacity:1}.x-window .x-window-handle{filter:alpha(opacity=0);opacity:0}.x-window-collapsed .x-window-handle{display:none}.x-resizable-proxy{border:1px dashed #3b5a82;position:absolute;overflow:hidden;z-index:50000}.x-resizable-over .x-resizable-handle-east,.x-resizable-over .x-resizable-handle-west,.x-resizable-pinned .x-resizable-handle-east,.x-resizable-pinned .x-resizable-handle-west{background-image:url(images/sizer/e-handle.gif)}.x-resizable-over .x-resizable-handle-south,.x-resizable-over .x-resizable-handle-north,.x-resizable-pinned .x-resizable-handle-south,.x-resizable-pinned .x-resizable-handle-north{background-image:url(images/sizer/s-handle.gif)}.x-resizable-over .x-resizable-handle-southeast,.x-resizable-pinned .x-resizable-handle-southeast{background-position:top left;background-image:url(images/sizer/se-handle.gif)}.x-resizable-over .x-resizable-handle-northwest,.x-resizable-pinned .x-resizable-handle-northwest{background-position:bottom right;background-image:url(images/sizer/nw-handle.gif)}.x-resizable-over .x-resizable-handle-northeast,.x-resizable-pinned .x-resizable-handle-northeast{background-position:bottom left;background-image:url(images/sizer/ne-handle.gif)}.x-resizable-over .x-resizable-handle-southwest,.x-resizable-pinned .x-resizable-handle-southwest{background-position:top right;background-image:url(images/sizer/sw-handle.gif)}.x-slider-horz{padding-left:7px;background:no-repeat 0 -15px}.x-slider-horz .x-slider-end{padding-right:7px;background:no-repeat right -30px}.x-slider-horz .x-slider-inner{height:15px}.x-ie6 .x-form-item .x-slider-horz,.x-ie7 .x-form-item .x-slider-horz,.x-quirks .x-ie .x-form-item .x-slider-horz{margin-top:4px}.x-slider-horz .x-slider-thumb{width:14px;height:15px;margin-left:-7px;background-image:url(images/slider/slider-thumb.png)}.x-slider-horz .x-slider-thumb-over{background-position:-14px -15px}.x-slider-horz .x-slider-thumb-drag{background-position:-28px -30px}.x-slider-vert{padding-top:7px;background:no-repeat -30px 0}.x-slider-vert .x-slider-end{padding-bottom:7px;background:no-repeat -15px bottom;width:15px}.x-slider-vert .x-slider-inner{width:15px}.x-slider-vert .x-slider-thumb{width:15px;height:14px;margin-bottom:-7px;background-image:url(images/slider/slider-v-thumb.png)}.x-slider-vert .x-slider-thumb-over{background-position:-15px -14px}.x-slider-vert .x-slider-thumb-drag{background-position:-30px -28px}.x-slider-horz,.x-slider-horz .x-slider-end,.x-slider-horz .x-slider-inner{background-image:url(images/slider/slider-bg.png)}.x-slider-vert,.x-slider-vert .x-slider-end,.x-slider-vert .x-slider-inner{background-image:url(images/slider/slider-v-bg.png)}.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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%)}.x-tab-default-top-mc{background-image:url(images/tab/tab-default-top-fbg.gif);background-position:0 top;background-color:#deecfd}.x-nlg .x-tab-default-top{background-image:url(images/tab/tab-default-top-bg.gif);background-position:0 top}.x-nbr .x-tab-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-tab-default-top-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x-tab-default-top-tl{background-position:0 -8px}.x-tab-default-top-tr{background-position:right -12px}.x-tab-default-top-bl{background-position:0 -16px}.x-tab-default-top-br{background-position:right -20px}.x-tab-default-top-ml{background-position:0 top}.x-tab-default-top-mr{background-position:right top}.x-tab-default-top-tc{background-position:0 0}.x-tab-default-top-bc{background-position:0 -4px}.x-tab-default-top-tr,.x-tab-default-top-br,.x-tab-default-top-mr{padding-right:4px}.x-tab-default-top-tl,.x-tab-default-top-bl,.x-tab-default-top-ml{padding-left:4px}.x-tab-default-top-tc{height:4px}.x-tab-default-top-bc{height:0}.x-tab-default-top-tl,.x-tab-default-top-bl,.x-tab-default-top-tr,.x-tab-default-top-br,.x-tab-default-top-tc,.x-tab-default-top-bc,.x-tab-default-top-ml,.x-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-top-ml,.x-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif)}.x-tab-default-top-mc{padding:0 6px 3px 6px}.x-strict .x-ie7 .x-tab-default-top-tl,.x-strict .x-ie7 .x-tab-default-top-bl{position:relative;right:0}.x-tab-default-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.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:3px 9px 3px 9px;border-width:0 1px 1px 1px;border-style:solid;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%)}.x-tab-default-bottom-mc{background-image:url(images/tab/tab-default-bottom-fbg.gif);background-position:0 top;background-color:#deecfd}.x-nlg .x-tab-default-bottom{background-image:url(images/tab/tab-default-bottom-bg.gif);background-position:0 top}.x-nbr .x-tab-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-tab-default-bottom-frameInfo{font-family:th-0-0-4-4-0-1-1-1-3-9-3-9}.x-tab-default-bottom-tl{background-position:0 -8px}.x-tab-default-bottom-tr{background-position:right -12px}.x-tab-default-bottom-bl{background-position:0 -16px}.x-tab-default-bottom-br{background-position:right -20px}.x-tab-default-bottom-ml{background-position:0 top}.x-tab-default-bottom-mr{background-position:right top}.x-tab-default-bottom-tc{background-position:0 0}.x-tab-default-bottom-bc{background-position:0 -4px}.x-tab-default-bottom-tr,.x-tab-default-bottom-br,.x-tab-default-bottom-mr{padding-right:4px}.x-tab-default-bottom-tl,.x-tab-default-bottom-bl,.x-tab-default-bottom-ml{padding-left:4px}.x-tab-default-bottom-tc{height:0}.x-tab-default-bottom-bc{height:4px}.x-tab-default-bottom-tl,.x-tab-default-bottom-bl,.x-tab-default-bottom-tr,.x-tab-default-bottom-br,.x-tab-default-bottom-tc,.x-tab-default-bottom-bc,.x-tab-default-bottom-ml,.x-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-corners.gif)}.x-tab-default-bottom-ml,.x-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-sides.gif)}.x-tab-default-bottom-mc{padding:3px 6px 0 6px}.x-strict .x-ie7 .x-tab-default-bottom-tl,.x-strict .x-ie7 .x-tab-default-bottom-bl{position:relative;right:0}.x-tab-default-bottom:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-bottom-fbg.gif), bg:url(images/tab/tab-default-bottom-bg.gif), corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"}.x-tab-default-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: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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%)}.x-tab-default-left-mc{background-image:url(images/tab/tab-default-top-fbg.gif);background-position:0 top;background-color:#deecfd}.x-nlg .x-tab-default-left{background-image:url(images/tab/tab-default-top-bg.gif);background-position:0 top}.x-nbr .x-tab-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-tab-default-left-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x-tab-default-left-tl{background-position:0 -8px}.x-tab-default-left-tr{background-position:right -12px}.x-tab-default-left-bl{background-position:0 -16px}.x-tab-default-left-br{background-position:right -20px}.x-tab-default-left-ml{background-position:0 top}.x-tab-default-left-mr{background-position:right top}.x-tab-default-left-tc{background-position:0 0}.x-tab-default-left-bc{background-position:0 -4px}.x-tab-default-left-tr,.x-tab-default-left-br,.x-tab-default-left-mr{padding-right:4px}.x-tab-default-left-tl,.x-tab-default-left-bl,.x-tab-default-left-ml{padding-left:4px}.x-tab-default-left-tc{height:4px}.x-tab-default-left-bc{height:0}.x-tab-default-left-tl,.x-tab-default-left-bl,.x-tab-default-left-tr,.x-tab-default-left-br,.x-tab-default-left-tc,.x-tab-default-left-bc,.x-tab-default-left-ml,.x-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-left-ml,.x-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif)}.x-tab-default-left-mc{padding:0 6px 3px 6px}.x-strict .x-ie7 .x-tab-default-left-tl,.x-strict .x-ie7 .x-tab-default-left-bl{position:relative;right:0}.x-tab-default-left:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x-tab-default-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: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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%)}.x-tab-default-right-mc{background-image:url(images/tab/tab-default-top-fbg.gif);background-position:0 top;background-color:#deecfd}.x-nlg .x-tab-default-right{background-image:url(images/tab/tab-default-top-bg.gif);background-position:0 top}.x-nbr .x-tab-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-tab-default-right-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x-tab-default-right-tl{background-position:0 -8px}.x-tab-default-right-tr{background-position:right -12px}.x-tab-default-right-bl{background-position:0 -16px}.x-tab-default-right-br{background-position:right -20px}.x-tab-default-right-ml{background-position:0 top}.x-tab-default-right-mr{background-position:right top}.x-tab-default-right-tc{background-position:0 0}.x-tab-default-right-bc{background-position:0 -4px}.x-tab-default-right-tr,.x-tab-default-right-br,.x-tab-default-right-mr{padding-right:4px}.x-tab-default-right-tl,.x-tab-default-right-bl,.x-tab-default-right-ml{padding-left:4px}.x-tab-default-right-tc{height:4px}.x-tab-default-right-bc{height:0}.x-tab-default-right-tl,.x-tab-default-right-bl,.x-tab-default-right-tr,.x-tab-default-right-br,.x-tab-default-right-tc,.x-tab-default-right-bc,.x-tab-default-right-ml,.x-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-right-ml,.x-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif)}.x-tab-default-right-mc{padding:0 6px 3px 6px}.x-strict .x-ie7 .x-tab-default-right-tl,.x-strict .x-ie7 .x-tab-default-right-bl{position:relative;right:0}.x-tab-default-right:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x-tab-default{border-color:#8db3e3;margin:0 0 0 2px;cursor:pointer}.x-tab-default .x-tab-inner{font-size:11px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;color:#416da3;line-height:13px}.x-tab-default .x-tab-icon-el{width:16px;height:16px;line-height:16px;background-position:center center}.x-tab-default .x-tab-glyph{font-size:16px;color:#416da3;opacity:.5}.x-ie8m .x-tab-default .x-tab-glyph{color:#8facd0}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default{padding-left:0}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-button{padding-left:9px}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-icon-el{left:9px}.x-tab-default-icon .x-tab-inner{width:16px}.x-tab-default-left{margin:0 2px 0 0}.x-tab-default-top,.x-tab-default-left,.x-tab-default-right{border-bottom:1px solid #99bce8;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(top,#ccdef6,#d6e6fa 25%,#deecfd 45%);-webkit-box-shadow:white 0 1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;-moz-box-shadow:white 0 1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;box-shadow:white 0 1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset}.x-nlg .x-tab-default-top,.x-nlg .x-tab-default-left,.x-nlg .x-tab-default-right{background-image:url(images/tab/tab-default-top-bg.gif)}.x-tab-default-bottom{border-top:1px solid #99bce8;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#ccdef6),color-stop(25%,#d6e6fa),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-moz-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:-o-linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);background-image:linear-gradient(bottom,#ccdef6,#d6e6fa 25%,#deecfd 45%);-webkit-box-shadow:white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;-moz-box-shadow:white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;box-shadow:white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset}.x-nlg .x-tab-default-bottom{background-image:url(images/tab/tab-default-bottom-bg.gif)}.x-tab-default-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-tab-default-left{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.x-tab-default-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-tab-default-right{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.x-tab-default-icon-text-left .x-tab-inner{padding-left:20px}.x-tab-default-over{background-color:#e8f2ff}.x-tab-default-over .x-tab-glyph{color:#416da3}.x-ie8m .x-tab-default-over .x-tab-glyph{color:#94afd1}.x-tab-default-top-over,.x-tab-default-left-over,.x-tab-default-right-over{background-image:none;background-color:#e8f2ff;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#d7e5fd),color-stop(25%,#e0edff),color-stop(45%,#e8f2ff));background-image:-webkit-linear-gradient(top,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:-moz-linear-gradient(top,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:-o-linear-gradient(top,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:linear-gradient(top,#d7e5fd,#e0edff 25%,#e8f2ff 45%)}.x-nlg .x-tab-default-top-over,.x-nlg .x-tab-default-left-over,.x-nlg .x-tab-default-right-over{background-image:url(images/tab/tab-default-top-over-bg.gif)}.x-tab-default-bottom-over{background-image:none;background-color:#e8f2ff;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#d7e5fd),color-stop(25%,#e0edff),color-stop(45%,#e8f2ff));background-image:-webkit-linear-gradient(bottom,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:-moz-linear-gradient(bottom,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:-o-linear-gradient(bottom,#d7e5fd,#e0edff 25%,#e8f2ff 45%);background-image:linear-gradient(bottom,#d7e5fd,#e0edff 25%,#e8f2ff 45%)}.x-nlg .x-tab-default-bottom-over{background-image:url(images/tab/tab-default-bottom-over-bg.gif)}.x-tab-default-active{background-color:#deecfd}.x-tab-default-active .x-tab-inner{color:#15498b}.x-tab-default-active .x-tab-glyph{color:#15498b}.x-ie8m .x-tab-default-active .x-tab-glyph{color:#799ac4}.x-tab-default-top-active,.x-tab-default-left-active,.x-tab-default-right-active{border-bottom:1px solid #deecfd;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(25%,#f5f9fe),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(top,#fff,#f5f9fe 25%,#deecfd 45%);background-image:-moz-linear-gradient(top,#fff,#f5f9fe 25%,#deecfd 45%);background-image:-o-linear-gradient(top,#fff,#f5f9fe 25%,#deecfd 45%);background-image:linear-gradient(top,#fff,#f5f9fe 25%,#deecfd 45%)}.x-nlg .x-tab-default-top-active,.x-nlg .x-tab-default-left-active,.x-nlg .x-tab-default-right-active{background-image:url(images/tab/tab-default-top-active-bg.gif)}.x-tab-default-bottom-active{border-top:1px solid #deecfd;background-image:none;background-color:#deecfd;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#fff),color-stop(25%,#f5f9fe),color-stop(45%,#deecfd));background-image:-webkit-linear-gradient(bottom,#fff,#f5f9fe 25%,#deecfd 45%);background-image:-moz-linear-gradient(bottom,#fff,#f5f9fe 25%,#deecfd 45%);background-image:-o-linear-gradient(bottom,#fff,#f5f9fe 25%,#deecfd 45%);background-image:linear-gradient(bottom,#fff,#f5f9fe 25%,#deecfd 45%)}.x-nlg .x-tab-default-bottom-active{background-image:url(images/tab/tab-default-bottom-active-bg.gif)}.x-tab-default-disabled{border-color:#bbd2ef;cursor:default}.x-tab-default-disabled .x-tab-inner{color:#c3b3b3}.x-tab-default-disabled .x-tab-icon-el{filter:alpha(opacity=50);opacity:.5}.x-tab-default-disabled .x-tab-glyph{color:#c3b3b3;opacity:.3;filter:none}.x-ie8m .x-tab-default-disabled .x-tab-glyph{color:#d8dae4}.x-tab-default-top-disabled,.x-tab-default-left-disabled,.x-tab-default-right-disabled{border-color:#bbd2ef #bbd2ef #99bce8}.x-tab-default-bottom-disabled{border-color:#99bce8 #bbd2ef #bbd2ef #bbd2ef}.x-tab-default-top-disabled,.x-tab-default-left-disabled,.x-tab-default-right-disabled{background-image:none;background-color:#e1ecfa;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e1ecfa),color-stop(100%,#ecf4fe));background-image:-webkit-linear-gradient(top,#e1ecfa,#ecf4fe);background-image:-moz-linear-gradient(top,#e1ecfa,#ecf4fe);background-image:-o-linear-gradient(top,#e1ecfa,#ecf4fe);background-image:linear-gradient(top,#e1ecfa,#ecf4fe)}.x-nlg .x-tab-default-top-disabled,.x-nlg .x-tab-default-left-disabled,.x-nlg .x-tab-default-right-disabled{background-image:url(images/tab/tab-default-top-disabled-bg.gif)}.x-tab-default-bottom-disabled{background-image:none;background-color:#e1ecfa;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#e1ecfa),color-stop(100%,#ecf4fe));background-image:-webkit-linear-gradient(bottom,#e1ecfa,#ecf4fe);background-image:-moz-linear-gradient(bottom,#e1ecfa,#ecf4fe);background-image:-o-linear-gradient(bottom,#e1ecfa,#ecf4fe);background-image:linear-gradient(bottom,#e1ecfa,#ecf4fe)}.x-nlg .x-tab-default-bottom-disabled{background-image:url(images/tab/tab-default-bottom-disabled-bg.gif)}.x-nbr .x-tab-default{background-image:none}.x-tab-default-top-over .x-frame-tl,.x-tab-default-top-over .x-frame-bl,.x-tab-default-top-over .x-frame-tr,.x-tab-default-top-over .x-frame-br,.x-tab-default-top-over .x-frame-tc,.x-tab-default-top-over .x-frame-bc,.x-tab-default-left-over .x-frame-tl,.x-tab-default-left-over .x-frame-bl,.x-tab-default-left-over .x-frame-tr,.x-tab-default-left-over .x-frame-br,.x-tab-default-left-over .x-frame-tc,.x-tab-default-left-over .x-frame-bc,.x-tab-default-right-over .x-frame-tl,.x-tab-default-right-over .x-frame-bl,.x-tab-default-right-over .x-frame-tr,.x-tab-default-right-over .x-frame-br,.x-tab-default-right-over .x-frame-tc,.x-tab-default-right-over .x-frame-bc{background-image:url(images/tab/tab-default-top-over-corners.gif)}.x-tab-default-top-over .x-frame-ml,.x-tab-default-top-over .x-frame-mr,.x-tab-default-left-over .x-frame-ml,.x-tab-default-left-over .x-frame-mr,.x-tab-default-right-over .x-frame-ml,.x-tab-default-right-over .x-frame-mr{background-image:url(images/tab/tab-default-top-over-sides.gif)}.x-tab-default-top-over .x-frame-mc,.x-tab-default-left-over .x-frame-mc,.x-tab-default-right-over .x-frame-mc{background-color:#e8f2ff;background-repeat:repeat-x;background-image:url(images/tab/tab-default-top-over-fbg.gif)}.x-tab-default-bottom-over .x-frame-tl,.x-tab-default-bottom-over .x-frame-bl,.x-tab-default-bottom-over .x-frame-tr,.x-tab-default-bottom-over .x-frame-br,.x-tab-default-bottom-over .x-frame-tc,.x-tab-default-bottom-over .x-frame-bc{background-image:url(images/tab/tab-default-bottom-over-corners.gif)}.x-tab-default-bottom-over .x-frame-ml,.x-tab-default-bottom-over .x-frame-mr{background-image:url(images/tab/tab-default-bottom-over-sides.gif)}.x-tab-default-bottom-over .x-frame-mc{background-color:#e8f2ff;background-repeat:repeat-x;background-image:url(images/tab/tab-default-bottom-over-fbg.gif)}.x-tab-default-top-active .x-frame-tl,.x-tab-default-top-active .x-frame-bl,.x-tab-default-top-active .x-frame-tr,.x-tab-default-top-active .x-frame-br,.x-tab-default-top-active .x-frame-tc,.x-tab-default-top-active .x-frame-bc,.x-tab-default-left-active .x-frame-tl,.x-tab-default-left-active .x-frame-bl,.x-tab-default-left-active .x-frame-tr,.x-tab-default-left-active .x-frame-br,.x-tab-default-left-active .x-frame-tc,.x-tab-default-left-active .x-frame-bc,.x-tab-default-right-active .x-frame-tl,.x-tab-default-right-active .x-frame-bl,.x-tab-default-right-active .x-frame-tr,.x-tab-default-right-active .x-frame-br,.x-tab-default-right-active .x-frame-tc,.x-tab-default-right-active .x-frame-bc{background-image:url(images/tab/tab-default-top-active-corners.gif)}.x-tab-default-top-active .x-frame-ml,.x-tab-default-top-active .x-frame-mr,.x-tab-default-left-active .x-frame-ml,.x-tab-default-left-active .x-frame-mr,.x-tab-default-right-active .x-frame-ml,.x-tab-default-right-active .x-frame-mr{background-image:url(images/tab/tab-default-top-active-sides.gif)}.x-tab-default-top-active .x-frame-mc,.x-tab-default-left-active .x-frame-mc,.x-tab-default-right-active .x-frame-mc{background-color:#deecfd;background-repeat:repeat-x;background-image:url(images/tab/tab-default-top-active-fbg.gif)}.x-tab-default-bottom-active .x-frame-tl,.x-tab-default-bottom-active .x-frame-bl,.x-tab-default-bottom-active .x-frame-tr,.x-tab-default-bottom-active .x-frame-br,.x-tab-default-bottom-active .x-frame-tc,.x-tab-default-bottom-active .x-frame-bc{background-image:url(images/tab/tab-default-bottom-active-corners.gif)}.x-tab-default-bottom-active .x-frame-ml,.x-tab-default-bottom-active .x-frame-mr{background-image:url(images/tab/tab-default-bottom-active-sides.gif)}.x-tab-default-bottom-active .x-frame-mc{background-color:#deecfd;background-repeat:repeat-x;background-image:url(images/tab/tab-default-bottom-active-fbg.gif)}.x-tab-default-top-disabled .x-frame-tl,.x-tab-default-top-disabled .x-frame-bl,.x-tab-default-top-disabled .x-frame-tr,.x-tab-default-top-disabled .x-frame-br,.x-tab-default-top-disabled .x-frame-tc,.x-tab-default-top-disabled .x-frame-bc,.x-tab-default-left-disabled .x-frame-tl,.x-tab-default-left-disabled .x-frame-bl,.x-tab-default-left-disabled .x-frame-tr,.x-tab-default-left-disabled .x-frame-br,.x-tab-default-left-disabled .x-frame-tc,.x-tab-default-left-disabled .x-frame-bc,.x-tab-default-right-disabled .x-frame-tl,.x-tab-default-right-disabled .x-frame-bl,.x-tab-default-right-disabled .x-frame-tr,.x-tab-default-right-disabled .x-frame-br,.x-tab-default-right-disabled .x-frame-tc,.x-tab-default-right-disabled .x-frame-bc{background-image:url(images/tab/tab-default-top-disabled-corners.gif)}.x-tab-default-top-disabled .x-frame-ml,.x-tab-default-top-disabled .x-frame-mr,.x-tab-default-left-disabled .x-frame-ml,.x-tab-default-left-disabled .x-frame-mr,.x-tab-default-right-disabled .x-frame-ml,.x-tab-default-right-disabled .x-frame-mr{background-image:url(images/tab/tab-default-top-disabled-sides.gif)}.x-tab-default-top-disabled .x-frame-mc,.x-tab-default-left-disabled .x-frame-mc,.x-tab-default-right-disabled .x-frame-mc{background-color:#e1ecfa;background-repeat:repeat-x;background-image:url(images/tab/tab-default-top-disabled-fbg.gif)}.x-tab-default-bottom-disabled .x-frame-tl,.x-tab-default-bottom-disabled .x-frame-bl,.x-tab-default-bottom-disabled .x-frame-tr,.x-tab-default-bottom-disabled .x-frame-br,.x-tab-default-bottom-disabled .x-frame-tc,.x-tab-default-bottom-disabled .x-frame-bc{background-image:url(images/tab/tab-default-bottom-disabled-corners.gif)}.x-tab-default-bottom-disabled .x-frame-ml,.x-tab-default-bottom-disabled .x-frame-mr{background-image:url(images/tab/tab-default-bottom-disabled-sides.gif)}.x-tab-default-bottom-disabled .x-frame-mc{background-color:#e1ecfa;background-repeat:repeat-x;background-image:url(images/tab/tab-default-bottom-disabled-fbg.gif)}.x-nbr .x-tab-default-top,.x-nbr .x-tab-default-left,.x-nbr .x-tab-default-right{border-bottom-width:1px!important}.x-nbr .x-tab-default-bottom{border-top-width:1px!important}.x-tab-default .x-tab-close-btn{width:11px;height:11px;background-image:url(images/tab/tab-default-close.gif);filter:alpha(opacity=60);opacity:.6}.x-tab-default .x-tab-close-btn-over{filter:alpha(opacity=100);opacity:1}.x-tab-default .x-tab-close-btn{top:2px;right:2px}.x-tab-default-disabled .x-tab-close-btn{filter:alpha(opacity=30);opacity:.3}.x-tab-default-closable .x-tab-wrap{padding-right:14px}.x-tab-default-top-over:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-top-over-bg.gif), corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif), frame-bg:url(images/tab/tab-default-top-over-fbg.gif)"}.x-tab-default-bottom-over:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-bottom-over-bg.gif), corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif), frame-bg:url(images/tab/tab-default-bottom-over-fbg.gif)"}.x-tab-default-top-active:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-top-active-bg.gif), corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif), frame-bg:url(images/tab/tab-default-top-active-fbg.gif)"}.x-tab-default-bottom-active:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-bottom-active-bg.gif), corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif), frame-bg:url(images/tab/tab-default-bottom-active-fbg.gif)"}.x-tab-default-top-disabled:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-top-disabled-bg.gif), corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif), frame-bg:url(images/tab/tab-default-top-disabled-fbg.gif)"}.x-tab-default-bottom-disabled:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-bottom-disabled-bg.gif), corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif), frame-bg:url(images/tab/tab-default-bottom-disabled-fbg.gif)"}.x-tab-bar-default{border-style:solid;border-color:#99bce8}.x-tab-bar-default-top{padding:1px 0 0;border-width:1px 1px 0}.x-tab-bar-default-bottom{padding:0 0 1px 0;border-width:0 1px 1px 1px}.x-tab-bar-default-left{padding:0 0 0 1px;border-width:1px 0 1px 1px}.x-tab-bar-default-right{padding:0 1px 0 0;border-width:1px 1px 1px 0}.x-tab-bar-default-horizontal{height:25px}.x-content-box .x-tab-bar-default-horizontal{height:23px}.x-tab-bar-default-vertical{width:25px}.x-content-box .x-tab-bar-default-vertical{width:23px}.x-tab-bar-body-default-top{padding-bottom:2px}.x-tab-bar-body-default-bottom{padding-top:2px}.x-tab-bar-body-default-left{padding-right:2px}.x-tab-bar-body-default-right{padding-left:2px}.x-tab-bar-strip-default{border-style:solid;border-color:#99bce8;background-color:#deecfd}.x-content-box .x-tab-bar-strip-default-horizontal{height:2px}.x-content-box .x-tab-bar-strip-default-vertical{width:2px}.x-tab-bar-strip-default-top{border-width:1px 0 0 0;height:3px}.x-tab-bar-plain .x-tab-bar-strip-default-top{border-width:1px 1px 0}.x-tab-bar-strip-default-bottom{border-width:0 0 1px 0;height:3px}.x-tab-bar-plain .x-tab-bar-strip-default-bottom{border-width:0 1px 1px 1px}.x-tab-bar-strip-default-left{border-width:0 0 0 1px;width:3px}.x-tab-bar-plain .x-tab-bar-strip-default-left{border-width:1px 0 1px 1px}.x-tab-bar-strip-default-right{border-width:0 1px 0 0;width:3px}.x-tab-bar-plain .x-tab-bar-strip-default-right{border-width:1px 1px 1px 0}.x-tab-bar-default{background-color:#cbdbef}.x-tab-bar-default-top{background-image:none;background-color:#cbdbef;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dde8f5),color-stop(100%,#cbdbef));background-image:-webkit-linear-gradient(top,#dde8f5,#cbdbef);background-image:-moz-linear-gradient(top,#dde8f5,#cbdbef);background-image:-o-linear-gradient(top,#dde8f5,#cbdbef);background-image:linear-gradient(top,#dde8f5,#cbdbef)}.x-nlg .x-tab-bar-default-top{background:url(images/tab-bar/tab-bar-default-top-bg.gif)}.x-tab-bar-default-bottom{background-image:none;background-color:#cbdbef;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#dde8f5),color-stop(100%,#cbdbef));background-image:-webkit-linear-gradient(bottom,#dde8f5,#cbdbef);background-image:-moz-linear-gradient(bottom,#dde8f5,#cbdbef);background-image:-o-linear-gradient(bottom,#dde8f5,#cbdbef);background-image:linear-gradient(bottom,#dde8f5,#cbdbef)}.x-nlg .x-tab-bar-default-bottom{background:url(images/tab-bar/tab-bar-default-bottom-bg.gif) bottom 0}.x-tab-bar-default-left{background-image:none;background-color:#cbdbef;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dde8f5),color-stop(100%,#cbdbef));background-image:-webkit-linear-gradient(left,#dde8f5,#cbdbef);background-image:-moz-linear-gradient(left,#dde8f5,#cbdbef);background-image:-o-linear-gradient(left,#dde8f5,#cbdbef);background-image:linear-gradient(left,#dde8f5,#cbdbef)}.x-nlg .x-tab-bar-default-left{background:url(images/tab-bar/tab-bar-default-left-bg.gif)}.x-tab-bar-default-right{background-image:none;background-color:#cbdbef;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dde8f5),color-stop(100%,#cbdbef));background-image:-webkit-linear-gradient(right,#dde8f5,#cbdbef);background-image:-moz-linear-gradient(right,#dde8f5,#cbdbef);background-image:-o-linear-gradient(right,#dde8f5,#cbdbef);background-image:linear-gradient(right,#dde8f5,#cbdbef)}.x-nlg .x-tab-bar-default-right{background:url(images/tab-bar/tab-bar-default-right-bg.gif) 0 right}.x-tab-bar-default .x-box-scroller{cursor:pointer}.x-tab-bar-default .x-tabbar-scroll-left,.x-tab-bar-default .x-tabbar-scroll-right{height:20px;width:18px}.x-tab-bar-default .x-tabbar-scroll-top,.x-tab-bar-default .x-tabbar-scroll-bottom{width:20px;height:18px}.x-tab-bar-default-bottom .x-box-scroller{margin-top:1px}.x-tab-bar-default-right .x-box-scroller{margin-left:1px}.x-tab-bar-default-top .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-left-top.gif)}.x-tab-bar-default-top .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-right-top.gif)}.x-tab-bar-default-bottom .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-left-bottom.gif)}.x-tab-bar-default-bottom .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-right-bottom.gif)}.x-tab-bar-default-left .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-left.gif)}.x-tab-bar-default-left .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-left.gif)}.x-tab-bar-default-right .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-right.gif)}.x-tab-bar-default-right .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-right.gif)}.x-tab-bar-default .x-tabbar-scroll-left-hover,.x-tab-bar-default .x-tabbar-scroll-right-hover{background-position:-18px 0}.x-tab-bar-default .x-tabbar-scroll-top-hover,.x-tab-bar-default .x-tabbar-scroll-bottom-hover{background-position:0 -18px}.x-tab-bar-default .x-box-scroller-disabled{filter:alpha(opacity=50);opacity:.5;cursor:default}.x-tab-bar-default-top:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-top-bg.gif), stretch:bottom"}.x-tab-bar-default-bottom:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-bottom-bg.gif), stretch:top"}.x-tab-bar-default-left:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-left-bg.gif), stretch:right"}.x-tab-bar-default-right:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-right-bg.gif), stretch:left"}.x-tab-bar-plain{border-width:0;padding:0;height:23px}.x-column-header-checkbox{border-color:#c5c5c5}.x-grid-row-checker,.x-column-header-checkbox .x-column-header-text{height:13px;width:13px;background-image:url(images/form/checkbox.gif);line-height:13px}.x-column-header-checkbox .x-column-header-inner{padding:5px 5px 4px 5px}.x-grid-cell-row-checker .x-grid-cell-inner{padding:4px 5px 3px 5px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-row-checker .x-grid-cell-inner{padding-top:3px;padding-bottom:2px}.x-grid-hd-checker-on .x-column-header-text,.x-grid-row-selected .x-grid-row-checker,.x-grid-row-checked .x-grid-row-checker{background-position:0 -13px}.x-tree-expander{cursor:pointer}.x-tree-arrows .x-tree-expander{background-image:url(images/tree/arrows.gif)}.x-tree-arrows .x-tree-expander-over .x-tree-expander{background-position:-32px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander{background-position:-16px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander{background-position:-48px center}.x-tree-lines .x-tree-elbow{background-image:url(images/tree/elbow.gif)}.x-tree-lines .x-tree-elbow-end{background-image:url(images/tree/elbow-end.gif)}.x-tree-lines .x-tree-elbow-plus{background-image:url(images/tree/elbow-plus.gif)}.x-tree-lines .x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-plus.gif)}.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus{background-image:url(images/tree/elbow-minus.gif)}.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-minus.gif)}.x-tree-lines .x-tree-elbow-line{background-image:url(images/tree/elbow-line.gif)}.x-tree-no-row-lines .x-tree-expander{background-image:url(images/tree/elbow-plus-nl.gif)}.x-tree-no-row-lines .x-grid-tree-node-expanded .x-tree-expander{background-image:url(images/tree/elbow-minus-nl.gif)}.x-tree-icon{width:16px;height:20px}.x-tree-elbow-img{width:16px;height:20px;margin-right:0}.x-tree-icon,.x-tree-elbow-img,.x-tree-checkbox{margin-top:-3px;margin-bottom:-4px}.x-tree-icon-leaf{background-image:url(images/tree/leaf.gif)}.x-tree-icon-parent{background-image:url(images/tree/folder.gif)}.x-grid-tree-node-expanded .x-tree-icon-parent{background-image:url(images/tree/folder-open.gif)}.x-tree-checkbox{margin-right:3px;top:4px;width:13px;height:13px;background-image:url(images/form/checkbox.gif)}.x-tree-checkbox-checked{background-position:0 -13px}.x-grid-tree-loading .x-tree-icon{background-image:url(images/tree/loading.gif)}.x-grid-cell-inner-treecolumn{font-size:1px;line-height:0}.x-tree-node-text{font-size:11px;line-height:13px;padding-left:3px}.x-grid-cell-inner-treecolumn{padding:3px 6px 4px 0}.x-tree-drop-ok-append .x-dd-drop-icon{background-image:url(images/tree/drop-append.gif)}.x-tree-drop-ok-above .x-dd-drop-icon{background-image:url(images/tree/drop-above.gif)}.x-tree-drop-ok-below .x-dd-drop-icon{background-image:url(images/tree/drop-below.gif)}.x-tree-drop-ok-between .x-dd-drop-icon{background-image:url(images/tree/drop-between.gif)}.x-tree-ddindicator{height:1px;border-width:1px 0 0;border-style:dotted;border-color:green}.x-box-tl{background:transparent no-repeat 0 0;zoom:1}.x-box-tc{height:8px;background:transparent repeat-x 0 0;overflow:hidden}.x-box-tr{background:transparent no-repeat right -8px}.x-box-ml{background:transparent repeat-y 0;padding-left:4px;overflow:hidden;zoom:1}.x-box-mc{background:repeat-x 0 -16px;padding:4px 10px}.x-box-mc h3{margin:0 0 4px 0;zoom:1}.x-box-mr{background:transparent repeat-y right;padding-right:4px;overflow:hidden}.x-box-bl{background:transparent no-repeat 0 -16px;zoom:1}.x-box-bc{background:transparent repeat-x 0 -8px;height:8px;overflow:hidden}.x-box-br{background:transparent no-repeat right -24px}.x-box-tl,.x-box-bl{padding-left:8px;overflow:hidden}.x-box-tr,.x-box-br{padding-right:8px;overflow:hidden}.x-box-tl{background-image:url(images/box/corners.gif)}.x-box-tc{background-image:url(images/box/tb.gif)}.x-box-tr{background-image:url(images/box/corners.gif)}.x-box-ml{background-image:url(images/box/l.gif)}.x-box-mc{background-color:#eee;background-image:url(images/box/tb.gif);font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:15px}.x-box-mc h3{font-size:18px;font-weight:bold}.x-box-mr{background-image:url(images/box/r.gif)}.x-box-bl{background-image:url(images/box/corners.gif)}.x-box-bc{background-image:url(images/box/tb.gif)}.x-box-br{background-image:url(images/box/corners.gif)}.x-box-blue .x-box-bl,.x-box-blue .x-box-br,.x-box-blue .x-box-tl,.x-box-blue .x-box-tr{background-image:url(images/box/corners-blue.gif)}.x-box-blue .x-box-bc,.x-box-blue .x-box-mc,.x-box-blue .x-box-tc{background-image:url(images/box/tb-blue.gif)}.x-box-blue .x-box-mc{background-color:#c3daf9}.x-box-blue .x-box-mc h3{color:#17385b}.x-box-blue .x-box-ml{background-image:url(images/box/l-blue.gif)}.x-box-blue .x-box-mr{background-image:url(images/box/r-blue.gif)}.x-message-box .x-msg-box-wait{background-image:url(images/shared/blue-loading.gif)}.x-form-trigger{height:22px}.x-content-box .x-form-trigger{height:21px}.x-field-toolbar .x-form-trigger{height:20px}.x-content-box .x-field-toolbar .x-form-trigger{height:19px}.x-content-box div.x-form-spinner-up,.x-content-box div.x-form-spinner-down{height:10px}.x-content-box .x-toolbar-item div.x-form-spinner-up,.x-content-box .x-toolbar-item div.x-form-spinner-down{height:9px}.x-html-editor-wrap .x-toolbar{border-left-color:#b5b8c8;border-top-color:#b5b8c8;border-right-color:#b5b8c8}.x-html-editor-input{border:1px solid #b5b8c8;border-top-width:0}.x-column-header-trigger{background-color:#c5c5c5;background-image:url(images/grid/grid3-hd-btn.gif)}.x-content-box .x-grid-editor .x-form-trigger{height:19px}.x-grid-editor .x-form-spinner-up,.x-grid-editor .x-form-spinner-down{background-image:url(images/form/spinner-small.gif)}.x-content-box .x-grid-editor .x-form-spinner-up,.x-content-box .x-grid-editor .x-form-spinner-down{height:9px}.x-accordion-hd{border-width:1px 0!important;-webkit-box-shadow:inset 0 0 0 0 #d9e7f8;-moz-box-shadow:inset 0 0 0 0 #d9e7f8;box-shadow:inset 0 0 0 0 #d9e7f8}.x-accordion-hd-sibling-expanded{-webkit-box-shadow:inset 0 1px 0 0 #f3f7fb;-moz-box-shadow:inset 0 1px 0 0 #f3f7fb;box-shadow:inset 0 1px 0 0 #f3f7fb}.x-resizable-over .x-resizable-handle-east,.x-resizable-over .x-resizable-handle-west,.x-resizable-pinned .x-resizable-handle-east,.x-resizable-pinned .x-resizable-handle-west{background-position:left}.x-resizable-over .x-resizable-handle-south,.x-resizable-over .x-resizable-handle-north,.x-resizable-pinned .x-resizable-handle-south,.x-resizable-pinned .x-resizable-handle-north{background-position:top}.x-resizable-over .x-resizable-handle-southeast,.x-resizable-pinned .x-resizable-handle-southeast{background-position:top left}.x-resizable-over .x-resizable-handle-northwest,.x-resizable-pinned .x-resizable-handle-northwest{background-position:bottom right}.x-resizable-over .x-resizable-handle-northeast,.x-resizable-pinned .x-resizable-handle-northeast{background-position:bottom left}.x-resizable-over .x-resizable-handle-southwest,.x-resizable-pinned .x-resizable-handle-southwest{background-position:top right}.x-ie6 .x-slider-horz,.x-ie6 .x-slider-horz .x-slider-end,.x-ie6 .x-slider-horz .x-slider-inner{background-image:url(images/slider/slider-bg.gif)}.x-ie6 .x-slider-horz .x-slider-thumb{background-image:url(images/slider/slider-thumb.gif)}.x-ie6 .x-slider-vert,.x-ie6 .x-slider-vert .x-slider-end,.x-ie6 .x-slider-vert .x-slider-inner{background-image:url(images/slider/slider-v-bg.gif)}.x-ie6 .x-slider-vert .x-slider-thumb{background-image:url(images/slider/slider-v-thumb.gif)}.x-tab-icon-el{top:-1px}.x-tab-noicon .x-tab-icon{display:none} \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/boundlist/trigger-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/boundlist/trigger-arrow.png new file mode 100644 index 0000000..11daac3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/boundlist/trigger-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/corners-blue.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/corners-blue.gif new file mode 100644 index 0000000..fa419b5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/corners-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/corners.gif new file mode 100644 index 0000000..8aa8cae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/l-blue.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/l-blue.gif new file mode 100644 index 0000000..5ed7f00 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/l-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/l.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/l.gif new file mode 100644 index 0000000..0160f97 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/l.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/r-blue.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/r-blue.gif new file mode 100644 index 0000000..3ea5cae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/r-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/r.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/r.gif new file mode 100644 index 0000000..34237f6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/r.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/tb-blue.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/tb-blue.gif new file mode 100644 index 0000000..562fecc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/tb-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/tb.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/tb.gif new file mode 100644 index 0000000..435889b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/box/tb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn-group/btn-group-default-framed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn-group/btn-group-default-framed-corners.gif new file mode 100644 index 0000000..c5f0b13 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn-group/btn-group-default-framed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn-group/btn-group-default-framed-notitle-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn-group/btn-group-default-framed-notitle-corners.gif new file mode 100644 index 0000000..c5f0b13 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn-group/btn-group-default-framed-notitle-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn-group/btn-group-default-framed-notitle-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn-group/btn-group-default-framed-notitle-sides.gif new file mode 100644 index 0000000..c23814f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn-group/btn-group-default-framed-notitle-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn-group/btn-group-default-framed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn-group/btn-group-default-framed-sides.gif new file mode 100644 index 0000000..5aee7e9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn-group/btn-group-default-framed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-bg.gif new file mode 100644 index 0000000..c070109 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-corners.gif new file mode 100644 index 0000000..153748b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-disabled-bg.gif new file mode 100644 index 0000000..a82764d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-disabled-corners.gif new file mode 100644 index 0000000..71ce639 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-disabled-fbg.gif new file mode 100644 index 0000000..792449f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-disabled-sides.gif new file mode 100644 index 0000000..e5bcfdf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-fbg.gif new file mode 100644 index 0000000..5dbfc68 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-focus-bg.gif new file mode 100644 index 0000000..b357a18 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-focus-corners.gif new file mode 100644 index 0000000..f72f1c7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-focus-fbg.gif new file mode 100644 index 0000000..deb2b01 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-focus-sides.gif new file mode 100644 index 0000000..7e5c06a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-over-bg.gif new file mode 100644 index 0000000..b357a18 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-over-corners.gif new file mode 100644 index 0000000..f72f1c7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-over-fbg.gif new file mode 100644 index 0000000..deb2b01 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-over-sides.gif new file mode 100644 index 0000000..7e5c06a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-pressed-bg.gif new file mode 100644 index 0000000..bac8935 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-pressed-corners.gif new file mode 100644 index 0000000..d788020 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-pressed-fbg.gif new file mode 100644 index 0000000..2e4e716 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-pressed-sides.gif new file mode 100644 index 0000000..06fe649 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-sides.gif new file mode 100644 index 0000000..efa95bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-large-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-bg.gif new file mode 100644 index 0000000..ab1e21e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-corners.gif new file mode 100644 index 0000000..153748b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-disabled-bg.gif new file mode 100644 index 0000000..7def1f8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-disabled-corners.gif new file mode 100644 index 0000000..71ce639 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-disabled-fbg.gif new file mode 100644 index 0000000..a501f9a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-disabled-sides.gif new file mode 100644 index 0000000..a7f2f13 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-fbg.gif new file mode 100644 index 0000000..73573ea Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-focus-bg.gif new file mode 100644 index 0000000..c430378 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-focus-corners.gif new file mode 100644 index 0000000..d2d9d16 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-focus-fbg.gif new file mode 100644 index 0000000..ee5eca9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-focus-sides.gif new file mode 100644 index 0000000..c27e5d6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-over-bg.gif new file mode 100644 index 0000000..c430378 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-over-corners.gif new file mode 100644 index 0000000..d2d9d16 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-over-fbg.gif new file mode 100644 index 0000000..ee5eca9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-over-sides.gif new file mode 100644 index 0000000..c27e5d6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-pressed-bg.gif new file mode 100644 index 0000000..f4e6b50 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-pressed-corners.gif new file mode 100644 index 0000000..f06546a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-pressed-fbg.gif new file mode 100644 index 0000000..45a7aeb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-pressed-sides.gif new file mode 100644 index 0000000..5a3ca51 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-sides.gif new file mode 100644 index 0000000..d1b4251 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-medium-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-bg.gif new file mode 100644 index 0000000..ecd90b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-corners.gif new file mode 100644 index 0000000..baccd07 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-disabled-bg.gif new file mode 100644 index 0000000..cd28b4d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-disabled-corners.gif new file mode 100644 index 0000000..71ce639 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-disabled-fbg.gif new file mode 100644 index 0000000..0b31a7c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-disabled-sides.gif new file mode 100644 index 0000000..19d9646 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-fbg.gif new file mode 100644 index 0000000..b0eae50 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-focus-bg.gif new file mode 100644 index 0000000..58aad99 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-focus-corners.gif new file mode 100644 index 0000000..303a4e0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-focus-fbg.gif new file mode 100644 index 0000000..d8bd959 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-focus-sides.gif new file mode 100644 index 0000000..2614158 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-over-bg.gif new file mode 100644 index 0000000..58aad99 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-over-corners.gif new file mode 100644 index 0000000..cf99f20 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-over-fbg.gif new file mode 100644 index 0000000..d8bd959 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-over-sides.gif new file mode 100644 index 0000000..2614158 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-pressed-bg.gif new file mode 100644 index 0000000..d51c945 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-pressed-corners.gif new file mode 100644 index 0000000..d40320d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-pressed-fbg.gif new file mode 100644 index 0000000..e4cdfef Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-pressed-sides.gif new file mode 100644 index 0000000..b7613e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-sides.gif new file mode 100644 index 0000000..32d753a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-small-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-disabled-corners.gif new file mode 100644 index 0000000..dbab9b3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-disabled-sides.gif new file mode 100644 index 0000000..47d16c7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-focus-bg.gif new file mode 100644 index 0000000..79d4a9b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-focus-corners.gif new file mode 100644 index 0000000..88445cb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-focus-fbg.gif new file mode 100644 index 0000000..d7af8d4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-focus-sides.gif new file mode 100644 index 0000000..5e65528 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-over-bg.gif new file mode 100644 index 0000000..79d4a9b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-over-corners.gif new file mode 100644 index 0000000..88445cb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-over-fbg.gif new file mode 100644 index 0000000..d7af8d4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-over-sides.gif new file mode 100644 index 0000000..5e65528 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-pressed-bg.gif new file mode 100644 index 0000000..b40f97f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-pressed-corners.gif new file mode 100644 index 0000000..1aa7e49 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-pressed-fbg.gif new file mode 100644 index 0000000..1ee0bf6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-pressed-sides.gif new file mode 100644 index 0000000..cbcdae1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-large-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-disabled-corners.gif new file mode 100644 index 0000000..29b3997 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-disabled-sides.gif new file mode 100644 index 0000000..47d16c7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-focus-bg.gif new file mode 100644 index 0000000..04e7349 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-focus-corners.gif new file mode 100644 index 0000000..83b339a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-focus-fbg.gif new file mode 100644 index 0000000..57e732a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-focus-sides.gif new file mode 100644 index 0000000..83f9bd3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-over-bg.gif new file mode 100644 index 0000000..04e7349 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-over-corners.gif new file mode 100644 index 0000000..83b339a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-over-fbg.gif new file mode 100644 index 0000000..57e732a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-over-sides.gif new file mode 100644 index 0000000..83f9bd3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-pressed-bg.gif new file mode 100644 index 0000000..df711b4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-pressed-corners.gif new file mode 100644 index 0000000..ae567b7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-pressed-fbg.gif new file mode 100644 index 0000000..cca18e9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-pressed-sides.gif new file mode 100644 index 0000000..ef38051 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-medium-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-disabled-corners.gif new file mode 100644 index 0000000..b482112 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-disabled-sides.gif new file mode 100644 index 0000000..47d16c7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-focus-bg.gif new file mode 100644 index 0000000..35926be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-focus-corners.gif new file mode 100644 index 0000000..450a36c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-focus-fbg.gif new file mode 100644 index 0000000..804c747 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-focus-sides.gif new file mode 100644 index 0000000..a7a36f6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-over-bg.gif new file mode 100644 index 0000000..35926be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-over-corners.gif new file mode 100644 index 0000000..450a36c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-over-fbg.gif new file mode 100644 index 0000000..804c747 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-over-sides.gif new file mode 100644 index 0000000..a7a36f6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-pressed-bg.gif new file mode 100644 index 0000000..47bdc8e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-pressed-corners.gif new file mode 100644 index 0000000..3607a2c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-pressed-fbg.gif new file mode 100644 index 0000000..840e97c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-pressed-sides.gif new file mode 100644 index 0000000..e4f22bf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/btn/btn-default-toolbar-small-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/arrow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/arrow.gif new file mode 100644 index 0000000..3ab4f71 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/arrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/btn.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/btn.gif new file mode 100644 index 0000000..06b404d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/group-cs.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/group-cs.gif new file mode 100644 index 0000000..3d1dca8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/group-cs.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/group-lr.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/group-lr.gif new file mode 100644 index 0000000..7c549f9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/group-lr.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/group-tb.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/group-tb.gif new file mode 100644 index 0000000..adeb0a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/group-tb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-b-noline.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-b-noline.gif new file mode 100644 index 0000000..a4220ee Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-b-noline.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-b.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-b.gif new file mode 100644 index 0000000..84b6470 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-b.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-bo.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-bo.gif new file mode 100644 index 0000000..548700b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-bo.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-light-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-light-rtl.gif new file mode 100644 index 0000000..cfa5ca3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-light-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-light.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-light.gif new file mode 100644 index 0000000..08783c9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-light.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-noline-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-noline-rtl.gif new file mode 100644 index 0000000..c242ef2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-noline-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-noline.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-noline.gif new file mode 100644 index 0000000..0953eab Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-noline.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-o-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-o-rtl.gif new file mode 100644 index 0000000..612dc90 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-o-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-o.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-o.gif new file mode 100644 index 0000000..89c70f3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-o.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-rtl.gif new file mode 100644 index 0000000..8f556c5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow.gif new file mode 100644 index 0000000..8940774 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/button/s-arrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/datepicker/datepicker-footer-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/datepicker/datepicker-footer-bg.gif new file mode 100644 index 0000000..f199a61 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/datepicker/datepicker-footer-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/datepicker/datepicker-header-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/datepicker/datepicker-header-bg.gif new file mode 100644 index 0000000..87d0582 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/datepicker/datepicker-header-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/dd/drop-add.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/dd/drop-add.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/dd/drop-add.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/dd/drop-no.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/dd/drop-no.gif new file mode 100644 index 0000000..08d0833 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/dd/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/dd/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/dd/drop-yes.gif new file mode 100644 index 0000000..8aacb30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/dd/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/editor/tb-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/editor/tb-sprite.gif new file mode 100644 index 0000000..fb70577 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/editor/tb-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/checkbox.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/checkbox.gif new file mode 100644 index 0000000..835b346 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/checkbox.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/clear-trigger-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/clear-trigger-rtl.gif new file mode 100644 index 0000000..13be031 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/clear-trigger-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/clear-trigger.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/clear-trigger.gif new file mode 100644 index 0000000..da78d45 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/clear-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/date-trigger-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/date-trigger-rtl.gif new file mode 100644 index 0000000..07c5bec Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/date-trigger-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/date-trigger.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/date-trigger.gif new file mode 100644 index 0000000..25ef7b3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/date-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/error-tip-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/error-tip-corners.gif new file mode 100644 index 0000000..6ea4c38 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/error-tip-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/exclamation.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/exclamation.gif new file mode 100644 index 0000000..ea31a30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/exclamation.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/radio.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/radio.gif new file mode 100644 index 0000000..db3a530 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/radio.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/search-trigger-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/search-trigger-rtl.gif new file mode 100644 index 0000000..601ad72 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/search-trigger-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/search-trigger.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/search-trigger.gif new file mode 100644 index 0000000..db8802b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/search-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/spinner-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/spinner-rtl.gif new file mode 100644 index 0000000..ff14c06 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/spinner-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/spinner-small-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/spinner-small-rtl.gif new file mode 100644 index 0000000..70c536e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/spinner-small-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/spinner-small.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/spinner-small.gif new file mode 100644 index 0000000..e70f8d8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/spinner-small.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/spinner.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/spinner.gif new file mode 100644 index 0000000..1e323bf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/spinner.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/text-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/text-bg.gif new file mode 100644 index 0000000..4179607 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/text-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/trigger-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/trigger-rtl.gif new file mode 100644 index 0000000..4037892 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/trigger-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/trigger-square-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/trigger-square-rtl.gif new file mode 100644 index 0000000..6b23d18 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/trigger-square-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/trigger-square.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/trigger-square.gif new file mode 100644 index 0000000..3004ec5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/trigger-square.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/trigger-tpl-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/trigger-tpl-rtl.gif new file mode 100644 index 0000000..1e766e4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/trigger-tpl-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/trigger-tpl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/trigger-tpl.gif new file mode 100644 index 0000000..e3701a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/trigger-tpl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/trigger.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/trigger.gif new file mode 100644 index 0000000..f6cba37 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/form/trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif new file mode 100644 index 0000000..42719a0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif new file mode 100644 index 0000000..c5dc9f3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif new file mode 100644 index 0000000..8f61721 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif new file mode 100644 index 0000000..c5dc9f3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/arrow-left-white.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/arrow-left-white.gif new file mode 100644 index 0000000..63088f5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/arrow-left-white.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/arrow-right-white.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/arrow-right-white.gif new file mode 100644 index 0000000..e9e0678 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/arrow-right-white.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/cell-special-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/cell-special-bg.gif new file mode 100644 index 0000000..d76ffbc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/cell-special-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/cell-special-bg.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/cell-special-bg.png new file mode 100644 index 0000000..0bcc236 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/cell-special-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/cell-special-selected-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/cell-special-selected-bg.gif new file mode 100644 index 0000000..f1da867 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/cell-special-selected-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/cell-special-selected-bg.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/cell-special-selected-bg.png new file mode 100644 index 0000000..500c3bd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/cell-special-selected-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/col-move-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/col-move-bottom.gif new file mode 100644 index 0000000..cc1e473 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/col-move-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/col-move-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/col-move-top.gif new file mode 100644 index 0000000..58ff32c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/col-move-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/column-header-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/column-header-bg.gif new file mode 100644 index 0000000..dec6733 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/column-header-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/column-header-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/column-header-over-bg.gif new file mode 100644 index 0000000..e15218d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/column-header-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/columns.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/columns.gif new file mode 100644 index 0000000..2d3a823 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/columns.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/dd-insert-arrow-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/dd-insert-arrow-left.gif new file mode 100644 index 0000000..5d923b2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/dd-insert-arrow-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/dd-insert-arrow-left.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/dd-insert-arrow-left.png new file mode 100644 index 0000000..5dc6967 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/dd-insert-arrow-left.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/dd-insert-arrow-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/dd-insert-arrow-right.gif new file mode 100644 index 0000000..8d154db Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/dd-insert-arrow-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/dd-insert-arrow-right.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/dd-insert-arrow-right.png new file mode 100644 index 0000000..b1a1819 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/dd-insert-arrow-right.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/dirty-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/dirty-rtl.gif new file mode 100644 index 0000000..22fa12a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/dirty-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/dirty.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/dirty.gif new file mode 100644 index 0000000..4f217a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/dirty.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/done.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/done.gif new file mode 100644 index 0000000..a937cb2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/done.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/drop-no.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/drop-no.gif new file mode 100644 index 0000000..31a332b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/drop-yes.gif new file mode 100644 index 0000000..926010e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/footer-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/footer-bg.gif new file mode 100644 index 0000000..126120f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/footer-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid-blue-hd.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid-blue-hd.gif new file mode 100644 index 0000000..862094e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid-blue-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid-blue-split.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid-blue-split.gif new file mode 100644 index 0000000..5286f58 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid-blue-split.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid-hrow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid-hrow.gif new file mode 100644 index 0000000..6374104 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid-hrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid-loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid-loading.gif new file mode 100644 index 0000000..d112c54 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid-split.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid-split.gif new file mode 100644 index 0000000..c76a16e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid-split.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid-vista-hd.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid-vista-hd.gif new file mode 100644 index 0000000..d097263 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid-vista-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid3-hd-btn-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid3-hd-btn-left.gif new file mode 100644 index 0000000..a08458b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid3-hd-btn-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid3-hd-btn.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid3-hd-btn.gif new file mode 100644 index 0000000..2112607 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid3-hd-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid3-hrow-over.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid3-hrow-over.gif new file mode 100644 index 0000000..f9c07af Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid3-hrow-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid3-hrow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid3-hrow.gif new file mode 100644 index 0000000..8d459a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid3-hrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid3-rowheader.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid3-rowheader.gif new file mode 100644 index 0000000..2799b45 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/grid3-rowheader.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/group-by.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/group-by.gif new file mode 100644 index 0000000..d6075bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/group-by.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/group-collapse.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/group-collapse.gif new file mode 100644 index 0000000..c896868 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/group-collapse.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/group-expand-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/group-expand-sprite.gif new file mode 100644 index 0000000..9c1653b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/group-expand-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/group-expand.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/group-expand.gif new file mode 100644 index 0000000..26db3c0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/group-expand.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hd-pop.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hd-pop.gif new file mode 100644 index 0000000..eb8ba79 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hd-pop.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hmenu-asc.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hmenu-asc.gif new file mode 100644 index 0000000..15058ff Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hmenu-asc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hmenu-desc.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hmenu-desc.gif new file mode 100644 index 0000000..f26b7c2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hmenu-desc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hmenu-lock.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hmenu-lock.gif new file mode 100644 index 0000000..1596126 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hmenu-lock.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hmenu-lock.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hmenu-lock.png new file mode 100644 index 0000000..8b81e7f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hmenu-lock.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hmenu-unlock.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hmenu-unlock.gif new file mode 100644 index 0000000..af59cf9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hmenu-unlock.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hmenu-unlock.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hmenu-unlock.png new file mode 100644 index 0000000..9dd5df3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/hmenu-unlock.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/invalid_line.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/invalid_line.gif new file mode 100644 index 0000000..fb7e0f3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/invalid_line.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/loading.gif new file mode 100644 index 0000000..e846e1d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/mso-hd.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/mso-hd.gif new file mode 100644 index 0000000..669f3cf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/mso-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/nowait.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/nowait.gif new file mode 100644 index 0000000..4c5862c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/nowait.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-first-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-first-disabled.gif new file mode 100644 index 0000000..1e02c41 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-first-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-first.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-first.gif new file mode 100644 index 0000000..d84f41a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-first.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-last-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-last-disabled.gif new file mode 100644 index 0000000..8697067 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-last-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-last.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-last.gif new file mode 100644 index 0000000..3df5c2b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-last.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-next-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-next-disabled.gif new file mode 100644 index 0000000..90a7756 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-next-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-next.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-next.gif new file mode 100644 index 0000000..9601635 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-next.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-prev-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-prev-disabled.gif new file mode 100644 index 0000000..37154d6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-prev-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-prev.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-prev.gif new file mode 100644 index 0000000..eb70cf8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/page-prev.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/pick-button.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/pick-button.gif new file mode 100644 index 0000000..6957924 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/pick-button.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/property-cell-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/property-cell-bg.gif new file mode 100644 index 0000000..7890cf9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/property-cell-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/property-cell-selected-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/property-cell-selected-bg.gif new file mode 100644 index 0000000..1dfe9a6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/property-cell-selected-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/refresh-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/refresh-disabled.gif new file mode 100644 index 0000000..607800b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/refresh-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/refresh.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/refresh.gif new file mode 100644 index 0000000..110f684 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/refresh.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/row-check-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/row-check-sprite.gif new file mode 100644 index 0000000..6101164 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/row-check-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/row-expand-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/row-expand-sprite.gif new file mode 100644 index 0000000..6f4d874 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/row-expand-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/row-over.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/row-over.gif new file mode 100644 index 0000000..b288e38 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/row-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/row-sel.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/row-sel.gif new file mode 100644 index 0000000..98209e6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/row-sel.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/sort-hd.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/sort-hd.gif new file mode 100644 index 0000000..45e545f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/sort-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/sort_asc.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/sort_asc.gif new file mode 100644 index 0000000..a1fc4f5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/sort_asc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/sort_desc.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/sort_desc.gif new file mode 100644 index 0000000..508dbe8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/sort_desc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/wait.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/wait.gif new file mode 100644 index 0000000..471c1a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/grid/wait.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/layout/mini-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/layout/mini-bottom.gif new file mode 100644 index 0000000..c18f9e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/layout/mini-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/layout/mini-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/layout/mini-left.gif new file mode 100644 index 0000000..99f7993 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/layout/mini-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/layout/mini-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/layout/mini-right.gif new file mode 100644 index 0000000..5b13c5a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/layout/mini-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/layout/mini-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/layout/mini-top.gif new file mode 100644 index 0000000..a4ca2bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/layout/mini-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/checked.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/checked.gif new file mode 100644 index 0000000..fad5893 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/checked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/group-checked.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/group-checked.gif new file mode 100644 index 0000000..d30b3e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/group-checked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/item-over.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/item-over.gif new file mode 100644 index 0000000..da1f289 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/item-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/menu-item-active-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/menu-item-active-bg.gif new file mode 100644 index 0000000..d96fd89 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/menu-item-active-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/menu-parent-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/menu-parent-left.gif new file mode 100644 index 0000000..21e9683 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/menu-parent-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/menu-parent.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/menu-parent.gif new file mode 100644 index 0000000..1e37562 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/menu-parent.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/menu.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/menu.gif new file mode 100644 index 0000000..30a2c4b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/menu.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/scroll-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/scroll-bottom.gif new file mode 100644 index 0000000..c18f9e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/scroll-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/scroll-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/scroll-top.gif new file mode 100644 index 0000000..a4ca2bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/scroll-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/unchecked.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/unchecked.gif new file mode 100644 index 0000000..43823e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/menu/unchecked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-bottom-bg.gif new file mode 100644 index 0000000..8c87b35 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-bottom-bg.gif new file mode 100644 index 0000000..62cdbac Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-bottom-corners.gif new file mode 100644 index 0000000..a0775fa Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-bottom-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-bottom-fbg.gif new file mode 100644 index 0000000..b6f4c76 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-bottom-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-bottom-sides.gif new file mode 100644 index 0000000..0daf906 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif new file mode 100644 index 0000000..e92fcd9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif new file mode 100644 index 0000000..9c1aa1b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif new file mode 100644 index 0000000..b6f4c76 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif new file mode 100644 index 0000000..0daf906 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif new file mode 100644 index 0000000..c089d62 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-bg.gif new file mode 100644 index 0000000..2409be0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif new file mode 100644 index 0000000..ea10459 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-corners.gif new file mode 100644 index 0000000..4ca2459 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif new file mode 100644 index 0000000..5038738 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif new file mode 100644 index 0000000..6bb55c9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif new file mode 100644 index 0000000..3423ce9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-sides.gif new file mode 100644 index 0000000..aa3a90b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif new file mode 100644 index 0000000..8646a15 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-bg.gif new file mode 100644 index 0000000..ae8d338 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif new file mode 100644 index 0000000..2ffb03b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-corners.gif new file mode 100644 index 0000000..4674ceb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif new file mode 100644 index 0000000..4ed031c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif new file mode 100644 index 0000000..e50338b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif new file mode 100644 index 0000000..ec730ad Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-sides.gif new file mode 100644 index 0000000..a54f3e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-top-bg.gif new file mode 100644 index 0000000..84ecd1c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-top-corners.gif new file mode 100644 index 0000000..1dc5653 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif new file mode 100644 index 0000000..c4add69 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-top-sides.gif new file mode 100644 index 0000000..f95026a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-collapsed-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-bg-rtl.gif new file mode 100644 index 0000000..cac97bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-bg.gif new file mode 100644 index 0000000..ffc3565 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-corners-rtl.gif new file mode 100644 index 0000000..45d11e4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-corners.gif new file mode 100644 index 0000000..4286d5d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-fbg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-fbg-rtl.gif new file mode 100644 index 0000000..5038738 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-fbg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-fbg.gif new file mode 100644 index 0000000..6bb55c9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-sides-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-sides-rtl.gif new file mode 100644 index 0000000..3423ce9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-sides-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-sides.gif new file mode 100644 index 0000000..aa3a90b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-bg-rtl.gif new file mode 100644 index 0000000..4d7c8fc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-bg.gif new file mode 100644 index 0000000..2e00f0d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-corners-rtl.gif new file mode 100644 index 0000000..ba518f0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-corners.gif new file mode 100644 index 0000000..dd8f82d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-fbg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-fbg-rtl.gif new file mode 100644 index 0000000..4ed031c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-fbg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-fbg.gif new file mode 100644 index 0000000..e50338b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-sides-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-sides-rtl.gif new file mode 100644 index 0000000..ec730ad Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-sides-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-sides.gif new file mode 100644 index 0000000..a54f3e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-top-bg.gif new file mode 100644 index 0000000..566cf70 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-top-corners.gif new file mode 100644 index 0000000..39fb513 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-top-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-top-fbg.gif new file mode 100644 index 0000000..c4add69 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-top-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-top-sides.gif new file mode 100644 index 0000000..f95026a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-framed-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-left-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-left-bg-rtl.gif new file mode 100644 index 0000000..b6d2e98 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-left-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-left-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-left-bg.gif new file mode 100644 index 0000000..c5d86ba Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-right-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-right-bg-rtl.gif new file mode 100644 index 0000000..4d7c8fc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-right-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-right-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-right-bg.gif new file mode 100644 index 0000000..2e00f0d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-top-bg.gif new file mode 100644 index 0000000..566cf70 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel-header/panel-header-default-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel/panel-default-framed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel/panel-default-framed-corners.gif new file mode 100644 index 0000000..2939cff Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel/panel-default-framed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel/panel-default-framed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel/panel-default-framed-sides.gif new file mode 100644 index 0000000..24e492d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/panel/panel-default-framed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/progress/progress-default-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/progress/progress-default-bg.gif new file mode 100644 index 0000000..d972de8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/progress/progress-default-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/blue-loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/blue-loading.gif new file mode 100644 index 0000000..3bbf639 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/blue-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/calendar.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/calendar.gif new file mode 100644 index 0000000..133cf23 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/calendar.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/glass-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/glass-bg.gif new file mode 100644 index 0000000..26fbbae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/glass-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/hd-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/hd-sprite.gif new file mode 100644 index 0000000..42da1ea Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/hd-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/icon-error.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/icon-error.gif new file mode 100644 index 0000000..397b655 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/icon-error.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/icon-info.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/icon-info.gif new file mode 100644 index 0000000..58281c3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/icon-info.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/icon-question.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/icon-question.gif new file mode 100644 index 0000000..08abd82 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/icon-question.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/icon-warning.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/icon-warning.gif new file mode 100644 index 0000000..27ff98b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/icon-warning.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/large-loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/large-loading.gif new file mode 100644 index 0000000..b36b555 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/large-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/left-btn.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/left-btn.gif new file mode 100644 index 0000000..a0ddd9e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/left-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/loading-balls.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/loading-balls.gif new file mode 100644 index 0000000..9ce214b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/loading-balls.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/right-btn.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/right-btn.gif new file mode 100644 index 0000000..dee63e2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/right-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/shadow-c.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/shadow-c.png new file mode 100644 index 0000000..d435f80 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/shadow-c.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/shadow-lr.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/shadow-lr.png new file mode 100644 index 0000000..bb88b6f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/shadow-lr.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/shadow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/shadow.png new file mode 100644 index 0000000..75c0eba Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/shadow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/warning.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/warning.gif new file mode 100644 index 0000000..806d4bc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/shared/warning.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/e-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/e-handle-dark.gif new file mode 100644 index 0000000..b5486c1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/e-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/e-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/e-handle.gif new file mode 100644 index 0000000..00ba835 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/e-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/ne-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/ne-handle-dark.gif new file mode 100644 index 0000000..04e5ecf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/ne-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/ne-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/ne-handle.gif new file mode 100644 index 0000000..09405c7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/ne-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/nw-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/nw-handle-dark.gif new file mode 100644 index 0000000..6e49d69 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/nw-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/nw-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/nw-handle.gif new file mode 100644 index 0000000..2fcea8a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/nw-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/s-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/s-handle-dark.gif new file mode 100644 index 0000000..4eb5f0f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/s-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/s-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/s-handle.gif new file mode 100644 index 0000000..bf069c2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/s-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/se-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/se-handle-dark.gif new file mode 100644 index 0000000..c4c1087 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/se-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/se-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/se-handle.gif new file mode 100644 index 0000000..972055e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/se-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/square.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/square.gif new file mode 100644 index 0000000..14ce6f7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/square.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/sw-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/sw-handle-dark.gif new file mode 100644 index 0000000..77224b0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/sw-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/sw-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/sw-handle.gif new file mode 100644 index 0000000..3ca0ed9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/sizer/sw-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-bg.gif new file mode 100644 index 0000000..39edef4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-bg.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-bg.png new file mode 100644 index 0000000..10ede26 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-thumb.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-thumb.gif new file mode 100644 index 0000000..5ba1dfb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-thumb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-thumb.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-thumb.png new file mode 100644 index 0000000..cd654a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-thumb.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-v-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-v-bg.gif new file mode 100644 index 0000000..8cc7a87 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-v-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-v-bg.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-v-bg.png new file mode 100644 index 0000000..6ed116a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-v-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-v-thumb.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-v-thumb.gif new file mode 100644 index 0000000..58afe96 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-v-thumb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-v-thumb.png b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-v-thumb.png new file mode 100644 index 0000000..7b3d725 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/slider/slider-v-thumb.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-bottom-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-bottom-left.gif new file mode 100644 index 0000000..d44b785 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-bottom-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-bottom-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-bottom-right.gif new file mode 100644 index 0000000..e2248b2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-bottom-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-left-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-left-bottom.gif new file mode 100644 index 0000000..3ed2993 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-left-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-left-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-left-top.gif new file mode 100644 index 0000000..183d0e2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-left-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-right-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-right-bottom.gif new file mode 100644 index 0000000..d8f4851 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-right-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-right-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-right-top.gif new file mode 100644 index 0000000..cd67d82 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-right-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-top-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-top-left.gif new file mode 100644 index 0000000..54b38ef Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-top-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-top-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-top-right.gif new file mode 100644 index 0000000..3394e61 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/default-scroll-top-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/tab-bar-default-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/tab-bar-default-bottom-bg.gif new file mode 100644 index 0000000..8acf925 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/tab-bar-default-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/tab-bar-default-left-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/tab-bar-default-left-bg.gif new file mode 100644 index 0000000..f913424 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/tab-bar-default-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/tab-bar-default-right-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/tab-bar-default-right-bg.gif new file mode 100644 index 0000000..c053536 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/tab-bar-default-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/tab-bar-default-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/tab-bar-default-top-bg.gif new file mode 100644 index 0000000..0db6f65 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab-bar/tab-bar-default-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-active-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-active-bg.gif new file mode 100644 index 0000000..b8a8eb7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-active-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-active-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-active-corners.gif new file mode 100644 index 0000000..7c81a69 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-active-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-active-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-active-fbg.gif new file mode 100644 index 0000000..a55d492 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-active-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-active-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-active-sides.gif new file mode 100644 index 0000000..671d75d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-active-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-bg.gif new file mode 100644 index 0000000..faef4b9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-corners.gif new file mode 100644 index 0000000..14b8845 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-disabled-bg.gif new file mode 100644 index 0000000..538239e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-disabled-corners.gif new file mode 100644 index 0000000..249c3c5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-disabled-fbg.gif new file mode 100644 index 0000000..80cb16e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-disabled-sides.gif new file mode 100644 index 0000000..09fef7f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-fbg.gif new file mode 100644 index 0000000..bf702b3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-over-bg.gif new file mode 100644 index 0000000..6db9524 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-over-corners.gif new file mode 100644 index 0000000..c0abb5f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-over-fbg.gif new file mode 100644 index 0000000..c556cb0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-over-sides.gif new file mode 100644 index 0000000..ba6367e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-sides.gif new file mode 100644 index 0000000..4875921 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-close.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-close.gif new file mode 100644 index 0000000..e699878 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-close.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-active-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-active-bg.gif new file mode 100644 index 0000000..8104a68 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-active-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-active-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-active-corners.gif new file mode 100644 index 0000000..0078032 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-active-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-active-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-active-fbg.gif new file mode 100644 index 0000000..dc7c26f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-active-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-active-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-active-sides.gif new file mode 100644 index 0000000..9be8ed1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-active-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-bg.gif new file mode 100644 index 0000000..e4c1941 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-corners.gif new file mode 100644 index 0000000..677cd68 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-disabled-bg.gif new file mode 100644 index 0000000..8321084 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-disabled-corners.gif new file mode 100644 index 0000000..39c1522 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-disabled-fbg.gif new file mode 100644 index 0000000..bf668ef Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-disabled-sides.gif new file mode 100644 index 0000000..b59d3e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-fbg.gif new file mode 100644 index 0000000..b4f25d2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-over-bg.gif new file mode 100644 index 0000000..2da0711 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-over-corners.gif new file mode 100644 index 0000000..bf289d6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-over-fbg.gif new file mode 100644 index 0000000..a3bae33 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-over-sides.gif new file mode 100644 index 0000000..48a1791 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-sides.gif new file mode 100644 index 0000000..0fc85c6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tab/tab-default-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tip/tip-default-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tip/tip-default-corners.gif new file mode 100644 index 0000000..232d73c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tip/tip-default-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tip/tip-default-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tip/tip-default-sides.gif new file mode 100644 index 0000000..bc725b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tip/tip-default-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tip/tip-form-invalid-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tip/tip-form-invalid-corners.gif new file mode 100644 index 0000000..6ab8ee0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tip/tip-form-invalid-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tip/tip-form-invalid-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tip/tip-form-invalid-sides.gif new file mode 100644 index 0000000..b39a15b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tip/tip-form-invalid-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/toolbar/more-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/toolbar/more-left.gif new file mode 100644 index 0000000..f9b43bc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/toolbar/more-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/toolbar/more.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/toolbar/more.gif new file mode 100644 index 0000000..02c2509 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/toolbar/more.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/toolbar/scroll-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/toolbar/scroll-left.gif new file mode 100644 index 0000000..2db8cf5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/toolbar/scroll-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/toolbar/scroll-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/toolbar/scroll-right.gif new file mode 100644 index 0000000..5d5a7ab Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/toolbar/scroll-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/toolbar/toolbar-default-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/toolbar/toolbar-default-bg.gif new file mode 100644 index 0000000..8544215 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/toolbar/toolbar-default-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tools/tool-sprite-tpl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tools/tool-sprite-tpl.gif new file mode 100644 index 0000000..e647867 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tools/tool-sprite-tpl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tools/tool-sprites.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tools/tool-sprites.gif new file mode 100644 index 0000000..2b6b809 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tools/tool-sprites.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tools/tools-sprites-trans.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tools/tools-sprites-trans.gif new file mode 100644 index 0000000..ead931e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tools/tools-sprites-trans.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/arrows-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/arrows-rtl.gif new file mode 100644 index 0000000..7083d77 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/arrows-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/arrows.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/arrows.gif new file mode 100644 index 0000000..f7b8b1c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/arrows.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-above.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-above.gif new file mode 100644 index 0000000..30d1ca7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-above.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-add.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-add.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-add.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-append.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-append.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-append.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-below.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-below.gif new file mode 100644 index 0000000..85f66b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-below.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-between.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-between.gif new file mode 100644 index 0000000..5c6c09d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-between.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-no.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-no.gif new file mode 100644 index 0000000..9d9c6a9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-over.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-over.gif new file mode 100644 index 0000000..30d1ca7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-under.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-under.gif new file mode 100644 index 0000000..85f66b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-under.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-yes.gif new file mode 100644 index 0000000..8aacb30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-end-minus-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-end-minus-rtl.gif new file mode 100644 index 0000000..10227e6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-end-minus-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-end-minus.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-end-minus.gif new file mode 100644 index 0000000..55d8a0f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-end-minus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-end-plus-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-end-plus-rtl.gif new file mode 100644 index 0000000..f4eef89 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-end-plus-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-end-plus.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-end-plus.gif new file mode 100644 index 0000000..a5c62fa Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-end-plus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-end-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-end-rtl.gif new file mode 100644 index 0000000..a5e7248 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-end-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-end.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-end.gif new file mode 100644 index 0000000..406a88d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-end.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-line-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-line-rtl.gif new file mode 100644 index 0000000..6e5b8b4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-line-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-line.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-line.gif new file mode 100644 index 0000000..e25ed03 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-line.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-minus-nl-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-minus-nl-rtl.gif new file mode 100644 index 0000000..2d8dd98 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-minus-nl-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-minus-nl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-minus-nl.gif new file mode 100644 index 0000000..f50bd40 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-minus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-minus-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-minus-rtl.gif new file mode 100644 index 0000000..ed3e5a0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-minus-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-minus.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-minus.gif new file mode 100644 index 0000000..a728796 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-minus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-plus-nl-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-plus-nl-rtl.gif new file mode 100644 index 0000000..2d1e917 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-plus-nl-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-plus-nl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-plus-nl.gif new file mode 100644 index 0000000..96f8d72 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-plus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-plus-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-plus-rtl.gif new file mode 100644 index 0000000..cb0cb49 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-plus-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-plus.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-plus.gif new file mode 100644 index 0000000..ae41983 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-plus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-rtl.gif new file mode 100644 index 0000000..1139cb0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow.gif new file mode 100644 index 0000000..201c413 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/elbow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/folder-open-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/folder-open-rtl.gif new file mode 100644 index 0000000..a34c546 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/folder-open-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/folder-open.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/folder-open.gif new file mode 100644 index 0000000..361e1be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/folder-open.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/folder-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/folder-rtl.gif new file mode 100644 index 0000000..4fab30f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/folder-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/folder.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/folder.gif new file mode 100644 index 0000000..b2fd81a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/folder.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/leaf-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/leaf-rtl.gif new file mode 100644 index 0000000..ab0979a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/leaf-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/leaf.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/leaf.gif new file mode 100644 index 0000000..445769d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/leaf.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/loading.gif new file mode 100644 index 0000000..e846e1d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/s.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/s.gif new file mode 100644 index 0000000..1d11fa9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/tree/s.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/util/splitter/mini-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/util/splitter/mini-bottom.gif new file mode 100644 index 0000000..c18f9e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/util/splitter/mini-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/util/splitter/mini-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/util/splitter/mini-left.gif new file mode 100644 index 0000000..99f7993 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/util/splitter/mini-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/util/splitter/mini-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/util/splitter/mini-right.gif new file mode 100644 index 0000000..5b13c5a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/util/splitter/mini-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/util/splitter/mini-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/util/splitter/mini-top.gif new file mode 100644 index 0000000..a4ca2bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/util/splitter/mini-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-bottom-corners.gif new file mode 100644 index 0000000..4a9f7e2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-bottom-sides.gif new file mode 100644 index 0000000..fdf2fde Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-bottom-corners.gif new file mode 100644 index 0000000..af3995c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-bottom-sides.gif new file mode 100644 index 0000000..c54c5bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-left-corners-rtl.gif new file mode 100644 index 0000000..b3ce3f2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-left-corners.gif new file mode 100644 index 0000000..a7c3e49 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-left-sides.gif new file mode 100644 index 0000000..0946e3c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-right-corners-rtl.gif new file mode 100644 index 0000000..a5fef55 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-right-corners.gif new file mode 100644 index 0000000..6125d58 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-right-sides.gif new file mode 100644 index 0000000..6c23c96 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-top-corners.gif new file mode 100644 index 0000000..b4bb180 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-top-sides.gif new file mode 100644 index 0000000..c54c5bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-collapsed-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-left-corners-rtl.gif new file mode 100644 index 0000000..302221c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-left-corners.gif new file mode 100644 index 0000000..4a512c9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-left-sides.gif new file mode 100644 index 0000000..d0dcf0c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-right-corners-rtl.gif new file mode 100644 index 0000000..78c6a68 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-right-corners.gif new file mode 100644 index 0000000..71943eb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-right-sides.gif new file mode 100644 index 0000000..7ae4a3a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-top-corners.gif new file mode 100644 index 0000000..5208fac Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-top-sides.gif new file mode 100644 index 0000000..fdf2fde Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window-header/window-header-default-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window/window-default-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window/window-default-corners.gif new file mode 100644 index 0000000..1322153 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window/window-default-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window/window-default-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window/window-default-sides.gif new file mode 100644 index 0000000..727e4cc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-classic/images/window/window-default-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/Readme.md b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/Readme.md new file mode 100644 index 0000000..04c60d5 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/Readme.md @@ -0,0 +1,3 @@ +# ext-theme-gray/resources + +This folder contains static resources (typically an `"images"` folder as well). diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/ext-theme-gray-all-debug.css b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/ext-theme-gray-all-debug.css new file mode 100644 index 0000000..4a34a6e --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/ext-theme-gray-all-debug.css @@ -0,0 +1,19529 @@ +/* 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. + */ +/* including package ext-theme-neutral */ +/* including package ext-theme-classic */ +/* including package ext-theme-gray */ +/* including package ext-theme-gray */ +/* including package ext-theme-classic */ +/* including package ext-theme-neutral */ +/** + * @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 {string} $font-size + * The default font-family 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 + */ +/** + * @class Ext.FocusManager + */ +/** + * @var {color} + * The border-color of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-style of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-width of the focusFrame. See {@link #method-enable}. + */ +/** + * @class Ext.LoadMask + */ +/** + * @var {number} + * Opacity of the LoadMask + */ +/** + * @var {color} + * The background-color of the LoadMask + */ +/** + * @var {string} + * The type of cursor to dislay when the cursor is over the LoadMask + */ +/** + * @var {number/list} + * The padding to apply to the LoadMask's message element + */ +/** + * @var {string} + * The border-style of the LoadMask's message element + */ +/** + * @var {color} + * The border-color of the LoadMask's message element + */ +/** + * @var {number} + * The border-width of the LoadMask's message element + */ +/** + * @var {color} + * The background-color of the LoadMask's message element + */ +/** + * @var {string/list} + * The background-gradient of the LoadMask's message element. Can be either the name + * of a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the message inner element + */ +/** + * @var {string} + * The icon to display in the message inner element + */ +/** + * @var {list} + * The background-position of the icon + */ +/** + * @var {string} + * The border-style of the message inner element + */ +/** + * @var {color} + * The border-color of the message inner element + */ +/** + * @var {number} + * The border-width of the message inner element + */ +/** + * @var {color} + * The background-color of the message inner element + */ +/** + * @var {color} + * The text color of the message inner element + */ +/** + * @var {number} + * The font-size of the message inner element + */ +/** + * @var {string} + * The font-weight of the message inner element + */ +/** + * @var {string} + * The font-family of the message inner element + */ +/** + * @var {number/list} + * The padding of the message element + */ +/** + * @var {number} + * The border-radius of the message element + */ +/** + * @class Ext.ProgressBar + */ +/** + * @var {number} + * The height of the ProgressBar + */ +/** + * @var {color} + * The border-color of the ProgressBar + */ +/** + * @var {number} + * The border-width of the ProgressBar + */ +/** + * @var {number} + * The border-radius of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar's moving element + */ +/** + * @var {string/list} + * The background-gradient of the ProgressBar's moving element. Can be either the name of + * a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The color of the ProgressBar's text when in front of the ProgressBar's moving element + */ +/** + * @var {color} + * The color of the ProgressBar's text when the ProgressBar's 'moving element is not under it + */ +/** + * @var {string} + * The text-align of the ProgressBar's text + */ +/** + * @var {number} + * The font-size of the ProgressBar's text + */ +/** + * @var {string} + * The font-weight of the ProgressBar's text + */ +/** + * @var {boolean} + * True to include the "default" ProgressBar UI + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a small {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a medium {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a large {@link #scale} button + */ +/** + * @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 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 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 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 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 disabled + */ +/** + * @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 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 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 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 disabled + */ +/** + * @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-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 buton 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-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 + */ +/** + * @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 {number/list} + * The margin 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 {number/list} + * The margin of Toolbar text + */ +/** + * @var {color} + * The text-color of Toolbar text + */ +/** + * @var {number/list} + * The padding of Toolbar text + */ +/** + * @var {number} + * The line-height of Toolbar text + */ +/** + * @var {number} + * The width of Toolbar scrollers + */ +/** + * @var {number} + * The height of Toolbar scrollers + */ +/** + * @var {color} + * The border-color of Toolbar scrollers + */ +/** + * @var {number} + * The border-width of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of disabled Toolbar scrollers + */ +/** + * @var {number} + * The opacity of disabled Toolbar scrollers + */ +/** + * @var {string} + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + */ +/** + * @var {boolean} + * True to include the "default" toolbar UI + */ +/** + * @class Ext.panel.Panel + */ +/** + * @var {number} + * The default border-width of Panels + */ +/** + * @var {color} + * The base color of Panels + */ +/** + * @var {color} + * The default border-color of Panels + */ +/** + * @var {$border-width-threshold} + * 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 {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 {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 {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 + */ +/** + * @class Ext.tip.Tip + */ +/** + * @var {color} + * The background-color of the Tip + */ +/** + * @var {string/list} + * The background-gradient of the Tip. Can be either the name of a predefined gradient or a + * list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The text color of the Tip body + */ +/** + * @var {number} + * The font-size of the Tip body + */ +/** + * @var {string} + * The font-weight of the Tip body + */ +/** + * @var {number/list} + * The padding of the Tip body + */ +/** + * @var {color} + * The text color of any anchor tags inside the Tip body + */ +/** + * @var {color} + * The text color of the Tip header + */ +/** + * @var {number} + * The font-size of the Tip header + */ +/** + * @var {string} + * The font-weight of the Tip header + */ +/** + * @var {number/list} + * The padding of the Tip header's body element + */ +/** + * @var {color} + * The border-color of the Tip + */ +/** + * @var {number} + * The border-width of the Tip + */ +/** + * @var {number} + * The border-radius of the Tip + */ +/** + * @var {color} + * The inner border-color of the form field error Tip + */ +/** + * @var {number} + * The inner border-width of the form field error Tip + */ +/** + * @var {color} + * The border-color of the form field error Tip + */ +/** + * @var {number} + * The border-radius of the form field error Tip + */ +/** + * @var {number} + * The border-width of the form field error Tip + */ +/** + * @var {color} + * The background-color of the form field error Tip + */ +/** + * @var {number/list} + * The padding of the form field error Tip's body element + */ +/** + * @var {color} + * The text color of the form field error Tip's body element + */ +/** + * @var {number} + * The font-size of the form field error Tip's body element + */ +/** + * @var {string} + * The font-weight of the form field error Tip's body element + */ +/** + * @var {color} + * The color of anchor tags in the form field error Tip's body element + */ +/** + * @var {number} + * The space between {@link Ext.panel.Tool Tools} in the header + */ +/** + * @var {string} + * The sprite to use for the header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" tip UI + */ +/** + * @var {boolean} + * True to include the "form-invalid" tip UI + */ +/** + * @class Ext.container.ButtonGroup + */ +/** + * @var {color} + * The background-color of the ButtonGroup + */ +/** + * @var {color} + * The border-color of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of the ButtonGroup + */ +/** + * @var {number/list} + * The body padding of the ButtonGroup + */ +/** + * @var {number/list} + * The inner border-width of the ButtonGroup + */ +/** + * @var {color} + * The inner border-color of the ButtonGroup + */ +/** + * @var {number/list} + * The margin of the header element. Used to add space around the header. + */ +/** + * @var {number} + * The font-size of the header + */ +/** + * @var {number} + * The font-weight of the header + */ +/** + * @var {number} + * The font-family of the header + */ +/** + * @var {number} + * The line-height of the header + */ +/** + * @var {number} + * The text color of the header + */ +/** + * @var {number} + * The padding of the header + */ +/** + * @var {number} + * The background-color of the header + */ +/** + * @var {number} + * The border-spacing to use on the table layout element + */ +/** + * @var {number} + * The background-color of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of framed ButtonGroups + */ +/** + * @var {string} + * Sprite image to use for header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" button group UI + */ +/** + * @var {boolean} + * True to include the "default-framed" button group UI + */ +/** + * @class Ext.window.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 + */ +/** + * @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 {color} + * The text color of toolbar field labels + */ +/** + * @var {string} + * The font-weight of toolbar field labels + */ +/** + * @var {number} + * The font-size of toolbar field labels + */ +/** + * @var {string} + * The font-family of toolbar field labels + */ +/** + * @var {number} + * The line-height of toolbar field labels + */ +/** + * @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 {measurement} $form-item-margin-bottom + * The bottom margin to apply to form items when in auto, anchor, vbox, or table layout + */ +/** + * @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 {font} $form-field-font + * Font 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 {font} $form-toolbar-field-font + * Font 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. + */ +/** + * @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 {number} $form-field-disabled-opacity + */ +/** + * @class Ext.form.field.TextArea + */ +/** + * @var {number/string} + * The line-height to use for the TextArea's text + */ +/** + * @class Ext.form.field.Display + */ +/** + * @var {color} + * The text color of display fields + */ +/** + * @var {string} + * The font-weight of display fields + */ +/** + * @var {number} + * The font-size of display fields + */ +/** + * @var {string} + * The font-family of display fields + */ +/** + * @var {number} + * The line-height of display fields + */ +/** + * @var {string} + * The font-weight of toolbar display fields + */ +/** + * @var {number} + * The font-size of toolbar display fields + */ +/** + * @var {string} + * The font-family of toolbar display fields + */ +/** + * @var {number} + * The line-height of toolbar display fields + */ +/** + * @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 + */ +/** + * @class Ext.form.field.Checkbox + */ +/** + * @var {number} + * The size of the checkbox + */ +/** + * @var {number} + * The space between the boxLabel and the checkbox. + */ +/** + * @class Ext.form.CheckboxGroup + */ +/** + * @var {number/list} + * The padding of the CheckboxGroup body element + */ +/** + * @var {color} + * The text color of the CheckboxGroup label + */ +/** + * @var {number} + * The padding of the CheckboxGroup label + */ +/** + * @var {number} + * The margin of the CheckboxGroup label + */ +/** + * @var {number} + * The border-width of the CheckboxGroup label + */ +/** + * @var {number} + * The border-style of the CheckboxGroup label + */ +/** + * @var {number} + * The border-color of the CheckboxGroup label + */ +/** + * @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/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/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 {number/list} + * The margin to apply to the FieldSet's checkbox (for FieldSets that use + * {@link #checkboxToggle}) + */ +/** + * @var {number} + * The size of the FieldSet's collapse tool + */ +/** + * @var {string} $fieldset-collapse-tool-background-image + * The background-image to use for the collapse tool. If null the default tool + * sprite will be used. Defaults to null. + */ +/** + * @class Ext.form.field.Radio + */ +/** + * @var {number} + * The size of the radio button + */ +/** + * @class Ext.form.field.Trigger + */ +/** + * @var {number} + * The width of the Trigger field's trigger element + */ +/** + * @var {number/list} + * The width of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border + */ +/** + * @var {string} + * The style of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border when hovered + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused and the trigger is hovered + */ +/** + * @class Ext.form.field.Spinner + */ +/** + * @var {number} + * The height of the Spinner trigger buttons + */ +/** + * @var {number} + * The height of the Spinner trigger buttons when the Spinner is used on a + * {@link Ext.toolbar.Toolbar Toolbar} + */ +/** + * @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 {number/list} + * The padding of BoundList items + */ +/** + * @var {number} + * The border-width of BoundList items + */ +/** + * @var {string} + * The border-style of BoundList items + */ +/** + * @var {color} + * The border-color of BoundList items + */ +/** + * @var {color} + * The border-color of hovered BoundList items + */ +/** + * @var {color} + * The border-color of selected BoundList items + */ +/** + * @var {color} + * The background-color of hovered BoundList items + */ +/** + * @var {color} + * The background-color of selected BoundList items + */ +/** + * @class Ext.picker.Date + */ +/** + * @var {number} + * The border-width of the DatePicker + */ +/** + * @var {string} + * The border-style of the DatePicker + */ +/** + * @var {color} + * The background-color of the DatePicker + */ +/** + * @var {string} + * The background-image of the DatePicker next arrow + */ +/** + * @var {string} + * The background-image of the DatePicker previous arrow + */ +/** + * @var {number} + * The width of DatePicker arrows + */ +/** + * @var {number} + * The height of DatePicker arrows + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a DatePicker arrow + */ +/** + * @var {number} + * The opacity of the DatePicker arrows + */ +/** + * @var {number} + * The opacity of the DatePicker arrows when hovered + */ +/** + * @var {string/list} + * The Date Picker header background gradient. Can be either the name of a predefined gradient + * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the Date Picker header + */ +/** + * @var {color} + * The color of the Date Picker month button + */ +/** + * @var {number} + * The width of the arrow on the Date Picker month button + */ +/** + * @var {string} + * The background-image of the arrow on the Date Picker month button + */ +/** + * @var {boolean} + * True to render the month button as transparent + */ +/** + * @var {string} + * The text-align of the Date Picker header + */ +/** + * @var {number} + * The height of Date Picker items + */ +/** + * @var {number} + * The width of Date Picker items + */ +/** + * @var {number/list} + * The padding of Date Picker items + */ +/** + * @var {string} + * The font-family of Date Picker items + */ +/** + * @var {number} + * The font-size of Date Picker items + */ +/** + * @var {string} + * The font-weight of Date Picker items + */ +/** + * @var {string} + * The text-align of Date Picker items + */ +/** + * @var {color} + * The text color of Date Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Date Picker item + */ +/** + * @var {string} + * The font-family of Date Picker column headers + */ +/** + * @var {number} + * The font-size of Date Picker column headers + */ +/** + * @var {string} + * The font-weight of Date Picker column headers + */ +/** + * @var {string/list} + * The background-gradient of Date Picker column headers. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {string} + * The border-style of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker column headers + */ +/** + * @var {string} + * The text-align of Date Picker column headers + */ +/** + * @var {number} + * The height of Date Picker column headers + */ +/** + * @var {number/list} + * The padding of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker items + */ +/** + * @var {string} + * The border-style of Date Picker items + */ +/** + * @var {color} + * The border-color of Date Picker items + */ +/** + * @var {string} + * The border-style of today's date on the Date Picker + */ +/** + * @var {string} + * The border-style of the selected item + */ +/** + * @var {string} + * The font-weight of the selected item + */ +/** + * @var {color} + * The text color of the items in the previous and next months + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a disabled item + */ +/** + * @var {color} + * The text color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of the Date Picker footer + */ +/** + * @var {string/list} + * The background-gradient of the Date Picker footer. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The border-width of the Date Picker footer + */ +/** + * @var {string} + * The border-style of the Date Picker footer + */ +/** + * @var {string} + * The text-align of the Date Picker footer + */ +/** + * @var {number/list} + * The padding of the Date Picker footer + */ +/** + * @var {number} + * The space between the footer buttons + */ +/** + * @var {color} + * The border-color of the Month Picker + */ +/** + * @var {number} + * The border-width of the Month Picker + */ +/** + * @var {string} + * The border-style of the Month Picker + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The border-color of Month Picker items + */ +/** + * @var {string} + * The border-style of Month Picker items + */ +/** + * @var {string} + * The font-family of Month Picker items + */ +/** + * @var {number} + * The font-size of Month Picker items + */ +/** + * @var {string} + * The font-weight of Month Picker items + */ +/** + * @var {number/list} + * The margin of Month Picker items + */ +/** + * @var {string} + * The text-align of Month Picker items + */ +/** + * @var {number} + * The height of Month Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker item + */ +/** + * @var {color} + * The background-color of hovered Month Picker items + */ +/** + * @var {color} + * The background-color of selected Month Picker items + */ +/** + * @var {string} + * The border-style of selected Month Picker items + */ +/** + * @var {color} + * The border-color of selected Month Picker items + */ +/** + * @var {number} + * The height of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The width of the Month Picker year navigation buttons + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker year navigation button + */ +/** + * @var {number} + * The opacity of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The opacity of hovered Month Picker year navigation buttons + */ +/** + * @var {string} + * The background-image of the Month Picker next year navigation button + */ +/** + * @var {string} + * The background-image of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker previous year navigation button + */ +/** + * @var {string} + * The border-style of the Month Picker separator + */ +/** + * @var {number} + * The border-width of the Month Picker separator + */ +/** + * @var {color} + * The border-color of the Month Picker separator + */ +/** + * @var {number/list} + * The margin of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @var {number} + * The height of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @class Ext.picker.Color + */ +/** + * @var {color} + * The background-color of Color Pickers + */ +/** + * @var {color} + * The border-color of Color Pickers + */ +/** + * @var {number} + * The border-width of Color Pickers + */ +/** + * @var {string} + * The border-style of Color Pickers + */ +/** + * @var {number} + * The number of columns to display in the Color Picker + */ +/** + * @var {number} + * The number of rows to display in the Color Picker + */ +/** + * @var {number} + * The height of each Color Picker item + */ +/** + * @var {number} + * The width of each Color Picker item + */ +/** + * @var {number} + * The padding of each Color Picker item + */ +/** + * @var {string} + * The cursor to display when the mouse is over a Color Picker item + */ +/** + * @var {color} + * The border-color of Color Picker items + */ +/** + * @var {number} + * The border-width of Color Picker items + */ +/** + * @var {string} + * The border-style of Color Picker items + */ +/** + * @var {color} + * The border-color of hovered Color Picker items + */ +/** + * @var {color} + * The background-color of Color Picker items + */ +/** + * @var {color} + * The background-color of hovered Color Picker items + */ +/** + * @var {color} + * The border-color of the selected Color Picker item + */ +/** + * @var {color} + * The background-color of the selected Color Picker item + */ +/** + * @var {color} + * The inner border-color of Color Picker items + */ +/** + * @var {number} + * The inner border-width of Color Picker items + */ +/** + * @var {string} + * The inner border-style of Color Picker items + */ +/** + * @class Ext.form.field.HtmlEditor + */ +/** + * @var {number} + * The border-width of the HtmlEditor + */ +/** + * @var {color} + * The border-color of the HtmlEditor + */ +/** + * @var {color} + * The background-color of the HtmlEditor + */ +/** + * @var {number} + * The size of the HtmlEditor toolbar icons + */ +/** + * @var {number} + * The font-size of the HtmlEditor's font selection control + */ +/** + * @var {number} + * The font-family of the HtmlEditor's font selection control + */ +/** + * @class Ext.panel.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} $grid-row-cell-line-height + * 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 {color} + * The border-color of the focused row + */ +/** + * @var {string} + * The border-style of the focused row + */ +/** + * @var {color} + * The text color of the focused row + */ +/** + * @var {color} + * The background-color of the focused row + */ +/** + * @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.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 {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 + */ +/** + * @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.CheckColumn + */ +/** + * @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.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.grid.feature.RowWrap + */ +/** + * @var {color} + * The border-color of wrapped rows + */ +/** + * @var {string} + * The border-style of wrapped rows + */ +/** + * @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 + */ +/** + * @class Ext.grid.plugin.Editing + */ +/** + * The height of grid editor text fields. 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 caluclated by adding $grid-row-cell-line-height to the top and bottom values of + * $grid-cell-inner-padding. + */ +/** + * The padding of grid editor text fields. + */ +/** + * @var {number} + * The font size of the grid editor text + */ +/** + * @var {string} + * The font-weight of the grid editor text + */ +/** + * @var {string} + * The font-family of the grid editor text + */ +/** + * @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 {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 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 {string} + * The text-transform property of Accordion headers + */ +/** + * @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.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 {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. + */ +/** + * @class Ext.layout.container.Border + */ +/** + * @var {color} + * The background-color of the Border layout element + */ +/** + * @class Ext.menu.Menu + */ +/** + * @var {color} + * The background-color of the 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 {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} + * The font-size of {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The margin 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 {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 {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {list} + * The background-position of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} text + */ +/** + * @var {number/list} + * The margin of {@link Ext.menu.Separator Menu Separators} + */ +/** + * @var {number} + * The padding to the right of {@link Ext.menu.CheckItem Check Items}, to make room + * for the checkbox + */ +/** + * @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 space to the left and right of {@link Ext.menu.Item Menu Item} arrows + */ +/** + * @var {number} + * The opacity of disabled {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The height of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers when hovered + */ +/** + * @var {number} + * The opacity of Menu crollers when pressed + */ +/** + * @var {number/list} + * The padding to apply to the Menu body element + */ +/** + * @var {color} + * The color of Menu Item text + */ +/** + * @var {number/list} + * The margin non-MenuItems placed in a Menu + */ +/** + * @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} + */ +/** + * @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.slider.Multi + */ +/** + * @var {number} + * The horizontal slider thumb width + */ +/** + * @var {number} + * The horizontal slider thumb height + */ +/** + * @var {number} + * The width of the horizontal slider end caps + */ +/** + * @var {number} + * The vertical slider thumb width + */ +/** + * @var {number} + * The vertical slider thumb height + */ +/** + * @var {number} + * The height of the vertical slider end caps + */ +/** + * @class Ext.tab.Tab + */ +/** + * @var {color} + * The base color of Tabs + */ +/** + * @var {color} + * The base color of hovered Tabs + */ +/** + * @var {color} + * The base color of the active Tabs + */ +/** + * @var {color} + * The base color of disabled Tabs + */ +/** + * @var {color} + * The text color of Tabs + */ +/** + * @var {color} + * The text color of hovered Tabs + */ +/** + * @var {color} + * The text color of the active Tab + */ +/** + * @var {color} + * The text color of disabled Tabs + */ +/** + * @var {number} + * The font-size of Tabs + */ +/** + * @var {number} + * The font-size of hovered Tabs + */ +/** + * @var {number} + * The font-size of the active Tab + */ +/** + * @var {number} + * The font-size of disabled Tabs + */ +/** + * @var {string} + * The font-family of Tabs + */ +/** + * @var {string} + * The font-family of hovered Tabs + */ +/** + * @var {string} + * The font-family of the active Tab + */ +/** + * @var {string} + * The font-family of disabled Tabs + */ +/** + * @var {string} + * The font-weight of Tabs + */ +/** + * @var {string} + * The font-weight of hovered Tabs + */ +/** + * @var {string} + * The font-weight of the active Tab + */ +/** + * @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 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 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} + * The border-width of Tabs + */ +/** + * @var {number/list} + * The inner border-width of Tabs + */ +/** + * @var {color} + * The inner border-color of Tabs + */ +/** + * @var {color} + * The border-color of Tabs + */ +/** + * @var {color} + * The border-color of hovered Tabs + */ +/** + * @var {color} + * The border-color of the active Tab + */ +/** + * @var {color} + * The border-color of disabled Tabs + */ +/** + * @var {number/list} + * The padding of Tabs + */ +/** + * @var {number/list} + * The padding of the Tab's text element + */ +/** + * @var {number} + * The line-height of Tabs + */ +/** + * @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 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 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 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 {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a left-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `left`. + */ +/** + * @var {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a right-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `right`. + */ +/** + * @var {boolean} + * True to include the "default" tab UI + */ +/** + * @class Ext.tab.Bar + */ +/** + * @var {number/list} + * The padding of the Tab Bar + */ +/** + * @var {number/list} + * The padding of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} Tab Bar strip + */ +/** + * @var {number} + * The width of the Tab Bar scrollers + */ +/** + * @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 change the x postition of the background image on hover to allow for a + * horizonatlly alined background image sprite + */ +/** + * @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.selection.CheckboxModel + */ +/** + * @var {number} + * The horizontal space before the checkbox + */ +/** + * @var {number} + * The horizontal space after the checkbox + */ +/** + * @class Ext.tree.Panel + */ +/** + * @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 + */ +/* 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 + */ +/** + * @var {boolean} $include-content-box + * True to include rules for browsers that do not support the border-box model + * (IE6 strict and IE7 strict) + */ +/** + * @var {boolean} $include-ff + * True to include Firefox specific rules + */ +/** + * @var {boolean} $include-chrome + * True to include Chrome specific rules + */ +/** + * @var {boolean} $include-safari + * True to include Safari specific rules + */ +/** + * @var {boolean} $include-opera + * True to include Opera specific rules + */ +/** + * @var {boolean} $include-webkit + * True to include Webkit specific rules + */ +/** + * @var {measurement} $css-shadow-border-radius + * The border radius for CSS shadows + */ +/** + * @var {color} $include-shadow-images + * True to include all shadow images. + */ +/** + * @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 {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. + */ +/* including package ext-theme-base */ +/* line 1, ../../../ext-theme-base/sass/src/Component.scss */ +.x-body { + margin: 0; +} + +/* line 5, ../../../ext-theme-base/sass/src/Component.scss */ +img { + border: 0; +} + +/* line 10, ../../../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 17, ../../../ext-theme-base/sass/src/Component.scss */ +.x-rtl { + direction: rtl; +} + +/* line 21, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ltr { + direction: ltr; +} + +/* line 25, ../../../ext-theme-base/sass/src/Component.scss */ +.x-clear { + overflow: hidden; + clear: both; + font-size: 0; + line-height: 0; + display: table; +} + +/* line 33, ../../../ext-theme-base/sass/src/Component.scss */ +.x-strict .x-ie7 .x-clear { + height: 0; + width: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/Component.scss */ +.x-layer { + position: absolute !important; + overflow: hidden; + zoom: 1; +} + +/* line 49, ../../../ext-theme-base/sass/src/Component.scss */ +.x-fixed-layer { + position: fixed !important; + overflow: hidden; + zoom: 1; +} + +/* line 55, ../../../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 63, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-display { + display: none !important; +} + +/* line 67, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-visibility { + visibility: hidden !important; +} + +/* line 72, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ie6 .x-item-disabled { + filter: none; +} + +/* line 78, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hidden, +.x-hide-offsets { + display: block !important; + visibility: hidden !important; + position: absolute !important; + top: -10000px !important; +} + +/* line 88, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-nosize { + height: 0 !important; + width: 0 !important; +} + +/* line 94, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-clip { + position: absolute!important; + clip: rect(0, 0, 0, 0); + clip: rect(0 0 0 0); +} + +/* line 102, ../../../ext-theme-base/sass/src/Component.scss */ +.x-masked-relative { + position: relative; +} + +/* line 108, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ie-shadow { + background-color: #777; + display: none; + position: absolute; + overflow: hidden; + zoom: 1; +} + +/* line 117, ../../../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; + cursor: default; +} + +/* line 121, ../../../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 136, ../../../ext-theme-base/sass/src/Component.scss */ +.x-list-plain { + list-style-type: none; + margin: 0; + padding: 0; +} + +/* line 143, ../../../ext-theme-base/sass/src/Component.scss */ +.x-table-plain { + border-collapse: collapse; + border-spacing: 0; + font-size: 1em; +} + +/* line 156, ../../../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 162, ../../../ext-theme-base/sass/src/Component.scss */ +.x-frame-tc, +.x-frame-bc { + background-repeat: repeat-x; +} + +/* line 166, ../../../ext-theme-base/sass/src/Component.scss */ +.x-frame-mc { + background-repeat: repeat-x; + overflow: hidden; +} + +/* line 171, ../../../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 178, ../../../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 184, ../../../ext-theme-base/sass/src/Component.scss */ +.x-item-disabled, +.x-item-disabled * { + cursor: default; +} + +/* line 3, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x-box-item { + position: absolute !important; + left: 0; + top: 0; +} + +/* line 4, ../../../ext-theme-base/sass/src/Editor.scss */ +div.x-editor { + overflow: visible; +} + +/* line 1, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask { + z-index: 100; + position: absolute; + width: 100%; + height: 100%; + zoom: 1; +} + +/* line 10, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask-shim { + z-index: 100; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +/* line 20, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask-msg { + z-index: 20001; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress { + position: relative; + border-style: solid; + overflow: hidden; +} + +/* line 7, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress-bar { + overflow: hidden; + position: absolute; + width: 0; + height: 100%; +} + +/* line 14, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress-text { + overflow: hidden; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn { + display: inline-block; + position: relative; + zoom: 1; + *display: inline; + outline: 0; + cursor: pointer; + white-space: nowrap; + vertical-align: middle; + text-decoration: none; +} + +/* line 15, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-wrap { + position: relative; + display: block; +} + +/* line 20, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-button { + position: relative; + display: block; + text-decoration: none; + overflow: hidden; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner { + display: block; + white-space: nowrap; + overflow: hidden; + zoom: 1; +} + +/* line 35, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 45, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-center { + text-align: center; +} + +/* line 49, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-left { + text-align: left; +} + +/* line 59, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-right { + text-align: right; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-target { + position: absolute; + width: 20000px; + top: 0; + left: 0; + height: 1px; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-inner { + overflow: hidden; + zoom: 1; + position: relative; + left: 0; + top: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-horizontal-box-overflow-body { + float: left; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller { + position: relative; + background-repeat: no-repeat; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller-left, +.x-box-scroller-right { + float: left; + height: 100%; + z-index: 5; +} + +/* line 59, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller-top .x-box-scroller, +.x-box-scroller-bottom .x-box-scroller { + line-height: 0; + font-size: 0; + background-position: center 0; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-menu-after { + float: right; +} + +/* line 1, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-text { + white-space: nowrap; +} + +/* line 5, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-separator { + display: block; + font-size: 1px; + overflow: hidden; + cursor: default; + border: 0; + width: 0; + height: 0; + line-height: 0px; +} + +/* line 17, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal { + width: 2px; +} + +/* line 22, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroller { + padding-left: 0; +} + +/* line 29, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-plain { + border: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked { + position: absolute !important; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-vertical { + position: static; +} + +/* line 11, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-top { + border-bottom-width: 0 !important; +} + +/* line 15, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-bottom { + border-top-width: 0 !important; +} + +/* line 19, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-left { + border-right-width: 0 !important; +} + +/* line 23, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-right { + border-left-width: 0 !important; +} + +/* line 27, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-top { + border-top-width: 0 !important; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-right { + border-right-width: 0 !important; +} + +/* line 35, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-bottom { + border-bottom-width: 0 !important; +} + +/* line 39, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-left { + border-left-width: 0 !important; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-l { + border-left-width: 0 !important; +} + +/* line 48, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-b { + border-bottom-width: 0 !important; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-bl { + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 55, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-r { + border-right-width: 0 !important; +} + +/* line 58, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rl { + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 62, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rb { + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rbl { + border-right-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 71, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-t { + border-top-width: 0 !important; +} + +/* line 74, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tl { + border-top-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 78, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tb { + border-top-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 82, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tbl { + border-top-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 87, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tr { + border-top-width: 0 !important; + border-right-width: 0 !important; +} + +/* line 91, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trl { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 96, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trb { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 101, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trbl { + border-width: 0 !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-header-icon { + background-repeat: no-repeat; + background-position: 0 0; + vertical-align: middle; + text-align: center; +} + +/* line 8, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-header-text-container { + overflow: hidden; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +/* line 4, ../../../ext-theme-base/sass/src/dd/DD.scss */ +.x-dd-drag-proxy, +.x-dd-drag-current { + z-index: 1000000!important; + pointer-events: none; +} + +/* line 2, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-repair .x-dd-drag-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 6, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-repair .x-dd-drop-icon { + display: none; +} + +/* line 11, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85); + opacity: 0.85; + padding: 5px; + padding-left: 20px; + white-space: nowrap; + color: #000; + font: normal 11px tahoma, arial, verdana, sans-serif; + border: 1px solid; + border-color: #ddd #bbb #bbb #ddd; + background-color: #fff; +} + +/* line 28, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-icon { + position: absolute; + top: 3px; + left: 3px; + display: block; + width: 16px; + height: 16px; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + z-index: 1; +} + +/* line 66, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-ok .x-dd-drop-icon { + background-image: url(images/dd/drop-yes.gif); +} + +/* line 70, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-ok-add .x-dd-drop-icon { + background-image: url(images/dd/drop-add.gif); +} + +/* line 75, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-nodrop div.x-dd-drop-icon { + background-image: url(images/dd/drop-no.gif); +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel, +.x-plain { + overflow: hidden; + position: relative; +} + +/* line 7, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel { + outline: none; +} + +/* line 23, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-ie .x-panel-header, +.x-ie .x-panel-header-tl, +.x-ie .x-panel-header-tc, +.x-ie .x-panel-header-tr, +.x-ie .x-panel-header-ml, +.x-ie .x-panel-header-mc, +.x-ie .x-panel-header-mr, +.x-ie .x-panel-header-bl, +.x-ie .x-panel-header-bc, +.x-ie .x-panel-header-br { + zoom: 1; +} + +/* line 29, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-ie8 td.x-frame-mc { + vertical-align: top; +} + +/* line 35, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel-body { + overflow: hidden; + position: relative; +} + +/* line 42, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-vertical .x-frame-mc { + background-repeat: repeat-y; +} + +/* line 49, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel-header-plain, +.x-panel-body-plain { + border: 0; + padding: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip { + position: absolute; + overflow: visible; + /*pointer needs to be able to stick out*/ +} + +/* line 6, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip-body { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip-anchor { + position: absolute; + overflow: hidden; + border-style: solid; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Table.scss */ +.x-table-layout { + font-size: 1em; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group { + position: relative; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body { + position: relative; + zoom: 1; +} +/* line 9, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body .x-table-layout-cell { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/Viewport.scss */ +.x-viewport, .x-viewport body { + margin: 0; + padding: 0; + border: 0 none; + overflow: hidden; + height: 100%; + position: static; +} + +/* line 1, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window { + outline: none; + overflow: hidden; +} +/* line 5, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window .x-window-wrap { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window-body { + position: relative; + overflow: hidden; +} + +/* line 15, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window-body-plain { + background: transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label { + display: block; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label-right { + text-align: right; +} + +/* line 9, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label-top { + display: block; + zoom: 1; +} + +/* line 15, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-invalid-icon { + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-invalid-icon ul { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x-form-textarea { + overflow: auto; + resize: none; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x-safari.x-mac .x-form-textarea { + margin-bottom: -2px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Display.scss */ +.x-form-display-field-body { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb-wrap { + vertical-align: top; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb { + vertical-align: top; + overflow: hidden; + padding: 0; + border: 0; +} +/* line 10, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb::-moz-focus-inner { + padding: 0; + border: 0; +} + +/* line 16, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label { + display: inline-block; + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset { + display: block; + /* preserve margins in IE */ + position: relative; +} + +/* line 6, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header { + overflow: hidden; +} +/* line 10, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-item, +.x-fieldset-header .x-tool { + float: left; +} +/* line 14, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb-wrap { + font-size: 0; + line-height: 0; +} +/* line 19, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb { + margin: 0; +} + +/* line 33, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text { + float: left; +} + +/*misc*/ +/* line 4, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-webkit *:focus { + outline: none !important; +} + +/* line 11, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-item { + vertical-align: top; + table-layout: fixed; +} + +/* line 17, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-item-body { + position: relative; +} + +/* line 33, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-form-item td { + border-top: 1px solid transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + cursor: pointer; + overflow: hidden; + background-repeat: no-repeat; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-item-disabled .x-form-trigger { + cursor: default; +} + +/* line 10, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-trigger-noedit { + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap { + vertical-align: top; + border-collapse: separate; +} + +/* line 2, ../../../ext-theme-base/sass/src/form/field/Spinner.scss */ +.x-form-spinner-up, +.x-form-spinner-down { + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-inner { + table-layout: fixed; + width: 100%; + border-collapse: separate; +} + +/* line 11, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-cell { + padding: 0; +} + +/* line 15, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-header { + position: relative; + zoom: 1; +} + +/* line 20, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-arrow { + position: absolute; + outline: none; + font-size: 0; +} + +/* line 26, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-column-header { + padding: 0; +} + +/* line 30, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-date { + display: block; + zoom: 1; + text-decoration: none; +} + +/* line 36, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker { + position: absolute; + left: 0; + top: 0; +} + +/* line 42, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-body { + height: 100%; +} + +/* line 47, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-months, +.x-monthpicker-years { + float: left; + height: 100%; +} + +/* line 52, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-item { + float: left; +} + +/* line 56, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-item-inner { + display: block; + text-decoration: none; +} + +/* line 61, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button-ct { + float: left; + text-align: center; +} + +/* line 66, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button { + display: inline-block; + outline: none; + font-size: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-buttons { + position: absolute; + bottom: 0; + width: 100%; +} +/* line 78, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-strict .x-ie6 .x-monthpicker-buttons { + bottom: -1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/File.scss */ +.x-form-file-btn { + overflow: hidden; +} + +/* line 5, ../../../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 1, ../../../ext-theme-base/sass/src/form/field/Hidden.scss */ +.x-form-item-hidden { + margin: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x-color-picker-item { + float: left; + text-decoration: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x-color-picker-item-inner { + display: block; + font-size: 1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-toolbar { + position: static !important; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x-htmleditor-iframe { + display: block; + overflow: auto; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Fit.scss */ +.x-fit-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-row, +.x-grid-data-row { + outline: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-view { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-table { + table-layout: fixed; + border-collapse: separate; +} + +/* line 16, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-td { + overflow: hidden; + border-width: 0; + vertical-align: top; +} + +/* line 22, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-cell-inner { + overflow: hidden; + white-space: nowrap; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-resize-marker { + position: absolute; + z-index: 5; + top: 0; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + position: absolute; + top: 0; + line-height: 0; + font-size: 0; + overflow: hidden; + z-index: 20000; + background: no-repeat center top transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/header/Container.scss */ +.x-grid-header-ct { + cursor: default; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header { + position: absolute; + overflow: hidden; + background-repeat: repeat-x; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-inner { + zoom: 1; + white-space: nowrap; + position: relative; + overflow: hidden; +} + +/* line 14, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-text { + white-space: nowrap; + background-repeat: no-repeat; + zoom: 1; + display: inline-block; +} + +/* line 25, ../../../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 43, ../../../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 48, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-right { + text-align: right; +} + +/* line 58, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-left { + text-align: left; +} + +/* line 68, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-center { + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Action.scss */ +.x-grid-cell-inner-action-col { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/CheckColumn.scss */ +.x-grid-cell-inner-checkcolumn { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/RowNumberer.scss */ +.x-row-numberer .x-column-header-inner { + text-overflow: clip; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-group, +.x-grid-group-body, +.x-grid-group-hd { + zoom: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd { + white-space: nowrap; +} + +/* line 11, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-row-body-hidden, .x-grid-group-collapsed { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x-grid-rowbody { + zoom: 1; +} + +/* line 5, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x-grid-row-body-hidden { + display: none; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x-grid-rowwrap .x-grid-table { + border: 0; +} +/* line 6, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x-grid-rowwrap .x-grid-cell { + border-bottom: 0; + background-color: transparent; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb-wrap { + text-align: center; +} + +/* line 9, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field { + margin: 0; + white-space: nowrap; + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor div.x-form-action-col-field { + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor { + position: absolute; + overflow: visible; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons { + position: absolute; + white-space: nowrap; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-expander { + font-size: 0; + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x-abs-layout-ct { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x-abs-layout-item { + position: absolute !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter { + font-size: 1px; +} + +/* line 5, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-horizontal { + cursor: e-resize; + cursor: row-resize; +} + +/* line 10, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-vertical { + cursor: e-resize; + cursor: col-resize; +} + +/* line 17, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed, +.x-splitter-horizontal-noresize, +.x-splitter-vertical-noresize { + cursor: default; +} + +/* line 21, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-active { + z-index: 4; +} + +/* line 25, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-collapse-el { + position: absolute; + background-repeat: no-repeat; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-region-slide-in { + z-index: 5; +} + +/* line 14, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-region-collapsed-placeholder { + z-index: 4; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-column { + float: left; +} + +/* line 21, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-ie6 .x-column { + display: inline; + /*prevent IE6 double-margin bug*/ +} + +/* line 25, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-quirks .x-ie .x-form-layout-table, .x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x-form-layout-table { + border-collapse: separate; + border-spacing: 0 2px; +} + +/* line 9, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x-ie6 .x-form-layout-table { + border-collapse: collapse; + border-spacing: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu { + outline: none; +} + +/* line 5, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item { + white-space: nowrap; + overflow: hidden; +} + +/* line 14, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-cmp .x-field-label-cell { + vertical-align: middle; +} + +/* line 22, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-icon-separator { + position: absolute; + top: 0px; + z-index: 0; + height: 100%; + overflow: hidden; +} +/* line 28, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-plain .x-menu-icon-separator { + display: none; +} + +/* line 33, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-link { + text-decoration: none; + outline: 0; + zoom: 1; +} + +/* line 40, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-text { + zoom: 1; +} + +/* line 47, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-icon, +.x-menu-item-icon-right, +.x-menu-item-arrow { + position: absolute; + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/SplitterTracker.scss */ +.x-resizable-overlay { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + display: none; + z-index: 200000; + background-color: #fff; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider { + outline: none; + zoom: 1; + position: relative; +} + +/* line 9, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-inner { + position: relative; + left: 0; + top: 0; + overflow: visible; + zoom: 1; +} +/* line 17, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-inner { + background: repeat-y 0 0; +} + +/* line 23, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-end { + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-thumb { + position: absolute; + background: no-repeat 0 0; +} +/* line 31, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb { + left: 0; +} +/* line 34, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb { + bottom: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Tab.scss */ +a.x-tab { + text-decoration: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Bar.scss */ +.x-tab-bar { + position: relative; +} + +/* line 1, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox .x-column-header-text { + display: block; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 7, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x-grid-cell-row-checker { + vertical-align: middle; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab { + display: block; + white-space: nowrap; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-active { + z-index: 3; +} + +/* line 11, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-wrap { + display: block; + position: relative; +} + +/* line 16, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-button { + zoom: 1; + display: block; + outline: none; +} + +/* line 22, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-inner { + display: block; + text-align: center; + white-space: nowrap; + text-overflow: ellipsis; + -o-text-overflow: ellipsis; + overflow: hidden; + zoom: 1; +} + +/* line 32, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 42, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar { + z-index: 1; +} + +/* line 46, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-body { + z-index: 2; + position: relative; +} + +/* line 51, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip { + position: absolute; + line-height: 0; + font-size: 0; + z-index: 1; +} + +/* line 58, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-horizontal .x-tab-bar-strip { + width: 100%; + left: 0; +} + +/* line 63, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-vertical .x-tab-bar-strip { + height: 100%; + top: 0; +} + +/* line 68, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-top { + bottom: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-bottom { + top: 0; +} + +/* line 76, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-left { + right: 0; +} + +/* line 87, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-right { + left: 0; +} + +/* line 98, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-plain { + background: transparent !important; +} + +/* line 102, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-icon-el { + position: absolute; + background-repeat: no-repeat; + top: 0; + left: 0; + right: auto; + bottom: 0; +} + +/* line 118, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-close-btn { + display: block; + position: absolute; + font-size: 0; + line-height: 0; + background: no-repeat; +} + +/* line 126, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-mc { + overflow: visible; +} + +/* line 3, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-autowidth-table .x-grid-table { + table-layout: auto; + width: auto !important; +} + +/* line 8, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-view { + overflow: hidden; +} + +/* line 13, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-elbow-img, +.x-tree-icon { + background-repeat: no-repeat; + background-position: 0 center; + vertical-align: top; +} + +/* line 19, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-checkbox { + border: 0; + padding: 0; + vertical-align: top; + position: relative; + background-color: transparent; +} + +/* line 27, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-animator-wrap { + overflow: hidden; +} + +/* line 31, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-node-text { + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-surface { + display: -moz-inline-stack; + display: inline-block; + vertical-align: middle; + *vertical-align: auto; + zoom: 1; + *display: inline; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.rvml { + behavior: url(#default#VML); +} + +/* line 10, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-surface tspan { + user-select: none; + -o-user-select: none; + -ms-user-select: none; + -moz-user-select: -moz-none; + -webkit-user-select: none; + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-sprite { + position: absolute; + left: 0; + top: 0; + width: 1px; + height: 1px; +} + +/* line 22, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-group { + position: absolute; + left: 0; + top: 0; + width: 1000px; + height: 1000px; +} + +/* line 30, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-measure-span { + position: absolute; + left: -9999em; + top: -9999em; + padding: 0; + margin: 0; + display: inline; +} + +/* line 39, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 47, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 55, ../../../ext-theme-base/sass/src/draw/Component.scss */ +svg, vml { + overflow: hidden; +} + +/* including package ext-theme-neutral */ +/* line 1, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x-body { + color: black; + font-size: 12px; + font-family: tahoma, arial, verdana, sans-serif; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x-animating-size, +.x-collapsed { + overflow: hidden!important; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/Editor.scss */ +.x-editor .x-form-item-body { + padding-bottom: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-element { + position: absolute; + top: -10px; + left: -10px; + width: 0px; + height: 0px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame { + position: absolute; + left: 0px; + top: 0px; + z-index: 100000000; + width: 0px; + height: 0px; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-top, +.x-focus-frame-bottom, +.x-focus-frame-left, +.x-focus-frame-right { + position: absolute; + top: 0px; + left: 0px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-top, +.x-focus-frame-bottom { + border-top: solid 2px #15428b; + height: 2px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-left, +.x-focus-frame-right { + border-left: solid 2px #15428b; + width: 2px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + background: #cccccc; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg { + padding: 2px; + border-style: solid; + border-width: 1px; + border-color: #bcb0b0; + background-image: none; + background-color: #e0e0e0; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg-inner { + padding: 0 5px; + border-style: solid; + border-width: 1px; + border-color: #b3b3b3; + background-color: #eeeeee; + color: #222222; + font: normal 11px tahoma, arial, verdana, sans-serif; +} + +/* line 41, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg-text { + padding: 5px 5px 5px 20px; + background-image: url(images/grid/loading.gif); + background-repeat: no-repeat; + background-position: 0 center; +} + +/** + * Creates a visual theme for an Ext.ProgressBar + * + * @param {string} $ui-label + * 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 67, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default { + background-color: #f1f1f1; + border-width: 1px; + height: 20px; + border-color: #8e8e8e; + /**/ + /**/ + /* */ +} +/* line 72, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-content-box .x-progress-default { + height: 18px; +} +/* line 84, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-bar-default { + background-image: none; + background-color: #ababab; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d1d1d1), color-stop(50%, #b8b8b8), color-stop(51%, #ababab), color-stop(100%, #9e9e9e)); + background-image: -webkit-linear-gradient(top, #d1d1d1, #b8b8b8 50%, #ababab 51%, #9e9e9e); + background-image: -moz-linear-gradient(top, #d1d1d1, #b8b8b8 50%, #ababab 51%, #9e9e9e); + background-image: -o-linear-gradient(top, #d1d1d1, #b8b8b8 50%, #ababab 51%, #9e9e9e); + background-image: linear-gradient(top, #d1d1d1, #b8b8b8 50%, #ababab 51%, #9e9e9e); +} +/* line 92, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-nlg .x-progress-default .x-progress-bar-default { + background: repeat-x; + background-image: url(images/progress/progress-default-bg.gif); +} +/* line 99, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-text { + color: white; + font-weight: bold; + font-size: 11px; + text-align: center; + line-height: 18px; +} +/* line 107, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-text-back { + color: #5d5d5d; + line-height: 18px; +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-progress-default .x-progress-bar-default:after { + display: none; + content: "x-slicer:bg:url(images/progress/progress-default-bg.gif)"; +} + +/** + * Creates a visual theme for a 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-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-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-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-disabled + * The text color of the button when the button is disabled + * + * @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-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-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-disabled + * The font-family of the button when the button is disabled + * + * @param {number} $icon-size + * The size of the button icon + * + * @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=false] + * 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 + */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small { + border-color: #bbbbbb; +} + +/* line 137, ../../../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: 2px 2px 2px 2px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #f8f8f8; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eeeeee)); + background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee); + background-image: -moz-linear-gradient(top, #ffffff, #eeeeee); + background-image: -o-linear-gradient(top, #ffffff, #eeeeee); + background-image: linear-gradient(top, #ffffff, #eeeeee); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mc { + background-image: url(images/btn/btn-default-small-fbg.gif); + background-position: 0 top; + background-color: #f8f8f8; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-small { + background-image: url(images/btn/btn-default-small-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tr, +.x-btn-default-small-br, +.x-btn-default-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl, +.x-btn-default-small-bl, +.x-btn-default-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl, +.x-btn-default-small-bl, +.x-btn-default-small-tr, +.x-btn-default-small-br, +.x-btn-default-small-tc, +.x-btn-default-small-bc, +.x-btn-default-small-ml, +.x-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-ml, +.x-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-small-tl, +.x-strict .x-ie7 .x-btn-default-small-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 4px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow-right { + padding-right: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-glyph { + font-size: 16px; + line-height: 16px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-small .x-btn-glyph { + color: #959595; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled { + border-color: #d7d7d7; + background-image: none; + background-color: #ececec; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f4f4f4), color-stop(100%, #e2e2e2)); + background-image: -webkit-linear-gradient(top, #f4f4f4, #e2e2e2); + background-image: -moz-linear-gradient(top, #f4f4f4, #e2e2e2); + background-image: -o-linear-gradient(top, #f4f4f4, #e2e2e2); + background-image: linear-gradient(top, #f4f4f4, #e2e2e2); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-button, +.x-btn-default-small-noicon .x-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-inner, +.x-btn-default-small-noicon .x-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-small-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-inner { + line-height: 16px; + padding-left: 20px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-small-icon-text-left .x-btn-icon-el { + height: 16px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-inner { + line-height: 16px; + padding-right: 20px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-small-icon-text-right .x-btn-icon-el { + height: 16px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-top .x-btn-inner { + padding-top: 20px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-top .x-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-bottom .x-btn-inner { + padding-bottom: 20px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-bottom .x-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active, +.x-btn-default-small-pressed { + border-color: #9d9d9d; + background-image: none; + background-color: #d6d6d6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0)); + background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: linear-gradient(top, #c7c7c7, #e0e0e0); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-tl, +.x-btn-default-small-over .x-frame-bl, +.x-btn-default-small-over .x-frame-tr, +.x-btn-default-small-over .x-frame-br, +.x-btn-default-small-over .x-frame-tc, +.x-btn-default-small-over .x-frame-bc { + background-image: url(images/btn/btn-default-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-ml, +.x-btn-default-small-over .x-frame-mr { + background-image: url(images/btn/btn-default-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-tl, +.x-btn-default-small-focus .x-frame-bl, +.x-btn-default-small-focus .x-frame-tr, +.x-btn-default-small-focus .x-frame-br, +.x-btn-default-small-focus .x-frame-tc, +.x-btn-default-small-focus .x-frame-bc { + background-image: url(images/btn/btn-default-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-ml, +.x-btn-default-small-focus .x-frame-mr { + background-image: url(images/btn/btn-default-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-tl, +.x-btn-default-small-menu-active .x-frame-bl, +.x-btn-default-small-menu-active .x-frame-tr, +.x-btn-default-small-menu-active .x-frame-br, +.x-btn-default-small-menu-active .x-frame-tc, +.x-btn-default-small-menu-active .x-frame-bc, +.x-btn-default-small-pressed .x-frame-tl, +.x-btn-default-small-pressed .x-frame-bl, +.x-btn-default-small-pressed .x-frame-tr, +.x-btn-default-small-pressed .x-frame-br, +.x-btn-default-small-pressed .x-frame-tc, +.x-btn-default-small-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-ml, +.x-btn-default-small-menu-active .x-frame-mr, +.x-btn-default-small-pressed .x-frame-ml, +.x-btn-default-small-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-mc, +.x-btn-default-small-pressed .x-frame-mc { + background-color: #d6d6d6; + background-image: url(images/btn/btn-default-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-tl, +.x-btn-default-small-disabled .x-frame-bl, +.x-btn-default-small-disabled .x-frame-tr, +.x-btn-default-small-disabled .x-frame-br, +.x-btn-default-small-disabled .x-frame-tc, +.x-btn-default-small-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-ml, +.x-btn-default-small-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-mc { + background-color: #ececec; + background-image: url(images/btn/btn-default-small-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-over { + background-image: url(images/btn/btn-default-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-focus { + background-image: url(images/btn/btn-default-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-menu-active, +.x-nlg .x-btn-default-small-pressed { + background-image: url(images/btn/btn-default-small-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-disabled { + background-image: url(images/btn/btn-default-small-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-btn-inner, +.x-btn-default-small-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium { + border-color: #bbbbbb; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #f8f8f8; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eeeeee)); + background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee); + background-image: -moz-linear-gradient(top, #ffffff, #eeeeee); + background-image: -o-linear-gradient(top, #ffffff, #eeeeee); + background-image: linear-gradient(top, #ffffff, #eeeeee); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mc { + background-image: url(images/btn/btn-default-medium-fbg.gif); + background-position: 0 top; + background-color: #f8f8f8; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-medium { + background-image: url(images/btn/btn-default-medium-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tr, +.x-btn-default-medium-br, +.x-btn-default-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl, +.x-btn-default-medium-bl, +.x-btn-default-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl, +.x-btn-default-medium-bl, +.x-btn-default-medium-tr, +.x-btn-default-medium-br, +.x-btn-default-medium-tc, +.x-btn-default-medium-bc, +.x-btn-default-medium-ml, +.x-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-ml, +.x-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-medium-tl, +.x-strict .x-ie7 .x-btn-default-medium-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow-right { + padding-right: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-glyph { + font-size: 24px; + line-height: 24px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-medium .x-btn-glyph { + color: #959595; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled { + border-color: #d7d7d7; + background-image: none; + background-color: #ececec; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f4f4f4), color-stop(100%, #e2e2e2)); + background-image: -webkit-linear-gradient(top, #f4f4f4, #e2e2e2); + background-image: -moz-linear-gradient(top, #f4f4f4, #e2e2e2); + background-image: -o-linear-gradient(top, #f4f4f4, #e2e2e2); + background-image: linear-gradient(top, #f4f4f4, #e2e2e2); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-button, +.x-btn-default-medium-noicon .x-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-inner, +.x-btn-default-medium-noicon .x-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-medium-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-inner { + line-height: 24px; + padding-left: 28px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon-el { + height: 24px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-inner { + line-height: 24px; + padding-right: 28px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon-el { + height: 24px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-top .x-btn-inner { + padding-top: 28px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-top .x-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-bottom .x-btn-inner { + padding-bottom: 28px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-bottom .x-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active, +.x-btn-default-medium-pressed { + border-color: #9d9d9d; + background-image: none; + background-color: #d6d6d6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0)); + background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: linear-gradient(top, #c7c7c7, #e0e0e0); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-tl, +.x-btn-default-medium-over .x-frame-bl, +.x-btn-default-medium-over .x-frame-tr, +.x-btn-default-medium-over .x-frame-br, +.x-btn-default-medium-over .x-frame-tc, +.x-btn-default-medium-over .x-frame-bc { + background-image: url(images/btn/btn-default-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-ml, +.x-btn-default-medium-over .x-frame-mr { + background-image: url(images/btn/btn-default-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-tl, +.x-btn-default-medium-focus .x-frame-bl, +.x-btn-default-medium-focus .x-frame-tr, +.x-btn-default-medium-focus .x-frame-br, +.x-btn-default-medium-focus .x-frame-tc, +.x-btn-default-medium-focus .x-frame-bc { + background-image: url(images/btn/btn-default-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-ml, +.x-btn-default-medium-focus .x-frame-mr { + background-image: url(images/btn/btn-default-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-tl, +.x-btn-default-medium-menu-active .x-frame-bl, +.x-btn-default-medium-menu-active .x-frame-tr, +.x-btn-default-medium-menu-active .x-frame-br, +.x-btn-default-medium-menu-active .x-frame-tc, +.x-btn-default-medium-menu-active .x-frame-bc, +.x-btn-default-medium-pressed .x-frame-tl, +.x-btn-default-medium-pressed .x-frame-bl, +.x-btn-default-medium-pressed .x-frame-tr, +.x-btn-default-medium-pressed .x-frame-br, +.x-btn-default-medium-pressed .x-frame-tc, +.x-btn-default-medium-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-ml, +.x-btn-default-medium-menu-active .x-frame-mr, +.x-btn-default-medium-pressed .x-frame-ml, +.x-btn-default-medium-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-mc, +.x-btn-default-medium-pressed .x-frame-mc { + background-color: #d6d6d6; + background-image: url(images/btn/btn-default-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-tl, +.x-btn-default-medium-disabled .x-frame-bl, +.x-btn-default-medium-disabled .x-frame-tr, +.x-btn-default-medium-disabled .x-frame-br, +.x-btn-default-medium-disabled .x-frame-tc, +.x-btn-default-medium-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-ml, +.x-btn-default-medium-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-mc { + background-color: #ececec; + background-image: url(images/btn/btn-default-medium-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-over { + background-image: url(images/btn/btn-default-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-focus { + background-image: url(images/btn/btn-default-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-menu-active, +.x-nlg .x-btn-default-medium-pressed { + background-image: url(images/btn/btn-default-medium-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-disabled { + background-image: url(images/btn/btn-default-medium-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-btn-inner, +.x-btn-default-medium-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large { + border-color: #bbbbbb; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #f8f8f8; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eeeeee)); + background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee); + background-image: -moz-linear-gradient(top, #ffffff, #eeeeee); + background-image: -o-linear-gradient(top, #ffffff, #eeeeee); + background-image: linear-gradient(top, #ffffff, #eeeeee); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mc { + background-image: url(images/btn/btn-default-large-fbg.gif); + background-position: 0 top; + background-color: #f8f8f8; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-large { + background-image: url(images/btn/btn-default-large-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tr, +.x-btn-default-large-br, +.x-btn-default-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl, +.x-btn-default-large-bl, +.x-btn-default-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl, +.x-btn-default-large-bl, +.x-btn-default-large-tr, +.x-btn-default-large-br, +.x-btn-default-large-tc, +.x-btn-default-large-bc, +.x-btn-default-large-ml, +.x-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-ml, +.x-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-large-tl, +.x-strict .x-ie7 .x-btn-default-large-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow-right { + padding-right: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-glyph { + font-size: 32px; + line-height: 32px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-large .x-btn-glyph { + color: #959595; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled { + border-color: #d7d7d7; + background-image: none; + background-color: #ececec; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f4f4f4), color-stop(100%, #e2e2e2)); + background-image: -webkit-linear-gradient(top, #f4f4f4, #e2e2e2); + background-image: -moz-linear-gradient(top, #f4f4f4, #e2e2e2); + background-image: -o-linear-gradient(top, #f4f4f4, #e2e2e2); + background-image: linear-gradient(top, #f4f4f4, #e2e2e2); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-button, +.x-btn-default-large-noicon .x-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-inner, +.x-btn-default-large-noicon .x-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-large-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-inner { + line-height: 32px; + padding-left: 36px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-large-icon-text-left .x-btn-icon-el { + height: 32px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-inner { + line-height: 32px; + padding-right: 36px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-large-icon-text-right .x-btn-icon-el { + height: 32px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-top .x-btn-inner { + padding-top: 36px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-top .x-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-bottom .x-btn-inner { + padding-bottom: 36px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-bottom .x-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active, +.x-btn-default-large-pressed { + border-color: #9d9d9d; + background-image: none; + background-color: #d6d6d6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0)); + background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: linear-gradient(top, #c7c7c7, #e0e0e0); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-tl, +.x-btn-default-large-over .x-frame-bl, +.x-btn-default-large-over .x-frame-tr, +.x-btn-default-large-over .x-frame-br, +.x-btn-default-large-over .x-frame-tc, +.x-btn-default-large-over .x-frame-bc { + background-image: url(images/btn/btn-default-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-ml, +.x-btn-default-large-over .x-frame-mr { + background-image: url(images/btn/btn-default-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-tl, +.x-btn-default-large-focus .x-frame-bl, +.x-btn-default-large-focus .x-frame-tr, +.x-btn-default-large-focus .x-frame-br, +.x-btn-default-large-focus .x-frame-tc, +.x-btn-default-large-focus .x-frame-bc { + background-image: url(images/btn/btn-default-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-ml, +.x-btn-default-large-focus .x-frame-mr { + background-image: url(images/btn/btn-default-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-tl, +.x-btn-default-large-menu-active .x-frame-bl, +.x-btn-default-large-menu-active .x-frame-tr, +.x-btn-default-large-menu-active .x-frame-br, +.x-btn-default-large-menu-active .x-frame-tc, +.x-btn-default-large-menu-active .x-frame-bc, +.x-btn-default-large-pressed .x-frame-tl, +.x-btn-default-large-pressed .x-frame-bl, +.x-btn-default-large-pressed .x-frame-tr, +.x-btn-default-large-pressed .x-frame-br, +.x-btn-default-large-pressed .x-frame-tc, +.x-btn-default-large-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-ml, +.x-btn-default-large-menu-active .x-frame-mr, +.x-btn-default-large-pressed .x-frame-ml, +.x-btn-default-large-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-mc, +.x-btn-default-large-pressed .x-frame-mc { + background-color: #d6d6d6; + background-image: url(images/btn/btn-default-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-tl, +.x-btn-default-large-disabled .x-frame-bl, +.x-btn-default-large-disabled .x-frame-tr, +.x-btn-default-large-disabled .x-frame-br, +.x-btn-default-large-disabled .x-frame-tc, +.x-btn-default-large-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-ml, +.x-btn-default-large-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-mc { + background-color: #ececec; + background-image: url(images/btn/btn-default-large-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-over { + background-image: url(images/btn/btn-default-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-focus { + background-image: url(images/btn/btn-default-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-menu-active, +.x-nlg .x-btn-default-large-pressed { + background-image: url(images/btn/btn-default-large-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-disabled { + background-image: url(images/btn/btn-default-large-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-btn-inner, +.x-btn-default-large-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small { + border-color: transparent; +} + +/* line 137, ../../../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: 2px 2px 2px 2px; + border-width: 1px; + border-style: solid; + background-color: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tr, +.x-btn-default-toolbar-small-br, +.x-btn-default-toolbar-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl, +.x-btn-default-toolbar-small-bl, +.x-btn-default-toolbar-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl, +.x-btn-default-toolbar-small-bl, +.x-btn-default-toolbar-small-tr, +.x-btn-default-toolbar-small-br, +.x-btn-default-toolbar-small-tc, +.x-btn-default-toolbar-small-bc, +.x-btn-default-toolbar-small-ml, +.x-btn-default-toolbar-small-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-ml, +.x-btn-default-toolbar-small-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-small-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-small-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 4px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow-right { + padding-right: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-glyph { + font-size: 16px; + line-height: 16px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-small .x-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled { + border-color: #d7d7d7; + background-image: none; + background-color: transparent; +} +/* line 317, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-btn-inner { + color: #8c8c8c; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-button, +.x-btn-default-toolbar-small-noicon .x-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-inner { + line-height: 16px; + padding-left: 20px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el { + height: 16px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-inner { + line-height: 16px; + padding-right: 20px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el { + height: 16px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-top .x-btn-inner { + padding-top: 20px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner { + padding-bottom: 20px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active, +.x-btn-default-toolbar-small-pressed { + border-color: #9d9d9d; + background-image: none; + background-color: #d6d6d6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0)); + background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: linear-gradient(top, #c7c7c7, #e0e0e0); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-tl, +.x-btn-default-toolbar-small-over .x-frame-bl, +.x-btn-default-toolbar-small-over .x-frame-tr, +.x-btn-default-toolbar-small-over .x-frame-br, +.x-btn-default-toolbar-small-over .x-frame-tc, +.x-btn-default-toolbar-small-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-ml, +.x-btn-default-toolbar-small-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-toolbar-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-tl, +.x-btn-default-toolbar-small-focus .x-frame-bl, +.x-btn-default-toolbar-small-focus .x-frame-tr, +.x-btn-default-toolbar-small-focus .x-frame-br, +.x-btn-default-toolbar-small-focus .x-frame-tc, +.x-btn-default-toolbar-small-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-ml, +.x-btn-default-toolbar-small-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-toolbar-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-tl, +.x-btn-default-toolbar-small-menu-active .x-frame-bl, +.x-btn-default-toolbar-small-menu-active .x-frame-tr, +.x-btn-default-toolbar-small-menu-active .x-frame-br, +.x-btn-default-toolbar-small-menu-active .x-frame-tc, +.x-btn-default-toolbar-small-menu-active .x-frame-bc, +.x-btn-default-toolbar-small-pressed .x-frame-tl, +.x-btn-default-toolbar-small-pressed .x-frame-bl, +.x-btn-default-toolbar-small-pressed .x-frame-tr, +.x-btn-default-toolbar-small-pressed .x-frame-br, +.x-btn-default-toolbar-small-pressed .x-frame-tc, +.x-btn-default-toolbar-small-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-ml, +.x-btn-default-toolbar-small-menu-active .x-frame-mr, +.x-btn-default-toolbar-small-pressed .x-frame-ml, +.x-btn-default-toolbar-small-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-mc, +.x-btn-default-toolbar-small-pressed .x-frame-mc { + background-color: #d6d6d6; + background-image: url(images/btn/btn-default-toolbar-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-tl, +.x-btn-default-toolbar-small-disabled .x-frame-bl, +.x-btn-default-toolbar-small-disabled .x-frame-tr, +.x-btn-default-toolbar-small-disabled .x-frame-br, +.x-btn-default-toolbar-small-disabled .x-frame-tc, +.x-btn-default-toolbar-small-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-ml, +.x-btn-default-toolbar-small-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-mc { + background-color: transparent; +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-over { + background-image: url(images/btn/btn-default-toolbar-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-focus { + background-image: url(images/btn/btn-default-toolbar-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-menu-active, +.x-nlg .x-btn-default-toolbar-small-pressed { + background-image: url(images/btn/btn-default-toolbar-small-pressed-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium { + border-color: transparent; +} + +/* line 137, ../../../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: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tr, +.x-btn-default-toolbar-medium-br, +.x-btn-default-toolbar-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl, +.x-btn-default-toolbar-medium-bl, +.x-btn-default-toolbar-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl, +.x-btn-default-toolbar-medium-bl, +.x-btn-default-toolbar-medium-tr, +.x-btn-default-toolbar-medium-br, +.x-btn-default-toolbar-medium-tc, +.x-btn-default-toolbar-medium-bc, +.x-btn-default-toolbar-medium-ml, +.x-btn-default-toolbar-medium-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-ml, +.x-btn-default-toolbar-medium-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-medium-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-medium-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow-right { + padding-right: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-glyph { + font-size: 24px; + line-height: 24px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-medium .x-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled { + border-color: #d7d7d7; + background-image: none; + background-color: transparent; +} +/* line 317, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-btn-inner { + color: #8c8c8c; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-button, +.x-btn-default-toolbar-medium-noicon .x-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-inner { + line-height: 24px; + padding-left: 28px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el { + height: 24px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-inner { + line-height: 24px; + padding-right: 28px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el { + height: 24px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-top .x-btn-inner { + padding-top: 28px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner { + padding-bottom: 28px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active, +.x-btn-default-toolbar-medium-pressed { + border-color: #9d9d9d; + background-image: none; + background-color: #d6d6d6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0)); + background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: linear-gradient(top, #c7c7c7, #e0e0e0); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-tl, +.x-btn-default-toolbar-medium-over .x-frame-bl, +.x-btn-default-toolbar-medium-over .x-frame-tr, +.x-btn-default-toolbar-medium-over .x-frame-br, +.x-btn-default-toolbar-medium-over .x-frame-tc, +.x-btn-default-toolbar-medium-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-ml, +.x-btn-default-toolbar-medium-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-toolbar-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-tl, +.x-btn-default-toolbar-medium-focus .x-frame-bl, +.x-btn-default-toolbar-medium-focus .x-frame-tr, +.x-btn-default-toolbar-medium-focus .x-frame-br, +.x-btn-default-toolbar-medium-focus .x-frame-tc, +.x-btn-default-toolbar-medium-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-ml, +.x-btn-default-toolbar-medium-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-toolbar-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-tl, +.x-btn-default-toolbar-medium-menu-active .x-frame-bl, +.x-btn-default-toolbar-medium-menu-active .x-frame-tr, +.x-btn-default-toolbar-medium-menu-active .x-frame-br, +.x-btn-default-toolbar-medium-menu-active .x-frame-tc, +.x-btn-default-toolbar-medium-menu-active .x-frame-bc, +.x-btn-default-toolbar-medium-pressed .x-frame-tl, +.x-btn-default-toolbar-medium-pressed .x-frame-bl, +.x-btn-default-toolbar-medium-pressed .x-frame-tr, +.x-btn-default-toolbar-medium-pressed .x-frame-br, +.x-btn-default-toolbar-medium-pressed .x-frame-tc, +.x-btn-default-toolbar-medium-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-ml, +.x-btn-default-toolbar-medium-menu-active .x-frame-mr, +.x-btn-default-toolbar-medium-pressed .x-frame-ml, +.x-btn-default-toolbar-medium-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-mc, +.x-btn-default-toolbar-medium-pressed .x-frame-mc { + background-color: #d6d6d6; + background-image: url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-tl, +.x-btn-default-toolbar-medium-disabled .x-frame-bl, +.x-btn-default-toolbar-medium-disabled .x-frame-tr, +.x-btn-default-toolbar-medium-disabled .x-frame-br, +.x-btn-default-toolbar-medium-disabled .x-frame-tc, +.x-btn-default-toolbar-medium-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-ml, +.x-btn-default-toolbar-medium-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-mc { + background-color: transparent; +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-over { + background-image: url(images/btn/btn-default-toolbar-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-focus { + background-image: url(images/btn/btn-default-toolbar-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-menu-active, +.x-nlg .x-btn-default-toolbar-medium-pressed { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large { + border-color: transparent; +} + +/* line 137, ../../../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: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tr, +.x-btn-default-toolbar-large-br, +.x-btn-default-toolbar-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl, +.x-btn-default-toolbar-large-bl, +.x-btn-default-toolbar-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl, +.x-btn-default-toolbar-large-bl, +.x-btn-default-toolbar-large-tr, +.x-btn-default-toolbar-large-br, +.x-btn-default-toolbar-large-tc, +.x-btn-default-toolbar-large-bc, +.x-btn-default-toolbar-large-ml, +.x-btn-default-toolbar-large-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-ml, +.x-btn-default-toolbar-large-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-large-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-large-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow-right { + padding-right: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-glyph { + font-size: 32px; + line-height: 32px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-large .x-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled { + border-color: #d7d7d7; + background-image: none; + background-color: transparent; +} +/* line 317, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-btn-inner { + color: #8c8c8c; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-button, +.x-btn-default-toolbar-large-noicon .x-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-inner { + line-height: 32px; + padding-left: 36px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el { + height: 32px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-inner { + line-height: 32px; + padding-right: 36px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el { + height: 32px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-top .x-btn-inner { + padding-top: 36px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner { + padding-bottom: 36px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active, +.x-btn-default-toolbar-large-pressed { + border-color: #9d9d9d; + background-image: none; + background-color: #d6d6d6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0)); + background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: linear-gradient(top, #c7c7c7, #e0e0e0); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-tl, +.x-btn-default-toolbar-large-over .x-frame-bl, +.x-btn-default-toolbar-large-over .x-frame-tr, +.x-btn-default-toolbar-large-over .x-frame-br, +.x-btn-default-toolbar-large-over .x-frame-tc, +.x-btn-default-toolbar-large-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-ml, +.x-btn-default-toolbar-large-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-toolbar-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-tl, +.x-btn-default-toolbar-large-focus .x-frame-bl, +.x-btn-default-toolbar-large-focus .x-frame-tr, +.x-btn-default-toolbar-large-focus .x-frame-br, +.x-btn-default-toolbar-large-focus .x-frame-tc, +.x-btn-default-toolbar-large-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-ml, +.x-btn-default-toolbar-large-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-toolbar-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-tl, +.x-btn-default-toolbar-large-menu-active .x-frame-bl, +.x-btn-default-toolbar-large-menu-active .x-frame-tr, +.x-btn-default-toolbar-large-menu-active .x-frame-br, +.x-btn-default-toolbar-large-menu-active .x-frame-tc, +.x-btn-default-toolbar-large-menu-active .x-frame-bc, +.x-btn-default-toolbar-large-pressed .x-frame-tl, +.x-btn-default-toolbar-large-pressed .x-frame-bl, +.x-btn-default-toolbar-large-pressed .x-frame-tr, +.x-btn-default-toolbar-large-pressed .x-frame-br, +.x-btn-default-toolbar-large-pressed .x-frame-tc, +.x-btn-default-toolbar-large-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-ml, +.x-btn-default-toolbar-large-menu-active .x-frame-mr, +.x-btn-default-toolbar-large-pressed .x-frame-ml, +.x-btn-default-toolbar-large-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-mc, +.x-btn-default-toolbar-large-pressed .x-frame-mc { + background-color: #d6d6d6; + background-image: url(images/btn/btn-default-toolbar-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-tl, +.x-btn-default-toolbar-large-disabled .x-frame-bl, +.x-btn-default-toolbar-large-disabled .x-frame-tr, +.x-btn-default-toolbar-large-disabled .x-frame-br, +.x-btn-default-toolbar-large-disabled .x-frame-tc, +.x-btn-default-toolbar-large-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-ml, +.x-btn-default-toolbar-large-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-mc { + background-color: transparent; +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-over { + background-image: url(images/btn/btn-default-toolbar-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-focus { + background-image: url(images/btn/btn-default-toolbar-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-menu-active, +.x-nlg .x-btn-default-toolbar-large-pressed { + background-image: url(images/btn/btn-default-toolbar-large-pressed-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 1161, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-left .x-btn-icon-el { + background-position: left center; +} + +/* line 1173, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-right .x-btn-icon-el { + background-position: right center; +} + +/* line 1184, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-top .x-btn-icon-el { + background-position: center top; +} + +/* line 1188, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-bottom .x-btn-icon-el { + background-position: center bottom; +} + +/* line 1192, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow-right { + background-position: right center; +} + +/* line 1202, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow-bottom { + background-position: center bottom; +} + +/* line 1206, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow { + background-repeat: no-repeat; +} + +/* line 1211, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split { + display: block; + background-repeat: no-repeat; +} + +/* line 1216, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split-right { + background-position: right center; +} + +/* line 1226, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split-bottom { + background-position: center bottom; +} + +/* line 1230, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-cycle-fixed-width .x-btn-inner { + text-align: inherit; +} + +/** + * Creates a visual theme for a Toolbar. + * @param {String} $ui + * The name of the UI + * + * @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 {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 {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-disabled=$toolbar-scroller-opacity-disabled] + * The opacity of disabled Toolbar scrollers + * + * @param {string} [$tool-background-image=$toolbar-tool-background-image] + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + * + * @member Ext.toolbar.Toolbar + */ +/* line 94, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar { + font-size: 11px; + border-style: solid; + padding: 2px 0 2px 2px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-item { + margin: 0 2px 0 0; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-text { + margin: 0 6px 0 4px; + color: black; + line-height: 16px; + font-family: tahoma, arial, verdana, sans-serif; + font-size: 11px; + font-weight: normal; +} + +/* line 121, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-separator-horizontal { + margin: 0 2px 0 0; + height: 14px; + border-style: solid; + border-width: 0 1px; + border-left-color: #aca899; + border-right-color: white; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-footer { + background: transparent; + border: 0; + margin: 3px 0 0; + padding: 2px 0 2px 6px; +} +/* line 144, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-footer .x-toolbar-item { + margin: 0 6px 0 0; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-spacer { + width: 2px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-more-icon { + background-image: url(images/toolbar/more.gif) !important; + background-position: center center !important; + background-repeat: no-repeat; +} + +/* line 45, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default { + border-color: #bcb0b0; + border-width: 1px; + background-image: none; + background-color: #d8d8d8; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e6e6), color-stop(100%, #efefef)); + background-image: -webkit-linear-gradient(top, #e6e6e6, #efefef); + background-image: -moz-linear-gradient(top, #e6e6e6, #efefef); + background-image: -o-linear-gradient(top, #e6e6e6, #efefef); + background-image: linear-gradient(top, #e6e6e6, #efefef); +} +/* line 51, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller { + cursor: pointer; +} +/* line 55, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + cursor: default; +} + +/* line 82, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-nlg .x-toolbar-default { + background-image: url(images/toolbar/toolbar-default-bg.gif) !important; + background-repeat: repeat-x; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-toolbar-default:after { + display: none; + content: "x-slicer:bg:url(images/toolbar/toolbar-default-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/* line 166, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-left { + background-image: url(images/toolbar/scroll-left.gif); + background-position: -14px 0; + width: 14px; + height: 22px; + border-style: solid; + border-color: #8db2e3; + border-width: 0 0 1px; + margin-top: 0; +} + +/* line 177, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-left-hover { + background-position: 0 0; +} + +/* line 181, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-right { + background-image: url(images/toolbar/scroll-right.gif); + width: 14px; + height: 22px; + border-style: solid; + border-color: #8db2e3; + border-width: 0 0 1px; + margin-top: 0; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-right-hover { + background-position: -14px 0; +} + +/* line 195, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar .x-box-menu-after { + margin: 0 2px 0 2px; +} + +/* line 199, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical { + padding: 2px 2px 0 2px; +} +/* line 202, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-item { + margin: 0 0 2px 0; +} +/* line 206, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-text { + margin: 4px 0 6px 0; +} +/* line 210, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-separator-vertical { + margin: 0 5px 2px; + border-style: solid none; + border-width: 1px 0; + border-top-color: #aca899; + border-bottom-color: white; +} +/* line 219, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-box-menu-after, +.x-toolbar-vertical .x-rtl.x-box-menu-after { + margin: 2px 0 2px 0; + display: block; + float: none; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x-header-draggable .x-header-body, +.x-header-ghost { + cursor: move; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x-header-text { + white-space: nowrap; +} + +/** + * Creates a visual theme for a Panel + * + * @param {string} $ui-label + * 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 {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-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`. + * + * @member Ext.panel.Panel + */ +/* line 736, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65); + opacity: 0.65; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default { + border-color: #d0d0d0; + padding: 0; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default { + font-size: 11px; + border: 1px solid #d0d0d0; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal { + padding: 4px 5px 4px 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal-noborder { + padding: 5px 6px 4px 6px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical-noborder { + padding: 6px 5px 6px 4px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-default { + color: #333333; + font-size: 11px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + line-height: 15px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-default { + background: white; + border-color: #d0d0d0; + color: black; + font-size: 12px; + font-size: normal; + border-width: 1px; + border-style: solid; +} + +/* line 432, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default { + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: linear-gradient(top, #f0f0f0, #d7d7d7); +} + +/* line 436, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical { + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: linear-gradient(right, #f0f0f0, #d7d7d7); +} + +/* line 454, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-top { + background: url(images/panel-header/panel-header-default-top-bg.gif); +} +/* line 459, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-bottom { + background: url(images/panel-header/panel-header-default-bottom-bg.gif); +} +/* line 464, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-left { + background: url(images/panel-header/panel-header-default-left-bg.gif) top right; +} +/* line 469, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-right { + background: url(images/panel-header/panel-header-default-right-bg.gif) top right; +} + +/* line 494, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-top { + border-bottom-width: 1px !important; +} +/* line 498, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-right { + border-left-width: 1px !important; +} +/* line 502, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-bottom { + border-top-width: 1px !important; +} +/* line 506, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-left { + border-right-width: 1px !important; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-top:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-top-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-bottom:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-bottom-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-left:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-left-bg.gif), stretch:left"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-right:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-right-bg.gif), stretch:left"; +} + +/**/ +/* */ +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-vertical .x-panel-header-text-container { + background-color: #d7d2d2; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#d7d2d2); +} + +/* line 533, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-top { + -webkit-box-shadow: #ececec 0 1px 0px 0 inset; + -moz-box-shadow: #ececec 0 1px 0px 0 inset; + box-shadow: #ececec 0 1px 0px 0 inset; +} + +/* line 537, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-right { + -webkit-box-shadow: #ececec -1px 0 0px 0 inset; + -moz-box-shadow: #ececec -1px 0 0px 0 inset; + box-shadow: #ececec -1px 0 0px 0 inset; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-bottom { + -webkit-box-shadow: #ececec 0 -1px 0px 0 inset; + -moz-box-shadow: #ececec 0 -1px 0px 0 inset; + box-shadow: #ececec 0 -1px 0px 0 inset; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-left { + -webkit-box-shadow: #ececec 1px 0 0px 0 inset; + -moz-box-shadow: #ececec 1px 0 0px 0 inset; + box-shadow: #ececec 1px 0 0px 0 inset; +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default .x-panel-header-glyph { + color: #333333; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-default .x-panel-header-glyph { + color: #858282; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-panel-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 2px; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-tool-after-title { + margin: 0 0 0 2px; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-tool-before-title { + margin: 0 2px 0 0; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 687, ../../../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 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed { + border-color: #d0d0d0; + padding: 4px; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed { + font-size: 11px; + border: 1px solid #d0d0d0; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal { + padding: 4px 5px 4px 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal-noborder { + padding: 5px 6px 4px 6px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical-noborder { + padding: 6px 5px 6px 4px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-default-framed { + color: #333333; + font-size: 11px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + line-height: 15px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-default-framed { + background: #f1f1f1; + border-color: #d0d0d0; + color: black; + font-size: 12px; + font-size: normal; + border-width: 0; + border-style: solid; +} + +/* line 137, ../../../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: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: #f1f1f1; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mc { + background-color: #f1f1f1; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-default-framed-frameInfo { + font-family: dh-4-4-4-4-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tr, +.x-panel-default-framed-br, +.x-panel-default-framed-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl, +.x-panel-default-framed-bl, +.x-panel-default-framed-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl, +.x-panel-default-framed-bl, +.x-panel-default-framed-tr, +.x-panel-default-framed-br, +.x-panel-default-framed-tc, +.x-panel-default-framed-bc, +.x-panel-default-framed-ml, +.x-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-ml, +.x-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-default-framed-tl, +.x-strict .x-ie7 .x-panel-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 5px 4px 5px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: linear-gradient(top, #f0f0f0, #d7d7d7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mc { + background-image: url(images/panel-header/panel-header-default-framed-top-fbg.gif); + background-position: 0 top; + background-color: #d7d2d2; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-top { + background-image: url(images/panel-header/panel-header-default-framed-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-top-frameInfo { + font-family: dh-4-4-0-0-1-1-0-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tr, +.x-panel-header-default-framed-top-br, +.x-panel-header-default-framed-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl, +.x-panel-header-default-framed-top-bl, +.x-panel-header-default-framed-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl, +.x-panel-header-default-framed-top-bl, +.x-panel-header-default-framed-top-tr, +.x-panel-header-default-framed-top-br, +.x-panel-header-default-framed-top-tc, +.x-panel-header-default-framed-top-bc, +.x-panel-header-default-framed-top-ml, +.x-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-ml, +.x-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mc { + padding: 1px 2px 4px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-top-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 4px 5px 4px; + border-width: 1px 1px 1px 0; + border-style: solid; + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: linear-gradient(right, #f0f0f0, #d7d7d7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-right-fbg.gif); + background-position: right 0; + background-color: #d7d2d2; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-right { + background-image: url(images/panel-header/panel-header-default-framed-right-bg.gif); + background-position: right 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-right-frameInfo { + font-family: dv-0-4-4-0-1-1-1-0-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc { + background-position: right 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bc { + background-position: right -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tr, +.x-panel-header-default-framed-right-br, +.x-panel-header-default-framed-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl, +.x-panel-header-default-framed-right-bl, +.x-panel-header-default-framed-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl, +.x-panel-header-default-framed-right-bl, +.x-panel-header-default-framed-right-tr, +.x-panel-header-default-framed-right-br, +.x-panel-header-default-framed-right-tc, +.x-panel-header-default-framed-right-bc, +.x-panel-header-default-framed-right-ml, +.x-panel-header-default-framed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-corners.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc, +.x-panel-header-default-framed-right-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-sides.gif); + background-repeat: repeat-x; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mc { + padding: 2px 1px 2px 4px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-right-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-right:after { + display: none; + content: "x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-right-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-right-bg.gif), corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 5px 4px 5px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: linear-gradient(top, #f0f0f0, #d7d7d7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mc { + background-image: url(images/panel-header/panel-header-default-framed-bottom-fbg.gif); + background-position: 0 bottom; + background-color: #d7d2d2; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-bottom { + background-image: url(images/panel-header/panel-header-default-framed-bottom-bg.gif); + background-position: 0 bottom; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-bottom-frameInfo { + font-family: dh-0-0-4-4-0-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tr, +.x-panel-header-default-framed-bottom-br, +.x-panel-header-default-framed-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl, +.x-panel-header-default-framed-bottom-bl, +.x-panel-header-default-framed-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl, +.x-panel-header-default-framed-bottom-bl, +.x-panel-header-default-framed-bottom-tr, +.x-panel-header-default-framed-bottom-br, +.x-panel-header-default-framed-bottom-tc, +.x-panel-header-default-framed-bottom-bc, +.x-panel-header-default-framed-bottom-ml, +.x-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-ml, +.x-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mc { + padding: 4px 2px 1px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-bottom:after { + display: none; + content: "x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 4px 5px 4px; + border-width: 1px 0 1px 1px; + border-style: solid; + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: linear-gradient(right, #f0f0f0, #d7d7d7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-left-fbg.gif); + background-position: left 0; + background-color: #d7d2d2; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-left { + background-image: url(images/panel-header/panel-header-default-framed-left-bg.gif); + background-position: left 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-left-frameInfo { + font-family: dv-4-0-0-4-1-0-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc { + background-position: left 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bc { + background-position: left -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tr, +.x-panel-header-default-framed-left-br, +.x-panel-header-default-framed-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl, +.x-panel-header-default-framed-left-bl, +.x-panel-header-default-framed-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl, +.x-panel-header-default-framed-left-bl, +.x-panel-header-default-framed-left-tr, +.x-panel-header-default-framed-left-br, +.x-panel-header-default-framed-left-tc, +.x-panel-header-default-framed-left-bc, +.x-panel-header-default-framed-left-ml, +.x-panel-header-default-framed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-corners.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc, +.x-panel-header-default-framed-left-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-sides.gif); + background-repeat: repeat-x; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mc { + padding: 2px 4px 2px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-left-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-left:after { + display: none; + content: "x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-left-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-left-bg.gif), corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: linear-gradient(top, #f0f0f0, #d7d7d7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif); + background-position: 0 top; + background-color: #d7d2d2; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-top { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-top-frameInfo { + font-family: dh-4-4-4-4-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tr, +.x-panel-header-default-framed-collapsed-top-br, +.x-panel-header-default-framed-collapsed-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl, +.x-panel-header-default-framed-collapsed-top-bl, +.x-panel-header-default-framed-collapsed-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl, +.x-panel-header-default-framed-collapsed-top-bl, +.x-panel-header-default-framed-collapsed-top-tr, +.x-panel-header-default-framed-collapsed-top-br, +.x-panel-header-default-framed-collapsed-top-tc, +.x-panel-header-default-framed-collapsed-top-bc, +.x-panel-header-default-framed-collapsed-top-ml, +.x-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-ml, +.x-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mc { + padding: 1px 2px 1px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: linear-gradient(right, #f0f0f0, #d7d7d7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif); + background-position: right 0; + background-color: #d7d2d2; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-right { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif); + background-position: right 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-right-frameInfo { + font-family: dv-4-4-4-4-1-1-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc { + background-position: right 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bc { + background-position: right -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tr, +.x-panel-header-default-framed-collapsed-right-br, +.x-panel-header-default-framed-collapsed-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl, +.x-panel-header-default-framed-collapsed-right-bl, +.x-panel-header-default-framed-collapsed-right-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl, +.x-panel-header-default-framed-collapsed-right-bl, +.x-panel-header-default-framed-collapsed-right-tr, +.x-panel-header-default-framed-collapsed-right-br, +.x-panel-header-default-framed-collapsed-right-tc, +.x-panel-header-default-framed-collapsed-right-bc, +.x-panel-header-default-framed-collapsed-right-ml, +.x-panel-header-default-framed-collapsed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc, +.x-panel-header-default-framed-collapsed-right-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif); + background-repeat: repeat-x; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mc { + padding: 2px 1px 2px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-right:after { + display: none; + content: "x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: linear-gradient(top, #f0f0f0, #d7d7d7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif); + background-position: 0 bottom; + background-color: #d7d2d2; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-bottom { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif); + background-position: 0 bottom; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-bottom-frameInfo { + font-family: dh-4-4-4-4-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tr, +.x-panel-header-default-framed-collapsed-bottom-br, +.x-panel-header-default-framed-collapsed-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl, +.x-panel-header-default-framed-collapsed-bottom-bl, +.x-panel-header-default-framed-collapsed-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl, +.x-panel-header-default-framed-collapsed-bottom-bl, +.x-panel-header-default-framed-collapsed-bottom-tr, +.x-panel-header-default-framed-collapsed-bottom-br, +.x-panel-header-default-framed-collapsed-bottom-tc, +.x-panel-header-default-framed-collapsed-bottom-bc, +.x-panel-header-default-framed-collapsed-bottom-ml, +.x-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-ml, +.x-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mc { + padding: 1px 2px 1px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-bottom:after { + display: none; + content: "x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: linear-gradient(right, #f0f0f0, #d7d7d7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif); + background-position: left 0; + background-color: #d7d2d2; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-left { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif); + background-position: left 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-left-frameInfo { + font-family: dv-4-4-4-4-1-1-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc { + background-position: left 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bc { + background-position: left -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tr, +.x-panel-header-default-framed-collapsed-left-br, +.x-panel-header-default-framed-collapsed-left-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl, +.x-panel-header-default-framed-collapsed-left-bl, +.x-panel-header-default-framed-collapsed-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl, +.x-panel-header-default-framed-collapsed-left-bl, +.x-panel-header-default-framed-collapsed-left-tr, +.x-panel-header-default-framed-collapsed-left-br, +.x-panel-header-default-framed-collapsed-left-tc, +.x-panel-header-default-framed-collapsed-left-bc, +.x-panel-header-default-framed-collapsed-left-ml, +.x-panel-header-default-framed-collapsed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc, +.x-panel-header-default-framed-collapsed-left-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif); + background-repeat: repeat-x; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mc { + padding: 2px 1px 2px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-left:after { + display: none; + content: "x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 396, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-top { + border-bottom-width: 1px !important; +} +/* line 400, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-right { + border-left-width: 1px !important; +} +/* line 404, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-bottom { + border-top-width: 1px !important; +} +/* line 408, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-left { + border-right-width: 1px !important; +} + +/* line 414, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-top { + border-bottom-width: 0 !important; +} +/* line 418, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-right { + border-left-width: 0 !important; +} +/* line 422, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-bottom { + border-top-width: 0 !important; +} +/* line 426, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-left { + border-right-width: 0 !important; +} + +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-framed-vertical .x-panel-header-text-container { + background-color: #d7d2d2; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#d7d2d2); +} + +/* line 533, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-top { + -webkit-box-shadow: #ececec 0 1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; + -moz-box-shadow: #ececec 0 1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; + box-shadow: #ececec 0 1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; +} + +/* line 537, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-right { + -webkit-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset; + -moz-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset; + box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-bottom { + -webkit-box-shadow: #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; + -moz-box-shadow: #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; + box-shadow: #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-left { + -webkit-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec 1px 0 0px 0 inset; + -moz-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec 1px 0 0px 0 inset; + box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec 1px 0 0px 0 inset; +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed .x-panel-header-glyph { + color: #333333; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-default-framed .x-panel-header-glyph { + color: #858282; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-panel-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 2px; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-tool-after-title { + margin: 0 0 0 2px; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-tool-before-title { + margin: 0 2px 0 0; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 687, ../../../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; +} + +/** + * Creates a visual theme for a Ext.tip.Tip + * + * @param {string} $ui-label + * 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-body-padding=$tip-header-body-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 167, ../../../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: #868686; + zoom: 1; +} +/* line 182, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-content-box .x-tip-anchor { + height: 0; + width: 0; +} + +/* line 189, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-top { + border-top-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-bottom { + border-bottom-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-bottom-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-left { + border-top-color: transparent; + border-bottom-color: transparent; + border-left-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-left-color: pink; + _filter: chroma(color=pink); +} + +/* line 228, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-right { + border-top-color: transparent; + border-bottom-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 137, ../../../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: #cccccc; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mc { + background-color: #cccccc; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tip-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tip-default-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tr, +.x-tip-default-br, +.x-tip-default-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl, +.x-tip-default-bl, +.x-tip-default-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl, +.x-tip-default-bl, +.x-tip-default-tr, +.x-tip-default-br, +.x-tip-default-tc, +.x-tip-default-bc, +.x-tip-default-ml, +.x-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-ml, +.x-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tip-default-tl, +.x-strict .x-ie7 .x-tip-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tip-default:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-default { + border-color: #868686; +} +/* line 109, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-default .x-tool-img { + background-color: #cccccc; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-tool-before-title { + margin: 0 6px 0 0; +} + +/* line 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-body-default { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-text-container-default { + color: #444444; + font-size: 11px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-default { + padding: 3px; + color: #444444; + font-size: 11px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-default a { + color: #2a2a2a; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: white; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mc { + background-color: white; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tip-form-invalid { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tip-form-invalid-frameInfo { + font-family: th-5-5-5-5-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tr, +.x-tip-form-invalid-br, +.x-tip-form-invalid-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl, +.x-tip-form-invalid-bl, +.x-tip-form-invalid-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl, +.x-tip-form-invalid-bl, +.x-tip-form-invalid-tr, +.x-tip-form-invalid-br, +.x-tip-form-invalid-tc, +.x-tip-form-invalid-bc, +.x-tip-form-invalid-ml, +.x-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-ml, +.x-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tip-form-invalid-tl, +.x-strict .x-ie7 .x-tip-form-invalid-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tip-form-invalid:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-form-invalid { + border-color: #a1311f; + -webkit-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; + -moz-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; + box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; +} +/* line 109, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-form-invalid .x-tool-img { + background-color: white; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-form-invalid .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-form-invalid .x-tool-before-title { + margin: 0 6px 0 0; +} + +/* line 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-body-form-invalid { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-text-container-form-invalid { + color: #444444; + font-size: 11px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid { + padding: 3px 3px 3px 22px; + color: #444444; + font-size: 11px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid a { + color: #2a2a2a; +} + +/* line 265, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid { + background: 1px 1px no-repeat; + background-image: url(images/form/exclamation.gif); +} +/* line 268, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid li { + margin-bottom: 4px; +} +/* line 270, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid li.last { + margin-bottom: 0; +} + +/** + * Creates a visual theme for a ButtonGroup. + * + * @param {string} $ui-label + * 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 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-default { + border-color: #d0d0d0; + -webkit-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; + -moz-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; + box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default { + margin: 2px 2px 0 2px; + padding: 1px 0; + line-height: 15px; + background: #dfdfdf; + -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 109, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default .x-tool-img { + background-color: #dfdfdf; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-text-container-default { + font: normal 11px tahoma, arial, verdana, sans-serif; + line-height: 15px; + color: #666666; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default { + padding: 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default .x-table-layout { + border-spacing: 0; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed { + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + padding: 1px 1px 1px 1px; + border-width: 1px; + border-style: solid; + background-color: #d6d6d6; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mc { + background-color: #d6d6d6; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-group-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-group-default-framed-frameInfo { + font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl { + background-position: 0 -4px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tr { + background-position: right -6px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bl { + background-position: 0 -8px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-br { + background-position: right -10px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bc { + background-position: 0 -2px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tr, +.x-btn-group-default-framed-br, +.x-btn-group-default-framed-mr { + padding-right: 2px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl, +.x-btn-group-default-framed-bl, +.x-btn-group-default-framed-ml { + padding-left: 2px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tc { + height: 2px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bc { + height: 2px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl, +.x-btn-group-default-framed-bl, +.x-btn-group-default-framed-tr, +.x-btn-group-default-framed-br, +.x-btn-group-default-framed-tc, +.x-btn-group-default-framed-bc, +.x-btn-group-default-framed-ml, +.x-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-ml, +.x-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-group-default-framed-tl, +.x-strict .x-ie7 .x-btn-group-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-group-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle { + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + padding: 1px 1px 1px 1px; + border-width: 1px; + border-style: solid; + background-color: #d6d6d6; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mc { + background-color: #d6d6d6; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-group-default-framed-notitle { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-group-default-framed-notitle-frameInfo { + font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl { + background-position: 0 -4px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tr { + background-position: right -6px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bl { + background-position: 0 -8px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-br { + background-position: right -10px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bc { + background-position: 0 -2px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tr, +.x-btn-group-default-framed-notitle-br, +.x-btn-group-default-framed-notitle-mr { + padding-right: 2px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl, +.x-btn-group-default-framed-notitle-bl, +.x-btn-group-default-framed-notitle-ml { + padding-left: 2px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tc { + height: 2px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bc { + height: 2px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl, +.x-btn-group-default-framed-notitle-bl, +.x-btn-group-default-framed-notitle-tr, +.x-btn-group-default-framed-notitle-br, +.x-btn-group-default-framed-notitle-tc, +.x-btn-group-default-framed-notitle-bc, +.x-btn-group-default-framed-notitle-ml, +.x-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-ml, +.x-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-group-default-framed-notitle-tl, +.x-strict .x-ie7 .x-btn-group-default-framed-notitle-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-group-default-framed-notitle:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"; +} + +/**/ +/* */ +/* line 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-default-framed { + border-color: #d0d0d0; + -webkit-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; + -moz-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; + box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default-framed { + margin: 2px 2px 0 2px; + padding: 1px 0; + line-height: 15px; + background: #dfdfdf; + -moz-border-radius-topleft: 2px; + -webkit-border-top-left-radius: 2px; + border-top-left-radius: 2px; + -moz-border-radius-topright: 2px; + -webkit-border-top-right-radius: 2px; + border-top-right-radius: 2px; +} +/* line 109, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default-framed .x-tool-img { + background-color: #dfdfdf; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-text-container-default-framed { + font: normal 11px tahoma, arial, verdana, sans-serif; + line-height: 15px; + color: #666666; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default-framed { + padding: 0 1px 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default-framed .x-table-layout { + border-spacing: 0; +} + +/** + * Creates a visual theme for a Window + * + * @param {string} $ui-label + * 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`. + * + * @member Ext.window.Window + */ +/* line 545, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65); + opacity: 0.65; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default { + border-color: #a9a9a9; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + -webkit-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; + -moz-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; + box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: #e8e8e8; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mc { + background-color: #e8e8e8; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-default-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tr, +.x-window-default-br, +.x-window-default-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl, +.x-window-default-bl, +.x-window-default-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl, +.x-window-default-bl, +.x-window-default-tr, +.x-window-default-br, +.x-window-default-tc, +.x-window-default-bc, +.x-window-default-ml, +.x-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-ml, +.x-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-default-tl, +.x-strict .x-ie7 .x-window-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-default:after { + display: none; + content: "x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"; +} + +/**/ +/* */ +/* line 195, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-body-default { + border-color: #bcb1b0; + border-width: 1px; + border-style: solid; + background: #e0e0e0; + color: black; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default { + font-size: 11px; + border-color: #a9a9a9; + zoom: 1; + background-color: #e8e8e8; +} +/* line 212, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-tool-img { + background-color: #e8e8e8; +} + +/* line 223, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-window-header-default-vertical .x-window-header-text-container { + background-color: #e8e8e8; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#e8e8e8); +} + +/* line 233, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-text-container-default { + color: #333333; + font-weight: bold; + line-height: 15px; + font-family: tahoma, arial, verdana, sans-serif; + font-size: 11px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-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: 4px 5px 0 5px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #e8e8e8; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mc { + background-color: #e8e8e8; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-top-frameInfo { + font-family: dh-5-5-0-0-1-1-0-1-4-5-0-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tr, +.x-window-header-default-top-br, +.x-window-header-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl, +.x-window-header-default-top-bl, +.x-window-header-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl, +.x-window-header-default-top-bl, +.x-window-header-default-top-tr, +.x-window-header-default-top-br, +.x-window-header-default-top-tc, +.x-window-header-default-top-bc, +.x-window-header-default-top-ml, +.x-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-ml, +.x-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mc { + padding: 0px 1px 0 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-top-tl, +.x-strict .x-ie7 .x-window-header-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px; + -webkit-border-top-right-radius: 5px; + border-top-right-radius: 5px; + -moz-border-radius-bottomright: 5px; + -webkit-border-bottom-right-radius: 5px; + border-bottom-right-radius: 5px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 4px 5px 0; + border-width: 1px 1px 1px 0; + border-style: solid; + background-color: #e8e8e8; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mc { + background-color: #e8e8e8; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-right-frameInfo { + font-family: dh-0-5-5-0-1-1-1-0-5-4-5-0; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tr, +.x-window-header-default-right-br, +.x-window-header-default-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl, +.x-window-header-default-right-bl, +.x-window-header-default-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl, +.x-window-header-default-right-bl, +.x-window-header-default-right-tr, +.x-window-header-default-right-br, +.x-window-header-default-right-tc, +.x-window-header-default-right-bc, +.x-window-header-default-right-ml, +.x-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-ml, +.x-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mc { + padding: 1px 0px 1px 0; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-right-tl, +.x-strict .x-ie7 .x-window-header-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 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: 0 5px 4px 5px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-color: #e8e8e8; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mc { + background-color: #e8e8e8; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-bottom-frameInfo { + font-family: dh-0-0-5-5-0-1-1-1-0-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tr, +.x-window-header-default-bottom-br, +.x-window-header-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl, +.x-window-header-default-bottom-bl, +.x-window-header-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl, +.x-window-header-default-bottom-bl, +.x-window-header-default-bottom-tr, +.x-window-header-default-bottom-br, +.x-window-header-default-bottom-tc, +.x-window-header-default-bottom-bc, +.x-window-header-default-bottom-ml, +.x-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-ml, +.x-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mc { + padding: 0 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-bottom-tl, +.x-strict .x-ie7 .x-window-header-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left { + -moz-border-radius-topleft: 5px; + -webkit-border-top-left-radius: 5px; + border-top-left-radius: 5px; + -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: 5px; + -webkit-border-bottom-left-radius: 5px; + border-bottom-left-radius: 5px; + padding: 5px 0 5px 4px; + border-width: 1px 0 1px 1px; + border-style: solid; + background-color: #e8e8e8; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mc { + background-color: #e8e8e8; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-left-frameInfo { + font-family: dh-5-0-0-5-1-0-1-1-5-0-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tr, +.x-window-header-default-left-br, +.x-window-header-default-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl, +.x-window-header-default-left-bl, +.x-window-header-default-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl, +.x-window-header-default-left-bl, +.x-window-header-default-left-tr, +.x-window-header-default-left-br, +.x-window-header-default-left-tc, +.x-window-header-default-left-bc, +.x-window-header-default-left-ml, +.x-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-ml, +.x-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mc { + padding: 1px 0 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-left-tl, +.x-strict .x-ie7 .x-window-header-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-color: #e8e8e8; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mc { + background-color: #e8e8e8; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-top-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tr, +.x-window-header-default-collapsed-top-br, +.x-window-header-default-collapsed-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl, +.x-window-header-default-collapsed-top-bl, +.x-window-header-default-collapsed-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl, +.x-window-header-default-collapsed-top-bl, +.x-window-header-default-collapsed-top-tr, +.x-window-header-default-collapsed-top-br, +.x-window-header-default-collapsed-top-tc, +.x-window-header-default-collapsed-top-bc, +.x-window-header-default-collapsed-top-ml, +.x-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-ml, +.x-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-color: #e8e8e8; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mc { + background-color: #e8e8e8; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-right-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-5-4-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tr, +.x-window-header-default-collapsed-right-br, +.x-window-header-default-collapsed-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl, +.x-window-header-default-collapsed-right-bl, +.x-window-header-default-collapsed-right-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl, +.x-window-header-default-collapsed-right-bl, +.x-window-header-default-collapsed-right-tr, +.x-window-header-default-collapsed-right-br, +.x-window-header-default-collapsed-right-tc, +.x-window-header-default-collapsed-right-bc, +.x-window-header-default-collapsed-right-ml, +.x-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-ml, +.x-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mc { + padding: 1px 0px 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-color: #e8e8e8; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mc { + background-color: #e8e8e8; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-bottom-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tr, +.x-window-header-default-collapsed-bottom-br, +.x-window-header-default-collapsed-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl, +.x-window-header-default-collapsed-bottom-bl, +.x-window-header-default-collapsed-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl, +.x-window-header-default-collapsed-bottom-bl, +.x-window-header-default-collapsed-bottom-tr, +.x-window-header-default-collapsed-bottom-br, +.x-window-header-default-collapsed-bottom-tc, +.x-window-header-default-collapsed-bottom-bc, +.x-window-header-default-collapsed-bottom-ml, +.x-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-ml, +.x-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-color: #e8e8e8; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mc { + background-color: #e8e8e8; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-left-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-5-4-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tr, +.x-window-header-default-collapsed-left-br, +.x-window-header-default-collapsed-left-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl, +.x-window-header-default-collapsed-left-bl, +.x-window-header-default-collapsed-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl, +.x-window-header-default-collapsed-left-bl, +.x-window-header-default-collapsed-left-tr, +.x-window-header-default-collapsed-left-br, +.x-window-header-default-collapsed-left-tc, +.x-window-header-default-collapsed-left-bc, +.x-window-header-default-collapsed-left-ml, +.x-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-ml, +.x-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mc { + padding: 1px 0px 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 337, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-top { + -webkit-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; + -moz-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; + box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; +} + +/* line 341, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-right { + -webkit-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset; + -moz-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset; + box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset; +} + +/* line 345, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-bottom { + -webkit-box-shadow: #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; + -moz-box-shadow: #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; + box-shadow: #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-left { + -webkit-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; + -moz-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; + box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; +} + +/* line 355, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-window-header-icon { + width: 16px; + height: 16px; + color: #333333; + font-size: 16px; + line-height: 16px; + background-position: center center; +} +/* line 364, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-window-header-glyph { + color: #333333; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 380, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-ie8m .x-window-header-default .x-window-header-glyph { + color: #8d8d8d; +} + +/* line 388, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-window-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 398, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-window-header-icon-after-title { + margin: 0 0 0 2px; +} + +/* line 410, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 420, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 433, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-tool-after-title { + margin: 0 0 0 2px; +} +/* line 443, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-tool-before-title { + margin: 0 2px 0 0; +} + +/* line 455, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 465, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 483, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-collapsed .x-window-header { + border-width: 1px !important; +} + +/* line 489, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-nbr .x-window-default-collapsed .x-window-header { + border-width: 0 !important; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-invalid-under { + padding: 2px 2px 2px 20px; + color: #c0272b; + font: normal 11px tahoma, arial, verdana, sans-serif; + line-height: 16px; + background: no-repeat 0 2px; + background-image: url(images/form/exclamation.gif); +} + +/* line 14, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +div.x-lbl-top-err-icon { + margin-bottom: 3px; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-invalid-icon { + width: 16px; + height: 16px; + margin: 0 1px; + background-image: url(images/form/exclamation.gif); + background-repeat: no-repeat; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-item-label { + color: black; + font: normal 12px/14px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} +/* line 31, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-toolbar-item .x-form-item-label { + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} + +/* line 45, ../../../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; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-ie6 .x-form-form-item td { + border-top-width: 0; +} +/* line 59, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-ie6 td.x-form-item-pad { + height: 5px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-field { + color: black; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-item, +.x-form-field { + font: normal 12px tahoma, arial, verdana, sans-serif; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-type-text textarea.x-form-invalid-field, .x-form-type-text input.x-form-invalid-field, +.x-form-type-password textarea.x-form-invalid-field, +.x-form-type-password input.x-form-invalid-field, +.x-form-type-number textarea.x-form-invalid-field, +.x-form-type-number input.x-form-invalid-field, +.x-form-type-email textarea.x-form-invalid-field, +.x-form-type-email input.x-form-invalid-field, +.x-form-type-search textarea.x-form-invalid-field, +.x-form-type-search input.x-form-invalid-field, +.x-form-type-tel textarea.x-form-invalid-field, +.x-form-type-tel input.x-form-invalid-field { + background-color: white; + background-image: url(images/grid/invalid_line.gif); + background-repeat: repeat-x; + background-position: bottom; + border-color: #cc3300; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-item-disabled .x-form-item-label, +.x-item-disabled .x-form-field, +.x-item-disabled .x-form-display-field, +.x-item-disabled .x-form-cb-label, +.x-item-disabled .x-form-trigger { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-text { + color: black; + padding: 1px 3px 2px 3px; + background: white repeat-x 0 0; + border-width: 1px; + border-style: solid; + border-color: #b5b8c8; + background-image: url(images/form/text-bg.gif); + height: 22px; + line-height: 17px; +} +/* line 14, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-field-toolbar .x-form-text { + height: 20px; + line-height: 15px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-content-box .x-form-text { + height: 17px; +} +/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-content-box .x-field-toolbar .x-form-text { + height: 15px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-focus { + border-color: #a1a1a1; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-empty-field, +textarea.x-form-empty-field { + color: gray; +} + +/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-quirks .x-ie .x-form-text, +.x-ie7m .x-form-text { + margin-top: -1px; + margin-bottom: -1px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/TextArea.scss */ +.x-form-textarea { + line-height: normal; + height: auto; + background-image: url(images/form/text-bg.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-form-display-field-body { + height: 22px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-toolbar-item .x-form-display-field-body { + height: 20px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-form-display-field { + font: normal 12px/14px tahoma, arial, verdana, sans-serif; + color: black; + margin-top: 4px; +} +/* line 17, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-toolbar-item .x-form-display-field { + margin-top: 4px; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box .x-window-body { + background-color: #e8e8e8; + border-width: 0; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-info, +.x-message-box-warning, +.x-message-box-question, +.x-message-box-error { + background-position: top left; + background-repeat: no-repeat; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-info { + background-image: url(images/shared/icon-info.gif); +} + +/* line 33, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-warning { + background-image: url(images/shared/icon-warning.gif); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-question { + background-image: url(images/shared/icon-question.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-error { + background-image: url(images/shared/icon-error.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-wrap { + height: 22px; +} +/* line 4, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-toolbar-item .x-form-cb-wrap { + height: 20px; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb { + margin-top: 5px; +} +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-toolbar-item .x-form-cb { + margin-top: 4px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-checkbox { + width: 13px; + height: 13px; + background: url(images/form/checkbox.gif) no-repeat; +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-checked .x-form-checkbox { + background-position: 0 -13px; +} + +/* Focused */ +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-checkbox-focus { + background-position: -13px 0; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-checked .x-form-checkbox-focus { + background-position: -13px -13px; +} + +/* boxLabel */ +/* line 40, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label { + margin-top: 4px; + font: normal 12px/14px tahoma, arial, verdana, sans-serif; +} +/* line 43, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-toolbar-item .x-form-cb-label { + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label-before { + margin-right: 4px; +} + +/* line 64, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label-after { + margin-left: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-checkboxgroup-body { + padding: 0 4px; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-invalid .x-form-checkboxgroup-body { + border: 1px solid #cc3300; + background-image: url(images/grid/invalid_line.gif); + background-repeat: repeat-x; + background-position: bottom; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-check-group-alt { + background: #d5d5d5; + border-top: 1px dotted #b4b4b4; + border-bottom: 1px dotted #b4b4b4; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-check-group-label { + color: black; + padding: 2px; + margin: 0 30px 5px 0; + border-width: 0 0 1px 0; + border-style: solid; + border-color: black; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset { + border: 1px solid #b5b8c8; + padding: 0 10px; + margin: 0 0 10px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie8m .x-fieldset, +.x-quirks .x-ie .x-fieldset { + padding-top: 0; +} +/* line 13, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie8m .x-fieldset .x-fieldset-body, +.x-quirks .x-ie .x-fieldset .x-fieldset-body { + padding-top: 0; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-checkbox { + line-height: 14px; + margin: 1px 3px 0 0; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header { + padding: 0 3px 1px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-tool { + margin-top: 1px; + padding: 0; +} +/* line 33, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb-wrap { + padding: 1px 0; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text { + font: 11px/14px bold tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 1px 0; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text-collapsible { + cursor: pointer; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-with-title .x-fieldset-header-checkbox, +.x-fieldset-with-title .x-tool { + margin: 1px 3px 0 0; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-webkit .x-fieldset-header { + -webkit-padding-start: 3px; + -webkit-padding-end: 3px; +} + +/* line 76, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-opera .x-fieldset-with-legend { + margin-top: -1px; +} +/* line 79, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-opera.x-mac .x-fieldset-header-text { + padding: 2px 0 0; +} + +/* line 87, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-strict .x-ie8 .x-fieldset-header { + margin-bottom: -1px; +} +/* line 91, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-strict .x-ie8 .x-fieldset-header .x-tool, +.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text, +.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox { + position: relative; + top: -1px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-quirks .x-ie .x-fieldset-header, +.x-ie8m .x-fieldset-header { + padding-left: 1px; + padding-right: 1px; +} + +/* line 109, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-fieldset-body { + display: none; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed { + padding-bottom: 0 !important; + border-width: 1px 1px 0 1px !important; + border-left-color: transparent !important; + border-right-color: transparent !important; +} + +/* line 123, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie6 .x-fieldset-collapsed { + border-width: 1px 0 0 0 !important; + padding-bottom: 0 !important; + margin-left: 1px; + margin-right: 1px; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-bwrap { + zoom: 1; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset .x-tool-toggle { + background-position: 0 -60px; +} +/* line 144, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset .x-tool-over .x-tool-toggle { + background-position: -15px -60px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-tool-toggle { + background-position: 0 -75px; +} +/* line 156, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-tool-over .x-tool-toggle { + background-position: -15px -75px; +} + +/* IE legend positioning bug */ +/* line 164, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-noborder legend { + position: relative; + margin-bottom: 23px; +} + +/* line 170, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-noborder legend span { + position: absolute; + left: 16px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset { + overflow: hidden; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-bwrap { + overflow: hidden; + zoom: 1; +} + +/* line 186, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-body { + overflow: hidden; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-radio { + width: 13px; + height: 13px; + background: url(images/form/radio.gif) no-repeat; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-cb-checked .x-form-radio { + background-position: 0 -13px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-radio-focus { + background-position: -13px 0; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-cb-checked .x-form-radio-focus { + background-position: -13px -13px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + background: url(images/form/trigger.gif); + width: 17px; + border-width: 0 0 1px; + border-color: #b5b8c8; + border-style: solid; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-trigger-cell { + background-color: white; + width: 17px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-over { + background-position: -17px 0; + border-color: #a1a1a1; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap-focus .x-form-trigger { + background-position: -51px 0; + border-color: #a1a1a1; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap-focus .x-form-trigger-over { + background-position: -68px 0; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-click, +.x-form-trigger-wrap-focus .x-form-trigger-click { + background-position: -34px 0; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-clear-trigger { + background-image: url(images/form/clear-trigger.gif); +} + +/* line 59, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-search-trigger { + background-image: url(images/form/search-trigger.gif); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-quirks .prefixie6 .x-form-trigger-input-cell { + height: 22px; +} +/* line 77, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-quirks .prefixie6 .x-field-toolbar .x-form-trigger-input-cell { + height: 20px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +div.x-form-spinner-up, +div.x-form-spinner-down { + background-image: url(images/form/spinner.gif); + background-color: white; + width: 17px; + height: 11px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-spinner-down { + background-position: 0 -11px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap-focus .x-form-spinner-down { + background-position: -51px -11px; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap .x-form-spinner-down-over { + background-position: -17px -11px; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap-focus .x-form-spinner-down-over { + background-position: -68px -11px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap .x-form-spinner-down-click { + background-position: -34px -11px; +} + +/* line 41, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item div.x-form-spinner-up, +.x-toolbar-item div.x-form-spinner-down { + background-image: url(images/form/spinner-small.gif); + height: 10px; +} +/* line 45, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-spinner-down { + background-position: 0 -10px; +} +/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down { + background-position: -51px -10px; +} +/* line 51, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-over { + background-position: -17px -10px; +} +/* line 54, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down-over { + background-position: -68px -10px; +} +/* line 57, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-click { + background-position: -34px -10px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-number { + width: 30px; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-first { + background-image: url(images/grid/page-first.gif); +} + +/* line 9, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-prev { + background-image: url(images/grid/page-prev.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-next { + background-image: url(images/grid/page-next.gif); +} + +/* line 17, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-last { + background-image: url(images/grid/page-last.gif); +} + +/* line 21, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-loading { + background-image: url(images/grid/refresh.gif); +} + +/* line 27, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-first { + background-image: url(images/grid/page-first-disabled.gif); +} +/* line 31, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-prev { + background-image: url(images/grid/page-prev-disabled.gif); +} +/* line 35, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-next { + background-image: url(images/grid/page-next-disabled.gif); +} +/* line 39, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-last { + background-image: url(images/grid/page-last-disabled.gif); +} +/* line 43, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-loading { + background-image: url(images/grid/refresh-disabled.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist { + border-width: 1px; + border-style: solid; + border-color: #b5b8c8; + background: white; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-strict .x-ie7m .x-boundlist-list-ct { + position: relative; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-item { + padding: 0 3px; + line-height: 20px; + cursor: pointer; + cursor: hand; + position: relative; + /*allow hover in IE on empty items*/ + zoom: 1; + border-width: 1px; + border-style: dotted; + border-color: white; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-selected { + background: #d3d3d3; + border-color: #b3abaa; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-item-over { + background: #e0e0e0; + border-color: #bfb8b8; +} + +/* line 43, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-floating { + border-top-width: 0; +} + +/* line 47, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-above { + border-top-width: 1px; + border-bottom-width: 1px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker { + border-width: 1px; + border-style: solid; + border-color: #585858; + background-color: white; + width: 177px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-header { + padding: 3px 6px; + text-align: center; + background-image: none; + background-color: #6f6f6f; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #777777), color-stop(100%, #656565)); + background-image: -webkit-linear-gradient(top, #777777, #656565); + background-image: -moz-linear-gradient(top, #777777, #656565); + background-image: -o-linear-gradient(top, #777777, #656565); + background-image: linear-gradient(top, #777777, #656565); +} + +/* line 32, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-arrow { + width: 15px; + height: 15px; + top: 6px; + cursor: pointer; + background-color: #6f6f6f; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-datepicker-arrow:hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 55, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-next { + right: 6px; + background-image: url(images/shared/right-btn.gif); +} + +/* line 60, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-prev { + left: 6px; + background-image: url(images/shared/left-btn.gif); +} + +/* line 76, ../../../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 83, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-month .x-btn-inner { + color: white; +} +/* line 88, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-month .x-btn-split-right { + background-image: url(images/button/s-arrow-light.gif); + padding-right: 12px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-column-header { + width: 25px; + color: #3e3e3e; + font: normal 10px tahoma, arial, verdana, sans-serif; + text-align: right; + border-width: 0 0 1px; + border-style: solid; + border-color: #d0d0d0; + background-image: none; + background-color: #e9e9e9; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f1f1f1), color-stop(100%, #dfdfdf)); + background-image: -webkit-linear-gradient(top, #f1f1f1, #dfdfdf); + background-image: -moz-linear-gradient(top, #f1f1f1, #dfdfdf); + background-image: -o-linear-gradient(top, #f1f1f1, #dfdfdf); + background-image: linear-gradient(top, #f1f1f1, #dfdfdf); +} + +/* line 113, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-column-header-inner { + line-height: 19px; + padding: 0 7px 0 0; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-cell { + text-align: right; + border-width: 1px; + border-style: solid; + border-color: white; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-date { + padding: 0 4px 0 0; + font: normal 11px tahoma, arial, verdana, sans-serif; + color: black; + cursor: pointer; + line-height: 18px; +} + +/* line 138, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-datepicker-date:hover { + color: black; + background-color: transparent; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-selected { + border-style: solid; + border-color: #b2aaa9; +} +/* line 146, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-selected .x-datepicker-date { + background-color: #d8d8d8; + font-weight: bold; +} + +/* line 152, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-today { + border-color: darkred; + border-style: solid; +} + +/* line 159, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-prevday .x-datepicker-date, +.x-datepicker-nextday .x-datepicker-date { + color: #aaaaaa; +} + +/* line 166, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-disabled a.x-datepicker-date { + background-color: #eeeeee; + cursor: default; + color: #bbbbbb; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-disabled a.x-datepicker-date:hover { + background-color: #eeeeee; +} + +/* line 179, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-footer, +.x-monthpicker-buttons { + padding: 4px 0; + border-width: 1px 0 0; + border-style: solid; + border-color: #d0d0d0; + background-image: none; + background-color: #e9e9e9; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfdfdf), color-stop(49%, #d6d6d6), color-stop(51%, #d0d0d0), color-stop(100%, #d2d2d2)); + background-image: -webkit-linear-gradient(top, #dfdfdf, #d6d6d6 49%, #d0d0d0 51%, #d2d2d2); + background-image: -moz-linear-gradient(top, #dfdfdf, #d6d6d6 49%, #d0d0d0 51%, #d2d2d2); + background-image: -o-linear-gradient(top, #dfdfdf, #d6d6d6 49%, #d0d0d0 51%, #d2d2d2); + background-image: linear-gradient(top, #dfdfdf, #d6d6d6 49%, #d0d0d0 51%, #d2d2d2); + text-align: center; +} +/* line 195, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-footer .x-btn, +.x-monthpicker-buttons .x-btn { + margin: 0 2px 0 2px; +} + +/* line 201, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker { + width: 177px; + border-width: 1px; + border-style: solid; + border-color: #585858; + background-color: white; +} + +/* line 211, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-months { + border-width: 0 1px 0 0; + border-color: #585858; + border-style: solid; + width: 87px; +} +/* line 220, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-months .x-monthpicker-item { + width: 43px; +} + +/* line 225, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-years { + width: 88px; +} +/* line 228, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-years .x-monthpicker-item { + width: 44px; +} + +/* line 233, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-item { + margin: 5px 0 4px; + font: normal 11px tahoma, arial, verdana, sans-serif; + text-align: center; +} + +/* line 239, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-item-inner { + margin: 0 5px 0 5px; + color: #523a39; + border-width: 1px; + border-style: solid; + border-color: white; + line-height: 16px; + cursor: pointer; +} + +/* line 254, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-monthpicker-item-inner:hover { + background-color: transparent; +} + +/* line 258, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-selected { + background-color: #d8d8d8; + border-style: solid; + border-color: #b2aaa9; +} + +/* line 264, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav { + height: 27px; +} + +/* line 268, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button-ct { + width: 44px; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button { + height: 15px; + width: 15px; + cursor: pointer; + margin-top: 6px; + background-color: white; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-next { + background-image: url(images/tools/tool-sprites.gif); + background-position: 0 -120px; +} + +/* line 299, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-next-over { + background-position: -15px -120px; +} + +/* line 303, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-prev { + background-image: url(images/tools/tool-sprites.gif); + background-position: 0 -105px; +} + +/* line 308, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-prev-over { + background-position: -15px -105px; +} + +/* line 313, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-item { + margin: 2px 0 2px; +} +/* line 317, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-item-inner { + margin: 0 5px 0 5px; +} +/* line 321, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-yearnav { + height: 22px; +} +/* line 325, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-yearnav-button { + margin-top: 3px; +} + +/* line 334, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-nlg .x-datepicker-header { + background-image: url(images/datepicker/datepicker-header-bg.gif); + background-repeat: repeat-x; + background-position: top left; +} +/* line 343, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-nlg .x-datepicker-footer, +.x-nlg .x-monthpicker-buttons { + background-image: url(images/datepicker/datepicker-footer-bg.gif); + background-repeat: repeat-x; + background-position: top left; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-datepicker-header:after { + display: none; + content: "x-slicer:bg:url(images/datepicker/datepicker-header-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-datepicker-footer:after { + display: none; + content: "x-slicer:bg:url(images/datepicker/datepicker-footer-bg.gif)"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */ +.x-form-date-trigger { + background-image: url(images/form/date-trigger.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/File.scss */ +.x-form-file-wrap .x-form-text { + color: gray; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker { + width: 144px; + height: 90px; + background-color: white; + border-color: white; + border-width: 0; + border-style: solid; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-item { + width: 18px; + height: 18px; + border-width: 1px; + border-color: white; + border-style: solid; + background-color: white; + cursor: pointer; + padding: 2px; +} +/* line 20, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-content-box .x-color-picker-item { + width: 12px; + height: 12px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +a.x-color-picker-item:hover { + border-color: #8bb8f3; + background-color: #deecfd; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-selected { + border-color: #8bb8f3; + background-color: #deecfd; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-item-inner { + line-height: 10px; + border-color: #aca899; + border-width: 1px; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-btn-text { + background: transparent no-repeat; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-bold, +.x-menu-item div.x-edit-bold { + background-position: 0 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-italic, +.x-menu-item div.x-edit-italic { + background-position: -16px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-underline, +.x-menu-item div.x-edit-underline { + background-position: -32px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-forecolor, +.x-menu-item div.x-edit-forecolor { + background-position: -160px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 31, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-backcolor, +.x-menu-item div.x-edit-backcolor { + background-position: -176px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifyleft, +.x-menu-item div.x-edit-justifyleft { + background-position: -112px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifycenter, +.x-menu-item div.x-edit-justifycenter { + background-position: -128px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifyright, +.x-menu-item div.x-edit-justifyright { + background-position: -144px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 55, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-insertorderedlist, +.x-menu-item div.x-edit-insertorderedlist { + background-position: -80px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 61, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-insertunorderedlist, +.x-menu-item div.x-edit-insertunorderedlist { + background-position: -96px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 67, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-increasefontsize, +.x-menu-item div.x-edit-increasefontsize { + background-position: -48px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-decreasefontsize, +.x-menu-item div.x-edit-decreasefontsize { + background-position: -64px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 79, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-sourceedit, +.x-menu-item div.x-edit-sourceedit { + background-position: -192px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 85, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-createlink, +.x-menu-item div.x-edit-createlink { + background-position: -208px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 90, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tip .x-tip-bd .x-tip-bd-inner { + padding: 5px; + padding-bottom: 1px; +} + +/* line 95, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-font-select { + font-size: 11px; + font-family: inherit; +} + +/* line 100, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-wrap textarea { + font: normal 12px tahoma, arial, verdana, sans-serif; + background-color: white; + resize: none; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-body { + background: white; + border-width: 1px; + border-style: solid; + border-color: #d0d0d0; +} + +/* line 8, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-empty { + padding: 10px; + color: gray; + background-color: white; + font: normal 11px tahoma, arial, verdana, sans-serif; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell { + color: null; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + background-color: white; + border-color: #ededed #c6c6c6 #ededed #c6c6c6; + border-style: solid; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-alt .x-grid-td { + background-color: #fafafa; +} +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-over .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #dddddd; +} +/* line 35, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-over .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #dddddd; +} +/* line 40, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-selected .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #bfb8b8; +} +/* line 45, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #bfb8b8; +} +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-focused .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #464646; + border-bottom-width: 1px; +} +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-td { + background-color: #efefef; +} +/* line 65, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-over .x-grid-td { + background-color: #efefef; +} +/* line 73, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-td { + background-color: #e0e0e0; +} +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #464646; + border-bottom-width: 1px; +} +/* line 92, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-table .x-grid-row-focused-first .x-grid-td { + border-top: 1px dotted #464646; +} +/* line 103, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-row-summary .x-grid-td { + border-bottom-color: #e0e0e0; + border-top-width: 0; +} +/* line 108, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-row-summary .x-grid-td { + border-bottom-color: #efefef; + border-top-width: 0; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-td { + border-bottom-width: 1px; +} +/* line 121, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table { + border-top: 1px solid white; +} +/* line 125, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table-over-first { + border-top-style: solid; + border-top-color: #dddddd; +} +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table-selected-first { + border-top-style: dotted; + border-top-color: #bfb8b8; +} + +/* line 139, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-body .x-grid-table-focused-first { + border-top: 1px dotted #464646; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell-inner { + text-overflow: ellipsis; + padding: 3px 6px 4px 6px; +} + +/* line 163, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner { + padding-top: 2px; + padding-bottom: 3px; +} + +/* line 178, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell-special { + border-color: #ededed #c6c6c6 #ededed #c6c6c6; + border-style: solid; + border-right-width: 1px; + background-image: none; + background-color: #f6f6f6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: -moz-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: -o-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: linear-gradient(top, #f6f6f6, #e9e9e9); + /**/ + /**/ + /* */ + /**/ + /**/ + /* */ +} +/* line 191, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-cell-special { + border-right-color: #ededed #d4b7b7; + background-image: none; + background-color: #e0e0e0; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #e0e0e0), color-stop(100%, #d3d3d3)); + background-image: -webkit-linear-gradient(left, #e0e0e0, #d3d3d3); + background-image: -moz-linear-gradient(left, #e0e0e0, #d3d3d3); + background-image: -o-linear-gradient(left, #e0e0e0, #d3d3d3); + background-image: linear-gradient(left, #e0e0e0, #d3d3d3); +} +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-nlg .x-grid-cell-special { + background-repeat: repeat-y; + background-image: url(images/grid/cell-special-bg.gif); +} +/* line 211, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-nlg .x-grid-row-selected .x-grid-cell-special { + background-image: url(images/grid/cell-special-selected-bg.gif); +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-cell-special .x-grid-cell-special:after { + display: none; + content: "x-slicer:bg:url(images/grid/cell-special-bg.gif)"; +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-cell-special .x-grid-cell-special-selected:after { + display: none; + content: "x-slicer:bg:url(images/grid/cell-special-selected-bg.gif)"; +} + +/* line 228, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-dirty-cell { + background: url(images/grid/dirty.gif) no-repeat 0 0; +} + +/* line 241, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row .x-grid-cell-selected { + color: null; + background-color: #b8cfee; +} + +/* line 247, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-col-lines .x-grid-cell { + border-right-width: 1px; +} + +/* line 259, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-resize-marker { + width: 1px; + background-color: #0f0f0f; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator { + position: absolute; + height: 1px; + line-height: 0px; + background-color: #77BC71; + overflow: visible; + pointer-events: none; +} +/* line 9, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator .x-grid-drop-indicator-left { + position: absolute; + top: -8px; + left: -12px; + background-image: url(images/grid/dd-insert-arrow-right.png); + height: 16px; + width: 16px; +} +/* line 18, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator .x-grid-drop-indicator-right { + position: absolute; + top: -8px; + right: -11px; + background-image: url(images/grid/dd-insert-arrow-left.png); + height: 16px; + width: 16px; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-ie6 .x-grid-drop-indicator-left { + background-image: url(images/grid/dd-insert-arrow-right.gif); +} +/* line 33, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-ie6 .x-grid-drop-indicator-right { + background-image: url(images/grid/dd-insert-arrow-left.gif); +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + width: 9px; + height: 9px; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top { + background-image: url(images/grid/col-move-top.gif); +} + +/* line 11, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-bottom { + background-image: url(images/grid/col-move-bottom.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-grid-header-ct { + border: 1px solid #d0d0d0; + border-bottom-color: #c5c5c5; + background-color: #c5c5c5; + background-image: none; + background-color: #c5c5c5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #e3e4e6)); + background-image: -webkit-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -moz-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -o-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: linear-gradient(top, #f9f9f9, #e3e4e6); +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-accordion-item .x-grid-header-ct { + border-width: 0 0 1px !important; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-accordion-item .x-grid-header-ct-hidden { + border: 0 !important; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-grid-body { + border-top-color: #c5c5c5; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-hmenu-sort-asc .x-menu-item-icon { + background-image: url(images/grid/hmenu-asc.gif); +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-hmenu-sort-desc .x-menu-item-icon { + background-image: url(images/grid/hmenu-desc.gif); +} + +/* line 40, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-cols-icon .x-menu-item-icon { + background-image: url(images/grid/columns.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header { + border-right: 1px solid #c5c5c5; + color: black; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + background-image: none; + background-color: #c5c5c5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #e3e4e6)); + background-image: -webkit-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -moz-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -o-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: linear-gradient(top, #f9f9f9, #e3e4e6); +} + +/* line 24, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-group-sub-header { + background: transparent; + border-top: 1px solid #c5c5c5; +} +/* line 29, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-group-sub-header .x-column-header-inner { + padding: 3px 6px 5px 6px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-inner { + padding: 4px 6px 5px 6px; + text-overflow: ellipsis; +} + +/* line 42, ../../../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: #f0f0f0; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f0f0f0)); + background-image: -webkit-linear-gradient(top, #ffffff, #f0f0f0); + background-image: -moz-linear-gradient(top, #ffffff, #f0f0f0); + background-image: -o-linear-gradient(top, #ffffff, #f0f0f0); + background-image: linear-gradient(top, #ffffff, #f0f0f0); +} + +/* line 51, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-nlg .x-grid-header-ct, +.x-nlg .x-column-header { + background-image: url(images/grid/column-header-bg.gif); +} + +/* line 62, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-nlg .x-column-header-over, +.x-nlg .x-column-header-sort-ASC, +.x-nlg .x-column-header-sort-DESC { + background-image: url(images/grid/column-header-over-bg.gif); +} + +/* line 70, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-open { + background-color: transparent; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-open .x-column-header-trigger { + background-color: transparent; +} + +/* line 78, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-trigger { + width: 14px; + cursor: pointer; + background-color: transparent; + background-position: 0 center; +} + +/* line 96, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-align-right .x-column-header-text { + margin-right: 9px; +} + +/* line 110, ../../../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: 12px; + background-position: right center; +} + +/* line 127, ../../../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.gif); +} + +/* line 130, ../../../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.gif); +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-column-header:after { + display: none; + content: "x-slicer:bg:url(images/grid/column-header-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-column-header-over:after { + display: none; + content: "x-slicer:bg:url(images/grid/column-header-over-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-grid-cell-inner-action-col { + padding: 2px 2px 2px 2px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-action-col { + padding-top: 1px; + padding-bottom: 1px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-action-col-cell .x-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-action-col-icon { + height: 16px; + width: 16px; + cursor: pointer; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-cell-inner-checkcolumn { + padding: 4px 6px 3px 6px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-checkcolumn { + padding-top: 3px; + padding-bottom: 2px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-checkcolumn { + width: 13px; + height: 13px; + background: url(images/form/checkbox.gif) 0 0 no-repeat; +} +/* line 17, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-item-disabled .x-grid-checkcolumn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-checkcolumn-checked { + background-position: 0 -13px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/RowNumberer.scss */ +.x-grid-cell-inner-row-numberer { + padding: 3px 5px 4px 3px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd { + border-width: 0 0 2px 0; + border-style: solid; + border-color: #bcb1b0; + padding: 10px 4px 4px 4px; + background: white; + cursor: pointer; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-not-collapsible { + cursor: default; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-collapsible .x-grid-group-title { + background-repeat: no-repeat; + background-position: left center; + background-image: url(images/grid/group-collapse.gif); + padding: 0 0 0 14px; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-title { + color: #616161; + font: bold 11px/13px tahoma, arial, verdana, sans-serif; +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-collapsed .x-grid-group-title { + background-image: url(images/grid/group-expand.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-collapsed .x-grid-group-title { + background-image: url(images/grid/group-expand.gif); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-group-by-icon { + background-image: url(images/grid/group-by.gif); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-show-groups-icon { + background-image: url(images/grid/group-by.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ +.x-grid-rowbody { + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + padding: 5px 6px 5px 6px; +} +/* line 6, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-rowbody { + padding-top: 6px; + padding-bottom: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowWrap.scss */ +.x-grid-rowwrap { + border-color: #ededed #c6c6c6 #ededed #c6c6c6; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-summary-bottom { + border-bottom-color: #c5c5c5; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-docked-summary { + border-width: 1px; + border-color: #d0d0d0; + border-style: solid; +} +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-docked-summary .x-grid-table { + width: 100%; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-grid-row-summary .x-grid-cell, +.x-grid-row-summary .x-grid-rowwrap, +.x-grid-row-summary .x-grid-cell-rowbody { + border-color: #ededed #c6c6c6 #ededed #c6c6c6; + background-color: transparent !important; + border-top-width: 0; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-grid-with-row-lines .x-grid-table-summary { + border: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-grid-locked .x-grid-inner-locked { + border-width: 0 1px 0 0; + border-style: solid; +} + +/* line 17, ../../../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 39, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-hmenu-lock .x-menu-item-icon { + background-image: url(images/grid/hmenu-lock.gif); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-hmenu-unlock .x-menu-item-icon { + background-image: url(images/grid/hmenu-unlock.gif); +} + +/* line 4, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-text { + font: normal 11px/15px tahoma, arial, verdana, sans-serif; + padding: 1px 5px 2px 5px; + height: 20px; +} +/* line 15, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-content-box .x-grid-editor .x-form-text { + height: 15px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-gecko .x-grid-editor .x-form-text { + padding-left: 4px; + padding-right: 4px; +} +/* line 31, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-trigger { + height: 20px; +} +/* line 39, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-spinner-up, .x-grid-editor .x-form-spinner-down { + height: 10px; +} +/* line 47, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb { + margin-top: 4px; +} +/* line 51, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb-wrap { + height: 20px; +} +/* line 58, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field-body { + height: 20px; +} +/* line 62, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field { + font: normal 11px/15px tahoma, arial, verdana, sans-serif; + padding: 2px 6px 3px 6px; + text-overflow: ellipsis; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-action-col-field { + padding: 2px 2px 2px 2px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x-tree-cell-editor .x-form-text { + padding-left: 2px; + padding-right: 2px; +} +/* line 8, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x-gecko .x-tree-cell-editor .x-form-text { + padding-left: 1px; + padding-right: 1px; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-field { + margin: 0 1px 0 1px; +} +/* line 7, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-display-field { + padding: 2px 5px 3px 5px; +} +/* line 16, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-action-col-field { + padding: 2px 1px 2px 1px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-text { + padding: 1px 4px 2px 4px; +} +/* line 30, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-gecko .x-grid-row-editor .x-form-text { + padding-left: 3px; + padding-right: 3px; +} +/* line 38, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-panel-body { + border-top: 1px solid #d0d0d0 !important; + border-bottom: 1px solid #d0d0d0 !important; + padding: 4px 0 4px 0; + background-color: #ebe6e6; +} +/* line 48, ../../../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 137, ../../../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: 4px 4px 4px 4px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-color: #ebe6e6; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mc { + background-color: #ebe6e6; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-grid-row-editor-buttons-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-grid-row-editor-buttons-default-bottom-frameInfo { + font-family: th-0-0-5-5-0-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tr, +.x-grid-row-editor-buttons-default-bottom-br, +.x-grid-row-editor-buttons-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl, +.x-grid-row-editor-buttons-default-bottom-bl, +.x-grid-row-editor-buttons-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl, +.x-grid-row-editor-buttons-default-bottom-bl, +.x-grid-row-editor-buttons-default-bottom-tr, +.x-grid-row-editor-buttons-default-bottom-br, +.x-grid-row-editor-buttons-default-bottom-tc, +.x-grid-row-editor-buttons-default-bottom-bc, +.x-grid-row-editor-buttons-default-bottom-ml, +.x-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-ml, +.x-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mc { + padding: 4px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-tl, +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-row-editor-buttons-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 4px 4px 4px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #ebe6e6; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mc { + background-color: #ebe6e6; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-grid-row-editor-buttons-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-grid-row-editor-buttons-default-top-frameInfo { + font-family: th-5-5-0-0-1-1-0-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tr, +.x-grid-row-editor-buttons-default-top-br, +.x-grid-row-editor-buttons-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl, +.x-grid-row-editor-buttons-default-top-bl, +.x-grid-row-editor-buttons-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl, +.x-grid-row-editor-buttons-default-top-bl, +.x-grid-row-editor-buttons-default-top-tr, +.x-grid-row-editor-buttons-default-top-br, +.x-grid-row-editor-buttons-default-top-tc, +.x-grid-row-editor-buttons-default-top-bc, +.x-grid-row-editor-buttons-default-top-ml, +.x-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-ml, +.x-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mc { + padding: 0px 0px 4px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-tl, +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-row-editor-buttons-default-top:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 97, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons-default-bottom { + top: 29px; +} + +/* line 103, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons-default-top { + bottom: 29px; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons { + border-color: #d0d0d0; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-row-editor-update-button { + margin-right: 2px; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-row-editor-cancel-button { + margin-left: 2px; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-errors .x-tip-body { + padding: 5px; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-errors-item { + list-style: disc; + margin-left: 15px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-cell-inner-row-expander { + padding: 6px 7px 5px 7px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-row-expander { + padding-top: 5px; + padding-bottom: 4px; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-expander { + width: 9px; + height: 9px; + cursor: pointer; + background-image: url(images/grid/group-collapse.gif); +} +/* line 20, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-collapsed .x-grid-row-expander { + background-image: url(images/grid/group-expand.gif); +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/property/Grid.scss */ +.x-grid-cell-inner-property-name { + background-image: url(images/grid/property-cell-bg.gif); + background-repeat: no-repeat; + background-position: -16px 2px; + padding-left: 12px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-layout-ct { + background-color: white; + padding: 0; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-panel-header-text-container { + color: black; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + text-transform: none; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item { + margin: 0; +} +/* line 16, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd { + background: #e5e5e5; + border-top-color: #ececec; + padding: 4px 5px 5px 5px; +} +/* line 22, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd-sibling-expanded { + border-top-color: #d0d0d0; +} +/* line 26, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd-last-collapsed { + border-bottom-color: #e5e5e5; +} +/* line 30, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-body { + border-width: 0; +} + +/* line 37, ../../../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 -255px; +} +/* line 42, ../../../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 -240px; +} +/* line 50, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-over .x-tool-collapse-top, +.x-accordion-hd .x-tool-over .x-tool-collapse-bottom { + background-position: -15px -255px; +} +/* line 55, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-over .x-tool-expand-top, +.x-accordion-hd .x-tool-over .x-tool-expand-bottom { + background-position: -15px -240px; +} +/* line 61, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-img { + background-color: #e5e5e5; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-collapse-el { + cursor: pointer; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-left, +.x-layout-split-right { + top: 50%; + margin-top: -18px; + width: 5px; + height: 35px; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-top, +.x-layout-split-bottom { + left: 50%; + width: 35px; + height: 5px; + margin-left: -18px; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-left { + background-image: url(images/util/splitter/mini-left.gif); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-right { + background-image: url(images/util/splitter/mini-right.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-top { + background-image: url(images/util/splitter/mini-top.gif); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-bottom { + background-image: url(images/util/splitter/mini-bottom.gif); +} + +/* line 50, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-left { + background-image: url(images/util/splitter/mini-right.gif); +} +/* line 54, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-right { + background-image: url(images/util/splitter/mini-left.gif); +} +/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-top { + background-image: url(images/util/splitter/mini-bottom.gif); +} +/* line 74, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-bottom { + background-image: url(images/util/splitter/mini-top.gif); +} + +/* line 79, ../../../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 83, ../../../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 1, ../../../ext-theme-neutral/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + background-color: #e0e0e0; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-body { + background: #f0f0f0; + padding: 2px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-icon-separator { + left: 24px; + border-left: solid 1px #e0e0e0; + background-color: white; + width: 2px; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item { + padding: 1px; + cursor: pointer; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-indent { + margin-left: 30px; +} + +/* line 57, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-active { + background-image: none; + background-color: #e6e6e6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eeeeee), color-stop(100%, #dcdcdc)); + background-image: -webkit-linear-gradient(top, #eeeeee, #dcdcdc); + background-image: -moz-linear-gradient(top, #eeeeee, #dcdcdc); + background-image: -o-linear-gradient(top, #eeeeee, #dcdcdc); + background-image: linear-gradient(top, #eeeeee, #dcdcdc); + border-color: #9d9d9d; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + border-width: 1px; + border-style: solid; + padding: 0; +} +/* line 75, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-nlg .x-menu-item-active { + background: #e6e6e6 repeat-x left top; + background-image: url(images/menu/menu-item-active-bg.gif); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-link { + line-height: 22px; + padding: 0 0 0 30px; + display: inline-block; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-right-check-item-text { + padding-right: 22px; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-icon { + width: 16px; + height: 16px; + top: 4px; + left: 3px; + background-position: center center; +} + +/* line 116, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-glyph { + font-size: 16px; + line-height: 16px; + color: #222222; + opacity: 0.5; +} +/* line 132, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie8m .x-menu-item-glyph { + color: #898989; +} + +/* line 142, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-gecko .x-menu-item-active .x-menu-item-icon, +.x-quirks .x-menu-item-active .x-menu-item-icon, +.x-ie9m .x-menu-item-active .x-menu-item-icon { + top: 3px; + left: 2px; +} + +/* line 168, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-icon-right { + width: 16px; + height: 16px; + top: 3px; + right: 3px; + background-position: center center; +} + +/* line 183, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-text { + font-size: 11px; + color: #222222; + cursor: pointer; + margin-right: 16px; +} + +/* line 201, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-checked .x-menu-item-icon, .x-menu-item-checked .x-menu-item-icon-right { + background-image: url(images/menu/checked.gif); +} +/* line 204, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-checked .x-menu-group-icon { + background-image: url(images/menu/group-checked.gif); +} + +/* line 210, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-unchecked .x-menu-item-icon, .x-menu-item-unchecked .x-menu-item-icon-right { + background-image: url(images/menu/unchecked.gif); +} +/* line 213, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-unchecked .x-menu-group-icon { + background-image: none; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-separator { + height: 2px; + border-top: solid 1px #e0e0e0; + background-color: white; + margin: 2px 0; + padding: 0; +} + +/* line 226, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-arrow { + width: 12px; + height: 9px; + top: 7px; + right: 0; + background-image: url(images/menu/menu-parent.gif); +} + +/* line 239, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-gecko .x-menu-item-active .x-menu-item-arrow, +.x-quirks .x-menu-item-active .x-menu-item-arrow, +.x-ie9m .x-menu-item-active .x-menu-item-arrow { + top: 6px; + right: -1px; +} + +/* line 264, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/* line 270, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-content-box .x-menu-icon-separator { + width: 1px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-content-box .x-menu-item-separator { + height: 1px; +} + +/* line 281, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie .x-menu-item-disabled .x-menu-item-icon { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 285, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie .x-menu-item-disabled .x-menu-item-text { + background-color: transparent; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-date-item { + border-color: #99BBE8; +} + +/* line 300, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item .x-form-item-label { + font-size: 11px; + color: #222222; +} + +/* line 306, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top { + height: 8px; + background-image: url(images/menu/scroll-top.gif); +} + +/* line 310, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-bottom { + height: 8px; + background-image: url(images/menu/scroll-bottom.gif); +} + +/* line 316, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top, .x-menu-scroll-bottom { + background-color: #f0f0f0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-menu-item-link:after { + display: none; + content: "x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool { + cursor: pointer; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-img { + overflow: hidden; + width: 15px; + height: 15px; + background-image: url(images/tools/tool-sprites.gif); + margin: 0; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-placeholder { + visibility: hidden; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-close { + background-position: 0 0; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-minimize { + background-position: 0 -15px; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-maximize { + background-position: 0 -30px; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-restore { + background-position: 0 -45px; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-toggle { + background-position: 0 -60px; +} +/* line 53, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-panel-collapsed .x-tool-toggle { + background-position: 0 -75px; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-gear { + background-position: 0 -90px; +} + +/* line 62, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-prev { + background-position: 0 -105px; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-next { + background-position: 0 -120px; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-pin { + background-position: 0 -135px; +} + +/* line 74, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-unpin { + background-position: 0 -150px; +} + +/* line 78, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-right { + background-position: 0 -165px; +} + +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-left { + background-position: 0 -180px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-down { + background-position: 0 -195px; +} + +/* line 90, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-up { + background-position: 0 -210px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-refresh { + background-position: 0 -225px; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-plus { + background-position: 0 -240px; +} + +/* line 102, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-minus { + background-position: 0 -255px; +} + +/* line 106, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-search { + background-position: 0 -270px; +} + +/* line 110, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-save { + background-position: 0 -285px; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-help { + background-position: 0 -300px; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-print { + background-position: 0 -315px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand { + background-position: 0 -330px; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-collapse { + background-position: 0 -345px; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-resize { + background-position: 0 -360px; +} + +/* line 134, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-move { + background-position: 0 -375px; +} + +/* line 139, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-bottom, +.x-tool-collapse-bottom { + background-position: 0 -195px; +} + +/* line 144, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-top, +.x-tool-collapse-top { + background-position: 0 -210px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-left, +.x-tool-collapse-left { + background-position: 0 -180px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-right, +.x-tool-collapse-right { + background-position: 0 -165px; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-close { + background-position: -15px 0; +} +/* line 178, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-minimize { + background-position: -15px -15px; +} +/* line 182, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-maximize { + background-position: -15px -30px; +} +/* line 186, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-restore { + background-position: -15px -45px; +} +/* line 190, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-toggle { + background-position: -15px -60px; +} +/* line 195, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-panel-collapsed .x-tool-over .x-tool-toggle { + background-position: -15px -75px; +} +/* line 200, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-gear { + background-position: -15px -90px; +} +/* line 204, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-prev { + background-position: -15px -105px; +} +/* line 208, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-next { + background-position: -15px -120px; +} +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-pin { + background-position: -15px -135px; +} +/* line 216, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-unpin { + background-position: -15px -150px; +} +/* line 220, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-right { + background-position: -15px -165px; +} +/* line 224, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-left { + background-position: -15px -180px; +} +/* line 228, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-down { + background-position: -15px -195px; +} +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-up { + background-position: -15px -210px; +} +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-refresh { + background-position: -15px -225px; +} +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-plus { + background-position: -15px -240px; +} +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-minus { + background-position: -15px -255px; +} +/* line 248, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-search { + background-position: -15px -270px; +} +/* line 252, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-save { + background-position: -15px -285px; +} +/* line 256, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-help { + background-position: -15px -300px; +} +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-print { + background-position: -15px -315px; +} +/* line 264, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand { + background-position: -15px -330px; +} +/* line 268, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-collapse { + background-position: -15px -345px; +} +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-resize { + background-position: -15px -360px; +} +/* line 276, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-move { + background-position: -15px -375px; +} +/* line 281, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-bottom, +.x-tool-over .x-tool-collapse-bottom { + background-position: -15px -195px; +} +/* line 286, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-top, +.x-tool-over .x-tool-collapse-top { + background-position: -15px -210px; +} +/* line 291, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-left, +.x-tool-over .x-tool-collapse-left { + background-position: -15px -180px; +} +/* line 296, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-right, +.x-tool-over .x-tool-collapse-right { + background-position: -15px -165px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle { + position: absolute; + z-index: 100; + font-size: 1px; + line-height: 6px; + overflow: hidden; + zoom: 1; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + background-color: #fff; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-collapsed .x-resizable-handle { + display: none; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-north { + cursor: n-resize; +} +/* line 26, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south { + cursor: s-resize; +} +/* line 29, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east { + cursor: e-resize; +} +/* line 32, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-west { + cursor: w-resize; +} +/* line 35, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast { + cursor: se-resize; +} +/* line 38, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest { + cursor: nw-resize; +} +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast { + cursor: ne-resize; +} +/* line 44, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest { + cursor: sw-resize; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-east { + width: 6px; + height: 100%; + right: 0; + top: 0; +} + +/* line 56, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-south { + width: 100%; + height: 6px; + left: 0; + bottom: 0; +} + +/* line 63, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-west { + width: 6px; + height: 100%; + left: 0; + top: 0; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-north { + width: 100%; + height: 6px; + left: 0; + top: 0; +} + +/* line 77, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-southeast { + width: 6px; + height: 6px; + right: 0; + bottom: 0; + z-index: 101; +} + +/* line 85, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-northwest { + width: 6px; + height: 6px; + left: 0; + top: 0; + z-index: 101; +} + +/* line 93, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-northeast { + width: 6px; + height: 6px; + right: 0; + top: 0; + z-index: 101; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-southwest { + width: 6px; + height: 6px; + left: 0; + bottom: 0; + z-index: 101; +} + +/*IE rounding error*/ +/* line 111, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-ie .x-resizable-handle-east { + margin-right: -1px; + /*IE rounding error*/ +} +/* line 115, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-ie .x-resizable-handle-south { + margin-bottom: -1px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-pinned .x-resizable-handle, +.x-resizable-over .x-resizable-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 127, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-window .x-window-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-window-collapsed .x-window-handle { + display: none; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-proxy { + border: 1px dashed #3b5a82; + position: absolute; + overflow: hidden; + z-index: 50000; +} + +/* line 148, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east, +.x-resizable-over .x-resizable-handle-west, +.x-resizable-pinned .x-resizable-handle-east, +.x-resizable-pinned .x-resizable-handle-west { + background-image: url(images/sizer/e-handle.gif); +} +/* line 154, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south, +.x-resizable-over .x-resizable-handle-north, +.x-resizable-pinned .x-resizable-handle-south, +.x-resizable-pinned .x-resizable-handle-north { + background-image: url(images/sizer/s-handle.gif); +} +/* line 159, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast, +.x-resizable-pinned .x-resizable-handle-southeast { + background-position: top left; + background-image: url(images/sizer/se-handle.gif); +} +/* line 164, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest, +.x-resizable-pinned .x-resizable-handle-northwest { + background-position: bottom right; + background-image: url(images/sizer/nw-handle.gif); +} +/* line 169, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast, +.x-resizable-pinned .x-resizable-handle-northeast { + background-position: bottom left; + background-image: url(images/sizer/ne-handle.gif); +} +/* line 174, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest, +.x-resizable-pinned .x-resizable-handle-southwest { + background-position: top right; + background-image: url(images/sizer/sw-handle.gif); +} + +/* Horizontal styles */ +/* line 2, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz { + padding-left: 7px; + background: no-repeat 0 -15px; +} +/* line 6, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-end { + padding-right: 7px; + background: no-repeat right -30px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-inner { + height: 15px; +} + +/* line 20, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-ie6 .x-form-item .x-slider-horz, +.x-ie7 .x-form-item .x-slider-horz, +.x-quirks .x-ie .x-form-item .x-slider-horz { + margin-top: 4px; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb { + width: 14px; + height: 15px; + margin-left: -7px; + background-image: url(images/slider/slider-thumb.png); +} + +/* line 33, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb-over { + background-position: -14px -15px; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb-drag { + background-position: -28px -30px; +} + +/* Vertical styles */ +/* line 60, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert { + padding-top: 7px; + background: no-repeat -30px 0; +} + +/* line 65, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-end { + padding-bottom: 7px; + background: no-repeat -15px bottom; + width: 15px; +} + +/* line 71, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-inner { + width: 15px; +} + +/* line 75, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb { + width: 15px; + height: 14px; + margin-bottom: -7px; + background-image: url(images/slider/slider-v-thumb.png); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb-over { + background-position: -15px -14px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb-drag { + background-position: -30px -28px; +} + +/* line 92, ../../../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 98, ../../../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); +} + +/** + * 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-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-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} [$ui-border-width=$tab-border-width] + * The border-width of 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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 + * + * @param {color} [$ui-border-bottom-color=$tabbar-strip-border-color] + * The bottom border color of inactive tabs. + * + * @member Ext.tab.Tab + */ +/** + * Creates a visual theme for a Tab Bar + * + * @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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 {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 {number} [$ui-tab-height] + * The height of tabs that will be used in this tabbar UI. The tabbar body is given + * a fixed height to leave room for the tabs, and so that the tabbar does not collapse + * when it does not contain any tabs. + * + * @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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-tab-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 137, ../../../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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #eaeaea; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dcdcdc), color-stop(100%, #eaeaea)); + background-image: -webkit-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: -moz-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: -o-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: linear-gradient(top, #dcdcdc, #eaeaea); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mc { + background-image: url(images/tab/tab-default-top-fbg.gif); + background-position: 0 top; + background-color: #eaeaea; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-tab-default-top { + background-image: url(images/tab/tab-default-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-top-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tr, +.x-tab-default-top-br, +.x-tab-default-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl, +.x-tab-default-top-bl, +.x-tab-default-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl, +.x-tab-default-top-bl, +.x-tab-default-top-tr, +.x-tab-default-top-br, +.x-tab-default-top-tc, +.x-tab-default-top-bc, +.x-tab-default-top-ml, +.x-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-ml, +.x-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-top-tl, +.x-strict .x-ie7 .x-tab-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 3px 9px 3px 9px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-image: none; + background-color: #eaeaea; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #dcdcdc), color-stop(100%, #eaeaea)); + background-image: -webkit-linear-gradient(bottom, #dcdcdc, #eaeaea); + background-image: -moz-linear-gradient(bottom, #dcdcdc, #eaeaea); + background-image: -o-linear-gradient(bottom, #dcdcdc, #eaeaea); + background-image: linear-gradient(bottom, #dcdcdc, #eaeaea); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mc { + background-image: url(images/tab/tab-default-bottom-fbg.gif); + background-position: 0 top; + background-color: #eaeaea; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-tab-default-bottom { + background-image: url(images/tab/tab-default-bottom-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-bottom-frameInfo { + font-family: th-0-0-4-4-0-1-1-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tr, +.x-tab-default-bottom-br, +.x-tab-default-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl, +.x-tab-default-bottom-bl, +.x-tab-default-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl, +.x-tab-default-bottom-bl, +.x-tab-default-bottom-tr, +.x-tab-default-bottom-br, +.x-tab-default-bottom-tc, +.x-tab-default-bottom-bc, +.x-tab-default-bottom-ml, +.x-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-ml, +.x-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mc { + padding: 3px 6px 0px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-bottom-tl, +.x-strict .x-ie7 .x-tab-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-bottom-fbg.gif), bg:url(images/tab/tab-default-bottom-bg.gif), corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #eaeaea; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dcdcdc), color-stop(100%, #eaeaea)); + background-image: -webkit-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: -moz-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: -o-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: linear-gradient(top, #dcdcdc, #eaeaea); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mc { + background-image: url(images/tab/tab-default-top-fbg.gif); + background-position: 0 top; + background-color: #eaeaea; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-tab-default-left { + background-image: url(images/tab/tab-default-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-left-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tr, +.x-tab-default-left-br, +.x-tab-default-left-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl, +.x-tab-default-left-bl, +.x-tab-default-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl, +.x-tab-default-left-bl, +.x-tab-default-left-tr, +.x-tab-default-left-br, +.x-tab-default-left-tc, +.x-tab-default-left-bc, +.x-tab-default-left-ml, +.x-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-ml, +.x-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-left-tl, +.x-strict .x-ie7 .x-tab-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-left:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-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: 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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #eaeaea; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dcdcdc), color-stop(100%, #eaeaea)); + background-image: -webkit-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: -moz-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: -o-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: linear-gradient(top, #dcdcdc, #eaeaea); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mc { + background-image: url(images/tab/tab-default-top-fbg.gif); + background-position: 0 top; + background-color: #eaeaea; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-tab-default-right { + background-image: url(images/tab/tab-default-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-right-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tr, +.x-tab-default-right-br, +.x-tab-default-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl, +.x-tab-default-right-bl, +.x-tab-default-right-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl, +.x-tab-default-right-bl, +.x-tab-default-right-tr, +.x-tab-default-right-br, +.x-tab-default-right-tc, +.x-tab-default-right-bc, +.x-tab-default-right-ml, +.x-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-ml, +.x-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-right-tl, +.x-strict .x-ie7 .x-tab-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-right:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 307, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default { + border-color: #b5b5b5; + margin: 0 0 0 2px; + cursor: pointer; +} +/* line 312, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-inner { + font-size: 11px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + color: #6f6f6f; + line-height: 13px; +} +/* line 322, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-icon-el { + width: 16px; + height: 16px; + line-height: 16px; + background-position: center center; +} +/* line 329, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-glyph { + font-size: 16px; + color: #6f6f6f; + opacity: 0.5; +} +/* line 343, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default .x-tab-glyph { + color: #acacac; +} +/* line 351, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default { + padding-left: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-button { + padding-left: 9px; +} +/* line 358, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-icon-el { + left: 9px; +} + +/* line 366, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-icon .x-tab-inner { + width: 16px; +} + +/* line 384, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-left { + margin: 0 2px 0 0; +} + +/* line 396, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top, +.x-tab-default-left, +.x-tab-default-right { + border-bottom: 1px solid #d0d0d0; + background-image: none; + background-color: #eaeaea; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dcdcdc), color-stop(100%, #eaeaea)); + background-image: -webkit-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: -moz-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: -o-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: linear-gradient(top, #dcdcdc, #eaeaea); + -webkit-box-shadow: 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 -1px 0 0px 0 inset, white 1px 0 0px 0 inset; + box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; +} +/* line 403, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-top, .x-nlg +.x-tab-default-left, .x-nlg +.x-tab-default-right { + background-image: url(images/tab/tab-default-top-bg.gif); +} + +/* line 417, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom { + border-top: 1px solid #d0d0d0; + background-image: none; + background-color: #eaeaea; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #dcdcdc), color-stop(100%, #eaeaea)); + background-image: -webkit-linear-gradient(bottom, #dcdcdc, #eaeaea); + background-image: -moz-linear-gradient(bottom, #dcdcdc, #eaeaea); + background-image: -o-linear-gradient(bottom, #dcdcdc, #eaeaea); + background-image: linear-gradient(bottom, #dcdcdc, #eaeaea); + -webkit-box-shadow: 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 -1px 0 0px 0 inset, white 1px 0 0px 0 inset; + box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; +} +/* line 424, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-bottom { + background-image: url(images/tab/tab-default-bottom-bg.gif); +} + +/* line 438, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-tab-default-left { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} + +/* line 454, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-tab-default-right { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +} + +/* line 471, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-icon-text-left .x-tab-inner { + padding-left: 20px; +} + +/* line 485, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-over { + background-color: #f2eeee; +} +/* line 509, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-over .x-tab-glyph { + color: #6f6f6f; +} +/* line 516, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-over .x-tab-glyph { + color: #b0aeae; +} + +/* line 525, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over, +.x-tab-default-left-over, +.x-tab-default-right-over { + background-image: none; + background-color: #f2eeee; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f0f0f0)); + background-image: -webkit-linear-gradient(top, #ffffff, #f0f0f0); + background-image: -moz-linear-gradient(top, #ffffff, #f0f0f0); + background-image: -o-linear-gradient(top, #ffffff, #f0f0f0); + background-image: linear-gradient(top, #ffffff, #f0f0f0); +} +/* line 529, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-top-over, .x-nlg +.x-tab-default-left-over, .x-nlg +.x-tab-default-right-over { + background-image: url(images/tab/tab-default-top-over-bg.gif); +} + +/* line 534, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over { + background-image: none; + background-color: #f2eeee; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff), color-stop(100%, #f0f0f0)); + background-image: -webkit-linear-gradient(bottom, #ffffff, #f0f0f0); + background-image: -moz-linear-gradient(bottom, #ffffff, #f0f0f0); + background-image: -o-linear-gradient(bottom, #ffffff, #f0f0f0); + background-image: linear-gradient(bottom, #ffffff, #f0f0f0); +} +/* line 538, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-bottom-over { + background-image: url(images/tab/tab-default-bottom-over-bg.gif); +} + +/* line 545, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active { + background-color: #eaeaea; +} +/* line 551, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active .x-tab-inner { + color: #333333; +} +/* line 566, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active .x-tab-glyph { + color: #333333; +} +/* line 573, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-active .x-tab-glyph { + color: #8e8e8e; +} + +/* line 581, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active, +.x-tab-default-left-active, +.x-tab-default-right-active { + border-bottom: 1px solid #eaeaea; + background-image: none; + background-color: #eaeaea; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eaeaea)); + background-image: -webkit-linear-gradient(top, #ffffff, #eaeaea); + background-image: -moz-linear-gradient(top, #ffffff, #eaeaea); + background-image: -o-linear-gradient(top, #ffffff, #eaeaea); + background-image: linear-gradient(top, #ffffff, #eaeaea); +} +/* line 587, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-top-active, .x-nlg +.x-tab-default-left-active, .x-nlg +.x-tab-default-right-active { + background-image: url(images/tab/tab-default-top-active-bg.gif); +} + +/* line 594, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active { + border-top: 1px solid #eaeaea; + background-image: none; + background-color: #eaeaea; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff), color-stop(100%, #eaeaea)); + background-image: -webkit-linear-gradient(bottom, #ffffff, #eaeaea); + background-image: -moz-linear-gradient(bottom, #ffffff, #eaeaea); + background-image: -o-linear-gradient(bottom, #ffffff, #eaeaea); + background-image: linear-gradient(bottom, #ffffff, #eaeaea); +} +/* line 600, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-bottom-active { + background-image: url(images/tab/tab-default-bottom-active-bg.gif); +} + +/* line 607, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled { + border-color: #dadada; + cursor: default; +} +/* line 620, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-inner { + color: #b7b7b7; +} +/* line 639, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 644, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-glyph { + color: #b7b7b7; + opacity: 0.3; + filter: none; +} +/* line 658, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-disabled .x-tab-glyph { + color: #dddddd; +} + +/* line 667, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled, +.x-tab-default-left-disabled, +.x-tab-default-right-disabled { + border-color: #dadada #dadada #d0d0d0; +} + +/* line 671, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled { + border-color: #d0d0d0 #dadada #dadada #dadada; +} + +/* line 678, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled, +.x-tab-default-left-disabled, +.x-tab-default-right-disabled { + background-image: none; + background-color: #eeeeee; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eeeeee), color-stop(100%, #f4f4f4)); + background-image: -webkit-linear-gradient(top, #eeeeee, #f4f4f4); + background-image: -moz-linear-gradient(top, #eeeeee, #f4f4f4); + background-image: -o-linear-gradient(top, #eeeeee, #f4f4f4); + background-image: linear-gradient(top, #eeeeee, #f4f4f4); +} +/* line 682, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-top-disabled, .x-nlg +.x-tab-default-left-disabled, .x-nlg +.x-tab-default-right-disabled { + background-image: url(images/tab/tab-default-top-disabled-bg.gif); +} + +/* line 687, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled { + background-image: none; + background-color: #eeeeee; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #eeeeee), color-stop(100%, #f4f4f4)); + background-image: -webkit-linear-gradient(bottom, #eeeeee, #f4f4f4); + background-image: -moz-linear-gradient(bottom, #eeeeee, #f4f4f4); + background-image: -o-linear-gradient(bottom, #eeeeee, #f4f4f4); + background-image: linear-gradient(bottom, #eeeeee, #f4f4f4); +} +/* line 691, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-bottom-disabled { + background-image: url(images/tab/tab-default-bottom-disabled-bg.gif); +} + +/* line 699, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default { + background-image: none; +} + +/* line 710, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-tl, +.x-tab-default-top-over .x-frame-bl, +.x-tab-default-top-over .x-frame-tr, +.x-tab-default-top-over .x-frame-br, +.x-tab-default-top-over .x-frame-tc, +.x-tab-default-top-over .x-frame-bc, +.x-tab-default-left-over .x-frame-tl, +.x-tab-default-left-over .x-frame-bl, +.x-tab-default-left-over .x-frame-tr, +.x-tab-default-left-over .x-frame-br, +.x-tab-default-left-over .x-frame-tc, +.x-tab-default-left-over .x-frame-bc, +.x-tab-default-right-over .x-frame-tl, +.x-tab-default-right-over .x-frame-bl, +.x-tab-default-right-over .x-frame-tr, +.x-tab-default-right-over .x-frame-br, +.x-tab-default-right-over .x-frame-tc, +.x-tab-default-right-over .x-frame-bc { + background-image: url(images/tab/tab-default-top-over-corners.gif); +} +/* line 714, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-ml, +.x-tab-default-top-over .x-frame-mr, +.x-tab-default-left-over .x-frame-ml, +.x-tab-default-left-over .x-frame-mr, +.x-tab-default-right-over .x-frame-ml, +.x-tab-default-right-over .x-frame-mr { + background-image: url(images/tab/tab-default-top-over-sides.gif); +} +/* line 717, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-mc, +.x-tab-default-left-over .x-frame-mc, +.x-tab-default-right-over .x-frame-mc { + background-color: #f2eeee; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-top-over-fbg.gif); +} + +/* line 732, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-tl, +.x-tab-default-bottom-over .x-frame-bl, +.x-tab-default-bottom-over .x-frame-tr, +.x-tab-default-bottom-over .x-frame-br, +.x-tab-default-bottom-over .x-frame-tc, +.x-tab-default-bottom-over .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-over-corners.gif); +} +/* line 736, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-ml, +.x-tab-default-bottom-over .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-over-sides.gif); +} +/* line 739, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-mc { + background-color: #f2eeee; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-bottom-over-fbg.gif); +} + +/* line 756, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-tl, +.x-tab-default-top-active .x-frame-bl, +.x-tab-default-top-active .x-frame-tr, +.x-tab-default-top-active .x-frame-br, +.x-tab-default-top-active .x-frame-tc, +.x-tab-default-top-active .x-frame-bc, +.x-tab-default-left-active .x-frame-tl, +.x-tab-default-left-active .x-frame-bl, +.x-tab-default-left-active .x-frame-tr, +.x-tab-default-left-active .x-frame-br, +.x-tab-default-left-active .x-frame-tc, +.x-tab-default-left-active .x-frame-bc, +.x-tab-default-right-active .x-frame-tl, +.x-tab-default-right-active .x-frame-bl, +.x-tab-default-right-active .x-frame-tr, +.x-tab-default-right-active .x-frame-br, +.x-tab-default-right-active .x-frame-tc, +.x-tab-default-right-active .x-frame-bc { + background-image: url(images/tab/tab-default-top-active-corners.gif); +} +/* line 760, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-ml, +.x-tab-default-top-active .x-frame-mr, +.x-tab-default-left-active .x-frame-ml, +.x-tab-default-left-active .x-frame-mr, +.x-tab-default-right-active .x-frame-ml, +.x-tab-default-right-active .x-frame-mr { + background-image: url(images/tab/tab-default-top-active-sides.gif); +} +/* line 763, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-mc, +.x-tab-default-left-active .x-frame-mc, +.x-tab-default-right-active .x-frame-mc { + background-color: #eaeaea; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-top-active-fbg.gif); +} + +/* line 778, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-tl, +.x-tab-default-bottom-active .x-frame-bl, +.x-tab-default-bottom-active .x-frame-tr, +.x-tab-default-bottom-active .x-frame-br, +.x-tab-default-bottom-active .x-frame-tc, +.x-tab-default-bottom-active .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-active-corners.gif); +} +/* line 782, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-ml, +.x-tab-default-bottom-active .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-active-sides.gif); +} +/* line 785, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-mc { + background-color: #eaeaea; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-bottom-active-fbg.gif); +} + +/* line 802, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-tl, +.x-tab-default-top-disabled .x-frame-bl, +.x-tab-default-top-disabled .x-frame-tr, +.x-tab-default-top-disabled .x-frame-br, +.x-tab-default-top-disabled .x-frame-tc, +.x-tab-default-top-disabled .x-frame-bc, +.x-tab-default-left-disabled .x-frame-tl, +.x-tab-default-left-disabled .x-frame-bl, +.x-tab-default-left-disabled .x-frame-tr, +.x-tab-default-left-disabled .x-frame-br, +.x-tab-default-left-disabled .x-frame-tc, +.x-tab-default-left-disabled .x-frame-bc, +.x-tab-default-right-disabled .x-frame-tl, +.x-tab-default-right-disabled .x-frame-bl, +.x-tab-default-right-disabled .x-frame-tr, +.x-tab-default-right-disabled .x-frame-br, +.x-tab-default-right-disabled .x-frame-tc, +.x-tab-default-right-disabled .x-frame-bc { + background-image: url(images/tab/tab-default-top-disabled-corners.gif); +} +/* line 806, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-ml, +.x-tab-default-top-disabled .x-frame-mr, +.x-tab-default-left-disabled .x-frame-ml, +.x-tab-default-left-disabled .x-frame-mr, +.x-tab-default-right-disabled .x-frame-ml, +.x-tab-default-right-disabled .x-frame-mr { + background-image: url(images/tab/tab-default-top-disabled-sides.gif); +} +/* line 809, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-mc, +.x-tab-default-left-disabled .x-frame-mc, +.x-tab-default-right-disabled .x-frame-mc { + background-color: #eeeeee; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-top-disabled-fbg.gif); +} + +/* line 824, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-tl, +.x-tab-default-bottom-disabled .x-frame-bl, +.x-tab-default-bottom-disabled .x-frame-tr, +.x-tab-default-bottom-disabled .x-frame-br, +.x-tab-default-bottom-disabled .x-frame-tc, +.x-tab-default-bottom-disabled .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-disabled-corners.gif); +} +/* line 828, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-ml, +.x-tab-default-bottom-disabled .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-disabled-sides.gif); +} +/* line 831, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-mc { + background-color: #eeeeee; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-bottom-disabled-fbg.gif); +} + +/* line 850, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default-top, +.x-nbr .x-tab-default-left, +.x-nbr .x-tab-default-right { + border-bottom-width: 1px !important; +} +/* line 853, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default-bottom { + border-top-width: 1px !important; +} + +/* line 861, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn { + width: 11px; + height: 11px; + background-image: url(images/tab/tab-default-close.gif); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 870, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn-over { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 880, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn { + top: 2px; + right: 2px; +} + +/* line 924, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-close-btn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 939, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-closable .x-tab-wrap { + padding-right: 14px; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-over:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-top-over-bg.gif), corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif), frame-bg:url(images/tab/tab-default-top-over-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-over:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-bottom-over-bg.gif), corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif), frame-bg:url(images/tab/tab-default-bottom-over-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-active:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-top-active-bg.gif), corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif), frame-bg:url(images/tab/tab-default-top-active-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-active:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-bottom-active-bg.gif), corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif), frame-bg:url(images/tab/tab-default-bottom-active-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-disabled:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-top-disabled-bg.gif), corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif), frame-bg:url(images/tab/tab-default-top-disabled-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-disabled:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-bottom-disabled-bg.gif), corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif), frame-bg:url(images/tab/tab-default-bottom-disabled-fbg.gif)"; +} + +/**/ +/* */ +/* line 94, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default { + border-style: solid; + border-color: #d0d0d0; +} + +/* line 100, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top { + padding: 1px 0 0; + border-width: 1px 1px 0; +} + +/* line 107, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom { + padding: 0 0 1px 0; + border-width: 0 1px 1px 1px; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left { + padding: 0 0 0 1px; + border-width: 1px 0 1px 1px; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right { + padding: 0 1px 0 0; + border-width: 1px 1px 1px 0; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-horizontal { + height: 25px; +} +/* line 153, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-default-horizontal { + height: 23px; +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-vertical { + width: 25px; +} +/* line 165, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-default-vertical { + width: 23px; +} + +/* line 172, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-top { + padding-bottom: 2px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-bottom { + padding-top: 2px; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-left { + padding-right: 2px; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-right { + padding-left: 2px; +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default { + border-style: solid; + border-color: #d0d0d0; + background-color: #eaeaea; +} + +/* line 210, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-strip-default-horizontal { + height: 2px; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-strip-default-vertical { + width: 2px; +} + +/* line 224, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-top { + border-width: 1px 0 0 0; + height: 3px; +} +/* line 227, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-top { + border-width: 1px 1px 0; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-bottom { + border-width: 0 0 1px 0; + height: 3px; +} +/* line 235, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-bottom { + border-width: 0 1px 1px 1px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-left { + border-width: 0 0 0 1px; + width: 3px; +} +/* line 243, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-left { + border-width: 1px 0 1px 1px; +} + +/* line 257, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-right { + border-width: 0 1px 0 0; + width: 3px; +} +/* line 260, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-right { + border-width: 1px 1px 1px 0; +} + +/* line 274, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default { + background-color: #d2d2d2; +} + +/* line 279, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top { + background-image: none; + background-color: #d2d2d2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfdede), color-stop(100%, #d2d2d2)); + background-image: -webkit-linear-gradient(top, #dfdede, #d2d2d2); + background-image: -moz-linear-gradient(top, #dfdede, #d2d2d2); + background-image: -o-linear-gradient(top, #dfdede, #d2d2d2); + background-image: linear-gradient(top, #dfdede, #d2d2d2); +} +/* line 283, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-top { + background: url(images/tab-bar/tab-bar-default-top-bg.gif); +} + +/* line 289, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom { + background-image: none; + background-color: #d2d2d2; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #dfdede), color-stop(100%, #d2d2d2)); + background-image: -webkit-linear-gradient(bottom, #dfdede, #d2d2d2); + background-image: -moz-linear-gradient(bottom, #dfdede, #d2d2d2); + background-image: -o-linear-gradient(bottom, #dfdede, #d2d2d2); + background-image: linear-gradient(bottom, #dfdede, #d2d2d2); +} +/* line 293, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-bottom { + background: url(images/tab-bar/tab-bar-default-bottom-bg.gif) bottom 0; +} + +/* line 299, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left { + background-image: none; + background-color: #d2d2d2; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dfdede), color-stop(100%, #d2d2d2)); + background-image: -webkit-linear-gradient(left, #dfdede, #d2d2d2); + background-image: -moz-linear-gradient(left, #dfdede, #d2d2d2); + background-image: -o-linear-gradient(left, #dfdede, #d2d2d2); + background-image: linear-gradient(left, #dfdede, #d2d2d2); +} +/* line 303, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-left { + background: url(images/tab-bar/tab-bar-default-left-bg.gif); +} + +/* line 309, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right { + background-image: none; + background-color: #d2d2d2; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dfdede), color-stop(100%, #d2d2d2)); + background-image: -webkit-linear-gradient(right, #dfdede, #d2d2d2); + background-image: -moz-linear-gradient(right, #dfdede, #d2d2d2); + background-image: -o-linear-gradient(right, #dfdede, #d2d2d2); + background-image: linear-gradient(right, #dfdede, #d2d2d2); +} +/* line 313, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-right { + background: url(images/tab-bar/tab-bar-default-right-bg.gif) 0 right; +} + +/* line 323, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller { + cursor: pointer; +} +/* line 363, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-left, +.x-tab-bar-default .x-tabbar-scroll-right { + height: 20px; + width: 18px; +} +/* line 369, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-top, +.x-tab-bar-default .x-tabbar-scroll-bottom { + width: 20px; + height: 18px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-box-scroller { + margin-top: 1px; +} +/* line 381, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-box-scroller { + margin-left: 1px; +} + +/* line 456, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-left-top.gif); +} +/* line 459, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-right-top.gif); +} + +/* line 476, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-left-bottom.gif); +} +/* line 479, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-right-bottom.gif); +} + +/* line 496, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-left.gif); +} +/* line 499, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-left.gif); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-right.gif); +} +/* line 519, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-right.gif); +} + +/* line 539, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-left-hover, +.x-tab-bar-default .x-tabbar-scroll-right-hover { + background-position: -18px 0; +} +/* line 544, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-top-hover, +.x-tab-bar-default .x-tabbar-scroll-bottom-hover { + background-position: 0 -18px; +} +/* line 549, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + cursor: default; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-top:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-top-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-bottom:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-bottom-bg.gif), stretch:top"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-left:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-left-bg.gif), stretch:right"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-right:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-right-bg.gif), stretch:left"; +} + +/**/ +/* */ +/* line 998, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain { + border-width: 0; + padding: 0; + height: 23px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox { + border-color: #c5c5c5; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-row-checker, +.x-column-header-checkbox .x-column-header-text { + height: 13px; + width: 13px; + background-image: url(images/form/checkbox.gif); + line-height: 13px; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox .x-column-header-inner { + padding: 5px 5px 4px 5px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-cell-row-checker .x-grid-cell-inner { + padding: 4px 5px 3px 5px; +} +/* line 23, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-row-checker .x-grid-cell-inner { + padding-top: 3px; + padding-bottom: 2px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-hd-checker-on .x-column-header-text, +.x-grid-row-selected .x-grid-row-checker, +.x-grid-row-checked .x-grid-row-checker { + background-position: 0 -13px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-expander { + cursor: pointer; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander { + background-image: url(images/tree/arrows.gif); +} +/* line 11, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander-over .x-tree-expander { + background-position: -32px center; +} +/* line 15, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander { + background-position: -16px center; +} +/* line 19, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander { + background-position: -48px center; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow { + background-image: url(images/tree/elbow.gif); +} +/* line 48, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-end { + background-image: url(images/tree/elbow-end.gif); +} +/* line 52, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-plus { + background-image: url(images/tree/elbow-plus.gif); +} +/* line 56, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-plus.gif); +} +/* line 60, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus { + background-image: url(images/tree/elbow-minus.gif); +} +/* line 64, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-minus.gif); +} +/* line 68, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-line { + background-image: url(images/tree/elbow-line.gif); +} + +/* line 104, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-tree-expander { + background-image: url(images/tree/elbow-plus-nl.gif); +} +/* line 108, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-grid-tree-node-expanded .x-tree-expander { + background-image: url(images/tree/elbow-minus-nl.gif); +} + +/* line 123, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon { + width: 16px; + height: 20px; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-elbow-img { + width: 16px; + height: 20px; + margin-right: 0; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon, +.x-tree-elbow-img, +.x-tree-checkbox { + margin-top: -3px; + margin-bottom: -4px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon-leaf { + background-image: url(images/tree/leaf.gif); +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon-parent { + background-image: url(images/tree/folder.gif); +} + +/* line 171, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-node-expanded .x-tree-icon-parent { + background-image: url(images/tree/folder-open.gif); +} + +/* line 181, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-checkbox { + margin-right: 3px; + top: 4px; + width: 13px; + height: 13px; + background-image: url(images/form/checkbox.gif); +} + +/* line 196, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-checkbox-checked { + background-position: 0 -13px; +} + +/* line 200, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-loading .x-tree-icon { + background-image: url(images/tree/loading.gif); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-cell-inner-treecolumn { + font-size: 1px; + line-height: 0; +} + +/* line 221, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-node-text { + font-size: 11px; + line-height: 13px; + padding-left: 3px; +} + +/* line 235, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-cell-inner-treecolumn { + padding: 3px 6px 4px 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-append .x-dd-drop-icon { + background-image: url(images/tree/drop-append.gif); +} + +/* line 5, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-above .x-dd-drop-icon { + background-image: url(images/tree/drop-above.gif); +} + +/* line 9, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-below .x-dd-drop-icon { + background-image: url(images/tree/drop-below.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-between .x-dd-drop-icon { + background-image: url(images/tree/drop-between.gif); +} + +/* line 17, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-ddindicator { + height: 1px; + border-width: 1px 0px 0px; + border-style: dotted; + border-color: green; +} + +/* including package ext-theme-classic */ +/* line 2, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tl { + background: transparent no-repeat 0 0; + zoom: 1; +} + +/* line 7, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tc { + height: 8px; + background: transparent repeat-x 0 0; + overflow: hidden; +} + +/* line 13, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tr { + background: transparent no-repeat right -8px; +} + +/* line 17, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-ml { + background: transparent repeat-y 0; + padding-left: 4px; + overflow: hidden; + zoom: 1; +} + +/* line 24, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mc { + background: repeat-x 0 -16px; + padding: 4px 10px; +} + +/* line 29, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mc h3 { + margin: 0 0 4px 0; + zoom: 1; +} + +/* line 34, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mr { + background: transparent repeat-y right; + padding-right: 4px; + overflow: hidden; +} + +/* line 40, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-bl { + background: transparent no-repeat 0 -16px; + zoom: 1; +} + +/* line 45, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-bc { + background: transparent repeat-x 0 -8px; + height: 8px; + overflow: hidden; +} + +/* line 51, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-br { + background: transparent no-repeat right -24px; +} + +/* line 55, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tl, .x-box-bl { + padding-left: 8px; + overflow: hidden; +} + +/* line 60, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tr, .x-box-br { + padding-right: 8px; + overflow: hidden; +} + +/* line 65, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tl { + background-image: url(images/box/corners.gif); +} + +/* line 69, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tc { + background-image: url(images/box/tb.gif); +} + +/* line 73, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tr { + background-image: url(images/box/corners.gif); +} + +/* line 77, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-ml { + background-image: url(images/box/l.gif); +} + +/* line 81, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mc { + background-color: #eee; + background-image: url(images/box/tb.gif); + font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif; + color: #393939; + font-size: 15px; +} + +/* line 89, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mc h3 { + font-size: 18px; + font-weight: bold; +} + +/* line 94, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mr { + background-image: url(images/box/r.gif); +} + +/* line 98, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-bl { + background-image: url(images/box/corners.gif); +} + +/* line 102, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-bc { + background-image: url(images/box/tb.gif); +} + +/* line 106, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-br { + background-image: url(images/box/corners.gif); +} + +/* line 110, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr { + background-image: url(images/box/corners-blue.gif); +} + +/* line 114, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc { + background-image: url(images/box/tb-blue.gif); +} + +/* line 118, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-mc { + background-color: #c3daf9; +} + +/* line 122, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-mc h3 { + color: #17385b; +} + +/* line 126, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-ml { + background-image: url(images/box/l-blue.gif); +} + +/* line 130, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-mr { + background-image: url(images/box/r-blue.gif); +} + +/* line 2, ../../../ext-theme-classic/sass/src/window/MessageBox.scss */ +.x-message-box .x-msg-box-wait { + background-image: url(images/shared/blue-loading.gif); +} + +/* line 1, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + height: 22px; +} +/* line 5, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x-content-box .x-form-trigger { + height: 21px; +} + +/* line 12, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x-field-toolbar .x-form-trigger { + height: 20px; +} +/* line 16, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x-content-box .x-field-toolbar .x-form-trigger { + height: 19px; +} + +/* line 4, ../../../ext-theme-classic/sass/src/form/field/Spinner.scss */ +.x-content-box div.x-form-spinner-up, +.x-content-box div.x-form-spinner-down { + height: 10px; +} +/* line 10, ../../../ext-theme-classic/sass/src/form/field/Spinner.scss */ +.x-content-box .x-toolbar-item div.x-form-spinner-up, +.x-content-box .x-toolbar-item div.x-form-spinner-down { + height: 9px; +} + +/* line 2, ../../../ext-theme-classic/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-wrap .x-toolbar { + border-left-color: #b5b8c8; + border-top-color: #b5b8c8; + border-right-color: #b5b8c8; +} + +/* line 9, ../../../ext-theme-classic/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-input { + border: 1px solid #b5b8c8; + border-top-width: 0; +} + +/* line 1, ../../../ext-theme-classic/sass/src/grid/column/Column.scss */ +.x-column-header-trigger { + background-color: #c5c5c5; + background-image: url(images/grid/grid3-hd-btn.gif); +} + +/* line 6, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x-content-box .x-grid-editor .x-form-trigger { + height: 19px; +} +/* line 13, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-spinner-up, .x-grid-editor .x-form-spinner-down { + background-image: url(images/form/spinner-small.gif); +} +/* line 16, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x-content-box .x-grid-editor .x-form-spinner-up, .x-content-box .x-grid-editor .x-form-spinner-down { + height: 9px; +} + +/* line 1, ../../../ext-theme-classic/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd { + border-width: 1px 0 !important; + -webkit-box-shadow: inset 0 0 0 0 #e5e5e5; + -moz-box-shadow: inset 0 0 0 0 #e5e5e5; + box-shadow: inset 0 0 0 0 #e5e5e5; +} + +/* line 6, ../../../ext-theme-classic/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd-sibling-expanded { + -webkit-box-shadow: inset 0 1px 0 0 #ececec; + -moz-box-shadow: inset 0 1px 0 0 #ececec; + box-shadow: inset 0 1px 0 0 #ececec; +} + +/* line 5, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east, +.x-resizable-over .x-resizable-handle-west, +.x-resizable-pinned .x-resizable-handle-east, +.x-resizable-pinned .x-resizable-handle-west { + background-position: left; +} +/* line 10, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south, +.x-resizable-over .x-resizable-handle-north, +.x-resizable-pinned .x-resizable-handle-south, +.x-resizable-pinned .x-resizable-handle-north { + background-position: top; +} +/* line 14, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast, +.x-resizable-pinned .x-resizable-handle-southeast { + background-position: top left; +} +/* line 18, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest, +.x-resizable-pinned .x-resizable-handle-northwest { + background-position: bottom right; +} +/* line 22, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast, +.x-resizable-pinned .x-resizable-handle-northeast { + background-position: bottom left; +} +/* line 26, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest, +.x-resizable-pinned .x-resizable-handle-southwest { + background-position: top right; +} + +/* line 6, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-horz, +.x-ie6 .x-slider-horz .x-slider-end, +.x-ie6 .x-slider-horz .x-slider-inner { + background-image: url(images/slider/slider-bg.gif); +} +/* line 10, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-horz .x-slider-thumb { + background-image: url(images/slider/slider-thumb.gif); +} +/* line 16, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-vert, +.x-ie6 .x-slider-vert .x-slider-end, +.x-ie6 .x-slider-vert .x-slider-inner { + background-image: url(images/slider/slider-v-bg.gif); +} +/* line 20, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-vert .x-slider-thumb { + background-image: url(images/slider/slider-v-thumb.gif); +} + +/* line 1, ../../../ext-theme-classic/sass/src/tab/Panel.scss */ +.x-tab-icon-el { + top: -1px; +} + +/* line 6, ../../../ext-theme-classic/sass/src/tab/Panel.scss */ +.x-tab-noicon .x-tab-icon { + display: none; +} diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/ext-theme-gray-all-rtl-debug.css b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/ext-theme-gray-all-rtl-debug.css new file mode 100644 index 0000000..eca5e9b --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/ext-theme-gray-all-rtl-debug.css @@ -0,0 +1,20929 @@ +/* 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. + */ +/* including package ext-theme-neutral */ +/* including package ext-theme-classic */ +/* including package ext-theme-gray */ +/* including package ext-theme-gray */ +/* including package ext-theme-classic */ +/* including package ext-theme-neutral */ +/** + * @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 {string} $font-size + * The default font-family 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 + */ +/** + * @class Ext.FocusManager + */ +/** + * @var {color} + * The border-color of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-style of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-width of the focusFrame. See {@link #method-enable}. + */ +/** + * @class Ext.LoadMask + */ +/** + * @var {number} + * Opacity of the LoadMask + */ +/** + * @var {color} + * The background-color of the LoadMask + */ +/** + * @var {string} + * The type of cursor to dislay when the cursor is over the LoadMask + */ +/** + * @var {number/list} + * The padding to apply to the LoadMask's message element + */ +/** + * @var {string} + * The border-style of the LoadMask's message element + */ +/** + * @var {color} + * The border-color of the LoadMask's message element + */ +/** + * @var {number} + * The border-width of the LoadMask's message element + */ +/** + * @var {color} + * The background-color of the LoadMask's message element + */ +/** + * @var {string/list} + * The background-gradient of the LoadMask's message element. Can be either the name + * of a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the message inner element + */ +/** + * @var {string} + * The icon to display in the message inner element + */ +/** + * @var {list} + * The background-position of the icon + */ +/** + * @var {string} + * The border-style of the message inner element + */ +/** + * @var {color} + * The border-color of the message inner element + */ +/** + * @var {number} + * The border-width of the message inner element + */ +/** + * @var {color} + * The background-color of the message inner element + */ +/** + * @var {color} + * The text color of the message inner element + */ +/** + * @var {number} + * The font-size of the message inner element + */ +/** + * @var {string} + * The font-weight of the message inner element + */ +/** + * @var {string} + * The font-family of the message inner element + */ +/** + * @var {number/list} + * The padding of the message element + */ +/** + * @var {number} + * The border-radius of the message element + */ +/** + * @class Ext.ProgressBar + */ +/** + * @var {number} + * The height of the ProgressBar + */ +/** + * @var {color} + * The border-color of the ProgressBar + */ +/** + * @var {number} + * The border-width of the ProgressBar + */ +/** + * @var {number} + * The border-radius of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar's moving element + */ +/** + * @var {string/list} + * The background-gradient of the ProgressBar's moving element. Can be either the name of + * a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The color of the ProgressBar's text when in front of the ProgressBar's moving element + */ +/** + * @var {color} + * The color of the ProgressBar's text when the ProgressBar's 'moving element is not under it + */ +/** + * @var {string} + * The text-align of the ProgressBar's text + */ +/** + * @var {number} + * The font-size of the ProgressBar's text + */ +/** + * @var {string} + * The font-weight of the ProgressBar's text + */ +/** + * @var {boolean} + * True to include the "default" ProgressBar UI + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a small {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a medium {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a large {@link #scale} button + */ +/** + * @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 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 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 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 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 disabled + */ +/** + * @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 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 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 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 disabled + */ +/** + * @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-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 buton 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-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 + */ +/** + * @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 {number/list} + * The margin 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 {number/list} + * The margin of Toolbar text + */ +/** + * @var {color} + * The text-color of Toolbar text + */ +/** + * @var {number/list} + * The padding of Toolbar text + */ +/** + * @var {number} + * The line-height of Toolbar text + */ +/** + * @var {number} + * The width of Toolbar scrollers + */ +/** + * @var {number} + * The height of Toolbar scrollers + */ +/** + * @var {color} + * The border-color of Toolbar scrollers + */ +/** + * @var {number} + * The border-width of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of disabled Toolbar scrollers + */ +/** + * @var {number} + * The opacity of disabled Toolbar scrollers + */ +/** + * @var {string} + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + */ +/** + * @var {boolean} + * True to include the "default" toolbar UI + */ +/** + * @class Ext.panel.Panel + */ +/** + * @var {number} + * The default border-width of Panels + */ +/** + * @var {color} + * The base color of Panels + */ +/** + * @var {color} + * The default border-color of Panels + */ +/** + * @var {$border-width-threshold} + * 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 {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 {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 {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 + */ +/** + * @class Ext.tip.Tip + */ +/** + * @var {color} + * The background-color of the Tip + */ +/** + * @var {string/list} + * The background-gradient of the Tip. Can be either the name of a predefined gradient or a + * list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The text color of the Tip body + */ +/** + * @var {number} + * The font-size of the Tip body + */ +/** + * @var {string} + * The font-weight of the Tip body + */ +/** + * @var {number/list} + * The padding of the Tip body + */ +/** + * @var {color} + * The text color of any anchor tags inside the Tip body + */ +/** + * @var {color} + * The text color of the Tip header + */ +/** + * @var {number} + * The font-size of the Tip header + */ +/** + * @var {string} + * The font-weight of the Tip header + */ +/** + * @var {number/list} + * The padding of the Tip header's body element + */ +/** + * @var {color} + * The border-color of the Tip + */ +/** + * @var {number} + * The border-width of the Tip + */ +/** + * @var {number} + * The border-radius of the Tip + */ +/** + * @var {color} + * The inner border-color of the form field error Tip + */ +/** + * @var {number} + * The inner border-width of the form field error Tip + */ +/** + * @var {color} + * The border-color of the form field error Tip + */ +/** + * @var {number} + * The border-radius of the form field error Tip + */ +/** + * @var {number} + * The border-width of the form field error Tip + */ +/** + * @var {color} + * The background-color of the form field error Tip + */ +/** + * @var {number/list} + * The padding of the form field error Tip's body element + */ +/** + * @var {color} + * The text color of the form field error Tip's body element + */ +/** + * @var {number} + * The font-size of the form field error Tip's body element + */ +/** + * @var {string} + * The font-weight of the form field error Tip's body element + */ +/** + * @var {color} + * The color of anchor tags in the form field error Tip's body element + */ +/** + * @var {number} + * The space between {@link Ext.panel.Tool Tools} in the header + */ +/** + * @var {string} + * The sprite to use for the header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" tip UI + */ +/** + * @var {boolean} + * True to include the "form-invalid" tip UI + */ +/** + * @class Ext.container.ButtonGroup + */ +/** + * @var {color} + * The background-color of the ButtonGroup + */ +/** + * @var {color} + * The border-color of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of the ButtonGroup + */ +/** + * @var {number/list} + * The body padding of the ButtonGroup + */ +/** + * @var {number/list} + * The inner border-width of the ButtonGroup + */ +/** + * @var {color} + * The inner border-color of the ButtonGroup + */ +/** + * @var {number/list} + * The margin of the header element. Used to add space around the header. + */ +/** + * @var {number} + * The font-size of the header + */ +/** + * @var {number} + * The font-weight of the header + */ +/** + * @var {number} + * The font-family of the header + */ +/** + * @var {number} + * The line-height of the header + */ +/** + * @var {number} + * The text color of the header + */ +/** + * @var {number} + * The padding of the header + */ +/** + * @var {number} + * The background-color of the header + */ +/** + * @var {number} + * The border-spacing to use on the table layout element + */ +/** + * @var {number} + * The background-color of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of framed ButtonGroups + */ +/** + * @var {string} + * Sprite image to use for header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" button group UI + */ +/** + * @var {boolean} + * True to include the "default-framed" button group UI + */ +/** + * @class Ext.window.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 + */ +/** + * @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 {color} + * The text color of toolbar field labels + */ +/** + * @var {string} + * The font-weight of toolbar field labels + */ +/** + * @var {number} + * The font-size of toolbar field labels + */ +/** + * @var {string} + * The font-family of toolbar field labels + */ +/** + * @var {number} + * The line-height of toolbar field labels + */ +/** + * @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 {measurement} $form-item-margin-bottom + * The bottom margin to apply to form items when in auto, anchor, vbox, or table layout + */ +/** + * @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 {font} $form-field-font + * Font 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 {font} $form-toolbar-field-font + * Font 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. + */ +/** + * @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 {number} $form-field-disabled-opacity + */ +/** + * @class Ext.form.field.TextArea + */ +/** + * @var {number/string} + * The line-height to use for the TextArea's text + */ +/** + * @class Ext.form.field.Display + */ +/** + * @var {color} + * The text color of display fields + */ +/** + * @var {string} + * The font-weight of display fields + */ +/** + * @var {number} + * The font-size of display fields + */ +/** + * @var {string} + * The font-family of display fields + */ +/** + * @var {number} + * The line-height of display fields + */ +/** + * @var {string} + * The font-weight of toolbar display fields + */ +/** + * @var {number} + * The font-size of toolbar display fields + */ +/** + * @var {string} + * The font-family of toolbar display fields + */ +/** + * @var {number} + * The line-height of toolbar display fields + */ +/** + * @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 + */ +/** + * @class Ext.form.field.Checkbox + */ +/** + * @var {number} + * The size of the checkbox + */ +/** + * @var {number} + * The space between the boxLabel and the checkbox. + */ +/** + * @class Ext.form.CheckboxGroup + */ +/** + * @var {number/list} + * The padding of the CheckboxGroup body element + */ +/** + * @var {color} + * The text color of the CheckboxGroup label + */ +/** + * @var {number} + * The padding of the CheckboxGroup label + */ +/** + * @var {number} + * The margin of the CheckboxGroup label + */ +/** + * @var {number} + * The border-width of the CheckboxGroup label + */ +/** + * @var {number} + * The border-style of the CheckboxGroup label + */ +/** + * @var {number} + * The border-color of the CheckboxGroup label + */ +/** + * @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/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/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 {number/list} + * The margin to apply to the FieldSet's checkbox (for FieldSets that use + * {@link #checkboxToggle}) + */ +/** + * @var {number} + * The size of the FieldSet's collapse tool + */ +/** + * @var {string} $fieldset-collapse-tool-background-image + * The background-image to use for the collapse tool. If null the default tool + * sprite will be used. Defaults to null. + */ +/** + * @class Ext.form.field.Radio + */ +/** + * @var {number} + * The size of the radio button + */ +/** + * @class Ext.form.field.Trigger + */ +/** + * @var {number} + * The width of the Trigger field's trigger element + */ +/** + * @var {number/list} + * The width of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border + */ +/** + * @var {string} + * The style of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border when hovered + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused and the trigger is hovered + */ +/** + * @class Ext.form.field.Spinner + */ +/** + * @var {number} + * The height of the Spinner trigger buttons + */ +/** + * @var {number} + * The height of the Spinner trigger buttons when the Spinner is used on a + * {@link Ext.toolbar.Toolbar Toolbar} + */ +/** + * @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 {number/list} + * The padding of BoundList items + */ +/** + * @var {number} + * The border-width of BoundList items + */ +/** + * @var {string} + * The border-style of BoundList items + */ +/** + * @var {color} + * The border-color of BoundList items + */ +/** + * @var {color} + * The border-color of hovered BoundList items + */ +/** + * @var {color} + * The border-color of selected BoundList items + */ +/** + * @var {color} + * The background-color of hovered BoundList items + */ +/** + * @var {color} + * The background-color of selected BoundList items + */ +/** + * @class Ext.picker.Date + */ +/** + * @var {number} + * The border-width of the DatePicker + */ +/** + * @var {string} + * The border-style of the DatePicker + */ +/** + * @var {color} + * The background-color of the DatePicker + */ +/** + * @var {string} + * The background-image of the DatePicker next arrow + */ +/** + * @var {string} + * The background-image of the DatePicker previous arrow + */ +/** + * @var {number} + * The width of DatePicker arrows + */ +/** + * @var {number} + * The height of DatePicker arrows + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a DatePicker arrow + */ +/** + * @var {number} + * The opacity of the DatePicker arrows + */ +/** + * @var {number} + * The opacity of the DatePicker arrows when hovered + */ +/** + * @var {string/list} + * The Date Picker header background gradient. Can be either the name of a predefined gradient + * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the Date Picker header + */ +/** + * @var {color} + * The color of the Date Picker month button + */ +/** + * @var {number} + * The width of the arrow on the Date Picker month button + */ +/** + * @var {string} + * The background-image of the arrow on the Date Picker month button + */ +/** + * @var {boolean} + * True to render the month button as transparent + */ +/** + * @var {string} + * The text-align of the Date Picker header + */ +/** + * @var {number} + * The height of Date Picker items + */ +/** + * @var {number} + * The width of Date Picker items + */ +/** + * @var {number/list} + * The padding of Date Picker items + */ +/** + * @var {string} + * The font-family of Date Picker items + */ +/** + * @var {number} + * The font-size of Date Picker items + */ +/** + * @var {string} + * The font-weight of Date Picker items + */ +/** + * @var {string} + * The text-align of Date Picker items + */ +/** + * @var {color} + * The text color of Date Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Date Picker item + */ +/** + * @var {string} + * The font-family of Date Picker column headers + */ +/** + * @var {number} + * The font-size of Date Picker column headers + */ +/** + * @var {string} + * The font-weight of Date Picker column headers + */ +/** + * @var {string/list} + * The background-gradient of Date Picker column headers. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {string} + * The border-style of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker column headers + */ +/** + * @var {string} + * The text-align of Date Picker column headers + */ +/** + * @var {number} + * The height of Date Picker column headers + */ +/** + * @var {number/list} + * The padding of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker items + */ +/** + * @var {string} + * The border-style of Date Picker items + */ +/** + * @var {color} + * The border-color of Date Picker items + */ +/** + * @var {string} + * The border-style of today's date on the Date Picker + */ +/** + * @var {string} + * The border-style of the selected item + */ +/** + * @var {string} + * The font-weight of the selected item + */ +/** + * @var {color} + * The text color of the items in the previous and next months + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a disabled item + */ +/** + * @var {color} + * The text color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of the Date Picker footer + */ +/** + * @var {string/list} + * The background-gradient of the Date Picker footer. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The border-width of the Date Picker footer + */ +/** + * @var {string} + * The border-style of the Date Picker footer + */ +/** + * @var {string} + * The text-align of the Date Picker footer + */ +/** + * @var {number/list} + * The padding of the Date Picker footer + */ +/** + * @var {number} + * The space between the footer buttons + */ +/** + * @var {color} + * The border-color of the Month Picker + */ +/** + * @var {number} + * The border-width of the Month Picker + */ +/** + * @var {string} + * The border-style of the Month Picker + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The border-color of Month Picker items + */ +/** + * @var {string} + * The border-style of Month Picker items + */ +/** + * @var {string} + * The font-family of Month Picker items + */ +/** + * @var {number} + * The font-size of Month Picker items + */ +/** + * @var {string} + * The font-weight of Month Picker items + */ +/** + * @var {number/list} + * The margin of Month Picker items + */ +/** + * @var {string} + * The text-align of Month Picker items + */ +/** + * @var {number} + * The height of Month Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker item + */ +/** + * @var {color} + * The background-color of hovered Month Picker items + */ +/** + * @var {color} + * The background-color of selected Month Picker items + */ +/** + * @var {string} + * The border-style of selected Month Picker items + */ +/** + * @var {color} + * The border-color of selected Month Picker items + */ +/** + * @var {number} + * The height of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The width of the Month Picker year navigation buttons + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker year navigation button + */ +/** + * @var {number} + * The opacity of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The opacity of hovered Month Picker year navigation buttons + */ +/** + * @var {string} + * The background-image of the Month Picker next year navigation button + */ +/** + * @var {string} + * The background-image of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker previous year navigation button + */ +/** + * @var {string} + * The border-style of the Month Picker separator + */ +/** + * @var {number} + * The border-width of the Month Picker separator + */ +/** + * @var {color} + * The border-color of the Month Picker separator + */ +/** + * @var {number/list} + * The margin of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @var {number} + * The height of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @class Ext.picker.Color + */ +/** + * @var {color} + * The background-color of Color Pickers + */ +/** + * @var {color} + * The border-color of Color Pickers + */ +/** + * @var {number} + * The border-width of Color Pickers + */ +/** + * @var {string} + * The border-style of Color Pickers + */ +/** + * @var {number} + * The number of columns to display in the Color Picker + */ +/** + * @var {number} + * The number of rows to display in the Color Picker + */ +/** + * @var {number} + * The height of each Color Picker item + */ +/** + * @var {number} + * The width of each Color Picker item + */ +/** + * @var {number} + * The padding of each Color Picker item + */ +/** + * @var {string} + * The cursor to display when the mouse is over a Color Picker item + */ +/** + * @var {color} + * The border-color of Color Picker items + */ +/** + * @var {number} + * The border-width of Color Picker items + */ +/** + * @var {string} + * The border-style of Color Picker items + */ +/** + * @var {color} + * The border-color of hovered Color Picker items + */ +/** + * @var {color} + * The background-color of Color Picker items + */ +/** + * @var {color} + * The background-color of hovered Color Picker items + */ +/** + * @var {color} + * The border-color of the selected Color Picker item + */ +/** + * @var {color} + * The background-color of the selected Color Picker item + */ +/** + * @var {color} + * The inner border-color of Color Picker items + */ +/** + * @var {number} + * The inner border-width of Color Picker items + */ +/** + * @var {string} + * The inner border-style of Color Picker items + */ +/** + * @class Ext.form.field.HtmlEditor + */ +/** + * @var {number} + * The border-width of the HtmlEditor + */ +/** + * @var {color} + * The border-color of the HtmlEditor + */ +/** + * @var {color} + * The background-color of the HtmlEditor + */ +/** + * @var {number} + * The size of the HtmlEditor toolbar icons + */ +/** + * @var {number} + * The font-size of the HtmlEditor's font selection control + */ +/** + * @var {number} + * The font-family of the HtmlEditor's font selection control + */ +/** + * @class Ext.panel.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} $grid-row-cell-line-height + * 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 {color} + * The border-color of the focused row + */ +/** + * @var {string} + * The border-style of the focused row + */ +/** + * @var {color} + * The text color of the focused row + */ +/** + * @var {color} + * The background-color of the focused row + */ +/** + * @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.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 {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 + */ +/** + * @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.CheckColumn + */ +/** + * @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.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.grid.feature.RowWrap + */ +/** + * @var {color} + * The border-color of wrapped rows + */ +/** + * @var {string} + * The border-style of wrapped rows + */ +/** + * @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 + */ +/** + * @class Ext.grid.plugin.Editing + */ +/** + * The height of grid editor text fields. 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 caluclated by adding $grid-row-cell-line-height to the top and bottom values of + * $grid-cell-inner-padding. + */ +/** + * The padding of grid editor text fields. + */ +/** + * @var {number} + * The font size of the grid editor text + */ +/** + * @var {string} + * The font-weight of the grid editor text + */ +/** + * @var {string} + * The font-family of the grid editor text + */ +/** + * @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 {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 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 {string} + * The text-transform property of Accordion headers + */ +/** + * @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.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 {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. + */ +/** + * @class Ext.layout.container.Border + */ +/** + * @var {color} + * The background-color of the Border layout element + */ +/** + * @class Ext.menu.Menu + */ +/** + * @var {color} + * The background-color of the 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 {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} + * The font-size of {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The margin 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 {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 {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {list} + * The background-position of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} text + */ +/** + * @var {number/list} + * The margin of {@link Ext.menu.Separator Menu Separators} + */ +/** + * @var {number} + * The padding to the right of {@link Ext.menu.CheckItem Check Items}, to make room + * for the checkbox + */ +/** + * @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 space to the left and right of {@link Ext.menu.Item Menu Item} arrows + */ +/** + * @var {number} + * The opacity of disabled {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The height of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers when hovered + */ +/** + * @var {number} + * The opacity of Menu crollers when pressed + */ +/** + * @var {number/list} + * The padding to apply to the Menu body element + */ +/** + * @var {color} + * The color of Menu Item text + */ +/** + * @var {number/list} + * The margin non-MenuItems placed in a Menu + */ +/** + * @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} + */ +/** + * @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.slider.Multi + */ +/** + * @var {number} + * The horizontal slider thumb width + */ +/** + * @var {number} + * The horizontal slider thumb height + */ +/** + * @var {number} + * The width of the horizontal slider end caps + */ +/** + * @var {number} + * The vertical slider thumb width + */ +/** + * @var {number} + * The vertical slider thumb height + */ +/** + * @var {number} + * The height of the vertical slider end caps + */ +/** + * @class Ext.tab.Tab + */ +/** + * @var {color} + * The base color of Tabs + */ +/** + * @var {color} + * The base color of hovered Tabs + */ +/** + * @var {color} + * The base color of the active Tabs + */ +/** + * @var {color} + * The base color of disabled Tabs + */ +/** + * @var {color} + * The text color of Tabs + */ +/** + * @var {color} + * The text color of hovered Tabs + */ +/** + * @var {color} + * The text color of the active Tab + */ +/** + * @var {color} + * The text color of disabled Tabs + */ +/** + * @var {number} + * The font-size of Tabs + */ +/** + * @var {number} + * The font-size of hovered Tabs + */ +/** + * @var {number} + * The font-size of the active Tab + */ +/** + * @var {number} + * The font-size of disabled Tabs + */ +/** + * @var {string} + * The font-family of Tabs + */ +/** + * @var {string} + * The font-family of hovered Tabs + */ +/** + * @var {string} + * The font-family of the active Tab + */ +/** + * @var {string} + * The font-family of disabled Tabs + */ +/** + * @var {string} + * The font-weight of Tabs + */ +/** + * @var {string} + * The font-weight of hovered Tabs + */ +/** + * @var {string} + * The font-weight of the active Tab + */ +/** + * @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 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 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} + * The border-width of Tabs + */ +/** + * @var {number/list} + * The inner border-width of Tabs + */ +/** + * @var {color} + * The inner border-color of Tabs + */ +/** + * @var {color} + * The border-color of Tabs + */ +/** + * @var {color} + * The border-color of hovered Tabs + */ +/** + * @var {color} + * The border-color of the active Tab + */ +/** + * @var {color} + * The border-color of disabled Tabs + */ +/** + * @var {number/list} + * The padding of Tabs + */ +/** + * @var {number/list} + * The padding of the Tab's text element + */ +/** + * @var {number} + * The line-height of Tabs + */ +/** + * @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 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 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 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 {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a left-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `left`. + */ +/** + * @var {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a right-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `right`. + */ +/** + * @var {boolean} + * True to include the "default" tab UI + */ +/** + * @class Ext.tab.Bar + */ +/** + * @var {number/list} + * The padding of the Tab Bar + */ +/** + * @var {number/list} + * The padding of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} Tab Bar strip + */ +/** + * @var {number} + * The width of the Tab Bar scrollers + */ +/** + * @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 change the x postition of the background image on hover to allow for a + * horizonatlly alined background image sprite + */ +/** + * @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.selection.CheckboxModel + */ +/** + * @var {number} + * The horizontal space before the checkbox + */ +/** + * @var {number} + * The horizontal space after the checkbox + */ +/** + * @class Ext.tree.Panel + */ +/** + * @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 + */ +/* 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 + */ +/** + * @var {boolean} $include-content-box + * True to include rules for browsers that do not support the border-box model + * (IE6 strict and IE7 strict) + */ +/** + * @var {boolean} $include-ff + * True to include Firefox specific rules + */ +/** + * @var {boolean} $include-chrome + * True to include Chrome specific rules + */ +/** + * @var {boolean} $include-safari + * True to include Safari specific rules + */ +/** + * @var {boolean} $include-opera + * True to include Opera specific rules + */ +/** + * @var {boolean} $include-webkit + * True to include Webkit specific rules + */ +/** + * @var {measurement} $css-shadow-border-radius + * The border radius for CSS shadows + */ +/** + * @var {color} $include-shadow-images + * True to include all shadow images. + */ +/** + * @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 {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. + */ +/* including package ext-theme-base */ +/* + * 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 + */ +/* line 1, ../../../ext-theme-base/sass/src/Component.scss */ +.x-body { + margin: 0; +} + +/* line 5, ../../../ext-theme-base/sass/src/Component.scss */ +img { + border: 0; +} + +/* line 10, ../../../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 17, ../../../ext-theme-base/sass/src/Component.scss */ +.x-rtl { + direction: rtl; +} + +/* line 21, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ltr { + direction: ltr; +} + +/* line 25, ../../../ext-theme-base/sass/src/Component.scss */ +.x-clear { + overflow: hidden; + clear: both; + font-size: 0; + line-height: 0; + display: table; +} + +/* line 33, ../../../ext-theme-base/sass/src/Component.scss */ +.x-strict .x-ie7 .x-clear { + height: 0; + width: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/Component.scss */ +.x-layer { + position: absolute !important; + overflow: hidden; + zoom: 1; +} + +/* line 49, ../../../ext-theme-base/sass/src/Component.scss */ +.x-fixed-layer { + position: fixed !important; + overflow: hidden; + zoom: 1; +} + +/* line 55, ../../../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 63, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-display { + display: none !important; +} + +/* line 67, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-visibility { + visibility: hidden !important; +} + +/* line 72, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ie6 .x-item-disabled { + filter: none; +} + +/* line 78, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hidden, +.x-hide-offsets { + display: block !important; + visibility: hidden !important; + position: absolute !important; + top: -10000px !important; +} + +/* line 88, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-nosize { + height: 0 !important; + width: 0 !important; +} + +/* line 94, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-clip { + position: absolute!important; + clip: rect(0, 0, 0, 0); + clip: rect(0 0 0 0); +} + +/* line 102, ../../../ext-theme-base/sass/src/Component.scss */ +.x-masked-relative { + position: relative; +} + +/* line 108, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ie-shadow { + background-color: #777; + display: none; + position: absolute; + overflow: hidden; + zoom: 1; +} + +/* line 117, ../../../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; + cursor: default; +} + +/* line 121, ../../../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 136, ../../../ext-theme-base/sass/src/Component.scss */ +.x-list-plain { + list-style-type: none; + margin: 0; + padding: 0; +} + +/* line 143, ../../../ext-theme-base/sass/src/Component.scss */ +.x-table-plain { + border-collapse: collapse; + border-spacing: 0; + font-size: 1em; +} + +/* line 156, ../../../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 162, ../../../ext-theme-base/sass/src/Component.scss */ +.x-frame-tc, +.x-frame-bc { + background-repeat: repeat-x; +} + +/* line 166, ../../../ext-theme-base/sass/src/Component.scss */ +.x-frame-mc { + background-repeat: repeat-x; + overflow: hidden; +} + +/* line 171, ../../../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 178, ../../../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 184, ../../../ext-theme-base/sass/src/Component.scss */ +.x-item-disabled, +.x-item-disabled * { + cursor: default; +} + +/* line 3, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x-box-item { + position: absolute !important; + left: 0; + top: 0; +} + +/* line 10, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x-rtl > .x-box-item { + right: 0; + left: auto; +} + +/* line 20, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x-ie6 .x-rtl .x-box-item, +.x-quirks .x-ie .x-rtl .x-box-item { + right: 0; + left: auto; +} + +/* line 4, ../../../ext-theme-base/sass/src/Editor.scss */ +div.x-editor { + overflow: visible; +} + +/* line 1, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask { + z-index: 100; + position: absolute; + width: 100%; + height: 100%; + zoom: 1; +} + +/* line 10, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask-shim { + z-index: 100; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +/* line 20, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask-msg { + z-index: 20001; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress { + position: relative; + border-style: solid; + overflow: hidden; +} + +/* line 7, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress-bar { + overflow: hidden; + position: absolute; + width: 0; + height: 100%; +} + +/* line 14, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress-text { + overflow: hidden; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn { + display: inline-block; + position: relative; + zoom: 1; + *display: inline; + outline: 0; + cursor: pointer; + white-space: nowrap; + vertical-align: middle; + text-decoration: none; +} + +/* line 15, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-wrap { + position: relative; + display: block; +} + +/* line 20, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-button { + position: relative; + display: block; + text-decoration: none; + overflow: hidden; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner { + display: block; + white-space: nowrap; + overflow: hidden; + zoom: 1; +} + +/* line 35, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 45, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-center { + text-align: center; +} + +/* line 49, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-left { + text-align: left; +} + +/* line 54, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-rtl.x-btn-inner-left { + text-align: right; +} + +/* line 59, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-right { + text-align: right; +} + +/* line 64, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-rtl.x-btn-inner-right { + text-align: left; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-target { + position: absolute; + width: 20000px; + top: 0; + left: 0; + height: 1px; +} + +/* line 25, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-rtl.x-box-target { + left: auto; + right: 0; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-inner { + overflow: hidden; + zoom: 1; + position: relative; + left: 0; + top: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-horizontal-box-overflow-body { + float: left; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller { + position: relative; + background-repeat: no-repeat; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller-left, +.x-box-scroller-right { + float: left; + height: 100%; + z-index: 5; +} + +/* line 59, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller-top .x-box-scroller, +.x-box-scroller-bottom .x-box-scroller { + line-height: 0; + font-size: 0; + background-position: center 0; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-menu-after { + float: right; +} + +/* line 71, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-rtl.x-box-menu-after { + float: left; +} + +/* line 1, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-text { + white-space: nowrap; +} + +/* line 5, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-separator { + display: block; + font-size: 1px; + overflow: hidden; + cursor: default; + border: 0; + width: 0; + height: 0; + line-height: 0px; +} + +/* line 17, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal { + width: 2px; +} + +/* line 22, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroller { + padding-left: 0; +} + +/* line 29, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-plain { + border: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked { + position: absolute !important; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-vertical { + position: static; +} + +/* line 11, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-top { + border-bottom-width: 0 !important; +} + +/* line 15, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-bottom { + border-top-width: 0 !important; +} + +/* line 19, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-left { + border-right-width: 0 !important; +} + +/* line 23, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-right { + border-left-width: 0 !important; +} + +/* line 27, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-top { + border-top-width: 0 !important; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-right { + border-right-width: 0 !important; +} + +/* line 35, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-bottom { + border-bottom-width: 0 !important; +} + +/* line 39, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-left { + border-left-width: 0 !important; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-l { + border-left-width: 0 !important; +} + +/* line 48, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-b { + border-bottom-width: 0 !important; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-bl { + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 55, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-r { + border-right-width: 0 !important; +} + +/* line 58, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rl { + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 62, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rb { + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rbl { + border-right-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 71, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-t { + border-top-width: 0 !important; +} + +/* line 74, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tl { + border-top-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 78, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tb { + border-top-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 82, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tbl { + border-top-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 87, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tr { + border-top-width: 0 !important; + border-right-width: 0 !important; +} + +/* line 91, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trl { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 96, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trb { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 101, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trbl { + border-width: 0 !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-header-icon { + background-repeat: no-repeat; + background-position: 0 0; + vertical-align: middle; + text-align: center; +} + +/* line 8, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-header-text-container { + overflow: hidden; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +/* line 15, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-rtl.x-header-text-container { + -o-text-overflow: clip; + text-overflow: clip; +} + +/* line 4, ../../../ext-theme-base/sass/src/dd/DD.scss */ +.x-dd-drag-proxy, +.x-dd-drag-current { + z-index: 1000000!important; + pointer-events: none; +} + +/* line 2, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-repair .x-dd-drag-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 6, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-repair .x-dd-drop-icon { + display: none; +} + +/* line 11, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85); + opacity: 0.85; + padding: 5px; + padding-left: 20px; + white-space: nowrap; + color: #000; + font: normal 11px tahoma, arial, verdana, sans-serif; + border: 1px solid; + border-color: #ddd #bbb #bbb #ddd; + background-color: #fff; +} + +/* line 28, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-icon { + position: absolute; + top: 3px; + left: 3px; + display: block; + width: 16px; + height: 16px; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + z-index: 1; +} + +/* line 51, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-rtl .x-dd-drag-ghost { + padding-left: 5px; + padding-right: 20px; +} +/* line 55, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-rtl .x-dd-drop-icon { + left: auto; + right: 3px; +} + +/* line 66, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-ok .x-dd-drop-icon { + background-image: url(images/dd/drop-yes.gif); +} + +/* line 70, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-ok-add .x-dd-drop-icon { + background-image: url(images/dd/drop-add.gif); +} + +/* line 75, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-nodrop div.x-dd-drop-icon { + background-image: url(images/dd/drop-no.gif); +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel, +.x-plain { + overflow: hidden; + position: relative; +} + +/* line 7, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel { + outline: none; +} + +/* line 23, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-ie .x-panel-header, +.x-ie .x-panel-header-tl, +.x-ie .x-panel-header-tc, +.x-ie .x-panel-header-tr, +.x-ie .x-panel-header-ml, +.x-ie .x-panel-header-mc, +.x-ie .x-panel-header-mr, +.x-ie .x-panel-header-bl, +.x-ie .x-panel-header-bc, +.x-ie .x-panel-header-br { + zoom: 1; +} + +/* line 29, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-ie8 td.x-frame-mc { + vertical-align: top; +} + +/* line 35, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel-body { + overflow: hidden; + position: relative; +} + +/* line 42, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-vertical .x-frame-mc { + background-repeat: repeat-y; +} + +/* line 49, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel-header-plain, +.x-panel-body-plain { + border: 0; + padding: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip { + position: absolute; + overflow: visible; + /*pointer needs to be able to stick out*/ +} + +/* line 6, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip-body { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip-anchor { + position: absolute; + overflow: hidden; + border-style: solid; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Table.scss */ +.x-table-layout { + font-size: 1em; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group { + position: relative; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body { + position: relative; + zoom: 1; +} +/* line 9, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body .x-table-layout-cell { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/Viewport.scss */ +.x-viewport, .x-viewport body { + margin: 0; + padding: 0; + border: 0 none; + overflow: hidden; + height: 100%; + position: static; +} + +/* line 1, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window { + outline: none; + overflow: hidden; +} +/* line 5, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window .x-window-wrap { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window-body { + position: relative; + overflow: hidden; +} + +/* line 15, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window-body-plain { + background: transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label { + display: block; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label-right { + text-align: right; +} + +/* line 9, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label-top { + display: block; + zoom: 1; +} + +/* line 15, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-invalid-icon { + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-invalid-icon ul { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x-form-textarea { + overflow: auto; + resize: none; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x-safari.x-mac .x-form-textarea { + margin-bottom: -2px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Display.scss */ +.x-form-display-field-body { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb-wrap { + vertical-align: top; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb { + vertical-align: top; + overflow: hidden; + padding: 0; + border: 0; +} +/* line 10, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb::-moz-focus-inner { + padding: 0; + border: 0; +} + +/* line 16, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label { + display: inline-block; + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset { + display: block; + /* preserve margins in IE */ + position: relative; +} + +/* line 6, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header { + overflow: hidden; +} +/* line 10, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-item, +.x-fieldset-header .x-tool { + float: left; +} +/* line 14, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb-wrap { + font-size: 0; + line-height: 0; +} +/* line 19, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb { + margin: 0; +} + +/* line 27, ../../../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 33, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text { + float: left; +} + +/*misc*/ +/* line 4, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-webkit *:focus { + outline: none !important; +} + +/* line 11, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-item { + vertical-align: top; + table-layout: fixed; +} + +/* line 17, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-item-body { + position: relative; +} + +/* line 26, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-rtl.x-form-item .x-form-item-input-row { + position: relative; + right: 0; +} + +/* line 33, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-form-item td { + border-top: 1px solid transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + cursor: pointer; + overflow: hidden; + background-repeat: no-repeat; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-item-disabled .x-form-trigger { + cursor: default; +} + +/* line 10, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-trigger-noedit { + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap { + vertical-align: top; + border-collapse: separate; +} + +/* line 2, ../../../ext-theme-base/sass/src/form/field/Spinner.scss */ +.x-form-spinner-up, +.x-form-spinner-down { + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-inner { + table-layout: fixed; + width: 100%; + border-collapse: separate; +} + +/* line 11, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-cell { + padding: 0; +} + +/* line 15, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-header { + position: relative; + zoom: 1; +} + +/* line 20, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-arrow { + position: absolute; + outline: none; + font-size: 0; +} + +/* line 26, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-column-header { + padding: 0; +} + +/* line 30, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-date { + display: block; + zoom: 1; + text-decoration: none; +} + +/* line 36, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker { + position: absolute; + left: 0; + top: 0; +} + +/* line 42, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-body { + height: 100%; +} + +/* line 47, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-months, +.x-monthpicker-years { + float: left; + height: 100%; +} + +/* line 52, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-item { + float: left; +} + +/* line 56, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-item-inner { + display: block; + text-decoration: none; +} + +/* line 61, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button-ct { + float: left; + text-align: center; +} + +/* line 66, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button { + display: inline-block; + outline: none; + font-size: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-buttons { + position: absolute; + bottom: 0; + width: 100%; +} +/* line 78, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-strict .x-ie6 .x-monthpicker-buttons { + bottom: -1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/File.scss */ +.x-form-file-btn { + overflow: hidden; +} + +/* line 5, ../../../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 29, ../../../ext-theme-base/sass/src/form/field/File.scss */ +.x-rtl.x-form-file-input { + right: auto; + left: -2px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Hidden.scss */ +.x-form-item-hidden { + margin: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x-color-picker-item { + float: left; + text-decoration: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x-color-picker-item-inner { + display: block; + font-size: 1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-toolbar { + position: static !important; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x-htmleditor-iframe { + display: block; + overflow: auto; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Fit.scss */ +.x-fit-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-row, +.x-grid-data-row { + outline: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-view { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-table { + table-layout: fixed; + border-collapse: separate; +} + +/* line 16, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-td { + overflow: hidden; + border-width: 0; + vertical-align: top; +} + +/* line 22, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-cell-inner { + overflow: hidden; + white-space: nowrap; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-resize-marker { + position: absolute; + z-index: 5; + top: 0; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + position: absolute; + top: 0; + line-height: 0; + font-size: 0; + overflow: hidden; + z-index: 20000; + background: no-repeat center top transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/header/Container.scss */ +.x-grid-header-ct { + cursor: default; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header { + position: absolute; + overflow: hidden; + background-repeat: repeat-x; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-inner { + zoom: 1; + white-space: nowrap; + position: relative; + overflow: hidden; +} + +/* line 14, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-text { + white-space: nowrap; + background-repeat: no-repeat; + zoom: 1; + display: inline-block; +} + +/* line 25, ../../../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 36, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-trigger { + left: 0; + right: auto; +} + +/* line 43, ../../../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 48, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-right { + text-align: right; +} + +/* line 53, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-align-right { + text-align: left; +} + +/* line 58, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-left { + text-align: left; +} + +/* line 63, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-align-left { + text-align: right; +} + +/* line 68, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-center { + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Action.scss */ +.x-grid-cell-inner-action-col { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/CheckColumn.scss */ +.x-grid-cell-inner-checkcolumn { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/RowNumberer.scss */ +.x-row-numberer .x-column-header-inner { + text-overflow: clip; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-group, +.x-grid-group-body, +.x-grid-group-hd { + zoom: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd { + white-space: nowrap; +} + +/* line 11, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-row-body-hidden, .x-grid-group-collapsed { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x-grid-rowbody { + zoom: 1; +} + +/* line 5, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x-grid-row-body-hidden { + display: none; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x-grid-rowwrap .x-grid-table { + border: 0; +} +/* line 6, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x-grid-rowwrap .x-grid-cell { + border-bottom: 0; + background-color: transparent; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb-wrap { + text-align: center; +} + +/* line 9, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field { + margin: 0; + white-space: nowrap; + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor div.x-form-action-col-field { + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor { + position: absolute; + overflow: visible; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons { + position: absolute; + white-space: nowrap; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-expander { + font-size: 0; + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x-abs-layout-ct { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x-abs-layout-item { + position: absolute !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter { + font-size: 1px; +} + +/* line 5, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-horizontal { + cursor: e-resize; + cursor: row-resize; +} + +/* line 10, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-vertical { + cursor: e-resize; + cursor: col-resize; +} + +/* line 17, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed, +.x-splitter-horizontal-noresize, +.x-splitter-vertical-noresize { + cursor: default; +} + +/* line 21, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-active { + z-index: 4; +} + +/* line 25, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-collapse-el { + position: absolute; + background-repeat: no-repeat; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-region-slide-in { + z-index: 5; +} + +/* line 14, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-region-collapsed-placeholder { + z-index: 4; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-column { + float: left; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-rtl > .x-column { + float: right; +} + +/* line 13, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-ie6 .x-rtl .x-column, .x-quirks .x-ie .x-rtl .x-column { + float: right; +} + +/* line 21, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-ie6 .x-column { + display: inline; + /*prevent IE6 double-margin bug*/ +} + +/* line 25, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-quirks .x-ie .x-form-layout-table, .x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x-form-layout-table { + border-collapse: separate; + border-spacing: 0 2px; +} + +/* line 9, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x-ie6 .x-form-layout-table { + border-collapse: collapse; + border-spacing: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu { + outline: none; +} + +/* line 5, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item { + white-space: nowrap; + overflow: hidden; +} + +/* line 14, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-cmp .x-field-label-cell { + vertical-align: middle; +} + +/* line 22, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-icon-separator { + position: absolute; + top: 0px; + z-index: 0; + height: 100%; + overflow: hidden; +} +/* line 28, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-plain .x-menu-icon-separator { + display: none; +} + +/* line 33, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-link { + text-decoration: none; + outline: 0; + zoom: 1; +} + +/* line 40, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-text { + zoom: 1; +} + +/* line 47, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-icon, +.x-menu-item-icon-right, +.x-menu-item-arrow { + position: absolute; + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/SplitterTracker.scss */ +.x-resizable-overlay { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + display: none; + z-index: 200000; + background-color: #fff; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider { + outline: none; + zoom: 1; + position: relative; +} + +/* line 9, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-inner { + position: relative; + left: 0; + top: 0; + overflow: visible; + zoom: 1; +} +/* line 17, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-inner { + background: repeat-y 0 0; +} + +/* line 23, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-end { + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-thumb { + position: absolute; + background: no-repeat 0 0; +} +/* line 31, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb { + left: 0; +} +/* line 34, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb { + bottom: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Tab.scss */ +a.x-tab { + text-decoration: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Bar.scss */ +.x-tab-bar { + position: relative; +} + +/* line 1, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox .x-column-header-text { + display: block; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 7, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x-grid-cell-row-checker { + vertical-align: middle; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab { + display: block; + white-space: nowrap; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-active { + z-index: 3; +} + +/* line 11, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-wrap { + display: block; + position: relative; +} + +/* line 16, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-button { + zoom: 1; + display: block; + outline: none; +} + +/* line 22, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-inner { + display: block; + text-align: center; + white-space: nowrap; + text-overflow: ellipsis; + -o-text-overflow: ellipsis; + overflow: hidden; + zoom: 1; +} + +/* line 32, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 42, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar { + z-index: 1; +} + +/* line 46, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-body { + z-index: 2; + position: relative; +} + +/* line 51, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip { + position: absolute; + line-height: 0; + font-size: 0; + z-index: 1; +} + +/* line 58, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-horizontal .x-tab-bar-strip { + width: 100%; + left: 0; +} + +/* line 63, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-vertical .x-tab-bar-strip { + height: 100%; + top: 0; +} + +/* line 68, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-top { + bottom: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-bottom { + top: 0; +} + +/* line 76, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-left { + right: 0; +} + +/* line 81, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-rtl.x-tab-bar .x-tab-bar-strip-left { + right: auto; + left: 0; +} + +/* line 87, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-right { + left: 0; +} + +/* line 92, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-rtl.x-tab-bar .x-tab-bar-strip-right { + left: auto; + right: 0; +} + +/* line 98, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-plain { + background: transparent !important; +} + +/* line 102, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-icon-el { + position: absolute; + background-repeat: no-repeat; + top: 0; + left: 0; + right: auto; + bottom: 0; +} + +/* line 112, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-rtl.x-tab-icon-el { + left: auto; + right: 0; +} + +/* line 118, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-close-btn { + display: block; + position: absolute; + font-size: 0; + line-height: 0; + background: no-repeat; +} + +/* line 126, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-mc { + overflow: visible; +} + +/* line 3, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-autowidth-table .x-grid-table { + table-layout: auto; + width: auto !important; +} + +/* line 8, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-view { + overflow: hidden; +} + +/* line 13, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-elbow-img, +.x-tree-icon { + background-repeat: no-repeat; + background-position: 0 center; + vertical-align: top; +} + +/* line 19, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-checkbox { + border: 0; + padding: 0; + vertical-align: top; + position: relative; + background-color: transparent; +} + +/* line 27, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-animator-wrap { + overflow: hidden; +} + +/* line 31, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-node-text { + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-surface { + display: -moz-inline-stack; + display: inline-block; + vertical-align: middle; + *vertical-align: auto; + zoom: 1; + *display: inline; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.rvml { + behavior: url(#default#VML); +} + +/* line 10, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-surface tspan { + user-select: none; + -o-user-select: none; + -ms-user-select: none; + -moz-user-select: -moz-none; + -webkit-user-select: none; + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-sprite { + position: absolute; + left: 0; + top: 0; + width: 1px; + height: 1px; +} + +/* line 22, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-group { + position: absolute; + left: 0; + top: 0; + width: 1000px; + height: 1000px; +} + +/* line 30, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-measure-span { + position: absolute; + left: -9999em; + top: -9999em; + padding: 0; + margin: 0; + display: inline; +} + +/* line 39, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 47, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 55, ../../../ext-theme-base/sass/src/draw/Component.scss */ +svg, vml { + overflow: hidden; +} + +/* including package ext-theme-neutral */ +/* line 1, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x-body { + color: black; + font-size: 12px; + font-family: tahoma, arial, verdana, sans-serif; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x-animating-size, +.x-collapsed { + overflow: hidden!important; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/Editor.scss */ +.x-editor .x-form-item-body { + padding-bottom: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-element { + position: absolute; + top: -10px; + left: -10px; + width: 0px; + height: 0px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame { + position: absolute; + left: 0px; + top: 0px; + z-index: 100000000; + width: 0px; + height: 0px; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-top, +.x-focus-frame-bottom, +.x-focus-frame-left, +.x-focus-frame-right { + position: absolute; + top: 0px; + left: 0px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-top, +.x-focus-frame-bottom { + border-top: solid 2px #15428b; + height: 2px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-left, +.x-focus-frame-right { + border-left: solid 2px #15428b; + width: 2px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + background: #cccccc; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg { + padding: 2px; + border-style: solid; + border-width: 1px; + border-color: #bcb0b0; + background-image: none; + background-color: #e0e0e0; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg-inner { + padding: 0 5px; + border-style: solid; + border-width: 1px; + border-color: #b3b3b3; + background-color: #eeeeee; + color: #222222; + font: normal 11px tahoma, arial, verdana, sans-serif; +} + +/* line 41, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg-text { + padding: 5px 5px 5px 20px; + background-image: url(images/grid/loading.gif); + background-repeat: no-repeat; + background-position: 0 center; +} + +/* line 52, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-rtl.x-mask-msg-text { + padding: 5px 20px 5px 5px; + background-position: right center; +} + +/** + * Creates a visual theme for an Ext.ProgressBar + * + * @param {string} $ui-label + * 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 67, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default { + background-color: #f1f1f1; + border-width: 1px; + height: 20px; + border-color: #8e8e8e; + /**/ + /**/ + /* */ +} +/* line 72, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-content-box .x-progress-default { + height: 18px; +} +/* line 84, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-bar-default { + background-image: none; + background-color: #ababab; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d1d1d1), color-stop(50%, #b8b8b8), color-stop(51%, #ababab), color-stop(100%, #9e9e9e)); + background-image: -webkit-linear-gradient(top, #d1d1d1, #b8b8b8 50%, #ababab 51%, #9e9e9e); + background-image: -moz-linear-gradient(top, #d1d1d1, #b8b8b8 50%, #ababab 51%, #9e9e9e); + background-image: -o-linear-gradient(top, #d1d1d1, #b8b8b8 50%, #ababab 51%, #9e9e9e); + background-image: linear-gradient(top, #d1d1d1, #b8b8b8 50%, #ababab 51%, #9e9e9e); +} +/* line 92, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-nlg .x-progress-default .x-progress-bar-default { + background: repeat-x; + background-image: url(images/progress/progress-default-bg.gif); +} +/* line 99, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-text { + color: white; + font-weight: bold; + font-size: 11px; + text-align: center; + line-height: 18px; +} +/* line 107, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-text-back { + color: #5d5d5d; + line-height: 18px; +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-progress-default .x-progress-bar-default:after { + display: none; + content: "x-slicer:bg:url(images/progress/progress-default-bg.gif)"; +} + +/** + * Creates a visual theme for a 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-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-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-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-disabled + * The text color of the button when the button is disabled + * + * @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-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-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-disabled + * The font-family of the button when the button is disabled + * + * @param {number} $icon-size + * The size of the button icon + * + * @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=false] + * 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 + */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small { + border-color: #bbbbbb; +} + +/* line 137, ../../../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: 2px 2px 2px 2px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #f8f8f8; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eeeeee)); + background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee); + background-image: -moz-linear-gradient(top, #ffffff, #eeeeee); + background-image: -o-linear-gradient(top, #ffffff, #eeeeee); + background-image: linear-gradient(top, #ffffff, #eeeeee); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mc { + background-image: url(images/btn/btn-default-small-fbg.gif); + background-position: 0 top; + background-color: #f8f8f8; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-small { + background-image: url(images/btn/btn-default-small-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tr, +.x-btn-default-small-br, +.x-btn-default-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl, +.x-btn-default-small-bl, +.x-btn-default-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl, +.x-btn-default-small-bl, +.x-btn-default-small-tr, +.x-btn-default-small-br, +.x-btn-default-small-tc, +.x-btn-default-small-bc, +.x-btn-default-small-ml, +.x-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-ml, +.x-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-small-tl, +.x-strict .x-ie7 .x-btn-default-small-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 4px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow-right { + padding-right: 12px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-glyph { + font-size: 16px; + line-height: 16px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-small .x-btn-glyph { + color: #959595; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled { + border-color: #d7d7d7; + background-image: none; + background-color: #ececec; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f4f4f4), color-stop(100%, #e2e2e2)); + background-image: -webkit-linear-gradient(top, #f4f4f4, #e2e2e2); + background-image: -moz-linear-gradient(top, #f4f4f4, #e2e2e2); + background-image: -o-linear-gradient(top, #f4f4f4, #e2e2e2); + background-image: linear-gradient(top, #f4f4f4, #e2e2e2); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-button, +.x-btn-default-small-noicon .x-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-inner, +.x-btn-default-small-noicon .x-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-small-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-small-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 4px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-inner { + line-height: 16px; + padding-left: 20px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-rtl.x-btn-inner { + padding-left: 4px; + padding-right: 20px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 20px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-small-icon-text-left .x-btn-icon-el { + height: 16px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-inner { + line-height: 16px; + padding-right: 20px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-rtl.x-btn-inner { + padding-right: 4px; + padding-left: 20px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-small-icon-text-right .x-btn-icon-el { + height: 16px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-top .x-btn-inner { + padding-top: 20px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-top .x-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-bottom .x-btn-inner { + padding-bottom: 20px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-bottom .x-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active, +.x-btn-default-small-pressed { + border-color: #9d9d9d; + background-image: none; + background-color: #d6d6d6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0)); + background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: linear-gradient(top, #c7c7c7, #e0e0e0); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-tl, +.x-btn-default-small-over .x-frame-bl, +.x-btn-default-small-over .x-frame-tr, +.x-btn-default-small-over .x-frame-br, +.x-btn-default-small-over .x-frame-tc, +.x-btn-default-small-over .x-frame-bc { + background-image: url(images/btn/btn-default-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-ml, +.x-btn-default-small-over .x-frame-mr { + background-image: url(images/btn/btn-default-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-tl, +.x-btn-default-small-focus .x-frame-bl, +.x-btn-default-small-focus .x-frame-tr, +.x-btn-default-small-focus .x-frame-br, +.x-btn-default-small-focus .x-frame-tc, +.x-btn-default-small-focus .x-frame-bc { + background-image: url(images/btn/btn-default-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-ml, +.x-btn-default-small-focus .x-frame-mr { + background-image: url(images/btn/btn-default-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-tl, +.x-btn-default-small-menu-active .x-frame-bl, +.x-btn-default-small-menu-active .x-frame-tr, +.x-btn-default-small-menu-active .x-frame-br, +.x-btn-default-small-menu-active .x-frame-tc, +.x-btn-default-small-menu-active .x-frame-bc, +.x-btn-default-small-pressed .x-frame-tl, +.x-btn-default-small-pressed .x-frame-bl, +.x-btn-default-small-pressed .x-frame-tr, +.x-btn-default-small-pressed .x-frame-br, +.x-btn-default-small-pressed .x-frame-tc, +.x-btn-default-small-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-ml, +.x-btn-default-small-menu-active .x-frame-mr, +.x-btn-default-small-pressed .x-frame-ml, +.x-btn-default-small-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-mc, +.x-btn-default-small-pressed .x-frame-mc { + background-color: #d6d6d6; + background-image: url(images/btn/btn-default-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-tl, +.x-btn-default-small-disabled .x-frame-bl, +.x-btn-default-small-disabled .x-frame-tr, +.x-btn-default-small-disabled .x-frame-br, +.x-btn-default-small-disabled .x-frame-tc, +.x-btn-default-small-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-ml, +.x-btn-default-small-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-mc { + background-color: #ececec; + background-image: url(images/btn/btn-default-small-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-over { + background-image: url(images/btn/btn-default-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-focus { + background-image: url(images/btn/btn-default-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-menu-active, +.x-nlg .x-btn-default-small-pressed { + background-image: url(images/btn/btn-default-small-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-disabled { + background-image: url(images/btn/btn-default-small-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 14px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-rtl.gif); + padding-right: 0; + padding-left: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-btn-inner, +.x-btn-default-small-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium { + border-color: #bbbbbb; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #f8f8f8; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eeeeee)); + background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee); + background-image: -moz-linear-gradient(top, #ffffff, #eeeeee); + background-image: -o-linear-gradient(top, #ffffff, #eeeeee); + background-image: linear-gradient(top, #ffffff, #eeeeee); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mc { + background-image: url(images/btn/btn-default-medium-fbg.gif); + background-position: 0 top; + background-color: #f8f8f8; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-medium { + background-image: url(images/btn/btn-default-medium-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tr, +.x-btn-default-medium-br, +.x-btn-default-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl, +.x-btn-default-medium-bl, +.x-btn-default-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl, +.x-btn-default-medium-bl, +.x-btn-default-medium-tr, +.x-btn-default-medium-br, +.x-btn-default-medium-tc, +.x-btn-default-medium-bc, +.x-btn-default-medium-ml, +.x-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-ml, +.x-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-medium-tl, +.x-strict .x-ie7 .x-btn-default-medium-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow-right { + padding-right: 12px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-glyph { + font-size: 24px; + line-height: 24px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-medium .x-btn-glyph { + color: #959595; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled { + border-color: #d7d7d7; + background-image: none; + background-color: #ececec; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f4f4f4), color-stop(100%, #e2e2e2)); + background-image: -webkit-linear-gradient(top, #f4f4f4, #e2e2e2); + background-image: -moz-linear-gradient(top, #f4f4f4, #e2e2e2); + background-image: -o-linear-gradient(top, #f4f4f4, #e2e2e2); + background-image: linear-gradient(top, #f4f4f4, #e2e2e2); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-button, +.x-btn-default-medium-noicon .x-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-inner, +.x-btn-default-medium-noicon .x-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-medium-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-medium-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-inner { + line-height: 24px; + padding-left: 28px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-rtl.x-btn-inner { + padding-left: 3px; + padding-right: 28px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 28px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon-el { + height: 24px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-inner { + line-height: 24px; + padding-right: 28px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 28px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon-el { + height: 24px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-top .x-btn-inner { + padding-top: 28px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-top .x-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-bottom .x-btn-inner { + padding-bottom: 28px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-bottom .x-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active, +.x-btn-default-medium-pressed { + border-color: #9d9d9d; + background-image: none; + background-color: #d6d6d6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0)); + background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: linear-gradient(top, #c7c7c7, #e0e0e0); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-tl, +.x-btn-default-medium-over .x-frame-bl, +.x-btn-default-medium-over .x-frame-tr, +.x-btn-default-medium-over .x-frame-br, +.x-btn-default-medium-over .x-frame-tc, +.x-btn-default-medium-over .x-frame-bc { + background-image: url(images/btn/btn-default-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-ml, +.x-btn-default-medium-over .x-frame-mr { + background-image: url(images/btn/btn-default-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-tl, +.x-btn-default-medium-focus .x-frame-bl, +.x-btn-default-medium-focus .x-frame-tr, +.x-btn-default-medium-focus .x-frame-br, +.x-btn-default-medium-focus .x-frame-tc, +.x-btn-default-medium-focus .x-frame-bc { + background-image: url(images/btn/btn-default-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-ml, +.x-btn-default-medium-focus .x-frame-mr { + background-image: url(images/btn/btn-default-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-tl, +.x-btn-default-medium-menu-active .x-frame-bl, +.x-btn-default-medium-menu-active .x-frame-tr, +.x-btn-default-medium-menu-active .x-frame-br, +.x-btn-default-medium-menu-active .x-frame-tc, +.x-btn-default-medium-menu-active .x-frame-bc, +.x-btn-default-medium-pressed .x-frame-tl, +.x-btn-default-medium-pressed .x-frame-bl, +.x-btn-default-medium-pressed .x-frame-tr, +.x-btn-default-medium-pressed .x-frame-br, +.x-btn-default-medium-pressed .x-frame-tc, +.x-btn-default-medium-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-ml, +.x-btn-default-medium-menu-active .x-frame-mr, +.x-btn-default-medium-pressed .x-frame-ml, +.x-btn-default-medium-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-mc, +.x-btn-default-medium-pressed .x-frame-mc { + background-color: #d6d6d6; + background-image: url(images/btn/btn-default-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-tl, +.x-btn-default-medium-disabled .x-frame-bl, +.x-btn-default-medium-disabled .x-frame-tr, +.x-btn-default-medium-disabled .x-frame-br, +.x-btn-default-medium-disabled .x-frame-tc, +.x-btn-default-medium-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-ml, +.x-btn-default-medium-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-mc { + background-color: #ececec; + background-image: url(images/btn/btn-default-medium-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-over { + background-image: url(images/btn/btn-default-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-focus { + background-image: url(images/btn/btn-default-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-menu-active, +.x-nlg .x-btn-default-medium-pressed { + background-image: url(images/btn/btn-default-medium-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-disabled { + background-image: url(images/btn/btn-default-medium-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 14px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-rtl.gif); + padding-right: 0; + padding-left: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-btn-inner, +.x-btn-default-medium-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large { + border-color: #bbbbbb; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #f8f8f8; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eeeeee)); + background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee); + background-image: -moz-linear-gradient(top, #ffffff, #eeeeee); + background-image: -o-linear-gradient(top, #ffffff, #eeeeee); + background-image: linear-gradient(top, #ffffff, #eeeeee); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mc { + background-image: url(images/btn/btn-default-large-fbg.gif); + background-position: 0 top; + background-color: #f8f8f8; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-large { + background-image: url(images/btn/btn-default-large-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tr, +.x-btn-default-large-br, +.x-btn-default-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl, +.x-btn-default-large-bl, +.x-btn-default-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl, +.x-btn-default-large-bl, +.x-btn-default-large-tr, +.x-btn-default-large-br, +.x-btn-default-large-tc, +.x-btn-default-large-bc, +.x-btn-default-large-ml, +.x-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-ml, +.x-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-large-tl, +.x-strict .x-ie7 .x-btn-default-large-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow-right { + padding-right: 12px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-glyph { + font-size: 32px; + line-height: 32px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-large .x-btn-glyph { + color: #959595; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled { + border-color: #d7d7d7; + background-image: none; + background-color: #ececec; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f4f4f4), color-stop(100%, #e2e2e2)); + background-image: -webkit-linear-gradient(top, #f4f4f4, #e2e2e2); + background-image: -moz-linear-gradient(top, #f4f4f4, #e2e2e2); + background-image: -o-linear-gradient(top, #f4f4f4, #e2e2e2); + background-image: linear-gradient(top, #f4f4f4, #e2e2e2); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-button, +.x-btn-default-large-noicon .x-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-inner, +.x-btn-default-large-noicon .x-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-large-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-large-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-inner { + line-height: 32px; + padding-left: 36px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-rtl.x-btn-inner { + padding-left: 3px; + padding-right: 36px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 36px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-large-icon-text-left .x-btn-icon-el { + height: 32px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-inner { + line-height: 32px; + padding-right: 36px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 36px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-large-icon-text-right .x-btn-icon-el { + height: 32px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-top .x-btn-inner { + padding-top: 36px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-top .x-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-bottom .x-btn-inner { + padding-bottom: 36px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-bottom .x-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active, +.x-btn-default-large-pressed { + border-color: #9d9d9d; + background-image: none; + background-color: #d6d6d6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0)); + background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: linear-gradient(top, #c7c7c7, #e0e0e0); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-tl, +.x-btn-default-large-over .x-frame-bl, +.x-btn-default-large-over .x-frame-tr, +.x-btn-default-large-over .x-frame-br, +.x-btn-default-large-over .x-frame-tc, +.x-btn-default-large-over .x-frame-bc { + background-image: url(images/btn/btn-default-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-ml, +.x-btn-default-large-over .x-frame-mr { + background-image: url(images/btn/btn-default-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-tl, +.x-btn-default-large-focus .x-frame-bl, +.x-btn-default-large-focus .x-frame-tr, +.x-btn-default-large-focus .x-frame-br, +.x-btn-default-large-focus .x-frame-tc, +.x-btn-default-large-focus .x-frame-bc { + background-image: url(images/btn/btn-default-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-ml, +.x-btn-default-large-focus .x-frame-mr { + background-image: url(images/btn/btn-default-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-tl, +.x-btn-default-large-menu-active .x-frame-bl, +.x-btn-default-large-menu-active .x-frame-tr, +.x-btn-default-large-menu-active .x-frame-br, +.x-btn-default-large-menu-active .x-frame-tc, +.x-btn-default-large-menu-active .x-frame-bc, +.x-btn-default-large-pressed .x-frame-tl, +.x-btn-default-large-pressed .x-frame-bl, +.x-btn-default-large-pressed .x-frame-tr, +.x-btn-default-large-pressed .x-frame-br, +.x-btn-default-large-pressed .x-frame-tc, +.x-btn-default-large-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-ml, +.x-btn-default-large-menu-active .x-frame-mr, +.x-btn-default-large-pressed .x-frame-ml, +.x-btn-default-large-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-mc, +.x-btn-default-large-pressed .x-frame-mc { + background-color: #d6d6d6; + background-image: url(images/btn/btn-default-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-tl, +.x-btn-default-large-disabled .x-frame-bl, +.x-btn-default-large-disabled .x-frame-tr, +.x-btn-default-large-disabled .x-frame-br, +.x-btn-default-large-disabled .x-frame-tc, +.x-btn-default-large-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-ml, +.x-btn-default-large-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-mc { + background-color: #ececec; + background-image: url(images/btn/btn-default-large-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-over { + background-image: url(images/btn/btn-default-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-focus { + background-image: url(images/btn/btn-default-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-menu-active, +.x-nlg .x-btn-default-large-pressed { + background-image: url(images/btn/btn-default-large-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-disabled { + background-image: url(images/btn/btn-default-large-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-split-right { + background-image: url(images/button/s-arrow.gif); + padding-right: 14px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-rtl.gif); + padding-right: 0; + padding-left: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 753, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-btn-inner, +.x-btn-default-large-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small { + border-color: transparent; +} + +/* line 137, ../../../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: 2px 2px 2px 2px; + border-width: 1px; + border-style: solid; + background-color: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tr, +.x-btn-default-toolbar-small-br, +.x-btn-default-toolbar-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl, +.x-btn-default-toolbar-small-bl, +.x-btn-default-toolbar-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl, +.x-btn-default-toolbar-small-bl, +.x-btn-default-toolbar-small-tr, +.x-btn-default-toolbar-small-br, +.x-btn-default-toolbar-small-tc, +.x-btn-default-toolbar-small-bc, +.x-btn-default-toolbar-small-ml, +.x-btn-default-toolbar-small-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-ml, +.x-btn-default-toolbar-small-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-small-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-small-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 4px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow-right { + padding-right: 12px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-glyph { + font-size: 16px; + line-height: 16px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-small .x-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled { + border-color: #d7d7d7; + background-image: none; + background-color: transparent; +} +/* line 317, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-btn-inner { + color: #8c8c8c; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-button, +.x-btn-default-toolbar-small-noicon .x-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 4px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-inner { + line-height: 16px; + padding-left: 20px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-rtl.x-btn-inner { + padding-left: 4px; + padding-right: 20px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 20px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el { + height: 16px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-inner { + line-height: 16px; + padding-right: 20px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-rtl.x-btn-inner { + padding-right: 4px; + padding-left: 20px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el { + height: 16px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-top .x-btn-inner { + padding-top: 20px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner { + padding-bottom: 20px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active, +.x-btn-default-toolbar-small-pressed { + border-color: #9d9d9d; + background-image: none; + background-color: #d6d6d6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0)); + background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: linear-gradient(top, #c7c7c7, #e0e0e0); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-tl, +.x-btn-default-toolbar-small-over .x-frame-bl, +.x-btn-default-toolbar-small-over .x-frame-tr, +.x-btn-default-toolbar-small-over .x-frame-br, +.x-btn-default-toolbar-small-over .x-frame-tc, +.x-btn-default-toolbar-small-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-ml, +.x-btn-default-toolbar-small-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-toolbar-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-tl, +.x-btn-default-toolbar-small-focus .x-frame-bl, +.x-btn-default-toolbar-small-focus .x-frame-tr, +.x-btn-default-toolbar-small-focus .x-frame-br, +.x-btn-default-toolbar-small-focus .x-frame-tc, +.x-btn-default-toolbar-small-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-ml, +.x-btn-default-toolbar-small-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-toolbar-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-tl, +.x-btn-default-toolbar-small-menu-active .x-frame-bl, +.x-btn-default-toolbar-small-menu-active .x-frame-tr, +.x-btn-default-toolbar-small-menu-active .x-frame-br, +.x-btn-default-toolbar-small-menu-active .x-frame-tc, +.x-btn-default-toolbar-small-menu-active .x-frame-bc, +.x-btn-default-toolbar-small-pressed .x-frame-tl, +.x-btn-default-toolbar-small-pressed .x-frame-bl, +.x-btn-default-toolbar-small-pressed .x-frame-tr, +.x-btn-default-toolbar-small-pressed .x-frame-br, +.x-btn-default-toolbar-small-pressed .x-frame-tc, +.x-btn-default-toolbar-small-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-ml, +.x-btn-default-toolbar-small-menu-active .x-frame-mr, +.x-btn-default-toolbar-small-pressed .x-frame-ml, +.x-btn-default-toolbar-small-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-mc, +.x-btn-default-toolbar-small-pressed .x-frame-mc { + background-color: #d6d6d6; + background-image: url(images/btn/btn-default-toolbar-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-tl, +.x-btn-default-toolbar-small-disabled .x-frame-bl, +.x-btn-default-toolbar-small-disabled .x-frame-tr, +.x-btn-default-toolbar-small-disabled .x-frame-br, +.x-btn-default-toolbar-small-disabled .x-frame-tc, +.x-btn-default-toolbar-small-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-ml, +.x-btn-default-toolbar-small-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-mc { + background-color: transparent; +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-over { + background-image: url(images/btn/btn-default-toolbar-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-focus { + background-image: url(images/btn/btn-default-toolbar-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-menu-active, +.x-nlg .x-btn-default-toolbar-small-pressed { + background-image: url(images/btn/btn-default-toolbar-small-pressed-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 14px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-noline-rtl.gif); + padding-right: 0; + padding-left: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium { + border-color: transparent; +} + +/* line 137, ../../../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: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tr, +.x-btn-default-toolbar-medium-br, +.x-btn-default-toolbar-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl, +.x-btn-default-toolbar-medium-bl, +.x-btn-default-toolbar-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl, +.x-btn-default-toolbar-medium-bl, +.x-btn-default-toolbar-medium-tr, +.x-btn-default-toolbar-medium-br, +.x-btn-default-toolbar-medium-tc, +.x-btn-default-toolbar-medium-bc, +.x-btn-default-toolbar-medium-ml, +.x-btn-default-toolbar-medium-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-ml, +.x-btn-default-toolbar-medium-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-medium-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-medium-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow-right { + padding-right: 12px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-glyph { + font-size: 24px; + line-height: 24px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-medium .x-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled { + border-color: #d7d7d7; + background-image: none; + background-color: transparent; +} +/* line 317, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-btn-inner { + color: #8c8c8c; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-button, +.x-btn-default-toolbar-medium-noicon .x-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-inner { + line-height: 24px; + padding-left: 28px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-rtl.x-btn-inner { + padding-left: 3px; + padding-right: 28px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 28px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el { + height: 24px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-inner { + line-height: 24px; + padding-right: 28px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 28px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el { + height: 24px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-top .x-btn-inner { + padding-top: 28px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner { + padding-bottom: 28px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active, +.x-btn-default-toolbar-medium-pressed { + border-color: #9d9d9d; + background-image: none; + background-color: #d6d6d6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0)); + background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: linear-gradient(top, #c7c7c7, #e0e0e0); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-tl, +.x-btn-default-toolbar-medium-over .x-frame-bl, +.x-btn-default-toolbar-medium-over .x-frame-tr, +.x-btn-default-toolbar-medium-over .x-frame-br, +.x-btn-default-toolbar-medium-over .x-frame-tc, +.x-btn-default-toolbar-medium-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-ml, +.x-btn-default-toolbar-medium-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-toolbar-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-tl, +.x-btn-default-toolbar-medium-focus .x-frame-bl, +.x-btn-default-toolbar-medium-focus .x-frame-tr, +.x-btn-default-toolbar-medium-focus .x-frame-br, +.x-btn-default-toolbar-medium-focus .x-frame-tc, +.x-btn-default-toolbar-medium-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-ml, +.x-btn-default-toolbar-medium-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-toolbar-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-tl, +.x-btn-default-toolbar-medium-menu-active .x-frame-bl, +.x-btn-default-toolbar-medium-menu-active .x-frame-tr, +.x-btn-default-toolbar-medium-menu-active .x-frame-br, +.x-btn-default-toolbar-medium-menu-active .x-frame-tc, +.x-btn-default-toolbar-medium-menu-active .x-frame-bc, +.x-btn-default-toolbar-medium-pressed .x-frame-tl, +.x-btn-default-toolbar-medium-pressed .x-frame-bl, +.x-btn-default-toolbar-medium-pressed .x-frame-tr, +.x-btn-default-toolbar-medium-pressed .x-frame-br, +.x-btn-default-toolbar-medium-pressed .x-frame-tc, +.x-btn-default-toolbar-medium-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-ml, +.x-btn-default-toolbar-medium-menu-active .x-frame-mr, +.x-btn-default-toolbar-medium-pressed .x-frame-ml, +.x-btn-default-toolbar-medium-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-mc, +.x-btn-default-toolbar-medium-pressed .x-frame-mc { + background-color: #d6d6d6; + background-image: url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-tl, +.x-btn-default-toolbar-medium-disabled .x-frame-bl, +.x-btn-default-toolbar-medium-disabled .x-frame-tr, +.x-btn-default-toolbar-medium-disabled .x-frame-br, +.x-btn-default-toolbar-medium-disabled .x-frame-tc, +.x-btn-default-toolbar-medium-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-ml, +.x-btn-default-toolbar-medium-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-mc { + background-color: transparent; +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-over { + background-image: url(images/btn/btn-default-toolbar-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-focus { + background-image: url(images/btn/btn-default-toolbar-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-menu-active, +.x-nlg .x-btn-default-toolbar-medium-pressed { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 14px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-noline-rtl.gif); + padding-right: 0; + padding-left: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large { + border-color: transparent; +} + +/* line 137, ../../../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: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mc { + background-color: transparent; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tr, +.x-btn-default-toolbar-large-br, +.x-btn-default-toolbar-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl, +.x-btn-default-toolbar-large-bl, +.x-btn-default-toolbar-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl, +.x-btn-default-toolbar-large-bl, +.x-btn-default-toolbar-large-tr, +.x-btn-default-toolbar-large-br, +.x-btn-default-toolbar-large-tc, +.x-btn-default-toolbar-large-bc, +.x-btn-default-toolbar-large-ml, +.x-btn-default-toolbar-large-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-ml, +.x-btn-default-toolbar-large-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-large-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-large-bl { + position: relative; + right: 0; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-inner { + font-size: 11px; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 0 3px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow { + background-image: url(images/button/arrow.gif); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow-right { + padding-right: 12px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 12px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow-bottom { + padding-bottom: 12px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-glyph { + font-size: 32px; + line-height: 32px; + color: #333333; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-large .x-btn-glyph { + color: #999999; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled { + border-color: #d7d7d7; + background-image: none; + background-color: transparent; +} +/* line 317, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-btn-inner { + color: #8c8c8c; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-button, +.x-btn-default-toolbar-large-noicon .x-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-inner { + line-height: 32px; + padding-left: 36px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-rtl.x-btn-inner { + padding-left: 3px; + padding-right: 36px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 36px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el { + height: 32px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-inner { + line-height: 32px; + padding-right: 36px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-rtl.x-btn-inner { + padding-right: 3px; + padding-left: 36px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el { + height: 32px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-top .x-btn-inner { + padding-top: 36px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner { + padding-bottom: 36px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus { + border-color: #9d9d9d; + background-image: none; + background-color: #f3f3f3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fbfbfb), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -moz-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: -o-linear-gradient(top, #fbfbfb, #e9e9e9); + background-image: linear-gradient(top, #fbfbfb, #e9e9e9); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active, +.x-btn-default-toolbar-large-pressed { + border-color: #9d9d9d; + background-image: none; + background-color: #d6d6d6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c7c7c7), color-stop(100%, #e0e0e0)); + background-image: -webkit-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -moz-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: -o-linear-gradient(top, #c7c7c7, #e0e0e0); + background-image: linear-gradient(top, #c7c7c7, #e0e0e0); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-tl, +.x-btn-default-toolbar-large-over .x-frame-bl, +.x-btn-default-toolbar-large-over .x-frame-tr, +.x-btn-default-toolbar-large-over .x-frame-br, +.x-btn-default-toolbar-large-over .x-frame-tc, +.x-btn-default-toolbar-large-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-ml, +.x-btn-default-toolbar-large-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-toolbar-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-tl, +.x-btn-default-toolbar-large-focus .x-frame-bl, +.x-btn-default-toolbar-large-focus .x-frame-tr, +.x-btn-default-toolbar-large-focus .x-frame-br, +.x-btn-default-toolbar-large-focus .x-frame-tc, +.x-btn-default-toolbar-large-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-ml, +.x-btn-default-toolbar-large-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-mc { + background-color: #f3f3f3; + background-image: url(images/btn/btn-default-toolbar-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-tl, +.x-btn-default-toolbar-large-menu-active .x-frame-bl, +.x-btn-default-toolbar-large-menu-active .x-frame-tr, +.x-btn-default-toolbar-large-menu-active .x-frame-br, +.x-btn-default-toolbar-large-menu-active .x-frame-tc, +.x-btn-default-toolbar-large-menu-active .x-frame-bc, +.x-btn-default-toolbar-large-pressed .x-frame-tl, +.x-btn-default-toolbar-large-pressed .x-frame-bl, +.x-btn-default-toolbar-large-pressed .x-frame-tr, +.x-btn-default-toolbar-large-pressed .x-frame-br, +.x-btn-default-toolbar-large-pressed .x-frame-tc, +.x-btn-default-toolbar-large-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-ml, +.x-btn-default-toolbar-large-menu-active .x-frame-mr, +.x-btn-default-toolbar-large-pressed .x-frame-ml, +.x-btn-default-toolbar-large-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-mc, +.x-btn-default-toolbar-large-pressed .x-frame-mc { + background-color: #d6d6d6; + background-image: url(images/btn/btn-default-toolbar-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-tl, +.x-btn-default-toolbar-large-disabled .x-frame-bl, +.x-btn-default-toolbar-large-disabled .x-frame-tr, +.x-btn-default-toolbar-large-disabled .x-frame-br, +.x-btn-default-toolbar-large-disabled .x-frame-tc, +.x-btn-default-toolbar-large-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-ml, +.x-btn-default-toolbar-large-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-mc { + background-color: transparent; +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-over { + background-image: url(images/btn/btn-default-toolbar-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-focus { + background-image: url(images/btn/btn-default-toolbar-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-menu-active, +.x-nlg .x-btn-default-toolbar-large-pressed { + background-image: url(images/btn/btn-default-toolbar-large-pressed-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-split-right { + background-image: url(images/button/s-arrow-noline.gif); + padding-right: 14px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-noline-rtl.gif); + padding-right: 0; + padding-left: 14px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-split-bottom { + background-image: url(images/button/s-arrow-b-noline.gif); + padding-bottom: 14px; +} + +/* line 730, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-btn-split-right { + background-image: url(images/button/s-arrow-o.gif); +} +/* line 734, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-rtl.x-btn-split-right { + background-image: url(images/button/s-arrow-o-rtl.gif); +} +/* line 738, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-btn-split-bottom { + background-image: url(images/button/s-arrow-bo.gif); +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 1161, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-left .x-btn-icon-el { + background-position: left center; +} +/* line 1166, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-left .x-rtl.x-btn-icon-el { + background-position: right center; +} + +/* line 1173, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-right .x-btn-icon-el { + background-position: right center; +} +/* line 1178, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-right .x-rtl.x-btn-icon-el { + background-position: left center; +} + +/* line 1184, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-top .x-btn-icon-el { + background-position: center top; +} + +/* line 1188, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-bottom .x-btn-icon-el { + background-position: center bottom; +} + +/* line 1192, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow-right { + background-position: right center; +} + +/* line 1197, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-rtl.x-btn-arrow-right { + background-position: left center; +} + +/* line 1202, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow-bottom { + background-position: center bottom; +} + +/* line 1206, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow { + background-repeat: no-repeat; +} + +/* line 1211, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split { + display: block; + background-repeat: no-repeat; +} + +/* line 1216, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split-right { + background-position: right center; +} + +/* line 1221, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-rtl.x-btn-split-right { + background-position: 0 center; +} + +/* line 1226, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split-bottom { + background-position: center bottom; +} + +/* line 1230, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-cycle-fixed-width .x-btn-inner { + text-align: inherit; +} + +/** + * Creates a visual theme for a Toolbar. + * @param {String} $ui + * The name of the UI + * + * @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 {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 {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-disabled=$toolbar-scroller-opacity-disabled] + * The opacity of disabled Toolbar scrollers + * + * @param {string} [$tool-background-image=$toolbar-tool-background-image] + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + * + * @member Ext.toolbar.Toolbar + */ +/* line 94, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar { + font-size: 11px; + border-style: solid; + padding: 2px 0 2px 2px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-item { + margin: 0 2px 0 0; +} + +/* line 107, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-rtl.x-toolbar-item { + margin: 0 0 0 2px; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-text { + margin: 0 6px 0 4px; + color: black; + line-height: 16px; + font-family: tahoma, arial, verdana, sans-serif; + font-size: 11px; + font-weight: normal; +} + +/* line 121, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-separator-horizontal { + margin: 0 2px 0 0; + height: 14px; + border-style: solid; + border-width: 0 1px; + border-left-color: #aca899; + border-right-color: white; +} + +/* line 132, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-rtl.x-toolbar { + padding: 2px 2px 2px 0; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-footer { + background: transparent; + border: 0; + margin: 3px 0 0; + padding: 2px 0 2px 6px; +} +/* line 144, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-footer .x-toolbar-item { + margin: 0 6px 0 0; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-spacer { + width: 2px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-more-icon { + background-image: url(images/toolbar/more.gif) !important; + background-position: center center !important; + background-repeat: no-repeat; +} + +/* line 45, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default { + border-color: #bcb0b0; + border-width: 1px; + background-image: none; + background-color: #d8d8d8; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e6e6e6), color-stop(100%, #efefef)); + background-image: -webkit-linear-gradient(top, #e6e6e6, #efefef); + background-image: -moz-linear-gradient(top, #e6e6e6, #efefef); + background-image: -o-linear-gradient(top, #e6e6e6, #efefef); + background-image: linear-gradient(top, #e6e6e6, #efefef); +} +/* line 51, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller { + cursor: pointer; +} +/* line 55, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + cursor: default; +} + +/* line 82, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-nlg .x-toolbar-default { + background-image: url(images/toolbar/toolbar-default-bg.gif) !important; + background-repeat: repeat-x; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-toolbar-default:after { + display: none; + content: "x-slicer:bg:url(images/toolbar/toolbar-default-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/* line 166, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-left { + background-image: url(images/toolbar/scroll-left.gif); + background-position: -14px 0; + width: 14px; + height: 22px; + border-style: solid; + border-color: #8db2e3; + border-width: 0 0 1px; + margin-top: 0; +} + +/* line 177, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-left-hover { + background-position: 0 0; +} + +/* line 181, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-right { + background-image: url(images/toolbar/scroll-right.gif); + width: 14px; + height: 22px; + border-style: solid; + border-color: #8db2e3; + border-width: 0 0 1px; + margin-top: 0; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-right-hover { + background-position: -14px 0; +} + +/* line 195, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar .x-box-menu-after { + margin: 0 2px 0 2px; +} + +/* line 199, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical { + padding: 2px 2px 0 2px; +} +/* line 202, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-item { + margin: 0 0 2px 0; +} +/* line 206, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-text { + margin: 4px 0 6px 0; +} +/* line 210, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-separator-vertical { + margin: 0 5px 2px; + border-style: solid none; + border-width: 1px 0; + border-top-color: #aca899; + border-bottom-color: white; +} +/* line 219, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-box-menu-after, +.x-toolbar-vertical .x-rtl.x-box-menu-after { + margin: 2px 0 2px 0; + display: block; + float: none; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x-header-draggable .x-header-body, +.x-header-ghost { + cursor: move; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x-header-text { + white-space: nowrap; +} + +/** + * Creates a visual theme for a Panel + * + * @param {string} $ui-label + * 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 {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-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`. + * + * @member Ext.panel.Panel + */ +/* line 736, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65); + opacity: 0.65; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default { + border-color: #d0d0d0; + padding: 0; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default { + font-size: 11px; + border: 1px solid #d0d0d0; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal { + padding: 4px 5px 4px 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal-noborder { + padding: 5px 6px 4px 6px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical-noborder { + padding: 6px 5px 6px 4px; +} + +/* line 249, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-vertical-noborder { + padding: 6px 4px 6px 5px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-default { + color: #333333; + font-size: 11px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + line-height: 15px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-default { + background: white; + border-color: #d0d0d0; + color: black; + font-size: 12px; + font-size: normal; + border-width: 1px; + border-style: solid; +} + +/* line 432, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default { + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: linear-gradient(top, #f0f0f0, #d7d7d7); +} + +/* line 436, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical { + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: linear-gradient(right, #f0f0f0, #d7d7d7); +} + +/* line 441, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-vertical { + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(left, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(left, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(left, #f0f0f0, #d7d7d7); + background-image: linear-gradient(left, #f0f0f0, #d7d7d7); +} + +/* line 454, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-top { + background: url(images/panel-header/panel-header-default-top-bg.gif); +} +/* line 459, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-bottom { + background: url(images/panel-header/panel-header-default-bottom-bg.gif); +} +/* line 464, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-left { + background: url(images/panel-header/panel-header-default-left-bg.gif) top right; +} +/* line 469, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-default-right { + background: url(images/panel-header/panel-header-default-right-bg.gif) top right; +} +/* line 476, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-rtl.x-panel-header-default-left { + background: url(images/panel-header/panel-header-default-left-bg-rtl.gif); +} +/* line 480, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nlg .x-rtl.x-panel-header-default-right { + background: url(images/panel-header/panel-header-default-right-bg-rtl.gif); +} + +/* line 494, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-top { + border-bottom-width: 1px !important; +} +/* line 498, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-right { + border-left-width: 1px !important; +} +/* line 502, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-bottom { + border-top-width: 1px !important; +} +/* line 506, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-left { + border-right-width: 1px !important; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-top:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-top-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-bottom:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-bottom-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-left:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-left-bg-rtl.gif), stretch:left"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-right:after { + display: none; + content: "x-slicer:bg:url(images/panel-header/panel-header-default-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-right-bg-rtl.gif), stretch:left"; +} + +/**/ +/* */ +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-vertical .x-panel-header-text-container { + background-color: #d7d2d2; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#d7d2d2); +} + +/* line 527, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-rtl.x-panel-header-text-container { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-vertical .x-rtl.x-panel-header-text-container { + background-color: #d7d2d2; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#d7d2d2); +} + +/* line 533, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-top { + -webkit-box-shadow: #ececec 0 1px 0px 0 inset; + -moz-box-shadow: #ececec 0 1px 0px 0 inset; + box-shadow: #ececec 0 1px 0px 0 inset; +} + +/* line 537, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-right { + -webkit-box-shadow: #ececec -1px 0 0px 0 inset; + -moz-box-shadow: #ececec -1px 0 0px 0 inset; + box-shadow: #ececec -1px 0 0px 0 inset; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-bottom { + -webkit-box-shadow: #ececec 0 -1px 0px 0 inset; + -moz-box-shadow: #ececec 0 -1px 0px 0 inset; + box-shadow: #ececec 0 -1px 0px 0 inset; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-left { + -webkit-box-shadow: #ececec 1px 0 0px 0 inset; + -moz-box-shadow: #ececec 1px 0 0px 0 inset; + box-shadow: #ececec 1px 0 0px 0 inset; +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default .x-panel-header-glyph { + color: #333333; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-default .x-panel-header-glyph { + color: #858282; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-panel-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 585, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 0 2px; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 2px; +} +/* line 595, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-rtl.x-panel-header-icon-after-title { + margin: 0 2px 0 0; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 607, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-icon-after-title { + margin: 2px 0 0 0; +} +/* line 617, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-rtl.x-panel-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-tool-after-title { + margin: 0 0 0 2px; +} +/* line 630, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-rtl.x-tool-after-title { + margin: 0 2px 0 0; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-tool-before-title { + margin: 0 2px 0 0; +} +/* line 640, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-rtl.x-tool-before-title { + margin: 0 0 0 2px; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 652, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-rtl.x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-tool-before-title { + margin: 0 0 2px 0; +} +/* line 662, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-rtl.x-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 670, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-collapsed-border-right { + border-right-width: 1px !important; +} +/* line 673, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-collapsed-border-left { + border-left-width: 1px !important; +} + +/* line 687, ../../../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 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed { + border-color: #d0d0d0; + padding: 4px; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed { + font-size: 11px; + border: 1px solid #d0d0d0; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal { + padding: 4px 5px 4px 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal-noborder { + padding: 5px 6px 4px 6px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical-noborder { + padding: 6px 5px 6px 4px; +} + +/* line 249, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-framed-vertical { + padding: 5px 4px 5px 4px; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-framed-vertical-noborder { + padding: 6px 4px 6px 5px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-default-framed { + color: #333333; + font-size: 11px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + line-height: 15px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-default-framed { + background: #f1f1f1; + border-color: #d0d0d0; + color: black; + font-size: 12px; + font-size: normal; + border-width: 0; + border-style: solid; +} + +/* line 137, ../../../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: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: #f1f1f1; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mc { + background-color: #f1f1f1; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-default-framed-frameInfo { + font-family: dh-4-4-4-4-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tr, +.x-panel-default-framed-br, +.x-panel-default-framed-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl, +.x-panel-default-framed-bl, +.x-panel-default-framed-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl, +.x-panel-default-framed-bl, +.x-panel-default-framed-tr, +.x-panel-default-framed-br, +.x-panel-default-framed-tc, +.x-panel-default-framed-bc, +.x-panel-default-framed-ml, +.x-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-ml, +.x-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-default-framed-tl, +.x-strict .x-ie7 .x-panel-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 5px 4px 5px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: linear-gradient(top, #f0f0f0, #d7d7d7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mc { + background-image: url(images/panel-header/panel-header-default-framed-top-fbg.gif); + background-position: 0 top; + background-color: #d7d2d2; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-top { + background-image: url(images/panel-header/panel-header-default-framed-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-top-frameInfo { + font-family: dh-4-4-0-0-1-1-0-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tr, +.x-panel-header-default-framed-top-br, +.x-panel-header-default-framed-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl, +.x-panel-header-default-framed-top-bl, +.x-panel-header-default-framed-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl, +.x-panel-header-default-framed-top-bl, +.x-panel-header-default-framed-top-tr, +.x-panel-header-default-framed-top-br, +.x-panel-header-default-framed-top-tc, +.x-panel-header-default-framed-top-bc, +.x-panel-header-default-framed-top-ml, +.x-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-ml, +.x-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mc { + padding: 1px 2px 4px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-top-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 4px 5px 4px; + border-width: 1px 1px 1px 0; + border-style: solid; + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: linear-gradient(right, #f0f0f0, #d7d7d7); +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right { + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(left, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(left, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(left, #f0f0f0, #d7d7d7); + background-image: linear-gradient(left, #f0f0f0, #d7d7d7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-right-fbg.gif); + background-position: right 0; + background-color: #d7d2d2; +} + +/* line 204, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-right-fbg-rtl.gif); + background-position: 0 0; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-right { + background-image: url(images/panel-header/panel-header-default-framed-right-bg.gif); + background-position: right 0; +} +/* line 223, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-rtl.x-panel-header-default-framed-right { + background-image: url(images/panel-header/panel-header-default-framed-right-bg-rtl.gif); + background-position: 0 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-right-frameInfo { + font-family: dv-0-4-4-0-1-1-1-0-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc { + background-position: right 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bc { + background-position: right -4px; +} + +/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right-tc { + background-position: 0 0; +} + +/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tr, +.x-panel-header-default-framed-right-br, +.x-panel-header-default-framed-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl, +.x-panel-header-default-framed-right-bl, +.x-panel-header-default-framed-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl, +.x-panel-header-default-framed-right-bl, +.x-panel-header-default-framed-right-tr, +.x-panel-header-default-framed-right-br, +.x-panel-header-default-framed-right-tc, +.x-panel-header-default-framed-right-bc, +.x-panel-header-default-framed-right-ml, +.x-panel-header-default-framed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right-tl, .x-rtl.x-panel-header-default-framed-right-ml, .x-rtl.x-panel-header-default-framed-right-bl, .x-rtl.x-panel-header-default-framed-right-tr, .x-rtl.x-panel-header-default-framed-right-mr, .x-rtl.x-panel-header-default-framed-right-br { + background-image: url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc, +.x-panel-header-default-framed-right-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-sides.gif); + background-repeat: repeat-x; +} + +/* line 418, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right-tc, .x-rtl.x-panel-header-default-framed-right-bc { + background-image: url(images/panel-header/panel-header-default-framed-right-sides-rtl.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mc { + padding: 2px 1px 2px 4px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-right-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-right:after { + display: none; + content: "x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-right-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-right-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-right-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-right-sides-rtl.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 5px 4px 5px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: linear-gradient(top, #f0f0f0, #d7d7d7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mc { + background-image: url(images/panel-header/panel-header-default-framed-bottom-fbg.gif); + background-position: 0 bottom; + background-color: #d7d2d2; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-bottom { + background-image: url(images/panel-header/panel-header-default-framed-bottom-bg.gif); + background-position: 0 bottom; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-bottom-frameInfo { + font-family: dh-0-0-4-4-0-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tr, +.x-panel-header-default-framed-bottom-br, +.x-panel-header-default-framed-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl, +.x-panel-header-default-framed-bottom-bl, +.x-panel-header-default-framed-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl, +.x-panel-header-default-framed-bottom-bl, +.x-panel-header-default-framed-bottom-tr, +.x-panel-header-default-framed-bottom-br, +.x-panel-header-default-framed-bottom-tc, +.x-panel-header-default-framed-bottom-bc, +.x-panel-header-default-framed-bottom-ml, +.x-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-ml, +.x-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mc { + padding: 4px 2px 1px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-bottom:after { + display: none; + content: "x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 4px 5px 4px; + border-width: 1px 0 1px 1px; + border-style: solid; + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: linear-gradient(right, #f0f0f0, #d7d7d7); +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left { + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(left, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(left, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(left, #f0f0f0, #d7d7d7); + background-image: linear-gradient(left, #f0f0f0, #d7d7d7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-left-fbg.gif); + background-position: left 0; + background-color: #d7d2d2; +} + +/* line 204, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-left-fbg-rtl.gif); + background-position: right 0; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-left { + background-image: url(images/panel-header/panel-header-default-framed-left-bg.gif); + background-position: left 0; +} +/* line 223, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-rtl.x-panel-header-default-framed-left { + background-image: url(images/panel-header/panel-header-default-framed-left-bg-rtl.gif); + background-position: right 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-left-frameInfo { + font-family: dv-4-0-0-4-1-0-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc { + background-position: left 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bc { + background-position: left -4px; +} + +/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left-tc { + background-position: right 0; +} + +/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left-bc { + background-position: right -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tr, +.x-panel-header-default-framed-left-br, +.x-panel-header-default-framed-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl, +.x-panel-header-default-framed-left-bl, +.x-panel-header-default-framed-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl, +.x-panel-header-default-framed-left-bl, +.x-panel-header-default-framed-left-tr, +.x-panel-header-default-framed-left-br, +.x-panel-header-default-framed-left-tc, +.x-panel-header-default-framed-left-bc, +.x-panel-header-default-framed-left-ml, +.x-panel-header-default-framed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left-tl, .x-rtl.x-panel-header-default-framed-left-ml, .x-rtl.x-panel-header-default-framed-left-bl, .x-rtl.x-panel-header-default-framed-left-tr, .x-rtl.x-panel-header-default-framed-left-mr, .x-rtl.x-panel-header-default-framed-left-br { + background-image: url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc, +.x-panel-header-default-framed-left-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-sides.gif); + background-repeat: repeat-x; +} + +/* line 418, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left-tc, .x-rtl.x-panel-header-default-framed-left-bc { + background-image: url(images/panel-header/panel-header-default-framed-left-sides-rtl.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mc { + padding: 2px 4px 2px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-left-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-left:after { + display: none; + content: "x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-left-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-left-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-left-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-left-sides-rtl.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: linear-gradient(top, #f0f0f0, #d7d7d7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif); + background-position: 0 top; + background-color: #d7d2d2; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-top { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-top-frameInfo { + font-family: dh-4-4-4-4-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tr, +.x-panel-header-default-framed-collapsed-top-br, +.x-panel-header-default-framed-collapsed-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl, +.x-panel-header-default-framed-collapsed-top-bl, +.x-panel-header-default-framed-collapsed-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl, +.x-panel-header-default-framed-collapsed-top-bl, +.x-panel-header-default-framed-collapsed-top-tr, +.x-panel-header-default-framed-collapsed-top-br, +.x-panel-header-default-framed-collapsed-top-tc, +.x-panel-header-default-framed-collapsed-top-bc, +.x-panel-header-default-framed-collapsed-top-ml, +.x-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-ml, +.x-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mc { + padding: 1px 2px 1px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: linear-gradient(right, #f0f0f0, #d7d7d7); +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right { + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(left, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(left, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(left, #f0f0f0, #d7d7d7); + background-image: linear-gradient(left, #f0f0f0, #d7d7d7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif); + background-position: right 0; + background-color: #d7d2d2; +} + +/* line 204, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif); + background-position: 0 0; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-right { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif); + background-position: right 0; +} +/* line 223, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-rtl.x-panel-header-default-framed-collapsed-right { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif); + background-position: 0 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-right-frameInfo { + font-family: dv-4-4-4-4-1-1-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc { + background-position: right 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bc { + background-position: right -4px; +} + +/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right-tc { + background-position: 0 0; +} + +/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tr, +.x-panel-header-default-framed-collapsed-right-br, +.x-panel-header-default-framed-collapsed-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl, +.x-panel-header-default-framed-collapsed-right-bl, +.x-panel-header-default-framed-collapsed-right-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl, +.x-panel-header-default-framed-collapsed-right-bl, +.x-panel-header-default-framed-collapsed-right-tr, +.x-panel-header-default-framed-collapsed-right-br, +.x-panel-header-default-framed-collapsed-right-tc, +.x-panel-header-default-framed-collapsed-right-bc, +.x-panel-header-default-framed-collapsed-right-ml, +.x-panel-header-default-framed-collapsed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right-tl, .x-rtl.x-panel-header-default-framed-collapsed-right-ml, .x-rtl.x-panel-header-default-framed-collapsed-right-bl, .x-rtl.x-panel-header-default-framed-collapsed-right-tr, .x-rtl.x-panel-header-default-framed-collapsed-right-mr, .x-rtl.x-panel-header-default-framed-collapsed-right-br { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc, +.x-panel-header-default-framed-collapsed-right-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif); + background-repeat: repeat-x; +} + +/* line 418, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right-tc, .x-rtl.x-panel-header-default-framed-collapsed-right-bc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mc { + padding: 2px 1px 2px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-right:after { + display: none; + content: "x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(top, #f0f0f0, #d7d7d7); + background-image: linear-gradient(top, #f0f0f0, #d7d7d7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif); + background-position: 0 bottom; + background-color: #d7d2d2; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-bottom { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif); + background-position: 0 bottom; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-bottom-frameInfo { + font-family: dh-4-4-4-4-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tr, +.x-panel-header-default-framed-collapsed-bottom-br, +.x-panel-header-default-framed-collapsed-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl, +.x-panel-header-default-framed-collapsed-bottom-bl, +.x-panel-header-default-framed-collapsed-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl, +.x-panel-header-default-framed-collapsed-bottom-bl, +.x-panel-header-default-framed-collapsed-bottom-tr, +.x-panel-header-default-framed-collapsed-bottom-br, +.x-panel-header-default-framed-collapsed-bottom-tc, +.x-panel-header-default-framed-collapsed-bottom-bc, +.x-panel-header-default-framed-collapsed-bottom-ml, +.x-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-ml, +.x-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mc { + padding: 1px 2px 1px 2px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-bottom:after { + display: none; + content: "x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(right, #f0f0f0, #d7d7d7); + background-image: linear-gradient(right, #f0f0f0, #d7d7d7); +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left { + background-image: none; + background-color: #d7d2d2; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #f0f0f0), color-stop(100%, #d7d7d7)); + background-image: -webkit-linear-gradient(left, #f0f0f0, #d7d7d7); + background-image: -moz-linear-gradient(left, #f0f0f0, #d7d7d7); + background-image: -o-linear-gradient(left, #f0f0f0, #d7d7d7); + background-image: linear-gradient(left, #f0f0f0, #d7d7d7); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif); + background-position: left 0; + background-color: #d7d2d2; +} + +/* line 204, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left-mc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif); + background-position: right 0; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-panel-header-default-framed-collapsed-left { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif); + background-position: left 0; +} +/* line 223, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-rtl.x-panel-header-default-framed-collapsed-left { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif); + background-position: right 0; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-left-frameInfo { + font-family: dv-4-4-4-4-1-1-1-1-5-4-5-4; +} + +/* line 279, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl { + background-position: 0 0; +} + +/* line 283, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tr { + background-position: 0 -4px; +} + +/* line 287, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bl { + background-position: 0 -8px; +} + +/* line 291, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-br { + background-position: 0 -12px; +} + +/* line 295, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-ml { + background-position: -4px 0; +} + +/* line 299, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mr { + background-position: right 0; +} + +/* line 303, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc { + background-position: left 0; +} + +/* line 307, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bc { + background-position: left -4px; +} + +/* line 312, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left-tc { + background-position: right 0; +} + +/* line 316, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left-bc { + background-position: right -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tr, +.x-panel-header-default-framed-collapsed-left-br, +.x-panel-header-default-framed-collapsed-left-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl, +.x-panel-header-default-framed-collapsed-left-bl, +.x-panel-header-default-framed-collapsed-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl, +.x-panel-header-default-framed-collapsed-left-bl, +.x-panel-header-default-framed-collapsed-left-tr, +.x-panel-header-default-framed-collapsed-left-br, +.x-panel-header-default-framed-collapsed-left-tc, +.x-panel-header-default-framed-collapsed-left-bc, +.x-panel-header-default-framed-collapsed-left-ml, +.x-panel-header-default-framed-collapsed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left-tl, .x-rtl.x-panel-header-default-framed-collapsed-left-ml, .x-rtl.x-panel-header-default-framed-collapsed-left-bl, .x-rtl.x-panel-header-default-framed-collapsed-left-tr, .x-rtl.x-panel-header-default-framed-collapsed-left-mr, .x-rtl.x-panel-header-default-framed-collapsed-left-br { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif); +} + +/* line 406, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc, +.x-panel-header-default-framed-collapsed-left-bc { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif); + background-repeat: repeat-x; +} + +/* line 418, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left-tc, .x-rtl.x-panel-header-default-framed-collapsed-left-bc { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mc { + padding: 2px 1px 2px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-left:after { + display: none; + content: "x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif)"; +} + +/**/ +/* */ +/* line 396, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-top { + border-bottom-width: 1px !important; +} +/* line 400, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-right { + border-left-width: 1px !important; +} +/* line 404, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-bottom { + border-top-width: 1px !important; +} +/* line 408, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-left { + border-right-width: 1px !important; +} + +/* line 414, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-top { + border-bottom-width: 0 !important; +} +/* line 418, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-right { + border-left-width: 0 !important; +} +/* line 422, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-bottom { + border-top-width: 0 !important; +} +/* line 426, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-left { + border-right-width: 0 !important; +} + +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-framed-vertical .x-panel-header-text-container { + background-color: #d7d2d2; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#d7d2d2); +} + +/* line 527, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-text-container { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-framed-vertical .x-rtl.x-panel-header-text-container { + background-color: #d7d2d2; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#d7d2d2); +} + +/* line 533, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-top { + -webkit-box-shadow: #ececec 0 1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; + -moz-box-shadow: #ececec 0 1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; + box-shadow: #ececec 0 1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; +} + +/* line 537, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-right { + -webkit-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset; + -moz-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset; + box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset; +} + +/* line 541, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-bottom { + -webkit-box-shadow: #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; + -moz-box-shadow: #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; + box-shadow: #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-left { + -webkit-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec 1px 0 0px 0 inset; + -moz-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec 1px 0 0px 0 inset; + box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec 1px 0 0px 0 inset; +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed .x-panel-header-glyph { + color: #333333; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-default-framed .x-panel-header-glyph { + color: #858282; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-panel-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 585, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 0 2px; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 2px; +} +/* line 595, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-rtl.x-panel-header-icon-after-title { + margin: 0 2px 0 0; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 607, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-icon-after-title { + margin: 2px 0 0 0; +} +/* line 617, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-tool-after-title { + margin: 0 0 0 2px; +} +/* line 630, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-rtl.x-tool-after-title { + margin: 0 2px 0 0; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-tool-before-title { + margin: 0 2px 0 0; +} +/* line 640, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-rtl.x-tool-before-title { + margin: 0 0 0 2px; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 652, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-rtl.x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-tool-before-title { + margin: 0 0 2px 0; +} +/* line 662, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-rtl.x-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 670, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-border-right { + border-right-width: 1px !important; +} +/* line 673, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-border-left { + border-left-width: 1px !important; +} + +/* line 687, ../../../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; +} + +/** + * Creates a visual theme for a Ext.tip.Tip + * + * @param {string} $ui-label + * 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-body-padding=$tip-header-body-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 167, ../../../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: #868686; + zoom: 1; +} +/* line 182, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-content-box .x-tip-anchor { + height: 0; + width: 0; +} + +/* line 189, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-top { + border-top-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-bottom { + border-bottom-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-bottom-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-left { + border-top-color: transparent; + border-bottom-color: transparent; + border-left-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-left-color: pink; + _filter: chroma(color=pink); +} + +/* line 228, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-right { + border-top-color: transparent; + border-bottom-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 137, ../../../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: #cccccc; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mc { + background-color: #cccccc; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tip-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tip-default-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tr, +.x-tip-default-br, +.x-tip-default-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl, +.x-tip-default-bl, +.x-tip-default-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl, +.x-tip-default-bl, +.x-tip-default-tr, +.x-tip-default-br, +.x-tip-default-tc, +.x-tip-default-bc, +.x-tip-default-ml, +.x-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-ml, +.x-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tip-default-tl, +.x-strict .x-ie7 .x-tip-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tip-default:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-default { + border-color: #868686; +} +/* line 109, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-default .x-tool-img { + background-color: #cccccc; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 129, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-rtl.x-tool-after-title { + margin: 0 6px 0 0; +} +/* line 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-tool-before-title { + margin: 0 6px 0 0; +} +/* line 139, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-rtl.x-tool-before-title { + margin: 0 0 0 6px; +} + +/* line 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-body-default { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-text-container-default { + color: #444444; + font-size: 11px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-default { + padding: 3px; + color: #444444; + font-size: 11px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-default a { + color: #2a2a2a; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: white; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mc { + background-color: white; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tip-form-invalid { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tip-form-invalid-frameInfo { + font-family: th-5-5-5-5-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tr, +.x-tip-form-invalid-br, +.x-tip-form-invalid-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl, +.x-tip-form-invalid-bl, +.x-tip-form-invalid-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl, +.x-tip-form-invalid-bl, +.x-tip-form-invalid-tr, +.x-tip-form-invalid-br, +.x-tip-form-invalid-tc, +.x-tip-form-invalid-bc, +.x-tip-form-invalid-ml, +.x-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-ml, +.x-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tip-form-invalid-tl, +.x-strict .x-ie7 .x-tip-form-invalid-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tip-form-invalid:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-form-invalid { + border-color: #a1311f; + -webkit-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; + -moz-box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; + box-shadow: #d87166 0 1px 0px 0 inset, #d87166 0 -1px 0px 0 inset, #d87166 -1px 0 0px 0 inset, #d87166 1px 0 0px 0 inset; +} +/* line 109, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-form-invalid .x-tool-img { + background-color: white; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-form-invalid .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 129, ../../../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 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-form-invalid .x-tool-before-title { + margin: 0 6px 0 0; +} +/* line 139, ../../../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 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-body-form-invalid { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-text-container-form-invalid { + color: #444444; + font-size: 11px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid { + padding: 3px 3px 3px 22px; + color: #444444; + font-size: 11px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid a { + color: #2a2a2a; +} + +/* line 265, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid { + background: 1px 1px no-repeat; + background-image: url(images/form/exclamation.gif); +} +/* line 268, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid li { + margin-bottom: 4px; +} +/* line 270, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid li.last { + margin-bottom: 0; +} + +/** + * Creates a visual theme for a ButtonGroup. + * + * @param {string} $ui-label + * 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 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-default { + border-color: #d0d0d0; + -webkit-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; + -moz-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; + box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default { + margin: 2px 2px 0 2px; + padding: 1px 0; + line-height: 15px; + background: #dfdfdf; + -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 109, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default .x-tool-img { + background-color: #dfdfdf; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-text-container-default { + font: normal 11px tahoma, arial, verdana, sans-serif; + line-height: 15px; + color: #666666; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default { + padding: 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default .x-table-layout { + border-spacing: 0; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed { + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + padding: 1px 1px 1px 1px; + border-width: 1px; + border-style: solid; + background-color: #d6d6d6; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mc { + background-color: #d6d6d6; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-group-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-group-default-framed-frameInfo { + font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl { + background-position: 0 -4px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tr { + background-position: right -6px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bl { + background-position: 0 -8px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-br { + background-position: right -10px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bc { + background-position: 0 -2px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tr, +.x-btn-group-default-framed-br, +.x-btn-group-default-framed-mr { + padding-right: 2px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl, +.x-btn-group-default-framed-bl, +.x-btn-group-default-framed-ml { + padding-left: 2px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tc { + height: 2px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bc { + height: 2px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl, +.x-btn-group-default-framed-bl, +.x-btn-group-default-framed-tr, +.x-btn-group-default-framed-br, +.x-btn-group-default-framed-tc, +.x-btn-group-default-framed-bc, +.x-btn-group-default-framed-ml, +.x-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-ml, +.x-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-group-default-framed-tl, +.x-strict .x-ie7 .x-btn-group-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-group-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle { + -webkit-border-radius: 2px; + -moz-border-radius: 2px; + -ms-border-radius: 2px; + -o-border-radius: 2px; + border-radius: 2px; + padding: 1px 1px 1px 1px; + border-width: 1px; + border-style: solid; + background-color: #d6d6d6; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mc { + background-color: #d6d6d6; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-group-default-framed-notitle { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-group-default-framed-notitle-frameInfo { + font-family: dh-2-2-2-2-1-1-1-1-1-1-1-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl { + background-position: 0 -4px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tr { + background-position: right -6px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bl { + background-position: 0 -8px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-br { + background-position: right -10px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bc { + background-position: 0 -2px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tr, +.x-btn-group-default-framed-notitle-br, +.x-btn-group-default-framed-notitle-mr { + padding-right: 2px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl, +.x-btn-group-default-framed-notitle-bl, +.x-btn-group-default-framed-notitle-ml { + padding-left: 2px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tc { + height: 2px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bc { + height: 2px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl, +.x-btn-group-default-framed-notitle-bl, +.x-btn-group-default-framed-notitle-tr, +.x-btn-group-default-framed-notitle-br, +.x-btn-group-default-framed-notitle-tc, +.x-btn-group-default-framed-notitle-bc, +.x-btn-group-default-framed-notitle-ml, +.x-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-ml, +.x-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-group-default-framed-notitle-tl, +.x-strict .x-ie7 .x-btn-group-default-framed-notitle-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-group-default-framed-notitle:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"; +} + +/**/ +/* */ +/* line 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-default-framed { + border-color: #d0d0d0; + -webkit-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; + -moz-box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; + box-shadow: #ececec 0 1px 0px 0 inset, #ececec 0 -1px 0px 0 inset, #ececec -1px 0 0px 0 inset, #ececec 1px 0 0px 0 inset; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default-framed { + margin: 2px 2px 0 2px; + padding: 1px 0; + line-height: 15px; + background: #dfdfdf; + -moz-border-radius-topleft: 2px; + -webkit-border-top-left-radius: 2px; + border-top-left-radius: 2px; + -moz-border-radius-topright: 2px; + -webkit-border-top-right-radius: 2px; + border-top-right-radius: 2px; +} +/* line 109, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default-framed .x-tool-img { + background-color: #dfdfdf; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-text-container-default-framed { + font: normal 11px tahoma, arial, verdana, sans-serif; + line-height: 15px; + color: #666666; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default-framed { + padding: 0 1px 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default-framed .x-table-layout { + border-spacing: 0; +} + +/** + * Creates a visual theme for a Window + * + * @param {string} $ui-label + * 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`. + * + * @member Ext.window.Window + */ +/* line 545, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=65); + opacity: 0.65; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default { + border-color: #a9a9a9; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + -webkit-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; + -moz-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; + box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 4px 4px 4px; + border-width: 1px; + border-style: solid; + background-color: #e8e8e8; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mc { + background-color: #e8e8e8; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-default-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tr, +.x-window-default-br, +.x-window-default-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl, +.x-window-default-bl, +.x-window-default-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl, +.x-window-default-bl, +.x-window-default-tr, +.x-window-default-br, +.x-window-default-tc, +.x-window-default-bc, +.x-window-default-ml, +.x-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-ml, +.x-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-default-tl, +.x-strict .x-ie7 .x-window-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-default:after { + display: none; + content: "x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"; +} + +/**/ +/* */ +/* line 195, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-body-default { + border-color: #bcb1b0; + border-width: 1px; + border-style: solid; + background: #e0e0e0; + color: black; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default { + font-size: 11px; + border-color: #a9a9a9; + zoom: 1; + background-color: #e8e8e8; +} +/* line 212, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-tool-img { + background-color: #e8e8e8; +} + +/* line 223, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-window-header-default-vertical .x-window-header-text-container { + background-color: #e8e8e8; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#e8e8e8); +} + +/* line 228, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-rtl.x-window-header-text-container { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-window-header-default-vertical .x-rtl.x-window-header-text-container { + background-color: #e8e8e8; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#e8e8e8); +} + +/* line 233, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-text-container-default { + color: #333333; + font-weight: bold; + line-height: 15px; + font-family: tahoma, arial, verdana, sans-serif; + font-size: 11px; + padding: 0 2px 1px; + text-transform: none; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-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: 4px 5px 0 5px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #e8e8e8; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mc { + background-color: #e8e8e8; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-top-frameInfo { + font-family: dh-5-5-0-0-1-1-0-1-4-5-0-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tr, +.x-window-header-default-top-br, +.x-window-header-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl, +.x-window-header-default-top-bl, +.x-window-header-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl, +.x-window-header-default-top-bl, +.x-window-header-default-top-tr, +.x-window-header-default-top-br, +.x-window-header-default-top-tc, +.x-window-header-default-top-bc, +.x-window-header-default-top-ml, +.x-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-ml, +.x-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mc { + padding: 0px 1px 0 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-top-tl, +.x-strict .x-ie7 .x-window-header-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px; + -webkit-border-top-right-radius: 5px; + border-top-right-radius: 5px; + -moz-border-radius-bottomright: 5px; + -webkit-border-bottom-right-radius: 5px; + border-bottom-right-radius: 5px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 4px 5px 0; + border-width: 1px 1px 1px 0; + border-style: solid; + background-color: #e8e8e8; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mc { + background-color: #e8e8e8; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-right-frameInfo { + font-family: dh-0-5-5-0-1-1-1-0-5-4-5-0; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tr, +.x-window-header-default-right-br, +.x-window-header-default-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl, +.x-window-header-default-right-bl, +.x-window-header-default-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl, +.x-window-header-default-right-bl, +.x-window-header-default-right-tr, +.x-window-header-default-right-br, +.x-window-header-default-right-tc, +.x-window-header-default-right-bc, +.x-window-header-default-right-ml, +.x-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-window-header-default-right-tl, .x-rtl.x-window-header-default-right-ml, .x-rtl.x-window-header-default-right-bl, .x-rtl.x-window-header-default-right-tr, .x-rtl.x-window-header-default-right-mr, .x-rtl.x-window-header-default-right-br { + background-image: url(images/window-header/window-header-default-right-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-ml, +.x-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mc { + padding: 1px 0px 1px 0; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-right-tl, +.x-strict .x-ie7 .x-window-header-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 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: 0 5px 4px 5px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-color: #e8e8e8; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mc { + background-color: #e8e8e8; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-bottom-frameInfo { + font-family: dh-0-0-5-5-0-1-1-1-0-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tr, +.x-window-header-default-bottom-br, +.x-window-header-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl, +.x-window-header-default-bottom-bl, +.x-window-header-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl, +.x-window-header-default-bottom-bl, +.x-window-header-default-bottom-tr, +.x-window-header-default-bottom-br, +.x-window-header-default-bottom-tc, +.x-window-header-default-bottom-bc, +.x-window-header-default-bottom-ml, +.x-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-ml, +.x-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mc { + padding: 0 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-bottom-tl, +.x-strict .x-ie7 .x-window-header-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left { + -moz-border-radius-topleft: 5px; + -webkit-border-top-left-radius: 5px; + border-top-left-radius: 5px; + -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: 5px; + -webkit-border-bottom-left-radius: 5px; + border-bottom-left-radius: 5px; + padding: 5px 0 5px 4px; + border-width: 1px 0 1px 1px; + border-style: solid; + background-color: #e8e8e8; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mc { + background-color: #e8e8e8; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-left-frameInfo { + font-family: dh-5-0-0-5-1-0-1-1-5-0-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tr, +.x-window-header-default-left-br, +.x-window-header-default-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl, +.x-window-header-default-left-bl, +.x-window-header-default-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl, +.x-window-header-default-left-bl, +.x-window-header-default-left-tr, +.x-window-header-default-left-br, +.x-window-header-default-left-tc, +.x-window-header-default-left-bc, +.x-window-header-default-left-ml, +.x-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-window-header-default-left-tl, .x-rtl.x-window-header-default-left-ml, .x-rtl.x-window-header-default-left-bl, .x-rtl.x-window-header-default-left-tr, .x-rtl.x-window-header-default-left-mr, .x-rtl.x-window-header-default-left-br { + background-image: url(images/window-header/window-header-default-left-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-ml, +.x-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mc { + padding: 1px 0 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-left-tl, +.x-strict .x-ie7 .x-window-header-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-color: #e8e8e8; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mc { + background-color: #e8e8e8; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-top-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tr, +.x-window-header-default-collapsed-top-br, +.x-window-header-default-collapsed-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl, +.x-window-header-default-collapsed-top-bl, +.x-window-header-default-collapsed-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl, +.x-window-header-default-collapsed-top-bl, +.x-window-header-default-collapsed-top-tr, +.x-window-header-default-collapsed-top-br, +.x-window-header-default-collapsed-top-tc, +.x-window-header-default-collapsed-top-bc, +.x-window-header-default-collapsed-top-ml, +.x-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-ml, +.x-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-color: #e8e8e8; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mc { + background-color: #e8e8e8; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-right-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-5-4-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tr, +.x-window-header-default-collapsed-right-br, +.x-window-header-default-collapsed-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl, +.x-window-header-default-collapsed-right-bl, +.x-window-header-default-collapsed-right-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl, +.x-window-header-default-collapsed-right-bl, +.x-window-header-default-collapsed-right-tr, +.x-window-header-default-collapsed-right-br, +.x-window-header-default-collapsed-right-tc, +.x-window-header-default-collapsed-right-bc, +.x-window-header-default-collapsed-right-ml, +.x-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-window-header-default-collapsed-right-tl, .x-rtl.x-window-header-default-collapsed-right-ml, .x-rtl.x-window-header-default-collapsed-right-bl, .x-rtl.x-window-header-default-collapsed-right-tr, .x-rtl.x-window-header-default-collapsed-right-mr, .x-rtl.x-window-header-default-collapsed-right-br { + background-image: url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-ml, +.x-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mc { + padding: 1px 0px 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 4px 5px 4px 5px; + border-width: 1px; + border-style: solid; + background-color: #e8e8e8; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mc { + background-color: #e8e8e8; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-bottom-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-4-5-4-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tr, +.x-window-header-default-collapsed-bottom-br, +.x-window-header-default-collapsed-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl, +.x-window-header-default-collapsed-bottom-bl, +.x-window-header-default-collapsed-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl, +.x-window-header-default-collapsed-bottom-bl, +.x-window-header-default-collapsed-bottom-tr, +.x-window-header-default-collapsed-bottom-br, +.x-window-header-default-collapsed-bottom-tc, +.x-window-header-default-collapsed-bottom-bc, +.x-window-header-default-collapsed-bottom-ml, +.x-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-ml, +.x-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left { + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + border-radius: 5px; + padding: 5px 4px 5px 4px; + border-width: 1px; + border-style: solid; + background-color: #e8e8e8; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mc { + background-color: #e8e8e8; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-left-frameInfo { + font-family: dh-5-5-5-5-1-1-1-1-5-4-5-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tr, +.x-window-header-default-collapsed-left-br, +.x-window-header-default-collapsed-left-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl, +.x-window-header-default-collapsed-left-bl, +.x-window-header-default-collapsed-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl, +.x-window-header-default-collapsed-left-bl, +.x-window-header-default-collapsed-left-tr, +.x-window-header-default-collapsed-left-br, +.x-window-header-default-collapsed-left-tc, +.x-window-header-default-collapsed-left-bc, +.x-window-header-default-collapsed-left-ml, +.x-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-window-header-default-collapsed-left-tl, .x-rtl.x-window-header-default-collapsed-left-ml, .x-rtl.x-window-header-default-collapsed-left-bl, .x-rtl.x-window-header-default-collapsed-left-tr, .x-rtl.x-window-header-default-collapsed-left-mr, .x-rtl.x-window-header-default-collapsed-left-br { + background-image: url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-ml, +.x-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mc { + padding: 1px 0px 1px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 337, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-top { + -webkit-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; + -moz-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; + box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; +} + +/* line 341, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-right { + -webkit-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset; + -moz-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset; + box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset; +} + +/* line 345, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-bottom { + -webkit-box-shadow: #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; + -moz-box-shadow: #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; + box-shadow: #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 -1px 0 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-left { + -webkit-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; + -moz-box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; + box-shadow: #ebe7e7 0 1px 0px 0 inset, #ebe7e7 0 -1px 0px 0 inset, #ebe7e7 1px 0 0px 0 inset; +} + +/* line 355, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-window-header-icon { + width: 16px; + height: 16px; + color: #333333; + font-size: 16px; + line-height: 16px; + background-position: center center; +} +/* line 364, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-window-header-glyph { + color: #333333; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 380, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-ie8m .x-window-header-default .x-window-header-glyph { + color: #8d8d8d; +} + +/* line 388, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-window-header-icon-before-title { + margin: 0 2px 0 0; +} +/* line 393, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-rtl.x-window-header-icon-before-title { + margin: 0 0 0 2px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-window-header-icon-after-title { + margin: 0 0 0 2px; +} +/* line 403, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-rtl.x-window-header-icon-after-title { + margin: 0 2px 0 0; +} + +/* line 410, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 415, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-rtl.x-window-header-icon-before-title { + margin: 0 0 2px 0; +} +/* line 420, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-icon-after-title { + margin: 2px 0 0 0; +} +/* line 425, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-rtl.x-window-header-icon-after-title { + margin: 2px 0 0 0; +} + +/* line 433, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-tool-after-title { + margin: 0 0 0 2px; +} +/* line 438, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-rtl.x-tool-after-title { + margin: 0 2px 0 0; +} +/* line 443, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-tool-before-title { + margin: 0 2px 0 0; +} +/* line 448, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-rtl.x-tool-before-title { + margin: 0 0 0 2px; +} + +/* line 455, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 460, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-rtl.x-tool-after-title { + margin: 2px 0 0 0; +} +/* line 465, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-tool-before-title { + margin: 0 0 2px 0; +} +/* line 470, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-rtl.x-tool-before-title { + margin: 0 0 2px 0; +} + +/* line 483, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-collapsed .x-window-header { + border-width: 1px !important; +} + +/* line 489, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-nbr .x-window-default-collapsed .x-window-header { + border-width: 0 !important; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-invalid-under { + padding: 2px 2px 2px 20px; + color: #c0272b; + font: normal 11px tahoma, arial, verdana, sans-serif; + line-height: 16px; + background: no-repeat 0 2px; + background-image: url(images/form/exclamation.gif); +} + +/* line 14, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +div.x-lbl-top-err-icon { + margin-bottom: 3px; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-invalid-icon { + width: 16px; + height: 16px; + margin: 0 1px; + background-image: url(images/form/exclamation.gif); + background-repeat: no-repeat; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-item-label { + color: black; + font: normal 12px/14px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} +/* line 31, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-toolbar-item .x-form-item-label { + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} + +/* line 45, ../../../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; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-ie6 .x-form-form-item td { + border-top-width: 0; +} +/* line 59, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-ie6 td.x-form-item-pad { + height: 5px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-field { + color: black; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-item, +.x-form-field { + font: normal 12px tahoma, arial, verdana, sans-serif; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-type-text textarea.x-form-invalid-field, .x-form-type-text input.x-form-invalid-field, +.x-form-type-password textarea.x-form-invalid-field, +.x-form-type-password input.x-form-invalid-field, +.x-form-type-number textarea.x-form-invalid-field, +.x-form-type-number input.x-form-invalid-field, +.x-form-type-email textarea.x-form-invalid-field, +.x-form-type-email input.x-form-invalid-field, +.x-form-type-search textarea.x-form-invalid-field, +.x-form-type-search input.x-form-invalid-field, +.x-form-type-tel textarea.x-form-invalid-field, +.x-form-type-tel input.x-form-invalid-field { + background-color: white; + background-image: url(images/grid/invalid_line.gif); + background-repeat: repeat-x; + background-position: bottom; + border-color: #cc3300; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-item-disabled .x-form-item-label, +.x-item-disabled .x-form-field, +.x-item-disabled .x-form-display-field, +.x-item-disabled .x-form-cb-label, +.x-item-disabled .x-form-trigger { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-text { + color: black; + padding: 1px 3px 2px 3px; + background: white repeat-x 0 0; + border-width: 1px; + border-style: solid; + border-color: #b5b8c8; + background-image: url(images/form/text-bg.gif); + height: 22px; + line-height: 17px; +} +/* line 14, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-field-toolbar .x-form-text { + height: 20px; + line-height: 15px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-content-box .x-form-text { + height: 17px; +} +/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-content-box .x-field-toolbar .x-form-text { + height: 15px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-focus { + border-color: #a1a1a1; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-empty-field, +textarea.x-form-empty-field { + color: gray; +} + +/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-quirks .x-ie .x-form-text, +.x-ie7m .x-form-text { + margin-top: -1px; + margin-bottom: -1px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/TextArea.scss */ +.x-form-textarea { + line-height: normal; + height: auto; + background-image: url(images/form/text-bg.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-form-display-field-body { + height: 22px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-toolbar-item .x-form-display-field-body { + height: 20px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-form-display-field { + font: normal 12px/14px tahoma, arial, verdana, sans-serif; + color: black; + margin-top: 4px; +} +/* line 17, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-toolbar-item .x-form-display-field { + margin-top: 4px; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box .x-window-body { + background-color: #e8e8e8; + border-width: 0; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-info, +.x-message-box-warning, +.x-message-box-question, +.x-message-box-error { + background-position: top left; + background-repeat: no-repeat; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-rtl.x-message-box-info, .x-rtl.x-message-box-warning, .x-rtl.x-message-box-question, .x-rtl.x-message-box-error { + background-position: top left; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-info { + background-image: url(images/shared/icon-info.gif); +} + +/* line 33, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-warning { + background-image: url(images/shared/icon-warning.gif); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-question { + background-image: url(images/shared/icon-question.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-error { + background-image: url(images/shared/icon-error.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-wrap { + height: 22px; +} +/* line 4, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-toolbar-item .x-form-cb-wrap { + height: 20px; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb { + margin-top: 5px; +} +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-toolbar-item .x-form-cb { + margin-top: 4px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-checkbox { + width: 13px; + height: 13px; + background: url(images/form/checkbox.gif) no-repeat; +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-checked .x-form-checkbox { + background-position: 0 -13px; +} + +/* Focused */ +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-checkbox-focus { + background-position: -13px 0; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-checked .x-form-checkbox-focus { + background-position: -13px -13px; +} + +/* boxLabel */ +/* line 40, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label { + margin-top: 4px; + font: normal 12px/14px tahoma, arial, verdana, sans-serif; +} +/* line 43, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-toolbar-item .x-form-cb-label { + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + margin-top: 4px; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label-before { + margin-right: 4px; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-rtl.x-field .x-form-cb-label-before { + margin-right: 0; + margin-left: 4px; +} + +/* line 64, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label-after { + margin-left: 4px; +} + +/* line 69, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-rtl.x-field .x-form-cb-label-after { + margin-left: 0; + margin-right: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-checkboxgroup-body { + padding: 0 4px; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-invalid .x-form-checkboxgroup-body { + border: 1px solid #cc3300; + background-image: url(images/grid/invalid_line.gif); + background-repeat: repeat-x; + background-position: bottom; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-check-group-alt { + background: #d5d5d5; + border-top: 1px dotted #b4b4b4; + border-bottom: 1px dotted #b4b4b4; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-check-group-label { + color: black; + padding: 2px; + margin: 0 30px 5px 0; + border-width: 0 0 1px 0; + border-style: solid; + border-color: black; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-rtl.x-form-check-group-label { + margin: 0 0 5px 30px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset { + border: 1px solid #b5b8c8; + padding: 0 10px; + margin: 0 0 10px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie8m .x-fieldset, +.x-quirks .x-ie .x-fieldset { + padding-top: 0; +} +/* line 13, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie8m .x-fieldset .x-fieldset-body, +.x-quirks .x-ie .x-fieldset .x-fieldset-body { + padding-top: 0; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-checkbox { + line-height: 14px; + margin: 1px 3px 0 0; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header { + padding: 0 3px 1px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-tool { + margin-top: 1px; + padding: 0; +} +/* line 33, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb-wrap { + padding: 1px 0; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text { + font: 11px/14px bold tahoma, arial, verdana, sans-serif; + color: #333333; + padding: 1px 0; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text-collapsible { + cursor: pointer; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-with-title .x-fieldset-header-checkbox, +.x-fieldset-with-title .x-tool { + margin: 1px 3px 0 0; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-with-title .x-rtl .x-fieldset-header-checkbox, +.x-fieldset-with-title .x-rtl .x-tool { + margin: 1px 0 0 3px; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-webkit .x-fieldset-header { + -webkit-padding-start: 3px; + -webkit-padding-end: 3px; +} + +/* line 76, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-opera .x-fieldset-with-legend { + margin-top: -1px; +} +/* line 79, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-opera.x-mac .x-fieldset-header-text { + padding: 2px 0 0; +} + +/* line 87, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-strict .x-ie8 .x-fieldset-header { + margin-bottom: -1px; +} +/* line 91, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-strict .x-ie8 .x-fieldset-header .x-tool, +.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text, +.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox { + position: relative; + top: -1px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-quirks .x-ie .x-fieldset-header, +.x-ie8m .x-fieldset-header { + padding-left: 1px; + padding-right: 1px; +} + +/* line 109, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-fieldset-body { + display: none; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed { + padding-bottom: 0 !important; + border-width: 1px 1px 0 1px !important; + border-left-color: transparent !important; + border-right-color: transparent !important; +} + +/* line 123, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie6 .x-fieldset-collapsed { + border-width: 1px 0 0 0 !important; + padding-bottom: 0 !important; + margin-left: 1px; + margin-right: 1px; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-bwrap { + zoom: 1; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset .x-tool-toggle { + background-position: 0 -60px; +} +/* line 144, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset .x-tool-over .x-tool-toggle { + background-position: -15px -60px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-tool-toggle { + background-position: 0 -75px; +} +/* line 156, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-tool-over .x-tool-toggle { + background-position: -15px -75px; +} + +/* IE legend positioning bug */ +/* line 164, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-noborder legend { + position: relative; + margin-bottom: 23px; +} + +/* line 170, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-noborder legend span { + position: absolute; + left: 16px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset { + overflow: hidden; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-bwrap { + overflow: hidden; + zoom: 1; +} + +/* line 186, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-body { + overflow: hidden; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-radio { + width: 13px; + height: 13px; + background: url(images/form/radio.gif) no-repeat; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-cb-checked .x-form-radio { + background-position: 0 -13px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-radio-focus { + background-position: -13px 0; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-cb-checked .x-form-radio-focus { + background-position: -13px -13px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + background: url(images/form/trigger.gif); + width: 17px; + border-width: 0 0 1px; + border-color: #b5b8c8; + border-style: solid; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-rtl.x-form-trigger-wrap .x-form-trigger { + background-image: url(images/form/trigger-rtl.gif); +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-trigger-cell { + background-color: white; + width: 17px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-over { + background-position: -17px 0; + border-color: #a1a1a1; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap-focus .x-form-trigger { + background-position: -51px 0; + border-color: #a1a1a1; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap-focus .x-form-trigger-over { + background-position: -68px 0; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-click, +.x-form-trigger-wrap-focus .x-form-trigger-click { + background-position: -34px 0; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-clear-trigger { + background-image: url(images/form/clear-trigger.gif); +} + +/* line 54, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-rtl.x-form-trigger-wrap .x-form-clear-trigger { + background-image: url(images/form/clear-trigger-rtl.gif); +} + +/* line 59, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-search-trigger { + background-image: url(images/form/search-trigger.gif); +} + +/* line 64, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-rtl.x-form-trigger-wrap .x-form-search-trigger { + background-image: url(images/form/search-trigger-rtl.gif); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-quirks .prefixie6 .x-form-trigger-input-cell { + height: 22px; +} +/* line 77, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-quirks .prefixie6 .x-field-toolbar .x-form-trigger-input-cell { + height: 20px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +div.x-form-spinner-up, +div.x-form-spinner-down { + background-image: url(images/form/spinner.gif); + background-color: white; + width: 17px; + height: 11px; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-rtl.x-form-trigger-wrap .x-form-spinner-up, +.x-rtl.x-form-trigger-wrap .x-form-spinner-down { + background-image: url(images/form/spinner-rtl.gif); +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-spinner-down { + background-position: 0 -11px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap-focus .x-form-spinner-down { + background-position: -51px -11px; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap .x-form-spinner-down-over { + background-position: -17px -11px; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap-focus .x-form-spinner-down-over { + background-position: -68px -11px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap .x-form-spinner-down-click { + background-position: -34px -11px; +} + +/* line 41, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item div.x-form-spinner-up, +.x-toolbar-item div.x-form-spinner-down { + background-image: url(images/form/spinner-small.gif); + height: 10px; +} +/* line 45, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-spinner-down { + background-position: 0 -10px; +} +/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down { + background-position: -51px -10px; +} +/* line 51, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-over { + background-position: -17px -10px; +} +/* line 54, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down-over { + background-position: -68px -10px; +} +/* line 57, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-click { + background-position: -34px -10px; +} + +/* line 65, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-toolbar-item .x-rtl.x-form-trigger-wrap .x-form-spinner-up, +.x-toolbar-item .x-rtl.x-form-trigger-wrap .x-form-spinner-down { + background-image: url(images/form/spinner-small-rtl.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-number { + width: 30px; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-first { + background-image: url(images/grid/page-first.gif); +} + +/* line 9, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-prev { + background-image: url(images/grid/page-prev.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-next { + background-image: url(images/grid/page-next.gif); +} + +/* line 17, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-last { + background-image: url(images/grid/page-last.gif); +} + +/* line 21, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-loading { + background-image: url(images/grid/refresh.gif); +} + +/* line 27, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-first { + background-image: url(images/grid/page-first-disabled.gif); +} +/* line 31, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-prev { + background-image: url(images/grid/page-prev-disabled.gif); +} +/* line 35, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-next { + background-image: url(images/grid/page-next-disabled.gif); +} +/* line 39, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-page-last { + background-image: url(images/grid/page-last-disabled.gif); +} +/* line 43, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-tbar-loading { + background-image: url(images/grid/refresh-disabled.gif); +} + +/* line 51, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-rtl.x-tbar-page-first { + background-image: url(images/grid/page-last.gif); +} +/* line 55, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-rtl.x-tbar-page-prev { + background-image: url(images/grid/page-next.gif); +} +/* line 59, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-rtl.x-tbar-page-next { + background-image: url(images/grid/page-prev.gif); +} +/* line 63, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-rtl.x-tbar-page-last { + background-image: url(images/grid/page-first.gif); +} + +/* line 71, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-rtl.x-tbar-page-first { + background-image: url(images/grid/page-last-disabled.gif); +} +/* line 75, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-rtl.x-tbar-page-prev { + background-image: url(images/grid/page-next-disabled.gif); +} +/* line 79, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-rtl.x-tbar-page-next { + background-image: url(images/grid/page-prev-disabled.gif); +} +/* line 83, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-item-disabled .x-rtl.x-tbar-page-last { + background-image: url(images/grid/page-first-disabled.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist { + border-width: 1px; + border-style: solid; + border-color: #b5b8c8; + background: white; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-strict .x-ie7m .x-boundlist-list-ct { + position: relative; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-item { + padding: 0 3px; + line-height: 20px; + cursor: pointer; + cursor: hand; + position: relative; + /*allow hover in IE on empty items*/ + zoom: 1; + border-width: 1px; + border-style: dotted; + border-color: white; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-selected { + background: #d3d3d3; + border-color: #b3abaa; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-item-over { + background: #e0e0e0; + border-color: #bfb8b8; +} + +/* line 43, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-floating { + border-top-width: 0; +} + +/* line 47, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-above { + border-top-width: 1px; + border-bottom-width: 1px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker { + border-width: 1px; + border-style: solid; + border-color: #585858; + background-color: white; + width: 177px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-header { + padding: 3px 6px; + text-align: center; + background-image: none; + background-color: #6f6f6f; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #777777), color-stop(100%, #656565)); + background-image: -webkit-linear-gradient(top, #777777, #656565); + background-image: -moz-linear-gradient(top, #777777, #656565); + background-image: -o-linear-gradient(top, #777777, #656565); + background-image: linear-gradient(top, #777777, #656565); +} + +/* line 32, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-arrow { + width: 15px; + height: 15px; + top: 6px; + cursor: pointer; + background-color: #6f6f6f; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-datepicker-arrow:hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 55, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-next { + right: 6px; + background-image: url(images/shared/right-btn.gif); +} + +/* line 60, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-prev { + left: 6px; + background-image: url(images/shared/left-btn.gif); +} + +/* line 76, ../../../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 83, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-month .x-btn-inner { + color: white; +} +/* line 88, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-month .x-btn-split-right { + background-image: url(images/button/s-arrow-light.gif); + padding-right: 12px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-column-header { + width: 25px; + color: #3e3e3e; + font: normal 10px tahoma, arial, verdana, sans-serif; + text-align: right; + border-width: 0 0 1px; + border-style: solid; + border-color: #d0d0d0; + background-image: none; + background-color: #e9e9e9; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f1f1f1), color-stop(100%, #dfdfdf)); + background-image: -webkit-linear-gradient(top, #f1f1f1, #dfdfdf); + background-image: -moz-linear-gradient(top, #f1f1f1, #dfdfdf); + background-image: -o-linear-gradient(top, #f1f1f1, #dfdfdf); + background-image: linear-gradient(top, #f1f1f1, #dfdfdf); +} + +/* line 113, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-column-header-inner { + line-height: 19px; + padding: 0 7px 0 0; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-cell { + text-align: right; + border-width: 1px; + border-style: solid; + border-color: white; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-date { + padding: 0 4px 0 0; + font: normal 11px tahoma, arial, verdana, sans-serif; + color: black; + cursor: pointer; + line-height: 18px; +} + +/* line 138, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-datepicker-date:hover { + color: black; + background-color: transparent; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-selected { + border-style: solid; + border-color: #b2aaa9; +} +/* line 146, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-selected .x-datepicker-date { + background-color: #d8d8d8; + font-weight: bold; +} + +/* line 152, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-today { + border-color: darkred; + border-style: solid; +} + +/* line 159, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-prevday .x-datepicker-date, +.x-datepicker-nextday .x-datepicker-date { + color: #aaaaaa; +} + +/* line 166, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-disabled a.x-datepicker-date { + background-color: #eeeeee; + cursor: default; + color: #bbbbbb; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-disabled a.x-datepicker-date:hover { + background-color: #eeeeee; +} + +/* line 179, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-footer, +.x-monthpicker-buttons { + padding: 4px 0; + border-width: 1px 0 0; + border-style: solid; + border-color: #d0d0d0; + background-image: none; + background-color: #e9e9e9; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfdfdf), color-stop(49%, #d6d6d6), color-stop(51%, #d0d0d0), color-stop(100%, #d2d2d2)); + background-image: -webkit-linear-gradient(top, #dfdfdf, #d6d6d6 49%, #d0d0d0 51%, #d2d2d2); + background-image: -moz-linear-gradient(top, #dfdfdf, #d6d6d6 49%, #d0d0d0 51%, #d2d2d2); + background-image: -o-linear-gradient(top, #dfdfdf, #d6d6d6 49%, #d0d0d0 51%, #d2d2d2); + background-image: linear-gradient(top, #dfdfdf, #d6d6d6 49%, #d0d0d0 51%, #d2d2d2); + text-align: center; +} +/* line 195, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-footer .x-btn, +.x-monthpicker-buttons .x-btn { + margin: 0 2px 0 2px; +} + +/* line 201, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker { + width: 177px; + border-width: 1px; + border-style: solid; + border-color: #585858; + background-color: white; +} + +/* line 211, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-months { + border-width: 0 1px 0 0; + border-color: #585858; + border-style: solid; + width: 87px; +} +/* line 220, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-months .x-monthpicker-item { + width: 43px; +} + +/* line 225, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-years { + width: 88px; +} +/* line 228, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-years .x-monthpicker-item { + width: 44px; +} + +/* line 233, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-item { + margin: 5px 0 4px; + font: normal 11px tahoma, arial, verdana, sans-serif; + text-align: center; +} + +/* line 239, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-item-inner { + margin: 0 5px 0 5px; + color: #523a39; + border-width: 1px; + border-style: solid; + border-color: white; + line-height: 16px; + cursor: pointer; +} + +/* line 254, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-monthpicker-item-inner:hover { + background-color: transparent; +} + +/* line 258, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-selected { + background-color: #d8d8d8; + border-style: solid; + border-color: #b2aaa9; +} + +/* line 264, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav { + height: 27px; +} + +/* line 268, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button-ct { + width: 44px; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button { + height: 15px; + width: 15px; + cursor: pointer; + margin-top: 6px; + background-color: white; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-next { + background-image: url(images/tools/tool-sprites.gif); + background-position: 0 -120px; +} + +/* line 299, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-next-over { + background-position: -15px -120px; +} + +/* line 303, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-prev { + background-image: url(images/tools/tool-sprites.gif); + background-position: 0 -105px; +} + +/* line 308, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-prev-over { + background-position: -15px -105px; +} + +/* line 313, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-item { + margin: 2px 0 2px; +} +/* line 317, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-item-inner { + margin: 0 5px 0 5px; +} +/* line 321, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-yearnav { + height: 22px; +} +/* line 325, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-yearnav-button { + margin-top: 3px; +} + +/* line 334, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-nlg .x-datepicker-header { + background-image: url(images/datepicker/datepicker-header-bg.gif); + background-repeat: repeat-x; + background-position: top left; +} +/* line 343, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-nlg .x-datepicker-footer, +.x-nlg .x-monthpicker-buttons { + background-image: url(images/datepicker/datepicker-footer-bg.gif); + background-repeat: repeat-x; + background-position: top left; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-datepicker-header:after { + display: none; + content: "x-slicer:bg:url(images/datepicker/datepicker-header-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-datepicker-footer:after { + display: none; + content: "x-slicer:bg:url(images/datepicker/datepicker-footer-bg.gif)"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */ +.x-form-date-trigger { + background-image: url(images/form/date-trigger.gif); +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */ +.x-rtl.x-form-trigger-wrap .x-form-date-trigger { + background-image: url(images/form/date-trigger-rtl.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/File.scss */ +.x-form-file-wrap .x-form-text { + color: gray; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker { + width: 144px; + height: 90px; + background-color: white; + border-color: white; + border-width: 0; + border-style: solid; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-item { + width: 18px; + height: 18px; + border-width: 1px; + border-color: white; + border-style: solid; + background-color: white; + cursor: pointer; + padding: 2px; +} +/* line 20, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-content-box .x-color-picker-item { + width: 12px; + height: 12px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +a.x-color-picker-item:hover { + border-color: #8bb8f3; + background-color: #deecfd; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-selected { + border-color: #8bb8f3; + background-color: #deecfd; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-item-inner { + line-height: 10px; + border-color: #aca899; + border-width: 1px; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-btn-text { + background: transparent no-repeat; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-bold, +.x-menu-item div.x-edit-bold { + background-position: 0 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-italic, +.x-menu-item div.x-edit-italic { + background-position: -16px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-underline, +.x-menu-item div.x-edit-underline { + background-position: -32px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-forecolor, +.x-menu-item div.x-edit-forecolor { + background-position: -160px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 31, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-backcolor, +.x-menu-item div.x-edit-backcolor { + background-position: -176px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifyleft, +.x-menu-item div.x-edit-justifyleft { + background-position: -112px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifycenter, +.x-menu-item div.x-edit-justifycenter { + background-position: -128px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifyright, +.x-menu-item div.x-edit-justifyright { + background-position: -144px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 55, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-insertorderedlist, +.x-menu-item div.x-edit-insertorderedlist { + background-position: -80px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 61, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-insertunorderedlist, +.x-menu-item div.x-edit-insertunorderedlist { + background-position: -96px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 67, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-increasefontsize, +.x-menu-item div.x-edit-increasefontsize { + background-position: -48px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-decreasefontsize, +.x-menu-item div.x-edit-decreasefontsize { + background-position: -64px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 79, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-sourceedit, +.x-menu-item div.x-edit-sourceedit { + background-position: -192px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 85, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-createlink, +.x-menu-item div.x-edit-createlink { + background-position: -208px 0; + background-image: url(images/editor/tb-sprite.gif); +} + +/* line 90, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tip .x-tip-bd .x-tip-bd-inner { + padding: 5px; + padding-bottom: 1px; +} + +/* line 95, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-font-select { + font-size: 11px; + font-family: inherit; +} + +/* line 100, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-wrap textarea { + font: normal 12px tahoma, arial, verdana, sans-serif; + background-color: white; + resize: none; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-body { + background: white; + border-width: 1px; + border-style: solid; + border-color: #d0d0d0; +} + +/* line 8, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-empty { + padding: 10px; + color: gray; + background-color: white; + font: normal 11px tahoma, arial, verdana, sans-serif; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell { + color: null; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + background-color: white; + border-color: #ededed #c6c6c6 #ededed #c6c6c6; + border-style: solid; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-alt .x-grid-td { + background-color: #fafafa; +} +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-over .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #dddddd; +} +/* line 35, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-over .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #dddddd; +} +/* line 40, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-selected .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #bfb8b8; +} +/* line 45, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #bfb8b8; +} +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-focused .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #464646; + border-bottom-width: 1px; +} +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-td { + background-color: #efefef; +} +/* line 65, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-over .x-grid-td { + background-color: #efefef; +} +/* line 73, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-td { + background-color: #e0e0e0; +} +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-td { + border-bottom-style: dotted; + border-bottom-color: #464646; + border-bottom-width: 1px; +} +/* line 92, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-table .x-grid-row-focused-first .x-grid-td { + border-top: 1px dotted #464646; +} +/* line 103, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-row-summary .x-grid-td { + border-bottom-color: #e0e0e0; + border-top-width: 0; +} +/* line 108, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-row-summary .x-grid-td { + border-bottom-color: #efefef; + border-top-width: 0; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-td { + border-bottom-width: 1px; +} +/* line 121, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table { + border-top: 1px solid white; +} +/* line 125, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table-over-first { + border-top-style: solid; + border-top-color: #dddddd; +} +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table-selected-first { + border-top-style: dotted; + border-top-color: #bfb8b8; +} + +/* line 139, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-body .x-grid-table-focused-first { + border-top: 1px dotted #464646; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell-inner { + text-overflow: ellipsis; + padding: 3px 6px 4px 6px; +} + +/* line 163, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner { + padding-top: 2px; + padding-bottom: 3px; +} + +/* line 178, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell-special { + border-color: #ededed #c6c6c6 #ededed #c6c6c6; + border-style: solid; + border-right-width: 1px; + background-image: none; + background-color: #f6f6f6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(100%, #e9e9e9)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: -moz-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: -o-linear-gradient(top, #f6f6f6, #e9e9e9); + background-image: linear-gradient(top, #f6f6f6, #e9e9e9); + /**/ + /**/ + /* */ + /**/ + /**/ + /* */ +} +/* line 191, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-cell-special { + border-right-color: #ededed #d4b7b7; + background-image: none; + background-color: #e0e0e0; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #e0e0e0), color-stop(100%, #d3d3d3)); + background-image: -webkit-linear-gradient(left, #e0e0e0, #d3d3d3); + background-image: -moz-linear-gradient(left, #e0e0e0, #d3d3d3); + background-image: -o-linear-gradient(left, #e0e0e0, #d3d3d3); + background-image: linear-gradient(left, #e0e0e0, #d3d3d3); +} +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-nlg .x-grid-cell-special { + background-repeat: repeat-y; + background-image: url(images/grid/cell-special-bg.gif); +} +/* line 211, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-nlg .x-grid-row-selected .x-grid-cell-special { + background-image: url(images/grid/cell-special-selected-bg.gif); +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-cell-special .x-grid-cell-special:after { + display: none; + content: "x-slicer:bg:url(images/grid/cell-special-bg.gif)"; +} +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-cell-special .x-grid-cell-special-selected:after { + display: none; + content: "x-slicer:bg:url(images/grid/cell-special-selected-bg.gif)"; +} + +/* line 221, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-rtl.x-grid-cell-special { + border-right-width: 0; + border-left-width: 1px; +} + +/* line 228, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-dirty-cell { + background: url(images/grid/dirty.gif) no-repeat 0 0; +} + +/* line 233, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-rtl.x-grid-dirty-cell { + background-image: url(images/grid/dirty-rtl.gif); + background-position: right 0; +} + +/* line 241, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row .x-grid-cell-selected { + color: null; + background-color: #b8cfee; +} + +/* line 247, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-col-lines .x-grid-cell { + border-right-width: 1px; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-rtl.x-grid-with-col-lines .x-grid-cell { + border-right-width: 0; + border-left-width: 1px; +} + +/* line 259, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-resize-marker { + width: 1px; + background-color: #0f0f0f; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator { + position: absolute; + height: 1px; + line-height: 0px; + background-color: #77BC71; + overflow: visible; + pointer-events: none; +} +/* line 9, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator .x-grid-drop-indicator-left { + position: absolute; + top: -8px; + left: -12px; + background-image: url(images/grid/dd-insert-arrow-right.png); + height: 16px; + width: 16px; +} +/* line 18, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator .x-grid-drop-indicator-right { + position: absolute; + top: -8px; + right: -11px; + background-image: url(images/grid/dd-insert-arrow-left.png); + height: 16px; + width: 16px; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-ie6 .x-grid-drop-indicator-left { + background-image: url(images/grid/dd-insert-arrow-right.gif); +} +/* line 33, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-ie6 .x-grid-drop-indicator-right { + background-image: url(images/grid/dd-insert-arrow-left.gif); +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + width: 9px; + height: 9px; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top { + background-image: url(images/grid/col-move-top.gif); +} + +/* line 11, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-bottom { + background-image: url(images/grid/col-move-bottom.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-grid-header-ct { + border: 1px solid #d0d0d0; + border-bottom-color: #c5c5c5; + background-color: #c5c5c5; + background-image: none; + background-color: #c5c5c5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #e3e4e6)); + background-image: -webkit-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -moz-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -o-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: linear-gradient(top, #f9f9f9, #e3e4e6); +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-accordion-item .x-grid-header-ct { + border-width: 0 0 1px !important; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-accordion-item .x-grid-header-ct-hidden { + border: 0 !important; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-grid-body { + border-top-color: #c5c5c5; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-hmenu-sort-asc .x-menu-item-icon { + background-image: url(images/grid/hmenu-asc.gif); +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-hmenu-sort-desc .x-menu-item-icon { + background-image: url(images/grid/hmenu-desc.gif); +} + +/* line 40, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-cols-icon .x-menu-item-icon { + background-image: url(images/grid/columns.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header { + border-right: 1px solid #c5c5c5; + color: black; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + background-image: none; + background-color: #c5c5c5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f9f9f9), color-stop(100%, #e3e4e6)); + background-image: -webkit-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -moz-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: -o-linear-gradient(top, #f9f9f9, #e3e4e6); + background-image: linear-gradient(top, #f9f9f9, #e3e4e6); +} + +/* line 18, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header { + border-right: 0 none; + border-left: 1px solid #c5c5c5; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-group-sub-header { + background: transparent; + border-top: 1px solid #c5c5c5; +} +/* line 29, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-group-sub-header .x-column-header-inner { + padding: 3px 6px 5px 6px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-inner { + padding: 4px 6px 5px 6px; + text-overflow: ellipsis; +} + +/* line 42, ../../../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: #f0f0f0; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f0f0f0)); + background-image: -webkit-linear-gradient(top, #ffffff, #f0f0f0); + background-image: -moz-linear-gradient(top, #ffffff, #f0f0f0); + background-image: -o-linear-gradient(top, #ffffff, #f0f0f0); + background-image: linear-gradient(top, #ffffff, #f0f0f0); +} + +/* line 51, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-nlg .x-grid-header-ct, +.x-nlg .x-column-header { + background-image: url(images/grid/column-header-bg.gif); +} + +/* line 62, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-nlg .x-column-header-over, +.x-nlg .x-column-header-sort-ASC, +.x-nlg .x-column-header-sort-DESC { + background-image: url(images/grid/column-header-over-bg.gif); +} + +/* line 70, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-open { + background-color: transparent; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-open .x-column-header-trigger { + background-color: transparent; +} + +/* line 78, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-trigger { + width: 14px; + cursor: pointer; + background-color: transparent; + background-position: 0 center; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-trigger { + background-position: right center; +} + +/* line 96, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-align-right .x-column-header-text { + margin-right: 9px; +} + +/* line 101, ../../../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: 9px; +} + +/* line 110, ../../../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: 12px; + background-position: right center; +} + +/* line 119, ../../../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: 12px; + background-position: 0 center; +} + +/* line 127, ../../../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.gif); +} + +/* line 130, ../../../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.gif); +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-column-header:after { + display: none; + content: "x-slicer:bg:url(images/grid/column-header-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-column-header-over:after { + display: none; + content: "x-slicer:bg:url(images/grid/column-header-over-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-grid-cell-inner-action-col { + padding: 2px 2px 2px 2px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-action-col { + padding-top: 1px; + padding-bottom: 1px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-action-col-cell .x-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-action-col-icon { + height: 16px; + width: 16px; + cursor: pointer; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-cell-inner-checkcolumn { + padding: 4px 6px 3px 6px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-checkcolumn { + padding-top: 3px; + padding-bottom: 2px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-checkcolumn { + width: 13px; + height: 13px; + background: url(images/form/checkbox.gif) 0 0 no-repeat; +} +/* line 17, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-item-disabled .x-grid-checkcolumn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-checkcolumn-checked { + background-position: 0 -13px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/RowNumberer.scss */ +.x-grid-cell-inner-row-numberer { + padding: 3px 5px 4px 3px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd { + border-width: 0 0 2px 0; + border-style: solid; + border-color: #bcb1b0; + padding: 10px 4px 4px 4px; + background: white; + cursor: pointer; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-not-collapsible { + cursor: default; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-collapsible .x-grid-group-title { + background-repeat: no-repeat; + background-position: left center; + background-image: url(images/grid/group-collapse.gif); + padding: 0 0 0 14px; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-rtl.x-grid-view .x-grid-group-hd-collapsible .x-grid-group-title { + background-position: right center; + padding: 0 14px 0 0; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-title { + color: #616161; + font: bold 11px/13px tahoma, arial, verdana, sans-serif; +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-collapsed .x-grid-group-title { + background-image: url(images/grid/group-expand.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-collapsed .x-grid-group-title { + background-image: url(images/grid/group-expand.gif); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-group-by-icon { + background-image: url(images/grid/group-by.gif); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-show-groups-icon { + background-image: url(images/grid/group-by.gif); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ +.x-grid-rowbody { + font: normal 11px/13px tahoma, arial, verdana, sans-serif; + padding: 5px 6px 5px 6px; +} +/* line 6, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-rowbody { + padding-top: 6px; + padding-bottom: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowWrap.scss */ +.x-grid-rowwrap { + border-color: #ededed #c6c6c6 #ededed #c6c6c6; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-summary-bottom { + border-bottom-color: #c5c5c5; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-docked-summary { + border-width: 1px; + border-color: #d0d0d0; + border-style: solid; +} +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-docked-summary .x-grid-table { + width: 100%; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-grid-row-summary .x-grid-cell, +.x-grid-row-summary .x-grid-rowwrap, +.x-grid-row-summary .x-grid-cell-rowbody { + border-color: #ededed #c6c6c6 #ededed #c6c6c6; + background-color: transparent !important; + border-top-width: 0; + font: normal 11px/13px tahoma, arial, verdana, sans-serif; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-grid-with-row-lines .x-grid-table-summary { + border: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-grid-locked .x-grid-inner-locked { + border-width: 0 1px 0 0; + border-style: solid; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-grid-locked .x-rtl.x-grid-inner-locked { + border-width: 0 0 0 1px; +} + +/* line 17, ../../../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 21, ../../../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 29, ../../../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 32, ../../../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 39, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-hmenu-lock .x-menu-item-icon { + background-image: url(images/grid/hmenu-lock.gif); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-hmenu-unlock .x-menu-item-icon { + background-image: url(images/grid/hmenu-unlock.gif); +} + +/* line 4, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-text { + font: normal 11px/15px tahoma, arial, verdana, sans-serif; + padding: 1px 5px 2px 5px; + height: 20px; +} +/* line 15, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-content-box .x-grid-editor .x-form-text { + height: 15px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-gecko .x-grid-editor .x-form-text { + padding-left: 4px; + padding-right: 4px; +} +/* line 31, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-trigger { + height: 20px; +} +/* line 39, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-spinner-up, .x-grid-editor .x-form-spinner-down { + height: 10px; +} +/* line 47, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb { + margin-top: 4px; +} +/* line 51, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb-wrap { + height: 20px; +} +/* line 58, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field-body { + height: 20px; +} +/* line 62, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field { + font: normal 11px/15px tahoma, arial, verdana, sans-serif; + padding: 2px 6px 3px 6px; + text-overflow: ellipsis; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-action-col-field { + padding: 2px 2px 2px 2px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x-tree-cell-editor .x-form-text { + padding-left: 2px; + padding-right: 2px; +} +/* line 8, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x-gecko .x-tree-cell-editor .x-form-text { + padding-left: 1px; + padding-right: 1px; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-field { + margin: 0 1px 0 1px; +} +/* line 7, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-display-field { + padding: 2px 5px 3px 5px; +} +/* line 16, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-action-col-field { + padding: 2px 1px 2px 1px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-text { + padding: 1px 4px 2px 4px; +} +/* line 30, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-gecko .x-grid-row-editor .x-form-text { + padding-left: 3px; + padding-right: 3px; +} +/* line 38, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-panel-body { + border-top: 1px solid #d0d0d0 !important; + border-bottom: 1px solid #d0d0d0 !important; + padding: 4px 0 4px 0; + background-color: #ebe6e6; +} +/* line 48, ../../../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 53, ../../../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 137, ../../../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: 4px 4px 4px 4px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-color: #ebe6e6; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mc { + background-color: #ebe6e6; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-grid-row-editor-buttons-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-grid-row-editor-buttons-default-bottom-frameInfo { + font-family: th-0-0-5-5-0-1-1-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tr, +.x-grid-row-editor-buttons-default-bottom-br, +.x-grid-row-editor-buttons-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl, +.x-grid-row-editor-buttons-default-bottom-bl, +.x-grid-row-editor-buttons-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl, +.x-grid-row-editor-buttons-default-bottom-bl, +.x-grid-row-editor-buttons-default-bottom-tr, +.x-grid-row-editor-buttons-default-bottom-br, +.x-grid-row-editor-buttons-default-bottom-tc, +.x-grid-row-editor-buttons-default-bottom-bc, +.x-grid-row-editor-buttons-default-bottom-ml, +.x-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-ml, +.x-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mc { + padding: 4px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-tl, +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-row-editor-buttons-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 4px 4px 4px 4px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-color: #ebe6e6; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mc { + background-color: #ebe6e6; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-grid-row-editor-buttons-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-grid-row-editor-buttons-default-top-frameInfo { + font-family: th-5-5-0-0-1-1-0-1-4-4-4-4; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tr, +.x-grid-row-editor-buttons-default-top-br, +.x-grid-row-editor-buttons-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl, +.x-grid-row-editor-buttons-default-top-bl, +.x-grid-row-editor-buttons-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl, +.x-grid-row-editor-buttons-default-top-bl, +.x-grid-row-editor-buttons-default-top-tr, +.x-grid-row-editor-buttons-default-top-br, +.x-grid-row-editor-buttons-default-top-tc, +.x-grid-row-editor-buttons-default-top-bc, +.x-grid-row-editor-buttons-default-top-ml, +.x-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-ml, +.x-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mc { + padding: 0px 0px 4px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-tl, +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-row-editor-buttons-default-top:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 97, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons-default-bottom { + top: 29px; +} + +/* line 103, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons-default-top { + bottom: 29px; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons { + border-color: #d0d0d0; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-row-editor-update-button { + margin-right: 2px; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-row-editor-cancel-button { + margin-left: 2px; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-rtl.x-row-editor-update-button { + margin-left: 2px; + margin-right: auto; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-rtl.x-row-editor-cancel-button { + margin-right: 2px; + margin-left: auto; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-errors .x-tip-body { + padding: 5px; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-errors-item { + list-style: disc; + margin-left: 15px; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-rtl.x-grid-row-editor-errors .x-grid-row-editor-errors-item { + margin-left: 0; + margin-right: 15px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-cell-inner-row-expander { + padding: 6px 7px 5px 7px; +} +/* line 5, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-row-expander { + padding-top: 5px; + padding-bottom: 4px; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-expander { + width: 9px; + height: 9px; + cursor: pointer; + background-image: url(images/grid/group-collapse.gif); +} +/* line 20, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-collapsed .x-grid-row-expander { + background-image: url(images/grid/group-expand.gif); +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/property/Grid.scss */ +.x-grid-cell-inner-property-name { + background-image: url(images/grid/property-cell-bg.gif); + background-repeat: no-repeat; + background-position: -16px 2px; + padding-left: 12px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-layout-ct { + background-color: white; + padding: 0; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-panel-header-text-container { + color: black; + font-weight: normal; + font-family: tahoma, arial, verdana, sans-serif; + text-transform: none; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item { + margin: 0; +} +/* line 16, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd { + background: #e5e5e5; + border-top-color: #ececec; + padding: 4px 5px 5px 5px; +} +/* line 22, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd-sibling-expanded { + border-top-color: #d0d0d0; +} +/* line 26, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd-last-collapsed { + border-bottom-color: #e5e5e5; +} +/* line 30, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-body { + border-width: 0; +} + +/* line 37, ../../../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 -255px; +} +/* line 42, ../../../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 -240px; +} +/* line 50, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-over .x-tool-collapse-top, +.x-accordion-hd .x-tool-over .x-tool-collapse-bottom { + background-position: -15px -255px; +} +/* line 55, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-over .x-tool-expand-top, +.x-accordion-hd .x-tool-over .x-tool-expand-bottom { + background-position: -15px -240px; +} +/* line 61, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-img { + background-color: #e5e5e5; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-collapse-el { + cursor: pointer; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-left, +.x-layout-split-right { + top: 50%; + margin-top: -18px; + width: 5px; + height: 35px; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-top, +.x-layout-split-bottom { + left: 50%; + width: 35px; + height: 5px; + margin-left: -18px; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-left { + background-image: url(images/util/splitter/mini-left.gif); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-right { + background-image: url(images/util/splitter/mini-right.gif); +} + +/* line 31, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-rtl.x-layout-split-left { + background-image: url(images/util/splitter/mini-right.gif); +} +/* line 35, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-rtl.x-layout-split-right { + background-image: url(images/util/splitter/mini-left.gif); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-top { + background-image: url(images/util/splitter/mini-top.gif); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-bottom { + background-image: url(images/util/splitter/mini-bottom.gif); +} + +/* line 50, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-left { + background-image: url(images/util/splitter/mini-right.gif); +} +/* line 54, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-right { + background-image: url(images/util/splitter/mini-left.gif); +} +/* line 60, ../../../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.gif); +} +/* line 64, ../../../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.gif); +} +/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-top { + background-image: url(images/util/splitter/mini-bottom.gif); +} +/* line 74, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed .x-layout-split-bottom { + background-image: url(images/util/splitter/mini-top.gif); +} + +/* line 79, ../../../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 83, ../../../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 1, ../../../ext-theme-neutral/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + background-color: #e0e0e0; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-body { + background: #f0f0f0; + padding: 2px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-icon-separator { + left: 24px; + border-left: solid 1px #e0e0e0; + background-color: white; + width: 2px; +} + +/* line 27, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu .x-menu-icon-separator { + left: auto; + right: 24px; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item { + padding: 1px; + cursor: pointer; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-indent { + margin-left: 30px; +} + +/* line 51, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-indent { + margin-left: 0; + margin-right: 30px; +} + +/* line 57, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-active { + background-image: none; + background-color: #e6e6e6; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eeeeee), color-stop(100%, #dcdcdc)); + background-image: -webkit-linear-gradient(top, #eeeeee, #dcdcdc); + background-image: -moz-linear-gradient(top, #eeeeee, #dcdcdc); + background-image: -o-linear-gradient(top, #eeeeee, #dcdcdc); + background-image: linear-gradient(top, #eeeeee, #dcdcdc); + border-color: #9d9d9d; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + border-width: 1px; + border-style: solid; + padding: 0; +} +/* line 75, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-nlg .x-menu-item-active { + background: #e6e6e6 repeat-x left top; + background-image: url(images/menu/menu-item-active-bg.gif); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-link { + line-height: 22px; + padding: 0 0 0 30px; + display: inline-block; +} + +/* line 91, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-link { + padding: 0 30px 0 0; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-right-check-item-text { + padding-right: 22px; +} + +/* line 102, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-right-check-item-text { + padding-left: 22px; + padding-right: 0; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-icon { + width: 16px; + height: 16px; + top: 4px; + left: 3px; + background-position: center center; +} + +/* line 116, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-glyph { + font-size: 16px; + line-height: 16px; + color: #222222; + opacity: 0.5; +} +/* line 132, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie8m .x-menu-item-glyph { + color: #898989; +} + +/* line 142, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-gecko .x-menu-item-active .x-menu-item-icon, +.x-quirks .x-menu-item-active .x-menu-item-icon, +.x-ie9m .x-menu-item-active .x-menu-item-icon { + top: 3px; + left: 2px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-icon { + left: auto; + right: 3px; +} + +/* line 159, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-gecko .x-menu-item-active .x-rtl.x-menu-item-icon, +.x-quirks .x-menu-item-active .x-rtl.x-menu-item-icon, +.x-ie9m .x-menu-item-active .x-rtl.x-menu-item-icon { + left: auto; + right: 2px; +} + +/* line 168, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-icon-right { + width: 16px; + height: 16px; + top: 3px; + right: 3px; + background-position: center center; +} + +/* line 177, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-icon-right { + right: auto; + left: 3px; +} + +/* line 183, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-text { + font-size: 11px; + color: #222222; + cursor: pointer; + margin-right: 16px; +} + +/* line 193, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +a.x-rtl .x-menu-item-text { + margin-right: 0; + margin-left: 16px; +} + +/* line 201, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-checked .x-menu-item-icon, .x-menu-item-checked .x-menu-item-icon-right { + background-image: url(images/menu/checked.gif); +} +/* line 204, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-checked .x-menu-group-icon { + background-image: url(images/menu/group-checked.gif); +} + +/* line 210, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-unchecked .x-menu-item-icon, .x-menu-item-unchecked .x-menu-item-icon-right { + background-image: url(images/menu/unchecked.gif); +} +/* line 213, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-unchecked .x-menu-group-icon { + background-image: none; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-separator { + height: 2px; + border-top: solid 1px #e0e0e0; + background-color: white; + margin: 2px 0; + padding: 0; +} + +/* line 226, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-arrow { + width: 12px; + height: 9px; + top: 7px; + right: 0; + background-image: url(images/menu/menu-parent.gif); +} + +/* line 239, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-gecko .x-menu-item-active .x-menu-item-arrow, +.x-quirks .x-menu-item-active .x-menu-item-arrow, +.x-ie9m .x-menu-item-active .x-menu-item-arrow { + top: 6px; + right: -1px; +} + +/* line 246, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-arrow { + left: 0; + right: auto; + background-image: url(images/menu/menu-parent-left.gif); +} + +/* line 257, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-gecko .x-menu-item-active .x-rtl.x-menu-item-arrow, +.x-ie9m .x-menu-item-active .x-rtl.x-menu-item-arrow, +.x-quirks .x-menu-item-active .x-rtl.x-menu-item-arrow { + right: auto; + left: -1px; +} + +/* line 264, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/* line 270, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-content-box .x-menu-icon-separator { + width: 1px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-content-box .x-menu-item-separator { + height: 1px; +} + +/* line 281, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie .x-menu-item-disabled .x-menu-item-icon { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 285, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie .x-menu-item-disabled .x-menu-item-text { + background-color: transparent; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-date-item { + border-color: #99BBE8; +} + +/* line 300, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item .x-form-item-label { + font-size: 11px; + color: #222222; +} + +/* line 306, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top { + height: 8px; + background-image: url(images/menu/scroll-top.gif); +} + +/* line 310, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-bottom { + height: 8px; + background-image: url(images/menu/scroll-bottom.gif); +} + +/* line 316, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top, .x-menu-scroll-bottom { + background-color: #f0f0f0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-menu-item-link:after { + display: none; + content: "x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool { + cursor: pointer; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-img { + overflow: hidden; + width: 15px; + height: 15px; + background-image: url(images/tools/tool-sprites.gif); + margin: 0; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-placeholder { + visibility: hidden; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-close { + background-position: 0 0; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-minimize { + background-position: 0 -15px; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-maximize { + background-position: 0 -30px; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-restore { + background-position: 0 -45px; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-toggle { + background-position: 0 -60px; +} +/* line 53, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-panel-collapsed .x-tool-toggle { + background-position: 0 -75px; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-gear { + background-position: 0 -90px; +} + +/* line 62, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-prev { + background-position: 0 -105px; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-next { + background-position: 0 -120px; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-pin { + background-position: 0 -135px; +} + +/* line 74, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-unpin { + background-position: 0 -150px; +} + +/* line 78, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-right { + background-position: 0 -165px; +} + +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-left { + background-position: 0 -180px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-down { + background-position: 0 -195px; +} + +/* line 90, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-up { + background-position: 0 -210px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-refresh { + background-position: 0 -225px; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-plus { + background-position: 0 -240px; +} + +/* line 102, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-minus { + background-position: 0 -255px; +} + +/* line 106, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-search { + background-position: 0 -270px; +} + +/* line 110, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-save { + background-position: 0 -285px; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-help { + background-position: 0 -300px; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-print { + background-position: 0 -315px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand { + background-position: 0 -330px; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-collapse { + background-position: 0 -345px; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-resize { + background-position: 0 -360px; +} + +/* line 134, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-move { + background-position: 0 -375px; +} + +/* line 139, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-bottom, +.x-tool-collapse-bottom { + background-position: 0 -195px; +} + +/* line 144, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-top, +.x-tool-collapse-top { + background-position: 0 -210px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-left, +.x-tool-collapse-left { + background-position: 0 -180px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-right, +.x-tool-collapse-right { + background-position: 0 -165px; +} + +/* line 161, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-rtl.x-tool-expand-left, .x-rtl.x-tool-collapse-left { + background-position: 0 -165px; +} +/* line 166, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-rtl.x-tool-expand-right, .x-rtl.x-tool-collapse-right { + background-position: 0 -180px; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-close { + background-position: -15px 0; +} +/* line 178, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-minimize { + background-position: -15px -15px; +} +/* line 182, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-maximize { + background-position: -15px -30px; +} +/* line 186, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-restore { + background-position: -15px -45px; +} +/* line 190, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-toggle { + background-position: -15px -60px; +} +/* line 195, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-panel-collapsed .x-tool-over .x-tool-toggle { + background-position: -15px -75px; +} +/* line 200, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-gear { + background-position: -15px -90px; +} +/* line 204, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-prev { + background-position: -15px -105px; +} +/* line 208, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-next { + background-position: -15px -120px; +} +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-pin { + background-position: -15px -135px; +} +/* line 216, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-unpin { + background-position: -15px -150px; +} +/* line 220, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-right { + background-position: -15px -165px; +} +/* line 224, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-left { + background-position: -15px -180px; +} +/* line 228, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-down { + background-position: -15px -195px; +} +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-up { + background-position: -15px -210px; +} +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-refresh { + background-position: -15px -225px; +} +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-plus { + background-position: -15px -240px; +} +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-minus { + background-position: -15px -255px; +} +/* line 248, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-search { + background-position: -15px -270px; +} +/* line 252, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-save { + background-position: -15px -285px; +} +/* line 256, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-help { + background-position: -15px -300px; +} +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-print { + background-position: -15px -315px; +} +/* line 264, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand { + background-position: -15px -330px; +} +/* line 268, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-collapse { + background-position: -15px -345px; +} +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-resize { + background-position: -15px -360px; +} +/* line 276, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-move { + background-position: -15px -375px; +} +/* line 281, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-bottom, +.x-tool-over .x-tool-collapse-bottom { + background-position: -15px -195px; +} +/* line 286, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-top, +.x-tool-over .x-tool-collapse-top { + background-position: -15px -210px; +} +/* line 291, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-left, +.x-tool-over .x-tool-collapse-left { + background-position: -15px -180px; +} +/* line 296, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-expand-right, +.x-tool-over .x-tool-collapse-right { + background-position: -15px -165px; +} +/* line 303, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-rtl.x-tool-expand-left, .x-tool-over .x-rtl.x-tool-collapse-left { + background-position: -15px -165px; +} +/* line 308, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-rtl.x-tool-expand-right, .x-tool-over .x-rtl.x-tool-collapse-right { + background-position: -15px -180px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle { + position: absolute; + z-index: 100; + font-size: 1px; + line-height: 6px; + overflow: hidden; + zoom: 1; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + background-color: #fff; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-collapsed .x-resizable-handle { + display: none; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-north { + cursor: n-resize; +} +/* line 26, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south { + cursor: s-resize; +} +/* line 29, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east { + cursor: e-resize; +} +/* line 32, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-west { + cursor: w-resize; +} +/* line 35, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast { + cursor: se-resize; +} +/* line 38, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest { + cursor: nw-resize; +} +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast { + cursor: ne-resize; +} +/* line 44, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest { + cursor: sw-resize; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-east { + width: 6px; + height: 100%; + right: 0; + top: 0; +} + +/* line 56, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-south { + width: 100%; + height: 6px; + left: 0; + bottom: 0; +} + +/* line 63, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-west { + width: 6px; + height: 100%; + left: 0; + top: 0; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-north { + width: 100%; + height: 6px; + left: 0; + top: 0; +} + +/* line 77, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-southeast { + width: 6px; + height: 6px; + right: 0; + bottom: 0; + z-index: 101; +} + +/* line 85, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-northwest { + width: 6px; + height: 6px; + left: 0; + top: 0; + z-index: 101; +} + +/* line 93, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-northeast { + width: 6px; + height: 6px; + right: 0; + top: 0; + z-index: 101; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-southwest { + width: 6px; + height: 6px; + left: 0; + bottom: 0; + z-index: 101; +} + +/*IE rounding error*/ +/* line 111, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-ie .x-resizable-handle-east { + margin-right: -1px; + /*IE rounding error*/ +} +/* line 115, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-ie .x-resizable-handle-south { + margin-bottom: -1px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-pinned .x-resizable-handle, +.x-resizable-over .x-resizable-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 127, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-window .x-window-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-window-collapsed .x-window-handle { + display: none; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-proxy { + border: 1px dashed #3b5a82; + position: absolute; + overflow: hidden; + z-index: 50000; +} + +/* line 148, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east, +.x-resizable-over .x-resizable-handle-west, +.x-resizable-pinned .x-resizable-handle-east, +.x-resizable-pinned .x-resizable-handle-west { + background-image: url(images/sizer/e-handle.gif); +} +/* line 154, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south, +.x-resizable-over .x-resizable-handle-north, +.x-resizable-pinned .x-resizable-handle-south, +.x-resizable-pinned .x-resizable-handle-north { + background-image: url(images/sizer/s-handle.gif); +} +/* line 159, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast, +.x-resizable-pinned .x-resizable-handle-southeast { + background-position: top left; + background-image: url(images/sizer/se-handle.gif); +} +/* line 164, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest, +.x-resizable-pinned .x-resizable-handle-northwest { + background-position: bottom right; + background-image: url(images/sizer/nw-handle.gif); +} +/* line 169, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast, +.x-resizable-pinned .x-resizable-handle-northeast { + background-position: bottom left; + background-image: url(images/sizer/ne-handle.gif); +} +/* line 174, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest, +.x-resizable-pinned .x-resizable-handle-southwest { + background-position: top right; + background-image: url(images/sizer/sw-handle.gif); +} + +/* Horizontal styles */ +/* line 2, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz { + padding-left: 7px; + background: no-repeat 0 -15px; +} +/* line 6, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-end { + padding-right: 7px; + background: no-repeat right -30px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-inner { + height: 15px; +} + +/* line 20, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-ie6 .x-form-item .x-slider-horz, +.x-ie7 .x-form-item .x-slider-horz, +.x-quirks .x-ie .x-form-item .x-slider-horz { + margin-top: 4px; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb { + width: 14px; + height: 15px; + margin-left: -7px; + background-image: url(images/slider/slider-thumb.png); +} + +/* line 33, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb-over { + background-position: -14px -15px; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb-drag { + background-position: -28px -30px; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-rtl.x-slider-horz { + padding-left: 0; + padding-right: 7px; + background-position: right -30px; +} +/* line 47, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-rtl.x-slider-horz .x-slider-end { + padding-right: 0; + padding-left: 7px; + background-position: left -15px; +} +/* line 53, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-rtl.x-slider-horz .x-slider-thumb { + margin-right: -7px; +} + +/* Vertical styles */ +/* line 60, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert { + padding-top: 7px; + background: no-repeat -30px 0; +} + +/* line 65, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-end { + padding-bottom: 7px; + background: no-repeat -15px bottom; + width: 15px; +} + +/* line 71, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-inner { + width: 15px; +} + +/* line 75, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb { + width: 15px; + height: 14px; + margin-bottom: -7px; + background-image: url(images/slider/slider-v-thumb.png); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb-over { + background-position: -15px -14px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb-drag { + background-position: -30px -28px; +} + +/* line 92, ../../../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 98, ../../../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); +} + +/** + * 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-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-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} [$ui-border-width=$tab-border-width] + * The border-width of 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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 + * + * @param {color} [$ui-border-bottom-color=$tabbar-strip-border-color] + * The bottom border color of inactive tabs. + * + * @member Ext.tab.Tab + */ +/** + * Creates a visual theme for a Tab Bar + * + * @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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 {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 {number} [$ui-tab-height] + * The height of tabs that will be used in this tabbar UI. The tabbar body is given + * a fixed height to leave room for the tabs, and so that the tabbar does not collapse + * when it does not contain any tabs. + * + * @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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-tab-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 137, ../../../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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #eaeaea; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dcdcdc), color-stop(100%, #eaeaea)); + background-image: -webkit-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: -moz-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: -o-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: linear-gradient(top, #dcdcdc, #eaeaea); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mc { + background-image: url(images/tab/tab-default-top-fbg.gif); + background-position: 0 top; + background-color: #eaeaea; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-tab-default-top { + background-image: url(images/tab/tab-default-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-top-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tr, +.x-tab-default-top-br, +.x-tab-default-top-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl, +.x-tab-default-top-bl, +.x-tab-default-top-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl, +.x-tab-default-top-bl, +.x-tab-default-top-tr, +.x-tab-default-top-br, +.x-tab-default-top-tc, +.x-tab-default-top-bc, +.x-tab-default-top-ml, +.x-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-ml, +.x-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-top-tl, +.x-strict .x-ie7 .x-tab-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 3px 9px 3px 9px; + border-width: 0 1px 1px 1px; + border-style: solid; + background-image: none; + background-color: #eaeaea; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #dcdcdc), color-stop(100%, #eaeaea)); + background-image: -webkit-linear-gradient(bottom, #dcdcdc, #eaeaea); + background-image: -moz-linear-gradient(bottom, #dcdcdc, #eaeaea); + background-image: -o-linear-gradient(bottom, #dcdcdc, #eaeaea); + background-image: linear-gradient(bottom, #dcdcdc, #eaeaea); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mc { + background-image: url(images/tab/tab-default-bottom-fbg.gif); + background-position: 0 top; + background-color: #eaeaea; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-tab-default-bottom { + background-image: url(images/tab/tab-default-bottom-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-bottom-frameInfo { + font-family: th-0-0-4-4-0-1-1-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tr, +.x-tab-default-bottom-br, +.x-tab-default-bottom-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl, +.x-tab-default-bottom-bl, +.x-tab-default-bottom-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bc { + height: 4px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl, +.x-tab-default-bottom-bl, +.x-tab-default-bottom-tr, +.x-tab-default-bottom-br, +.x-tab-default-bottom-tc, +.x-tab-default-bottom-bc, +.x-tab-default-bottom-ml, +.x-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-ml, +.x-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mc { + padding: 3px 6px 0px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-bottom-tl, +.x-strict .x-ie7 .x-tab-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-bottom-fbg.gif), bg:url(images/tab/tab-default-bottom-bg.gif), corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #eaeaea; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dcdcdc), color-stop(100%, #eaeaea)); + background-image: -webkit-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: -moz-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: -o-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: linear-gradient(top, #dcdcdc, #eaeaea); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mc { + background-image: url(images/tab/tab-default-top-fbg.gif); + background-position: 0 top; + background-color: #eaeaea; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-tab-default-left { + background-image: url(images/tab/tab-default-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-left-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tr, +.x-tab-default-left-br, +.x-tab-default-left-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl, +.x-tab-default-left-bl, +.x-tab-default-left-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl, +.x-tab-default-left-bl, +.x-tab-default-left-tr, +.x-tab-default-left-br, +.x-tab-default-left-tc, +.x-tab-default-left-bc, +.x-tab-default-left-ml, +.x-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-ml, +.x-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-left-tl, +.x-strict .x-ie7 .x-tab-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-left:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-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: 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: 3px 9px 3px 9px; + border-width: 1px 1px 0 1px; + border-style: solid; + background-image: none; + background-color: #eaeaea; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dcdcdc), color-stop(100%, #eaeaea)); + background-image: -webkit-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: -moz-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: -o-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: linear-gradient(top, #dcdcdc, #eaeaea); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mc { + background-image: url(images/tab/tab-default-top-fbg.gif); + background-position: 0 top; + background-color: #eaeaea; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-tab-default-right { + background-image: url(images/tab/tab-default-top-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-right-frameInfo { + font-family: th-4-4-0-0-1-1-0-1-3-9-3-9; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl { + background-position: 0 -8px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tr { + background-position: right -12px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bl { + background-position: 0 -16px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-br { + background-position: right -20px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bc { + background-position: 0 -4px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tr, +.x-tab-default-right-br, +.x-tab-default-right-mr { + padding-right: 4px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl, +.x-tab-default-right-bl, +.x-tab-default-right-ml { + padding-left: 4px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tc { + height: 4px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl, +.x-tab-default-right-bl, +.x-tab-default-right-tr, +.x-tab-default-right-br, +.x-tab-default-right-tc, +.x-tab-default-right-bc, +.x-tab-default-right-ml, +.x-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-ml, +.x-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mc { + padding: 0px 6px 3px 6px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-right-tl, +.x-strict .x-ie7 .x-tab-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-right:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 307, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default { + border-color: #b5b5b5; + margin: 0 0 0 2px; + cursor: pointer; +} +/* line 312, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-inner { + font-size: 11px; + font-weight: bold; + font-family: tahoma, arial, verdana, sans-serif; + color: #6f6f6f; + line-height: 13px; +} +/* line 322, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-icon-el { + width: 16px; + height: 16px; + line-height: 16px; + background-position: center center; +} +/* line 329, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-glyph { + font-size: 16px; + color: #6f6f6f; + opacity: 0.5; +} +/* line 343, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default .x-tab-glyph { + color: #acacac; +} +/* line 351, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default { + padding-left: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-button { + padding-left: 9px; +} +/* line 358, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-icon-el { + left: 9px; +} + +/* line 366, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-icon .x-tab-inner { + width: 16px; +} + +/* line 373, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default { + margin: 0 2px 0 0; +} + +/* line 379, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default { + margin: 0 2px 0 0; +} + +/* line 384, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-left { + margin: 0 2px 0 0; +} + +/* line 389, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-left { + margin: 0 0 0 2px; +} + +/* line 396, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top, +.x-tab-default-left, +.x-tab-default-right { + border-bottom: 1px solid #d0d0d0; + background-image: none; + background-color: #eaeaea; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dcdcdc), color-stop(100%, #eaeaea)); + background-image: -webkit-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: -moz-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: -o-linear-gradient(top, #dcdcdc, #eaeaea); + background-image: linear-gradient(top, #dcdcdc, #eaeaea); + -webkit-box-shadow: 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 -1px 0 0px 0 inset, white 1px 0 0px 0 inset; + box-shadow: white 0 1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; +} +/* line 403, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-top, .x-nlg +.x-tab-default-left, .x-nlg +.x-tab-default-right { + background-image: url(images/tab/tab-default-top-bg.gif); +} + +/* line 417, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom { + border-top: 1px solid #d0d0d0; + background-image: none; + background-color: #eaeaea; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #dcdcdc), color-stop(100%, #eaeaea)); + background-image: -webkit-linear-gradient(bottom, #dcdcdc, #eaeaea); + background-image: -moz-linear-gradient(bottom, #dcdcdc, #eaeaea); + background-image: -o-linear-gradient(bottom, #dcdcdc, #eaeaea); + background-image: linear-gradient(bottom, #dcdcdc, #eaeaea); + -webkit-box-shadow: 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 -1px 0 0px 0 inset, white 1px 0 0px 0 inset; + box-shadow: white 0 -1px 0px 0 inset, white -1px 0 0px 0 inset, white 1px 0 0px 0 inset; +} +/* line 424, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-bottom { + background-image: url(images/tab/tab-default-bottom-bg.gif); +} + +/* line 438, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-tab-default-left { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} + +/* line 449, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-left { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-rtl.x-tab-default-left { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +} + +/* line 454, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-tab-default-right { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +} + +/* line 465, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-right { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-rtl.x-tab-default-right { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} + +/* line 471, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-icon-text-left .x-tab-inner { + padding-left: 20px; +} + +/* line 478, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-icon-text-left .x-tab-inner { + padding-left: 0; + padding-right: 20px; +} + +/* line 485, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-over { + background-color: #f2eeee; +} +/* line 509, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-over .x-tab-glyph { + color: #6f6f6f; +} +/* line 516, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-over .x-tab-glyph { + color: #b0aeae; +} + +/* line 525, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over, +.x-tab-default-left-over, +.x-tab-default-right-over { + background-image: none; + background-color: #f2eeee; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f0f0f0)); + background-image: -webkit-linear-gradient(top, #ffffff, #f0f0f0); + background-image: -moz-linear-gradient(top, #ffffff, #f0f0f0); + background-image: -o-linear-gradient(top, #ffffff, #f0f0f0); + background-image: linear-gradient(top, #ffffff, #f0f0f0); +} +/* line 529, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-top-over, .x-nlg +.x-tab-default-left-over, .x-nlg +.x-tab-default-right-over { + background-image: url(images/tab/tab-default-top-over-bg.gif); +} + +/* line 534, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over { + background-image: none; + background-color: #f2eeee; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff), color-stop(100%, #f0f0f0)); + background-image: -webkit-linear-gradient(bottom, #ffffff, #f0f0f0); + background-image: -moz-linear-gradient(bottom, #ffffff, #f0f0f0); + background-image: -o-linear-gradient(bottom, #ffffff, #f0f0f0); + background-image: linear-gradient(bottom, #ffffff, #f0f0f0); +} +/* line 538, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-bottom-over { + background-image: url(images/tab/tab-default-bottom-over-bg.gif); +} + +/* line 545, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active { + background-color: #eaeaea; +} +/* line 551, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active .x-tab-inner { + color: #333333; +} +/* line 566, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active .x-tab-glyph { + color: #333333; +} +/* line 573, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-active .x-tab-glyph { + color: #8e8e8e; +} + +/* line 581, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active, +.x-tab-default-left-active, +.x-tab-default-right-active { + border-bottom: 1px solid #eaeaea; + background-image: none; + background-color: #eaeaea; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #eaeaea)); + background-image: -webkit-linear-gradient(top, #ffffff, #eaeaea); + background-image: -moz-linear-gradient(top, #ffffff, #eaeaea); + background-image: -o-linear-gradient(top, #ffffff, #eaeaea); + background-image: linear-gradient(top, #ffffff, #eaeaea); +} +/* line 587, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-top-active, .x-nlg +.x-tab-default-left-active, .x-nlg +.x-tab-default-right-active { + background-image: url(images/tab/tab-default-top-active-bg.gif); +} + +/* line 594, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active { + border-top: 1px solid #eaeaea; + background-image: none; + background-color: #eaeaea; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #ffffff), color-stop(100%, #eaeaea)); + background-image: -webkit-linear-gradient(bottom, #ffffff, #eaeaea); + background-image: -moz-linear-gradient(bottom, #ffffff, #eaeaea); + background-image: -o-linear-gradient(bottom, #ffffff, #eaeaea); + background-image: linear-gradient(bottom, #ffffff, #eaeaea); +} +/* line 600, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-bottom-active { + background-image: url(images/tab/tab-default-bottom-active-bg.gif); +} + +/* line 607, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled { + border-color: #dadada; + cursor: default; +} +/* line 620, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-inner { + color: #b7b7b7; +} +/* line 639, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 644, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-glyph { + color: #b7b7b7; + opacity: 0.3; + filter: none; +} +/* line 658, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-disabled .x-tab-glyph { + color: #dddddd; +} + +/* line 667, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled, +.x-tab-default-left-disabled, +.x-tab-default-right-disabled { + border-color: #dadada #dadada #d0d0d0; +} + +/* line 671, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled { + border-color: #d0d0d0 #dadada #dadada #dadada; +} + +/* line 678, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled, +.x-tab-default-left-disabled, +.x-tab-default-right-disabled { + background-image: none; + background-color: #eeeeee; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eeeeee), color-stop(100%, #f4f4f4)); + background-image: -webkit-linear-gradient(top, #eeeeee, #f4f4f4); + background-image: -moz-linear-gradient(top, #eeeeee, #f4f4f4); + background-image: -o-linear-gradient(top, #eeeeee, #f4f4f4); + background-image: linear-gradient(top, #eeeeee, #f4f4f4); +} +/* line 682, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-top-disabled, .x-nlg +.x-tab-default-left-disabled, .x-nlg +.x-tab-default-right-disabled { + background-image: url(images/tab/tab-default-top-disabled-bg.gif); +} + +/* line 687, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled { + background-image: none; + background-color: #eeeeee; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #eeeeee), color-stop(100%, #f4f4f4)); + background-image: -webkit-linear-gradient(bottom, #eeeeee, #f4f4f4); + background-image: -moz-linear-gradient(bottom, #eeeeee, #f4f4f4); + background-image: -o-linear-gradient(bottom, #eeeeee, #f4f4f4); + background-image: linear-gradient(bottom, #eeeeee, #f4f4f4); +} +/* line 691, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nlg .x-tab-default-bottom-disabled { + background-image: url(images/tab/tab-default-bottom-disabled-bg.gif); +} + +/* line 699, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default { + background-image: none; +} + +/* line 710, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-tl, +.x-tab-default-top-over .x-frame-bl, +.x-tab-default-top-over .x-frame-tr, +.x-tab-default-top-over .x-frame-br, +.x-tab-default-top-over .x-frame-tc, +.x-tab-default-top-over .x-frame-bc, +.x-tab-default-left-over .x-frame-tl, +.x-tab-default-left-over .x-frame-bl, +.x-tab-default-left-over .x-frame-tr, +.x-tab-default-left-over .x-frame-br, +.x-tab-default-left-over .x-frame-tc, +.x-tab-default-left-over .x-frame-bc, +.x-tab-default-right-over .x-frame-tl, +.x-tab-default-right-over .x-frame-bl, +.x-tab-default-right-over .x-frame-tr, +.x-tab-default-right-over .x-frame-br, +.x-tab-default-right-over .x-frame-tc, +.x-tab-default-right-over .x-frame-bc { + background-image: url(images/tab/tab-default-top-over-corners.gif); +} +/* line 714, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-ml, +.x-tab-default-top-over .x-frame-mr, +.x-tab-default-left-over .x-frame-ml, +.x-tab-default-left-over .x-frame-mr, +.x-tab-default-right-over .x-frame-ml, +.x-tab-default-right-over .x-frame-mr { + background-image: url(images/tab/tab-default-top-over-sides.gif); +} +/* line 717, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-mc, +.x-tab-default-left-over .x-frame-mc, +.x-tab-default-right-over .x-frame-mc { + background-color: #f2eeee; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-top-over-fbg.gif); +} + +/* line 732, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-tl, +.x-tab-default-bottom-over .x-frame-bl, +.x-tab-default-bottom-over .x-frame-tr, +.x-tab-default-bottom-over .x-frame-br, +.x-tab-default-bottom-over .x-frame-tc, +.x-tab-default-bottom-over .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-over-corners.gif); +} +/* line 736, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-ml, +.x-tab-default-bottom-over .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-over-sides.gif); +} +/* line 739, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-mc { + background-color: #f2eeee; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-bottom-over-fbg.gif); +} + +/* line 756, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-tl, +.x-tab-default-top-active .x-frame-bl, +.x-tab-default-top-active .x-frame-tr, +.x-tab-default-top-active .x-frame-br, +.x-tab-default-top-active .x-frame-tc, +.x-tab-default-top-active .x-frame-bc, +.x-tab-default-left-active .x-frame-tl, +.x-tab-default-left-active .x-frame-bl, +.x-tab-default-left-active .x-frame-tr, +.x-tab-default-left-active .x-frame-br, +.x-tab-default-left-active .x-frame-tc, +.x-tab-default-left-active .x-frame-bc, +.x-tab-default-right-active .x-frame-tl, +.x-tab-default-right-active .x-frame-bl, +.x-tab-default-right-active .x-frame-tr, +.x-tab-default-right-active .x-frame-br, +.x-tab-default-right-active .x-frame-tc, +.x-tab-default-right-active .x-frame-bc { + background-image: url(images/tab/tab-default-top-active-corners.gif); +} +/* line 760, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-ml, +.x-tab-default-top-active .x-frame-mr, +.x-tab-default-left-active .x-frame-ml, +.x-tab-default-left-active .x-frame-mr, +.x-tab-default-right-active .x-frame-ml, +.x-tab-default-right-active .x-frame-mr { + background-image: url(images/tab/tab-default-top-active-sides.gif); +} +/* line 763, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-mc, +.x-tab-default-left-active .x-frame-mc, +.x-tab-default-right-active .x-frame-mc { + background-color: #eaeaea; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-top-active-fbg.gif); +} + +/* line 778, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-tl, +.x-tab-default-bottom-active .x-frame-bl, +.x-tab-default-bottom-active .x-frame-tr, +.x-tab-default-bottom-active .x-frame-br, +.x-tab-default-bottom-active .x-frame-tc, +.x-tab-default-bottom-active .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-active-corners.gif); +} +/* line 782, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-ml, +.x-tab-default-bottom-active .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-active-sides.gif); +} +/* line 785, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-mc { + background-color: #eaeaea; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-bottom-active-fbg.gif); +} + +/* line 802, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-tl, +.x-tab-default-top-disabled .x-frame-bl, +.x-tab-default-top-disabled .x-frame-tr, +.x-tab-default-top-disabled .x-frame-br, +.x-tab-default-top-disabled .x-frame-tc, +.x-tab-default-top-disabled .x-frame-bc, +.x-tab-default-left-disabled .x-frame-tl, +.x-tab-default-left-disabled .x-frame-bl, +.x-tab-default-left-disabled .x-frame-tr, +.x-tab-default-left-disabled .x-frame-br, +.x-tab-default-left-disabled .x-frame-tc, +.x-tab-default-left-disabled .x-frame-bc, +.x-tab-default-right-disabled .x-frame-tl, +.x-tab-default-right-disabled .x-frame-bl, +.x-tab-default-right-disabled .x-frame-tr, +.x-tab-default-right-disabled .x-frame-br, +.x-tab-default-right-disabled .x-frame-tc, +.x-tab-default-right-disabled .x-frame-bc { + background-image: url(images/tab/tab-default-top-disabled-corners.gif); +} +/* line 806, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-ml, +.x-tab-default-top-disabled .x-frame-mr, +.x-tab-default-left-disabled .x-frame-ml, +.x-tab-default-left-disabled .x-frame-mr, +.x-tab-default-right-disabled .x-frame-ml, +.x-tab-default-right-disabled .x-frame-mr { + background-image: url(images/tab/tab-default-top-disabled-sides.gif); +} +/* line 809, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-mc, +.x-tab-default-left-disabled .x-frame-mc, +.x-tab-default-right-disabled .x-frame-mc { + background-color: #eeeeee; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-top-disabled-fbg.gif); +} + +/* line 824, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-tl, +.x-tab-default-bottom-disabled .x-frame-bl, +.x-tab-default-bottom-disabled .x-frame-tr, +.x-tab-default-bottom-disabled .x-frame-br, +.x-tab-default-bottom-disabled .x-frame-tc, +.x-tab-default-bottom-disabled .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-disabled-corners.gif); +} +/* line 828, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-ml, +.x-tab-default-bottom-disabled .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-disabled-sides.gif); +} +/* line 831, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-mc { + background-color: #eeeeee; + background-repeat: repeat-x; + background-image: url(images/tab/tab-default-bottom-disabled-fbg.gif); +} + +/* line 850, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default-top, +.x-nbr .x-tab-default-left, +.x-nbr .x-tab-default-right { + border-bottom-width: 1px !important; +} +/* line 853, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default-bottom { + border-top-width: 1px !important; +} + +/* line 861, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn { + width: 11px; + height: 11px; + background-image: url(images/tab/tab-default-close.gif); + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 870, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn-over { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 880, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn { + top: 2px; + right: 2px; +} + +/* line 886, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default .x-tab-close-btn { + right: auto; + left: 2px; +} + +/* line 924, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-close-btn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 939, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-closable .x-tab-wrap { + padding-right: 14px; +} + +/* line 944, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-closable .x-tab-wrap { + padding-right: 0px; + padding-left: 14px; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-over:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-top-over-bg.gif), corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif), frame-bg:url(images/tab/tab-default-top-over-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-over:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-bottom-over-bg.gif), corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif), frame-bg:url(images/tab/tab-default-bottom-over-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-active:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-top-active-bg.gif), corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif), frame-bg:url(images/tab/tab-default-top-active-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-active:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-bottom-active-bg.gif), corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif), frame-bg:url(images/tab/tab-default-bottom-active-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-disabled:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-top-disabled-bg.gif), corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif), frame-bg:url(images/tab/tab-default-top-disabled-fbg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-disabled:after { + display: none; + content: "x-slicer:bg:url(images/tab/tab-default-bottom-disabled-bg.gif), corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif), frame-bg:url(images/tab/tab-default-bottom-disabled-fbg.gif)"; +} + +/**/ +/* */ +/* line 94, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default { + border-style: solid; + border-color: #d0d0d0; +} + +/* line 100, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top { + padding: 1px 0 0; + border-width: 1px 1px 0; +} + +/* line 107, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom { + padding: 0 0 1px 0; + border-width: 0 1px 1px 1px; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left { + padding: 0 0 0 1px; + border-width: 1px 0 1px 1px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-left { + padding: 0 1px 0 0; + border-width: 1px 1px 1px 0; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right { + padding: 0 1px 0 0; + border-width: 1px 1px 1px 0; +} + +/* line 138, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-right { + padding: 0 0 0 1px; + border-width: 1px 0 1px 1px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-horizontal { + height: 25px; +} +/* line 153, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-default-horizontal { + height: 23px; +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-vertical { + width: 25px; +} +/* line 165, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-default-vertical { + width: 23px; +} + +/* line 172, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-top { + padding-bottom: 2px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-bottom { + padding-top: 2px; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-left { + padding-right: 2px; +} + +/* line 185, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-body-default-left { + padding-right: 0; + padding-left: 2px; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-right { + padding-left: 2px; +} + +/* line 196, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-body-default-right { + padding-left: 0; + padding-right: 2px; +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default { + border-style: solid; + border-color: #d0d0d0; + background-color: #eaeaea; +} + +/* line 210, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-strip-default-horizontal { + height: 2px; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-strip-default-vertical { + width: 2px; +} + +/* line 224, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-top { + border-width: 1px 0 0 0; + height: 3px; +} +/* line 227, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-top { + border-width: 1px 1px 0; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-bottom { + border-width: 0 0 1px 0; + height: 3px; +} +/* line 235, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-bottom { + border-width: 0 1px 1px 1px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-left { + border-width: 0 0 0 1px; + width: 3px; +} +/* line 243, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-left { + border-width: 1px 0 1px 1px; +} + +/* line 249, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-strip-default-left { + border-width: 0 1px 0 0; +} +/* line 251, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-rtl.x-tab-bar-strip-default-left { + border-width: 1px 1px 1px 0; +} + +/* line 257, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-right { + border-width: 0 1px 0 0; + width: 3px; +} +/* line 260, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-right { + border-width: 1px 1px 1px 0; +} + +/* line 266, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-strip-default-right { + border-width: 0 0 0 1px; +} +/* line 268, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-rtl.x-tab-bar-strip-default-right { + border-width: 1px 0 1px 1px; +} + +/* line 274, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default { + background-color: #d2d2d2; +} + +/* line 279, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top { + background-image: none; + background-color: #d2d2d2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #dfdede), color-stop(100%, #d2d2d2)); + background-image: -webkit-linear-gradient(top, #dfdede, #d2d2d2); + background-image: -moz-linear-gradient(top, #dfdede, #d2d2d2); + background-image: -o-linear-gradient(top, #dfdede, #d2d2d2); + background-image: linear-gradient(top, #dfdede, #d2d2d2); +} +/* line 283, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-top { + background: url(images/tab-bar/tab-bar-default-top-bg.gif); +} + +/* line 289, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom { + background-image: none; + background-color: #d2d2d2; + background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #dfdede), color-stop(100%, #d2d2d2)); + background-image: -webkit-linear-gradient(bottom, #dfdede, #d2d2d2); + background-image: -moz-linear-gradient(bottom, #dfdede, #d2d2d2); + background-image: -o-linear-gradient(bottom, #dfdede, #d2d2d2); + background-image: linear-gradient(bottom, #dfdede, #d2d2d2); +} +/* line 293, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-bottom { + background: url(images/tab-bar/tab-bar-default-bottom-bg.gif) bottom 0; +} + +/* line 299, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left { + background-image: none; + background-color: #d2d2d2; + background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #dfdede), color-stop(100%, #d2d2d2)); + background-image: -webkit-linear-gradient(left, #dfdede, #d2d2d2); + background-image: -moz-linear-gradient(left, #dfdede, #d2d2d2); + background-image: -o-linear-gradient(left, #dfdede, #d2d2d2); + background-image: linear-gradient(left, #dfdede, #d2d2d2); +} +/* line 303, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-left { + background: url(images/tab-bar/tab-bar-default-left-bg.gif); +} + +/* line 309, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right { + background-image: none; + background-color: #d2d2d2; + background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #dfdede), color-stop(100%, #d2d2d2)); + background-image: -webkit-linear-gradient(right, #dfdede, #d2d2d2); + background-image: -moz-linear-gradient(right, #dfdede, #d2d2d2); + background-image: -o-linear-gradient(right, #dfdede, #d2d2d2); + background-image: linear-gradient(right, #dfdede, #d2d2d2); +} +/* line 313, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-nlg .x-tab-bar-default-right { + background: url(images/tab-bar/tab-bar-default-right-bg.gif) 0 right; +} + +/* line 323, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller { + cursor: pointer; +} +/* line 363, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-left, +.x-tab-bar-default .x-tabbar-scroll-right { + height: 20px; + width: 18px; +} +/* line 369, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-top, +.x-tab-bar-default .x-tabbar-scroll-bottom { + width: 20px; + height: 18px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-box-scroller { + margin-top: 1px; +} +/* line 381, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-box-scroller { + margin-left: 1px; +} +/* line 386, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-right .x-box-scroller { + margin-left: 0; + margin-right: 1px; +} + +/* line 456, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-left-top.gif); +} +/* line 459, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-right-top.gif); +} + +/* line 466, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-top .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-right-top.gif); +} +/* line 469, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-top .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-left-top.gif); +} + +/* line 476, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-left-bottom.gif); +} +/* line 479, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-right-bottom.gif); +} + +/* line 486, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-bottom .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-right-bottom.gif); +} +/* line 489, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-bottom .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-left-bottom.gif); +} + +/* line 496, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-left.gif); +} +/* line 499, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-left.gif); +} + +/* line 506, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-left .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-right.gif); +} +/* line 509, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-left .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-right.gif); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-right.gif); +} +/* line 519, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-right.gif); +} + +/* line 526, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-right .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top-left.gif); +} +/* line 529, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-right .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom-left.gif); +} + +/* line 539, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-left-hover, +.x-tab-bar-default .x-tabbar-scroll-right-hover { + background-position: -18px 0; +} +/* line 544, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-top-hover, +.x-tab-bar-default .x-tabbar-scroll-bottom-hover { + background-position: 0 -18px; +} +/* line 549, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + cursor: default; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-top:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-top-bg.gif), stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-bottom:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-bottom-bg.gif), stretch:top"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-left:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-left-bg.gif), stretch:right"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-right:after { + display: none; + content: "x-slicer:bg:url(images/tab-bar/tab-bar-default-right-bg.gif), stretch:left"; +} + +/**/ +/* */ +/* line 998, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain { + border-width: 0; + padding: 0; + height: 23px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox { + border-color: #c5c5c5; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-row-checker, +.x-column-header-checkbox .x-column-header-text { + height: 13px; + width: 13px; + background-image: url(images/form/checkbox.gif); + line-height: 13px; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox .x-column-header-inner { + padding: 5px 5px 4px 5px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-cell-row-checker .x-grid-cell-inner { + padding: 4px 5px 3px 5px; +} +/* line 23, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-row-checker .x-grid-cell-inner { + padding-top: 3px; + padding-bottom: 2px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-hd-checker-on .x-column-header-text, +.x-grid-row-selected .x-grid-row-checker, +.x-grid-row-checked .x-grid-row-checker { + background-position: 0 -13px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-expander { + cursor: pointer; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander { + background-image: url(images/tree/arrows.gif); +} +/* line 11, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander-over .x-tree-expander { + background-position: -32px center; +} +/* line 15, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander { + background-position: -16px center; +} +/* line 19, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander { + background-position: -48px center; +} +/* line 24, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-rtl.x-tree-expander { + background: url(images/tree/arrows-rtl.gif) no-repeat -48px center; +} +/* line 28, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander-over .x-rtl.x-tree-expander { + background-position: -16px center; +} +/* line 32, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-rtl.x-tree-expander { + background-position: -32px center; +} +/* line 36, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-rtl.x-tree-expander { + background-position: 0 center; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow { + background-image: url(images/tree/elbow.gif); +} +/* line 48, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-end { + background-image: url(images/tree/elbow-end.gif); +} +/* line 52, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-plus { + background-image: url(images/tree/elbow-plus.gif); +} +/* line 56, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-plus.gif); +} +/* line 60, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus { + background-image: url(images/tree/elbow-minus.gif); +} +/* line 64, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-minus.gif); +} +/* line 68, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-line { + background-image: url(images/tree/elbow-line.gif); +} +/* line 73, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow { + background-image: url(images/tree/elbow-rtl.gif); +} +/* line 77, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow-end { + background-image: url(images/tree/elbow-end-rtl.gif); +} +/* line 81, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow-plus { + background-image: url(images/tree/elbow-plus-rtl.gif); +} +/* line 85, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-plus-rtl.gif); +} +/* line 89, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-rtl.x-tree-elbow-plus { + background-image: url(images/tree/elbow-minus-rtl.gif); +} +/* line 93, ../../../ext-theme-neutral/sass/src/tree/Panel.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.gif); +} +/* line 97, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow-line { + background-image: url(images/tree/elbow-line-rtl.gif); +} + +/* line 104, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-tree-expander { + background-image: url(images/tree/elbow-plus-nl.gif); +} +/* line 108, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-grid-tree-node-expanded .x-tree-expander { + background-image: url(images/tree/elbow-minus-nl.gif); +} +/* line 113, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-rtl.x-tree-expander { + background-image: url(images/tree/elbow-plus-nl-rtl.gif); +} +/* line 117, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-grid-tree-node-expanded .x-rtl.x-tree-expander { + background-image: url(images/tree/elbow-minus-nl-rtl.gif); +} + +/* line 123, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon { + width: 16px; + height: 20px; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-elbow-img { + width: 16px; + height: 20px; + margin-right: 0; +} + +/* line 135, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-elbow-img { + margin-right: 0; + margin-left: 0; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon, +.x-tree-elbow-img, +.x-tree-checkbox { + margin-top: -3px; + margin-bottom: -4px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon-leaf { + background-image: url(images/tree/leaf.gif); +} + +/* line 156, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-icon-leaf { + background-image: url(images/tree/leaf-rtl.gif); +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon-parent { + background-image: url(images/tree/folder.gif); +} + +/* line 166, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-icon-parent { + background-image: url(images/tree/folder-rtl.gif); +} + +/* line 171, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-node-expanded .x-tree-icon-parent { + background-image: url(images/tree/folder-open.gif); +} + +/* line 176, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-node-expanded .x-rtl.x-tree-icon-parent { + background-image: url(images/tree/folder-open-rtl.gif); +} + +/* line 181, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-checkbox { + margin-right: 3px; + top: 4px; + width: 13px; + height: 13px; + background-image: url(images/form/checkbox.gif); +} + +/* line 190, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-checkbox { + margin-right: 0; + margin-left: 3px; +} + +/* line 196, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-checkbox-checked { + background-position: 0 -13px; +} + +/* line 200, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-loading .x-tree-icon { + background-image: url(images/tree/loading.gif); +} + +/* line 205, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-loading .x-rtl.x-tree-icon { + background-image: url(images/tree/loading.gif); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-cell-inner-treecolumn { + font-size: 1px; + line-height: 0; +} + +/* line 221, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-node-text { + font-size: 11px; + line-height: 13px; + padding-left: 3px; +} + +/* line 228, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-node-text { + padding-left: 0; + padding-right: 3px; +} + +/* line 235, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-cell-inner-treecolumn { + padding: 3px 6px 4px 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-append .x-dd-drop-icon { + background-image: url(images/tree/drop-append.gif); +} + +/* line 5, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-above .x-dd-drop-icon { + background-image: url(images/tree/drop-above.gif); +} + +/* line 9, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-below .x-dd-drop-icon { + background-image: url(images/tree/drop-below.gif); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-drop-ok-between .x-dd-drop-icon { + background-image: url(images/tree/drop-between.gif); +} + +/* line 17, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-ddindicator { + height: 1px; + border-width: 1px 0px 0px; + border-style: dotted; + border-color: green; +} + +/* including package ext-theme-classic */ +/* line 2, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tl { + background: transparent no-repeat 0 0; + zoom: 1; +} + +/* line 7, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tc { + height: 8px; + background: transparent repeat-x 0 0; + overflow: hidden; +} + +/* line 13, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tr { + background: transparent no-repeat right -8px; +} + +/* line 17, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-ml { + background: transparent repeat-y 0; + padding-left: 4px; + overflow: hidden; + zoom: 1; +} + +/* line 24, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mc { + background: repeat-x 0 -16px; + padding: 4px 10px; +} + +/* line 29, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mc h3 { + margin: 0 0 4px 0; + zoom: 1; +} + +/* line 34, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mr { + background: transparent repeat-y right; + padding-right: 4px; + overflow: hidden; +} + +/* line 40, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-bl { + background: transparent no-repeat 0 -16px; + zoom: 1; +} + +/* line 45, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-bc { + background: transparent repeat-x 0 -8px; + height: 8px; + overflow: hidden; +} + +/* line 51, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-br { + background: transparent no-repeat right -24px; +} + +/* line 55, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tl, .x-box-bl { + padding-left: 8px; + overflow: hidden; +} + +/* line 60, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tr, .x-box-br { + padding-right: 8px; + overflow: hidden; +} + +/* line 65, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tl { + background-image: url(images/box/corners.gif); +} + +/* line 69, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tc { + background-image: url(images/box/tb.gif); +} + +/* line 73, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-tr { + background-image: url(images/box/corners.gif); +} + +/* line 77, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-ml { + background-image: url(images/box/l.gif); +} + +/* line 81, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mc { + background-color: #eee; + background-image: url(images/box/tb.gif); + font-family: "Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif; + color: #393939; + font-size: 15px; +} + +/* line 89, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mc h3 { + font-size: 18px; + font-weight: bold; +} + +/* line 94, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-mr { + background-image: url(images/box/r.gif); +} + +/* line 98, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-bl { + background-image: url(images/box/corners.gif); +} + +/* line 102, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-bc { + background-image: url(images/box/tb.gif); +} + +/* line 106, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-br { + background-image: url(images/box/corners.gif); +} + +/* line 110, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-bl, .x-box-blue .x-box-br, .x-box-blue .x-box-tl, .x-box-blue .x-box-tr { + background-image: url(images/box/corners-blue.gif); +} + +/* line 114, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-bc, .x-box-blue .x-box-mc, .x-box-blue .x-box-tc { + background-image: url(images/box/tb-blue.gif); +} + +/* line 118, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-mc { + background-color: #c3daf9; +} + +/* line 122, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-mc h3 { + color: #17385b; +} + +/* line 126, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-ml { + background-image: url(images/box/l-blue.gif); +} + +/* line 130, ../../../ext-theme-classic/sass/src/dom/Element.scss */ +.x-box-blue .x-box-mr { + background-image: url(images/box/r-blue.gif); +} + +/* line 3, ../../../ext-theme-classic/sass/src/toolbar/Toolbar.scss */ +.x-rtl.x-toolbar-more-icon { + background-image: url(images/toolbar/more-left.gif) !important; +} + +/* line 2, ../../../ext-theme-classic/sass/src/window/MessageBox.scss */ +.x-message-box .x-msg-box-wait { + background-image: url(images/shared/blue-loading.gif); +} + +/* line 1, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + height: 22px; +} +/* line 5, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x-content-box .x-form-trigger { + height: 21px; +} + +/* line 12, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x-field-toolbar .x-form-trigger { + height: 20px; +} +/* line 16, ../../../ext-theme-classic/sass/src/form/field/Trigger.scss */ +.x-content-box .x-field-toolbar .x-form-trigger { + height: 19px; +} + +/* line 4, ../../../ext-theme-classic/sass/src/form/field/Spinner.scss */ +.x-content-box div.x-form-spinner-up, +.x-content-box div.x-form-spinner-down { + height: 10px; +} +/* line 10, ../../../ext-theme-classic/sass/src/form/field/Spinner.scss */ +.x-content-box .x-toolbar-item div.x-form-spinner-up, +.x-content-box .x-toolbar-item div.x-form-spinner-down { + height: 9px; +} + +/* line 2, ../../../ext-theme-classic/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-wrap .x-toolbar { + border-left-color: #b5b8c8; + border-top-color: #b5b8c8; + border-right-color: #b5b8c8; +} + +/* line 9, ../../../ext-theme-classic/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-input { + border: 1px solid #b5b8c8; + border-top-width: 0; +} + +/* line 1, ../../../ext-theme-classic/sass/src/grid/column/Column.scss */ +.x-column-header-trigger { + background-color: #c5c5c5; + background-image: url(images/grid/grid3-hd-btn.gif); +} + +/* line 8, ../../../ext-theme-classic/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-trigger { + background-image: url(images/grid/grid3-hd-btn-left.gif); +} + +/* line 6, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x-content-box .x-grid-editor .x-form-trigger { + height: 19px; +} +/* line 13, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-spinner-up, .x-grid-editor .x-form-spinner-down { + background-image: url(images/form/spinner-small.gif); +} +/* line 16, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x-content-box .x-grid-editor .x-form-spinner-up, .x-content-box .x-grid-editor .x-form-spinner-down { + height: 9px; +} +/* line 24, ../../../ext-theme-classic/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-rtl.x-form-trigger-wrap .x-form-spinner-up, .x-grid-editor .x-rtl.x-form-trigger-wrap .x-form-spinner-down { + background-image: url(images/form/spinner-small-rtl.gif); +} + +/* line 1, ../../../ext-theme-classic/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd { + border-width: 1px 0 !important; + -webkit-box-shadow: inset 0 0 0 0 #e5e5e5; + -moz-box-shadow: inset 0 0 0 0 #e5e5e5; + box-shadow: inset 0 0 0 0 #e5e5e5; +} + +/* line 6, ../../../ext-theme-classic/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd-sibling-expanded { + -webkit-box-shadow: inset 0 1px 0 0 #ececec; + -moz-box-shadow: inset 0 1px 0 0 #ececec; + box-shadow: inset 0 1px 0 0 #ececec; +} + +/* line 5, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east, +.x-resizable-over .x-resizable-handle-west, +.x-resizable-pinned .x-resizable-handle-east, +.x-resizable-pinned .x-resizable-handle-west { + background-position: left; +} +/* line 10, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south, +.x-resizable-over .x-resizable-handle-north, +.x-resizable-pinned .x-resizable-handle-south, +.x-resizable-pinned .x-resizable-handle-north { + background-position: top; +} +/* line 14, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast, +.x-resizable-pinned .x-resizable-handle-southeast { + background-position: top left; +} +/* line 18, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest, +.x-resizable-pinned .x-resizable-handle-northwest { + background-position: bottom right; +} +/* line 22, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast, +.x-resizable-pinned .x-resizable-handle-northeast { + background-position: bottom left; +} +/* line 26, ../../../ext-theme-classic/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest, +.x-resizable-pinned .x-resizable-handle-southwest { + background-position: top right; +} + +/* line 6, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-horz, +.x-ie6 .x-slider-horz .x-slider-end, +.x-ie6 .x-slider-horz .x-slider-inner { + background-image: url(images/slider/slider-bg.gif); +} +/* line 10, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-horz .x-slider-thumb { + background-image: url(images/slider/slider-thumb.gif); +} +/* line 16, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-vert, +.x-ie6 .x-slider-vert .x-slider-end, +.x-ie6 .x-slider-vert .x-slider-inner { + background-image: url(images/slider/slider-v-bg.gif); +} +/* line 20, ../../../ext-theme-classic/sass/src/slider/Multi.scss */ +.x-ie6 .x-slider-vert .x-slider-thumb { + background-image: url(images/slider/slider-v-thumb.gif); +} + +/* line 1, ../../../ext-theme-classic/sass/src/tab/Panel.scss */ +.x-tab-icon-el { + top: -1px; +} + +/* line 6, ../../../ext-theme-classic/sass/src/tab/Panel.scss */ +.x-tab-noicon .x-tab-icon { + display: none; +} diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/ext-theme-gray-all-rtl.css b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/ext-theme-gray-all-rtl.css new file mode 100644 index 0000000..96c3f20 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/ext-theme-gray-all-rtl.css @@ -0,0 +1 @@ +.x-body{margin:0}img{border:0}.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}.x-rtl{direction:rtl}.x-ltr{direction:ltr}.x-clear{overflow:hidden;clear:both;font-size:0;line-height:0;display:table}.x-strict .x-ie7 .x-clear{height:0;width:0}.x-layer{position:absolute!important;overflow:hidden;zoom:1}.x-fixed-layer{position:fixed!important;overflow:hidden;zoom:1}.x-shim{position:absolute;left:0;top:0;overflow:hidden;filter:alpha(opacity=0);opacity:0}.x-hide-display{display:none!important}.x-hide-visibility{visibility:hidden!important}.x-ie6 .x-item-disabled{filter:none}.x-hidden,.x-hide-offsets{display:block!important;visibility:hidden!important;position:absolute!important;top:-10000px!important}.x-hide-nosize{height:0!important;width:0!important}.x-hide-clip{position:absolute!important;clip:rect(0,0,0,0);clip:rect(0 0 0 0)}.x-masked-relative{position:relative}.x-ie-shadow{background-color:#777;display:none;position:absolute;overflow:hidden;zoom:1}.x-unselectable{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x-selectable{cursor:auto;-moz-user-select:text;-webkit-user-select:text;-ms-user-select:text;user-select:text;-o-user-select:text}.x-list-plain{list-style-type:none;margin:0;padding:0}.x-table-plain{border-collapse:collapse;border-spacing:0;font-size:1em}.x-frame-tl,.x-frame-tr,.x-frame-tc,.x-frame-bl,.x-frame-br,.x-frame-bc{overflow:hidden;background-repeat:no-repeat}.x-frame-tc,.x-frame-bc{background-repeat:repeat-x}.x-frame-mc{background-repeat:repeat-x;overflow:hidden}.x-proxy-el{position:absolute;background:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x-css-shadow{position:absolute;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px}.x-item-disabled,.x-item-disabled *{cursor:default}.x-box-item{position:absolute!important;left:0;top:0}.x-rtl>.x-box-item{right:0;left:auto}.x-ie6 .x-rtl .x-box-item,.x-quirks .x-ie .x-rtl .x-box-item{right:0;left:auto}div.x-editor{overflow:visible}.x-mask{z-index:100;position:absolute;width:100%;height:100%;zoom:1}.x-mask-shim{z-index:100;position:absolute;top:0;left:0;width:100%;height:100%}.x-mask-msg{z-index:20001;position:absolute}.x-progress{position:relative;border-style:solid;overflow:hidden}.x-progress-bar{overflow:hidden;position:absolute;width:0;height:100%}.x-progress-text{overflow:hidden;position:absolute}.x-btn{display:inline-block;position:relative;zoom:1;*display:inline;outline:0;cursor:pointer;white-space:nowrap;vertical-align:middle;text-decoration:none}.x-btn-wrap{position:relative;display:block}.x-btn-button{position:relative;display:block;text-decoration:none;overflow:hidden;zoom:1}.x-btn-inner{display:block;white-space:nowrap;overflow:hidden;zoom:1}.x-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x-btn-inner-center{text-align:center}.x-btn-inner-left{text-align:left}.x-rtl.x-btn-inner-left{text-align:right}.x-btn-inner-right{text-align:right}.x-rtl.x-btn-inner-right{text-align:left}.x-box-layout-ct{overflow:hidden;zoom:1}.x-box-target{position:absolute;width:20000px;top:0;left:0;height:1px}.x-rtl.x-box-target{left:auto;right:0}.x-box-inner{overflow:hidden;zoom:1;position:relative;left:0;top:0}.x-horizontal-box-overflow-body{float:left}.x-box-scroller{position:relative;background-repeat:no-repeat}.x-box-scroller-left,.x-box-scroller-right{float:left;height:100%;z-index:5}.x-box-scroller-top .x-box-scroller,.x-box-scroller-bottom .x-box-scroller{line-height:0;font-size:0;background-position:center 0}.x-box-menu-after{float:right}.x-rtl.x-box-menu-after{float:left}.x-toolbar-text{white-space:nowrap}.x-toolbar-separator{display:block;font-size:1px;overflow:hidden;cursor:default;border:0;width:0;height:0;line-height:0}.x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal{width:2px}.x-toolbar-scroller{padding-left:0}.x-toolbar-plain{border:0}.x-docked{position:absolute!important;z-index:1}.x-docked-vertical{position:static}.x-docked-top{border-bottom-width:0!important}.x-docked-bottom{border-top-width:0!important}.x-docked-left{border-right-width:0!important}.x-docked-right{border-left-width:0!important}.x-docked-noborder-top{border-top-width:0!important}.x-docked-noborder-right{border-right-width:0!important}.x-docked-noborder-bottom{border-bottom-width:0!important}.x-docked-noborder-left{border-left-width:0!important}.x-noborder-l{border-left-width:0!important}.x-noborder-b{border-bottom-width:0!important}.x-noborder-bl{border-bottom-width:0!important;border-left-width:0!important}.x-noborder-r{border-right-width:0!important}.x-noborder-rl{border-right-width:0!important;border-left-width:0!important}.x-noborder-rb{border-right-width:0!important;border-bottom-width:0!important}.x-noborder-rbl{border-right-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x-noborder-t{border-top-width:0!important}.x-noborder-tl{border-top-width:0!important;border-left-width:0!important}.x-noborder-tb{border-top-width:0!important;border-bottom-width:0!important}.x-noborder-tbl{border-top-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x-noborder-tr{border-top-width:0!important;border-right-width:0!important}.x-noborder-trl{border-top-width:0!important;border-right-width:0!important;border-left-width:0!important}.x-noborder-trb{border-top-width:0!important;border-right-width:0!important;border-bottom-width:0!important}.x-noborder-trbl{border-width:0!important}.x-header-icon{background-repeat:no-repeat;background-position:0 0;vertical-align:middle;text-align:center}.x-header-text-container{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.x-rtl.x-header-text-container{-o-text-overflow:clip;text-overflow:clip}.x-dd-drag-proxy,.x-dd-drag-current{z-index:1000000!important;pointer-events:none}.x-dd-drag-repair .x-dd-drag-ghost{filter:alpha(opacity=60);opacity:.6}.x-dd-drag-repair .x-dd-drop-icon{display:none}.x-dd-drag-ghost{filter:alpha(opacity=85);opacity:.85;padding:5px;padding-left:20px;white-space:nowrap;color:#000;font:normal 11px tahoma,arial,verdana,sans-serif;border:1px solid;border-color:#ddd #bbb #bbb #ddd;background-color:#fff}.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}.x-rtl .x-dd-drag-ghost{padding-left:5px;padding-right:20px}.x-rtl .x-dd-drop-icon{left:auto;right:3px}.x-dd-drop-ok .x-dd-drop-icon{background-image:url(images/dd/drop-yes.gif)}.x-dd-drop-ok-add .x-dd-drop-icon{background-image:url(images/dd/drop-add.gif)}.x-dd-drop-nodrop div.x-dd-drop-icon{background-image:url(images/dd/drop-no.gif)}.x-panel,.x-plain{overflow:hidden;position:relative}.x-panel{outline:0}.x-ie .x-panel-header,.x-ie .x-panel-header-tl,.x-ie .x-panel-header-tc,.x-ie .x-panel-header-tr,.x-ie .x-panel-header-ml,.x-ie .x-panel-header-mc,.x-ie .x-panel-header-mr,.x-ie .x-panel-header-bl,.x-ie .x-panel-header-bc,.x-ie .x-panel-header-br{zoom:1}.x-ie8 td.x-frame-mc{vertical-align:top}.x-panel-body{overflow:hidden;position:relative}.x-nlg .x-panel-header-vertical .x-frame-mc{background-repeat:repeat-y}.x-panel-header-plain,.x-panel-body-plain{border:0;padding:0}.x-tip{position:absolute;overflow:visible}.x-tip-body{overflow:hidden;position:relative}.x-tip-anchor{position:absolute;overflow:hidden;border-style:solid}.x-table-layout{font-size:1em}.x-btn-group{position:relative;overflow:hidden}.x-btn-group-body{position:relative;zoom:1}.x-btn-group-body .x-table-layout-cell{vertical-align:top}.x-viewport,.x-viewport body{margin:0;padding:0;border:0 none;overflow:hidden;height:100%;position:static}.x-window{outline:0;overflow:hidden}.x-window .x-window-wrap{position:relative}.x-window-body{position:relative;overflow:hidden}.x-window-body-plain{background:transparent}.x-form-item-label{display:block}.x-form-item-label-right{text-align:right}.x-form-item-label-top{display:block;zoom:1}.x-form-invalid-icon{overflow:hidden}.x-form-invalid-icon ul{display:none}.x-form-textarea{overflow:auto;resize:none}.x-safari.x-mac .x-form-textarea{margin-bottom:-2px}.x-form-display-field-body{vertical-align:top}.x-form-cb-wrap{vertical-align:top}.x-form-cb{vertical-align:top;overflow:hidden;padding:0;border:0}.x-form-cb::-moz-focus-inner{padding:0;border:0}.x-form-cb-label{display:inline-block;zoom:1}.x-fieldset{display:block;position:relative}.x-fieldset-header{overflow:hidden}.x-fieldset-header .x-form-item,.x-fieldset-header .x-tool{float:left}.x-fieldset-header .x-form-cb-wrap{font-size:0;line-height:0}.x-fieldset-header .x-form-cb{margin:0}.x-rtl.x-fieldset-header .x-form-item,.x-rtl.x-fieldset-header .x-tool{float:right}.x-fieldset-header-text{float:left}.x-webkit *:focus{outline:none!important}.x-form-item{vertical-align:top;table-layout:fixed}.x-form-item-body{position:relative}.x-rtl.x-form-item .x-form-item-input-row{position:relative;right:0}.x-form-form-item td{border-top:1px solid transparent}.x-form-trigger{cursor:pointer;overflow:hidden;background-repeat:no-repeat}.x-item-disabled .x-form-trigger{cursor:default}.x-trigger-noedit{cursor:default}.x-form-trigger-wrap{vertical-align:top;border-collapse:separate}.x-form-spinner-up,.x-form-spinner-down{font-size:0}.x-datepicker{position:relative}.x-datepicker-inner{table-layout:fixed;width:100%;border-collapse:separate}.x-datepicker-cell{padding:0}.x-datepicker-header{position:relative;zoom:1}.x-datepicker-arrow{position:absolute;outline:0;font-size:0}.x-datepicker-column-header{padding:0}.x-datepicker-date{display:block;zoom:1;text-decoration:none}.x-monthpicker{position:absolute;left:0;top:0}.x-monthpicker-body{height:100%}.x-monthpicker-months,.x-monthpicker-years{float:left;height:100%}.x-monthpicker-item{float:left}.x-monthpicker-item-inner{display:block;text-decoration:none}.x-monthpicker-yearnav-button-ct{float:left;text-align:center}.x-monthpicker-yearnav-button{display:inline-block;outline:0;font-size:0}.x-monthpicker-buttons{position:absolute;bottom:0;width:100%}.x-strict .x-ie6 .x-monthpicker-buttons{bottom:-1px}.x-form-file-btn{overflow:hidden}.x-form-file-input{border:0;position:absolute;cursor:pointer;top:-2px;right:-2px;filter:alpha(opacity=0);opacity:0;font-size:1000px}.x-rtl.x-form-file-input{right:auto;left:-2px}.x-form-item-hidden{margin:0}.x-color-picker-item{float:left;text-decoration:none}.x-color-picker-item-inner{display:block;font-size:1px}.x-html-editor-tb .x-toolbar{position:static!important}.x-htmleditor-iframe{display:block;overflow:auto}.x-fit-item{position:relative}.x-grid-row,.x-grid-data-row{outline:0}.x-grid-view{overflow:hidden;position:relative}.x-grid-table{table-layout:fixed;border-collapse:separate}.x-grid-td{overflow:hidden;border-width:0;vertical-align:top}.x-grid-cell-inner{overflow:hidden;white-space:nowrap;zoom:1}.x-grid-resize-marker{position:absolute;z-index:5;top:0}.col-move-top,.col-move-bottom{position:absolute;top:0;line-height:0;font-size:0;overflow:hidden;z-index:20000;background:no-repeat center top transparent}.x-grid-header-ct{cursor:default}.x-column-header{position:absolute;overflow:hidden;background-repeat:repeat-x}.x-column-header-inner{zoom:1;white-space:nowrap;position:relative;overflow:hidden}.x-column-header-text{white-space:nowrap;background-repeat:no-repeat;zoom:1;display:inline-block}.x-column-header-trigger{display:none;height:100%;background-repeat:no-repeat;position:absolute;right:0;top:0;z-index:2}.x-rtl.x-column-header-trigger{left:0;right:auto}.x-column-header-over .x-column-header-trigger,.x-column-header-open .x-column-header-trigger{display:block}.x-column-header-align-right{text-align:right}.x-rtl.x-column-header-align-right{text-align:left}.x-column-header-align-left{text-align:left}.x-rtl.x-column-header-align-left{text-align:right}.x-column-header-align-center{text-align:center}.x-grid-cell-inner-action-col{line-height:0;font-size:0}.x-grid-cell-inner-checkcolumn{line-height:0;font-size:0}.x-row-numberer .x-column-header-inner{text-overflow:clip}.x-grid-group,.x-grid-group-body,.x-grid-group-hd{zoom:1}.x-grid-group-hd{white-space:nowrap}.x-grid-row-body-hidden,.x-grid-group-collapsed{display:none}.x-grid-rowbody{zoom:1}.x-grid-row-body-hidden{display:none}td.x-grid-rowwrap .x-grid-table{border:0}td.x-grid-rowwrap .x-grid-cell{border-bottom:0;background-color:transparent}.x-grid-editor .x-form-cb-wrap{text-align:center}.x-grid-editor .x-form-display-field{margin:0;white-space:nowrap;overflow:hidden}.x-grid-editor div.x-form-action-col-field{line-height:0}.x-grid-row-editor{position:absolute;overflow:visible;z-index:1}.x-grid-row-editor-buttons{position:absolute;white-space:nowrap}.x-grid-row-expander{font-size:0;line-height:0}.x-abs-layout-ct{position:relative}.x-abs-layout-item{position:absolute!important}.x-splitter{font-size:1px}.x-splitter-horizontal{cursor:e-resize;cursor:row-resize}.x-splitter-vertical{cursor:e-resize;cursor:col-resize}.x-splitter-collapsed,.x-splitter-horizontal-noresize,.x-splitter-vertical-noresize{cursor:default}.x-splitter-active{z-index:4}.x-collapse-el{position:absolute;background-repeat:no-repeat}.x-border-layout-ct{overflow:hidden;zoom:1}.x-border-layout-ct{position:relative}.x-border-region-slide-in{z-index:5}.x-region-collapsed-placeholder{z-index:4}.x-column{float:left}.x-rtl>.x-column{float:right}.x-ie6 .x-rtl .x-column,.x-quirks .x-ie .x-rtl .x-column{float:right}.x-ie6 .x-column{display:inline}.x-quirks .x-ie .x-form-layout-table,.x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item{position:relative}.x-form-layout-table{border-collapse:separate;border-spacing:0 2px}.x-ie6 .x-form-layout-table{border-collapse:collapse;border-spacing:0}.x-menu{outline:0}.x-menu-item{white-space:nowrap;overflow:hidden}.x-menu-item-cmp .x-field-label-cell{vertical-align:middle}.x-menu-icon-separator{position:absolute;top:0;z-index:0;height:100%;overflow:hidden}.x-menu-plain .x-menu-icon-separator{display:none}.x-menu-item-link{text-decoration:none;outline:0;zoom:1}.x-menu-item-text{zoom:1}.x-menu-item-icon,.x-menu-item-icon-right,.x-menu-item-arrow{position:absolute;text-align:center}.x-resizable-overlay{position:absolute;left:0;top:0;width:100%;height:100%;display:none;z-index:200000;background-color:#fff;filter:alpha(opacity=0);opacity:0}.x-slider{outline:0;zoom:1;position:relative}.x-slider-inner{position:relative;left:0;top:0;overflow:visible;zoom:1}.x-slider-vert .x-slider-inner{background:repeat-y 0 0}.x-slider-end{zoom:1}.x-slider-thumb{position:absolute;background:no-repeat 0 0}.x-slider-horz .x-slider-thumb{left:0}.x-slider-vert .x-slider-thumb{bottom:0}a.x-tab{text-decoration:none}.x-tab-bar{position:relative}.x-column-header-checkbox .x-column-header-text{display:block;background-repeat:no-repeat;font-size:0}.x-grid-cell-row-checker{vertical-align:middle;background-repeat:no-repeat;font-size:0}.x-tab{display:block;white-space:nowrap;z-index:1}.x-tab-active{z-index:3}.x-tab-wrap{display:block;position:relative}.x-tab-button{zoom:1;display:block;outline:0}.x-tab-inner{display:block;text-align:center;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis;overflow:hidden;zoom:1}.x-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x-tab-bar{z-index:1}.x-tab-bar-body{z-index:2;position:relative}.x-tab-bar-strip{position:absolute;line-height:0;font-size:0;z-index:1}.x-tab-bar-horizontal .x-tab-bar-strip{width:100%;left:0}.x-tab-bar-vertical .x-tab-bar-strip{height:100%;top:0}.x-tab-bar-strip-top{bottom:0}.x-tab-bar-strip-bottom{top:0}.x-tab-bar-strip-left{right:0}.x-rtl.x-tab-bar .x-tab-bar-strip-left{right:auto;left:0}.x-tab-bar-strip-right{left:0}.x-rtl.x-tab-bar .x-tab-bar-strip-right{left:auto;right:0}.x-tab-bar-plain{background:transparent!important}.x-tab-icon-el{position:absolute;background-repeat:no-repeat;top:0;left:0;right:auto;bottom:0}.x-rtl.x-tab-icon-el{left:auto;right:0}.x-tab-close-btn{display:block;position:absolute;font-size:0;line-height:0;background:no-repeat}.x-tab-mc{overflow:visible}.x-autowidth-table .x-grid-table{table-layout:auto;width:auto!important}.x-tree-view{overflow:hidden}.x-tree-elbow-img,.x-tree-icon{background-repeat:no-repeat;background-position:0 center;vertical-align:top}.x-tree-checkbox{border:0;padding:0;vertical-align:top;position:relative;background-color:transparent}.x-tree-animator-wrap{overflow:hidden}.x-tree-node-text{zoom:1}.x-surface{display:-moz-inline-stack;display:inline-block;vertical-align:middle;*vertical-align:auto;zoom:1;*display:inline;overflow:hidden}.rvml{behavior:url(#default#VML)}.x-surface tspan{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x-vml-sprite{position:absolute;left:0;top:0;width:1px;height:1px}.x-vml-group{position:absolute;left:0;top:0;width:1000px;height:1000px}.x-vml-measure-span{position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;display:inline}.x-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}.x-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}svg,vml{overflow:hidden}.x-body{color:black;font-size:12px;font-family:tahoma,arial,verdana,sans-serif}.x-animating-size,.x-collapsed{overflow:hidden!important}.x-editor .x-form-item-body{padding-bottom:0}.x-focus-element{position:absolute;top:-10px;left:-10px;width:0;height:0}.x-focus-frame{position:absolute;left:0;top:0;z-index:100000000;width:0;height:0}.x-focus-frame-top,.x-focus-frame-bottom,.x-focus-frame-left,.x-focus-frame-right{position:absolute;top:0;left:0}.x-focus-frame-top,.x-focus-frame-bottom{border-top:solid 2px #15428b;height:2px}.x-focus-frame-left,.x-focus-frame-right{border-left:solid 2px #15428b;width:2px}.x-mask{filter:alpha(opacity=50);opacity:.5;background:#ccc}.x-mask-msg{padding:2px;border-style:solid;border-width:1px;border-color:#bcb0b0;background-image:none;background-color:#e0e0e0}.x-mask-msg-inner{padding:0 5px;border-style:solid;border-width:1px;border-color:#b3b3b3;background-color:#eee;color:#222;font:normal 11px tahoma,arial,verdana,sans-serif}.x-mask-msg-text{padding:5px 5px 5px 20px;background-image:url(images/grid/loading.gif);background-repeat:no-repeat;background-position:0 center}.x-rtl.x-mask-msg-text{padding:5px 20px 5px 5px;background-position:right center}.x-progress-default{background-color:#f1f1f1;border-width:1px;height:20px;border-color:#8e8e8e}.x-content-box .x-progress-default{height:18px}.x-progress-default .x-progress-bar-default{background-image:none;background-color:#ababab;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#d1d1d1),color-stop(50%,#b8b8b8),color-stop(51%,#ababab),color-stop(100%,#9e9e9e));background-image:-webkit-linear-gradient(top,#d1d1d1,#b8b8b8 50%,#ababab 51%,#9e9e9e);background-image:-moz-linear-gradient(top,#d1d1d1,#b8b8b8 50%,#ababab 51%,#9e9e9e);background-image:-o-linear-gradient(top,#d1d1d1,#b8b8b8 50%,#ababab 51%,#9e9e9e);background-image:linear-gradient(top,#d1d1d1,#b8b8b8 50%,#ababab 51%,#9e9e9e)}.x-nlg .x-progress-default .x-progress-bar-default{background:repeat-x;background-image:url(images/progress/progress-default-bg.gif)}.x-progress-default .x-progress-text{color:white;font-weight:bold;font-size:11px;text-align:center;line-height:18px}.x-progress-default .x-progress-text-back{color:#5d5d5d;line-height:18px}.x-progress-default .x-progress-bar-default:after{display:none;content:"x-slicer:bg:url(images/progress/progress-default-bg.gif)"}.x-btn-default-small{border-color:#bbb}.x-btn-default-small{-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-image:none;background-color:#f8f8f8;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(100%,#eee));background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:-moz-linear-gradient(top,#fff,#eee);background-image:-o-linear-gradient(top,#fff,#eee);background-image:linear-gradient(top,#fff,#eee)}.x-btn-default-small-mc{background-image:url(images/btn/btn-default-small-fbg.gif);background-position:0 top;background-color:#f8f8f8}.x-nlg .x-btn-default-small{background-image:url(images/btn/btn-default-small-bg.gif);background-position:0 top}.x-nbr .x-btn-default-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-btn-default-small-tl{background-position:0 -6px}.x-btn-default-small-tr{background-position:right -9px}.x-btn-default-small-bl{background-position:0 -12px}.x-btn-default-small-br{background-position:right -15px}.x-btn-default-small-ml{background-position:0 top}.x-btn-default-small-mr{background-position:right top}.x-btn-default-small-tc{background-position:0 0}.x-btn-default-small-bc{background-position:0 -3px}.x-btn-default-small-tr,.x-btn-default-small-br,.x-btn-default-small-mr{padding-right:3px}.x-btn-default-small-tl,.x-btn-default-small-bl,.x-btn-default-small-ml{padding-left:3px}.x-btn-default-small-tc{height:3px}.x-btn-default-small-bc{height:3px}.x-btn-default-small-tl,.x-btn-default-small-bl,.x-btn-default-small-tr,.x-btn-default-small-br,.x-btn-default-small-tc,.x-btn-default-small-bc,.x-btn-default-small-ml,.x-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-corners.gif)}.x-btn-default-small-ml,.x-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-sides.gif)}.x-btn-default-small-mc{padding:0}.x-strict .x-ie7 .x-btn-default-small-tl,.x-strict .x-ie7 .x-btn-default-small-bl{position:relative;right:0}.x-btn-default-small:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"}.x-btn-default-small .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 4px}.x-btn-default-small .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-small .x-btn-arrow-right{padding-right:12px}.x-btn-default-small .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:12px}.x-btn-default-small .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-small .x-btn-glyph{font-size:16px;line-height:16px;color:#333;opacity:.5}.x-ie8m .x-btn-default-small .x-btn-glyph{color:#959595}.x-btn-default-small-disabled{border-color:#d7d7d7;background-image:none;background-color:#ececec;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f4f4f4),color-stop(100%,#e2e2e2));background-image:-webkit-linear-gradient(top,#f4f4f4,#e2e2e2);background-image:-moz-linear-gradient(top,#f4f4f4,#e2e2e2);background-image:-o-linear-gradient(top,#f4f4f4,#e2e2e2);background-image:linear-gradient(top,#f4f4f4,#e2e2e2)}.x-btn-default-small-icon .x-btn-button,.x-btn-default-small-noicon .x-btn-button{height:16px}.x-btn-default-small-icon .x-btn-inner,.x-btn-default-small-noicon .x-btn-inner{line-height:16px}.x-btn-default-small-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-small-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-small-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-small-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:4px;padding-left:0}.x-btn-default-small-icon .x-btn-inner{width:16px;padding:0}.x-btn-default-small-icon .x-btn-icon-el{width:16px;height:16px}.x-btn-default-small-icon-text-left .x-btn-button{height:16px}.x-btn-default-small-icon-text-left .x-btn-inner{line-height:16px;padding-left:20px}.x-btn-default-small-icon-text-left .x-rtl.x-btn-inner{padding-left:4px;padding-right:20px}.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:20px}.x-btn-default-small-icon-text-left .x-btn-icon-el{width:16px;right:auto}.x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-small-icon-text-left .x-btn-icon-el{height:16px}.x-btn-default-small-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-small-icon-text-right .x-btn-button{height:16px}.x-btn-default-small-icon-text-right .x-btn-inner{line-height:16px;padding-right:20px}.x-btn-default-small-icon-text-right .x-rtl.x-btn-inner{padding-right:4px;padding-left:20px}.x-btn-default-small-icon-text-right .x-btn-icon-el{width:16px;left:auto}.x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-small-icon-text-right .x-btn-icon-el{height:16px}.x-btn-default-small-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-small-icon-text-top .x-btn-inner{padding-top:20px}.x-btn-default-small-icon-text-top .x-btn-icon-el{height:16px;bottom:auto}.x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-small-icon-text-bottom .x-btn-inner{padding-bottom:20px}.x-btn-default-small-icon-text-bottom .x-btn-icon-el{height:16px;top:auto}.x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-small-over{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-small-focus{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-small-menu-active,.x-btn-default-small-pressed{border-color:#9d9d9d;background-image:none;background-color:#d6d6d6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#c7c7c7),color-stop(100%,#e0e0e0));background-image:-webkit-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-moz-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-o-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:linear-gradient(top,#c7c7c7,#e0e0e0)}.x-btn-default-small-over .x-frame-tl,.x-btn-default-small-over .x-frame-bl,.x-btn-default-small-over .x-frame-tr,.x-btn-default-small-over .x-frame-br,.x-btn-default-small-over .x-frame-tc,.x-btn-default-small-over .x-frame-bc{background-image:url(images/btn/btn-default-small-over-corners.gif)}.x-btn-default-small-over .x-frame-ml,.x-btn-default-small-over .x-frame-mr{background-image:url(images/btn/btn-default-small-over-sides.gif)}.x-btn-default-small-over .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-small-over-fbg.gif)}.x-btn-default-small-focus .x-frame-tl,.x-btn-default-small-focus .x-frame-bl,.x-btn-default-small-focus .x-frame-tr,.x-btn-default-small-focus .x-frame-br,.x-btn-default-small-focus .x-frame-tc,.x-btn-default-small-focus .x-frame-bc{background-image:url(images/btn/btn-default-small-focus-corners.gif)}.x-btn-default-small-focus .x-frame-ml,.x-btn-default-small-focus .x-frame-mr{background-image:url(images/btn/btn-default-small-focus-sides.gif)}.x-btn-default-small-focus .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-small-focus-fbg.gif)}.x-btn-default-small-menu-active .x-frame-tl,.x-btn-default-small-menu-active .x-frame-bl,.x-btn-default-small-menu-active .x-frame-tr,.x-btn-default-small-menu-active .x-frame-br,.x-btn-default-small-menu-active .x-frame-tc,.x-btn-default-small-menu-active .x-frame-bc,.x-btn-default-small-pressed .x-frame-tl,.x-btn-default-small-pressed .x-frame-bl,.x-btn-default-small-pressed .x-frame-tr,.x-btn-default-small-pressed .x-frame-br,.x-btn-default-small-pressed .x-frame-tc,.x-btn-default-small-pressed .x-frame-bc{background-image:url(images/btn/btn-default-small-pressed-corners.gif)}.x-btn-default-small-menu-active .x-frame-ml,.x-btn-default-small-menu-active .x-frame-mr,.x-btn-default-small-pressed .x-frame-ml,.x-btn-default-small-pressed .x-frame-mr{background-image:url(images/btn/btn-default-small-pressed-sides.gif)}.x-btn-default-small-menu-active .x-frame-mc,.x-btn-default-small-pressed .x-frame-mc{background-color:#d6d6d6;background-image:url(images/btn/btn-default-small-pressed-fbg.gif)}.x-btn-default-small-disabled .x-frame-tl,.x-btn-default-small-disabled .x-frame-bl,.x-btn-default-small-disabled .x-frame-tr,.x-btn-default-small-disabled .x-frame-br,.x-btn-default-small-disabled .x-frame-tc,.x-btn-default-small-disabled .x-frame-bc{background-image:url(images/btn/btn-default-small-disabled-corners.gif)}.x-btn-default-small-disabled .x-frame-ml,.x-btn-default-small-disabled .x-frame-mr{background-image:url(images/btn/btn-default-small-disabled-sides.gif)}.x-btn-default-small-disabled .x-frame-mc{background-color:#ececec;background-image:url(images/btn/btn-default-small-disabled-fbg.gif)}.x-nlg .x-btn-default-small-over{background-image:url(images/btn/btn-default-small-over-bg.gif)}.x-nlg .x-btn-default-small-focus{background-image:url(images/btn/btn-default-small-focus-bg.gif)}.x-nlg .x-btn-default-small-menu-active,.x-nlg .x-btn-default-small-pressed{background-image:url(images/btn/btn-default-small-pressed-bg.gif)}.x-nlg .x-btn-default-small-disabled{background-image:url(images/btn/btn-default-small-disabled-bg.gif)}.x-nbr .x-btn-default-small{background-image:none}.x-btn-default-small .x-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:14px}.x-btn-default-small .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-rtl.gif);padding-right:0;padding-left:14px}.x-btn-default-small .x-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:14px}.x-btn-default-small-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-small-over .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x-btn-default-small-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-small-disabled .x-btn-inner,.x-btn-default-small-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-btn-default-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"}.x-btn-default-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"}.x-btn-default-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"}.x-btn-default-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"}.x-btn-default-medium{border-color:#bbb}.x-btn-default-medium{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#f8f8f8;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(100%,#eee));background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:-moz-linear-gradient(top,#fff,#eee);background-image:-o-linear-gradient(top,#fff,#eee);background-image:linear-gradient(top,#fff,#eee)}.x-btn-default-medium-mc{background-image:url(images/btn/btn-default-medium-fbg.gif);background-position:0 top;background-color:#f8f8f8}.x-nlg .x-btn-default-medium{background-image:url(images/btn/btn-default-medium-bg.gif);background-position:0 top}.x-nbr .x-btn-default-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-medium-tl{background-position:0 -6px}.x-btn-default-medium-tr{background-position:right -9px}.x-btn-default-medium-bl{background-position:0 -12px}.x-btn-default-medium-br{background-position:right -15px}.x-btn-default-medium-ml{background-position:0 top}.x-btn-default-medium-mr{background-position:right top}.x-btn-default-medium-tc{background-position:0 0}.x-btn-default-medium-bc{background-position:0 -3px}.x-btn-default-medium-tr,.x-btn-default-medium-br,.x-btn-default-medium-mr{padding-right:3px}.x-btn-default-medium-tl,.x-btn-default-medium-bl,.x-btn-default-medium-ml{padding-left:3px}.x-btn-default-medium-tc{height:3px}.x-btn-default-medium-bc{height:3px}.x-btn-default-medium-tl,.x-btn-default-medium-bl,.x-btn-default-medium-tr,.x-btn-default-medium-br,.x-btn-default-medium-tc,.x-btn-default-medium-bc,.x-btn-default-medium-ml,.x-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-corners.gif)}.x-btn-default-medium-ml,.x-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-sides.gif)}.x-btn-default-medium-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-medium-tl,.x-strict .x-ie7 .x-btn-default-medium-bl{position:relative;right:0}.x-btn-default-medium:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"}.x-btn-default-medium .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x-btn-default-medium .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-medium .x-btn-arrow-right{padding-right:12px}.x-btn-default-medium .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:12px}.x-btn-default-medium .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-medium .x-btn-glyph{font-size:24px;line-height:24px;color:#333;opacity:.5}.x-ie8m .x-btn-default-medium .x-btn-glyph{color:#959595}.x-btn-default-medium-disabled{border-color:#d7d7d7;background-image:none;background-color:#ececec;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f4f4f4),color-stop(100%,#e2e2e2));background-image:-webkit-linear-gradient(top,#f4f4f4,#e2e2e2);background-image:-moz-linear-gradient(top,#f4f4f4,#e2e2e2);background-image:-o-linear-gradient(top,#f4f4f4,#e2e2e2);background-image:linear-gradient(top,#f4f4f4,#e2e2e2)}.x-btn-default-medium-icon .x-btn-button,.x-btn-default-medium-noicon .x-btn-button{height:24px}.x-btn-default-medium-icon .x-btn-inner,.x-btn-default-medium-noicon .x-btn-inner{line-height:24px}.x-btn-default-medium-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-medium-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-medium-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-medium-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:0}.x-btn-default-medium-icon .x-btn-inner{width:24px;padding:0}.x-btn-default-medium-icon .x-btn-icon-el{width:24px;height:24px}.x-btn-default-medium-icon-text-left .x-btn-button{height:24px}.x-btn-default-medium-icon-text-left .x-btn-inner{line-height:24px;padding-left:28px}.x-btn-default-medium-icon-text-left .x-rtl.x-btn-inner{padding-left:3px;padding-right:28px}.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:28px}.x-btn-default-medium-icon-text-left .x-btn-icon-el{width:24px;right:auto}.x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon-el{height:24px}.x-btn-default-medium-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-medium-icon-text-right .x-btn-button{height:24px}.x-btn-default-medium-icon-text-right .x-btn-inner{line-height:24px;padding-right:28px}.x-btn-default-medium-icon-text-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:28px}.x-btn-default-medium-icon-text-right .x-btn-icon-el{width:24px;left:auto}.x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon-el{height:24px}.x-btn-default-medium-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-medium-icon-text-top .x-btn-inner{padding-top:28px}.x-btn-default-medium-icon-text-top .x-btn-icon-el{height:24px;bottom:auto}.x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-medium-icon-text-bottom .x-btn-inner{padding-bottom:28px}.x-btn-default-medium-icon-text-bottom .x-btn-icon-el{height:24px;top:auto}.x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-medium-over{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-medium-focus{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-medium-menu-active,.x-btn-default-medium-pressed{border-color:#9d9d9d;background-image:none;background-color:#d6d6d6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#c7c7c7),color-stop(100%,#e0e0e0));background-image:-webkit-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-moz-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-o-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:linear-gradient(top,#c7c7c7,#e0e0e0)}.x-btn-default-medium-over .x-frame-tl,.x-btn-default-medium-over .x-frame-bl,.x-btn-default-medium-over .x-frame-tr,.x-btn-default-medium-over .x-frame-br,.x-btn-default-medium-over .x-frame-tc,.x-btn-default-medium-over .x-frame-bc{background-image:url(images/btn/btn-default-medium-over-corners.gif)}.x-btn-default-medium-over .x-frame-ml,.x-btn-default-medium-over .x-frame-mr{background-image:url(images/btn/btn-default-medium-over-sides.gif)}.x-btn-default-medium-over .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-medium-over-fbg.gif)}.x-btn-default-medium-focus .x-frame-tl,.x-btn-default-medium-focus .x-frame-bl,.x-btn-default-medium-focus .x-frame-tr,.x-btn-default-medium-focus .x-frame-br,.x-btn-default-medium-focus .x-frame-tc,.x-btn-default-medium-focus .x-frame-bc{background-image:url(images/btn/btn-default-medium-focus-corners.gif)}.x-btn-default-medium-focus .x-frame-ml,.x-btn-default-medium-focus .x-frame-mr{background-image:url(images/btn/btn-default-medium-focus-sides.gif)}.x-btn-default-medium-focus .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-medium-focus-fbg.gif)}.x-btn-default-medium-menu-active .x-frame-tl,.x-btn-default-medium-menu-active .x-frame-bl,.x-btn-default-medium-menu-active .x-frame-tr,.x-btn-default-medium-menu-active .x-frame-br,.x-btn-default-medium-menu-active .x-frame-tc,.x-btn-default-medium-menu-active .x-frame-bc,.x-btn-default-medium-pressed .x-frame-tl,.x-btn-default-medium-pressed .x-frame-bl,.x-btn-default-medium-pressed .x-frame-tr,.x-btn-default-medium-pressed .x-frame-br,.x-btn-default-medium-pressed .x-frame-tc,.x-btn-default-medium-pressed .x-frame-bc{background-image:url(images/btn/btn-default-medium-pressed-corners.gif)}.x-btn-default-medium-menu-active .x-frame-ml,.x-btn-default-medium-menu-active .x-frame-mr,.x-btn-default-medium-pressed .x-frame-ml,.x-btn-default-medium-pressed .x-frame-mr{background-image:url(images/btn/btn-default-medium-pressed-sides.gif)}.x-btn-default-medium-menu-active .x-frame-mc,.x-btn-default-medium-pressed .x-frame-mc{background-color:#d6d6d6;background-image:url(images/btn/btn-default-medium-pressed-fbg.gif)}.x-btn-default-medium-disabled .x-frame-tl,.x-btn-default-medium-disabled .x-frame-bl,.x-btn-default-medium-disabled .x-frame-tr,.x-btn-default-medium-disabled .x-frame-br,.x-btn-default-medium-disabled .x-frame-tc,.x-btn-default-medium-disabled .x-frame-bc{background-image:url(images/btn/btn-default-medium-disabled-corners.gif)}.x-btn-default-medium-disabled .x-frame-ml,.x-btn-default-medium-disabled .x-frame-mr{background-image:url(images/btn/btn-default-medium-disabled-sides.gif)}.x-btn-default-medium-disabled .x-frame-mc{background-color:#ececec;background-image:url(images/btn/btn-default-medium-disabled-fbg.gif)}.x-nlg .x-btn-default-medium-over{background-image:url(images/btn/btn-default-medium-over-bg.gif)}.x-nlg .x-btn-default-medium-focus{background-image:url(images/btn/btn-default-medium-focus-bg.gif)}.x-nlg .x-btn-default-medium-menu-active,.x-nlg .x-btn-default-medium-pressed{background-image:url(images/btn/btn-default-medium-pressed-bg.gif)}.x-nlg .x-btn-default-medium-disabled{background-image:url(images/btn/btn-default-medium-disabled-bg.gif)}.x-nbr .x-btn-default-medium{background-image:none}.x-btn-default-medium .x-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:14px}.x-btn-default-medium .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-rtl.gif);padding-right:0;padding-left:14px}.x-btn-default-medium .x-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:14px}.x-btn-default-medium-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-medium-over .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x-btn-default-medium-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-medium-disabled .x-btn-inner,.x-btn-default-medium-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-btn-default-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"}.x-btn-default-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"}.x-btn-default-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"}.x-btn-default-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"}.x-btn-default-large{border-color:#bbb}.x-btn-default-large{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#f8f8f8;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(100%,#eee));background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:-moz-linear-gradient(top,#fff,#eee);background-image:-o-linear-gradient(top,#fff,#eee);background-image:linear-gradient(top,#fff,#eee)}.x-btn-default-large-mc{background-image:url(images/btn/btn-default-large-fbg.gif);background-position:0 top;background-color:#f8f8f8}.x-nlg .x-btn-default-large{background-image:url(images/btn/btn-default-large-bg.gif);background-position:0 top}.x-nbr .x-btn-default-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-large-tl{background-position:0 -6px}.x-btn-default-large-tr{background-position:right -9px}.x-btn-default-large-bl{background-position:0 -12px}.x-btn-default-large-br{background-position:right -15px}.x-btn-default-large-ml{background-position:0 top}.x-btn-default-large-mr{background-position:right top}.x-btn-default-large-tc{background-position:0 0}.x-btn-default-large-bc{background-position:0 -3px}.x-btn-default-large-tr,.x-btn-default-large-br,.x-btn-default-large-mr{padding-right:3px}.x-btn-default-large-tl,.x-btn-default-large-bl,.x-btn-default-large-ml{padding-left:3px}.x-btn-default-large-tc{height:3px}.x-btn-default-large-bc{height:3px}.x-btn-default-large-tl,.x-btn-default-large-bl,.x-btn-default-large-tr,.x-btn-default-large-br,.x-btn-default-large-tc,.x-btn-default-large-bc,.x-btn-default-large-ml,.x-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-corners.gif)}.x-btn-default-large-ml,.x-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-sides.gif)}.x-btn-default-large-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-large-tl,.x-strict .x-ie7 .x-btn-default-large-bl{position:relative;right:0}.x-btn-default-large:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"}.x-btn-default-large .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x-btn-default-large .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-large .x-btn-arrow-right{padding-right:12px}.x-btn-default-large .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:12px}.x-btn-default-large .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-large .x-btn-glyph{font-size:32px;line-height:32px;color:#333;opacity:.5}.x-ie8m .x-btn-default-large .x-btn-glyph{color:#959595}.x-btn-default-large-disabled{border-color:#d7d7d7;background-image:none;background-color:#ececec;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f4f4f4),color-stop(100%,#e2e2e2));background-image:-webkit-linear-gradient(top,#f4f4f4,#e2e2e2);background-image:-moz-linear-gradient(top,#f4f4f4,#e2e2e2);background-image:-o-linear-gradient(top,#f4f4f4,#e2e2e2);background-image:linear-gradient(top,#f4f4f4,#e2e2e2)}.x-btn-default-large-icon .x-btn-button,.x-btn-default-large-noicon .x-btn-button{height:32px}.x-btn-default-large-icon .x-btn-inner,.x-btn-default-large-noicon .x-btn-inner{line-height:32px}.x-btn-default-large-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-large-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-large-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-large-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:0}.x-btn-default-large-icon .x-btn-inner{width:32px;padding:0}.x-btn-default-large-icon .x-btn-icon-el{width:32px;height:32px}.x-btn-default-large-icon-text-left .x-btn-button{height:32px}.x-btn-default-large-icon-text-left .x-btn-inner{line-height:32px;padding-left:36px}.x-btn-default-large-icon-text-left .x-rtl.x-btn-inner{padding-left:3px;padding-right:36px}.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:36px}.x-btn-default-large-icon-text-left .x-btn-icon-el{width:32px;right:auto}.x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-large-icon-text-left .x-btn-icon-el{height:32px}.x-btn-default-large-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-large-icon-text-right .x-btn-button{height:32px}.x-btn-default-large-icon-text-right .x-btn-inner{line-height:32px;padding-right:36px}.x-btn-default-large-icon-text-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:36px}.x-btn-default-large-icon-text-right .x-btn-icon-el{width:32px;left:auto}.x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-large-icon-text-right .x-btn-icon-el{height:32px}.x-btn-default-large-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-large-icon-text-top .x-btn-inner{padding-top:36px}.x-btn-default-large-icon-text-top .x-btn-icon-el{height:32px;bottom:auto}.x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-large-icon-text-bottom .x-btn-inner{padding-bottom:36px}.x-btn-default-large-icon-text-bottom .x-btn-icon-el{height:32px;top:auto}.x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-large-over{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-large-focus{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-large-menu-active,.x-btn-default-large-pressed{border-color:#9d9d9d;background-image:none;background-color:#d6d6d6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#c7c7c7),color-stop(100%,#e0e0e0));background-image:-webkit-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-moz-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-o-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:linear-gradient(top,#c7c7c7,#e0e0e0)}.x-btn-default-large-over .x-frame-tl,.x-btn-default-large-over .x-frame-bl,.x-btn-default-large-over .x-frame-tr,.x-btn-default-large-over .x-frame-br,.x-btn-default-large-over .x-frame-tc,.x-btn-default-large-over .x-frame-bc{background-image:url(images/btn/btn-default-large-over-corners.gif)}.x-btn-default-large-over .x-frame-ml,.x-btn-default-large-over .x-frame-mr{background-image:url(images/btn/btn-default-large-over-sides.gif)}.x-btn-default-large-over .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-large-over-fbg.gif)}.x-btn-default-large-focus .x-frame-tl,.x-btn-default-large-focus .x-frame-bl,.x-btn-default-large-focus .x-frame-tr,.x-btn-default-large-focus .x-frame-br,.x-btn-default-large-focus .x-frame-tc,.x-btn-default-large-focus .x-frame-bc{background-image:url(images/btn/btn-default-large-focus-corners.gif)}.x-btn-default-large-focus .x-frame-ml,.x-btn-default-large-focus .x-frame-mr{background-image:url(images/btn/btn-default-large-focus-sides.gif)}.x-btn-default-large-focus .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-large-focus-fbg.gif)}.x-btn-default-large-menu-active .x-frame-tl,.x-btn-default-large-menu-active .x-frame-bl,.x-btn-default-large-menu-active .x-frame-tr,.x-btn-default-large-menu-active .x-frame-br,.x-btn-default-large-menu-active .x-frame-tc,.x-btn-default-large-menu-active .x-frame-bc,.x-btn-default-large-pressed .x-frame-tl,.x-btn-default-large-pressed .x-frame-bl,.x-btn-default-large-pressed .x-frame-tr,.x-btn-default-large-pressed .x-frame-br,.x-btn-default-large-pressed .x-frame-tc,.x-btn-default-large-pressed .x-frame-bc{background-image:url(images/btn/btn-default-large-pressed-corners.gif)}.x-btn-default-large-menu-active .x-frame-ml,.x-btn-default-large-menu-active .x-frame-mr,.x-btn-default-large-pressed .x-frame-ml,.x-btn-default-large-pressed .x-frame-mr{background-image:url(images/btn/btn-default-large-pressed-sides.gif)}.x-btn-default-large-menu-active .x-frame-mc,.x-btn-default-large-pressed .x-frame-mc{background-color:#d6d6d6;background-image:url(images/btn/btn-default-large-pressed-fbg.gif)}.x-btn-default-large-disabled .x-frame-tl,.x-btn-default-large-disabled .x-frame-bl,.x-btn-default-large-disabled .x-frame-tr,.x-btn-default-large-disabled .x-frame-br,.x-btn-default-large-disabled .x-frame-tc,.x-btn-default-large-disabled .x-frame-bc{background-image:url(images/btn/btn-default-large-disabled-corners.gif)}.x-btn-default-large-disabled .x-frame-ml,.x-btn-default-large-disabled .x-frame-mr{background-image:url(images/btn/btn-default-large-disabled-sides.gif)}.x-btn-default-large-disabled .x-frame-mc{background-color:#ececec;background-image:url(images/btn/btn-default-large-disabled-fbg.gif)}.x-nlg .x-btn-default-large-over{background-image:url(images/btn/btn-default-large-over-bg.gif)}.x-nlg .x-btn-default-large-focus{background-image:url(images/btn/btn-default-large-focus-bg.gif)}.x-nlg .x-btn-default-large-menu-active,.x-nlg .x-btn-default-large-pressed{background-image:url(images/btn/btn-default-large-pressed-bg.gif)}.x-nlg .x-btn-default-large-disabled{background-image:url(images/btn/btn-default-large-disabled-bg.gif)}.x-nbr .x-btn-default-large{background-image:none}.x-btn-default-large .x-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:14px}.x-btn-default-large .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-rtl.gif);padding-right:0;padding-left:14px}.x-btn-default-large .x-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:14px}.x-btn-default-large-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-large-over .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x-btn-default-large-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-large-disabled .x-btn-inner,.x-btn-default-large-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-btn-default-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"}.x-btn-default-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"}.x-btn-default-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"}.x-btn-default-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"}.x-btn-default-toolbar-small{border-color:transparent}.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:2px 2px 2px 2px;border-width:1px;border-style:solid;background-color:transparent}.x-btn-default-toolbar-small-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-default-toolbar-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-btn-default-toolbar-small-tl{background-position:0 -6px}.x-btn-default-toolbar-small-tr{background-position:right -9px}.x-btn-default-toolbar-small-bl{background-position:0 -12px}.x-btn-default-toolbar-small-br{background-position:right -15px}.x-btn-default-toolbar-small-ml{background-position:0 top}.x-btn-default-toolbar-small-mr{background-position:right top}.x-btn-default-toolbar-small-tc{background-position:0 0}.x-btn-default-toolbar-small-bc{background-position:0 -3px}.x-btn-default-toolbar-small-tr,.x-btn-default-toolbar-small-br,.x-btn-default-toolbar-small-mr{padding-right:3px}.x-btn-default-toolbar-small-tl,.x-btn-default-toolbar-small-bl,.x-btn-default-toolbar-small-ml{padding-left:3px}.x-btn-default-toolbar-small-tc{height:3px}.x-btn-default-toolbar-small-bc{height:3px}.x-btn-default-toolbar-small-tl,.x-btn-default-toolbar-small-bl,.x-btn-default-toolbar-small-tr,.x-btn-default-toolbar-small-br,.x-btn-default-toolbar-small-tc,.x-btn-default-toolbar-small-bc,.x-btn-default-toolbar-small-ml,.x-btn-default-toolbar-small-mr{zoom:1}.x-btn-default-toolbar-small-ml,.x-btn-default-toolbar-small-mr{zoom:1}.x-btn-default-toolbar-small-mc{padding:0}.x-strict .x-ie7 .x-btn-default-toolbar-small-tl,.x-strict .x-ie7 .x-btn-default-toolbar-small-bl{position:relative;right:0}.x-btn-default-toolbar-small .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 4px}.x-btn-default-toolbar-small .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-toolbar-small .x-btn-arrow-right{padding-right:12px}.x-btn-default-toolbar-small .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:12px}.x-btn-default-toolbar-small .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-toolbar-small .x-btn-glyph{font-size:16px;line-height:16px;color:#333;opacity:.5}.x-ie8m .x-btn-default-toolbar-small .x-btn-glyph{color:#999}.x-btn-default-toolbar-small-disabled{border-color:#d7d7d7;background-image:none;background-color:transparent}.x-btn-default-toolbar-small-disabled .x-btn-inner{color:#8c8c8c}.x-btn-default-toolbar-small-icon .x-btn-button,.x-btn-default-toolbar-small-noicon .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon .x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-inner{line-height:16px}.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:4px;padding-left:0}.x-btn-default-toolbar-small-icon .x-btn-inner{width:16px;padding:0}.x-btn-default-toolbar-small-icon .x-btn-icon-el{width:16px;height:16px}.x-btn-default-toolbar-small-icon-text-left .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon-text-left .x-btn-inner{line-height:16px;padding-left:20px}.x-btn-default-toolbar-small-icon-text-left .x-rtl.x-btn-inner{padding-left:4px;padding-right:20px}.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:20px}.x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el{width:16px;right:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el{height:16px}.x-btn-default-toolbar-small-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-toolbar-small-icon-text-right .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon-text-right .x-btn-inner{line-height:16px;padding-right:20px}.x-btn-default-toolbar-small-icon-text-right .x-rtl.x-btn-inner{padding-right:4px;padding-left:20px}.x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el{width:16px;left:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el{height:16px}.x-btn-default-toolbar-small-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-toolbar-small-icon-text-top .x-btn-inner{padding-top:20px}.x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el{height:16px;bottom:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner{padding-bottom:20px}.x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el{height:16px;top:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-small-over{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-toolbar-small-focus{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-toolbar-small-menu-active,.x-btn-default-toolbar-small-pressed{border-color:#9d9d9d;background-image:none;background-color:#d6d6d6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#c7c7c7),color-stop(100%,#e0e0e0));background-image:-webkit-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-moz-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-o-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:linear-gradient(top,#c7c7c7,#e0e0e0)}.x-btn-default-toolbar-small-over .x-frame-tl,.x-btn-default-toolbar-small-over .x-frame-bl,.x-btn-default-toolbar-small-over .x-frame-tr,.x-btn-default-toolbar-small-over .x-frame-br,.x-btn-default-toolbar-small-over .x-frame-tc,.x-btn-default-toolbar-small-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-over-corners.gif)}.x-btn-default-toolbar-small-over .x-frame-ml,.x-btn-default-toolbar-small-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-over-sides.gif)}.x-btn-default-toolbar-small-over .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-toolbar-small-over-fbg.gif)}.x-btn-default-toolbar-small-focus .x-frame-tl,.x-btn-default-toolbar-small-focus .x-frame-bl,.x-btn-default-toolbar-small-focus .x-frame-tr,.x-btn-default-toolbar-small-focus .x-frame-br,.x-btn-default-toolbar-small-focus .x-frame-tc,.x-btn-default-toolbar-small-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-focus-corners.gif)}.x-btn-default-toolbar-small-focus .x-frame-ml,.x-btn-default-toolbar-small-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-focus-sides.gif)}.x-btn-default-toolbar-small-focus .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-toolbar-small-focus-fbg.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-tl,.x-btn-default-toolbar-small-menu-active .x-frame-bl,.x-btn-default-toolbar-small-menu-active .x-frame-tr,.x-btn-default-toolbar-small-menu-active .x-frame-br,.x-btn-default-toolbar-small-menu-active .x-frame-tc,.x-btn-default-toolbar-small-menu-active .x-frame-bc,.x-btn-default-toolbar-small-pressed .x-frame-tl,.x-btn-default-toolbar-small-pressed .x-frame-bl,.x-btn-default-toolbar-small-pressed .x-frame-tr,.x-btn-default-toolbar-small-pressed .x-frame-br,.x-btn-default-toolbar-small-pressed .x-frame-tc,.x-btn-default-toolbar-small-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-pressed-corners.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-ml,.x-btn-default-toolbar-small-menu-active .x-frame-mr,.x-btn-default-toolbar-small-pressed .x-frame-ml,.x-btn-default-toolbar-small-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-pressed-sides.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-mc,.x-btn-default-toolbar-small-pressed .x-frame-mc{background-color:#d6d6d6;background-image:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif)}.x-btn-default-toolbar-small-disabled .x-frame-tl,.x-btn-default-toolbar-small-disabled .x-frame-bl,.x-btn-default-toolbar-small-disabled .x-frame-tr,.x-btn-default-toolbar-small-disabled .x-frame-br,.x-btn-default-toolbar-small-disabled .x-frame-tc,.x-btn-default-toolbar-small-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-disabled-corners.gif)}.x-btn-default-toolbar-small-disabled .x-frame-ml,.x-btn-default-toolbar-small-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)}.x-btn-default-toolbar-small-disabled .x-frame-mc{background-color:transparent}.x-nlg .x-btn-default-toolbar-small-over{background-image:url(images/btn/btn-default-toolbar-small-over-bg.gif)}.x-nlg .x-btn-default-toolbar-small-focus{background-image:url(images/btn/btn-default-toolbar-small-focus-bg.gif)}.x-nlg .x-btn-default-toolbar-small-menu-active,.x-nlg .x-btn-default-toolbar-small-pressed{background-image:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)}.x-nbr .x-btn-default-toolbar-small{background-image:none}.x-btn-default-toolbar-small .x-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:14px}.x-btn-default-toolbar-small .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-noline-rtl.gif);padding-right:0;padding-left:14px}.x-btn-default-toolbar-small .x-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:14px}.x-btn-default-toolbar-small-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-toolbar-small-over .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x-btn-default-toolbar-small-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-toolbar-small-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-over-bg.gif)"}.x-btn-default-toolbar-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-focus-bg.gif)"}.x-btn-default-toolbar-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)"}.x-btn-default-toolbar-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)"}.x-btn-default-toolbar-medium{border-color:transparent}.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:transparent}.x-btn-default-toolbar-medium-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-default-toolbar-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-toolbar-medium-tl{background-position:0 -6px}.x-btn-default-toolbar-medium-tr{background-position:right -9px}.x-btn-default-toolbar-medium-bl{background-position:0 -12px}.x-btn-default-toolbar-medium-br{background-position:right -15px}.x-btn-default-toolbar-medium-ml{background-position:0 top}.x-btn-default-toolbar-medium-mr{background-position:right top}.x-btn-default-toolbar-medium-tc{background-position:0 0}.x-btn-default-toolbar-medium-bc{background-position:0 -3px}.x-btn-default-toolbar-medium-tr,.x-btn-default-toolbar-medium-br,.x-btn-default-toolbar-medium-mr{padding-right:3px}.x-btn-default-toolbar-medium-tl,.x-btn-default-toolbar-medium-bl,.x-btn-default-toolbar-medium-ml{padding-left:3px}.x-btn-default-toolbar-medium-tc{height:3px}.x-btn-default-toolbar-medium-bc{height:3px}.x-btn-default-toolbar-medium-tl,.x-btn-default-toolbar-medium-bl,.x-btn-default-toolbar-medium-tr,.x-btn-default-toolbar-medium-br,.x-btn-default-toolbar-medium-tc,.x-btn-default-toolbar-medium-bc,.x-btn-default-toolbar-medium-ml,.x-btn-default-toolbar-medium-mr{zoom:1}.x-btn-default-toolbar-medium-ml,.x-btn-default-toolbar-medium-mr{zoom:1}.x-btn-default-toolbar-medium-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-toolbar-medium-tl,.x-strict .x-ie7 .x-btn-default-toolbar-medium-bl{position:relative;right:0}.x-btn-default-toolbar-medium .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x-btn-default-toolbar-medium .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-toolbar-medium .x-btn-arrow-right{padding-right:12px}.x-btn-default-toolbar-medium .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:12px}.x-btn-default-toolbar-medium .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-toolbar-medium .x-btn-glyph{font-size:24px;line-height:24px;color:#333;opacity:.5}.x-ie8m .x-btn-default-toolbar-medium .x-btn-glyph{color:#999}.x-btn-default-toolbar-medium-disabled{border-color:#d7d7d7;background-image:none;background-color:transparent}.x-btn-default-toolbar-medium-disabled .x-btn-inner{color:#8c8c8c}.x-btn-default-toolbar-medium-icon .x-btn-button,.x-btn-default-toolbar-medium-noicon .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon .x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-inner{line-height:24px}.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:0}.x-btn-default-toolbar-medium-icon .x-btn-inner{width:24px;padding:0}.x-btn-default-toolbar-medium-icon .x-btn-icon-el{width:24px;height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-inner{line-height:24px;padding-left:28px}.x-btn-default-toolbar-medium-icon-text-left .x-rtl.x-btn-inner{padding-left:3px;padding-right:28px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:28px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el{width:24px;right:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el{height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-toolbar-medium-icon-text-right .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-inner{line-height:24px;padding-right:28px}.x-btn-default-toolbar-medium-icon-text-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:28px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el{width:24px;left:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el{height:24px}.x-btn-default-toolbar-medium-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-toolbar-medium-icon-text-top .x-btn-inner{padding-top:28px}.x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el{height:24px;bottom:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner{padding-bottom:28px}.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el{height:24px;top:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-medium-over{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-toolbar-medium-focus{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-toolbar-medium-menu-active,.x-btn-default-toolbar-medium-pressed{border-color:#9d9d9d;background-image:none;background-color:#d6d6d6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#c7c7c7),color-stop(100%,#e0e0e0));background-image:-webkit-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-moz-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-o-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:linear-gradient(top,#c7c7c7,#e0e0e0)}.x-btn-default-toolbar-medium-over .x-frame-tl,.x-btn-default-toolbar-medium-over .x-frame-bl,.x-btn-default-toolbar-medium-over .x-frame-tr,.x-btn-default-toolbar-medium-over .x-frame-br,.x-btn-default-toolbar-medium-over .x-frame-tc,.x-btn-default-toolbar-medium-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-over-corners.gif)}.x-btn-default-toolbar-medium-over .x-frame-ml,.x-btn-default-toolbar-medium-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-over-sides.gif)}.x-btn-default-toolbar-medium-over .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-toolbar-medium-over-fbg.gif)}.x-btn-default-toolbar-medium-focus .x-frame-tl,.x-btn-default-toolbar-medium-focus .x-frame-bl,.x-btn-default-toolbar-medium-focus .x-frame-tr,.x-btn-default-toolbar-medium-focus .x-frame-br,.x-btn-default-toolbar-medium-focus .x-frame-tc,.x-btn-default-toolbar-medium-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-focus-corners.gif)}.x-btn-default-toolbar-medium-focus .x-frame-ml,.x-btn-default-toolbar-medium-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-focus-sides.gif)}.x-btn-default-toolbar-medium-focus .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-tl,.x-btn-default-toolbar-medium-menu-active .x-frame-bl,.x-btn-default-toolbar-medium-menu-active .x-frame-tr,.x-btn-default-toolbar-medium-menu-active .x-frame-br,.x-btn-default-toolbar-medium-menu-active .x-frame-tc,.x-btn-default-toolbar-medium-menu-active .x-frame-bc,.x-btn-default-toolbar-medium-pressed .x-frame-tl,.x-btn-default-toolbar-medium-pressed .x-frame-bl,.x-btn-default-toolbar-medium-pressed .x-frame-tr,.x-btn-default-toolbar-medium-pressed .x-frame-br,.x-btn-default-toolbar-medium-pressed .x-frame-tc,.x-btn-default-toolbar-medium-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-ml,.x-btn-default-toolbar-medium-menu-active .x-frame-mr,.x-btn-default-toolbar-medium-pressed .x-frame-ml,.x-btn-default-toolbar-medium-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-mc,.x-btn-default-toolbar-medium-pressed .x-frame-mc{background-color:#d6d6d6;background-image:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-tl,.x-btn-default-toolbar-medium-disabled .x-frame-bl,.x-btn-default-toolbar-medium-disabled .x-frame-tr,.x-btn-default-toolbar-medium-disabled .x-frame-br,.x-btn-default-toolbar-medium-disabled .x-frame-tc,.x-btn-default-toolbar-medium-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-ml,.x-btn-default-toolbar-medium-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-mc{background-color:transparent}.x-nlg .x-btn-default-toolbar-medium-over{background-image:url(images/btn/btn-default-toolbar-medium-over-bg.gif)}.x-nlg .x-btn-default-toolbar-medium-focus{background-image:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)}.x-nlg .x-btn-default-toolbar-medium-menu-active,.x-nlg .x-btn-default-toolbar-medium-pressed{background-image:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)}.x-nbr .x-btn-default-toolbar-medium{background-image:none}.x-btn-default-toolbar-medium .x-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:14px}.x-btn-default-toolbar-medium .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-noline-rtl.gif);padding-right:0;padding-left:14px}.x-btn-default-toolbar-medium .x-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:14px}.x-btn-default-toolbar-medium-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-toolbar-medium-over .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x-btn-default-toolbar-medium-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-toolbar-medium-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-over-bg.gif)"}.x-btn-default-toolbar-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)"}.x-btn-default-toolbar-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)"}.x-btn-default-toolbar-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)"}.x-btn-default-toolbar-large{border-color:transparent}.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:transparent}.x-btn-default-toolbar-large-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-default-toolbar-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-toolbar-large-tl{background-position:0 -6px}.x-btn-default-toolbar-large-tr{background-position:right -9px}.x-btn-default-toolbar-large-bl{background-position:0 -12px}.x-btn-default-toolbar-large-br{background-position:right -15px}.x-btn-default-toolbar-large-ml{background-position:0 top}.x-btn-default-toolbar-large-mr{background-position:right top}.x-btn-default-toolbar-large-tc{background-position:0 0}.x-btn-default-toolbar-large-bc{background-position:0 -3px}.x-btn-default-toolbar-large-tr,.x-btn-default-toolbar-large-br,.x-btn-default-toolbar-large-mr{padding-right:3px}.x-btn-default-toolbar-large-tl,.x-btn-default-toolbar-large-bl,.x-btn-default-toolbar-large-ml{padding-left:3px}.x-btn-default-toolbar-large-tc{height:3px}.x-btn-default-toolbar-large-bc{height:3px}.x-btn-default-toolbar-large-tl,.x-btn-default-toolbar-large-bl,.x-btn-default-toolbar-large-tr,.x-btn-default-toolbar-large-br,.x-btn-default-toolbar-large-tc,.x-btn-default-toolbar-large-bc,.x-btn-default-toolbar-large-ml,.x-btn-default-toolbar-large-mr{zoom:1}.x-btn-default-toolbar-large-ml,.x-btn-default-toolbar-large-mr{zoom:1}.x-btn-default-toolbar-large-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-toolbar-large-tl,.x-strict .x-ie7 .x-btn-default-toolbar-large-bl{position:relative;right:0}.x-btn-default-toolbar-large .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x-btn-default-toolbar-large .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-toolbar-large .x-btn-arrow-right{padding-right:12px}.x-btn-default-toolbar-large .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:12px}.x-btn-default-toolbar-large .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-toolbar-large .x-btn-glyph{font-size:32px;line-height:32px;color:#333;opacity:.5}.x-ie8m .x-btn-default-toolbar-large .x-btn-glyph{color:#999}.x-btn-default-toolbar-large-disabled{border-color:#d7d7d7;background-image:none;background-color:transparent}.x-btn-default-toolbar-large-disabled .x-btn-inner{color:#8c8c8c}.x-btn-default-toolbar-large-icon .x-btn-button,.x-btn-default-toolbar-large-noicon .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon .x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-inner{line-height:32px}.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:0}.x-btn-default-toolbar-large-icon .x-btn-inner{width:32px;padding:0}.x-btn-default-toolbar-large-icon .x-btn-icon-el{width:32px;height:32px}.x-btn-default-toolbar-large-icon-text-left .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon-text-left .x-btn-inner{line-height:32px;padding-left:36px}.x-btn-default-toolbar-large-icon-text-left .x-rtl.x-btn-inner{padding-left:3px;padding-right:36px}.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:36px}.x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el{width:32px;right:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el{height:32px}.x-btn-default-toolbar-large-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-toolbar-large-icon-text-right .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon-text-right .x-btn-inner{line-height:32px;padding-right:36px}.x-btn-default-toolbar-large-icon-text-right .x-rtl.x-btn-inner{padding-right:3px;padding-left:36px}.x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el{width:32px;left:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el{height:32px}.x-btn-default-toolbar-large-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-toolbar-large-icon-text-top .x-btn-inner{padding-top:36px}.x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el{height:32px;bottom:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner{padding-bottom:36px}.x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el{height:32px;top:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-large-over{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-toolbar-large-focus{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-toolbar-large-menu-active,.x-btn-default-toolbar-large-pressed{border-color:#9d9d9d;background-image:none;background-color:#d6d6d6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#c7c7c7),color-stop(100%,#e0e0e0));background-image:-webkit-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-moz-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-o-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:linear-gradient(top,#c7c7c7,#e0e0e0)}.x-btn-default-toolbar-large-over .x-frame-tl,.x-btn-default-toolbar-large-over .x-frame-bl,.x-btn-default-toolbar-large-over .x-frame-tr,.x-btn-default-toolbar-large-over .x-frame-br,.x-btn-default-toolbar-large-over .x-frame-tc,.x-btn-default-toolbar-large-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-over-corners.gif)}.x-btn-default-toolbar-large-over .x-frame-ml,.x-btn-default-toolbar-large-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-over-sides.gif)}.x-btn-default-toolbar-large-over .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-toolbar-large-over-fbg.gif)}.x-btn-default-toolbar-large-focus .x-frame-tl,.x-btn-default-toolbar-large-focus .x-frame-bl,.x-btn-default-toolbar-large-focus .x-frame-tr,.x-btn-default-toolbar-large-focus .x-frame-br,.x-btn-default-toolbar-large-focus .x-frame-tc,.x-btn-default-toolbar-large-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-focus-corners.gif)}.x-btn-default-toolbar-large-focus .x-frame-ml,.x-btn-default-toolbar-large-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-focus-sides.gif)}.x-btn-default-toolbar-large-focus .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-toolbar-large-focus-fbg.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-tl,.x-btn-default-toolbar-large-menu-active .x-frame-bl,.x-btn-default-toolbar-large-menu-active .x-frame-tr,.x-btn-default-toolbar-large-menu-active .x-frame-br,.x-btn-default-toolbar-large-menu-active .x-frame-tc,.x-btn-default-toolbar-large-menu-active .x-frame-bc,.x-btn-default-toolbar-large-pressed .x-frame-tl,.x-btn-default-toolbar-large-pressed .x-frame-bl,.x-btn-default-toolbar-large-pressed .x-frame-tr,.x-btn-default-toolbar-large-pressed .x-frame-br,.x-btn-default-toolbar-large-pressed .x-frame-tc,.x-btn-default-toolbar-large-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-pressed-corners.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-ml,.x-btn-default-toolbar-large-menu-active .x-frame-mr,.x-btn-default-toolbar-large-pressed .x-frame-ml,.x-btn-default-toolbar-large-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-pressed-sides.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-mc,.x-btn-default-toolbar-large-pressed .x-frame-mc{background-color:#d6d6d6;background-image:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif)}.x-btn-default-toolbar-large-disabled .x-frame-tl,.x-btn-default-toolbar-large-disabled .x-frame-bl,.x-btn-default-toolbar-large-disabled .x-frame-tr,.x-btn-default-toolbar-large-disabled .x-frame-br,.x-btn-default-toolbar-large-disabled .x-frame-tc,.x-btn-default-toolbar-large-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-disabled-corners.gif)}.x-btn-default-toolbar-large-disabled .x-frame-ml,.x-btn-default-toolbar-large-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)}.x-btn-default-toolbar-large-disabled .x-frame-mc{background-color:transparent}.x-nlg .x-btn-default-toolbar-large-over{background-image:url(images/btn/btn-default-toolbar-large-over-bg.gif)}.x-nlg .x-btn-default-toolbar-large-focus{background-image:url(images/btn/btn-default-toolbar-large-focus-bg.gif)}.x-nlg .x-btn-default-toolbar-large-menu-active,.x-nlg .x-btn-default-toolbar-large-pressed{background-image:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)}.x-nbr .x-btn-default-toolbar-large{background-image:none}.x-btn-default-toolbar-large .x-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:14px}.x-btn-default-toolbar-large .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-noline-rtl.gif);padding-right:0;padding-left:14px}.x-btn-default-toolbar-large .x-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:14px}.x-btn-default-toolbar-large-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-toolbar-large-over .x-rtl.x-btn-split-right{background-image:url(images/button/s-arrow-o-rtl.gif)}.x-btn-default-toolbar-large-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-toolbar-large-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-over-bg.gif)"}.x-btn-default-toolbar-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-focus-bg.gif)"}.x-btn-default-toolbar-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)"}.x-btn-default-toolbar-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)"}.x-btn-icon-text-left .x-btn-icon-el{background-position:left center}.x-btn-icon-text-left .x-rtl.x-btn-icon-el{background-position:right center}.x-btn-icon-text-right .x-btn-icon-el{background-position:right center}.x-btn-icon-text-right .x-rtl.x-btn-icon-el{background-position:left center}.x-btn-icon-text-top .x-btn-icon-el{background-position:center top}.x-btn-icon-text-bottom .x-btn-icon-el{background-position:center bottom}.x-btn-arrow-right{background-position:right center}.x-rtl.x-btn-arrow-right{background-position:left center}.x-btn-arrow-bottom{background-position:center bottom}.x-btn-arrow{background-repeat:no-repeat}.x-btn-split{display:block;background-repeat:no-repeat}.x-btn-split-right{background-position:right center}.x-rtl.x-btn-split-right{background-position:0 center}.x-btn-split-bottom{background-position:center bottom}.x-cycle-fixed-width .x-btn-inner{text-align:inherit}.x-toolbar{font-size:11px;border-style:solid;padding:2px 0 2px 2px}.x-toolbar-item{margin:0 2px 0 0}.x-rtl.x-toolbar-item{margin:0 0 0 2px}.x-toolbar-text{margin:0 6px 0 4px;color:black;line-height:16px;font-family:tahoma,arial,verdana,sans-serif;font-size:11px;font-weight:normal}.x-toolbar-separator-horizontal{margin:0 2px 0 0;height:14px;border-style:solid;border-width:0 1px;border-left-color:#aca899;border-right-color:white}.x-rtl.x-toolbar{padding:2px 2px 2px 0}.x-toolbar-footer{background:transparent;border:0;margin:3px 0 0;padding:2px 0 2px 6px}.x-toolbar-footer .x-toolbar-item{margin:0 6px 0 0}.x-toolbar-spacer{width:2px}.x-toolbar-more-icon{background-image:url(images/toolbar/more.gif)!important;background-position:center center!important;background-repeat:no-repeat}.x-toolbar-default{border-color:#bcb0b0;border-width:1px;background-image:none;background-color:#d8d8d8;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e6e6e6),color-stop(100%,#efefef));background-image:-webkit-linear-gradient(top,#e6e6e6,#efefef);background-image:-moz-linear-gradient(top,#e6e6e6,#efefef);background-image:-o-linear-gradient(top,#e6e6e6,#efefef);background-image:linear-gradient(top,#e6e6e6,#efefef)}.x-toolbar-default .x-box-scroller{cursor:pointer}.x-toolbar-default .x-box-scroller-disabled{filter:alpha(opacity=50);opacity:.5;cursor:default}.x-nlg .x-toolbar-default{background-image:url(images/toolbar/toolbar-default-bg.gif)!important;background-repeat:repeat-x}.x-toolbar-default:after{display:none;content:"x-slicer:bg:url(images/toolbar/toolbar-default-bg.gif), stretch:bottom"}.x-toolbar-scroll-left{background-image:url(images/toolbar/scroll-left.gif);background-position:-14px 0;width:14px;height:22px;border-style:solid;border-color:#8db2e3;border-width:0 0 1px;margin-top:0}.x-toolbar-scroll-left-hover{background-position:0 0}.x-toolbar-scroll-right{background-image:url(images/toolbar/scroll-right.gif);width:14px;height:22px;border-style:solid;border-color:#8db2e3;border-width:0 0 1px;margin-top:0}.x-toolbar-scroll-right-hover{background-position:-14px 0}.x-toolbar .x-box-menu-after{margin:0 2px 0 2px}.x-toolbar-vertical{padding:2px 2px 0 2px}.x-toolbar-vertical .x-toolbar-item{margin:0 0 2px 0}.x-toolbar-vertical .x-toolbar-text{margin:4px 0 6px 0}.x-toolbar-vertical .x-toolbar-separator-vertical{margin:0 5px 2px;border-style:solid none;border-width:1px 0;border-top-color:#aca899;border-bottom-color:white}.x-toolbar-vertical .x-box-menu-after,.x-toolbar-vertical .x-rtl.x-box-menu-after{margin:2px 0 2px 0;display:block;float:none}.x-header-draggable .x-header-body,.x-header-ghost{cursor:move}.x-header-text{white-space:nowrap}.x-panel-ghost{filter:alpha(opacity=65);opacity:.65}.x-panel-default{border-color:#d0d0d0;padding:0}.x-panel-header-default{font-size:11px;border:1px solid #d0d0d0}.x-panel-header-default-horizontal{padding:4px 5px 4px 5px}.x-panel-header-default-horizontal-noborder{padding:5px 6px 4px 6px}.x-panel-header-default-vertical{padding:5px 4px 5px 4px}.x-panel-header-default-vertical-noborder{padding:6px 5px 6px 4px}.x-rtl.x-panel-header-default-vertical{padding:5px 4px 5px 4px}.x-rtl.x-panel-header-default-vertical-noborder{padding:6px 4px 6px 5px}.x-panel-header-text-container-default{color:#333;font-size:11px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;line-height:15px;padding:0 2px 1px;text-transform:none}.x-panel-body-default{background:white;border-color:#d0d0d0;color:black;font-size:12px;font-size:normal;border-width:1px;border-style:solid}.x-panel-header-default{background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:linear-gradient(top,#f0f0f0,#d7d7d7)}.x-panel-header-default-vertical{background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:linear-gradient(right,#f0f0f0,#d7d7d7)}.x-rtl.x-panel-header-default-vertical{background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(left,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(left,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(left,#f0f0f0,#d7d7d7);background-image:linear-gradient(left,#f0f0f0,#d7d7d7)}.x-nlg .x-panel-header-default-top{background:url(images/panel-header/panel-header-default-top-bg.gif)}.x-nlg .x-panel-header-default-bottom{background:url(images/panel-header/panel-header-default-bottom-bg.gif)}.x-nlg .x-panel-header-default-left{background:url(images/panel-header/panel-header-default-left-bg.gif) top right}.x-nlg .x-panel-header-default-right{background:url(images/panel-header/panel-header-default-right-bg.gif) top right}.x-nlg .x-rtl.x-panel-header-default-left{background:url(images/panel-header/panel-header-default-left-bg-rtl.gif)}.x-nlg .x-rtl.x-panel-header-default-right{background:url(images/panel-header/panel-header-default-right-bg-rtl.gif)}.x-panel .x-panel-header-default-collapsed-border-top{border-bottom-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-right{border-left-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-bottom{border-top-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-left{border-right-width:1px!important}.x-panel-header-default-top:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-top-bg.gif), stretch:bottom"}.x-panel-header-default-bottom:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-bottom-bg.gif), stretch:bottom"}.x-panel-header-default-left:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-left-bg-rtl.gif), stretch:left"}.x-panel-header-default-right:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-right-bg-rtl.gif), stretch:left"}.x-panel-header-default-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-default-vertical .x-panel-header-text-container{background-color:#d7d2d2;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#d7d2d2)}.x-panel-header-default-vertical .x-rtl.x-panel-header-text-container{-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-panel-header-default-vertical .x-rtl.x-panel-header-text-container{background-color:#d7d2d2;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3),progid:DXImageTransform.Microsoft.Chroma(color=#d7d2d2)}.x-panel-header-default-top{-webkit-box-shadow:#ececec 0 1px 0 0 inset;-moz-box-shadow:#ececec 0 1px 0 0 inset;box-shadow:#ececec 0 1px 0 0 inset}.x-panel-header-default-right{-webkit-box-shadow:#ececec -1px 0 0 0 inset;-moz-box-shadow:#ececec -1px 0 0 0 inset;box-shadow:#ececec -1px 0 0 0 inset}.x-panel-header-default-bottom{-webkit-box-shadow:#ececec 0 -1px 0 0 inset;-moz-box-shadow:#ececec 0 -1px 0 0 inset;box-shadow:#ececec 0 -1px 0 0 inset}.x-panel-header-default-left{-webkit-box-shadow:#ececec 1px 0 0 0 inset;-moz-box-shadow:#ececec 1px 0 0 0 inset;box-shadow:#ececec 1px 0 0 0 inset}.x-panel-header-default .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-default .x-panel-header-glyph{color:#333;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-default .x-panel-header-glyph{color:#858282}.x-panel-header-default-horizontal .x-panel-header-icon-before-title{margin:0 2px 0 0}.x-panel-header-default-horizontal .x-rtl.x-panel-header-icon-before-title{margin:0 0 0 2px}.x-panel-header-default-horizontal .x-panel-header-icon-after-title{margin:0 0 0 2px}.x-panel-header-default-horizontal .x-rtl.x-panel-header-icon-after-title{margin:0 2px 0 0}.x-panel-header-default-vertical .x-panel-header-icon-before-title{margin:0 0 2px 0}.x-panel-header-default-vertical .x-rtl.x-panel-header-icon-before-title{margin:0 0 2px 0}.x-panel-header-default-vertical .x-panel-header-icon-after-title{margin:2px 0 0 0}.x-panel-header-default-vertical .x-rtl.x-panel-header-icon-after-title{margin:2px 0 0 0}.x-panel-header-default-horizontal .x-tool-after-title{margin:0 0 0 2px}.x-panel-header-default-horizontal .x-rtl.x-tool-after-title{margin:0 2px 0 0}.x-panel-header-default-horizontal .x-tool-before-title{margin:0 2px 0 0}.x-panel-header-default-horizontal .x-rtl.x-tool-before-title{margin:0 0 0 2px}.x-panel-header-default-vertical .x-tool-after-title{margin:2px 0 0 0}.x-panel-header-default-vertical .x-rtl.x-tool-after-title{margin:2px 0 0 0}.x-panel-header-default-vertical .x-tool-before-title{margin:0 0 2px 0}.x-panel-header-default-vertical .x-rtl.x-tool-before-title{margin:0 0 2px 0}.x-rtl.x-panel-header-default-collapsed-border-right{border-right-width:1px!important}.x-rtl.x-panel-header-default-collapsed-border-left{border-left-width:1px!important}.x-panel-default-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-panel-default-framed{border-color:#d0d0d0;padding:4px}.x-panel-header-default-framed{font-size:11px;border:1px solid #d0d0d0}.x-panel-header-default-framed-horizontal{padding:4px 5px 4px 5px}.x-panel-header-default-framed-horizontal-noborder{padding:5px 6px 4px 6px}.x-panel-header-default-framed-vertical{padding:5px 4px 5px 4px}.x-panel-header-default-framed-vertical-noborder{padding:6px 5px 6px 4px}.x-rtl.x-panel-header-default-framed-vertical{padding:5px 4px 5px 4px}.x-rtl.x-panel-header-default-framed-vertical-noborder{padding:6px 4px 6px 5px}.x-panel-header-text-container-default-framed{color:#333;font-size:11px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;line-height:15px;padding:0 2px 1px;text-transform:none}.x-panel-body-default-framed{background:#f1f1f1;border-color:#d0d0d0;color:black;font-size:12px;font-size:normal;border-width:0;border-style:solid}.x-panel-default-framed{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:#f1f1f1}.x-panel-default-framed-mc{background-color:#f1f1f1}.x-nbr .x-panel-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-default-framed-frameInfo{font-family:dh-4-4-4-4-1-1-1-1-4-4-4-4}.x-panel-default-framed-tl{background-position:0 -8px}.x-panel-default-framed-tr{background-position:right -12px}.x-panel-default-framed-bl{background-position:0 -16px}.x-panel-default-framed-br{background-position:right -20px}.x-panel-default-framed-ml{background-position:0 top}.x-panel-default-framed-mr{background-position:right top}.x-panel-default-framed-tc{background-position:0 0}.x-panel-default-framed-bc{background-position:0 -4px}.x-panel-default-framed-tr,.x-panel-default-framed-br,.x-panel-default-framed-mr{padding-right:4px}.x-panel-default-framed-tl,.x-panel-default-framed-bl,.x-panel-default-framed-ml{padding-left:4px}.x-panel-default-framed-tc{height:4px}.x-panel-default-framed-bc{height:4px}.x-panel-default-framed-tl,.x-panel-default-framed-bl,.x-panel-default-framed-tr,.x-panel-default-framed-br,.x-panel-default-framed-tc,.x-panel-default-framed-bc,.x-panel-default-framed-ml,.x-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-corners.gif)}.x-panel-default-framed-ml,.x-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-sides.gif);background-repeat:repeat-y}.x-panel-default-framed-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-panel-default-framed-tl,.x-strict .x-ie7 .x-panel-default-framed-bl{position:relative;right:0}.x-panel-default-framed:after{display:none;content:"x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"}.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:4px 5px 4px 5px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:linear-gradient(top,#f0f0f0,#d7d7d7)}.x-panel-header-default-framed-top-mc{background-image:url(images/panel-header/panel-header-default-framed-top-fbg.gif);background-position:0 top;background-color:#d7d2d2}.x-nlg .x-panel-header-default-framed-top{background-image:url(images/panel-header/panel-header-default-framed-top-bg.gif);background-position:0 top}.x-nbr .x-panel-header-default-framed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-top-frameInfo{font-family:dh-4-4-0-0-1-1-0-1-4-5-4-5}.x-panel-header-default-framed-top-tl{background-position:0 -8px}.x-panel-header-default-framed-top-tr{background-position:right -12px}.x-panel-header-default-framed-top-bl{background-position:0 -16px}.x-panel-header-default-framed-top-br{background-position:right -20px}.x-panel-header-default-framed-top-ml{background-position:0 top}.x-panel-header-default-framed-top-mr{background-position:right top}.x-panel-header-default-framed-top-tc{background-position:0 0}.x-panel-header-default-framed-top-bc{background-position:0 -4px}.x-panel-header-default-framed-top-tr,.x-panel-header-default-framed-top-br,.x-panel-header-default-framed-top-mr{padding-right:4px}.x-panel-header-default-framed-top-tl,.x-panel-header-default-framed-top-bl,.x-panel-header-default-framed-top-ml{padding-left:4px}.x-panel-header-default-framed-top-tc{height:4px}.x-panel-header-default-framed-top-bc{height:0}.x-panel-header-default-framed-top-tl,.x-panel-header-default-framed-top-bl,.x-panel-header-default-framed-top-tr,.x-panel-header-default-framed-top-br,.x-panel-header-default-framed-top-tc,.x-panel-header-default-framed-top-bc,.x-panel-header-default-framed-top-ml,.x-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-corners.gif)}.x-panel-header-default-framed-top-ml,.x-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-sides.gif)}.x-panel-header-default-framed-top-mc{padding:1px 2px 4px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-top-tl,.x-strict .x-ie7 .x-panel-header-default-framed-top-bl{position:relative;right:0}.x-panel-header-default-framed-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"}.x-panel-header-default-framed-right{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 4px 5px 4px;border-width:1px 1px 1px 0;border-style:solid;background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:linear-gradient(right,#f0f0f0,#d7d7d7)}.x-rtl.x-panel-header-default-framed-right{background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(left,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(left,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(left,#f0f0f0,#d7d7d7);background-image:linear-gradient(left,#f0f0f0,#d7d7d7)}.x-panel-header-default-framed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-right-fbg.gif);background-position:right 0;background-color:#d7d2d2}.x-rtl.x-panel-header-default-framed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-right-fbg-rtl.gif);background-position:0 0}.x-nlg .x-panel-header-default-framed-right{background-image:url(images/panel-header/panel-header-default-framed-right-bg.gif);background-position:right 0}.x-nlg .x-rtl.x-panel-header-default-framed-right{background-image:url(images/panel-header/panel-header-default-framed-right-bg-rtl.gif);background-position:0 0}.x-nbr .x-panel-header-default-framed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-right-frameInfo{font-family:dv-0-4-4-0-1-1-1-0-5-4-5-4}.x-panel-header-default-framed-right-tl{background-position:0 0}.x-panel-header-default-framed-right-tr{background-position:0 -4px}.x-panel-header-default-framed-right-bl{background-position:0 -8px}.x-panel-header-default-framed-right-br{background-position:0 -12px}.x-panel-header-default-framed-right-ml{background-position:-4px 0}.x-panel-header-default-framed-right-mr{background-position:right 0}.x-panel-header-default-framed-right-tc{background-position:right 0}.x-panel-header-default-framed-right-bc{background-position:right -4px}.x-rtl.x-panel-header-default-framed-right-tc{background-position:0 0}.x-rtl.x-panel-header-default-framed-right-bc{background-position:0 -4px}.x-panel-header-default-framed-right-tr,.x-panel-header-default-framed-right-br,.x-panel-header-default-framed-right-mr{padding-right:4px}.x-panel-header-default-framed-right-tl,.x-panel-header-default-framed-right-bl,.x-panel-header-default-framed-right-ml{padding-left:0}.x-panel-header-default-framed-right-tc{height:4px}.x-panel-header-default-framed-right-bc{height:4px}.x-panel-header-default-framed-right-tl,.x-panel-header-default-framed-right-bl,.x-panel-header-default-framed-right-tr,.x-panel-header-default-framed-right-br,.x-panel-header-default-framed-right-tc,.x-panel-header-default-framed-right-bc,.x-panel-header-default-framed-right-ml,.x-panel-header-default-framed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-corners.gif)}.x-rtl.x-panel-header-default-framed-right-tl,.x-rtl.x-panel-header-default-framed-right-ml,.x-rtl.x-panel-header-default-framed-right-bl,.x-rtl.x-panel-header-default-framed-right-tr,.x-rtl.x-panel-header-default-framed-right-mr,.x-rtl.x-panel-header-default-framed-right-br{background-image:url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif)}.x-panel-header-default-framed-right-tc,.x-panel-header-default-framed-right-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-sides.gif);background-repeat:repeat-x}.x-rtl.x-panel-header-default-framed-right-tc,.x-rtl.x-panel-header-default-framed-right-bc{background-image:url(images/panel-header/panel-header-default-framed-right-sides-rtl.gif)}.x-panel-header-default-framed-right-mc{padding:2px 1px 2px 4px}.x-strict .x-ie7 .x-panel-header-default-framed-right-tl,.x-strict .x-ie7 .x-panel-header-default-framed-right-bl{position:relative;right:0}.x-panel-header-default-framed-right:after{display:none;content:"x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-right-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-right-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-right-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-right-sides-rtl.gif)"}.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:4px 5px 4px 5px;border-width:0 1px 1px 1px;border-style:solid;background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:linear-gradient(top,#f0f0f0,#d7d7d7)}.x-panel-header-default-framed-bottom-mc{background-image:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif);background-position:0 bottom;background-color:#d7d2d2}.x-nlg .x-panel-header-default-framed-bottom{background-image:url(images/panel-header/panel-header-default-framed-bottom-bg.gif);background-position:0 bottom}.x-nbr .x-panel-header-default-framed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-bottom-frameInfo{font-family:dh-0-0-4-4-0-1-1-1-4-5-4-5}.x-panel-header-default-framed-bottom-tl{background-position:0 -8px}.x-panel-header-default-framed-bottom-tr{background-position:right -12px}.x-panel-header-default-framed-bottom-bl{background-position:0 -16px}.x-panel-header-default-framed-bottom-br{background-position:right -20px}.x-panel-header-default-framed-bottom-ml{background-position:0 bottom}.x-panel-header-default-framed-bottom-mr{background-position:right bottom}.x-panel-header-default-framed-bottom-tc{background-position:0 0}.x-panel-header-default-framed-bottom-bc{background-position:0 -4px}.x-panel-header-default-framed-bottom-tr,.x-panel-header-default-framed-bottom-br,.x-panel-header-default-framed-bottom-mr{padding-right:4px}.x-panel-header-default-framed-bottom-tl,.x-panel-header-default-framed-bottom-bl,.x-panel-header-default-framed-bottom-ml{padding-left:4px}.x-panel-header-default-framed-bottom-tc{height:0}.x-panel-header-default-framed-bottom-bc{height:4px}.x-panel-header-default-framed-bottom-tl,.x-panel-header-default-framed-bottom-bl,.x-panel-header-default-framed-bottom-tr,.x-panel-header-default-framed-bottom-br,.x-panel-header-default-framed-bottom-tc,.x-panel-header-default-framed-bottom-bc,.x-panel-header-default-framed-bottom-ml,.x-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-corners.gif)}.x-panel-header-default-framed-bottom-ml,.x-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)}.x-panel-header-default-framed-bottom-mc{padding:4px 2px 1px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl,.x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl{position:relative;right:0}.x-panel-header-default-framed-bottom:after{display:none;content:"x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"}.x-panel-header-default-framed-left{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 4px 5px 4px;border-width:1px 0 1px 1px;border-style:solid;background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:linear-gradient(right,#f0f0f0,#d7d7d7)}.x-rtl.x-panel-header-default-framed-left{background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(left,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(left,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(left,#f0f0f0,#d7d7d7);background-image:linear-gradient(left,#f0f0f0,#d7d7d7)}.x-panel-header-default-framed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-left-fbg.gif);background-position:left 0;background-color:#d7d2d2}.x-rtl.x-panel-header-default-framed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-left-fbg-rtl.gif);background-position:right 0}.x-nlg .x-panel-header-default-framed-left{background-image:url(images/panel-header/panel-header-default-framed-left-bg.gif);background-position:left 0}.x-nlg .x-rtl.x-panel-header-default-framed-left{background-image:url(images/panel-header/panel-header-default-framed-left-bg-rtl.gif);background-position:right 0}.x-nbr .x-panel-header-default-framed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-left-frameInfo{font-family:dv-4-0-0-4-1-0-1-1-5-4-5-4}.x-panel-header-default-framed-left-tl{background-position:0 0}.x-panel-header-default-framed-left-tr{background-position:0 -4px}.x-panel-header-default-framed-left-bl{background-position:0 -8px}.x-panel-header-default-framed-left-br{background-position:0 -12px}.x-panel-header-default-framed-left-ml{background-position:-4px 0}.x-panel-header-default-framed-left-mr{background-position:right 0}.x-panel-header-default-framed-left-tc{background-position:left 0}.x-panel-header-default-framed-left-bc{background-position:left -4px}.x-rtl.x-panel-header-default-framed-left-tc{background-position:right 0}.x-rtl.x-panel-header-default-framed-left-bc{background-position:right -4px}.x-panel-header-default-framed-left-tr,.x-panel-header-default-framed-left-br,.x-panel-header-default-framed-left-mr{padding-right:0}.x-panel-header-default-framed-left-tl,.x-panel-header-default-framed-left-bl,.x-panel-header-default-framed-left-ml{padding-left:4px}.x-panel-header-default-framed-left-tc{height:4px}.x-panel-header-default-framed-left-bc{height:4px}.x-panel-header-default-framed-left-tl,.x-panel-header-default-framed-left-bl,.x-panel-header-default-framed-left-tr,.x-panel-header-default-framed-left-br,.x-panel-header-default-framed-left-tc,.x-panel-header-default-framed-left-bc,.x-panel-header-default-framed-left-ml,.x-panel-header-default-framed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-corners.gif)}.x-rtl.x-panel-header-default-framed-left-tl,.x-rtl.x-panel-header-default-framed-left-ml,.x-rtl.x-panel-header-default-framed-left-bl,.x-rtl.x-panel-header-default-framed-left-tr,.x-rtl.x-panel-header-default-framed-left-mr,.x-rtl.x-panel-header-default-framed-left-br{background-image:url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif)}.x-panel-header-default-framed-left-tc,.x-panel-header-default-framed-left-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-sides.gif);background-repeat:repeat-x}.x-rtl.x-panel-header-default-framed-left-tc,.x-rtl.x-panel-header-default-framed-left-bc{background-image:url(images/panel-header/panel-header-default-framed-left-sides-rtl.gif)}.x-panel-header-default-framed-left-mc{padding:2px 4px 2px 1px}.x-strict .x-ie7 .x-panel-header-default-framed-left-tl,.x-strict .x-ie7 .x-panel-header-default-framed-left-bl{position:relative;right:0}.x-panel-header-default-framed-left:after{display:none;content:"x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-left-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-left-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-left-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-left-sides-rtl.gif)"}.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:4px 5px 4px 5px;border-width:1px;border-style:solid;background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:linear-gradient(top,#f0f0f0,#d7d7d7)}.x-panel-header-default-framed-collapsed-top-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif);background-position:0 top;background-color:#d7d2d2}.x-nlg .x-panel-header-default-framed-collapsed-top{background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif);background-position:0 top}.x-nbr .x-panel-header-default-framed-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-top-frameInfo{font-family:dh-4-4-4-4-1-1-1-1-4-5-4-5}.x-panel-header-default-framed-collapsed-top-tl{background-position:0 -8px}.x-panel-header-default-framed-collapsed-top-tr{background-position:right -12px}.x-panel-header-default-framed-collapsed-top-bl{background-position:0 -16px}.x-panel-header-default-framed-collapsed-top-br{background-position:right -20px}.x-panel-header-default-framed-collapsed-top-ml{background-position:0 top}.x-panel-header-default-framed-collapsed-top-mr{background-position:right top}.x-panel-header-default-framed-collapsed-top-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-top-bc{background-position:0 -4px}.x-panel-header-default-framed-collapsed-top-tr,.x-panel-header-default-framed-collapsed-top-br,.x-panel-header-default-framed-collapsed-top-mr{padding-right:4px}.x-panel-header-default-framed-collapsed-top-tl,.x-panel-header-default-framed-collapsed-top-bl,.x-panel-header-default-framed-collapsed-top-ml{padding-left:4px}.x-panel-header-default-framed-collapsed-top-tc{height:4px}.x-panel-header-default-framed-collapsed-top-bc{height:4px}.x-panel-header-default-framed-collapsed-top-tl,.x-panel-header-default-framed-collapsed-top-bl,.x-panel-header-default-framed-collapsed-top-tr,.x-panel-header-default-framed-collapsed-top-br,.x-panel-header-default-framed-collapsed-top-tc,.x-panel-header-default-framed-collapsed-top-bc,.x-panel-header-default-framed-collapsed-top-ml,.x-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif)}.x-panel-header-default-framed-collapsed-top-ml,.x-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)}.x-panel-header-default-framed-collapsed-top-mc{padding:1px 2px 1px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"}.x-panel-header-default-framed-collapsed-right{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:linear-gradient(right,#f0f0f0,#d7d7d7)}.x-rtl.x-panel-header-default-framed-collapsed-right{background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(left,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(left,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(left,#f0f0f0,#d7d7d7);background-image:linear-gradient(left,#f0f0f0,#d7d7d7)}.x-panel-header-default-framed-collapsed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif);background-position:right 0;background-color:#d7d2d2}.x-rtl.x-panel-header-default-framed-collapsed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif);background-position:0 0}.x-nlg .x-panel-header-default-framed-collapsed-right{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif);background-position:right 0}.x-nlg .x-rtl.x-panel-header-default-framed-collapsed-right{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif);background-position:0 0}.x-nbr .x-panel-header-default-framed-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-right-frameInfo{font-family:dv-4-4-4-4-1-1-1-1-5-4-5-4}.x-panel-header-default-framed-collapsed-right-tl{background-position:0 0}.x-panel-header-default-framed-collapsed-right-tr{background-position:0 -4px}.x-panel-header-default-framed-collapsed-right-bl{background-position:0 -8px}.x-panel-header-default-framed-collapsed-right-br{background-position:0 -12px}.x-panel-header-default-framed-collapsed-right-ml{background-position:-4px 0}.x-panel-header-default-framed-collapsed-right-mr{background-position:right 0}.x-panel-header-default-framed-collapsed-right-tc{background-position:right 0}.x-panel-header-default-framed-collapsed-right-bc{background-position:right -4px}.x-rtl.x-panel-header-default-framed-collapsed-right-tc{background-position:0 0}.x-rtl.x-panel-header-default-framed-collapsed-right-bc{background-position:0 -4px}.x-panel-header-default-framed-collapsed-right-tr,.x-panel-header-default-framed-collapsed-right-br,.x-panel-header-default-framed-collapsed-right-mr{padding-right:4px}.x-panel-header-default-framed-collapsed-right-tl,.x-panel-header-default-framed-collapsed-right-bl,.x-panel-header-default-framed-collapsed-right-ml{padding-left:4px}.x-panel-header-default-framed-collapsed-right-tc{height:4px}.x-panel-header-default-framed-collapsed-right-bc{height:4px}.x-panel-header-default-framed-collapsed-right-tl,.x-panel-header-default-framed-collapsed-right-bl,.x-panel-header-default-framed-collapsed-right-tr,.x-panel-header-default-framed-collapsed-right-br,.x-panel-header-default-framed-collapsed-right-tc,.x-panel-header-default-framed-collapsed-right-bc,.x-panel-header-default-framed-collapsed-right-ml,.x-panel-header-default-framed-collapsed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif)}.x-rtl.x-panel-header-default-framed-collapsed-right-tl,.x-rtl.x-panel-header-default-framed-collapsed-right-ml,.x-rtl.x-panel-header-default-framed-collapsed-right-bl,.x-rtl.x-panel-header-default-framed-collapsed-right-tr,.x-rtl.x-panel-header-default-framed-collapsed-right-mr,.x-rtl.x-panel-header-default-framed-collapsed-right-br{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif)}.x-panel-header-default-framed-collapsed-right-tc,.x-panel-header-default-framed-collapsed-right-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif);background-repeat:repeat-x}.x-rtl.x-panel-header-default-framed-collapsed-right-tc,.x-rtl.x-panel-header-default-framed-collapsed-right-bc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif)}.x-panel-header-default-framed-collapsed-right-mc{padding:2px 1px 2px 1px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-right:after{display:none;content:"x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif)"}.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:4px 5px 4px 5px;border-width:1px;border-style:solid;background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:linear-gradient(top,#f0f0f0,#d7d7d7)}.x-panel-header-default-framed-collapsed-bottom-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif);background-position:0 bottom;background-color:#d7d2d2}.x-nlg .x-panel-header-default-framed-collapsed-bottom{background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif);background-position:0 bottom}.x-nbr .x-panel-header-default-framed-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-bottom-frameInfo{font-family:dh-4-4-4-4-1-1-1-1-4-5-4-5}.x-panel-header-default-framed-collapsed-bottom-tl{background-position:0 -8px}.x-panel-header-default-framed-collapsed-bottom-tr{background-position:right -12px}.x-panel-header-default-framed-collapsed-bottom-bl{background-position:0 -16px}.x-panel-header-default-framed-collapsed-bottom-br{background-position:right -20px}.x-panel-header-default-framed-collapsed-bottom-ml{background-position:0 bottom}.x-panel-header-default-framed-collapsed-bottom-mr{background-position:right bottom}.x-panel-header-default-framed-collapsed-bottom-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-bottom-bc{background-position:0 -4px}.x-panel-header-default-framed-collapsed-bottom-tr,.x-panel-header-default-framed-collapsed-bottom-br,.x-panel-header-default-framed-collapsed-bottom-mr{padding-right:4px}.x-panel-header-default-framed-collapsed-bottom-tl,.x-panel-header-default-framed-collapsed-bottom-bl,.x-panel-header-default-framed-collapsed-bottom-ml{padding-left:4px}.x-panel-header-default-framed-collapsed-bottom-tc{height:4px}.x-panel-header-default-framed-collapsed-bottom-bc{height:4px}.x-panel-header-default-framed-collapsed-bottom-tl,.x-panel-header-default-framed-collapsed-bottom-bl,.x-panel-header-default-framed-collapsed-bottom-tr,.x-panel-header-default-framed-collapsed-bottom-br,.x-panel-header-default-framed-collapsed-bottom-tc,.x-panel-header-default-framed-collapsed-bottom-bc,.x-panel-header-default-framed-collapsed-bottom-ml,.x-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif)}.x-panel-header-default-framed-collapsed-bottom-ml,.x-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)}.x-panel-header-default-framed-collapsed-bottom-mc{padding:1px 2px 1px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-bottom:after{display:none;content:"x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"}.x-panel-header-default-framed-collapsed-left{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:linear-gradient(right,#f0f0f0,#d7d7d7)}.x-rtl.x-panel-header-default-framed-collapsed-left{background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(left,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(left,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(left,#f0f0f0,#d7d7d7);background-image:linear-gradient(left,#f0f0f0,#d7d7d7)}.x-panel-header-default-framed-collapsed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif);background-position:left 0;background-color:#d7d2d2}.x-rtl.x-panel-header-default-framed-collapsed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif);background-position:right 0}.x-nlg .x-panel-header-default-framed-collapsed-left{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif);background-position:left 0}.x-nlg .x-rtl.x-panel-header-default-framed-collapsed-left{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif);background-position:right 0}.x-nbr .x-panel-header-default-framed-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-left-frameInfo{font-family:dv-4-4-4-4-1-1-1-1-5-4-5-4}.x-panel-header-default-framed-collapsed-left-tl{background-position:0 0}.x-panel-header-default-framed-collapsed-left-tr{background-position:0 -4px}.x-panel-header-default-framed-collapsed-left-bl{background-position:0 -8px}.x-panel-header-default-framed-collapsed-left-br{background-position:0 -12px}.x-panel-header-default-framed-collapsed-left-ml{background-position:-4px 0}.x-panel-header-default-framed-collapsed-left-mr{background-position:right 0}.x-panel-header-default-framed-collapsed-left-tc{background-position:left 0}.x-panel-header-default-framed-collapsed-left-bc{background-position:left -4px}.x-rtl.x-panel-header-default-framed-collapsed-left-tc{background-position:right 0}.x-rtl.x-panel-header-default-framed-collapsed-left-bc{background-position:right -4px}.x-panel-header-default-framed-collapsed-left-tr,.x-panel-header-default-framed-collapsed-left-br,.x-panel-header-default-framed-collapsed-left-mr{padding-right:4px}.x-panel-header-default-framed-collapsed-left-tl,.x-panel-header-default-framed-collapsed-left-bl,.x-panel-header-default-framed-collapsed-left-ml{padding-left:4px}.x-panel-header-default-framed-collapsed-left-tc{height:4px}.x-panel-header-default-framed-collapsed-left-bc{height:4px}.x-panel-header-default-framed-collapsed-left-tl,.x-panel-header-default-framed-collapsed-left-bl,.x-panel-header-default-framed-collapsed-left-tr,.x-panel-header-default-framed-collapsed-left-br,.x-panel-header-default-framed-collapsed-left-tc,.x-panel-header-default-framed-collapsed-left-bc,.x-panel-header-default-framed-collapsed-left-ml,.x-panel-header-default-framed-collapsed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif)}.x-rtl.x-panel-header-default-framed-collapsed-left-tl,.x-rtl.x-panel-header-default-framed-collapsed-left-ml,.x-rtl.x-panel-header-default-framed-collapsed-left-bl,.x-rtl.x-panel-header-default-framed-collapsed-left-tr,.x-rtl.x-panel-header-default-framed-collapsed-left-mr,.x-rtl.x-panel-header-default-framed-collapsed-left-br{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif)}.x-panel-header-default-framed-collapsed-left-tc,.x-panel-header-default-framed-collapsed-left-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif);background-repeat:repeat-x}.x-rtl.x-panel-header-default-framed-collapsed-left-tc,.x-rtl.x-panel-header-default-framed-collapsed-left-bc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif)}.x-panel-header-default-framed-collapsed-left-mc{padding:2px 1px 2px 1px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-left:after{display:none;content:"x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif), frame-bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif), bg-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif), sides-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif)"}.x-panel .x-panel-header-default-framed-top{border-bottom-width:1px!important}.x-panel .x-panel-header-default-framed-right{border-left-width:1px!important}.x-panel .x-panel-header-default-framed-bottom{border-top-width:1px!important}.x-panel .x-panel-header-default-framed-left{border-right-width:1px!important}.x-nbr .x-panel-header-default-framed-collapsed-top{border-bottom-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-right{border-left-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-bottom{border-top-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-left{border-right-width:0!important}.x-panel-header-default-framed-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-default-framed-vertical .x-panel-header-text-container{background-color:#d7d2d2;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#d7d2d2)}.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-text-container{-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-panel-header-default-framed-vertical .x-rtl.x-panel-header-text-container{background-color:#d7d2d2;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3),progid:DXImageTransform.Microsoft.Chroma(color=#d7d2d2)}.x-panel-header-default-framed-top{-webkit-box-shadow:#ececec 0 1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset;-moz-box-shadow:#ececec 0 1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset;box-shadow:#ececec 0 1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset}.x-panel-header-default-framed-right{-webkit-box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset;-moz-box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset;box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset}.x-panel-header-default-framed-bottom{-webkit-box-shadow:#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset;-moz-box-shadow:#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset;box-shadow:#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset}.x-panel-header-default-framed-left{-webkit-box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec 1px 0 0 0 inset;-moz-box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec 1px 0 0 0 inset;box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec 1px 0 0 0 inset}.x-panel-header-default-framed .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-default-framed .x-panel-header-glyph{color:#333;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-default-framed .x-panel-header-glyph{color:#858282}.x-panel-header-default-framed-horizontal .x-panel-header-icon-before-title{margin:0 2px 0 0}.x-panel-header-default-framed-horizontal .x-rtl.x-panel-header-icon-before-title{margin:0 0 0 2px}.x-panel-header-default-framed-horizontal .x-panel-header-icon-after-title{margin:0 0 0 2px}.x-panel-header-default-framed-horizontal .x-rtl.x-panel-header-icon-after-title{margin:0 2px 0 0}.x-panel-header-default-framed-vertical .x-panel-header-icon-before-title{margin:0 0 2px 0}.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-icon-before-title{margin:0 0 2px 0}.x-panel-header-default-framed-vertical .x-panel-header-icon-after-title{margin:2px 0 0 0}.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-icon-after-title{margin:2px 0 0 0}.x-panel-header-default-framed-horizontal .x-tool-after-title{margin:0 0 0 2px}.x-panel-header-default-framed-horizontal .x-rtl.x-tool-after-title{margin:0 2px 0 0}.x-panel-header-default-framed-horizontal .x-tool-before-title{margin:0 2px 0 0}.x-panel-header-default-framed-horizontal .x-rtl.x-tool-before-title{margin:0 0 0 2px}.x-panel-header-default-framed-vertical .x-tool-after-title{margin:2px 0 0 0}.x-panel-header-default-framed-vertical .x-rtl.x-tool-after-title{margin:2px 0 0 0}.x-panel-header-default-framed-vertical .x-tool-before-title{margin:0 0 2px 0}.x-panel-header-default-framed-vertical .x-rtl.x-tool-before-title{margin:0 0 2px 0}.x-rtl.x-panel-header-default-framed-collapsed-border-right{border-right-width:1px!important}.x-rtl.x-panel-header-default-framed-collapsed-border-left{border-left-width:1px!important}.x-panel-default-framed-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-tip-anchor{position:absolute;overflow:hidden;height:10px;width:10px;border-style:solid;border-width:5px;border-color:#868686;zoom:1}.x-content-box .x-tip-anchor{height:0;width:0}.x-tip-anchor-top{border-top-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-bottom{border-bottom-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-bottom-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-left{border-top-color:transparent;border-bottom-color:transparent;border-left-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-left-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-right{border-top-color:transparent;border-bottom-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.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:#ccc}.x-tip-default-mc{background-color:#ccc}.x-nbr .x-tip-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tip-default-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-tip-default-tl{background-position:0 -6px}.x-tip-default-tr{background-position:right -9px}.x-tip-default-bl{background-position:0 -12px}.x-tip-default-br{background-position:right -15px}.x-tip-default-ml{background-position:0 top}.x-tip-default-mr{background-position:right top}.x-tip-default-tc{background-position:0 0}.x-tip-default-bc{background-position:0 -3px}.x-tip-default-tr,.x-tip-default-br,.x-tip-default-mr{padding-right:3px}.x-tip-default-tl,.x-tip-default-bl,.x-tip-default-ml{padding-left:3px}.x-tip-default-tc{height:3px}.x-tip-default-bc{height:3px}.x-tip-default-tl,.x-tip-default-bl,.x-tip-default-tr,.x-tip-default-br,.x-tip-default-tc,.x-tip-default-bc,.x-tip-default-ml,.x-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-corners.gif)}.x-tip-default-ml,.x-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-sides.gif);background-repeat:repeat-y}.x-tip-default-mc{padding:0}.x-strict .x-ie7 .x-tip-default-tl,.x-strict .x-ie7 .x-tip-default-bl{position:relative;right:0}.x-tip-default:after{display:none;content:"x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"}.x-tip-default{border-color:#868686}.x-tip-default .x-tool-img{background-color:#ccc}.x-tip-header-default .x-tool-after-title{margin:0 0 0 6px}.x-tip-header-default .x-rtl.x-tool-after-title{margin:0 6px 0 0}.x-tip-header-default .x-tool-before-title{margin:0 6px 0 0}.x-tip-header-default .x-rtl.x-tool-before-title{margin:0 0 0 6px}.x-tip-header-body-default{padding:3px 3px 0 3px}.x-tip-header-text-container-default{color:#444;font-size:11px;font-weight:bold}.x-tip-body-default{padding:3px;color:#444;font-size:11px;font-weight:normal}.x-tip-body-default a{color:#2a2a2a}.x-tip-form-invalid{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:white}.x-tip-form-invalid-mc{background-color:white}.x-nbr .x-tip-form-invalid{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tip-form-invalid-frameInfo{font-family:th-5-5-5-5-1-1-1-1-4-4-4-4}.x-tip-form-invalid-tl{background-position:0 -10px}.x-tip-form-invalid-tr{background-position:right -15px}.x-tip-form-invalid-bl{background-position:0 -20px}.x-tip-form-invalid-br{background-position:right -25px}.x-tip-form-invalid-ml{background-position:0 top}.x-tip-form-invalid-mr{background-position:right top}.x-tip-form-invalid-tc{background-position:0 0}.x-tip-form-invalid-bc{background-position:0 -5px}.x-tip-form-invalid-tr,.x-tip-form-invalid-br,.x-tip-form-invalid-mr{padding-right:5px}.x-tip-form-invalid-tl,.x-tip-form-invalid-bl,.x-tip-form-invalid-ml{padding-left:5px}.x-tip-form-invalid-tc{height:5px}.x-tip-form-invalid-bc{height:5px}.x-tip-form-invalid-tl,.x-tip-form-invalid-bl,.x-tip-form-invalid-tr,.x-tip-form-invalid-br,.x-tip-form-invalid-tc,.x-tip-form-invalid-bc,.x-tip-form-invalid-ml,.x-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-corners.gif)}.x-tip-form-invalid-ml,.x-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-sides.gif);background-repeat:repeat-y}.x-tip-form-invalid-mc{padding:0}.x-strict .x-ie7 .x-tip-form-invalid-tl,.x-strict .x-ie7 .x-tip-form-invalid-bl{position:relative;right:0}.x-tip-form-invalid:after{display:none;content:"x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"}.x-tip-form-invalid{border-color:#a1311f;-webkit-box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset;-moz-box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset;box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset}.x-tip-form-invalid .x-tool-img{background-color:white}.x-tip-header-form-invalid .x-tool-after-title{margin:0 0 0 6px}.x-tip-header-form-invalid .x-rtl.x-tool-after-title{margin:0 6px 0 0}.x-tip-header-form-invalid .x-tool-before-title{margin:0 6px 0 0}.x-tip-header-form-invalid .x-rtl.x-tool-before-title{margin:0 0 0 6px}.x-tip-header-body-form-invalid{padding:3px 3px 0 3px}.x-tip-header-text-container-form-invalid{color:#444;font-size:11px;font-weight:bold}.x-tip-body-form-invalid{padding:3px 3px 3px 22px;color:#444;font-size:11px;font-weight:normal}.x-tip-body-form-invalid a{color:#2a2a2a}.x-tip-body-form-invalid{background:1px 1px no-repeat;background-image:url(images/form/exclamation.gif)}.x-tip-body-form-invalid li{margin-bottom:4px}.x-tip-body-form-invalid li.last{margin-bottom:0}.x-btn-group-default{border-color:#d0d0d0;-webkit-box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset;-moz-box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset;box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset}.x-btn-group-header-default{margin:2px 2px 0 2px;padding:1px 0;line-height:15px;background:#dfdfdf;-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}.x-btn-group-header-default .x-tool-img{background-color:#dfdfdf}.x-btn-group-header-text-container-default{font:normal 11px tahoma,arial,verdana,sans-serif;line-height:15px;color:#666}.x-btn-group-body-default{padding:0 1px}.x-btn-group-body-default .x-table-layout{border-spacing:0}.x-btn-group-default-framed{-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:1px 1px 1px 1px;border-width:1px;border-style:solid;background-color:#d6d6d6}.x-btn-group-default-framed-mc{background-color:#d6d6d6}.x-nbr .x-btn-group-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-group-default-framed-frameInfo{font-family:dh-2-2-2-2-1-1-1-1-1-1-1-1}.x-btn-group-default-framed-tl{background-position:0 -4px}.x-btn-group-default-framed-tr{background-position:right -6px}.x-btn-group-default-framed-bl{background-position:0 -8px}.x-btn-group-default-framed-br{background-position:right -10px}.x-btn-group-default-framed-ml{background-position:0 top}.x-btn-group-default-framed-mr{background-position:right top}.x-btn-group-default-framed-tc{background-position:0 0}.x-btn-group-default-framed-bc{background-position:0 -2px}.x-btn-group-default-framed-tr,.x-btn-group-default-framed-br,.x-btn-group-default-framed-mr{padding-right:2px}.x-btn-group-default-framed-tl,.x-btn-group-default-framed-bl,.x-btn-group-default-framed-ml{padding-left:2px}.x-btn-group-default-framed-tc{height:2px}.x-btn-group-default-framed-bc{height:2px}.x-btn-group-default-framed-tl,.x-btn-group-default-framed-bl,.x-btn-group-default-framed-tr,.x-btn-group-default-framed-br,.x-btn-group-default-framed-tc,.x-btn-group-default-framed-bc,.x-btn-group-default-framed-ml,.x-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-corners.gif)}.x-btn-group-default-framed-ml,.x-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-sides.gif);background-repeat:repeat-y}.x-btn-group-default-framed-mc{padding:0}.x-strict .x-ie7 .x-btn-group-default-framed-tl,.x-strict .x-ie7 .x-btn-group-default-framed-bl{position:relative;right:0}.x-btn-group-default-framed:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"}.x-btn-group-default-framed-notitle{-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:1px 1px 1px 1px;border-width:1px;border-style:solid;background-color:#d6d6d6}.x-btn-group-default-framed-notitle-mc{background-color:#d6d6d6}.x-nbr .x-btn-group-default-framed-notitle{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-group-default-framed-notitle-frameInfo{font-family:dh-2-2-2-2-1-1-1-1-1-1-1-1}.x-btn-group-default-framed-notitle-tl{background-position:0 -4px}.x-btn-group-default-framed-notitle-tr{background-position:right -6px}.x-btn-group-default-framed-notitle-bl{background-position:0 -8px}.x-btn-group-default-framed-notitle-br{background-position:right -10px}.x-btn-group-default-framed-notitle-ml{background-position:0 top}.x-btn-group-default-framed-notitle-mr{background-position:right top}.x-btn-group-default-framed-notitle-tc{background-position:0 0}.x-btn-group-default-framed-notitle-bc{background-position:0 -2px}.x-btn-group-default-framed-notitle-tr,.x-btn-group-default-framed-notitle-br,.x-btn-group-default-framed-notitle-mr{padding-right:2px}.x-btn-group-default-framed-notitle-tl,.x-btn-group-default-framed-notitle-bl,.x-btn-group-default-framed-notitle-ml{padding-left:2px}.x-btn-group-default-framed-notitle-tc{height:2px}.x-btn-group-default-framed-notitle-bc{height:2px}.x-btn-group-default-framed-notitle-tl,.x-btn-group-default-framed-notitle-bl,.x-btn-group-default-framed-notitle-tr,.x-btn-group-default-framed-notitle-br,.x-btn-group-default-framed-notitle-tc,.x-btn-group-default-framed-notitle-bc,.x-btn-group-default-framed-notitle-ml,.x-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-corners.gif)}.x-btn-group-default-framed-notitle-ml,.x-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-sides.gif);background-repeat:repeat-y}.x-btn-group-default-framed-notitle-mc{padding:0}.x-strict .x-ie7 .x-btn-group-default-framed-notitle-tl,.x-strict .x-ie7 .x-btn-group-default-framed-notitle-bl{position:relative;right:0}.x-btn-group-default-framed-notitle:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"}.x-btn-group-default-framed{border-color:#d0d0d0;-webkit-box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset;-moz-box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset;box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset}.x-btn-group-header-default-framed{margin:2px 2px 0 2px;padding:1px 0;line-height:15px;background:#dfdfdf;-moz-border-radius-topleft:2px;-webkit-border-top-left-radius:2px;border-top-left-radius:2px;-moz-border-radius-topright:2px;-webkit-border-top-right-radius:2px;border-top-right-radius:2px}.x-btn-group-header-default-framed .x-tool-img{background-color:#dfdfdf}.x-btn-group-header-text-container-default-framed{font:normal 11px tahoma,arial,verdana,sans-serif;line-height:15px;color:#666}.x-btn-group-body-default-framed{padding:0 1px 0 1px}.x-btn-group-body-default-framed .x-table-layout{border-spacing:0}.x-window-ghost{filter:alpha(opacity=65);opacity:.65}.x-window-default{border-color:#a9a9a9;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;-webkit-box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 0 -1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset,#ebe7e7 1px 0 0 0 inset;-moz-box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 0 -1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset,#ebe7e7 1px 0 0 0 inset;box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 0 -1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset,#ebe7e7 1px 0 0 0 inset}.x-window-default{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:#e8e8e8}.x-window-default-mc{background-color:#e8e8e8}.x-nbr .x-window-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-default-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-4-4-4}.x-window-default-tl{background-position:0 -10px}.x-window-default-tr{background-position:right -15px}.x-window-default-bl{background-position:0 -20px}.x-window-default-br{background-position:right -25px}.x-window-default-ml{background-position:0 top}.x-window-default-mr{background-position:right top}.x-window-default-tc{background-position:0 0}.x-window-default-bc{background-position:0 -5px}.x-window-default-tr,.x-window-default-br,.x-window-default-mr{padding-right:5px}.x-window-default-tl,.x-window-default-bl,.x-window-default-ml{padding-left:5px}.x-window-default-tc{height:5px}.x-window-default-bc{height:5px}.x-window-default-tl,.x-window-default-bl,.x-window-default-tr,.x-window-default-br,.x-window-default-tc,.x-window-default-bc,.x-window-default-ml,.x-window-default-mr{zoom:1;background-image:url(images/window/window-default-corners.gif)}.x-window-default-ml,.x-window-default-mr{zoom:1;background-image:url(images/window/window-default-sides.gif);background-repeat:repeat-y}.x-window-default-mc{padding:0}.x-strict .x-ie7 .x-window-default-tl,.x-strict .x-ie7 .x-window-default-bl{position:relative;right:0}.x-window-default:after{display:none;content:"x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"}.x-window-body-default{border-color:#bcb1b0;border-width:1px;border-style:solid;background:#e0e0e0;color:black}.x-window-header-default{font-size:11px;border-color:#a9a9a9;zoom:1;background-color:#e8e8e8}.x-window-header-default .x-tool-img{background-color:#e8e8e8}.x-window-header-default-vertical .x-window-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-window-header-default-vertical .x-window-header-text-container{background-color:#e8e8e8;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#e8e8e8)}.x-window-header-default-vertical .x-rtl.x-window-header-text-container{-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-window-header-default-vertical .x-rtl.x-window-header-text-container{background-color:#e8e8e8;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3),progid:DXImageTransform.Microsoft.Chroma(color=#e8e8e8)}.x-window-header-text-container-default{color:#333;font-weight:bold;line-height:15px;font-family:tahoma,arial,verdana,sans-serif;font-size:11px;padding:0 2px 1px;text-transform:none}.x-window-header-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:4px 5px 0 5px;border-width:1px 1px 0 1px;border-style:solid;background-color:#e8e8e8}.x-window-header-default-top-mc{background-color:#e8e8e8}.x-nbr .x-window-header-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-top-frameInfo{font-family:dh-5-5-0-0-1-1-0-1-4-5-0-5}.x-window-header-default-top-tl{background-position:0 -10px}.x-window-header-default-top-tr{background-position:right -15px}.x-window-header-default-top-bl{background-position:0 -20px}.x-window-header-default-top-br{background-position:right -25px}.x-window-header-default-top-ml{background-position:0 top}.x-window-header-default-top-mr{background-position:right top}.x-window-header-default-top-tc{background-position:0 0}.x-window-header-default-top-bc{background-position:0 -5px}.x-window-header-default-top-tr,.x-window-header-default-top-br,.x-window-header-default-top-mr{padding-right:5px}.x-window-header-default-top-tl,.x-window-header-default-top-bl,.x-window-header-default-top-ml{padding-left:5px}.x-window-header-default-top-tc{height:5px}.x-window-header-default-top-bc{height:0}.x-window-header-default-top-tl,.x-window-header-default-top-bl,.x-window-header-default-top-tr,.x-window-header-default-top-br,.x-window-header-default-top-tc,.x-window-header-default-top-bc,.x-window-header-default-top-ml,.x-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-corners.gif)}.x-window-header-default-top-ml,.x-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-sides.gif);background-repeat:repeat-y}.x-window-header-default-top-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-top-tl,.x-strict .x-ie7 .x-window-header-default-top-bl{position:relative;right:0}.x-window-header-default-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"}.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:5px;-webkit-border-top-right-radius:5px;border-top-right-radius:5px;-moz-border-radius-bottomright:5px;-webkit-border-bottom-right-radius:5px;border-bottom-right-radius:5px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 4px 5px 0;border-width:1px 1px 1px 0;border-style:solid;background-color:#e8e8e8}.x-window-header-default-right-mc{background-color:#e8e8e8}.x-nbr .x-window-header-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-right-frameInfo{font-family:dh-0-5-5-0-1-1-1-0-5-4-5-0}.x-window-header-default-right-tl{background-position:0 -10px}.x-window-header-default-right-tr{background-position:right -15px}.x-window-header-default-right-bl{background-position:0 -20px}.x-window-header-default-right-br{background-position:right -25px}.x-window-header-default-right-ml{background-position:0 top}.x-window-header-default-right-mr{background-position:right top}.x-window-header-default-right-tc{background-position:0 0}.x-window-header-default-right-bc{background-position:0 -5px}.x-window-header-default-right-tr,.x-window-header-default-right-br,.x-window-header-default-right-mr{padding-right:5px}.x-window-header-default-right-tl,.x-window-header-default-right-bl,.x-window-header-default-right-ml{padding-left:0}.x-window-header-default-right-tc{height:5px}.x-window-header-default-right-bc{height:5px}.x-window-header-default-right-tl,.x-window-header-default-right-bl,.x-window-header-default-right-tr,.x-window-header-default-right-br,.x-window-header-default-right-tc,.x-window-header-default-right-bc,.x-window-header-default-right-ml,.x-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-corners.gif)}.x-rtl.x-window-header-default-right-tl,.x-rtl.x-window-header-default-right-ml,.x-rtl.x-window-header-default-right-bl,.x-rtl.x-window-header-default-right-tr,.x-rtl.x-window-header-default-right-mr,.x-rtl.x-window-header-default-right-br{background-image:url(images/window-header/window-header-default-right-corners-rtl.gif)}.x-window-header-default-right-ml,.x-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-sides.gif);background-repeat:repeat-y}.x-window-header-default-right-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-right-tl,.x-strict .x-ie7 .x-window-header-default-right-bl{position:relative;right:0}.x-window-header-default-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"}.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: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:0 5px 4px 5px;border-width:0 1px 1px 1px;border-style:solid;background-color:#e8e8e8}.x-window-header-default-bottom-mc{background-color:#e8e8e8}.x-nbr .x-window-header-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-bottom-frameInfo{font-family:dh-0-0-5-5-0-1-1-1-0-5-4-5}.x-window-header-default-bottom-tl{background-position:0 -10px}.x-window-header-default-bottom-tr{background-position:right -15px}.x-window-header-default-bottom-bl{background-position:0 -20px}.x-window-header-default-bottom-br{background-position:right -25px}.x-window-header-default-bottom-ml{background-position:0 top}.x-window-header-default-bottom-mr{background-position:right top}.x-window-header-default-bottom-tc{background-position:0 0}.x-window-header-default-bottom-bc{background-position:0 -5px}.x-window-header-default-bottom-tr,.x-window-header-default-bottom-br,.x-window-header-default-bottom-mr{padding-right:5px}.x-window-header-default-bottom-tl,.x-window-header-default-bottom-bl,.x-window-header-default-bottom-ml{padding-left:5px}.x-window-header-default-bottom-tc{height:0}.x-window-header-default-bottom-bc{height:5px}.x-window-header-default-bottom-tl,.x-window-header-default-bottom-bl,.x-window-header-default-bottom-tr,.x-window-header-default-bottom-br,.x-window-header-default-bottom-tc,.x-window-header-default-bottom-bc,.x-window-header-default-bottom-ml,.x-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-corners.gif)}.x-window-header-default-bottom-ml,.x-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-sides.gif);background-repeat:repeat-y}.x-window-header-default-bottom-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-bottom-tl,.x-strict .x-ie7 .x-window-header-default-bottom-bl{position:relative;right:0}.x-window-header-default-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"}.x-window-header-default-left{-moz-border-radius-topleft:5px;-webkit-border-top-left-radius:5px;border-top-left-radius:5px;-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:5px;-webkit-border-bottom-left-radius:5px;border-bottom-left-radius:5px;padding:5px 0 5px 4px;border-width:1px 0 1px 1px;border-style:solid;background-color:#e8e8e8}.x-window-header-default-left-mc{background-color:#e8e8e8}.x-nbr .x-window-header-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-left-frameInfo{font-family:dh-5-0-0-5-1-0-1-1-5-0-5-4}.x-window-header-default-left-tl{background-position:0 -10px}.x-window-header-default-left-tr{background-position:right -15px}.x-window-header-default-left-bl{background-position:0 -20px}.x-window-header-default-left-br{background-position:right -25px}.x-window-header-default-left-ml{background-position:0 top}.x-window-header-default-left-mr{background-position:right top}.x-window-header-default-left-tc{background-position:0 0}.x-window-header-default-left-bc{background-position:0 -5px}.x-window-header-default-left-tr,.x-window-header-default-left-br,.x-window-header-default-left-mr{padding-right:0}.x-window-header-default-left-tl,.x-window-header-default-left-bl,.x-window-header-default-left-ml{padding-left:5px}.x-window-header-default-left-tc{height:5px}.x-window-header-default-left-bc{height:5px}.x-window-header-default-left-tl,.x-window-header-default-left-bl,.x-window-header-default-left-tr,.x-window-header-default-left-br,.x-window-header-default-left-tc,.x-window-header-default-left-bc,.x-window-header-default-left-ml,.x-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-corners.gif)}.x-rtl.x-window-header-default-left-tl,.x-rtl.x-window-header-default-left-ml,.x-rtl.x-window-header-default-left-bl,.x-rtl.x-window-header-default-left-tr,.x-rtl.x-window-header-default-left-mr,.x-rtl.x-window-header-default-left-br{background-image:url(images/window-header/window-header-default-left-corners-rtl.gif)}.x-window-header-default-left-ml,.x-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-sides.gif);background-repeat:repeat-y}.x-window-header-default-left-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-left-tl,.x-strict .x-ie7 .x-window-header-default-left-bl{position:relative;right:0}.x-window-header-default-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"}.x-window-header-default-collapsed-top{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-color:#e8e8e8}.x-window-header-default-collapsed-top-mc{background-color:#e8e8e8}.x-nbr .x-window-header-default-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-top-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-5-4-5}.x-window-header-default-collapsed-top-tl{background-position:0 -10px}.x-window-header-default-collapsed-top-tr{background-position:right -15px}.x-window-header-default-collapsed-top-bl{background-position:0 -20px}.x-window-header-default-collapsed-top-br{background-position:right -25px}.x-window-header-default-collapsed-top-ml{background-position:0 top}.x-window-header-default-collapsed-top-mr{background-position:right top}.x-window-header-default-collapsed-top-tc{background-position:0 0}.x-window-header-default-collapsed-top-bc{background-position:0 -5px}.x-window-header-default-collapsed-top-tr,.x-window-header-default-collapsed-top-br,.x-window-header-default-collapsed-top-mr{padding-right:5px}.x-window-header-default-collapsed-top-tl,.x-window-header-default-collapsed-top-bl,.x-window-header-default-collapsed-top-ml{padding-left:5px}.x-window-header-default-collapsed-top-tc{height:5px}.x-window-header-default-collapsed-top-bc{height:5px}.x-window-header-default-collapsed-top-tl,.x-window-header-default-collapsed-top-bl,.x-window-header-default-collapsed-top-tr,.x-window-header-default-collapsed-top-br,.x-window-header-default-collapsed-top-tc,.x-window-header-default-collapsed-top-bc,.x-window-header-default-collapsed-top-ml,.x-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-corners.gif)}.x-window-header-default-collapsed-top-ml,.x-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-top-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-top-bl{position:relative;right:0}.x-window-header-default-collapsed-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"}.x-window-header-default-collapsed-right{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-color:#e8e8e8}.x-window-header-default-collapsed-right-mc{background-color:#e8e8e8}.x-nbr .x-window-header-default-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-right-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-5-4-5-4}.x-window-header-default-collapsed-right-tl{background-position:0 -10px}.x-window-header-default-collapsed-right-tr{background-position:right -15px}.x-window-header-default-collapsed-right-bl{background-position:0 -20px}.x-window-header-default-collapsed-right-br{background-position:right -25px}.x-window-header-default-collapsed-right-ml{background-position:0 top}.x-window-header-default-collapsed-right-mr{background-position:right top}.x-window-header-default-collapsed-right-tc{background-position:0 0}.x-window-header-default-collapsed-right-bc{background-position:0 -5px}.x-window-header-default-collapsed-right-tr,.x-window-header-default-collapsed-right-br,.x-window-header-default-collapsed-right-mr{padding-right:5px}.x-window-header-default-collapsed-right-tl,.x-window-header-default-collapsed-right-bl,.x-window-header-default-collapsed-right-ml{padding-left:5px}.x-window-header-default-collapsed-right-tc{height:5px}.x-window-header-default-collapsed-right-bc{height:5px}.x-window-header-default-collapsed-right-tl,.x-window-header-default-collapsed-right-bl,.x-window-header-default-collapsed-right-tr,.x-window-header-default-collapsed-right-br,.x-window-header-default-collapsed-right-tc,.x-window-header-default-collapsed-right-bc,.x-window-header-default-collapsed-right-ml,.x-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-corners.gif)}.x-rtl.x-window-header-default-collapsed-right-tl,.x-rtl.x-window-header-default-collapsed-right-ml,.x-rtl.x-window-header-default-collapsed-right-bl,.x-rtl.x-window-header-default-collapsed-right-tr,.x-rtl.x-window-header-default-collapsed-right-mr,.x-rtl.x-window-header-default-collapsed-right-br{background-image:url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif)}.x-window-header-default-collapsed-right-ml,.x-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-right-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-right-bl{position:relative;right:0}.x-window-header-default-collapsed-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"}.x-window-header-default-collapsed-bottom{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-color:#e8e8e8}.x-window-header-default-collapsed-bottom-mc{background-color:#e8e8e8}.x-nbr .x-window-header-default-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-bottom-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-5-4-5}.x-window-header-default-collapsed-bottom-tl{background-position:0 -10px}.x-window-header-default-collapsed-bottom-tr{background-position:right -15px}.x-window-header-default-collapsed-bottom-bl{background-position:0 -20px}.x-window-header-default-collapsed-bottom-br{background-position:right -25px}.x-window-header-default-collapsed-bottom-ml{background-position:0 top}.x-window-header-default-collapsed-bottom-mr{background-position:right top}.x-window-header-default-collapsed-bottom-tc{background-position:0 0}.x-window-header-default-collapsed-bottom-bc{background-position:0 -5px}.x-window-header-default-collapsed-bottom-tr,.x-window-header-default-collapsed-bottom-br,.x-window-header-default-collapsed-bottom-mr{padding-right:5px}.x-window-header-default-collapsed-bottom-tl,.x-window-header-default-collapsed-bottom-bl,.x-window-header-default-collapsed-bottom-ml{padding-left:5px}.x-window-header-default-collapsed-bottom-tc{height:5px}.x-window-header-default-collapsed-bottom-bc{height:5px}.x-window-header-default-collapsed-bottom-tl,.x-window-header-default-collapsed-bottom-bl,.x-window-header-default-collapsed-bottom-tr,.x-window-header-default-collapsed-bottom-br,.x-window-header-default-collapsed-bottom-tc,.x-window-header-default-collapsed-bottom-bc,.x-window-header-default-collapsed-bottom-ml,.x-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-corners.gif)}.x-window-header-default-collapsed-bottom-ml,.x-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-bottom-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl{position:relative;right:0}.x-window-header-default-collapsed-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"}.x-window-header-default-collapsed-left{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-color:#e8e8e8}.x-window-header-default-collapsed-left-mc{background-color:#e8e8e8}.x-nbr .x-window-header-default-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-left-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-5-4-5-4}.x-window-header-default-collapsed-left-tl{background-position:0 -10px}.x-window-header-default-collapsed-left-tr{background-position:right -15px}.x-window-header-default-collapsed-left-bl{background-position:0 -20px}.x-window-header-default-collapsed-left-br{background-position:right -25px}.x-window-header-default-collapsed-left-ml{background-position:0 top}.x-window-header-default-collapsed-left-mr{background-position:right top}.x-window-header-default-collapsed-left-tc{background-position:0 0}.x-window-header-default-collapsed-left-bc{background-position:0 -5px}.x-window-header-default-collapsed-left-tr,.x-window-header-default-collapsed-left-br,.x-window-header-default-collapsed-left-mr{padding-right:5px}.x-window-header-default-collapsed-left-tl,.x-window-header-default-collapsed-left-bl,.x-window-header-default-collapsed-left-ml{padding-left:5px}.x-window-header-default-collapsed-left-tc{height:5px}.x-window-header-default-collapsed-left-bc{height:5px}.x-window-header-default-collapsed-left-tl,.x-window-header-default-collapsed-left-bl,.x-window-header-default-collapsed-left-tr,.x-window-header-default-collapsed-left-br,.x-window-header-default-collapsed-left-tc,.x-window-header-default-collapsed-left-bc,.x-window-header-default-collapsed-left-ml,.x-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-corners.gif)}.x-rtl.x-window-header-default-collapsed-left-tl,.x-rtl.x-window-header-default-collapsed-left-ml,.x-rtl.x-window-header-default-collapsed-left-bl,.x-rtl.x-window-header-default-collapsed-left-tr,.x-rtl.x-window-header-default-collapsed-left-mr,.x-rtl.x-window-header-default-collapsed-left-br{background-image:url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif)}.x-window-header-default-collapsed-left-ml,.x-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-left-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-left-bl{position:relative;right:0}.x-window-header-default-collapsed-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"}.x-window-header-default-top{-webkit-box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset,#ebe7e7 1px 0 0 0 inset;-moz-box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset,#ebe7e7 1px 0 0 0 inset;box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset,#ebe7e7 1px 0 0 0 inset}.x-window-header-default-right{-webkit-box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 0 -1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset;-moz-box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 0 -1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset;box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 0 -1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset}.x-window-header-default-bottom{-webkit-box-shadow:#ebe7e7 0 -1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset,#ebe7e7 1px 0 0 0 inset;-moz-box-shadow:#ebe7e7 0 -1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset,#ebe7e7 1px 0 0 0 inset;box-shadow:#ebe7e7 0 -1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset,#ebe7e7 1px 0 0 0 inset}.x-window-header-default-left{-webkit-box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 0 -1px 0 0 inset,#ebe7e7 1px 0 0 0 inset;-moz-box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 0 -1px 0 0 inset,#ebe7e7 1px 0 0 0 inset;box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 0 -1px 0 0 inset,#ebe7e7 1px 0 0 0 inset}.x-window-header-default .x-window-header-icon{width:16px;height:16px;color:#333;font-size:16px;line-height:16px;background-position:center center}.x-window-header-default .x-window-header-glyph{color:#333;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-window-header-default .x-window-header-glyph{color:#8d8d8d}.x-window-header-default-horizontal .x-window-header-icon-before-title{margin:0 2px 0 0}.x-window-header-default-horizontal .x-rtl.x-window-header-icon-before-title{margin:0 0 0 2px}.x-window-header-default-horizontal .x-window-header-icon-after-title{margin:0 0 0 2px}.x-window-header-default-horizontal .x-rtl.x-window-header-icon-after-title{margin:0 2px 0 0}.x-window-header-default-vertical .x-window-header-icon-before-title{margin:0 0 2px 0}.x-window-header-default-vertical .x-rtl.x-window-header-icon-before-title{margin:0 0 2px 0}.x-window-header-default-vertical .x-window-header-icon-after-title{margin:2px 0 0 0}.x-window-header-default-vertical .x-rtl.x-window-header-icon-after-title{margin:2px 0 0 0}.x-window-header-default-horizontal .x-tool-after-title{margin:0 0 0 2px}.x-window-header-default-horizontal .x-rtl.x-tool-after-title{margin:0 2px 0 0}.x-window-header-default-horizontal .x-tool-before-title{margin:0 2px 0 0}.x-window-header-default-horizontal .x-rtl.x-tool-before-title{margin:0 0 0 2px}.x-window-header-default-vertical .x-tool-after-title{margin:2px 0 0 0}.x-window-header-default-vertical .x-rtl.x-tool-after-title{margin:2px 0 0 0}.x-window-header-default-vertical .x-tool-before-title{margin:0 0 2px 0}.x-window-header-default-vertical .x-rtl.x-tool-before-title{margin:0 0 2px 0}.x-window-default-collapsed .x-window-header{border-width:1px!important}.x-nbr .x-window-default-collapsed .x-window-header{border-width:0!important}.x-form-invalid-under{padding:2px 2px 2px 20px;color:#c0272b;font:normal 11px tahoma,arial,verdana,sans-serif;line-height:16px;background:no-repeat 0 2px;background-image:url(images/form/exclamation.gif)}div.x-lbl-top-err-icon{margin-bottom:3px}.x-form-invalid-icon{width:16px;height:16px;margin:0 1px;background-image:url(images/form/exclamation.gif);background-repeat:no-repeat}.x-form-item-label{color:black;font:normal 12px/14px tahoma,arial,verdana,sans-serif;margin-top:4px}.x-toolbar-item .x-form-item-label{font:normal 11px/13px tahoma,arial,verdana,sans-serif;margin-top:4px}.x-autocontainer-form-item,.x-anchor-form-item,.x-vbox-form-item,.x-table-form-item{margin-bottom:5px}.x-ie6 .x-form-form-item td{border-top-width:0}.x-ie6 td.x-form-item-pad{height:5px}.x-form-field{color:black}.x-form-item,.x-form-field{font:normal 12px tahoma,arial,verdana,sans-serif}.x-form-type-text textarea.x-form-invalid-field,.x-form-type-text input.x-form-invalid-field,.x-form-type-password textarea.x-form-invalid-field,.x-form-type-password input.x-form-invalid-field,.x-form-type-number textarea.x-form-invalid-field,.x-form-type-number input.x-form-invalid-field,.x-form-type-email textarea.x-form-invalid-field,.x-form-type-email input.x-form-invalid-field,.x-form-type-search textarea.x-form-invalid-field,.x-form-type-search input.x-form-invalid-field,.x-form-type-tel textarea.x-form-invalid-field,.x-form-type-tel input.x-form-invalid-field{background-color:white;background-image:url(images/grid/invalid_line.gif);background-repeat:repeat-x;background-position:bottom;border-color:#c30}.x-item-disabled .x-form-item-label,.x-item-disabled .x-form-field,.x-item-disabled .x-form-display-field,.x-item-disabled .x-form-cb-label,.x-item-disabled .x-form-trigger{filter:alpha(opacity=30);opacity:.3}.x-form-text{color:black;padding:1px 3px 2px 3px;background:white repeat-x 0 0;border-width:1px;border-style:solid;border-color:#b5b8c8;background-image:url(images/form/text-bg.gif);height:22px;line-height:17px}.x-field-toolbar .x-form-text{height:20px;line-height:15px}.x-content-box .x-form-text{height:17px}.x-content-box .x-field-toolbar .x-form-text{height:15px}.x-form-focus{border-color:#a1a1a1}.x-form-empty-field,textarea.x-form-empty-field{color:gray}.x-quirks .x-ie .x-form-text,.x-ie7m .x-form-text{margin-top:-1px;margin-bottom:-1px}.x-form-textarea{line-height:normal;height:auto;background-image:url(images/form/text-bg.gif)}.x-form-display-field-body{height:22px}.x-toolbar-item .x-form-display-field-body{height:20px}.x-form-display-field{font:normal 12px/14px tahoma,arial,verdana,sans-serif;color:black;margin-top:4px}.x-toolbar-item .x-form-display-field{margin-top:4px;font:normal 11px/13px tahoma,arial,verdana,sans-serif}.x-message-box .x-window-body{background-color:#e8e8e8;border-width:0}.x-message-box-info,.x-message-box-warning,.x-message-box-question,.x-message-box-error{background-position:top left;background-repeat:no-repeat}.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:top left}.x-message-box-info{background-image:url(images/shared/icon-info.gif)}.x-message-box-warning{background-image:url(images/shared/icon-warning.gif)}.x-message-box-question{background-image:url(images/shared/icon-question.gif)}.x-message-box-error{background-image:url(images/shared/icon-error.gif)}.x-form-cb-wrap{height:22px}.x-toolbar-item .x-form-cb-wrap{height:20px}.x-form-cb{margin-top:5px}.x-toolbar-item .x-form-cb{margin-top:4px}.x-form-checkbox{width:13px;height:13px;background:url(images/form/checkbox.gif) no-repeat}.x-form-cb-checked .x-form-checkbox{background-position:0 -13px}.x-form-checkbox-focus{background-position:-13px 0}.x-form-cb-checked .x-form-checkbox-focus{background-position:-13px -13px}.x-form-cb-label{margin-top:4px;font:normal 12px/14px tahoma,arial,verdana,sans-serif}.x-toolbar-item .x-form-cb-label{font:normal 11px/13px tahoma,arial,verdana,sans-serif;margin-top:4px}.x-form-cb-label-before{margin-right:4px}.x-rtl.x-field .x-form-cb-label-before{margin-right:0;margin-left:4px}.x-form-cb-label-after{margin-left:4px}.x-rtl.x-field .x-form-cb-label-after{margin-left:0;margin-right:4px}.x-form-checkboxgroup-body{padding:0 4px}.x-form-invalid .x-form-checkboxgroup-body{border:1px solid #c30;background-image:url(images/grid/invalid_line.gif);background-repeat:repeat-x;background-position:bottom}.x-check-group-alt{background:#d5d5d5;border-top:1px dotted #b4b4b4;border-bottom:1px dotted #b4b4b4}.x-form-check-group-label{color:black;padding:2px;margin:0 30px 5px 0;border-width:0 0 1px 0;border-style:solid;border-color:black}.x-rtl.x-form-check-group-label{margin:0 0 5px 30px}.x-fieldset{border:1px solid #b5b8c8;padding:0 10px;margin:0 0 10px}.x-ie8m .x-fieldset,.x-quirks .x-ie .x-fieldset{padding-top:0}.x-ie8m .x-fieldset .x-fieldset-body,.x-quirks .x-ie .x-fieldset .x-fieldset-body{padding-top:0}.x-fieldset-header-checkbox{line-height:14px;margin:1px 3px 0 0}.x-fieldset-header{padding:0 3px 1px}.x-fieldset-header .x-tool{margin-top:1px;padding:0}.x-fieldset-header .x-form-cb-wrap{padding:1px 0}.x-fieldset-header-text{font:11px/14px bold tahoma,arial,verdana,sans-serif;color:#333;padding:1px 0}.x-fieldset-header-text-collapsible{cursor:pointer}.x-fieldset-with-title .x-fieldset-header-checkbox,.x-fieldset-with-title .x-tool{margin:1px 3px 0 0}.x-fieldset-with-title .x-rtl .x-fieldset-header-checkbox,.x-fieldset-with-title .x-rtl .x-tool{margin:1px 0 0 3px}.x-webkit .x-fieldset-header{-webkit-padding-start:3px;-webkit-padding-end:3px}.x-opera .x-fieldset-with-legend{margin-top:-1px}.x-opera.x-mac .x-fieldset-header-text{padding:2px 0 0}.x-strict .x-ie8 .x-fieldset-header{margin-bottom:-1px}.x-strict .x-ie8 .x-fieldset-header .x-tool,.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text,.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox{position:relative;top:-1px}.x-quirks .x-ie .x-fieldset-header,.x-ie8m .x-fieldset-header{padding-left:1px;padding-right:1px}.x-fieldset-collapsed .x-fieldset-body{display:none}.x-fieldset-collapsed{padding-bottom:0!important;border-width:1px 1px 0 1px!important;border-left-color:transparent!important;border-right-color:transparent!important}.x-ie6 .x-fieldset-collapsed{border-width:1px 0 0 0!important;padding-bottom:0!important;margin-left:1px;margin-right:1px}.x-ie .x-fieldset-bwrap{zoom:1}.x-fieldset .x-tool-toggle{background-position:0 -60px}.x-fieldset .x-tool-over .x-tool-toggle{background-position:-15px -60px}.x-fieldset-collapsed .x-tool-toggle{background-position:0 -75px}.x-fieldset-collapsed .x-tool-over .x-tool-toggle{background-position:-15px -75px}.x-ie .x-fieldset-noborder legend{position:relative;margin-bottom:23px}.x-ie .x-fieldset-noborder legend span{position:absolute;left:16px}.x-fieldset{overflow:hidden}.x-fieldset-bwrap{overflow:hidden;zoom:1}.x-fieldset-body{overflow:hidden}.x-form-radio{width:13px;height:13px;background:url(images/form/radio.gif) no-repeat}.x-form-cb-checked .x-form-radio{background-position:0 -13px}.x-form-radio-focus{background-position:-13px 0}.x-form-cb-checked .x-form-radio-focus{background-position:-13px -13px}.x-form-trigger{background:url(images/form/trigger.gif);width:17px;border-width:0 0 1px;border-color:#b5b8c8;border-style:solid}.x-rtl.x-form-trigger-wrap .x-form-trigger{background-image:url(images/form/trigger-rtl.gif)}.x-trigger-cell{background-color:white;width:17px}.x-form-trigger-over{background-position:-17px 0;border-color:#a1a1a1}.x-form-trigger-wrap-focus .x-form-trigger{background-position:-51px 0;border-color:#a1a1a1}.x-form-trigger-wrap-focus .x-form-trigger-over{background-position:-68px 0}.x-form-trigger-click,.x-form-trigger-wrap-focus .x-form-trigger-click{background-position:-34px 0}.x-form-clear-trigger{background-image:url(images/form/clear-trigger.gif)}.x-rtl.x-form-trigger-wrap .x-form-clear-trigger{background-image:url(images/form/clear-trigger-rtl.gif)}.x-form-search-trigger{background-image:url(images/form/search-trigger.gif)}.x-rtl.x-form-trigger-wrap .x-form-search-trigger{background-image:url(images/form/search-trigger-rtl.gif)}.x-quirks .prefixie6 .x-form-trigger-input-cell{height:22px}.x-quirks .prefixie6 .x-field-toolbar .x-form-trigger-input-cell{height:20px}div.x-form-spinner-up,div.x-form-spinner-down{background-image:url(images/form/spinner.gif);background-color:white;width:17px;height:11px}.x-rtl.x-form-trigger-wrap .x-form-spinner-up,.x-rtl.x-form-trigger-wrap .x-form-spinner-down{background-image:url(images/form/spinner-rtl.gif)}.x-form-spinner-down{background-position:0 -11px}.x-form-trigger-wrap-focus .x-form-spinner-down{background-position:-51px -11px}.x-form-trigger-wrap .x-form-spinner-down-over{background-position:-17px -11px}.x-form-trigger-wrap-focus .x-form-spinner-down-over{background-position:-68px -11px}.x-form-trigger-wrap .x-form-spinner-down-click{background-position:-34px -11px}.x-toolbar-item div.x-form-spinner-up,.x-toolbar-item div.x-form-spinner-down{background-image:url(images/form/spinner-small.gif);height:10px}.x-toolbar-item .x-form-spinner-down{background-position:0 -10px}.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down{background-position:-51px -10px}.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-over{background-position:-17px -10px}.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down-over{background-position:-68px -10px}.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-click{background-position:-34px -10px}.x-toolbar-item .x-rtl.x-form-trigger-wrap .x-form-spinner-up,.x-toolbar-item .x-rtl.x-form-trigger-wrap .x-form-spinner-down{background-image:url(images/form/spinner-small-rtl.gif)}.x-tbar-page-number{width:30px}.x-tbar-page-first{background-image:url(images/grid/page-first.gif)}.x-tbar-page-prev{background-image:url(images/grid/page-prev.gif)}.x-tbar-page-next{background-image:url(images/grid/page-next.gif)}.x-tbar-page-last{background-image:url(images/grid/page-last.gif)}.x-tbar-loading{background-image:url(images/grid/refresh.gif)}.x-item-disabled .x-tbar-page-first{background-image:url(images/grid/page-first-disabled.gif)}.x-item-disabled .x-tbar-page-prev{background-image:url(images/grid/page-prev-disabled.gif)}.x-item-disabled .x-tbar-page-next{background-image:url(images/grid/page-next-disabled.gif)}.x-item-disabled .x-tbar-page-last{background-image:url(images/grid/page-last-disabled.gif)}.x-item-disabled .x-tbar-loading{background-image:url(images/grid/refresh-disabled.gif)}.x-rtl.x-tbar-page-first{background-image:url(images/grid/page-last.gif)}.x-rtl.x-tbar-page-prev{background-image:url(images/grid/page-next.gif)}.x-rtl.x-tbar-page-next{background-image:url(images/grid/page-prev.gif)}.x-rtl.x-tbar-page-last{background-image:url(images/grid/page-first.gif)}.x-item-disabled .x-rtl.x-tbar-page-first{background-image:url(images/grid/page-last-disabled.gif)}.x-item-disabled .x-rtl.x-tbar-page-prev{background-image:url(images/grid/page-next-disabled.gif)}.x-item-disabled .x-rtl.x-tbar-page-next{background-image:url(images/grid/page-prev-disabled.gif)}.x-item-disabled .x-rtl.x-tbar-page-last{background-image:url(images/grid/page-first-disabled.gif)}.x-boundlist{border-width:1px;border-style:solid;border-color:#b5b8c8;background:white}.x-strict .x-ie7m .x-boundlist-list-ct{position:relative}.x-boundlist-item{padding:0 3px;line-height:20px;cursor:pointer;cursor:hand;position:relative;zoom:1;border-width:1px;border-style:dotted;border-color:white}.x-boundlist-selected{background:#d3d3d3;border-color:#b3abaa}.x-boundlist-item-over{background:#e0e0e0;border-color:#bfb8b8}.x-boundlist-floating{border-top-width:0}.x-boundlist-above{border-top-width:1px;border-bottom-width:1px}.x-datepicker{border-width:1px;border-style:solid;border-color:#585858;background-color:white;width:177px}.x-datepicker-header{padding:3px 6px;text-align:center;background-image:none;background-color:#6f6f6f;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#777),color-stop(100%,#656565));background-image:-webkit-linear-gradient(top,#777,#656565);background-image:-moz-linear-gradient(top,#777,#656565);background-image:-o-linear-gradient(top,#777,#656565);background-image:linear-gradient(top,#777,#656565)}.x-datepicker-arrow{width:15px;height:15px;top:6px;cursor:pointer;background-color:#6f6f6f;filter:alpha(opacity=70);opacity:.7}a.x-datepicker-arrow:hover{filter:alpha(opacity=100);opacity:1}.x-datepicker-next{right:6px;background-image:url(images/shared/right-btn.gif)}.x-datepicker-prev{left:6px;background-image:url(images/shared/left-btn.gif)}.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}.x-datepicker-month .x-btn-inner{color:white}.x-datepicker-month .x-btn-split-right{background-image:url(images/button/s-arrow-light.gif);padding-right:12px}.x-datepicker-column-header{width:25px;color:#3e3e3e;font:normal 10px tahoma,arial,verdana,sans-serif;text-align:right;border-width:0 0 1px;border-style:solid;border-color:#d0d0d0;background-image:none;background-color:#e9e9e9;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f1f1f1),color-stop(100%,#dfdfdf));background-image:-webkit-linear-gradient(top,#f1f1f1,#dfdfdf);background-image:-moz-linear-gradient(top,#f1f1f1,#dfdfdf);background-image:-o-linear-gradient(top,#f1f1f1,#dfdfdf);background-image:linear-gradient(top,#f1f1f1,#dfdfdf)}.x-datepicker-column-header-inner{line-height:19px;padding:0 7px 0 0}.x-datepicker-cell{text-align:right;border-width:1px;border-style:solid;border-color:white}.x-datepicker-date{padding:0 4px 0 0;font:normal 11px tahoma,arial,verdana,sans-serif;color:black;cursor:pointer;line-height:18px}a.x-datepicker-date:hover{color:black;background-color:transparent}.x-datepicker-selected{border-style:solid;border-color:#b2aaa9}.x-datepicker-selected .x-datepicker-date{background-color:#d8d8d8;font-weight:bold}.x-datepicker-today{border-color:darkred;border-style:solid}.x-datepicker-prevday .x-datepicker-date,.x-datepicker-nextday .x-datepicker-date{color:#aaa}.x-datepicker-disabled a.x-datepicker-date{background-color:#eee;cursor:default;color:#bbb}.x-datepicker-disabled a.x-datepicker-date:hover{background-color:#eee}.x-datepicker-footer,.x-monthpicker-buttons{padding:4px 0;border-width:1px 0 0;border-style:solid;border-color:#d0d0d0;background-image:none;background-color:#e9e9e9;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dfdfdf),color-stop(49%,#d6d6d6),color-stop(51%,#d0d0d0),color-stop(100%,#d2d2d2));background-image:-webkit-linear-gradient(top,#dfdfdf,#d6d6d6 49%,#d0d0d0 51%,#d2d2d2);background-image:-moz-linear-gradient(top,#dfdfdf,#d6d6d6 49%,#d0d0d0 51%,#d2d2d2);background-image:-o-linear-gradient(top,#dfdfdf,#d6d6d6 49%,#d0d0d0 51%,#d2d2d2);background-image:linear-gradient(top,#dfdfdf,#d6d6d6 49%,#d0d0d0 51%,#d2d2d2);text-align:center}.x-datepicker-footer .x-btn,.x-monthpicker-buttons .x-btn{margin:0 2px 0 2px}.x-monthpicker{width:177px;border-width:1px;border-style:solid;border-color:#585858;background-color:white}.x-monthpicker-months{border-width:0 1px 0 0;border-color:#585858;border-style:solid;width:87px}.x-monthpicker-months .x-monthpicker-item{width:43px}.x-monthpicker-years{width:88px}.x-monthpicker-years .x-monthpicker-item{width:44px}.x-monthpicker-item{margin:5px 0 4px;font:normal 11px tahoma,arial,verdana,sans-serif;text-align:center}.x-monthpicker-item-inner{margin:0 5px 0 5px;color:#523a39;border-width:1px;border-style:solid;border-color:white;line-height:16px;cursor:pointer}a.x-monthpicker-item-inner:hover{background-color:transparent}.x-monthpicker-selected{background-color:#d8d8d8;border-style:solid;border-color:#b2aaa9}.x-monthpicker-yearnav{height:27px}.x-monthpicker-yearnav-button-ct{width:44px}.x-monthpicker-yearnav-button{height:15px;width:15px;cursor:pointer;margin-top:6px;background-color:white}.x-monthpicker-yearnav-next{background-image:url(images/tools/tool-sprites.gif);background-position:0 -120px}.x-monthpicker-yearnav-next-over{background-position:-15px -120px}.x-monthpicker-yearnav-prev{background-image:url(images/tools/tool-sprites.gif);background-position:0 -105px}.x-monthpicker-yearnav-prev-over{background-position:-15px -105px}.x-monthpicker-small .x-monthpicker-item{margin:2px 0 2px}.x-monthpicker-small .x-monthpicker-item-inner{margin:0 5px 0 5px}.x-monthpicker-small .x-monthpicker-yearnav{height:22px}.x-monthpicker-small .x-monthpicker-yearnav-button{margin-top:3px}.x-nlg .x-datepicker-header{background-image:url(images/datepicker/datepicker-header-bg.gif);background-repeat:repeat-x;background-position:top left}.x-nlg .x-datepicker-footer,.x-nlg .x-monthpicker-buttons{background-image:url(images/datepicker/datepicker-footer-bg.gif);background-repeat:repeat-x;background-position:top left}.x-datepicker-header:after{display:none;content:"x-slicer:bg:url(images/datepicker/datepicker-header-bg.gif)"}.x-datepicker-footer:after{display:none;content:"x-slicer:bg:url(images/datepicker/datepicker-footer-bg.gif)"}.x-form-date-trigger{background-image:url(images/form/date-trigger.gif)}.x-rtl.x-form-trigger-wrap .x-form-date-trigger{background-image:url(images/form/date-trigger-rtl.gif)}.x-form-file-wrap .x-form-text{color:gray}.x-color-picker{width:144px;height:90px;background-color:white;border-color:white;border-width:0;border-style:solid}.x-color-picker-item{width:18px;height:18px;border-width:1px;border-color:white;border-style:solid;background-color:white;cursor:pointer;padding:2px}.x-content-box .x-color-picker-item{width:12px;height:12px}a.x-color-picker-item:hover{border-color:#8bb8f3;background-color:#deecfd}.x-color-picker-selected{border-color:#8bb8f3;background-color:#deecfd}.x-color-picker-item-inner{line-height:10px;border-color:#aca899;border-width:1px;border-style:solid}.x-html-editor-tb .x-btn-text{background:transparent no-repeat;background-image:url(images/editor/tb-sprite.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.x-html-editor-tip .x-tip-bd .x-tip-bd-inner{padding:5px;padding-bottom:1px}.x-html-editor-tb .x-font-select{font-size:11px;font-family:inherit}.x-html-editor-wrap textarea{font:normal 12px tahoma,arial,verdana,sans-serif;background-color:white;resize:none}.x-grid-body{background:white;border-width:1px;border-style:solid;border-color:#d0d0d0}.x-grid-empty{padding:10px;color:gray;background-color:white;font:normal 11px tahoma,arial,verdana,sans-serif}.x-grid-cell{color:null;font:normal 11px/13px tahoma,arial,verdana,sans-serif;background-color:white;border-color:#ededed #c6c6c6 #ededed #c6c6c6;border-style:solid}.x-grid-row-alt .x-grid-td{background-color:#fafafa}.x-grid-row-before-over .x-grid-td{border-bottom-style:solid;border-bottom-color:#ddd}.x-grid-row-over .x-grid-td{border-bottom-style:solid;border-bottom-color:#ddd}.x-grid-row-before-selected .x-grid-td{border-bottom-style:dotted;border-bottom-color:#bfb8b8}.x-grid-row-selected .x-grid-td{border-bottom-style:dotted;border-bottom-color:#bfb8b8}.x-grid-row-before-focused .x-grid-td{border-bottom-style:dotted;border-bottom-color:#464646;border-bottom-width:1px}.x-grid-row-focused .x-grid-td{background-color:#efefef}.x-grid-row-over .x-grid-td{background-color:#efefef}.x-grid-row-selected .x-grid-td{background-color:#e0e0e0}.x-grid-row-focused .x-grid-td{border-bottom-style:dotted;border-bottom-color:#464646;border-bottom-width:1px}.x-grid-table .x-grid-row-focused-first .x-grid-td{border-top:1px dotted #464646}.x-grid-row-selected .x-grid-row-summary .x-grid-td{border-bottom-color:#e0e0e0;border-top-width:0}.x-grid-row-focused .x-grid-row-summary .x-grid-td{border-bottom-color:#efefef;border-top-width:0}.x-grid-with-row-lines .x-grid-td{border-bottom-width:1px}.x-grid-with-row-lines .x-grid-table{border-top:1px solid white}.x-grid-with-row-lines .x-grid-table-over-first{border-top-style:solid;border-top-color:#ddd}.x-grid-with-row-lines .x-grid-table-selected-first{border-top-style:dotted;border-top-color:#bfb8b8}.x-grid-body .x-grid-table-focused-first{border-top:1px dotted #464646}.x-grid-cell-inner{text-overflow:ellipsis;padding:3px 6px 4px 6px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner{padding-top:2px;padding-bottom:3px}.x-grid-cell-special{border-color:#ededed #c6c6c6 #ededed #c6c6c6;border-style:solid;border-right-width:1px;background-image:none;background-color:#f6f6f6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:-moz-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:-o-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:linear-gradient(top,#f6f6f6,#e9e9e9)}.x-grid-row-selected .x-grid-cell-special{border-right-color:#ededed #d4b7b7;background-image:none;background-color:#e0e0e0;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#e0e0e0),color-stop(100%,#d3d3d3));background-image:-webkit-linear-gradient(left,#e0e0e0,#d3d3d3);background-image:-moz-linear-gradient(left,#e0e0e0,#d3d3d3);background-image:-o-linear-gradient(left,#e0e0e0,#d3d3d3);background-image:linear-gradient(left,#e0e0e0,#d3d3d3)}.x-nlg .x-grid-cell-special{background-repeat:repeat-y;background-image:url(images/grid/cell-special-bg.gif)}.x-nlg .x-grid-row-selected .x-grid-cell-special{background-image:url(images/grid/cell-special-selected-bg.gif)}.x-grid-cell-special .x-grid-cell-special:after{display:none;content:"x-slicer:bg:url(images/grid/cell-special-bg.gif)"}.x-grid-cell-special .x-grid-cell-special-selected:after{display:none;content:"x-slicer:bg:url(images/grid/cell-special-selected-bg.gif)"}.x-rtl.x-grid-cell-special{border-right-width:0;border-left-width:1px}.x-grid-dirty-cell{background:url(images/grid/dirty.gif) no-repeat 0 0}.x-rtl.x-grid-dirty-cell{background-image:url(images/grid/dirty-rtl.gif);background-position:right 0}.x-grid-row .x-grid-cell-selected{color:null;background-color:#b8cfee}.x-grid-with-col-lines .x-grid-cell{border-right-width:1px}.x-rtl.x-grid-with-col-lines .x-grid-cell{border-right-width:0;border-left-width:1px}.x-grid-resize-marker{width:1px;background-color:#0f0f0f}.x-grid-drop-indicator{position:absolute;height:1px;line-height:0;background-color:#77bc71;overflow:visible;pointer-events:none}.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}.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}.x-ie6 .x-grid-drop-indicator-left{background-image:url(images/grid/dd-insert-arrow-right.gif)}.x-ie6 .x-grid-drop-indicator-right{background-image:url(images/grid/dd-insert-arrow-left.gif)}.col-move-top,.col-move-bottom{width:9px;height:9px}.col-move-top{background-image:url(images/grid/col-move-top.gif)}.col-move-bottom{background-image:url(images/grid/col-move-bottom.gif)}.x-grid-header-ct{border:1px solid #d0d0d0;border-bottom-color:#c5c5c5;background-color:#c5c5c5;background-image:none;background-color:#c5c5c5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f9f9f9),color-stop(100%,#e3e4e6));background-image:-webkit-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-moz-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-o-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:linear-gradient(top,#f9f9f9,#e3e4e6)}.x-accordion-item .x-grid-header-ct{border-width:0 0 1px!important}.x-accordion-item .x-grid-header-ct-hidden{border:0!important}.x-grid-body{border-top-color:#c5c5c5}.x-hmenu-sort-asc .x-menu-item-icon{background-image:url(images/grid/hmenu-asc.gif)}.x-hmenu-sort-desc .x-menu-item-icon{background-image:url(images/grid/hmenu-desc.gif)}.x-cols-icon .x-menu-item-icon{background-image:url(images/grid/columns.gif)}.x-column-header{border-right:1px solid #c5c5c5;color:black;font:normal 11px/13px tahoma,arial,verdana,sans-serif;background-image:none;background-color:#c5c5c5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f9f9f9),color-stop(100%,#e3e4e6));background-image:-webkit-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-moz-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-o-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:linear-gradient(top,#f9f9f9,#e3e4e6)}.x-rtl.x-column-header{border-right:0 none;border-left:1px solid #c5c5c5}.x-group-sub-header{background:transparent;border-top:1px solid #c5c5c5}.x-group-sub-header .x-column-header-inner{padding:3px 6px 5px 6px}.x-column-header-inner{padding:4px 6px 5px 6px;text-overflow:ellipsis}.x-column-header-over,.x-column-header-sort-ASC,.x-column-header-sort-DESC{background-image:none;background-color:#f0f0f0;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(100%,#f0f0f0));background-image:-webkit-linear-gradient(top,#fff,#f0f0f0);background-image:-moz-linear-gradient(top,#fff,#f0f0f0);background-image:-o-linear-gradient(top,#fff,#f0f0f0);background-image:linear-gradient(top,#fff,#f0f0f0)}.x-nlg .x-grid-header-ct,.x-nlg .x-column-header{background-image:url(images/grid/column-header-bg.gif)}.x-nlg .x-column-header-over,.x-nlg .x-column-header-sort-ASC,.x-nlg .x-column-header-sort-DESC{background-image:url(images/grid/column-header-over-bg.gif)}.x-column-header-open{background-color:transparent}.x-column-header-open .x-column-header-trigger{background-color:transparent}.x-column-header-trigger{width:14px;cursor:pointer;background-color:transparent;background-position:0 center}.x-rtl.x-column-header-trigger{background-position:right center}.x-column-header-align-right .x-column-header-text{margin-right:9px}.x-column-header-align-right .x-rtl.x-column-header-text{margin-right:0;margin-left:9px}.x-column-header-sort-ASC .x-column-header-text,.x-column-header-sort-DESC .x-column-header-text{padding-right:12px;background-position:right center}.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:12px;background-position:0 center}.x-column-header-sort-ASC .x-column-header-text{background-image:url(images/grid/sort_asc.gif)}.x-column-header-sort-DESC .x-column-header-text{background-image:url(images/grid/sort_desc.gif)}.x-column-header:after{display:none;content:"x-slicer:bg:url(images/grid/column-header-bg.gif), stretch:bottom"}.x-column-header-over:after{display:none;content:"x-slicer:bg:url(images/grid/column-header-over-bg.gif), stretch:bottom"}.x-grid-cell-inner-action-col{padding:2px 2px 2px 2px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-action-col{padding-top:1px;padding-bottom:1px}.x-action-col-cell .x-item-disabled{filter:alpha(opacity=30);opacity:.3}.x-action-col-icon{height:16px;width:16px;cursor:pointer}.x-grid-cell-inner-checkcolumn{padding:4px 6px 3px 6px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-checkcolumn{padding-top:3px;padding-bottom:2px}.x-grid-checkcolumn{width:13px;height:13px;background:url(images/form/checkbox.gif) 0 0 no-repeat}.x-item-disabled .x-grid-checkcolumn{filter:alpha(opacity=30);opacity:.3}.x-grid-checkcolumn-checked{background-position:0 -13px}.x-grid-cell-inner-row-numberer{padding:3px 5px 4px 3px}.x-grid-group-hd{border-width:0 0 2px 0;border-style:solid;border-color:#bcb1b0;padding:10px 4px 4px 4px;background:white;cursor:pointer}.x-grid-group-hd-not-collapsible{cursor:default}.x-grid-group-hd-collapsible .x-grid-group-title{background-repeat:no-repeat;background-position:left center;background-image:url(images/grid/group-collapse.gif);padding:0 0 0 14px}.x-rtl.x-grid-view .x-grid-group-hd-collapsible .x-grid-group-title{background-position:right center;padding:0 14px 0 0}.x-grid-group-title{color:#616161;font:bold 11px/13px tahoma,arial,verdana,sans-serif}.x-grid-group-hd-collapsed .x-grid-group-title{background-image:url(images/grid/group-expand.gif)}.x-grid-group-collapsed .x-grid-group-title{background-image:url(images/grid/group-expand.gif)}.x-group-by-icon{background-image:url(images/grid/group-by.gif)}.x-show-groups-icon{background-image:url(images/grid/group-by.gif)}.x-grid-rowbody{font:normal 11px/13px tahoma,arial,verdana,sans-serif;padding:5px 6px 5px 6px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-rowbody{padding-top:6px;padding-bottom:4px}.x-grid-rowwrap{border-color:#ededed #c6c6c6 #ededed #c6c6c6;border-style:solid}.x-summary-bottom{border-bottom-color:#c5c5c5}.x-docked-summary{border-width:1px;border-color:#d0d0d0;border-style:solid}.x-docked-summary .x-grid-table{width:100%}.x-grid-row-summary .x-grid-cell,.x-grid-row-summary .x-grid-rowwrap,.x-grid-row-summary .x-grid-cell-rowbody{border-color:#ededed #c6c6c6 #ededed #c6c6c6;background-color:transparent!important;border-top-width:0;font:normal 11px/13px tahoma,arial,verdana,sans-serif}.x-grid-with-row-lines .x-grid-table-summary{border:0}.x-grid-locked .x-grid-inner-locked{border-width:0 1px 0 0;border-style:solid}.x-grid-locked .x-rtl.x-grid-inner-locked{border-width:0 0 0 1px}.x-grid-inner-locked .x-column-header-last,.x-grid-inner-locked .x-grid-cell-last{border-right-width:0!important}.x-grid-inner-locked .x-rtl.x-column-header-last{border-left-width:0!important}.x-rtl.x-grid-inner-locked .x-grid-row .x-column-header-last{border-left:0 none}.x-rtl.x-grid-inner-locked .x-grid-row .x-grid-cell-last{border-left:0 none}.x-hmenu-lock .x-menu-item-icon{background-image:url(images/grid/hmenu-lock.gif)}.x-hmenu-unlock .x-menu-item-icon{background-image:url(images/grid/hmenu-unlock.gif)}.x-grid-editor .x-form-text{font:normal 11px/15px tahoma,arial,verdana,sans-serif;padding:1px 5px 2px 5px;height:20px}.x-content-box .x-grid-editor .x-form-text{height:15px}.x-gecko .x-grid-editor .x-form-text{padding-left:4px;padding-right:4px}.x-grid-editor .x-form-trigger{height:20px}.x-grid-editor .x-form-spinner-up,.x-grid-editor .x-form-spinner-down{height:10px}.x-grid-editor .x-form-cb{margin-top:4px}.x-grid-editor .x-form-cb-wrap{height:20px}.x-grid-editor .x-form-display-field-body{height:20px}.x-grid-editor .x-form-display-field{font:normal 11px/15px tahoma,arial,verdana,sans-serif;padding:2px 6px 3px 6px;text-overflow:ellipsis}.x-grid-editor .x-form-action-col-field{padding:2px 2px 2px 2px}.x-tree-cell-editor .x-form-text{padding-left:2px;padding-right:2px}.x-gecko .x-tree-cell-editor .x-form-text{padding-left:1px;padding-right:1px}.x-grid-row-editor .x-field{margin:0 1px 0 1px}.x-grid-row-editor .x-form-display-field{padding:2px 5px 3px 5px}.x-grid-row-editor .x-form-action-col-field{padding:2px 1px 2px 1px}.x-grid-row-editor .x-form-text{padding:1px 4px 2px 4px}.x-gecko .x-grid-row-editor .x-form-text{padding-left:3px;padding-right:3px}.x-grid-row-editor .x-panel-body{border-top:1px solid #d0d0d0!important;border-bottom:1px solid #d0d0d0!important;padding:4px 0 4px 0;background-color:#ebe6e6}.x-grid-with-col-lines .x-grid-row-editor .x-form-cb{margin-right:1px}.x-grid-with-col-lines .x-grid-row-editor .x-rtl.x-form-cb{margin-right:0;margin-left:1px}.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:4px 4px 4px 4px;border-width:0 1px 1px 1px;border-style:solid;background-color:#ebe6e6}.x-grid-row-editor-buttons-default-bottom-mc{background-color:#ebe6e6}.x-nbr .x-grid-row-editor-buttons-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-grid-row-editor-buttons-default-bottom-frameInfo{font-family:th-0-0-5-5-0-1-1-1-4-4-4-4}.x-grid-row-editor-buttons-default-bottom-tl{background-position:0 -10px}.x-grid-row-editor-buttons-default-bottom-tr{background-position:right -15px}.x-grid-row-editor-buttons-default-bottom-bl{background-position:0 -20px}.x-grid-row-editor-buttons-default-bottom-br{background-position:right -25px}.x-grid-row-editor-buttons-default-bottom-ml{background-position:0 top}.x-grid-row-editor-buttons-default-bottom-mr{background-position:right top}.x-grid-row-editor-buttons-default-bottom-tc{background-position:0 0}.x-grid-row-editor-buttons-default-bottom-bc{background-position:0 -5px}.x-grid-row-editor-buttons-default-bottom-tr,.x-grid-row-editor-buttons-default-bottom-br,.x-grid-row-editor-buttons-default-bottom-mr{padding-right:5px}.x-grid-row-editor-buttons-default-bottom-tl,.x-grid-row-editor-buttons-default-bottom-bl,.x-grid-row-editor-buttons-default-bottom-ml{padding-left:5px}.x-grid-row-editor-buttons-default-bottom-tc{height:0}.x-grid-row-editor-buttons-default-bottom-bc{height:5px}.x-grid-row-editor-buttons-default-bottom-tl,.x-grid-row-editor-buttons-default-bottom-bl,.x-grid-row-editor-buttons-default-bottom-tr,.x-grid-row-editor-buttons-default-bottom-br,.x-grid-row-editor-buttons-default-bottom-tc,.x-grid-row-editor-buttons-default-bottom-bc,.x-grid-row-editor-buttons-default-bottom-ml,.x-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif)}.x-grid-row-editor-buttons-default-bottom-ml,.x-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif);background-repeat:repeat-y}.x-grid-row-editor-buttons-default-bottom-mc{padding:4px 0 0 0}.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-tl,.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-bl{position:relative;right:0}.x-grid-row-editor-buttons-default-bottom:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"}.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:4px 4px 4px 4px;border-width:1px 1px 0 1px;border-style:solid;background-color:#ebe6e6}.x-grid-row-editor-buttons-default-top-mc{background-color:#ebe6e6}.x-nbr .x-grid-row-editor-buttons-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-grid-row-editor-buttons-default-top-frameInfo{font-family:th-5-5-0-0-1-1-0-1-4-4-4-4}.x-grid-row-editor-buttons-default-top-tl{background-position:0 -10px}.x-grid-row-editor-buttons-default-top-tr{background-position:right -15px}.x-grid-row-editor-buttons-default-top-bl{background-position:0 -20px}.x-grid-row-editor-buttons-default-top-br{background-position:right -25px}.x-grid-row-editor-buttons-default-top-ml{background-position:0 top}.x-grid-row-editor-buttons-default-top-mr{background-position:right top}.x-grid-row-editor-buttons-default-top-tc{background-position:0 0}.x-grid-row-editor-buttons-default-top-bc{background-position:0 -5px}.x-grid-row-editor-buttons-default-top-tr,.x-grid-row-editor-buttons-default-top-br,.x-grid-row-editor-buttons-default-top-mr{padding-right:5px}.x-grid-row-editor-buttons-default-top-tl,.x-grid-row-editor-buttons-default-top-bl,.x-grid-row-editor-buttons-default-top-ml{padding-left:5px}.x-grid-row-editor-buttons-default-top-tc{height:5px}.x-grid-row-editor-buttons-default-top-bc{height:0}.x-grid-row-editor-buttons-default-top-tl,.x-grid-row-editor-buttons-default-top-bl,.x-grid-row-editor-buttons-default-top-tr,.x-grid-row-editor-buttons-default-top-br,.x-grid-row-editor-buttons-default-top-tc,.x-grid-row-editor-buttons-default-top-bc,.x-grid-row-editor-buttons-default-top-ml,.x-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif)}.x-grid-row-editor-buttons-default-top-ml,.x-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif);background-repeat:repeat-y}.x-grid-row-editor-buttons-default-top-mc{padding:0 0 4px 0}.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-tl,.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-bl{position:relative;right:0}.x-grid-row-editor-buttons-default-top:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"}.x-grid-row-editor-buttons-default-bottom{top:29px}.x-grid-row-editor-buttons-default-top{bottom:29px}.x-grid-row-editor-buttons{border-color:#d0d0d0}.x-row-editor-update-button{margin-right:2px}.x-row-editor-cancel-button{margin-left:2px}.x-rtl.x-row-editor-update-button{margin-left:2px;margin-right:auto}.x-rtl.x-row-editor-cancel-button{margin-right:2px;margin-left:auto}.x-grid-row-editor-errors .x-tip-body{padding:5px}.x-grid-row-editor-errors-item{list-style:disc;margin-left:15px}.x-rtl.x-grid-row-editor-errors .x-grid-row-editor-errors-item{margin-left:0;margin-right:15px}.x-grid-cell-inner-row-expander{padding:6px 7px 5px 7px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-row-expander{padding-top:5px;padding-bottom:4px}.x-grid-row-expander{width:9px;height:9px;cursor:pointer;background-image:url(images/grid/group-collapse.gif)}.x-grid-row-collapsed .x-grid-row-expander{background-image:url(images/grid/group-expand.gif)}.x-grid-cell-inner-property-name{background-image:url(images/grid/property-cell-bg.gif);background-repeat:no-repeat;background-position:-16px 2px;padding-left:12px}.x-accordion-layout-ct{background-color:white;padding:0}.x-accordion-hd .x-panel-header-text-container{color:black;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;text-transform:none}.x-accordion-item{margin:0}.x-accordion-item .x-accordion-hd{background:#e5e5e5;border-top-color:#ececec;padding:4px 5px 5px 5px}.x-accordion-item .x-accordion-hd-sibling-expanded{border-top-color:#d0d0d0}.x-accordion-item .x-accordion-hd-last-collapsed{border-bottom-color:#e5e5e5}.x-accordion-item .x-accordion-body{border-width:0}.x-accordion-hd .x-tool-collapse-top,.x-accordion-hd .x-tool-collapse-bottom{background-position:0 -255px}.x-accordion-hd .x-tool-expand-top,.x-accordion-hd .x-tool-expand-bottom{background-position:0 -240px}.x-accordion-hd .x-tool-over .x-tool-collapse-top,.x-accordion-hd .x-tool-over .x-tool-collapse-bottom{background-position:-15px -255px}.x-accordion-hd .x-tool-over .x-tool-expand-top,.x-accordion-hd .x-tool-over .x-tool-expand-bottom{background-position:-15px -240px}.x-accordion-hd .x-tool-img{background-color:#e5e5e5}.x-collapse-el{cursor:pointer}.x-layout-split-left,.x-layout-split-right{top:50%;margin-top:-18px;width:5px;height:35px}.x-layout-split-top,.x-layout-split-bottom{left:50%;width:35px;height:5px;margin-left:-18px}.x-layout-split-left{background-image:url(images/util/splitter/mini-left.gif)}.x-layout-split-right{background-image:url(images/util/splitter/mini-right.gif)}.x-rtl.x-layout-split-left{background-image:url(images/util/splitter/mini-right.gif)}.x-rtl.x-layout-split-right{background-image:url(images/util/splitter/mini-left.gif)}.x-layout-split-top{background-image:url(images/util/splitter/mini-top.gif)}.x-layout-split-bottom{background-image:url(images/util/splitter/mini-bottom.gif)}.x-splitter-collapsed .x-layout-split-left{background-image:url(images/util/splitter/mini-right.gif)}.x-splitter-collapsed .x-layout-split-right{background-image:url(images/util/splitter/mini-left.gif)}.x-splitter-collapsed .x-rtl.x-layout-split-left{background-image:url(images/util/splitter/mini-left.gif)}.x-splitter-collapsed .x-rtl.x-layout-split-right{background-image:url(images/util/splitter/mini-right.gif)}.x-splitter-collapsed .x-layout-split-top{background-image:url(images/util/splitter/mini-bottom.gif)}.x-splitter-collapsed .x-layout-split-bottom{background-image:url(images/util/splitter/mini-top.gif)}.x-splitter-active{background-color:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x-splitter-active .x-collapse-el{filter:alpha(opacity=30);opacity:.3}.x-border-layout-ct{background-color:#e0e0e0}.x-menu-body{background:#f0f0f0;padding:2px}.x-menu-icon-separator{left:24px;border-left:solid 1px #e0e0e0;background-color:white;width:2px}.x-rtl.x-menu .x-menu-icon-separator{left:auto;right:24px}.x-menu-item{padding:1px;cursor:pointer}.x-menu-item-indent{margin-left:30px}.x-rtl.x-menu-item-indent{margin-left:0;margin-right:30px}.x-menu-item-active{background-image:none;background-color:#e6e6e6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#eee),color-stop(100%,#dcdcdc));background-image:-webkit-linear-gradient(top,#eee,#dcdcdc);background-image:-moz-linear-gradient(top,#eee,#dcdcdc);background-image:-o-linear-gradient(top,#eee,#dcdcdc);background-image:linear-gradient(top,#eee,#dcdcdc);border-color:#9d9d9d;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;border-width:1px;border-style:solid;padding:0}.x-nlg .x-menu-item-active{background:#e6e6e6 repeat-x left top;background-image:url(images/menu/menu-item-active-bg.gif)}.x-menu-item-link{line-height:22px;padding:0 0 0 30px;display:inline-block}.x-rtl.x-menu-item-link{padding:0 30px 0 0}.x-right-check-item-text{padding-right:22px}.x-rtl.x-right-check-item-text{padding-left:22px;padding-right:0}.x-menu-item-icon{width:16px;height:16px;top:4px;left:3px;background-position:center center}.x-menu-item-glyph{font-size:16px;line-height:16px;color:#222;opacity:.5}.x-ie8m .x-menu-item-glyph{color:#898989}.x-gecko .x-menu-item-active .x-menu-item-icon,.x-quirks .x-menu-item-active .x-menu-item-icon,.x-ie9m .x-menu-item-active .x-menu-item-icon{top:3px;left:2px}.x-rtl.x-menu-item-icon{left:auto;right:3px}.x-gecko .x-menu-item-active .x-rtl.x-menu-item-icon,.x-quirks .x-menu-item-active .x-rtl.x-menu-item-icon,.x-ie9m .x-menu-item-active .x-rtl.x-menu-item-icon{left:auto;right:2px}.x-menu-item-icon-right{width:16px;height:16px;top:3px;right:3px;background-position:center center}.x-rtl.x-menu-item-icon-right{right:auto;left:3px}.x-menu-item-text{font-size:11px;color:#222;cursor:pointer;margin-right:16px}a.x-rtl .x-menu-item-text{margin-right:0;margin-left:16px}.x-menu-item-checked .x-menu-item-icon,.x-menu-item-checked .x-menu-item-icon-right{background-image:url(images/menu/checked.gif)}.x-menu-item-checked .x-menu-group-icon{background-image:url(images/menu/group-checked.gif)}.x-menu-item-unchecked .x-menu-item-icon,.x-menu-item-unchecked .x-menu-item-icon-right{background-image:url(images/menu/unchecked.gif)}.x-menu-item-unchecked .x-menu-group-icon{background-image:none}.x-menu-item-separator{height:2px;border-top:solid 1px #e0e0e0;background-color:white;margin:2px 0;padding:0}.x-menu-item-arrow{width:12px;height:9px;top:7px;right:0;background-image:url(images/menu/menu-parent.gif)}.x-gecko .x-menu-item-active .x-menu-item-arrow,.x-quirks .x-menu-item-active .x-menu-item-arrow,.x-ie9m .x-menu-item-active .x-menu-item-arrow{top:6px;right:-1px}.x-rtl.x-menu-item-arrow{left:0;right:auto;background-image:url(images/menu/menu-parent-left.gif)}.x-gecko .x-menu-item-active .x-rtl.x-menu-item-arrow,.x-ie9m .x-menu-item-active .x-rtl.x-menu-item-arrow,.x-quirks .x-menu-item-active .x-rtl.x-menu-item-arrow{right:auto;left:-1px}.x-menu-item-disabled{filter:alpha(opacity=50);opacity:.5}.x-content-box .x-menu-icon-separator{width:1px}.x-content-box .x-menu-item-separator{height:1px}.x-ie .x-menu-item-disabled .x-menu-item-icon{filter:alpha(opacity=50);opacity:.5}.x-ie .x-menu-item-disabled .x-menu-item-text{background-color:transparent}.x-menu-date-item{border-color:#99bbe8}.x-menu-item .x-form-item-label{font-size:11px;color:#222}.x-menu-scroll-top{height:8px;background-image:url(images/menu/scroll-top.gif)}.x-menu-scroll-bottom{height:8px;background-image:url(images/menu/scroll-bottom.gif)}.x-menu-scroll-top,.x-menu-scroll-bottom{background-color:#f0f0f0}.x-menu-item-link:after{display:none;content:"x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"}.x-tool{cursor:pointer}.x-tool-img{overflow:hidden;width:15px;height:15px;background-image:url(images/tools/tool-sprites.gif);margin:0}.x-tool-placeholder{visibility:hidden}.x-tool-close{background-position:0 0}.x-tool-minimize{background-position:0 -15px}.x-tool-maximize{background-position:0 -30px}.x-tool-restore{background-position:0 -45px}.x-tool-toggle{background-position:0 -60px}.x-panel-collapsed .x-tool-toggle{background-position:0 -75px}.x-tool-gear{background-position:0 -90px}.x-tool-prev{background-position:0 -105px}.x-tool-next{background-position:0 -120px}.x-tool-pin{background-position:0 -135px}.x-tool-unpin{background-position:0 -150px}.x-tool-right{background-position:0 -165px}.x-tool-left{background-position:0 -180px}.x-tool-down{background-position:0 -195px}.x-tool-up{background-position:0 -210px}.x-tool-refresh{background-position:0 -225px}.x-tool-plus{background-position:0 -240px}.x-tool-minus{background-position:0 -255px}.x-tool-search{background-position:0 -270px}.x-tool-save{background-position:0 -285px}.x-tool-help{background-position:0 -300px}.x-tool-print{background-position:0 -315px}.x-tool-expand{background-position:0 -330px}.x-tool-collapse{background-position:0 -345px}.x-tool-resize{background-position:0 -360px}.x-tool-move{background-position:0 -375px}.x-tool-expand-bottom,.x-tool-collapse-bottom{background-position:0 -195px}.x-tool-expand-top,.x-tool-collapse-top{background-position:0 -210px}.x-tool-expand-left,.x-tool-collapse-left{background-position:0 -180px}.x-tool-expand-right,.x-tool-collapse-right{background-position:0 -165px}.x-rtl.x-tool-expand-left,.x-rtl.x-tool-collapse-left{background-position:0 -165px}.x-rtl.x-tool-expand-right,.x-rtl.x-tool-collapse-right{background-position:0 -180px}.x-tool-over .x-tool-close{background-position:-15px 0}.x-tool-over .x-tool-minimize{background-position:-15px -15px}.x-tool-over .x-tool-maximize{background-position:-15px -30px}.x-tool-over .x-tool-restore{background-position:-15px -45px}.x-tool-over .x-tool-toggle{background-position:-15px -60px}.x-panel-collapsed .x-tool-over .x-tool-toggle{background-position:-15px -75px}.x-tool-over .x-tool-gear{background-position:-15px -90px}.x-tool-over .x-tool-prev{background-position:-15px -105px}.x-tool-over .x-tool-next{background-position:-15px -120px}.x-tool-over .x-tool-pin{background-position:-15px -135px}.x-tool-over .x-tool-unpin{background-position:-15px -150px}.x-tool-over .x-tool-right{background-position:-15px -165px}.x-tool-over .x-tool-left{background-position:-15px -180px}.x-tool-over .x-tool-down{background-position:-15px -195px}.x-tool-over .x-tool-up{background-position:-15px -210px}.x-tool-over .x-tool-refresh{background-position:-15px -225px}.x-tool-over .x-tool-plus{background-position:-15px -240px}.x-tool-over .x-tool-minus{background-position:-15px -255px}.x-tool-over .x-tool-search{background-position:-15px -270px}.x-tool-over .x-tool-save{background-position:-15px -285px}.x-tool-over .x-tool-help{background-position:-15px -300px}.x-tool-over .x-tool-print{background-position:-15px -315px}.x-tool-over .x-tool-expand{background-position:-15px -330px}.x-tool-over .x-tool-collapse{background-position:-15px -345px}.x-tool-over .x-tool-resize{background-position:-15px -360px}.x-tool-over .x-tool-move{background-position:-15px -375px}.x-tool-over .x-tool-expand-bottom,.x-tool-over .x-tool-collapse-bottom{background-position:-15px -195px}.x-tool-over .x-tool-expand-top,.x-tool-over .x-tool-collapse-top{background-position:-15px -210px}.x-tool-over .x-tool-expand-left,.x-tool-over .x-tool-collapse-left{background-position:-15px -180px}.x-tool-over .x-tool-expand-right,.x-tool-over .x-tool-collapse-right{background-position:-15px -165px}.x-tool-over .x-rtl.x-tool-expand-left,.x-tool-over .x-rtl.x-tool-collapse-left{background-position:-15px -165px}.x-tool-over .x-rtl.x-tool-expand-right,.x-tool-over .x-rtl.x-tool-collapse-right{background-position:-15px -180px}.x-resizable-handle{position:absolute;z-index:100;font-size:1px;line-height:6px;overflow:hidden;zoom:1;filter:alpha(opacity=0);opacity:0;background-color:#fff}.x-collapsed .x-resizable-handle{display:none}.x-resizable-over .x-resizable-handle-north{cursor:n-resize}.x-resizable-over .x-resizable-handle-south{cursor:s-resize}.x-resizable-over .x-resizable-handle-east{cursor:e-resize}.x-resizable-over .x-resizable-handle-west{cursor:w-resize}.x-resizable-over .x-resizable-handle-southeast{cursor:se-resize}.x-resizable-over .x-resizable-handle-northwest{cursor:nw-resize}.x-resizable-over .x-resizable-handle-northeast{cursor:ne-resize}.x-resizable-over .x-resizable-handle-southwest{cursor:sw-resize}.x-resizable-handle-east{width:6px;height:100%;right:0;top:0}.x-resizable-handle-south{width:100%;height:6px;left:0;bottom:0}.x-resizable-handle-west{width:6px;height:100%;left:0;top:0}.x-resizable-handle-north{width:100%;height:6px;left:0;top:0}.x-resizable-handle-southeast{width:6px;height:6px;right:0;bottom:0;z-index:101}.x-resizable-handle-northwest{width:6px;height:6px;left:0;top:0;z-index:101}.x-resizable-handle-northeast{width:6px;height:6px;right:0;top:0;z-index:101}.x-resizable-handle-southwest{width:6px;height:6px;left:0;bottom:0;z-index:101}.x-ie .x-resizable-handle-east{margin-right:-1px}.x-ie .x-resizable-handle-south{margin-bottom:-1px}.x-resizable-pinned .x-resizable-handle,.x-resizable-over .x-resizable-handle{filter:alpha(opacity=100);opacity:1}.x-window .x-window-handle{filter:alpha(opacity=0);opacity:0}.x-window-collapsed .x-window-handle{display:none}.x-resizable-proxy{border:1px dashed #3b5a82;position:absolute;overflow:hidden;z-index:50000}.x-resizable-over .x-resizable-handle-east,.x-resizable-over .x-resizable-handle-west,.x-resizable-pinned .x-resizable-handle-east,.x-resizable-pinned .x-resizable-handle-west{background-image:url(images/sizer/e-handle.gif)}.x-resizable-over .x-resizable-handle-south,.x-resizable-over .x-resizable-handle-north,.x-resizable-pinned .x-resizable-handle-south,.x-resizable-pinned .x-resizable-handle-north{background-image:url(images/sizer/s-handle.gif)}.x-resizable-over .x-resizable-handle-southeast,.x-resizable-pinned .x-resizable-handle-southeast{background-position:top left;background-image:url(images/sizer/se-handle.gif)}.x-resizable-over .x-resizable-handle-northwest,.x-resizable-pinned .x-resizable-handle-northwest{background-position:bottom right;background-image:url(images/sizer/nw-handle.gif)}.x-resizable-over .x-resizable-handle-northeast,.x-resizable-pinned .x-resizable-handle-northeast{background-position:bottom left;background-image:url(images/sizer/ne-handle.gif)}.x-resizable-over .x-resizable-handle-southwest,.x-resizable-pinned .x-resizable-handle-southwest{background-position:top right;background-image:url(images/sizer/sw-handle.gif)}.x-slider-horz{padding-left:7px;background:no-repeat 0 -15px}.x-slider-horz .x-slider-end{padding-right:7px;background:no-repeat right -30px}.x-slider-horz .x-slider-inner{height:15px}.x-ie6 .x-form-item .x-slider-horz,.x-ie7 .x-form-item .x-slider-horz,.x-quirks .x-ie .x-form-item .x-slider-horz{margin-top:4px}.x-slider-horz .x-slider-thumb{width:14px;height:15px;margin-left:-7px;background-image:url(images/slider/slider-thumb.png)}.x-slider-horz .x-slider-thumb-over{background-position:-14px -15px}.x-slider-horz .x-slider-thumb-drag{background-position:-28px -30px}.x-rtl.x-slider-horz{padding-left:0;padding-right:7px;background-position:right -30px}.x-rtl.x-slider-horz .x-slider-end{padding-right:0;padding-left:7px;background-position:left -15px}.x-rtl.x-slider-horz .x-slider-thumb{margin-right:-7px}.x-slider-vert{padding-top:7px;background:no-repeat -30px 0}.x-slider-vert .x-slider-end{padding-bottom:7px;background:no-repeat -15px bottom;width:15px}.x-slider-vert .x-slider-inner{width:15px}.x-slider-vert .x-slider-thumb{width:15px;height:14px;margin-bottom:-7px;background-image:url(images/slider/slider-v-thumb.png)}.x-slider-vert .x-slider-thumb-over{background-position:-15px -14px}.x-slider-vert .x-slider-thumb-drag{background-position:-30px -28px}.x-slider-horz,.x-slider-horz .x-slider-end,.x-slider-horz .x-slider-inner{background-image:url(images/slider/slider-bg.png)}.x-slider-vert,.x-slider-vert .x-slider-end,.x-slider-vert .x-slider-inner{background-image:url(images/slider/slider-v-bg.png)}.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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#eaeaea;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dcdcdc),color-stop(100%,#eaeaea));background-image:-webkit-linear-gradient(top,#dcdcdc,#eaeaea);background-image:-moz-linear-gradient(top,#dcdcdc,#eaeaea);background-image:-o-linear-gradient(top,#dcdcdc,#eaeaea);background-image:linear-gradient(top,#dcdcdc,#eaeaea)}.x-tab-default-top-mc{background-image:url(images/tab/tab-default-top-fbg.gif);background-position:0 top;background-color:#eaeaea}.x-nlg .x-tab-default-top{background-image:url(images/tab/tab-default-top-bg.gif);background-position:0 top}.x-nbr .x-tab-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-tab-default-top-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x-tab-default-top-tl{background-position:0 -8px}.x-tab-default-top-tr{background-position:right -12px}.x-tab-default-top-bl{background-position:0 -16px}.x-tab-default-top-br{background-position:right -20px}.x-tab-default-top-ml{background-position:0 top}.x-tab-default-top-mr{background-position:right top}.x-tab-default-top-tc{background-position:0 0}.x-tab-default-top-bc{background-position:0 -4px}.x-tab-default-top-tr,.x-tab-default-top-br,.x-tab-default-top-mr{padding-right:4px}.x-tab-default-top-tl,.x-tab-default-top-bl,.x-tab-default-top-ml{padding-left:4px}.x-tab-default-top-tc{height:4px}.x-tab-default-top-bc{height:0}.x-tab-default-top-tl,.x-tab-default-top-bl,.x-tab-default-top-tr,.x-tab-default-top-br,.x-tab-default-top-tc,.x-tab-default-top-bc,.x-tab-default-top-ml,.x-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-top-ml,.x-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif)}.x-tab-default-top-mc{padding:0 6px 3px 6px}.x-strict .x-ie7 .x-tab-default-top-tl,.x-strict .x-ie7 .x-tab-default-top-bl{position:relative;right:0}.x-tab-default-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.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:3px 9px 3px 9px;border-width:0 1px 1px 1px;border-style:solid;background-image:none;background-color:#eaeaea;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#dcdcdc),color-stop(100%,#eaeaea));background-image:-webkit-linear-gradient(bottom,#dcdcdc,#eaeaea);background-image:-moz-linear-gradient(bottom,#dcdcdc,#eaeaea);background-image:-o-linear-gradient(bottom,#dcdcdc,#eaeaea);background-image:linear-gradient(bottom,#dcdcdc,#eaeaea)}.x-tab-default-bottom-mc{background-image:url(images/tab/tab-default-bottom-fbg.gif);background-position:0 top;background-color:#eaeaea}.x-nlg .x-tab-default-bottom{background-image:url(images/tab/tab-default-bottom-bg.gif);background-position:0 top}.x-nbr .x-tab-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-tab-default-bottom-frameInfo{font-family:th-0-0-4-4-0-1-1-1-3-9-3-9}.x-tab-default-bottom-tl{background-position:0 -8px}.x-tab-default-bottom-tr{background-position:right -12px}.x-tab-default-bottom-bl{background-position:0 -16px}.x-tab-default-bottom-br{background-position:right -20px}.x-tab-default-bottom-ml{background-position:0 top}.x-tab-default-bottom-mr{background-position:right top}.x-tab-default-bottom-tc{background-position:0 0}.x-tab-default-bottom-bc{background-position:0 -4px}.x-tab-default-bottom-tr,.x-tab-default-bottom-br,.x-tab-default-bottom-mr{padding-right:4px}.x-tab-default-bottom-tl,.x-tab-default-bottom-bl,.x-tab-default-bottom-ml{padding-left:4px}.x-tab-default-bottom-tc{height:0}.x-tab-default-bottom-bc{height:4px}.x-tab-default-bottom-tl,.x-tab-default-bottom-bl,.x-tab-default-bottom-tr,.x-tab-default-bottom-br,.x-tab-default-bottom-tc,.x-tab-default-bottom-bc,.x-tab-default-bottom-ml,.x-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-corners.gif)}.x-tab-default-bottom-ml,.x-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-sides.gif)}.x-tab-default-bottom-mc{padding:3px 6px 0 6px}.x-strict .x-ie7 .x-tab-default-bottom-tl,.x-strict .x-ie7 .x-tab-default-bottom-bl{position:relative;right:0}.x-tab-default-bottom:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-bottom-fbg.gif), bg:url(images/tab/tab-default-bottom-bg.gif), corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"}.x-tab-default-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: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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#eaeaea;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dcdcdc),color-stop(100%,#eaeaea));background-image:-webkit-linear-gradient(top,#dcdcdc,#eaeaea);background-image:-moz-linear-gradient(top,#dcdcdc,#eaeaea);background-image:-o-linear-gradient(top,#dcdcdc,#eaeaea);background-image:linear-gradient(top,#dcdcdc,#eaeaea)}.x-tab-default-left-mc{background-image:url(images/tab/tab-default-top-fbg.gif);background-position:0 top;background-color:#eaeaea}.x-nlg .x-tab-default-left{background-image:url(images/tab/tab-default-top-bg.gif);background-position:0 top}.x-nbr .x-tab-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-tab-default-left-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x-tab-default-left-tl{background-position:0 -8px}.x-tab-default-left-tr{background-position:right -12px}.x-tab-default-left-bl{background-position:0 -16px}.x-tab-default-left-br{background-position:right -20px}.x-tab-default-left-ml{background-position:0 top}.x-tab-default-left-mr{background-position:right top}.x-tab-default-left-tc{background-position:0 0}.x-tab-default-left-bc{background-position:0 -4px}.x-tab-default-left-tr,.x-tab-default-left-br,.x-tab-default-left-mr{padding-right:4px}.x-tab-default-left-tl,.x-tab-default-left-bl,.x-tab-default-left-ml{padding-left:4px}.x-tab-default-left-tc{height:4px}.x-tab-default-left-bc{height:0}.x-tab-default-left-tl,.x-tab-default-left-bl,.x-tab-default-left-tr,.x-tab-default-left-br,.x-tab-default-left-tc,.x-tab-default-left-bc,.x-tab-default-left-ml,.x-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-left-ml,.x-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif)}.x-tab-default-left-mc{padding:0 6px 3px 6px}.x-strict .x-ie7 .x-tab-default-left-tl,.x-strict .x-ie7 .x-tab-default-left-bl{position:relative;right:0}.x-tab-default-left:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x-tab-default-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: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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#eaeaea;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dcdcdc),color-stop(100%,#eaeaea));background-image:-webkit-linear-gradient(top,#dcdcdc,#eaeaea);background-image:-moz-linear-gradient(top,#dcdcdc,#eaeaea);background-image:-o-linear-gradient(top,#dcdcdc,#eaeaea);background-image:linear-gradient(top,#dcdcdc,#eaeaea)}.x-tab-default-right-mc{background-image:url(images/tab/tab-default-top-fbg.gif);background-position:0 top;background-color:#eaeaea}.x-nlg .x-tab-default-right{background-image:url(images/tab/tab-default-top-bg.gif);background-position:0 top}.x-nbr .x-tab-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-tab-default-right-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x-tab-default-right-tl{background-position:0 -8px}.x-tab-default-right-tr{background-position:right -12px}.x-tab-default-right-bl{background-position:0 -16px}.x-tab-default-right-br{background-position:right -20px}.x-tab-default-right-ml{background-position:0 top}.x-tab-default-right-mr{background-position:right top}.x-tab-default-right-tc{background-position:0 0}.x-tab-default-right-bc{background-position:0 -4px}.x-tab-default-right-tr,.x-tab-default-right-br,.x-tab-default-right-mr{padding-right:4px}.x-tab-default-right-tl,.x-tab-default-right-bl,.x-tab-default-right-ml{padding-left:4px}.x-tab-default-right-tc{height:4px}.x-tab-default-right-bc{height:0}.x-tab-default-right-tl,.x-tab-default-right-bl,.x-tab-default-right-tr,.x-tab-default-right-br,.x-tab-default-right-tc,.x-tab-default-right-bc,.x-tab-default-right-ml,.x-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-right-ml,.x-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif)}.x-tab-default-right-mc{padding:0 6px 3px 6px}.x-strict .x-ie7 .x-tab-default-right-tl,.x-strict .x-ie7 .x-tab-default-right-bl{position:relative;right:0}.x-tab-default-right:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x-tab-default{border-color:#b5b5b5;margin:0 0 0 2px;cursor:pointer}.x-tab-default .x-tab-inner{font-size:11px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;color:#6f6f6f;line-height:13px}.x-tab-default .x-tab-icon-el{width:16px;height:16px;line-height:16px;background-position:center center}.x-tab-default .x-tab-glyph{font-size:16px;color:#6f6f6f;opacity:.5}.x-ie8m .x-tab-default .x-tab-glyph{color:#acacac}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default{padding-left:0}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-button{padding-left:9px}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-icon-el{left:9px}.x-tab-default-icon .x-tab-inner{width:16px}.x-rtl.x-tab-default{margin:0 2px 0 0}.x-rtl.x-tab-default{margin:0 2px 0 0}.x-tab-default-left{margin:0 2px 0 0}.x-rtl.x-tab-default-left{margin:0 0 0 2px}.x-tab-default-top,.x-tab-default-left,.x-tab-default-right{border-bottom:1px solid #d0d0d0;background-image:none;background-color:#eaeaea;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dcdcdc),color-stop(100%,#eaeaea));background-image:-webkit-linear-gradient(top,#dcdcdc,#eaeaea);background-image:-moz-linear-gradient(top,#dcdcdc,#eaeaea);background-image:-o-linear-gradient(top,#dcdcdc,#eaeaea);background-image:linear-gradient(top,#dcdcdc,#eaeaea);-webkit-box-shadow:white 0 1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;-moz-box-shadow:white 0 1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;box-shadow:white 0 1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset}.x-nlg .x-tab-default-top,.x-nlg .x-tab-default-left,.x-nlg .x-tab-default-right{background-image:url(images/tab/tab-default-top-bg.gif)}.x-tab-default-bottom{border-top:1px solid #d0d0d0;background-image:none;background-color:#eaeaea;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#dcdcdc),color-stop(100%,#eaeaea));background-image:-webkit-linear-gradient(bottom,#dcdcdc,#eaeaea);background-image:-moz-linear-gradient(bottom,#dcdcdc,#eaeaea);background-image:-o-linear-gradient(bottom,#dcdcdc,#eaeaea);background-image:linear-gradient(bottom,#dcdcdc,#eaeaea);-webkit-box-shadow:white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;-moz-box-shadow:white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;box-shadow:white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset}.x-nlg .x-tab-default-bottom{background-image:url(images/tab/tab-default-bottom-bg.gif)}.x-tab-default-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-tab-default-left{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.x-rtl.x-tab-default-left{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-rtl.x-tab-default-left{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.x-tab-default-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-tab-default-right{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.x-rtl.x-tab-default-right{-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-rtl.x-tab-default-right{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.x-tab-default-icon-text-left .x-tab-inner{padding-left:20px}.x-rtl.x-tab-default-icon-text-left .x-tab-inner{padding-left:0;padding-right:20px}.x-tab-default-over{background-color:#f2eeee}.x-tab-default-over .x-tab-glyph{color:#6f6f6f}.x-ie8m .x-tab-default-over .x-tab-glyph{color:#b0aeae}.x-tab-default-top-over,.x-tab-default-left-over,.x-tab-default-right-over{background-image:none;background-color:#f2eeee;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(100%,#f0f0f0));background-image:-webkit-linear-gradient(top,#fff,#f0f0f0);background-image:-moz-linear-gradient(top,#fff,#f0f0f0);background-image:-o-linear-gradient(top,#fff,#f0f0f0);background-image:linear-gradient(top,#fff,#f0f0f0)}.x-nlg .x-tab-default-top-over,.x-nlg .x-tab-default-left-over,.x-nlg .x-tab-default-right-over{background-image:url(images/tab/tab-default-top-over-bg.gif)}.x-tab-default-bottom-over{background-image:none;background-color:#f2eeee;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#fff),color-stop(100%,#f0f0f0));background-image:-webkit-linear-gradient(bottom,#fff,#f0f0f0);background-image:-moz-linear-gradient(bottom,#fff,#f0f0f0);background-image:-o-linear-gradient(bottom,#fff,#f0f0f0);background-image:linear-gradient(bottom,#fff,#f0f0f0)}.x-nlg .x-tab-default-bottom-over{background-image:url(images/tab/tab-default-bottom-over-bg.gif)}.x-tab-default-active{background-color:#eaeaea}.x-tab-default-active .x-tab-inner{color:#333}.x-tab-default-active .x-tab-glyph{color:#333}.x-ie8m .x-tab-default-active .x-tab-glyph{color:#8e8e8e}.x-tab-default-top-active,.x-tab-default-left-active,.x-tab-default-right-active{border-bottom:1px solid #eaeaea;background-image:none;background-color:#eaeaea;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(100%,#eaeaea));background-image:-webkit-linear-gradient(top,#fff,#eaeaea);background-image:-moz-linear-gradient(top,#fff,#eaeaea);background-image:-o-linear-gradient(top,#fff,#eaeaea);background-image:linear-gradient(top,#fff,#eaeaea)}.x-nlg .x-tab-default-top-active,.x-nlg .x-tab-default-left-active,.x-nlg .x-tab-default-right-active{background-image:url(images/tab/tab-default-top-active-bg.gif)}.x-tab-default-bottom-active{border-top:1px solid #eaeaea;background-image:none;background-color:#eaeaea;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#fff),color-stop(100%,#eaeaea));background-image:-webkit-linear-gradient(bottom,#fff,#eaeaea);background-image:-moz-linear-gradient(bottom,#fff,#eaeaea);background-image:-o-linear-gradient(bottom,#fff,#eaeaea);background-image:linear-gradient(bottom,#fff,#eaeaea)}.x-nlg .x-tab-default-bottom-active{background-image:url(images/tab/tab-default-bottom-active-bg.gif)}.x-tab-default-disabled{border-color:#dadada;cursor:default}.x-tab-default-disabled .x-tab-inner{color:#b7b7b7}.x-tab-default-disabled .x-tab-icon-el{filter:alpha(opacity=50);opacity:.5}.x-tab-default-disabled .x-tab-glyph{color:#b7b7b7;opacity:.3;filter:none}.x-ie8m .x-tab-default-disabled .x-tab-glyph{color:#ddd}.x-tab-default-top-disabled,.x-tab-default-left-disabled,.x-tab-default-right-disabled{border-color:#dadada #dadada #d0d0d0}.x-tab-default-bottom-disabled{border-color:#d0d0d0 #dadada #dadada #dadada}.x-tab-default-top-disabled,.x-tab-default-left-disabled,.x-tab-default-right-disabled{background-image:none;background-color:#eee;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#eee),color-stop(100%,#f4f4f4));background-image:-webkit-linear-gradient(top,#eee,#f4f4f4);background-image:-moz-linear-gradient(top,#eee,#f4f4f4);background-image:-o-linear-gradient(top,#eee,#f4f4f4);background-image:linear-gradient(top,#eee,#f4f4f4)}.x-nlg .x-tab-default-top-disabled,.x-nlg .x-tab-default-left-disabled,.x-nlg .x-tab-default-right-disabled{background-image:url(images/tab/tab-default-top-disabled-bg.gif)}.x-tab-default-bottom-disabled{background-image:none;background-color:#eee;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#eee),color-stop(100%,#f4f4f4));background-image:-webkit-linear-gradient(bottom,#eee,#f4f4f4);background-image:-moz-linear-gradient(bottom,#eee,#f4f4f4);background-image:-o-linear-gradient(bottom,#eee,#f4f4f4);background-image:linear-gradient(bottom,#eee,#f4f4f4)}.x-nlg .x-tab-default-bottom-disabled{background-image:url(images/tab/tab-default-bottom-disabled-bg.gif)}.x-nbr .x-tab-default{background-image:none}.x-tab-default-top-over .x-frame-tl,.x-tab-default-top-over .x-frame-bl,.x-tab-default-top-over .x-frame-tr,.x-tab-default-top-over .x-frame-br,.x-tab-default-top-over .x-frame-tc,.x-tab-default-top-over .x-frame-bc,.x-tab-default-left-over .x-frame-tl,.x-tab-default-left-over .x-frame-bl,.x-tab-default-left-over .x-frame-tr,.x-tab-default-left-over .x-frame-br,.x-tab-default-left-over .x-frame-tc,.x-tab-default-left-over .x-frame-bc,.x-tab-default-right-over .x-frame-tl,.x-tab-default-right-over .x-frame-bl,.x-tab-default-right-over .x-frame-tr,.x-tab-default-right-over .x-frame-br,.x-tab-default-right-over .x-frame-tc,.x-tab-default-right-over .x-frame-bc{background-image:url(images/tab/tab-default-top-over-corners.gif)}.x-tab-default-top-over .x-frame-ml,.x-tab-default-top-over .x-frame-mr,.x-tab-default-left-over .x-frame-ml,.x-tab-default-left-over .x-frame-mr,.x-tab-default-right-over .x-frame-ml,.x-tab-default-right-over .x-frame-mr{background-image:url(images/tab/tab-default-top-over-sides.gif)}.x-tab-default-top-over .x-frame-mc,.x-tab-default-left-over .x-frame-mc,.x-tab-default-right-over .x-frame-mc{background-color:#f2eeee;background-repeat:repeat-x;background-image:url(images/tab/tab-default-top-over-fbg.gif)}.x-tab-default-bottom-over .x-frame-tl,.x-tab-default-bottom-over .x-frame-bl,.x-tab-default-bottom-over .x-frame-tr,.x-tab-default-bottom-over .x-frame-br,.x-tab-default-bottom-over .x-frame-tc,.x-tab-default-bottom-over .x-frame-bc{background-image:url(images/tab/tab-default-bottom-over-corners.gif)}.x-tab-default-bottom-over .x-frame-ml,.x-tab-default-bottom-over .x-frame-mr{background-image:url(images/tab/tab-default-bottom-over-sides.gif)}.x-tab-default-bottom-over .x-frame-mc{background-color:#f2eeee;background-repeat:repeat-x;background-image:url(images/tab/tab-default-bottom-over-fbg.gif)}.x-tab-default-top-active .x-frame-tl,.x-tab-default-top-active .x-frame-bl,.x-tab-default-top-active .x-frame-tr,.x-tab-default-top-active .x-frame-br,.x-tab-default-top-active .x-frame-tc,.x-tab-default-top-active .x-frame-bc,.x-tab-default-left-active .x-frame-tl,.x-tab-default-left-active .x-frame-bl,.x-tab-default-left-active .x-frame-tr,.x-tab-default-left-active .x-frame-br,.x-tab-default-left-active .x-frame-tc,.x-tab-default-left-active .x-frame-bc,.x-tab-default-right-active .x-frame-tl,.x-tab-default-right-active .x-frame-bl,.x-tab-default-right-active .x-frame-tr,.x-tab-default-right-active .x-frame-br,.x-tab-default-right-active .x-frame-tc,.x-tab-default-right-active .x-frame-bc{background-image:url(images/tab/tab-default-top-active-corners.gif)}.x-tab-default-top-active .x-frame-ml,.x-tab-default-top-active .x-frame-mr,.x-tab-default-left-active .x-frame-ml,.x-tab-default-left-active .x-frame-mr,.x-tab-default-right-active .x-frame-ml,.x-tab-default-right-active .x-frame-mr{background-image:url(images/tab/tab-default-top-active-sides.gif)}.x-tab-default-top-active .x-frame-mc,.x-tab-default-left-active .x-frame-mc,.x-tab-default-right-active .x-frame-mc{background-color:#eaeaea;background-repeat:repeat-x;background-image:url(images/tab/tab-default-top-active-fbg.gif)}.x-tab-default-bottom-active .x-frame-tl,.x-tab-default-bottom-active .x-frame-bl,.x-tab-default-bottom-active .x-frame-tr,.x-tab-default-bottom-active .x-frame-br,.x-tab-default-bottom-active .x-frame-tc,.x-tab-default-bottom-active .x-frame-bc{background-image:url(images/tab/tab-default-bottom-active-corners.gif)}.x-tab-default-bottom-active .x-frame-ml,.x-tab-default-bottom-active .x-frame-mr{background-image:url(images/tab/tab-default-bottom-active-sides.gif)}.x-tab-default-bottom-active .x-frame-mc{background-color:#eaeaea;background-repeat:repeat-x;background-image:url(images/tab/tab-default-bottom-active-fbg.gif)}.x-tab-default-top-disabled .x-frame-tl,.x-tab-default-top-disabled .x-frame-bl,.x-tab-default-top-disabled .x-frame-tr,.x-tab-default-top-disabled .x-frame-br,.x-tab-default-top-disabled .x-frame-tc,.x-tab-default-top-disabled .x-frame-bc,.x-tab-default-left-disabled .x-frame-tl,.x-tab-default-left-disabled .x-frame-bl,.x-tab-default-left-disabled .x-frame-tr,.x-tab-default-left-disabled .x-frame-br,.x-tab-default-left-disabled .x-frame-tc,.x-tab-default-left-disabled .x-frame-bc,.x-tab-default-right-disabled .x-frame-tl,.x-tab-default-right-disabled .x-frame-bl,.x-tab-default-right-disabled .x-frame-tr,.x-tab-default-right-disabled .x-frame-br,.x-tab-default-right-disabled .x-frame-tc,.x-tab-default-right-disabled .x-frame-bc{background-image:url(images/tab/tab-default-top-disabled-corners.gif)}.x-tab-default-top-disabled .x-frame-ml,.x-tab-default-top-disabled .x-frame-mr,.x-tab-default-left-disabled .x-frame-ml,.x-tab-default-left-disabled .x-frame-mr,.x-tab-default-right-disabled .x-frame-ml,.x-tab-default-right-disabled .x-frame-mr{background-image:url(images/tab/tab-default-top-disabled-sides.gif)}.x-tab-default-top-disabled .x-frame-mc,.x-tab-default-left-disabled .x-frame-mc,.x-tab-default-right-disabled .x-frame-mc{background-color:#eee;background-repeat:repeat-x;background-image:url(images/tab/tab-default-top-disabled-fbg.gif)}.x-tab-default-bottom-disabled .x-frame-tl,.x-tab-default-bottom-disabled .x-frame-bl,.x-tab-default-bottom-disabled .x-frame-tr,.x-tab-default-bottom-disabled .x-frame-br,.x-tab-default-bottom-disabled .x-frame-tc,.x-tab-default-bottom-disabled .x-frame-bc{background-image:url(images/tab/tab-default-bottom-disabled-corners.gif)}.x-tab-default-bottom-disabled .x-frame-ml,.x-tab-default-bottom-disabled .x-frame-mr{background-image:url(images/tab/tab-default-bottom-disabled-sides.gif)}.x-tab-default-bottom-disabled .x-frame-mc{background-color:#eee;background-repeat:repeat-x;background-image:url(images/tab/tab-default-bottom-disabled-fbg.gif)}.x-nbr .x-tab-default-top,.x-nbr .x-tab-default-left,.x-nbr .x-tab-default-right{border-bottom-width:1px!important}.x-nbr .x-tab-default-bottom{border-top-width:1px!important}.x-tab-default .x-tab-close-btn{width:11px;height:11px;background-image:url(images/tab/tab-default-close.gif);filter:alpha(opacity=60);opacity:.6}.x-tab-default .x-tab-close-btn-over{filter:alpha(opacity=100);opacity:1}.x-tab-default .x-tab-close-btn{top:2px;right:2px}.x-rtl.x-tab-default .x-tab-close-btn{right:auto;left:2px}.x-tab-default-disabled .x-tab-close-btn{filter:alpha(opacity=30);opacity:.3}.x-tab-default-closable .x-tab-wrap{padding-right:14px}.x-rtl.x-tab-default-closable .x-tab-wrap{padding-right:0;padding-left:14px}.x-tab-default-top-over:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-top-over-bg.gif), corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif), frame-bg:url(images/tab/tab-default-top-over-fbg.gif)"}.x-tab-default-bottom-over:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-bottom-over-bg.gif), corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif), frame-bg:url(images/tab/tab-default-bottom-over-fbg.gif)"}.x-tab-default-top-active:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-top-active-bg.gif), corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif), frame-bg:url(images/tab/tab-default-top-active-fbg.gif)"}.x-tab-default-bottom-active:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-bottom-active-bg.gif), corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif), frame-bg:url(images/tab/tab-default-bottom-active-fbg.gif)"}.x-tab-default-top-disabled:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-top-disabled-bg.gif), corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif), frame-bg:url(images/tab/tab-default-top-disabled-fbg.gif)"}.x-tab-default-bottom-disabled:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-bottom-disabled-bg.gif), corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif), frame-bg:url(images/tab/tab-default-bottom-disabled-fbg.gif)"}.x-tab-bar-default{border-style:solid;border-color:#d0d0d0}.x-tab-bar-default-top{padding:1px 0 0;border-width:1px 1px 0}.x-tab-bar-default-bottom{padding:0 0 1px 0;border-width:0 1px 1px 1px}.x-tab-bar-default-left{padding:0 0 0 1px;border-width:1px 0 1px 1px}.x-rtl.x-tab-bar-default-left{padding:0 1px 0 0;border-width:1px 1px 1px 0}.x-tab-bar-default-right{padding:0 1px 0 0;border-width:1px 1px 1px 0}.x-rtl.x-tab-bar-default-right{padding:0 0 0 1px;border-width:1px 0 1px 1px}.x-tab-bar-default-horizontal{height:25px}.x-content-box .x-tab-bar-default-horizontal{height:23px}.x-tab-bar-default-vertical{width:25px}.x-content-box .x-tab-bar-default-vertical{width:23px}.x-tab-bar-body-default-top{padding-bottom:2px}.x-tab-bar-body-default-bottom{padding-top:2px}.x-tab-bar-body-default-left{padding-right:2px}.x-rtl.x-tab-bar-body-default-left{padding-right:0;padding-left:2px}.x-tab-bar-body-default-right{padding-left:2px}.x-rtl.x-tab-bar-body-default-right{padding-left:0;padding-right:2px}.x-tab-bar-strip-default{border-style:solid;border-color:#d0d0d0;background-color:#eaeaea}.x-content-box .x-tab-bar-strip-default-horizontal{height:2px}.x-content-box .x-tab-bar-strip-default-vertical{width:2px}.x-tab-bar-strip-default-top{border-width:1px 0 0 0;height:3px}.x-tab-bar-plain .x-tab-bar-strip-default-top{border-width:1px 1px 0}.x-tab-bar-strip-default-bottom{border-width:0 0 1px 0;height:3px}.x-tab-bar-plain .x-tab-bar-strip-default-bottom{border-width:0 1px 1px 1px}.x-tab-bar-strip-default-left{border-width:0 0 0 1px;width:3px}.x-tab-bar-plain .x-tab-bar-strip-default-left{border-width:1px 0 1px 1px}.x-rtl.x-tab-bar-strip-default-left{border-width:0 1px 0 0}.x-tab-bar-plain .x-rtl.x-tab-bar-strip-default-left{border-width:1px 1px 1px 0}.x-tab-bar-strip-default-right{border-width:0 1px 0 0;width:3px}.x-tab-bar-plain .x-tab-bar-strip-default-right{border-width:1px 1px 1px 0}.x-rtl.x-tab-bar-strip-default-right{border-width:0 0 0 1px}.x-tab-bar-plain .x-rtl.x-tab-bar-strip-default-right{border-width:1px 0 1px 1px}.x-tab-bar-default{background-color:#d2d2d2}.x-tab-bar-default-top{background-image:none;background-color:#d2d2d2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dfdede),color-stop(100%,#d2d2d2));background-image:-webkit-linear-gradient(top,#dfdede,#d2d2d2);background-image:-moz-linear-gradient(top,#dfdede,#d2d2d2);background-image:-o-linear-gradient(top,#dfdede,#d2d2d2);background-image:linear-gradient(top,#dfdede,#d2d2d2)}.x-nlg .x-tab-bar-default-top{background:url(images/tab-bar/tab-bar-default-top-bg.gif)}.x-tab-bar-default-bottom{background-image:none;background-color:#d2d2d2;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#dfdede),color-stop(100%,#d2d2d2));background-image:-webkit-linear-gradient(bottom,#dfdede,#d2d2d2);background-image:-moz-linear-gradient(bottom,#dfdede,#d2d2d2);background-image:-o-linear-gradient(bottom,#dfdede,#d2d2d2);background-image:linear-gradient(bottom,#dfdede,#d2d2d2)}.x-nlg .x-tab-bar-default-bottom{background:url(images/tab-bar/tab-bar-default-bottom-bg.gif) bottom 0}.x-tab-bar-default-left{background-image:none;background-color:#d2d2d2;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dfdede),color-stop(100%,#d2d2d2));background-image:-webkit-linear-gradient(left,#dfdede,#d2d2d2);background-image:-moz-linear-gradient(left,#dfdede,#d2d2d2);background-image:-o-linear-gradient(left,#dfdede,#d2d2d2);background-image:linear-gradient(left,#dfdede,#d2d2d2)}.x-nlg .x-tab-bar-default-left{background:url(images/tab-bar/tab-bar-default-left-bg.gif)}.x-tab-bar-default-right{background-image:none;background-color:#d2d2d2;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dfdede),color-stop(100%,#d2d2d2));background-image:-webkit-linear-gradient(right,#dfdede,#d2d2d2);background-image:-moz-linear-gradient(right,#dfdede,#d2d2d2);background-image:-o-linear-gradient(right,#dfdede,#d2d2d2);background-image:linear-gradient(right,#dfdede,#d2d2d2)}.x-nlg .x-tab-bar-default-right{background:url(images/tab-bar/tab-bar-default-right-bg.gif) 0 right}.x-tab-bar-default .x-box-scroller{cursor:pointer}.x-tab-bar-default .x-tabbar-scroll-left,.x-tab-bar-default .x-tabbar-scroll-right{height:20px;width:18px}.x-tab-bar-default .x-tabbar-scroll-top,.x-tab-bar-default .x-tabbar-scroll-bottom{width:20px;height:18px}.x-tab-bar-default-bottom .x-box-scroller{margin-top:1px}.x-tab-bar-default-right .x-box-scroller{margin-left:1px}.x-rtl.x-tab-bar-default-right .x-box-scroller{margin-left:0;margin-right:1px}.x-tab-bar-default-top .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-left-top.gif)}.x-tab-bar-default-top .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-right-top.gif)}.x-rtl.x-tab-bar-default-top .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-right-top.gif)}.x-rtl.x-tab-bar-default-top .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-left-top.gif)}.x-tab-bar-default-bottom .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-left-bottom.gif)}.x-tab-bar-default-bottom .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-right-bottom.gif)}.x-rtl.x-tab-bar-default-bottom .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-right-bottom.gif)}.x-rtl.x-tab-bar-default-bottom .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-left-bottom.gif)}.x-tab-bar-default-left .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-left.gif)}.x-tab-bar-default-left .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-left.gif)}.x-rtl.x-tab-bar-default-left .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-right.gif)}.x-rtl.x-tab-bar-default-left .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-right.gif)}.x-tab-bar-default-right .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-right.gif)}.x-tab-bar-default-right .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-right.gif)}.x-rtl.x-tab-bar-default-right .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-left.gif)}.x-rtl.x-tab-bar-default-right .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-left.gif)}.x-tab-bar-default .x-tabbar-scroll-left-hover,.x-tab-bar-default .x-tabbar-scroll-right-hover{background-position:-18px 0}.x-tab-bar-default .x-tabbar-scroll-top-hover,.x-tab-bar-default .x-tabbar-scroll-bottom-hover{background-position:0 -18px}.x-tab-bar-default .x-box-scroller-disabled{filter:alpha(opacity=50);opacity:.5;cursor:default}.x-tab-bar-default-top:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-top-bg.gif), stretch:bottom"}.x-tab-bar-default-bottom:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-bottom-bg.gif), stretch:top"}.x-tab-bar-default-left:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-left-bg.gif), stretch:right"}.x-tab-bar-default-right:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-right-bg.gif), stretch:left"}.x-tab-bar-plain{border-width:0;padding:0;height:23px}.x-column-header-checkbox{border-color:#c5c5c5}.x-grid-row-checker,.x-column-header-checkbox .x-column-header-text{height:13px;width:13px;background-image:url(images/form/checkbox.gif);line-height:13px}.x-column-header-checkbox .x-column-header-inner{padding:5px 5px 4px 5px}.x-grid-cell-row-checker .x-grid-cell-inner{padding:4px 5px 3px 5px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-row-checker .x-grid-cell-inner{padding-top:3px;padding-bottom:2px}.x-grid-hd-checker-on .x-column-header-text,.x-grid-row-selected .x-grid-row-checker,.x-grid-row-checked .x-grid-row-checker{background-position:0 -13px}.x-tree-expander{cursor:pointer}.x-tree-arrows .x-tree-expander{background-image:url(images/tree/arrows.gif)}.x-tree-arrows .x-tree-expander-over .x-tree-expander{background-position:-32px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander{background-position:-16px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander{background-position:-48px center}.x-tree-arrows .x-rtl.x-tree-expander{background:url(images/tree/arrows-rtl.gif) no-repeat -48px center}.x-tree-arrows .x-tree-expander-over .x-rtl.x-tree-expander{background-position:-16px center}.x-tree-arrows .x-grid-tree-node-expanded .x-rtl.x-tree-expander{background-position:-32px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-rtl.x-tree-expander{background-position:0 center}.x-tree-lines .x-tree-elbow{background-image:url(images/tree/elbow.gif)}.x-tree-lines .x-tree-elbow-end{background-image:url(images/tree/elbow-end.gif)}.x-tree-lines .x-tree-elbow-plus{background-image:url(images/tree/elbow-plus.gif)}.x-tree-lines .x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-plus.gif)}.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus{background-image:url(images/tree/elbow-minus.gif)}.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-minus.gif)}.x-tree-lines .x-tree-elbow-line{background-image:url(images/tree/elbow-line.gif)}.x-tree-lines .x-rtl.x-tree-elbow{background-image:url(images/tree/elbow-rtl.gif)}.x-tree-lines .x-rtl.x-tree-elbow-end{background-image:url(images/tree/elbow-end-rtl.gif)}.x-tree-lines .x-rtl.x-tree-elbow-plus{background-image:url(images/tree/elbow-plus-rtl.gif)}.x-tree-lines .x-rtl.x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-plus-rtl.gif)}.x-tree-lines .x-grid-tree-node-expanded .x-rtl.x-tree-elbow-plus{background-image:url(images/tree/elbow-minus-rtl.gif)}.x-tree-lines .x-grid-tree-node-expanded .x-rtl.x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-minus-rtl.gif)}.x-tree-lines .x-rtl.x-tree-elbow-line{background-image:url(images/tree/elbow-line-rtl.gif)}.x-tree-no-row-lines .x-tree-expander{background-image:url(images/tree/elbow-plus-nl.gif)}.x-tree-no-row-lines .x-grid-tree-node-expanded .x-tree-expander{background-image:url(images/tree/elbow-minus-nl.gif)}.x-tree-no-row-lines .x-rtl.x-tree-expander{background-image:url(images/tree/elbow-plus-nl-rtl.gif)}.x-tree-no-row-lines .x-grid-tree-node-expanded .x-rtl.x-tree-expander{background-image:url(images/tree/elbow-minus-nl-rtl.gif)}.x-tree-icon{width:16px;height:20px}.x-tree-elbow-img{width:16px;height:20px;margin-right:0}.x-rtl.x-tree-elbow-img{margin-right:0;margin-left:0}.x-tree-icon,.x-tree-elbow-img,.x-tree-checkbox{margin-top:-3px;margin-bottom:-4px}.x-tree-icon-leaf{background-image:url(images/tree/leaf.gif)}.x-rtl.x-tree-icon-leaf{background-image:url(images/tree/leaf-rtl.gif)}.x-tree-icon-parent{background-image:url(images/tree/folder.gif)}.x-rtl.x-tree-icon-parent{background-image:url(images/tree/folder-rtl.gif)}.x-grid-tree-node-expanded .x-tree-icon-parent{background-image:url(images/tree/folder-open.gif)}.x-grid-tree-node-expanded .x-rtl.x-tree-icon-parent{background-image:url(images/tree/folder-open-rtl.gif)}.x-tree-checkbox{margin-right:3px;top:4px;width:13px;height:13px;background-image:url(images/form/checkbox.gif)}.x-rtl.x-tree-checkbox{margin-right:0;margin-left:3px}.x-tree-checkbox-checked{background-position:0 -13px}.x-grid-tree-loading .x-tree-icon{background-image:url(images/tree/loading.gif)}.x-grid-tree-loading .x-rtl.x-tree-icon{background-image:url(images/tree/loading.gif)}.x-grid-cell-inner-treecolumn{font-size:1px;line-height:0}.x-tree-node-text{font-size:11px;line-height:13px;padding-left:3px}.x-rtl.x-tree-node-text{padding-left:0;padding-right:3px}.x-grid-cell-inner-treecolumn{padding:3px 6px 4px 0}.x-tree-drop-ok-append .x-dd-drop-icon{background-image:url(images/tree/drop-append.gif)}.x-tree-drop-ok-above .x-dd-drop-icon{background-image:url(images/tree/drop-above.gif)}.x-tree-drop-ok-below .x-dd-drop-icon{background-image:url(images/tree/drop-below.gif)}.x-tree-drop-ok-between .x-dd-drop-icon{background-image:url(images/tree/drop-between.gif)}.x-tree-ddindicator{height:1px;border-width:1px 0 0;border-style:dotted;border-color:green}.x-box-tl{background:transparent no-repeat 0 0;zoom:1}.x-box-tc{height:8px;background:transparent repeat-x 0 0;overflow:hidden}.x-box-tr{background:transparent no-repeat right -8px}.x-box-ml{background:transparent repeat-y 0;padding-left:4px;overflow:hidden;zoom:1}.x-box-mc{background:repeat-x 0 -16px;padding:4px 10px}.x-box-mc h3{margin:0 0 4px 0;zoom:1}.x-box-mr{background:transparent repeat-y right;padding-right:4px;overflow:hidden}.x-box-bl{background:transparent no-repeat 0 -16px;zoom:1}.x-box-bc{background:transparent repeat-x 0 -8px;height:8px;overflow:hidden}.x-box-br{background:transparent no-repeat right -24px}.x-box-tl,.x-box-bl{padding-left:8px;overflow:hidden}.x-box-tr,.x-box-br{padding-right:8px;overflow:hidden}.x-box-tl{background-image:url(images/box/corners.gif)}.x-box-tc{background-image:url(images/box/tb.gif)}.x-box-tr{background-image:url(images/box/corners.gif)}.x-box-ml{background-image:url(images/box/l.gif)}.x-box-mc{background-color:#eee;background-image:url(images/box/tb.gif);font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:15px}.x-box-mc h3{font-size:18px;font-weight:bold}.x-box-mr{background-image:url(images/box/r.gif)}.x-box-bl{background-image:url(images/box/corners.gif)}.x-box-bc{background-image:url(images/box/tb.gif)}.x-box-br{background-image:url(images/box/corners.gif)}.x-box-blue .x-box-bl,.x-box-blue .x-box-br,.x-box-blue .x-box-tl,.x-box-blue .x-box-tr{background-image:url(images/box/corners-blue.gif)}.x-box-blue .x-box-bc,.x-box-blue .x-box-mc,.x-box-blue .x-box-tc{background-image:url(images/box/tb-blue.gif)}.x-box-blue .x-box-mc{background-color:#c3daf9}.x-box-blue .x-box-mc h3{color:#17385b}.x-box-blue .x-box-ml{background-image:url(images/box/l-blue.gif)}.x-box-blue .x-box-mr{background-image:url(images/box/r-blue.gif)}.x-rtl.x-toolbar-more-icon{background-image:url(images/toolbar/more-left.gif)!important}.x-message-box .x-msg-box-wait{background-image:url(images/shared/blue-loading.gif)}.x-form-trigger{height:22px}.x-content-box .x-form-trigger{height:21px}.x-field-toolbar .x-form-trigger{height:20px}.x-content-box .x-field-toolbar .x-form-trigger{height:19px}.x-content-box div.x-form-spinner-up,.x-content-box div.x-form-spinner-down{height:10px}.x-content-box .x-toolbar-item div.x-form-spinner-up,.x-content-box .x-toolbar-item div.x-form-spinner-down{height:9px}.x-html-editor-wrap .x-toolbar{border-left-color:#b5b8c8;border-top-color:#b5b8c8;border-right-color:#b5b8c8}.x-html-editor-input{border:1px solid #b5b8c8;border-top-width:0}.x-column-header-trigger{background-color:#c5c5c5;background-image:url(images/grid/grid3-hd-btn.gif)}.x-rtl.x-column-header-trigger{background-image:url(images/grid/grid3-hd-btn-left.gif)}.x-content-box .x-grid-editor .x-form-trigger{height:19px}.x-grid-editor .x-form-spinner-up,.x-grid-editor .x-form-spinner-down{background-image:url(images/form/spinner-small.gif)}.x-content-box .x-grid-editor .x-form-spinner-up,.x-content-box .x-grid-editor .x-form-spinner-down{height:9px}.x-grid-editor .x-rtl.x-form-trigger-wrap .x-form-spinner-up,.x-grid-editor .x-rtl.x-form-trigger-wrap .x-form-spinner-down{background-image:url(images/form/spinner-small-rtl.gif)}.x-accordion-hd{border-width:1px 0!important;-webkit-box-shadow:inset 0 0 0 0 #e5e5e5;-moz-box-shadow:inset 0 0 0 0 #e5e5e5;box-shadow:inset 0 0 0 0 #e5e5e5}.x-accordion-hd-sibling-expanded{-webkit-box-shadow:inset 0 1px 0 0 #ececec;-moz-box-shadow:inset 0 1px 0 0 #ececec;box-shadow:inset 0 1px 0 0 #ececec}.x-resizable-over .x-resizable-handle-east,.x-resizable-over .x-resizable-handle-west,.x-resizable-pinned .x-resizable-handle-east,.x-resizable-pinned .x-resizable-handle-west{background-position:left}.x-resizable-over .x-resizable-handle-south,.x-resizable-over .x-resizable-handle-north,.x-resizable-pinned .x-resizable-handle-south,.x-resizable-pinned .x-resizable-handle-north{background-position:top}.x-resizable-over .x-resizable-handle-southeast,.x-resizable-pinned .x-resizable-handle-southeast{background-position:top left}.x-resizable-over .x-resizable-handle-northwest,.x-resizable-pinned .x-resizable-handle-northwest{background-position:bottom right}.x-resizable-over .x-resizable-handle-northeast,.x-resizable-pinned .x-resizable-handle-northeast{background-position:bottom left}.x-resizable-over .x-resizable-handle-southwest,.x-resizable-pinned .x-resizable-handle-southwest{background-position:top right}.x-ie6 .x-slider-horz,.x-ie6 .x-slider-horz .x-slider-end,.x-ie6 .x-slider-horz .x-slider-inner{background-image:url(images/slider/slider-bg.gif)}.x-ie6 .x-slider-horz .x-slider-thumb{background-image:url(images/slider/slider-thumb.gif)}.x-ie6 .x-slider-vert,.x-ie6 .x-slider-vert .x-slider-end,.x-ie6 .x-slider-vert .x-slider-inner{background-image:url(images/slider/slider-v-bg.gif)}.x-ie6 .x-slider-vert .x-slider-thumb{background-image:url(images/slider/slider-v-thumb.gif)}.x-tab-icon-el{top:-1px}.x-tab-noicon .x-tab-icon{display:none} \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/ext-theme-gray-all.css b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/ext-theme-gray-all.css new file mode 100644 index 0000000..f28776f --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/ext-theme-gray-all.css @@ -0,0 +1 @@ +.x-body{margin:0}img{border:0}.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}.x-rtl{direction:rtl}.x-ltr{direction:ltr}.x-clear{overflow:hidden;clear:both;font-size:0;line-height:0;display:table}.x-strict .x-ie7 .x-clear{height:0;width:0}.x-layer{position:absolute!important;overflow:hidden;zoom:1}.x-fixed-layer{position:fixed!important;overflow:hidden;zoom:1}.x-shim{position:absolute;left:0;top:0;overflow:hidden;filter:alpha(opacity=0);opacity:0}.x-hide-display{display:none!important}.x-hide-visibility{visibility:hidden!important}.x-ie6 .x-item-disabled{filter:none}.x-hidden,.x-hide-offsets{display:block!important;visibility:hidden!important;position:absolute!important;top:-10000px!important}.x-hide-nosize{height:0!important;width:0!important}.x-hide-clip{position:absolute!important;clip:rect(0,0,0,0);clip:rect(0 0 0 0)}.x-masked-relative{position:relative}.x-ie-shadow{background-color:#777;display:none;position:absolute;overflow:hidden;zoom:1}.x-unselectable{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x-selectable{cursor:auto;-moz-user-select:text;-webkit-user-select:text;-ms-user-select:text;user-select:text;-o-user-select:text}.x-list-plain{list-style-type:none;margin:0;padding:0}.x-table-plain{border-collapse:collapse;border-spacing:0;font-size:1em}.x-frame-tl,.x-frame-tr,.x-frame-tc,.x-frame-bl,.x-frame-br,.x-frame-bc{overflow:hidden;background-repeat:no-repeat}.x-frame-tc,.x-frame-bc{background-repeat:repeat-x}.x-frame-mc{background-repeat:repeat-x;overflow:hidden}.x-proxy-el{position:absolute;background:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x-css-shadow{position:absolute;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px}.x-item-disabled,.x-item-disabled *{cursor:default}.x-box-item{position:absolute!important;left:0;top:0}div.x-editor{overflow:visible}.x-mask{z-index:100;position:absolute;width:100%;height:100%;zoom:1}.x-mask-shim{z-index:100;position:absolute;top:0;left:0;width:100%;height:100%}.x-mask-msg{z-index:20001;position:absolute}.x-progress{position:relative;border-style:solid;overflow:hidden}.x-progress-bar{overflow:hidden;position:absolute;width:0;height:100%}.x-progress-text{overflow:hidden;position:absolute}.x-btn{display:inline-block;position:relative;zoom:1;*display:inline;outline:0;cursor:pointer;white-space:nowrap;vertical-align:middle;text-decoration:none}.x-btn-wrap{position:relative;display:block}.x-btn-button{position:relative;display:block;text-decoration:none;overflow:hidden;zoom:1}.x-btn-inner{display:block;white-space:nowrap;overflow:hidden;zoom:1}.x-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x-btn-inner-center{text-align:center}.x-btn-inner-left{text-align:left}.x-btn-inner-right{text-align:right}.x-box-layout-ct{overflow:hidden;zoom:1}.x-box-target{position:absolute;width:20000px;top:0;left:0;height:1px}.x-box-inner{overflow:hidden;zoom:1;position:relative;left:0;top:0}.x-horizontal-box-overflow-body{float:left}.x-box-scroller{position:relative;background-repeat:no-repeat}.x-box-scroller-left,.x-box-scroller-right{float:left;height:100%;z-index:5}.x-box-scroller-top .x-box-scroller,.x-box-scroller-bottom .x-box-scroller{line-height:0;font-size:0;background-position:center 0}.x-box-menu-after{float:right}.x-toolbar-text{white-space:nowrap}.x-toolbar-separator{display:block;font-size:1px;overflow:hidden;cursor:default;border:0;width:0;height:0;line-height:0}.x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal{width:2px}.x-toolbar-scroller{padding-left:0}.x-toolbar-plain{border:0}.x-docked{position:absolute!important;z-index:1}.x-docked-vertical{position:static}.x-docked-top{border-bottom-width:0!important}.x-docked-bottom{border-top-width:0!important}.x-docked-left{border-right-width:0!important}.x-docked-right{border-left-width:0!important}.x-docked-noborder-top{border-top-width:0!important}.x-docked-noborder-right{border-right-width:0!important}.x-docked-noborder-bottom{border-bottom-width:0!important}.x-docked-noborder-left{border-left-width:0!important}.x-noborder-l{border-left-width:0!important}.x-noborder-b{border-bottom-width:0!important}.x-noborder-bl{border-bottom-width:0!important;border-left-width:0!important}.x-noborder-r{border-right-width:0!important}.x-noborder-rl{border-right-width:0!important;border-left-width:0!important}.x-noborder-rb{border-right-width:0!important;border-bottom-width:0!important}.x-noborder-rbl{border-right-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x-noborder-t{border-top-width:0!important}.x-noborder-tl{border-top-width:0!important;border-left-width:0!important}.x-noborder-tb{border-top-width:0!important;border-bottom-width:0!important}.x-noborder-tbl{border-top-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x-noborder-tr{border-top-width:0!important;border-right-width:0!important}.x-noborder-trl{border-top-width:0!important;border-right-width:0!important;border-left-width:0!important}.x-noborder-trb{border-top-width:0!important;border-right-width:0!important;border-bottom-width:0!important}.x-noborder-trbl{border-width:0!important}.x-header-icon{background-repeat:no-repeat;background-position:0 0;vertical-align:middle;text-align:center}.x-header-text-container{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.x-dd-drag-proxy,.x-dd-drag-current{z-index:1000000!important;pointer-events:none}.x-dd-drag-repair .x-dd-drag-ghost{filter:alpha(opacity=60);opacity:.6}.x-dd-drag-repair .x-dd-drop-icon{display:none}.x-dd-drag-ghost{filter:alpha(opacity=85);opacity:.85;padding:5px;padding-left:20px;white-space:nowrap;color:#000;font:normal 11px tahoma,arial,verdana,sans-serif;border:1px solid;border-color:#ddd #bbb #bbb #ddd;background-color:#fff}.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}.x-dd-drop-ok .x-dd-drop-icon{background-image:url(images/dd/drop-yes.gif)}.x-dd-drop-ok-add .x-dd-drop-icon{background-image:url(images/dd/drop-add.gif)}.x-dd-drop-nodrop div.x-dd-drop-icon{background-image:url(images/dd/drop-no.gif)}.x-panel,.x-plain{overflow:hidden;position:relative}.x-panel{outline:0}.x-ie .x-panel-header,.x-ie .x-panel-header-tl,.x-ie .x-panel-header-tc,.x-ie .x-panel-header-tr,.x-ie .x-panel-header-ml,.x-ie .x-panel-header-mc,.x-ie .x-panel-header-mr,.x-ie .x-panel-header-bl,.x-ie .x-panel-header-bc,.x-ie .x-panel-header-br{zoom:1}.x-ie8 td.x-frame-mc{vertical-align:top}.x-panel-body{overflow:hidden;position:relative}.x-nlg .x-panel-header-vertical .x-frame-mc{background-repeat:repeat-y}.x-panel-header-plain,.x-panel-body-plain{border:0;padding:0}.x-tip{position:absolute;overflow:visible}.x-tip-body{overflow:hidden;position:relative}.x-tip-anchor{position:absolute;overflow:hidden;border-style:solid}.x-table-layout{font-size:1em}.x-btn-group{position:relative;overflow:hidden}.x-btn-group-body{position:relative;zoom:1}.x-btn-group-body .x-table-layout-cell{vertical-align:top}.x-viewport,.x-viewport body{margin:0;padding:0;border:0 none;overflow:hidden;height:100%;position:static}.x-window{outline:0;overflow:hidden}.x-window .x-window-wrap{position:relative}.x-window-body{position:relative;overflow:hidden}.x-window-body-plain{background:transparent}.x-form-item-label{display:block}.x-form-item-label-right{text-align:right}.x-form-item-label-top{display:block;zoom:1}.x-form-invalid-icon{overflow:hidden}.x-form-invalid-icon ul{display:none}.x-form-textarea{overflow:auto;resize:none}.x-safari.x-mac .x-form-textarea{margin-bottom:-2px}.x-form-display-field-body{vertical-align:top}.x-form-cb-wrap{vertical-align:top}.x-form-cb{vertical-align:top;overflow:hidden;padding:0;border:0}.x-form-cb::-moz-focus-inner{padding:0;border:0}.x-form-cb-label{display:inline-block;zoom:1}.x-fieldset{display:block;position:relative}.x-fieldset-header{overflow:hidden}.x-fieldset-header .x-form-item,.x-fieldset-header .x-tool{float:left}.x-fieldset-header .x-form-cb-wrap{font-size:0;line-height:0}.x-fieldset-header .x-form-cb{margin:0}.x-fieldset-header-text{float:left}.x-webkit *:focus{outline:none!important}.x-form-item{vertical-align:top;table-layout:fixed}.x-form-item-body{position:relative}.x-form-form-item td{border-top:1px solid transparent}.x-form-trigger{cursor:pointer;overflow:hidden;background-repeat:no-repeat}.x-item-disabled .x-form-trigger{cursor:default}.x-trigger-noedit{cursor:default}.x-form-trigger-wrap{vertical-align:top;border-collapse:separate}.x-form-spinner-up,.x-form-spinner-down{font-size:0}.x-datepicker{position:relative}.x-datepicker-inner{table-layout:fixed;width:100%;border-collapse:separate}.x-datepicker-cell{padding:0}.x-datepicker-header{position:relative;zoom:1}.x-datepicker-arrow{position:absolute;outline:0;font-size:0}.x-datepicker-column-header{padding:0}.x-datepicker-date{display:block;zoom:1;text-decoration:none}.x-monthpicker{position:absolute;left:0;top:0}.x-monthpicker-body{height:100%}.x-monthpicker-months,.x-monthpicker-years{float:left;height:100%}.x-monthpicker-item{float:left}.x-monthpicker-item-inner{display:block;text-decoration:none}.x-monthpicker-yearnav-button-ct{float:left;text-align:center}.x-monthpicker-yearnav-button{display:inline-block;outline:0;font-size:0}.x-monthpicker-buttons{position:absolute;bottom:0;width:100%}.x-strict .x-ie6 .x-monthpicker-buttons{bottom:-1px}.x-form-file-btn{overflow:hidden}.x-form-file-input{border:0;position:absolute;cursor:pointer;top:-2px;right:-2px;filter:alpha(opacity=0);opacity:0;font-size:1000px}.x-form-item-hidden{margin:0}.x-color-picker-item{float:left;text-decoration:none}.x-color-picker-item-inner{display:block;font-size:1px}.x-html-editor-tb .x-toolbar{position:static!important}.x-htmleditor-iframe{display:block;overflow:auto}.x-fit-item{position:relative}.x-grid-row,.x-grid-data-row{outline:0}.x-grid-view{overflow:hidden;position:relative}.x-grid-table{table-layout:fixed;border-collapse:separate}.x-grid-td{overflow:hidden;border-width:0;vertical-align:top}.x-grid-cell-inner{overflow:hidden;white-space:nowrap;zoom:1}.x-grid-resize-marker{position:absolute;z-index:5;top:0}.col-move-top,.col-move-bottom{position:absolute;top:0;line-height:0;font-size:0;overflow:hidden;z-index:20000;background:no-repeat center top transparent}.x-grid-header-ct{cursor:default}.x-column-header{position:absolute;overflow:hidden;background-repeat:repeat-x}.x-column-header-inner{zoom:1;white-space:nowrap;position:relative;overflow:hidden}.x-column-header-text{white-space:nowrap;background-repeat:no-repeat;zoom:1;display:inline-block}.x-column-header-trigger{display:none;height:100%;background-repeat:no-repeat;position:absolute;right:0;top:0;z-index:2}.x-column-header-over .x-column-header-trigger,.x-column-header-open .x-column-header-trigger{display:block}.x-column-header-align-right{text-align:right}.x-column-header-align-left{text-align:left}.x-column-header-align-center{text-align:center}.x-grid-cell-inner-action-col{line-height:0;font-size:0}.x-grid-cell-inner-checkcolumn{line-height:0;font-size:0}.x-row-numberer .x-column-header-inner{text-overflow:clip}.x-grid-group,.x-grid-group-body,.x-grid-group-hd{zoom:1}.x-grid-group-hd{white-space:nowrap}.x-grid-row-body-hidden,.x-grid-group-collapsed{display:none}.x-grid-rowbody{zoom:1}.x-grid-row-body-hidden{display:none}td.x-grid-rowwrap .x-grid-table{border:0}td.x-grid-rowwrap .x-grid-cell{border-bottom:0;background-color:transparent}.x-grid-editor .x-form-cb-wrap{text-align:center}.x-grid-editor .x-form-display-field{margin:0;white-space:nowrap;overflow:hidden}.x-grid-editor div.x-form-action-col-field{line-height:0}.x-grid-row-editor{position:absolute;overflow:visible;z-index:1}.x-grid-row-editor-buttons{position:absolute;white-space:nowrap}.x-grid-row-expander{font-size:0;line-height:0}.x-abs-layout-ct{position:relative}.x-abs-layout-item{position:absolute!important}.x-splitter{font-size:1px}.x-splitter-horizontal{cursor:e-resize;cursor:row-resize}.x-splitter-vertical{cursor:e-resize;cursor:col-resize}.x-splitter-collapsed,.x-splitter-horizontal-noresize,.x-splitter-vertical-noresize{cursor:default}.x-splitter-active{z-index:4}.x-collapse-el{position:absolute;background-repeat:no-repeat}.x-border-layout-ct{overflow:hidden;zoom:1}.x-border-layout-ct{position:relative}.x-border-region-slide-in{z-index:5}.x-region-collapsed-placeholder{z-index:4}.x-column{float:left}.x-ie6 .x-column{display:inline}.x-quirks .x-ie .x-form-layout-table,.x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item{position:relative}.x-form-layout-table{border-collapse:separate;border-spacing:0 2px}.x-ie6 .x-form-layout-table{border-collapse:collapse;border-spacing:0}.x-menu{outline:0}.x-menu-item{white-space:nowrap;overflow:hidden}.x-menu-item-cmp .x-field-label-cell{vertical-align:middle}.x-menu-icon-separator{position:absolute;top:0;z-index:0;height:100%;overflow:hidden}.x-menu-plain .x-menu-icon-separator{display:none}.x-menu-item-link{text-decoration:none;outline:0;zoom:1}.x-menu-item-text{zoom:1}.x-menu-item-icon,.x-menu-item-icon-right,.x-menu-item-arrow{position:absolute;text-align:center}.x-resizable-overlay{position:absolute;left:0;top:0;width:100%;height:100%;display:none;z-index:200000;background-color:#fff;filter:alpha(opacity=0);opacity:0}.x-slider{outline:0;zoom:1;position:relative}.x-slider-inner{position:relative;left:0;top:0;overflow:visible;zoom:1}.x-slider-vert .x-slider-inner{background:repeat-y 0 0}.x-slider-end{zoom:1}.x-slider-thumb{position:absolute;background:no-repeat 0 0}.x-slider-horz .x-slider-thumb{left:0}.x-slider-vert .x-slider-thumb{bottom:0}a.x-tab{text-decoration:none}.x-tab-bar{position:relative}.x-column-header-checkbox .x-column-header-text{display:block;background-repeat:no-repeat;font-size:0}.x-grid-cell-row-checker{vertical-align:middle;background-repeat:no-repeat;font-size:0}.x-tab{display:block;white-space:nowrap;z-index:1}.x-tab-active{z-index:3}.x-tab-wrap{display:block;position:relative}.x-tab-button{zoom:1;display:block;outline:0}.x-tab-inner{display:block;text-align:center;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis;overflow:hidden;zoom:1}.x-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x-tab-bar{z-index:1}.x-tab-bar-body{z-index:2;position:relative}.x-tab-bar-strip{position:absolute;line-height:0;font-size:0;z-index:1}.x-tab-bar-horizontal .x-tab-bar-strip{width:100%;left:0}.x-tab-bar-vertical .x-tab-bar-strip{height:100%;top:0}.x-tab-bar-strip-top{bottom:0}.x-tab-bar-strip-bottom{top:0}.x-tab-bar-strip-left{right:0}.x-tab-bar-strip-right{left:0}.x-tab-bar-plain{background:transparent!important}.x-tab-icon-el{position:absolute;background-repeat:no-repeat;top:0;left:0;right:auto;bottom:0}.x-tab-close-btn{display:block;position:absolute;font-size:0;line-height:0;background:no-repeat}.x-tab-mc{overflow:visible}.x-autowidth-table .x-grid-table{table-layout:auto;width:auto!important}.x-tree-view{overflow:hidden}.x-tree-elbow-img,.x-tree-icon{background-repeat:no-repeat;background-position:0 center;vertical-align:top}.x-tree-checkbox{border:0;padding:0;vertical-align:top;position:relative;background-color:transparent}.x-tree-animator-wrap{overflow:hidden}.x-tree-node-text{zoom:1}.x-surface{display:-moz-inline-stack;display:inline-block;vertical-align:middle;*vertical-align:auto;zoom:1;*display:inline;overflow:hidden}.rvml{behavior:url(#default#VML)}.x-surface tspan{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x-vml-sprite{position:absolute;left:0;top:0;width:1px;height:1px}.x-vml-group{position:absolute;left:0;top:0;width:1000px;height:1000px}.x-vml-measure-span{position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;display:inline}.x-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}.x-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}svg,vml{overflow:hidden}.x-body{color:black;font-size:12px;font-family:tahoma,arial,verdana,sans-serif}.x-animating-size,.x-collapsed{overflow:hidden!important}.x-editor .x-form-item-body{padding-bottom:0}.x-focus-element{position:absolute;top:-10px;left:-10px;width:0;height:0}.x-focus-frame{position:absolute;left:0;top:0;z-index:100000000;width:0;height:0}.x-focus-frame-top,.x-focus-frame-bottom,.x-focus-frame-left,.x-focus-frame-right{position:absolute;top:0;left:0}.x-focus-frame-top,.x-focus-frame-bottom{border-top:solid 2px #15428b;height:2px}.x-focus-frame-left,.x-focus-frame-right{border-left:solid 2px #15428b;width:2px}.x-mask{filter:alpha(opacity=50);opacity:.5;background:#ccc}.x-mask-msg{padding:2px;border-style:solid;border-width:1px;border-color:#bcb0b0;background-image:none;background-color:#e0e0e0}.x-mask-msg-inner{padding:0 5px;border-style:solid;border-width:1px;border-color:#b3b3b3;background-color:#eee;color:#222;font:normal 11px tahoma,arial,verdana,sans-serif}.x-mask-msg-text{padding:5px 5px 5px 20px;background-image:url(images/grid/loading.gif);background-repeat:no-repeat;background-position:0 center}.x-progress-default{background-color:#f1f1f1;border-width:1px;height:20px;border-color:#8e8e8e}.x-content-box .x-progress-default{height:18px}.x-progress-default .x-progress-bar-default{background-image:none;background-color:#ababab;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#d1d1d1),color-stop(50%,#b8b8b8),color-stop(51%,#ababab),color-stop(100%,#9e9e9e));background-image:-webkit-linear-gradient(top,#d1d1d1,#b8b8b8 50%,#ababab 51%,#9e9e9e);background-image:-moz-linear-gradient(top,#d1d1d1,#b8b8b8 50%,#ababab 51%,#9e9e9e);background-image:-o-linear-gradient(top,#d1d1d1,#b8b8b8 50%,#ababab 51%,#9e9e9e);background-image:linear-gradient(top,#d1d1d1,#b8b8b8 50%,#ababab 51%,#9e9e9e)}.x-nlg .x-progress-default .x-progress-bar-default{background:repeat-x;background-image:url(images/progress/progress-default-bg.gif)}.x-progress-default .x-progress-text{color:white;font-weight:bold;font-size:11px;text-align:center;line-height:18px}.x-progress-default .x-progress-text-back{color:#5d5d5d;line-height:18px}.x-progress-default .x-progress-bar-default:after{display:none;content:"x-slicer:bg:url(images/progress/progress-default-bg.gif)"}.x-btn-default-small{border-color:#bbb}.x-btn-default-small{-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-image:none;background-color:#f8f8f8;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(100%,#eee));background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:-moz-linear-gradient(top,#fff,#eee);background-image:-o-linear-gradient(top,#fff,#eee);background-image:linear-gradient(top,#fff,#eee)}.x-btn-default-small-mc{background-image:url(images/btn/btn-default-small-fbg.gif);background-position:0 top;background-color:#f8f8f8}.x-nlg .x-btn-default-small{background-image:url(images/btn/btn-default-small-bg.gif);background-position:0 top}.x-nbr .x-btn-default-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-btn-default-small-tl{background-position:0 -6px}.x-btn-default-small-tr{background-position:right -9px}.x-btn-default-small-bl{background-position:0 -12px}.x-btn-default-small-br{background-position:right -15px}.x-btn-default-small-ml{background-position:0 top}.x-btn-default-small-mr{background-position:right top}.x-btn-default-small-tc{background-position:0 0}.x-btn-default-small-bc{background-position:0 -3px}.x-btn-default-small-tr,.x-btn-default-small-br,.x-btn-default-small-mr{padding-right:3px}.x-btn-default-small-tl,.x-btn-default-small-bl,.x-btn-default-small-ml{padding-left:3px}.x-btn-default-small-tc{height:3px}.x-btn-default-small-bc{height:3px}.x-btn-default-small-tl,.x-btn-default-small-bl,.x-btn-default-small-tr,.x-btn-default-small-br,.x-btn-default-small-tc,.x-btn-default-small-bc,.x-btn-default-small-ml,.x-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-corners.gif)}.x-btn-default-small-ml,.x-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-sides.gif)}.x-btn-default-small-mc{padding:0}.x-strict .x-ie7 .x-btn-default-small-tl,.x-strict .x-ie7 .x-btn-default-small-bl{position:relative;right:0}.x-btn-default-small:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"}.x-btn-default-small .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 4px}.x-btn-default-small .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-small .x-btn-arrow-right{padding-right:12px}.x-btn-default-small .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-small .x-btn-glyph{font-size:16px;line-height:16px;color:#333;opacity:.5}.x-ie8m .x-btn-default-small .x-btn-glyph{color:#959595}.x-btn-default-small-disabled{border-color:#d7d7d7;background-image:none;background-color:#ececec;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f4f4f4),color-stop(100%,#e2e2e2));background-image:-webkit-linear-gradient(top,#f4f4f4,#e2e2e2);background-image:-moz-linear-gradient(top,#f4f4f4,#e2e2e2);background-image:-o-linear-gradient(top,#f4f4f4,#e2e2e2);background-image:linear-gradient(top,#f4f4f4,#e2e2e2)}.x-btn-default-small-icon .x-btn-button,.x-btn-default-small-noicon .x-btn-button{height:16px}.x-btn-default-small-icon .x-btn-inner,.x-btn-default-small-noicon .x-btn-inner{line-height:16px}.x-btn-default-small-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-small-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-small-icon .x-btn-inner{width:16px;padding:0}.x-btn-default-small-icon .x-btn-icon-el{width:16px;height:16px}.x-btn-default-small-icon-text-left .x-btn-button{height:16px}.x-btn-default-small-icon-text-left .x-btn-inner{line-height:16px;padding-left:20px}.x-btn-default-small-icon-text-left .x-btn-icon-el{width:16px;right:auto}.x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-small-icon-text-left .x-btn-icon-el{height:16px}.x-btn-default-small-icon-text-right .x-btn-button{height:16px}.x-btn-default-small-icon-text-right .x-btn-inner{line-height:16px;padding-right:20px}.x-btn-default-small-icon-text-right .x-btn-icon-el{width:16px;left:auto}.x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-small-icon-text-right .x-btn-icon-el{height:16px}.x-btn-default-small-icon-text-top .x-btn-inner{padding-top:20px}.x-btn-default-small-icon-text-top .x-btn-icon-el{height:16px;bottom:auto}.x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-small-icon-text-bottom .x-btn-inner{padding-bottom:20px}.x-btn-default-small-icon-text-bottom .x-btn-icon-el{height:16px;top:auto}.x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-small-over{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-small-focus{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-small-menu-active,.x-btn-default-small-pressed{border-color:#9d9d9d;background-image:none;background-color:#d6d6d6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#c7c7c7),color-stop(100%,#e0e0e0));background-image:-webkit-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-moz-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-o-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:linear-gradient(top,#c7c7c7,#e0e0e0)}.x-btn-default-small-over .x-frame-tl,.x-btn-default-small-over .x-frame-bl,.x-btn-default-small-over .x-frame-tr,.x-btn-default-small-over .x-frame-br,.x-btn-default-small-over .x-frame-tc,.x-btn-default-small-over .x-frame-bc{background-image:url(images/btn/btn-default-small-over-corners.gif)}.x-btn-default-small-over .x-frame-ml,.x-btn-default-small-over .x-frame-mr{background-image:url(images/btn/btn-default-small-over-sides.gif)}.x-btn-default-small-over .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-small-over-fbg.gif)}.x-btn-default-small-focus .x-frame-tl,.x-btn-default-small-focus .x-frame-bl,.x-btn-default-small-focus .x-frame-tr,.x-btn-default-small-focus .x-frame-br,.x-btn-default-small-focus .x-frame-tc,.x-btn-default-small-focus .x-frame-bc{background-image:url(images/btn/btn-default-small-focus-corners.gif)}.x-btn-default-small-focus .x-frame-ml,.x-btn-default-small-focus .x-frame-mr{background-image:url(images/btn/btn-default-small-focus-sides.gif)}.x-btn-default-small-focus .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-small-focus-fbg.gif)}.x-btn-default-small-menu-active .x-frame-tl,.x-btn-default-small-menu-active .x-frame-bl,.x-btn-default-small-menu-active .x-frame-tr,.x-btn-default-small-menu-active .x-frame-br,.x-btn-default-small-menu-active .x-frame-tc,.x-btn-default-small-menu-active .x-frame-bc,.x-btn-default-small-pressed .x-frame-tl,.x-btn-default-small-pressed .x-frame-bl,.x-btn-default-small-pressed .x-frame-tr,.x-btn-default-small-pressed .x-frame-br,.x-btn-default-small-pressed .x-frame-tc,.x-btn-default-small-pressed .x-frame-bc{background-image:url(images/btn/btn-default-small-pressed-corners.gif)}.x-btn-default-small-menu-active .x-frame-ml,.x-btn-default-small-menu-active .x-frame-mr,.x-btn-default-small-pressed .x-frame-ml,.x-btn-default-small-pressed .x-frame-mr{background-image:url(images/btn/btn-default-small-pressed-sides.gif)}.x-btn-default-small-menu-active .x-frame-mc,.x-btn-default-small-pressed .x-frame-mc{background-color:#d6d6d6;background-image:url(images/btn/btn-default-small-pressed-fbg.gif)}.x-btn-default-small-disabled .x-frame-tl,.x-btn-default-small-disabled .x-frame-bl,.x-btn-default-small-disabled .x-frame-tr,.x-btn-default-small-disabled .x-frame-br,.x-btn-default-small-disabled .x-frame-tc,.x-btn-default-small-disabled .x-frame-bc{background-image:url(images/btn/btn-default-small-disabled-corners.gif)}.x-btn-default-small-disabled .x-frame-ml,.x-btn-default-small-disabled .x-frame-mr{background-image:url(images/btn/btn-default-small-disabled-sides.gif)}.x-btn-default-small-disabled .x-frame-mc{background-color:#ececec;background-image:url(images/btn/btn-default-small-disabled-fbg.gif)}.x-nlg .x-btn-default-small-over{background-image:url(images/btn/btn-default-small-over-bg.gif)}.x-nlg .x-btn-default-small-focus{background-image:url(images/btn/btn-default-small-focus-bg.gif)}.x-nlg .x-btn-default-small-menu-active,.x-nlg .x-btn-default-small-pressed{background-image:url(images/btn/btn-default-small-pressed-bg.gif)}.x-nlg .x-btn-default-small-disabled{background-image:url(images/btn/btn-default-small-disabled-bg.gif)}.x-nbr .x-btn-default-small{background-image:none}.x-btn-default-small .x-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:14px}.x-btn-default-small .x-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:14px}.x-btn-default-small-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-small-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-small-disabled .x-btn-inner,.x-btn-default-small-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-btn-default-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"}.x-btn-default-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"}.x-btn-default-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"}.x-btn-default-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"}.x-btn-default-medium{border-color:#bbb}.x-btn-default-medium{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#f8f8f8;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(100%,#eee));background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:-moz-linear-gradient(top,#fff,#eee);background-image:-o-linear-gradient(top,#fff,#eee);background-image:linear-gradient(top,#fff,#eee)}.x-btn-default-medium-mc{background-image:url(images/btn/btn-default-medium-fbg.gif);background-position:0 top;background-color:#f8f8f8}.x-nlg .x-btn-default-medium{background-image:url(images/btn/btn-default-medium-bg.gif);background-position:0 top}.x-nbr .x-btn-default-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-medium-tl{background-position:0 -6px}.x-btn-default-medium-tr{background-position:right -9px}.x-btn-default-medium-bl{background-position:0 -12px}.x-btn-default-medium-br{background-position:right -15px}.x-btn-default-medium-ml{background-position:0 top}.x-btn-default-medium-mr{background-position:right top}.x-btn-default-medium-tc{background-position:0 0}.x-btn-default-medium-bc{background-position:0 -3px}.x-btn-default-medium-tr,.x-btn-default-medium-br,.x-btn-default-medium-mr{padding-right:3px}.x-btn-default-medium-tl,.x-btn-default-medium-bl,.x-btn-default-medium-ml{padding-left:3px}.x-btn-default-medium-tc{height:3px}.x-btn-default-medium-bc{height:3px}.x-btn-default-medium-tl,.x-btn-default-medium-bl,.x-btn-default-medium-tr,.x-btn-default-medium-br,.x-btn-default-medium-tc,.x-btn-default-medium-bc,.x-btn-default-medium-ml,.x-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-corners.gif)}.x-btn-default-medium-ml,.x-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-sides.gif)}.x-btn-default-medium-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-medium-tl,.x-strict .x-ie7 .x-btn-default-medium-bl{position:relative;right:0}.x-btn-default-medium:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"}.x-btn-default-medium .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x-btn-default-medium .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-medium .x-btn-arrow-right{padding-right:12px}.x-btn-default-medium .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-medium .x-btn-glyph{font-size:24px;line-height:24px;color:#333;opacity:.5}.x-ie8m .x-btn-default-medium .x-btn-glyph{color:#959595}.x-btn-default-medium-disabled{border-color:#d7d7d7;background-image:none;background-color:#ececec;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f4f4f4),color-stop(100%,#e2e2e2));background-image:-webkit-linear-gradient(top,#f4f4f4,#e2e2e2);background-image:-moz-linear-gradient(top,#f4f4f4,#e2e2e2);background-image:-o-linear-gradient(top,#f4f4f4,#e2e2e2);background-image:linear-gradient(top,#f4f4f4,#e2e2e2)}.x-btn-default-medium-icon .x-btn-button,.x-btn-default-medium-noicon .x-btn-button{height:24px}.x-btn-default-medium-icon .x-btn-inner,.x-btn-default-medium-noicon .x-btn-inner{line-height:24px}.x-btn-default-medium-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-medium-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-medium-icon .x-btn-inner{width:24px;padding:0}.x-btn-default-medium-icon .x-btn-icon-el{width:24px;height:24px}.x-btn-default-medium-icon-text-left .x-btn-button{height:24px}.x-btn-default-medium-icon-text-left .x-btn-inner{line-height:24px;padding-left:28px}.x-btn-default-medium-icon-text-left .x-btn-icon-el{width:24px;right:auto}.x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon-el{height:24px}.x-btn-default-medium-icon-text-right .x-btn-button{height:24px}.x-btn-default-medium-icon-text-right .x-btn-inner{line-height:24px;padding-right:28px}.x-btn-default-medium-icon-text-right .x-btn-icon-el{width:24px;left:auto}.x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon-el{height:24px}.x-btn-default-medium-icon-text-top .x-btn-inner{padding-top:28px}.x-btn-default-medium-icon-text-top .x-btn-icon-el{height:24px;bottom:auto}.x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-medium-icon-text-bottom .x-btn-inner{padding-bottom:28px}.x-btn-default-medium-icon-text-bottom .x-btn-icon-el{height:24px;top:auto}.x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-medium-over{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-medium-focus{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-medium-menu-active,.x-btn-default-medium-pressed{border-color:#9d9d9d;background-image:none;background-color:#d6d6d6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#c7c7c7),color-stop(100%,#e0e0e0));background-image:-webkit-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-moz-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-o-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:linear-gradient(top,#c7c7c7,#e0e0e0)}.x-btn-default-medium-over .x-frame-tl,.x-btn-default-medium-over .x-frame-bl,.x-btn-default-medium-over .x-frame-tr,.x-btn-default-medium-over .x-frame-br,.x-btn-default-medium-over .x-frame-tc,.x-btn-default-medium-over .x-frame-bc{background-image:url(images/btn/btn-default-medium-over-corners.gif)}.x-btn-default-medium-over .x-frame-ml,.x-btn-default-medium-over .x-frame-mr{background-image:url(images/btn/btn-default-medium-over-sides.gif)}.x-btn-default-medium-over .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-medium-over-fbg.gif)}.x-btn-default-medium-focus .x-frame-tl,.x-btn-default-medium-focus .x-frame-bl,.x-btn-default-medium-focus .x-frame-tr,.x-btn-default-medium-focus .x-frame-br,.x-btn-default-medium-focus .x-frame-tc,.x-btn-default-medium-focus .x-frame-bc{background-image:url(images/btn/btn-default-medium-focus-corners.gif)}.x-btn-default-medium-focus .x-frame-ml,.x-btn-default-medium-focus .x-frame-mr{background-image:url(images/btn/btn-default-medium-focus-sides.gif)}.x-btn-default-medium-focus .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-medium-focus-fbg.gif)}.x-btn-default-medium-menu-active .x-frame-tl,.x-btn-default-medium-menu-active .x-frame-bl,.x-btn-default-medium-menu-active .x-frame-tr,.x-btn-default-medium-menu-active .x-frame-br,.x-btn-default-medium-menu-active .x-frame-tc,.x-btn-default-medium-menu-active .x-frame-bc,.x-btn-default-medium-pressed .x-frame-tl,.x-btn-default-medium-pressed .x-frame-bl,.x-btn-default-medium-pressed .x-frame-tr,.x-btn-default-medium-pressed .x-frame-br,.x-btn-default-medium-pressed .x-frame-tc,.x-btn-default-medium-pressed .x-frame-bc{background-image:url(images/btn/btn-default-medium-pressed-corners.gif)}.x-btn-default-medium-menu-active .x-frame-ml,.x-btn-default-medium-menu-active .x-frame-mr,.x-btn-default-medium-pressed .x-frame-ml,.x-btn-default-medium-pressed .x-frame-mr{background-image:url(images/btn/btn-default-medium-pressed-sides.gif)}.x-btn-default-medium-menu-active .x-frame-mc,.x-btn-default-medium-pressed .x-frame-mc{background-color:#d6d6d6;background-image:url(images/btn/btn-default-medium-pressed-fbg.gif)}.x-btn-default-medium-disabled .x-frame-tl,.x-btn-default-medium-disabled .x-frame-bl,.x-btn-default-medium-disabled .x-frame-tr,.x-btn-default-medium-disabled .x-frame-br,.x-btn-default-medium-disabled .x-frame-tc,.x-btn-default-medium-disabled .x-frame-bc{background-image:url(images/btn/btn-default-medium-disabled-corners.gif)}.x-btn-default-medium-disabled .x-frame-ml,.x-btn-default-medium-disabled .x-frame-mr{background-image:url(images/btn/btn-default-medium-disabled-sides.gif)}.x-btn-default-medium-disabled .x-frame-mc{background-color:#ececec;background-image:url(images/btn/btn-default-medium-disabled-fbg.gif)}.x-nlg .x-btn-default-medium-over{background-image:url(images/btn/btn-default-medium-over-bg.gif)}.x-nlg .x-btn-default-medium-focus{background-image:url(images/btn/btn-default-medium-focus-bg.gif)}.x-nlg .x-btn-default-medium-menu-active,.x-nlg .x-btn-default-medium-pressed{background-image:url(images/btn/btn-default-medium-pressed-bg.gif)}.x-nlg .x-btn-default-medium-disabled{background-image:url(images/btn/btn-default-medium-disabled-bg.gif)}.x-nbr .x-btn-default-medium{background-image:none}.x-btn-default-medium .x-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:14px}.x-btn-default-medium .x-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:14px}.x-btn-default-medium-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-medium-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-medium-disabled .x-btn-inner,.x-btn-default-medium-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-btn-default-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"}.x-btn-default-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"}.x-btn-default-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"}.x-btn-default-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"}.x-btn-default-large{border-color:#bbb}.x-btn-default-large{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#f8f8f8;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(100%,#eee));background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:-moz-linear-gradient(top,#fff,#eee);background-image:-o-linear-gradient(top,#fff,#eee);background-image:linear-gradient(top,#fff,#eee)}.x-btn-default-large-mc{background-image:url(images/btn/btn-default-large-fbg.gif);background-position:0 top;background-color:#f8f8f8}.x-nlg .x-btn-default-large{background-image:url(images/btn/btn-default-large-bg.gif);background-position:0 top}.x-nbr .x-btn-default-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-large-tl{background-position:0 -6px}.x-btn-default-large-tr{background-position:right -9px}.x-btn-default-large-bl{background-position:0 -12px}.x-btn-default-large-br{background-position:right -15px}.x-btn-default-large-ml{background-position:0 top}.x-btn-default-large-mr{background-position:right top}.x-btn-default-large-tc{background-position:0 0}.x-btn-default-large-bc{background-position:0 -3px}.x-btn-default-large-tr,.x-btn-default-large-br,.x-btn-default-large-mr{padding-right:3px}.x-btn-default-large-tl,.x-btn-default-large-bl,.x-btn-default-large-ml{padding-left:3px}.x-btn-default-large-tc{height:3px}.x-btn-default-large-bc{height:3px}.x-btn-default-large-tl,.x-btn-default-large-bl,.x-btn-default-large-tr,.x-btn-default-large-br,.x-btn-default-large-tc,.x-btn-default-large-bc,.x-btn-default-large-ml,.x-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-corners.gif)}.x-btn-default-large-ml,.x-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-sides.gif)}.x-btn-default-large-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-large-tl,.x-strict .x-ie7 .x-btn-default-large-bl{position:relative;right:0}.x-btn-default-large:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"}.x-btn-default-large .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x-btn-default-large .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-large .x-btn-arrow-right{padding-right:12px}.x-btn-default-large .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-large .x-btn-glyph{font-size:32px;line-height:32px;color:#333;opacity:.5}.x-ie8m .x-btn-default-large .x-btn-glyph{color:#959595}.x-btn-default-large-disabled{border-color:#d7d7d7;background-image:none;background-color:#ececec;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f4f4f4),color-stop(100%,#e2e2e2));background-image:-webkit-linear-gradient(top,#f4f4f4,#e2e2e2);background-image:-moz-linear-gradient(top,#f4f4f4,#e2e2e2);background-image:-o-linear-gradient(top,#f4f4f4,#e2e2e2);background-image:linear-gradient(top,#f4f4f4,#e2e2e2)}.x-btn-default-large-icon .x-btn-button,.x-btn-default-large-noicon .x-btn-button{height:32px}.x-btn-default-large-icon .x-btn-inner,.x-btn-default-large-noicon .x-btn-inner{line-height:32px}.x-btn-default-large-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-large-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-large-icon .x-btn-inner{width:32px;padding:0}.x-btn-default-large-icon .x-btn-icon-el{width:32px;height:32px}.x-btn-default-large-icon-text-left .x-btn-button{height:32px}.x-btn-default-large-icon-text-left .x-btn-inner{line-height:32px;padding-left:36px}.x-btn-default-large-icon-text-left .x-btn-icon-el{width:32px;right:auto}.x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-large-icon-text-left .x-btn-icon-el{height:32px}.x-btn-default-large-icon-text-right .x-btn-button{height:32px}.x-btn-default-large-icon-text-right .x-btn-inner{line-height:32px;padding-right:36px}.x-btn-default-large-icon-text-right .x-btn-icon-el{width:32px;left:auto}.x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-large-icon-text-right .x-btn-icon-el{height:32px}.x-btn-default-large-icon-text-top .x-btn-inner{padding-top:36px}.x-btn-default-large-icon-text-top .x-btn-icon-el{height:32px;bottom:auto}.x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-large-icon-text-bottom .x-btn-inner{padding-bottom:36px}.x-btn-default-large-icon-text-bottom .x-btn-icon-el{height:32px;top:auto}.x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-large-over{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-large-focus{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-large-menu-active,.x-btn-default-large-pressed{border-color:#9d9d9d;background-image:none;background-color:#d6d6d6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#c7c7c7),color-stop(100%,#e0e0e0));background-image:-webkit-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-moz-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-o-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:linear-gradient(top,#c7c7c7,#e0e0e0)}.x-btn-default-large-over .x-frame-tl,.x-btn-default-large-over .x-frame-bl,.x-btn-default-large-over .x-frame-tr,.x-btn-default-large-over .x-frame-br,.x-btn-default-large-over .x-frame-tc,.x-btn-default-large-over .x-frame-bc{background-image:url(images/btn/btn-default-large-over-corners.gif)}.x-btn-default-large-over .x-frame-ml,.x-btn-default-large-over .x-frame-mr{background-image:url(images/btn/btn-default-large-over-sides.gif)}.x-btn-default-large-over .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-large-over-fbg.gif)}.x-btn-default-large-focus .x-frame-tl,.x-btn-default-large-focus .x-frame-bl,.x-btn-default-large-focus .x-frame-tr,.x-btn-default-large-focus .x-frame-br,.x-btn-default-large-focus .x-frame-tc,.x-btn-default-large-focus .x-frame-bc{background-image:url(images/btn/btn-default-large-focus-corners.gif)}.x-btn-default-large-focus .x-frame-ml,.x-btn-default-large-focus .x-frame-mr{background-image:url(images/btn/btn-default-large-focus-sides.gif)}.x-btn-default-large-focus .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-large-focus-fbg.gif)}.x-btn-default-large-menu-active .x-frame-tl,.x-btn-default-large-menu-active .x-frame-bl,.x-btn-default-large-menu-active .x-frame-tr,.x-btn-default-large-menu-active .x-frame-br,.x-btn-default-large-menu-active .x-frame-tc,.x-btn-default-large-menu-active .x-frame-bc,.x-btn-default-large-pressed .x-frame-tl,.x-btn-default-large-pressed .x-frame-bl,.x-btn-default-large-pressed .x-frame-tr,.x-btn-default-large-pressed .x-frame-br,.x-btn-default-large-pressed .x-frame-tc,.x-btn-default-large-pressed .x-frame-bc{background-image:url(images/btn/btn-default-large-pressed-corners.gif)}.x-btn-default-large-menu-active .x-frame-ml,.x-btn-default-large-menu-active .x-frame-mr,.x-btn-default-large-pressed .x-frame-ml,.x-btn-default-large-pressed .x-frame-mr{background-image:url(images/btn/btn-default-large-pressed-sides.gif)}.x-btn-default-large-menu-active .x-frame-mc,.x-btn-default-large-pressed .x-frame-mc{background-color:#d6d6d6;background-image:url(images/btn/btn-default-large-pressed-fbg.gif)}.x-btn-default-large-disabled .x-frame-tl,.x-btn-default-large-disabled .x-frame-bl,.x-btn-default-large-disabled .x-frame-tr,.x-btn-default-large-disabled .x-frame-br,.x-btn-default-large-disabled .x-frame-tc,.x-btn-default-large-disabled .x-frame-bc{background-image:url(images/btn/btn-default-large-disabled-corners.gif)}.x-btn-default-large-disabled .x-frame-ml,.x-btn-default-large-disabled .x-frame-mr{background-image:url(images/btn/btn-default-large-disabled-sides.gif)}.x-btn-default-large-disabled .x-frame-mc{background-color:#ececec;background-image:url(images/btn/btn-default-large-disabled-fbg.gif)}.x-nlg .x-btn-default-large-over{background-image:url(images/btn/btn-default-large-over-bg.gif)}.x-nlg .x-btn-default-large-focus{background-image:url(images/btn/btn-default-large-focus-bg.gif)}.x-nlg .x-btn-default-large-menu-active,.x-nlg .x-btn-default-large-pressed{background-image:url(images/btn/btn-default-large-pressed-bg.gif)}.x-nlg .x-btn-default-large-disabled{background-image:url(images/btn/btn-default-large-disabled-bg.gif)}.x-nbr .x-btn-default-large{background-image:none}.x-btn-default-large .x-btn-split-right{background-image:url(images/button/s-arrow.gif);padding-right:14px}.x-btn-default-large .x-btn-split-bottom{background-image:url(images/button/s-arrow-b.gif);padding-bottom:14px}.x-btn-default-large-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-large-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-large-disabled .x-btn-inner,.x-btn-default-large-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-btn-default-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"}.x-btn-default-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"}.x-btn-default-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"}.x-btn-default-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"}.x-btn-default-toolbar-small{border-color:transparent}.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:2px 2px 2px 2px;border-width:1px;border-style:solid;background-color:transparent}.x-btn-default-toolbar-small-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-default-toolbar-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-btn-default-toolbar-small-tl{background-position:0 -6px}.x-btn-default-toolbar-small-tr{background-position:right -9px}.x-btn-default-toolbar-small-bl{background-position:0 -12px}.x-btn-default-toolbar-small-br{background-position:right -15px}.x-btn-default-toolbar-small-ml{background-position:0 top}.x-btn-default-toolbar-small-mr{background-position:right top}.x-btn-default-toolbar-small-tc{background-position:0 0}.x-btn-default-toolbar-small-bc{background-position:0 -3px}.x-btn-default-toolbar-small-tr,.x-btn-default-toolbar-small-br,.x-btn-default-toolbar-small-mr{padding-right:3px}.x-btn-default-toolbar-small-tl,.x-btn-default-toolbar-small-bl,.x-btn-default-toolbar-small-ml{padding-left:3px}.x-btn-default-toolbar-small-tc{height:3px}.x-btn-default-toolbar-small-bc{height:3px}.x-btn-default-toolbar-small-tl,.x-btn-default-toolbar-small-bl,.x-btn-default-toolbar-small-tr,.x-btn-default-toolbar-small-br,.x-btn-default-toolbar-small-tc,.x-btn-default-toolbar-small-bc,.x-btn-default-toolbar-small-ml,.x-btn-default-toolbar-small-mr{zoom:1}.x-btn-default-toolbar-small-ml,.x-btn-default-toolbar-small-mr{zoom:1}.x-btn-default-toolbar-small-mc{padding:0}.x-strict .x-ie7 .x-btn-default-toolbar-small-tl,.x-strict .x-ie7 .x-btn-default-toolbar-small-bl{position:relative;right:0}.x-btn-default-toolbar-small .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 4px}.x-btn-default-toolbar-small .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-toolbar-small .x-btn-arrow-right{padding-right:12px}.x-btn-default-toolbar-small .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-toolbar-small .x-btn-glyph{font-size:16px;line-height:16px;color:#333;opacity:.5}.x-ie8m .x-btn-default-toolbar-small .x-btn-glyph{color:#999}.x-btn-default-toolbar-small-disabled{border-color:#d7d7d7;background-image:none;background-color:transparent}.x-btn-default-toolbar-small-disabled .x-btn-inner{color:#8c8c8c}.x-btn-default-toolbar-small-icon .x-btn-button,.x-btn-default-toolbar-small-noicon .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon .x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-inner{line-height:16px}.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-small-icon .x-btn-inner{width:16px;padding:0}.x-btn-default-toolbar-small-icon .x-btn-icon-el{width:16px;height:16px}.x-btn-default-toolbar-small-icon-text-left .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon-text-left .x-btn-inner{line-height:16px;padding-left:20px}.x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el{width:16px;right:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el{height:16px}.x-btn-default-toolbar-small-icon-text-right .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon-text-right .x-btn-inner{line-height:16px;padding-right:20px}.x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el{width:16px;left:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el{height:16px}.x-btn-default-toolbar-small-icon-text-top .x-btn-inner{padding-top:20px}.x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el{height:16px;bottom:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner{padding-bottom:20px}.x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el{height:16px;top:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-small-over{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-toolbar-small-focus{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-toolbar-small-menu-active,.x-btn-default-toolbar-small-pressed{border-color:#9d9d9d;background-image:none;background-color:#d6d6d6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#c7c7c7),color-stop(100%,#e0e0e0));background-image:-webkit-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-moz-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-o-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:linear-gradient(top,#c7c7c7,#e0e0e0)}.x-btn-default-toolbar-small-over .x-frame-tl,.x-btn-default-toolbar-small-over .x-frame-bl,.x-btn-default-toolbar-small-over .x-frame-tr,.x-btn-default-toolbar-small-over .x-frame-br,.x-btn-default-toolbar-small-over .x-frame-tc,.x-btn-default-toolbar-small-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-over-corners.gif)}.x-btn-default-toolbar-small-over .x-frame-ml,.x-btn-default-toolbar-small-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-over-sides.gif)}.x-btn-default-toolbar-small-over .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-toolbar-small-over-fbg.gif)}.x-btn-default-toolbar-small-focus .x-frame-tl,.x-btn-default-toolbar-small-focus .x-frame-bl,.x-btn-default-toolbar-small-focus .x-frame-tr,.x-btn-default-toolbar-small-focus .x-frame-br,.x-btn-default-toolbar-small-focus .x-frame-tc,.x-btn-default-toolbar-small-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-focus-corners.gif)}.x-btn-default-toolbar-small-focus .x-frame-ml,.x-btn-default-toolbar-small-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-focus-sides.gif)}.x-btn-default-toolbar-small-focus .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-toolbar-small-focus-fbg.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-tl,.x-btn-default-toolbar-small-menu-active .x-frame-bl,.x-btn-default-toolbar-small-menu-active .x-frame-tr,.x-btn-default-toolbar-small-menu-active .x-frame-br,.x-btn-default-toolbar-small-menu-active .x-frame-tc,.x-btn-default-toolbar-small-menu-active .x-frame-bc,.x-btn-default-toolbar-small-pressed .x-frame-tl,.x-btn-default-toolbar-small-pressed .x-frame-bl,.x-btn-default-toolbar-small-pressed .x-frame-tr,.x-btn-default-toolbar-small-pressed .x-frame-br,.x-btn-default-toolbar-small-pressed .x-frame-tc,.x-btn-default-toolbar-small-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-pressed-corners.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-ml,.x-btn-default-toolbar-small-menu-active .x-frame-mr,.x-btn-default-toolbar-small-pressed .x-frame-ml,.x-btn-default-toolbar-small-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-pressed-sides.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-mc,.x-btn-default-toolbar-small-pressed .x-frame-mc{background-color:#d6d6d6;background-image:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif)}.x-btn-default-toolbar-small-disabled .x-frame-tl,.x-btn-default-toolbar-small-disabled .x-frame-bl,.x-btn-default-toolbar-small-disabled .x-frame-tr,.x-btn-default-toolbar-small-disabled .x-frame-br,.x-btn-default-toolbar-small-disabled .x-frame-tc,.x-btn-default-toolbar-small-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-disabled-corners.gif)}.x-btn-default-toolbar-small-disabled .x-frame-ml,.x-btn-default-toolbar-small-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)}.x-btn-default-toolbar-small-disabled .x-frame-mc{background-color:transparent}.x-nlg .x-btn-default-toolbar-small-over{background-image:url(images/btn/btn-default-toolbar-small-over-bg.gif)}.x-nlg .x-btn-default-toolbar-small-focus{background-image:url(images/btn/btn-default-toolbar-small-focus-bg.gif)}.x-nlg .x-btn-default-toolbar-small-menu-active,.x-nlg .x-btn-default-toolbar-small-pressed{background-image:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)}.x-nbr .x-btn-default-toolbar-small{background-image:none}.x-btn-default-toolbar-small .x-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:14px}.x-btn-default-toolbar-small .x-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:14px}.x-btn-default-toolbar-small-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-toolbar-small-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-toolbar-small-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-over-bg.gif)"}.x-btn-default-toolbar-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-focus-bg.gif)"}.x-btn-default-toolbar-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)"}.x-btn-default-toolbar-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)"}.x-btn-default-toolbar-medium{border-color:transparent}.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:transparent}.x-btn-default-toolbar-medium-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-default-toolbar-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-toolbar-medium-tl{background-position:0 -6px}.x-btn-default-toolbar-medium-tr{background-position:right -9px}.x-btn-default-toolbar-medium-bl{background-position:0 -12px}.x-btn-default-toolbar-medium-br{background-position:right -15px}.x-btn-default-toolbar-medium-ml{background-position:0 top}.x-btn-default-toolbar-medium-mr{background-position:right top}.x-btn-default-toolbar-medium-tc{background-position:0 0}.x-btn-default-toolbar-medium-bc{background-position:0 -3px}.x-btn-default-toolbar-medium-tr,.x-btn-default-toolbar-medium-br,.x-btn-default-toolbar-medium-mr{padding-right:3px}.x-btn-default-toolbar-medium-tl,.x-btn-default-toolbar-medium-bl,.x-btn-default-toolbar-medium-ml{padding-left:3px}.x-btn-default-toolbar-medium-tc{height:3px}.x-btn-default-toolbar-medium-bc{height:3px}.x-btn-default-toolbar-medium-tl,.x-btn-default-toolbar-medium-bl,.x-btn-default-toolbar-medium-tr,.x-btn-default-toolbar-medium-br,.x-btn-default-toolbar-medium-tc,.x-btn-default-toolbar-medium-bc,.x-btn-default-toolbar-medium-ml,.x-btn-default-toolbar-medium-mr{zoom:1}.x-btn-default-toolbar-medium-ml,.x-btn-default-toolbar-medium-mr{zoom:1}.x-btn-default-toolbar-medium-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-toolbar-medium-tl,.x-strict .x-ie7 .x-btn-default-toolbar-medium-bl{position:relative;right:0}.x-btn-default-toolbar-medium .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x-btn-default-toolbar-medium .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-toolbar-medium .x-btn-arrow-right{padding-right:12px}.x-btn-default-toolbar-medium .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-toolbar-medium .x-btn-glyph{font-size:24px;line-height:24px;color:#333;opacity:.5}.x-ie8m .x-btn-default-toolbar-medium .x-btn-glyph{color:#999}.x-btn-default-toolbar-medium-disabled{border-color:#d7d7d7;background-image:none;background-color:transparent}.x-btn-default-toolbar-medium-disabled .x-btn-inner{color:#8c8c8c}.x-btn-default-toolbar-medium-icon .x-btn-button,.x-btn-default-toolbar-medium-noicon .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon .x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-inner{line-height:24px}.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-medium-icon .x-btn-inner{width:24px;padding:0}.x-btn-default-toolbar-medium-icon .x-btn-icon-el{width:24px;height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-inner{line-height:24px;padding-left:28px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el{width:24px;right:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el{height:24px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-inner{line-height:24px;padding-right:28px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el{width:24px;left:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el{height:24px}.x-btn-default-toolbar-medium-icon-text-top .x-btn-inner{padding-top:28px}.x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el{height:24px;bottom:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner{padding-bottom:28px}.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el{height:24px;top:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-medium-over{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-toolbar-medium-focus{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-toolbar-medium-menu-active,.x-btn-default-toolbar-medium-pressed{border-color:#9d9d9d;background-image:none;background-color:#d6d6d6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#c7c7c7),color-stop(100%,#e0e0e0));background-image:-webkit-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-moz-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-o-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:linear-gradient(top,#c7c7c7,#e0e0e0)}.x-btn-default-toolbar-medium-over .x-frame-tl,.x-btn-default-toolbar-medium-over .x-frame-bl,.x-btn-default-toolbar-medium-over .x-frame-tr,.x-btn-default-toolbar-medium-over .x-frame-br,.x-btn-default-toolbar-medium-over .x-frame-tc,.x-btn-default-toolbar-medium-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-over-corners.gif)}.x-btn-default-toolbar-medium-over .x-frame-ml,.x-btn-default-toolbar-medium-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-over-sides.gif)}.x-btn-default-toolbar-medium-over .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-toolbar-medium-over-fbg.gif)}.x-btn-default-toolbar-medium-focus .x-frame-tl,.x-btn-default-toolbar-medium-focus .x-frame-bl,.x-btn-default-toolbar-medium-focus .x-frame-tr,.x-btn-default-toolbar-medium-focus .x-frame-br,.x-btn-default-toolbar-medium-focus .x-frame-tc,.x-btn-default-toolbar-medium-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-focus-corners.gif)}.x-btn-default-toolbar-medium-focus .x-frame-ml,.x-btn-default-toolbar-medium-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-focus-sides.gif)}.x-btn-default-toolbar-medium-focus .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-tl,.x-btn-default-toolbar-medium-menu-active .x-frame-bl,.x-btn-default-toolbar-medium-menu-active .x-frame-tr,.x-btn-default-toolbar-medium-menu-active .x-frame-br,.x-btn-default-toolbar-medium-menu-active .x-frame-tc,.x-btn-default-toolbar-medium-menu-active .x-frame-bc,.x-btn-default-toolbar-medium-pressed .x-frame-tl,.x-btn-default-toolbar-medium-pressed .x-frame-bl,.x-btn-default-toolbar-medium-pressed .x-frame-tr,.x-btn-default-toolbar-medium-pressed .x-frame-br,.x-btn-default-toolbar-medium-pressed .x-frame-tc,.x-btn-default-toolbar-medium-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-ml,.x-btn-default-toolbar-medium-menu-active .x-frame-mr,.x-btn-default-toolbar-medium-pressed .x-frame-ml,.x-btn-default-toolbar-medium-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-mc,.x-btn-default-toolbar-medium-pressed .x-frame-mc{background-color:#d6d6d6;background-image:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-tl,.x-btn-default-toolbar-medium-disabled .x-frame-bl,.x-btn-default-toolbar-medium-disabled .x-frame-tr,.x-btn-default-toolbar-medium-disabled .x-frame-br,.x-btn-default-toolbar-medium-disabled .x-frame-tc,.x-btn-default-toolbar-medium-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-ml,.x-btn-default-toolbar-medium-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-mc{background-color:transparent}.x-nlg .x-btn-default-toolbar-medium-over{background-image:url(images/btn/btn-default-toolbar-medium-over-bg.gif)}.x-nlg .x-btn-default-toolbar-medium-focus{background-image:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)}.x-nlg .x-btn-default-toolbar-medium-menu-active,.x-nlg .x-btn-default-toolbar-medium-pressed{background-image:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)}.x-nbr .x-btn-default-toolbar-medium{background-image:none}.x-btn-default-toolbar-medium .x-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:14px}.x-btn-default-toolbar-medium .x-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:14px}.x-btn-default-toolbar-medium-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-toolbar-medium-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-toolbar-medium-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-over-bg.gif)"}.x-btn-default-toolbar-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)"}.x-btn-default-toolbar-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)"}.x-btn-default-toolbar-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)"}.x-btn-default-toolbar-large{border-color:transparent}.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:transparent}.x-btn-default-toolbar-large-mc{background-color:transparent}.x-nbr .x-btn-default-toolbar-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-default-toolbar-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-toolbar-large-tl{background-position:0 -6px}.x-btn-default-toolbar-large-tr{background-position:right -9px}.x-btn-default-toolbar-large-bl{background-position:0 -12px}.x-btn-default-toolbar-large-br{background-position:right -15px}.x-btn-default-toolbar-large-ml{background-position:0 top}.x-btn-default-toolbar-large-mr{background-position:right top}.x-btn-default-toolbar-large-tc{background-position:0 0}.x-btn-default-toolbar-large-bc{background-position:0 -3px}.x-btn-default-toolbar-large-tr,.x-btn-default-toolbar-large-br,.x-btn-default-toolbar-large-mr{padding-right:3px}.x-btn-default-toolbar-large-tl,.x-btn-default-toolbar-large-bl,.x-btn-default-toolbar-large-ml{padding-left:3px}.x-btn-default-toolbar-large-tc{height:3px}.x-btn-default-toolbar-large-bc{height:3px}.x-btn-default-toolbar-large-tl,.x-btn-default-toolbar-large-bl,.x-btn-default-toolbar-large-tr,.x-btn-default-toolbar-large-br,.x-btn-default-toolbar-large-tc,.x-btn-default-toolbar-large-bc,.x-btn-default-toolbar-large-ml,.x-btn-default-toolbar-large-mr{zoom:1}.x-btn-default-toolbar-large-ml,.x-btn-default-toolbar-large-mr{zoom:1}.x-btn-default-toolbar-large-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-toolbar-large-tl,.x-strict .x-ie7 .x-btn-default-toolbar-large-bl{position:relative;right:0}.x-btn-default-toolbar-large .x-btn-inner{font-size:11px;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;color:#333;padding:0 3px}.x-btn-default-toolbar-large .x-btn-arrow{background-image:url(images/button/arrow.gif)}.x-btn-default-toolbar-large .x-btn-arrow-right{padding-right:12px}.x-btn-default-toolbar-large .x-btn-arrow-bottom{padding-bottom:12px}.x-btn-default-toolbar-large .x-btn-glyph{font-size:32px;line-height:32px;color:#333;opacity:.5}.x-ie8m .x-btn-default-toolbar-large .x-btn-glyph{color:#999}.x-btn-default-toolbar-large-disabled{border-color:#d7d7d7;background-image:none;background-color:transparent}.x-btn-default-toolbar-large-disabled .x-btn-inner{color:#8c8c8c}.x-btn-default-toolbar-large-icon .x-btn-button,.x-btn-default-toolbar-large-noicon .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon .x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-inner{line-height:32px}.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-large-icon .x-btn-inner{width:32px;padding:0}.x-btn-default-toolbar-large-icon .x-btn-icon-el{width:32px;height:32px}.x-btn-default-toolbar-large-icon-text-left .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon-text-left .x-btn-inner{line-height:32px;padding-left:36px}.x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el{width:32px;right:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el{height:32px}.x-btn-default-toolbar-large-icon-text-right .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon-text-right .x-btn-inner{line-height:32px;padding-right:36px}.x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el{width:32px;left:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el{height:32px}.x-btn-default-toolbar-large-icon-text-top .x-btn-inner{padding-top:36px}.x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el{height:32px;bottom:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner{padding-bottom:36px}.x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el{height:32px;top:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-large-over{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-toolbar-large-focus{border-color:#9d9d9d;background-image:none;background-color:#f3f3f3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fbfbfb),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-moz-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:-o-linear-gradient(top,#fbfbfb,#e9e9e9);background-image:linear-gradient(top,#fbfbfb,#e9e9e9)}.x-btn-default-toolbar-large-menu-active,.x-btn-default-toolbar-large-pressed{border-color:#9d9d9d;background-image:none;background-color:#d6d6d6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#c7c7c7),color-stop(100%,#e0e0e0));background-image:-webkit-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-moz-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:-o-linear-gradient(top,#c7c7c7,#e0e0e0);background-image:linear-gradient(top,#c7c7c7,#e0e0e0)}.x-btn-default-toolbar-large-over .x-frame-tl,.x-btn-default-toolbar-large-over .x-frame-bl,.x-btn-default-toolbar-large-over .x-frame-tr,.x-btn-default-toolbar-large-over .x-frame-br,.x-btn-default-toolbar-large-over .x-frame-tc,.x-btn-default-toolbar-large-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-over-corners.gif)}.x-btn-default-toolbar-large-over .x-frame-ml,.x-btn-default-toolbar-large-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-over-sides.gif)}.x-btn-default-toolbar-large-over .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-toolbar-large-over-fbg.gif)}.x-btn-default-toolbar-large-focus .x-frame-tl,.x-btn-default-toolbar-large-focus .x-frame-bl,.x-btn-default-toolbar-large-focus .x-frame-tr,.x-btn-default-toolbar-large-focus .x-frame-br,.x-btn-default-toolbar-large-focus .x-frame-tc,.x-btn-default-toolbar-large-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-focus-corners.gif)}.x-btn-default-toolbar-large-focus .x-frame-ml,.x-btn-default-toolbar-large-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-focus-sides.gif)}.x-btn-default-toolbar-large-focus .x-frame-mc{background-color:#f3f3f3;background-image:url(images/btn/btn-default-toolbar-large-focus-fbg.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-tl,.x-btn-default-toolbar-large-menu-active .x-frame-bl,.x-btn-default-toolbar-large-menu-active .x-frame-tr,.x-btn-default-toolbar-large-menu-active .x-frame-br,.x-btn-default-toolbar-large-menu-active .x-frame-tc,.x-btn-default-toolbar-large-menu-active .x-frame-bc,.x-btn-default-toolbar-large-pressed .x-frame-tl,.x-btn-default-toolbar-large-pressed .x-frame-bl,.x-btn-default-toolbar-large-pressed .x-frame-tr,.x-btn-default-toolbar-large-pressed .x-frame-br,.x-btn-default-toolbar-large-pressed .x-frame-tc,.x-btn-default-toolbar-large-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-pressed-corners.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-ml,.x-btn-default-toolbar-large-menu-active .x-frame-mr,.x-btn-default-toolbar-large-pressed .x-frame-ml,.x-btn-default-toolbar-large-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-pressed-sides.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-mc,.x-btn-default-toolbar-large-pressed .x-frame-mc{background-color:#d6d6d6;background-image:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif)}.x-btn-default-toolbar-large-disabled .x-frame-tl,.x-btn-default-toolbar-large-disabled .x-frame-bl,.x-btn-default-toolbar-large-disabled .x-frame-tr,.x-btn-default-toolbar-large-disabled .x-frame-br,.x-btn-default-toolbar-large-disabled .x-frame-tc,.x-btn-default-toolbar-large-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-disabled-corners.gif)}.x-btn-default-toolbar-large-disabled .x-frame-ml,.x-btn-default-toolbar-large-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)}.x-btn-default-toolbar-large-disabled .x-frame-mc{background-color:transparent}.x-nlg .x-btn-default-toolbar-large-over{background-image:url(images/btn/btn-default-toolbar-large-over-bg.gif)}.x-nlg .x-btn-default-toolbar-large-focus{background-image:url(images/btn/btn-default-toolbar-large-focus-bg.gif)}.x-nlg .x-btn-default-toolbar-large-menu-active,.x-nlg .x-btn-default-toolbar-large-pressed{background-image:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)}.x-nbr .x-btn-default-toolbar-large{background-image:none}.x-btn-default-toolbar-large .x-btn-split-right{background-image:url(images/button/s-arrow-noline.gif);padding-right:14px}.x-btn-default-toolbar-large .x-btn-split-bottom{background-image:url(images/button/s-arrow-b-noline.gif);padding-bottom:14px}.x-btn-default-toolbar-large-over .x-btn-split-right{background-image:url(images/button/s-arrow-o.gif)}.x-btn-default-toolbar-large-over .x-btn-split-bottom{background-image:url(images/button/s-arrow-bo.gif)}.x-btn-default-toolbar-large-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-over-bg.gif)"}.x-btn-default-toolbar-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-focus-bg.gif)"}.x-btn-default-toolbar-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)"}.x-btn-default-toolbar-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)"}.x-btn-icon-text-left .x-btn-icon-el{background-position:left center}.x-btn-icon-text-right .x-btn-icon-el{background-position:right center}.x-btn-icon-text-top .x-btn-icon-el{background-position:center top}.x-btn-icon-text-bottom .x-btn-icon-el{background-position:center bottom}.x-btn-arrow-right{background-position:right center}.x-btn-arrow-bottom{background-position:center bottom}.x-btn-arrow{background-repeat:no-repeat}.x-btn-split{display:block;background-repeat:no-repeat}.x-btn-split-right{background-position:right center}.x-btn-split-bottom{background-position:center bottom}.x-cycle-fixed-width .x-btn-inner{text-align:inherit}.x-toolbar{font-size:11px;border-style:solid;padding:2px 0 2px 2px}.x-toolbar-item{margin:0 2px 0 0}.x-toolbar-text{margin:0 6px 0 4px;color:black;line-height:16px;font-family:tahoma,arial,verdana,sans-serif;font-size:11px;font-weight:normal}.x-toolbar-separator-horizontal{margin:0 2px 0 0;height:14px;border-style:solid;border-width:0 1px;border-left-color:#aca899;border-right-color:white}.x-toolbar-footer{background:transparent;border:0;margin:3px 0 0;padding:2px 0 2px 6px}.x-toolbar-footer .x-toolbar-item{margin:0 6px 0 0}.x-toolbar-spacer{width:2px}.x-toolbar-more-icon{background-image:url(images/toolbar/more.gif)!important;background-position:center center!important;background-repeat:no-repeat}.x-toolbar-default{border-color:#bcb0b0;border-width:1px;background-image:none;background-color:#d8d8d8;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e6e6e6),color-stop(100%,#efefef));background-image:-webkit-linear-gradient(top,#e6e6e6,#efefef);background-image:-moz-linear-gradient(top,#e6e6e6,#efefef);background-image:-o-linear-gradient(top,#e6e6e6,#efefef);background-image:linear-gradient(top,#e6e6e6,#efefef)}.x-toolbar-default .x-box-scroller{cursor:pointer}.x-toolbar-default .x-box-scroller-disabled{filter:alpha(opacity=50);opacity:.5;cursor:default}.x-nlg .x-toolbar-default{background-image:url(images/toolbar/toolbar-default-bg.gif)!important;background-repeat:repeat-x}.x-toolbar-default:after{display:none;content:"x-slicer:bg:url(images/toolbar/toolbar-default-bg.gif), stretch:bottom"}.x-toolbar-scroll-left{background-image:url(images/toolbar/scroll-left.gif);background-position:-14px 0;width:14px;height:22px;border-style:solid;border-color:#8db2e3;border-width:0 0 1px;margin-top:0}.x-toolbar-scroll-left-hover{background-position:0 0}.x-toolbar-scroll-right{background-image:url(images/toolbar/scroll-right.gif);width:14px;height:22px;border-style:solid;border-color:#8db2e3;border-width:0 0 1px;margin-top:0}.x-toolbar-scroll-right-hover{background-position:-14px 0}.x-toolbar .x-box-menu-after{margin:0 2px 0 2px}.x-toolbar-vertical{padding:2px 2px 0 2px}.x-toolbar-vertical .x-toolbar-item{margin:0 0 2px 0}.x-toolbar-vertical .x-toolbar-text{margin:4px 0 6px 0}.x-toolbar-vertical .x-toolbar-separator-vertical{margin:0 5px 2px;border-style:solid none;border-width:1px 0;border-top-color:#aca899;border-bottom-color:white}.x-toolbar-vertical .x-box-menu-after,.x-toolbar-vertical .x-rtl.x-box-menu-after{margin:2px 0 2px 0;display:block;float:none}.x-header-draggable .x-header-body,.x-header-ghost{cursor:move}.x-header-text{white-space:nowrap}.x-panel-ghost{filter:alpha(opacity=65);opacity:.65}.x-panel-default{border-color:#d0d0d0;padding:0}.x-panel-header-default{font-size:11px;border:1px solid #d0d0d0}.x-panel-header-default-horizontal{padding:4px 5px 4px 5px}.x-panel-header-default-horizontal-noborder{padding:5px 6px 4px 6px}.x-panel-header-default-vertical{padding:5px 4px 5px 4px}.x-panel-header-default-vertical-noborder{padding:6px 5px 6px 4px}.x-panel-header-text-container-default{color:#333;font-size:11px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;line-height:15px;padding:0 2px 1px;text-transform:none}.x-panel-body-default{background:white;border-color:#d0d0d0;color:black;font-size:12px;font-size:normal;border-width:1px;border-style:solid}.x-panel-header-default{background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:linear-gradient(top,#f0f0f0,#d7d7d7)}.x-panel-header-default-vertical{background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:linear-gradient(right,#f0f0f0,#d7d7d7)}.x-nlg .x-panel-header-default-top{background:url(images/panel-header/panel-header-default-top-bg.gif)}.x-nlg .x-panel-header-default-bottom{background:url(images/panel-header/panel-header-default-bottom-bg.gif)}.x-nlg .x-panel-header-default-left{background:url(images/panel-header/panel-header-default-left-bg.gif) top right}.x-nlg .x-panel-header-default-right{background:url(images/panel-header/panel-header-default-right-bg.gif) top right}.x-panel .x-panel-header-default-collapsed-border-top{border-bottom-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-right{border-left-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-bottom{border-top-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-left{border-right-width:1px!important}.x-panel-header-default-top:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-top-bg.gif), stretch:bottom"}.x-panel-header-default-bottom:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-bottom-bg.gif), stretch:bottom"}.x-panel-header-default-left:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-left-bg.gif), stretch:left"}.x-panel-header-default-right:after{display:none;content:"x-slicer:bg:url(images/panel-header/panel-header-default-right-bg.gif), stretch:left"}.x-panel-header-default-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-default-vertical .x-panel-header-text-container{background-color:#d7d2d2;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#d7d2d2)}.x-panel-header-default-top{-webkit-box-shadow:#ececec 0 1px 0 0 inset;-moz-box-shadow:#ececec 0 1px 0 0 inset;box-shadow:#ececec 0 1px 0 0 inset}.x-panel-header-default-right{-webkit-box-shadow:#ececec -1px 0 0 0 inset;-moz-box-shadow:#ececec -1px 0 0 0 inset;box-shadow:#ececec -1px 0 0 0 inset}.x-panel-header-default-bottom{-webkit-box-shadow:#ececec 0 -1px 0 0 inset;-moz-box-shadow:#ececec 0 -1px 0 0 inset;box-shadow:#ececec 0 -1px 0 0 inset}.x-panel-header-default-left{-webkit-box-shadow:#ececec 1px 0 0 0 inset;-moz-box-shadow:#ececec 1px 0 0 0 inset;box-shadow:#ececec 1px 0 0 0 inset}.x-panel-header-default .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-default .x-panel-header-glyph{color:#333;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-default .x-panel-header-glyph{color:#858282}.x-panel-header-default-horizontal .x-panel-header-icon-before-title{margin:0 2px 0 0}.x-panel-header-default-horizontal .x-panel-header-icon-after-title{margin:0 0 0 2px}.x-panel-header-default-vertical .x-panel-header-icon-before-title{margin:0 0 2px 0}.x-panel-header-default-vertical .x-panel-header-icon-after-title{margin:2px 0 0 0}.x-panel-header-default-horizontal .x-tool-after-title{margin:0 0 0 2px}.x-panel-header-default-horizontal .x-tool-before-title{margin:0 2px 0 0}.x-panel-header-default-vertical .x-tool-after-title{margin:2px 0 0 0}.x-panel-header-default-vertical .x-tool-before-title{margin:0 0 2px 0}.x-panel-default-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-panel-default-framed{border-color:#d0d0d0;padding:4px}.x-panel-header-default-framed{font-size:11px;border:1px solid #d0d0d0}.x-panel-header-default-framed-horizontal{padding:4px 5px 4px 5px}.x-panel-header-default-framed-horizontal-noborder{padding:5px 6px 4px 6px}.x-panel-header-default-framed-vertical{padding:5px 4px 5px 4px}.x-panel-header-default-framed-vertical-noborder{padding:6px 5px 6px 4px}.x-panel-header-text-container-default-framed{color:#333;font-size:11px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;line-height:15px;padding:0 2px 1px;text-transform:none}.x-panel-body-default-framed{background:#f1f1f1;border-color:#d0d0d0;color:black;font-size:12px;font-size:normal;border-width:0;border-style:solid}.x-panel-default-framed{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:#f1f1f1}.x-panel-default-framed-mc{background-color:#f1f1f1}.x-nbr .x-panel-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-default-framed-frameInfo{font-family:dh-4-4-4-4-1-1-1-1-4-4-4-4}.x-panel-default-framed-tl{background-position:0 -8px}.x-panel-default-framed-tr{background-position:right -12px}.x-panel-default-framed-bl{background-position:0 -16px}.x-panel-default-framed-br{background-position:right -20px}.x-panel-default-framed-ml{background-position:0 top}.x-panel-default-framed-mr{background-position:right top}.x-panel-default-framed-tc{background-position:0 0}.x-panel-default-framed-bc{background-position:0 -4px}.x-panel-default-framed-tr,.x-panel-default-framed-br,.x-panel-default-framed-mr{padding-right:4px}.x-panel-default-framed-tl,.x-panel-default-framed-bl,.x-panel-default-framed-ml{padding-left:4px}.x-panel-default-framed-tc{height:4px}.x-panel-default-framed-bc{height:4px}.x-panel-default-framed-tl,.x-panel-default-framed-bl,.x-panel-default-framed-tr,.x-panel-default-framed-br,.x-panel-default-framed-tc,.x-panel-default-framed-bc,.x-panel-default-framed-ml,.x-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-corners.gif)}.x-panel-default-framed-ml,.x-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-sides.gif);background-repeat:repeat-y}.x-panel-default-framed-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-panel-default-framed-tl,.x-strict .x-ie7 .x-panel-default-framed-bl{position:relative;right:0}.x-panel-default-framed:after{display:none;content:"x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"}.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:4px 5px 4px 5px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:linear-gradient(top,#f0f0f0,#d7d7d7)}.x-panel-header-default-framed-top-mc{background-image:url(images/panel-header/panel-header-default-framed-top-fbg.gif);background-position:0 top;background-color:#d7d2d2}.x-nlg .x-panel-header-default-framed-top{background-image:url(images/panel-header/panel-header-default-framed-top-bg.gif);background-position:0 top}.x-nbr .x-panel-header-default-framed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-top-frameInfo{font-family:dh-4-4-0-0-1-1-0-1-4-5-4-5}.x-panel-header-default-framed-top-tl{background-position:0 -8px}.x-panel-header-default-framed-top-tr{background-position:right -12px}.x-panel-header-default-framed-top-bl{background-position:0 -16px}.x-panel-header-default-framed-top-br{background-position:right -20px}.x-panel-header-default-framed-top-ml{background-position:0 top}.x-panel-header-default-framed-top-mr{background-position:right top}.x-panel-header-default-framed-top-tc{background-position:0 0}.x-panel-header-default-framed-top-bc{background-position:0 -4px}.x-panel-header-default-framed-top-tr,.x-panel-header-default-framed-top-br,.x-panel-header-default-framed-top-mr{padding-right:4px}.x-panel-header-default-framed-top-tl,.x-panel-header-default-framed-top-bl,.x-panel-header-default-framed-top-ml{padding-left:4px}.x-panel-header-default-framed-top-tc{height:4px}.x-panel-header-default-framed-top-bc{height:0}.x-panel-header-default-framed-top-tl,.x-panel-header-default-framed-top-bl,.x-panel-header-default-framed-top-tr,.x-panel-header-default-framed-top-br,.x-panel-header-default-framed-top-tc,.x-panel-header-default-framed-top-bc,.x-panel-header-default-framed-top-ml,.x-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-corners.gif)}.x-panel-header-default-framed-top-ml,.x-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-sides.gif)}.x-panel-header-default-framed-top-mc{padding:1px 2px 4px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-top-tl,.x-strict .x-ie7 .x-panel-header-default-framed-top-bl{position:relative;right:0}.x-panel-header-default-framed-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"}.x-panel-header-default-framed-right{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 4px 5px 4px;border-width:1px 1px 1px 0;border-style:solid;background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:linear-gradient(right,#f0f0f0,#d7d7d7)}.x-panel-header-default-framed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-right-fbg.gif);background-position:right 0;background-color:#d7d2d2}.x-nlg .x-panel-header-default-framed-right{background-image:url(images/panel-header/panel-header-default-framed-right-bg.gif);background-position:right 0}.x-nbr .x-panel-header-default-framed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-right-frameInfo{font-family:dv-0-4-4-0-1-1-1-0-5-4-5-4}.x-panel-header-default-framed-right-tl{background-position:0 0}.x-panel-header-default-framed-right-tr{background-position:0 -4px}.x-panel-header-default-framed-right-bl{background-position:0 -8px}.x-panel-header-default-framed-right-br{background-position:0 -12px}.x-panel-header-default-framed-right-ml{background-position:-4px 0}.x-panel-header-default-framed-right-mr{background-position:right 0}.x-panel-header-default-framed-right-tc{background-position:right 0}.x-panel-header-default-framed-right-bc{background-position:right -4px}.x-panel-header-default-framed-right-tr,.x-panel-header-default-framed-right-br,.x-panel-header-default-framed-right-mr{padding-right:4px}.x-panel-header-default-framed-right-tl,.x-panel-header-default-framed-right-bl,.x-panel-header-default-framed-right-ml{padding-left:0}.x-panel-header-default-framed-right-tc{height:4px}.x-panel-header-default-framed-right-bc{height:4px}.x-panel-header-default-framed-right-tl,.x-panel-header-default-framed-right-bl,.x-panel-header-default-framed-right-tr,.x-panel-header-default-framed-right-br,.x-panel-header-default-framed-right-tc,.x-panel-header-default-framed-right-bc,.x-panel-header-default-framed-right-ml,.x-panel-header-default-framed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-corners.gif)}.x-panel-header-default-framed-right-tc,.x-panel-header-default-framed-right-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-sides.gif);background-repeat:repeat-x}.x-panel-header-default-framed-right-mc{padding:2px 1px 2px 4px}.x-strict .x-ie7 .x-panel-header-default-framed-right-tl,.x-strict .x-ie7 .x-panel-header-default-framed-right-bl{position:relative;right:0}.x-panel-header-default-framed-right:after{display:none;content:"x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-right-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-right-bg.gif), corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif)"}.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:4px 5px 4px 5px;border-width:0 1px 1px 1px;border-style:solid;background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:linear-gradient(top,#f0f0f0,#d7d7d7)}.x-panel-header-default-framed-bottom-mc{background-image:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif);background-position:0 bottom;background-color:#d7d2d2}.x-nlg .x-panel-header-default-framed-bottom{background-image:url(images/panel-header/panel-header-default-framed-bottom-bg.gif);background-position:0 bottom}.x-nbr .x-panel-header-default-framed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-bottom-frameInfo{font-family:dh-0-0-4-4-0-1-1-1-4-5-4-5}.x-panel-header-default-framed-bottom-tl{background-position:0 -8px}.x-panel-header-default-framed-bottom-tr{background-position:right -12px}.x-panel-header-default-framed-bottom-bl{background-position:0 -16px}.x-panel-header-default-framed-bottom-br{background-position:right -20px}.x-panel-header-default-framed-bottom-ml{background-position:0 bottom}.x-panel-header-default-framed-bottom-mr{background-position:right bottom}.x-panel-header-default-framed-bottom-tc{background-position:0 0}.x-panel-header-default-framed-bottom-bc{background-position:0 -4px}.x-panel-header-default-framed-bottom-tr,.x-panel-header-default-framed-bottom-br,.x-panel-header-default-framed-bottom-mr{padding-right:4px}.x-panel-header-default-framed-bottom-tl,.x-panel-header-default-framed-bottom-bl,.x-panel-header-default-framed-bottom-ml{padding-left:4px}.x-panel-header-default-framed-bottom-tc{height:0}.x-panel-header-default-framed-bottom-bc{height:4px}.x-panel-header-default-framed-bottom-tl,.x-panel-header-default-framed-bottom-bl,.x-panel-header-default-framed-bottom-tr,.x-panel-header-default-framed-bottom-br,.x-panel-header-default-framed-bottom-tc,.x-panel-header-default-framed-bottom-bc,.x-panel-header-default-framed-bottom-ml,.x-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-corners.gif)}.x-panel-header-default-framed-bottom-ml,.x-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)}.x-panel-header-default-framed-bottom-mc{padding:4px 2px 1px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl,.x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl{position:relative;right:0}.x-panel-header-default-framed-bottom:after{display:none;content:"x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"}.x-panel-header-default-framed-left{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 4px 5px 4px;border-width:1px 0 1px 1px;border-style:solid;background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:linear-gradient(right,#f0f0f0,#d7d7d7)}.x-panel-header-default-framed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-left-fbg.gif);background-position:left 0;background-color:#d7d2d2}.x-nlg .x-panel-header-default-framed-left{background-image:url(images/panel-header/panel-header-default-framed-left-bg.gif);background-position:left 0}.x-nbr .x-panel-header-default-framed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-left-frameInfo{font-family:dv-4-0-0-4-1-0-1-1-5-4-5-4}.x-panel-header-default-framed-left-tl{background-position:0 0}.x-panel-header-default-framed-left-tr{background-position:0 -4px}.x-panel-header-default-framed-left-bl{background-position:0 -8px}.x-panel-header-default-framed-left-br{background-position:0 -12px}.x-panel-header-default-framed-left-ml{background-position:-4px 0}.x-panel-header-default-framed-left-mr{background-position:right 0}.x-panel-header-default-framed-left-tc{background-position:left 0}.x-panel-header-default-framed-left-bc{background-position:left -4px}.x-panel-header-default-framed-left-tr,.x-panel-header-default-framed-left-br,.x-panel-header-default-framed-left-mr{padding-right:0}.x-panel-header-default-framed-left-tl,.x-panel-header-default-framed-left-bl,.x-panel-header-default-framed-left-ml{padding-left:4px}.x-panel-header-default-framed-left-tc{height:4px}.x-panel-header-default-framed-left-bc{height:4px}.x-panel-header-default-framed-left-tl,.x-panel-header-default-framed-left-bl,.x-panel-header-default-framed-left-tr,.x-panel-header-default-framed-left-br,.x-panel-header-default-framed-left-tc,.x-panel-header-default-framed-left-bc,.x-panel-header-default-framed-left-ml,.x-panel-header-default-framed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-corners.gif)}.x-panel-header-default-framed-left-tc,.x-panel-header-default-framed-left-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-sides.gif);background-repeat:repeat-x}.x-panel-header-default-framed-left-mc{padding:2px 4px 2px 1px}.x-strict .x-ie7 .x-panel-header-default-framed-left-tl,.x-strict .x-ie7 .x-panel-header-default-framed-left-bl{position:relative;right:0}.x-panel-header-default-framed-left:after{display:none;content:"x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-left-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-left-bg.gif), corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif)"}.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:4px 5px 4px 5px;border-width:1px;border-style:solid;background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:linear-gradient(top,#f0f0f0,#d7d7d7)}.x-panel-header-default-framed-collapsed-top-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif);background-position:0 top;background-color:#d7d2d2}.x-nlg .x-panel-header-default-framed-collapsed-top{background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif);background-position:0 top}.x-nbr .x-panel-header-default-framed-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-top-frameInfo{font-family:dh-4-4-4-4-1-1-1-1-4-5-4-5}.x-panel-header-default-framed-collapsed-top-tl{background-position:0 -8px}.x-panel-header-default-framed-collapsed-top-tr{background-position:right -12px}.x-panel-header-default-framed-collapsed-top-bl{background-position:0 -16px}.x-panel-header-default-framed-collapsed-top-br{background-position:right -20px}.x-panel-header-default-framed-collapsed-top-ml{background-position:0 top}.x-panel-header-default-framed-collapsed-top-mr{background-position:right top}.x-panel-header-default-framed-collapsed-top-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-top-bc{background-position:0 -4px}.x-panel-header-default-framed-collapsed-top-tr,.x-panel-header-default-framed-collapsed-top-br,.x-panel-header-default-framed-collapsed-top-mr{padding-right:4px}.x-panel-header-default-framed-collapsed-top-tl,.x-panel-header-default-framed-collapsed-top-bl,.x-panel-header-default-framed-collapsed-top-ml{padding-left:4px}.x-panel-header-default-framed-collapsed-top-tc{height:4px}.x-panel-header-default-framed-collapsed-top-bc{height:4px}.x-panel-header-default-framed-collapsed-top-tl,.x-panel-header-default-framed-collapsed-top-bl,.x-panel-header-default-framed-collapsed-top-tr,.x-panel-header-default-framed-collapsed-top-br,.x-panel-header-default-framed-collapsed-top-tc,.x-panel-header-default-framed-collapsed-top-bc,.x-panel-header-default-framed-collapsed-top-ml,.x-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif)}.x-panel-header-default-framed-collapsed-top-ml,.x-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)}.x-panel-header-default-framed-collapsed-top-mc{padding:1px 2px 1px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-top-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"}.x-panel-header-default-framed-collapsed-right{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:linear-gradient(right,#f0f0f0,#d7d7d7)}.x-panel-header-default-framed-collapsed-right-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif);background-position:right 0;background-color:#d7d2d2}.x-nlg .x-panel-header-default-framed-collapsed-right{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif);background-position:right 0}.x-nbr .x-panel-header-default-framed-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-right-frameInfo{font-family:dv-4-4-4-4-1-1-1-1-5-4-5-4}.x-panel-header-default-framed-collapsed-right-tl{background-position:0 0}.x-panel-header-default-framed-collapsed-right-tr{background-position:0 -4px}.x-panel-header-default-framed-collapsed-right-bl{background-position:0 -8px}.x-panel-header-default-framed-collapsed-right-br{background-position:0 -12px}.x-panel-header-default-framed-collapsed-right-ml{background-position:-4px 0}.x-panel-header-default-framed-collapsed-right-mr{background-position:right 0}.x-panel-header-default-framed-collapsed-right-tc{background-position:right 0}.x-panel-header-default-framed-collapsed-right-bc{background-position:right -4px}.x-panel-header-default-framed-collapsed-right-tr,.x-panel-header-default-framed-collapsed-right-br,.x-panel-header-default-framed-collapsed-right-mr{padding-right:4px}.x-panel-header-default-framed-collapsed-right-tl,.x-panel-header-default-framed-collapsed-right-bl,.x-panel-header-default-framed-collapsed-right-ml{padding-left:4px}.x-panel-header-default-framed-collapsed-right-tc{height:4px}.x-panel-header-default-framed-collapsed-right-bc{height:4px}.x-panel-header-default-framed-collapsed-right-tl,.x-panel-header-default-framed-collapsed-right-bl,.x-panel-header-default-framed-collapsed-right-tr,.x-panel-header-default-framed-collapsed-right-br,.x-panel-header-default-framed-collapsed-right-tc,.x-panel-header-default-framed-collapsed-right-bc,.x-panel-header-default-framed-collapsed-right-ml,.x-panel-header-default-framed-collapsed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif)}.x-panel-header-default-framed-collapsed-right-tc,.x-panel-header-default-framed-collapsed-right-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif);background-repeat:repeat-x}.x-panel-header-default-framed-collapsed-right-mc{padding:2px 1px 2px 1px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-right:after{display:none;content:"x-slicer:stretch:left, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-right-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif)"}.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:4px 5px 4px 5px;border-width:1px;border-style:solid;background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(top,#f0f0f0,#d7d7d7);background-image:linear-gradient(top,#f0f0f0,#d7d7d7)}.x-panel-header-default-framed-collapsed-bottom-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif);background-position:0 bottom;background-color:#d7d2d2}.x-nlg .x-panel-header-default-framed-collapsed-bottom{background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif);background-position:0 bottom}.x-nbr .x-panel-header-default-framed-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-bottom-frameInfo{font-family:dh-4-4-4-4-1-1-1-1-4-5-4-5}.x-panel-header-default-framed-collapsed-bottom-tl{background-position:0 -8px}.x-panel-header-default-framed-collapsed-bottom-tr{background-position:right -12px}.x-panel-header-default-framed-collapsed-bottom-bl{background-position:0 -16px}.x-panel-header-default-framed-collapsed-bottom-br{background-position:right -20px}.x-panel-header-default-framed-collapsed-bottom-ml{background-position:0 bottom}.x-panel-header-default-framed-collapsed-bottom-mr{background-position:right bottom}.x-panel-header-default-framed-collapsed-bottom-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-bottom-bc{background-position:0 -4px}.x-panel-header-default-framed-collapsed-bottom-tr,.x-panel-header-default-framed-collapsed-bottom-br,.x-panel-header-default-framed-collapsed-bottom-mr{padding-right:4px}.x-panel-header-default-framed-collapsed-bottom-tl,.x-panel-header-default-framed-collapsed-bottom-bl,.x-panel-header-default-framed-collapsed-bottom-ml{padding-left:4px}.x-panel-header-default-framed-collapsed-bottom-tc{height:4px}.x-panel-header-default-framed-collapsed-bottom-bc{height:4px}.x-panel-header-default-framed-collapsed-bottom-tl,.x-panel-header-default-framed-collapsed-bottom-bl,.x-panel-header-default-framed-collapsed-bottom-tr,.x-panel-header-default-framed-collapsed-bottom-br,.x-panel-header-default-framed-collapsed-bottom-tc,.x-panel-header-default-framed-collapsed-bottom-bc,.x-panel-header-default-framed-collapsed-bottom-ml,.x-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif)}.x-panel-header-default-framed-collapsed-bottom-ml,.x-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)}.x-panel-header-default-framed-collapsed-bottom-mc{padding:1px 2px 1px 2px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-bottom:after{display:none;content:"x-slicer:stretch:top, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"}.x-panel-header-default-framed-collapsed-left{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-image:none;background-color:#d7d2d2;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#f0f0f0),color-stop(100%,#d7d7d7));background-image:-webkit-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-moz-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:-o-linear-gradient(right,#f0f0f0,#d7d7d7);background-image:linear-gradient(right,#f0f0f0,#d7d7d7)}.x-panel-header-default-framed-collapsed-left-mc{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif);background-position:left 0;background-color:#d7d2d2}.x-nlg .x-panel-header-default-framed-collapsed-left{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif);background-position:left 0}.x-nbr .x-panel-header-default-framed-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-panel-header-default-framed-collapsed-left-frameInfo{font-family:dv-4-4-4-4-1-1-1-1-5-4-5-4}.x-panel-header-default-framed-collapsed-left-tl{background-position:0 0}.x-panel-header-default-framed-collapsed-left-tr{background-position:0 -4px}.x-panel-header-default-framed-collapsed-left-bl{background-position:0 -8px}.x-panel-header-default-framed-collapsed-left-br{background-position:0 -12px}.x-panel-header-default-framed-collapsed-left-ml{background-position:-4px 0}.x-panel-header-default-framed-collapsed-left-mr{background-position:right 0}.x-panel-header-default-framed-collapsed-left-tc{background-position:left 0}.x-panel-header-default-framed-collapsed-left-bc{background-position:left -4px}.x-panel-header-default-framed-collapsed-left-tr,.x-panel-header-default-framed-collapsed-left-br,.x-panel-header-default-framed-collapsed-left-mr{padding-right:4px}.x-panel-header-default-framed-collapsed-left-tl,.x-panel-header-default-framed-collapsed-left-bl,.x-panel-header-default-framed-collapsed-left-ml{padding-left:4px}.x-panel-header-default-framed-collapsed-left-tc{height:4px}.x-panel-header-default-framed-collapsed-left-bc{height:4px}.x-panel-header-default-framed-collapsed-left-tl,.x-panel-header-default-framed-collapsed-left-bl,.x-panel-header-default-framed-collapsed-left-tr,.x-panel-header-default-framed-collapsed-left-br,.x-panel-header-default-framed-collapsed-left-tc,.x-panel-header-default-framed-collapsed-left-bc,.x-panel-header-default-framed-collapsed-left-ml,.x-panel-header-default-framed-collapsed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif)}.x-panel-header-default-framed-collapsed-left-tc,.x-panel-header-default-framed-collapsed-left-bc{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif);background-repeat:repeat-x}.x-panel-header-default-framed-collapsed-left-mc{padding:2px 1px 2px 1px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-left:after{display:none;content:"x-slicer:stretch:right, frame-bg:url(images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif), bg:url(images/panel-header/panel-header-default-framed-collapsed-left-bg.gif), corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif)"}.x-panel .x-panel-header-default-framed-top{border-bottom-width:1px!important}.x-panel .x-panel-header-default-framed-right{border-left-width:1px!important}.x-panel .x-panel-header-default-framed-bottom{border-top-width:1px!important}.x-panel .x-panel-header-default-framed-left{border-right-width:1px!important}.x-nbr .x-panel-header-default-framed-collapsed-top{border-bottom-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-right{border-left-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-bottom{border-top-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-left{border-right-width:0!important}.x-panel-header-default-framed-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-default-framed-vertical .x-panel-header-text-container{background-color:#d7d2d2;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#d7d2d2)}.x-panel-header-default-framed-top{-webkit-box-shadow:#ececec 0 1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset;-moz-box-shadow:#ececec 0 1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset;box-shadow:#ececec 0 1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset}.x-panel-header-default-framed-right{-webkit-box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset;-moz-box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset;box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset}.x-panel-header-default-framed-bottom{-webkit-box-shadow:#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset;-moz-box-shadow:#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset;box-shadow:#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset}.x-panel-header-default-framed-left{-webkit-box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec 1px 0 0 0 inset;-moz-box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec 1px 0 0 0 inset;box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec 1px 0 0 0 inset}.x-panel-header-default-framed .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-default-framed .x-panel-header-glyph{color:#333;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-default-framed .x-panel-header-glyph{color:#858282}.x-panel-header-default-framed-horizontal .x-panel-header-icon-before-title{margin:0 2px 0 0}.x-panel-header-default-framed-horizontal .x-panel-header-icon-after-title{margin:0 0 0 2px}.x-panel-header-default-framed-vertical .x-panel-header-icon-before-title{margin:0 0 2px 0}.x-panel-header-default-framed-vertical .x-panel-header-icon-after-title{margin:2px 0 0 0}.x-panel-header-default-framed-horizontal .x-tool-after-title{margin:0 0 0 2px}.x-panel-header-default-framed-horizontal .x-tool-before-title{margin:0 2px 0 0}.x-panel-header-default-framed-vertical .x-tool-after-title{margin:2px 0 0 0}.x-panel-header-default-framed-vertical .x-tool-before-title{margin:0 0 2px 0}.x-panel-default-framed-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-tip-anchor{position:absolute;overflow:hidden;height:10px;width:10px;border-style:solid;border-width:5px;border-color:#868686;zoom:1}.x-content-box .x-tip-anchor{height:0;width:0}.x-tip-anchor-top{border-top-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-bottom{border-bottom-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-bottom-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-left{border-top-color:transparent;border-bottom-color:transparent;border-left-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-left-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-right{border-top-color:transparent;border-bottom-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.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:#ccc}.x-tip-default-mc{background-color:#ccc}.x-nbr .x-tip-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tip-default-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-tip-default-tl{background-position:0 -6px}.x-tip-default-tr{background-position:right -9px}.x-tip-default-bl{background-position:0 -12px}.x-tip-default-br{background-position:right -15px}.x-tip-default-ml{background-position:0 top}.x-tip-default-mr{background-position:right top}.x-tip-default-tc{background-position:0 0}.x-tip-default-bc{background-position:0 -3px}.x-tip-default-tr,.x-tip-default-br,.x-tip-default-mr{padding-right:3px}.x-tip-default-tl,.x-tip-default-bl,.x-tip-default-ml{padding-left:3px}.x-tip-default-tc{height:3px}.x-tip-default-bc{height:3px}.x-tip-default-tl,.x-tip-default-bl,.x-tip-default-tr,.x-tip-default-br,.x-tip-default-tc,.x-tip-default-bc,.x-tip-default-ml,.x-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-corners.gif)}.x-tip-default-ml,.x-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-sides.gif);background-repeat:repeat-y}.x-tip-default-mc{padding:0}.x-strict .x-ie7 .x-tip-default-tl,.x-strict .x-ie7 .x-tip-default-bl{position:relative;right:0}.x-tip-default:after{display:none;content:"x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"}.x-tip-default{border-color:#868686}.x-tip-default .x-tool-img{background-color:#ccc}.x-tip-header-default .x-tool-after-title{margin:0 0 0 6px}.x-tip-header-default .x-tool-before-title{margin:0 6px 0 0}.x-tip-header-body-default{padding:3px 3px 0 3px}.x-tip-header-text-container-default{color:#444;font-size:11px;font-weight:bold}.x-tip-body-default{padding:3px;color:#444;font-size:11px;font-weight:normal}.x-tip-body-default a{color:#2a2a2a}.x-tip-form-invalid{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:white}.x-tip-form-invalid-mc{background-color:white}.x-nbr .x-tip-form-invalid{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tip-form-invalid-frameInfo{font-family:th-5-5-5-5-1-1-1-1-4-4-4-4}.x-tip-form-invalid-tl{background-position:0 -10px}.x-tip-form-invalid-tr{background-position:right -15px}.x-tip-form-invalid-bl{background-position:0 -20px}.x-tip-form-invalid-br{background-position:right -25px}.x-tip-form-invalid-ml{background-position:0 top}.x-tip-form-invalid-mr{background-position:right top}.x-tip-form-invalid-tc{background-position:0 0}.x-tip-form-invalid-bc{background-position:0 -5px}.x-tip-form-invalid-tr,.x-tip-form-invalid-br,.x-tip-form-invalid-mr{padding-right:5px}.x-tip-form-invalid-tl,.x-tip-form-invalid-bl,.x-tip-form-invalid-ml{padding-left:5px}.x-tip-form-invalid-tc{height:5px}.x-tip-form-invalid-bc{height:5px}.x-tip-form-invalid-tl,.x-tip-form-invalid-bl,.x-tip-form-invalid-tr,.x-tip-form-invalid-br,.x-tip-form-invalid-tc,.x-tip-form-invalid-bc,.x-tip-form-invalid-ml,.x-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-corners.gif)}.x-tip-form-invalid-ml,.x-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-sides.gif);background-repeat:repeat-y}.x-tip-form-invalid-mc{padding:0}.x-strict .x-ie7 .x-tip-form-invalid-tl,.x-strict .x-ie7 .x-tip-form-invalid-bl{position:relative;right:0}.x-tip-form-invalid:after{display:none;content:"x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"}.x-tip-form-invalid{border-color:#a1311f;-webkit-box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset;-moz-box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset;box-shadow:#d87166 0 1px 0 0 inset,#d87166 0 -1px 0 0 inset,#d87166 -1px 0 0 0 inset,#d87166 1px 0 0 0 inset}.x-tip-form-invalid .x-tool-img{background-color:white}.x-tip-header-form-invalid .x-tool-after-title{margin:0 0 0 6px}.x-tip-header-form-invalid .x-tool-before-title{margin:0 6px 0 0}.x-tip-header-body-form-invalid{padding:3px 3px 0 3px}.x-tip-header-text-container-form-invalid{color:#444;font-size:11px;font-weight:bold}.x-tip-body-form-invalid{padding:3px 3px 3px 22px;color:#444;font-size:11px;font-weight:normal}.x-tip-body-form-invalid a{color:#2a2a2a}.x-tip-body-form-invalid{background:1px 1px no-repeat;background-image:url(images/form/exclamation.gif)}.x-tip-body-form-invalid li{margin-bottom:4px}.x-tip-body-form-invalid li.last{margin-bottom:0}.x-btn-group-default{border-color:#d0d0d0;-webkit-box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset;-moz-box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset;box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset}.x-btn-group-header-default{margin:2px 2px 0 2px;padding:1px 0;line-height:15px;background:#dfdfdf;-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}.x-btn-group-header-default .x-tool-img{background-color:#dfdfdf}.x-btn-group-header-text-container-default{font:normal 11px tahoma,arial,verdana,sans-serif;line-height:15px;color:#666}.x-btn-group-body-default{padding:0 1px}.x-btn-group-body-default .x-table-layout{border-spacing:0}.x-btn-group-default-framed{-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:1px 1px 1px 1px;border-width:1px;border-style:solid;background-color:#d6d6d6}.x-btn-group-default-framed-mc{background-color:#d6d6d6}.x-nbr .x-btn-group-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-group-default-framed-frameInfo{font-family:dh-2-2-2-2-1-1-1-1-1-1-1-1}.x-btn-group-default-framed-tl{background-position:0 -4px}.x-btn-group-default-framed-tr{background-position:right -6px}.x-btn-group-default-framed-bl{background-position:0 -8px}.x-btn-group-default-framed-br{background-position:right -10px}.x-btn-group-default-framed-ml{background-position:0 top}.x-btn-group-default-framed-mr{background-position:right top}.x-btn-group-default-framed-tc{background-position:0 0}.x-btn-group-default-framed-bc{background-position:0 -2px}.x-btn-group-default-framed-tr,.x-btn-group-default-framed-br,.x-btn-group-default-framed-mr{padding-right:2px}.x-btn-group-default-framed-tl,.x-btn-group-default-framed-bl,.x-btn-group-default-framed-ml{padding-left:2px}.x-btn-group-default-framed-tc{height:2px}.x-btn-group-default-framed-bc{height:2px}.x-btn-group-default-framed-tl,.x-btn-group-default-framed-bl,.x-btn-group-default-framed-tr,.x-btn-group-default-framed-br,.x-btn-group-default-framed-tc,.x-btn-group-default-framed-bc,.x-btn-group-default-framed-ml,.x-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-corners.gif)}.x-btn-group-default-framed-ml,.x-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-sides.gif);background-repeat:repeat-y}.x-btn-group-default-framed-mc{padding:0}.x-strict .x-ie7 .x-btn-group-default-framed-tl,.x-strict .x-ie7 .x-btn-group-default-framed-bl{position:relative;right:0}.x-btn-group-default-framed:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"}.x-btn-group-default-framed-notitle{-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:1px 1px 1px 1px;border-width:1px;border-style:solid;background-color:#d6d6d6}.x-btn-group-default-framed-notitle-mc{background-color:#d6d6d6}.x-nbr .x-btn-group-default-framed-notitle{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-group-default-framed-notitle-frameInfo{font-family:dh-2-2-2-2-1-1-1-1-1-1-1-1}.x-btn-group-default-framed-notitle-tl{background-position:0 -4px}.x-btn-group-default-framed-notitle-tr{background-position:right -6px}.x-btn-group-default-framed-notitle-bl{background-position:0 -8px}.x-btn-group-default-framed-notitle-br{background-position:right -10px}.x-btn-group-default-framed-notitle-ml{background-position:0 top}.x-btn-group-default-framed-notitle-mr{background-position:right top}.x-btn-group-default-framed-notitle-tc{background-position:0 0}.x-btn-group-default-framed-notitle-bc{background-position:0 -2px}.x-btn-group-default-framed-notitle-tr,.x-btn-group-default-framed-notitle-br,.x-btn-group-default-framed-notitle-mr{padding-right:2px}.x-btn-group-default-framed-notitle-tl,.x-btn-group-default-framed-notitle-bl,.x-btn-group-default-framed-notitle-ml{padding-left:2px}.x-btn-group-default-framed-notitle-tc{height:2px}.x-btn-group-default-framed-notitle-bc{height:2px}.x-btn-group-default-framed-notitle-tl,.x-btn-group-default-framed-notitle-bl,.x-btn-group-default-framed-notitle-tr,.x-btn-group-default-framed-notitle-br,.x-btn-group-default-framed-notitle-tc,.x-btn-group-default-framed-notitle-bc,.x-btn-group-default-framed-notitle-ml,.x-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-corners.gif)}.x-btn-group-default-framed-notitle-ml,.x-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-sides.gif);background-repeat:repeat-y}.x-btn-group-default-framed-notitle-mc{padding:0}.x-strict .x-ie7 .x-btn-group-default-framed-notitle-tl,.x-strict .x-ie7 .x-btn-group-default-framed-notitle-bl{position:relative;right:0}.x-btn-group-default-framed-notitle:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"}.x-btn-group-default-framed{border-color:#d0d0d0;-webkit-box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset;-moz-box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset;box-shadow:#ececec 0 1px 0 0 inset,#ececec 0 -1px 0 0 inset,#ececec -1px 0 0 0 inset,#ececec 1px 0 0 0 inset}.x-btn-group-header-default-framed{margin:2px 2px 0 2px;padding:1px 0;line-height:15px;background:#dfdfdf;-moz-border-radius-topleft:2px;-webkit-border-top-left-radius:2px;border-top-left-radius:2px;-moz-border-radius-topright:2px;-webkit-border-top-right-radius:2px;border-top-right-radius:2px}.x-btn-group-header-default-framed .x-tool-img{background-color:#dfdfdf}.x-btn-group-header-text-container-default-framed{font:normal 11px tahoma,arial,verdana,sans-serif;line-height:15px;color:#666}.x-btn-group-body-default-framed{padding:0 1px 0 1px}.x-btn-group-body-default-framed .x-table-layout{border-spacing:0}.x-window-ghost{filter:alpha(opacity=65);opacity:.65}.x-window-default{border-color:#a9a9a9;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;-webkit-box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 0 -1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset,#ebe7e7 1px 0 0 0 inset;-moz-box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 0 -1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset,#ebe7e7 1px 0 0 0 inset;box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 0 -1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset,#ebe7e7 1px 0 0 0 inset}.x-window-default{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 4px 4px 4px;border-width:1px;border-style:solid;background-color:#e8e8e8}.x-window-default-mc{background-color:#e8e8e8}.x-nbr .x-window-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-default-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-4-4-4}.x-window-default-tl{background-position:0 -10px}.x-window-default-tr{background-position:right -15px}.x-window-default-bl{background-position:0 -20px}.x-window-default-br{background-position:right -25px}.x-window-default-ml{background-position:0 top}.x-window-default-mr{background-position:right top}.x-window-default-tc{background-position:0 0}.x-window-default-bc{background-position:0 -5px}.x-window-default-tr,.x-window-default-br,.x-window-default-mr{padding-right:5px}.x-window-default-tl,.x-window-default-bl,.x-window-default-ml{padding-left:5px}.x-window-default-tc{height:5px}.x-window-default-bc{height:5px}.x-window-default-tl,.x-window-default-bl,.x-window-default-tr,.x-window-default-br,.x-window-default-tc,.x-window-default-bc,.x-window-default-ml,.x-window-default-mr{zoom:1;background-image:url(images/window/window-default-corners.gif)}.x-window-default-ml,.x-window-default-mr{zoom:1;background-image:url(images/window/window-default-sides.gif);background-repeat:repeat-y}.x-window-default-mc{padding:0}.x-strict .x-ie7 .x-window-default-tl,.x-strict .x-ie7 .x-window-default-bl{position:relative;right:0}.x-window-default:after{display:none;content:"x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"}.x-window-body-default{border-color:#bcb1b0;border-width:1px;border-style:solid;background:#e0e0e0;color:black}.x-window-header-default{font-size:11px;border-color:#a9a9a9;zoom:1;background-color:#e8e8e8}.x-window-header-default .x-tool-img{background-color:#e8e8e8}.x-window-header-default-vertical .x-window-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-window-header-default-vertical .x-window-header-text-container{background-color:#e8e8e8;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#e8e8e8)}.x-window-header-text-container-default{color:#333;font-weight:bold;line-height:15px;font-family:tahoma,arial,verdana,sans-serif;font-size:11px;padding:0 2px 1px;text-transform:none}.x-window-header-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:4px 5px 0 5px;border-width:1px 1px 0 1px;border-style:solid;background-color:#e8e8e8}.x-window-header-default-top-mc{background-color:#e8e8e8}.x-nbr .x-window-header-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-top-frameInfo{font-family:dh-5-5-0-0-1-1-0-1-4-5-0-5}.x-window-header-default-top-tl{background-position:0 -10px}.x-window-header-default-top-tr{background-position:right -15px}.x-window-header-default-top-bl{background-position:0 -20px}.x-window-header-default-top-br{background-position:right -25px}.x-window-header-default-top-ml{background-position:0 top}.x-window-header-default-top-mr{background-position:right top}.x-window-header-default-top-tc{background-position:0 0}.x-window-header-default-top-bc{background-position:0 -5px}.x-window-header-default-top-tr,.x-window-header-default-top-br,.x-window-header-default-top-mr{padding-right:5px}.x-window-header-default-top-tl,.x-window-header-default-top-bl,.x-window-header-default-top-ml{padding-left:5px}.x-window-header-default-top-tc{height:5px}.x-window-header-default-top-bc{height:0}.x-window-header-default-top-tl,.x-window-header-default-top-bl,.x-window-header-default-top-tr,.x-window-header-default-top-br,.x-window-header-default-top-tc,.x-window-header-default-top-bc,.x-window-header-default-top-ml,.x-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-corners.gif)}.x-window-header-default-top-ml,.x-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-sides.gif);background-repeat:repeat-y}.x-window-header-default-top-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-top-tl,.x-strict .x-ie7 .x-window-header-default-top-bl{position:relative;right:0}.x-window-header-default-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"}.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:5px;-webkit-border-top-right-radius:5px;border-top-right-radius:5px;-moz-border-radius-bottomright:5px;-webkit-border-bottom-right-radius:5px;border-bottom-right-radius:5px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 4px 5px 0;border-width:1px 1px 1px 0;border-style:solid;background-color:#e8e8e8}.x-window-header-default-right-mc{background-color:#e8e8e8}.x-nbr .x-window-header-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-right-frameInfo{font-family:dh-0-5-5-0-1-1-1-0-5-4-5-0}.x-window-header-default-right-tl{background-position:0 -10px}.x-window-header-default-right-tr{background-position:right -15px}.x-window-header-default-right-bl{background-position:0 -20px}.x-window-header-default-right-br{background-position:right -25px}.x-window-header-default-right-ml{background-position:0 top}.x-window-header-default-right-mr{background-position:right top}.x-window-header-default-right-tc{background-position:0 0}.x-window-header-default-right-bc{background-position:0 -5px}.x-window-header-default-right-tr,.x-window-header-default-right-br,.x-window-header-default-right-mr{padding-right:5px}.x-window-header-default-right-tl,.x-window-header-default-right-bl,.x-window-header-default-right-ml{padding-left:0}.x-window-header-default-right-tc{height:5px}.x-window-header-default-right-bc{height:5px}.x-window-header-default-right-tl,.x-window-header-default-right-bl,.x-window-header-default-right-tr,.x-window-header-default-right-br,.x-window-header-default-right-tc,.x-window-header-default-right-bc,.x-window-header-default-right-ml,.x-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-corners.gif)}.x-window-header-default-right-ml,.x-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-sides.gif);background-repeat:repeat-y}.x-window-header-default-right-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-right-tl,.x-strict .x-ie7 .x-window-header-default-right-bl{position:relative;right:0}.x-window-header-default-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"}.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: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:0 5px 4px 5px;border-width:0 1px 1px 1px;border-style:solid;background-color:#e8e8e8}.x-window-header-default-bottom-mc{background-color:#e8e8e8}.x-nbr .x-window-header-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-bottom-frameInfo{font-family:dh-0-0-5-5-0-1-1-1-0-5-4-5}.x-window-header-default-bottom-tl{background-position:0 -10px}.x-window-header-default-bottom-tr{background-position:right -15px}.x-window-header-default-bottom-bl{background-position:0 -20px}.x-window-header-default-bottom-br{background-position:right -25px}.x-window-header-default-bottom-ml{background-position:0 top}.x-window-header-default-bottom-mr{background-position:right top}.x-window-header-default-bottom-tc{background-position:0 0}.x-window-header-default-bottom-bc{background-position:0 -5px}.x-window-header-default-bottom-tr,.x-window-header-default-bottom-br,.x-window-header-default-bottom-mr{padding-right:5px}.x-window-header-default-bottom-tl,.x-window-header-default-bottom-bl,.x-window-header-default-bottom-ml{padding-left:5px}.x-window-header-default-bottom-tc{height:0}.x-window-header-default-bottom-bc{height:5px}.x-window-header-default-bottom-tl,.x-window-header-default-bottom-bl,.x-window-header-default-bottom-tr,.x-window-header-default-bottom-br,.x-window-header-default-bottom-tc,.x-window-header-default-bottom-bc,.x-window-header-default-bottom-ml,.x-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-corners.gif)}.x-window-header-default-bottom-ml,.x-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-sides.gif);background-repeat:repeat-y}.x-window-header-default-bottom-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-bottom-tl,.x-strict .x-ie7 .x-window-header-default-bottom-bl{position:relative;right:0}.x-window-header-default-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"}.x-window-header-default-left{-moz-border-radius-topleft:5px;-webkit-border-top-left-radius:5px;border-top-left-radius:5px;-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:5px;-webkit-border-bottom-left-radius:5px;border-bottom-left-radius:5px;padding:5px 0 5px 4px;border-width:1px 0 1px 1px;border-style:solid;background-color:#e8e8e8}.x-window-header-default-left-mc{background-color:#e8e8e8}.x-nbr .x-window-header-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-left-frameInfo{font-family:dh-5-0-0-5-1-0-1-1-5-0-5-4}.x-window-header-default-left-tl{background-position:0 -10px}.x-window-header-default-left-tr{background-position:right -15px}.x-window-header-default-left-bl{background-position:0 -20px}.x-window-header-default-left-br{background-position:right -25px}.x-window-header-default-left-ml{background-position:0 top}.x-window-header-default-left-mr{background-position:right top}.x-window-header-default-left-tc{background-position:0 0}.x-window-header-default-left-bc{background-position:0 -5px}.x-window-header-default-left-tr,.x-window-header-default-left-br,.x-window-header-default-left-mr{padding-right:0}.x-window-header-default-left-tl,.x-window-header-default-left-bl,.x-window-header-default-left-ml{padding-left:5px}.x-window-header-default-left-tc{height:5px}.x-window-header-default-left-bc{height:5px}.x-window-header-default-left-tl,.x-window-header-default-left-bl,.x-window-header-default-left-tr,.x-window-header-default-left-br,.x-window-header-default-left-tc,.x-window-header-default-left-bc,.x-window-header-default-left-ml,.x-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-corners.gif)}.x-window-header-default-left-ml,.x-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-sides.gif);background-repeat:repeat-y}.x-window-header-default-left-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-left-tl,.x-strict .x-ie7 .x-window-header-default-left-bl{position:relative;right:0}.x-window-header-default-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"}.x-window-header-default-collapsed-top{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-color:#e8e8e8}.x-window-header-default-collapsed-top-mc{background-color:#e8e8e8}.x-nbr .x-window-header-default-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-top-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-5-4-5}.x-window-header-default-collapsed-top-tl{background-position:0 -10px}.x-window-header-default-collapsed-top-tr{background-position:right -15px}.x-window-header-default-collapsed-top-bl{background-position:0 -20px}.x-window-header-default-collapsed-top-br{background-position:right -25px}.x-window-header-default-collapsed-top-ml{background-position:0 top}.x-window-header-default-collapsed-top-mr{background-position:right top}.x-window-header-default-collapsed-top-tc{background-position:0 0}.x-window-header-default-collapsed-top-bc{background-position:0 -5px}.x-window-header-default-collapsed-top-tr,.x-window-header-default-collapsed-top-br,.x-window-header-default-collapsed-top-mr{padding-right:5px}.x-window-header-default-collapsed-top-tl,.x-window-header-default-collapsed-top-bl,.x-window-header-default-collapsed-top-ml{padding-left:5px}.x-window-header-default-collapsed-top-tc{height:5px}.x-window-header-default-collapsed-top-bc{height:5px}.x-window-header-default-collapsed-top-tl,.x-window-header-default-collapsed-top-bl,.x-window-header-default-collapsed-top-tr,.x-window-header-default-collapsed-top-br,.x-window-header-default-collapsed-top-tc,.x-window-header-default-collapsed-top-bc,.x-window-header-default-collapsed-top-ml,.x-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-corners.gif)}.x-window-header-default-collapsed-top-ml,.x-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-top-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-top-bl{position:relative;right:0}.x-window-header-default-collapsed-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"}.x-window-header-default-collapsed-right{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-color:#e8e8e8}.x-window-header-default-collapsed-right-mc{background-color:#e8e8e8}.x-nbr .x-window-header-default-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-right-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-5-4-5-4}.x-window-header-default-collapsed-right-tl{background-position:0 -10px}.x-window-header-default-collapsed-right-tr{background-position:right -15px}.x-window-header-default-collapsed-right-bl{background-position:0 -20px}.x-window-header-default-collapsed-right-br{background-position:right -25px}.x-window-header-default-collapsed-right-ml{background-position:0 top}.x-window-header-default-collapsed-right-mr{background-position:right top}.x-window-header-default-collapsed-right-tc{background-position:0 0}.x-window-header-default-collapsed-right-bc{background-position:0 -5px}.x-window-header-default-collapsed-right-tr,.x-window-header-default-collapsed-right-br,.x-window-header-default-collapsed-right-mr{padding-right:5px}.x-window-header-default-collapsed-right-tl,.x-window-header-default-collapsed-right-bl,.x-window-header-default-collapsed-right-ml{padding-left:5px}.x-window-header-default-collapsed-right-tc{height:5px}.x-window-header-default-collapsed-right-bc{height:5px}.x-window-header-default-collapsed-right-tl,.x-window-header-default-collapsed-right-bl,.x-window-header-default-collapsed-right-tr,.x-window-header-default-collapsed-right-br,.x-window-header-default-collapsed-right-tc,.x-window-header-default-collapsed-right-bc,.x-window-header-default-collapsed-right-ml,.x-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-corners.gif)}.x-window-header-default-collapsed-right-ml,.x-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-right-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-right-bl{position:relative;right:0}.x-window-header-default-collapsed-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"}.x-window-header-default-collapsed-bottom{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:4px 5px 4px 5px;border-width:1px;border-style:solid;background-color:#e8e8e8}.x-window-header-default-collapsed-bottom-mc{background-color:#e8e8e8}.x-nbr .x-window-header-default-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-bottom-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-4-5-4-5}.x-window-header-default-collapsed-bottom-tl{background-position:0 -10px}.x-window-header-default-collapsed-bottom-tr{background-position:right -15px}.x-window-header-default-collapsed-bottom-bl{background-position:0 -20px}.x-window-header-default-collapsed-bottom-br{background-position:right -25px}.x-window-header-default-collapsed-bottom-ml{background-position:0 top}.x-window-header-default-collapsed-bottom-mr{background-position:right top}.x-window-header-default-collapsed-bottom-tc{background-position:0 0}.x-window-header-default-collapsed-bottom-bc{background-position:0 -5px}.x-window-header-default-collapsed-bottom-tr,.x-window-header-default-collapsed-bottom-br,.x-window-header-default-collapsed-bottom-mr{padding-right:5px}.x-window-header-default-collapsed-bottom-tl,.x-window-header-default-collapsed-bottom-bl,.x-window-header-default-collapsed-bottom-ml{padding-left:5px}.x-window-header-default-collapsed-bottom-tc{height:5px}.x-window-header-default-collapsed-bottom-bc{height:5px}.x-window-header-default-collapsed-bottom-tl,.x-window-header-default-collapsed-bottom-bl,.x-window-header-default-collapsed-bottom-tr,.x-window-header-default-collapsed-bottom-br,.x-window-header-default-collapsed-bottom-tc,.x-window-header-default-collapsed-bottom-bc,.x-window-header-default-collapsed-bottom-ml,.x-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-corners.gif)}.x-window-header-default-collapsed-bottom-ml,.x-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-bottom-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl{position:relative;right:0}.x-window-header-default-collapsed-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"}.x-window-header-default-collapsed-left{-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px;padding:5px 4px 5px 4px;border-width:1px;border-style:solid;background-color:#e8e8e8}.x-window-header-default-collapsed-left-mc{background-color:#e8e8e8}.x-nbr .x-window-header-default-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-left-frameInfo{font-family:dh-5-5-5-5-1-1-1-1-5-4-5-4}.x-window-header-default-collapsed-left-tl{background-position:0 -10px}.x-window-header-default-collapsed-left-tr{background-position:right -15px}.x-window-header-default-collapsed-left-bl{background-position:0 -20px}.x-window-header-default-collapsed-left-br{background-position:right -25px}.x-window-header-default-collapsed-left-ml{background-position:0 top}.x-window-header-default-collapsed-left-mr{background-position:right top}.x-window-header-default-collapsed-left-tc{background-position:0 0}.x-window-header-default-collapsed-left-bc{background-position:0 -5px}.x-window-header-default-collapsed-left-tr,.x-window-header-default-collapsed-left-br,.x-window-header-default-collapsed-left-mr{padding-right:5px}.x-window-header-default-collapsed-left-tl,.x-window-header-default-collapsed-left-bl,.x-window-header-default-collapsed-left-ml{padding-left:5px}.x-window-header-default-collapsed-left-tc{height:5px}.x-window-header-default-collapsed-left-bc{height:5px}.x-window-header-default-collapsed-left-tl,.x-window-header-default-collapsed-left-bl,.x-window-header-default-collapsed-left-tr,.x-window-header-default-collapsed-left-br,.x-window-header-default-collapsed-left-tc,.x-window-header-default-collapsed-left-bc,.x-window-header-default-collapsed-left-ml,.x-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-corners.gif)}.x-window-header-default-collapsed-left-ml,.x-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-left-mc{padding:1px 0 1px 0}.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-left-bl{position:relative;right:0}.x-window-header-default-collapsed-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"}.x-window-header-default-top{-webkit-box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset,#ebe7e7 1px 0 0 0 inset;-moz-box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset,#ebe7e7 1px 0 0 0 inset;box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset,#ebe7e7 1px 0 0 0 inset}.x-window-header-default-right{-webkit-box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 0 -1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset;-moz-box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 0 -1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset;box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 0 -1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset}.x-window-header-default-bottom{-webkit-box-shadow:#ebe7e7 0 -1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset,#ebe7e7 1px 0 0 0 inset;-moz-box-shadow:#ebe7e7 0 -1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset,#ebe7e7 1px 0 0 0 inset;box-shadow:#ebe7e7 0 -1px 0 0 inset,#ebe7e7 -1px 0 0 0 inset,#ebe7e7 1px 0 0 0 inset}.x-window-header-default-left{-webkit-box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 0 -1px 0 0 inset,#ebe7e7 1px 0 0 0 inset;-moz-box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 0 -1px 0 0 inset,#ebe7e7 1px 0 0 0 inset;box-shadow:#ebe7e7 0 1px 0 0 inset,#ebe7e7 0 -1px 0 0 inset,#ebe7e7 1px 0 0 0 inset}.x-window-header-default .x-window-header-icon{width:16px;height:16px;color:#333;font-size:16px;line-height:16px;background-position:center center}.x-window-header-default .x-window-header-glyph{color:#333;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-window-header-default .x-window-header-glyph{color:#8d8d8d}.x-window-header-default-horizontal .x-window-header-icon-before-title{margin:0 2px 0 0}.x-window-header-default-horizontal .x-window-header-icon-after-title{margin:0 0 0 2px}.x-window-header-default-vertical .x-window-header-icon-before-title{margin:0 0 2px 0}.x-window-header-default-vertical .x-window-header-icon-after-title{margin:2px 0 0 0}.x-window-header-default-horizontal .x-tool-after-title{margin:0 0 0 2px}.x-window-header-default-horizontal .x-tool-before-title{margin:0 2px 0 0}.x-window-header-default-vertical .x-tool-after-title{margin:2px 0 0 0}.x-window-header-default-vertical .x-tool-before-title{margin:0 0 2px 0}.x-window-default-collapsed .x-window-header{border-width:1px!important}.x-nbr .x-window-default-collapsed .x-window-header{border-width:0!important}.x-form-invalid-under{padding:2px 2px 2px 20px;color:#c0272b;font:normal 11px tahoma,arial,verdana,sans-serif;line-height:16px;background:no-repeat 0 2px;background-image:url(images/form/exclamation.gif)}div.x-lbl-top-err-icon{margin-bottom:3px}.x-form-invalid-icon{width:16px;height:16px;margin:0 1px;background-image:url(images/form/exclamation.gif);background-repeat:no-repeat}.x-form-item-label{color:black;font:normal 12px/14px tahoma,arial,verdana,sans-serif;margin-top:4px}.x-toolbar-item .x-form-item-label{font:normal 11px/13px tahoma,arial,verdana,sans-serif;margin-top:4px}.x-autocontainer-form-item,.x-anchor-form-item,.x-vbox-form-item,.x-table-form-item{margin-bottom:5px}.x-ie6 .x-form-form-item td{border-top-width:0}.x-ie6 td.x-form-item-pad{height:5px}.x-form-field{color:black}.x-form-item,.x-form-field{font:normal 12px tahoma,arial,verdana,sans-serif}.x-form-type-text textarea.x-form-invalid-field,.x-form-type-text input.x-form-invalid-field,.x-form-type-password textarea.x-form-invalid-field,.x-form-type-password input.x-form-invalid-field,.x-form-type-number textarea.x-form-invalid-field,.x-form-type-number input.x-form-invalid-field,.x-form-type-email textarea.x-form-invalid-field,.x-form-type-email input.x-form-invalid-field,.x-form-type-search textarea.x-form-invalid-field,.x-form-type-search input.x-form-invalid-field,.x-form-type-tel textarea.x-form-invalid-field,.x-form-type-tel input.x-form-invalid-field{background-color:white;background-image:url(images/grid/invalid_line.gif);background-repeat:repeat-x;background-position:bottom;border-color:#c30}.x-item-disabled .x-form-item-label,.x-item-disabled .x-form-field,.x-item-disabled .x-form-display-field,.x-item-disabled .x-form-cb-label,.x-item-disabled .x-form-trigger{filter:alpha(opacity=30);opacity:.3}.x-form-text{color:black;padding:1px 3px 2px 3px;background:white repeat-x 0 0;border-width:1px;border-style:solid;border-color:#b5b8c8;background-image:url(images/form/text-bg.gif);height:22px;line-height:17px}.x-field-toolbar .x-form-text{height:20px;line-height:15px}.x-content-box .x-form-text{height:17px}.x-content-box .x-field-toolbar .x-form-text{height:15px}.x-form-focus{border-color:#a1a1a1}.x-form-empty-field,textarea.x-form-empty-field{color:gray}.x-quirks .x-ie .x-form-text,.x-ie7m .x-form-text{margin-top:-1px;margin-bottom:-1px}.x-form-textarea{line-height:normal;height:auto;background-image:url(images/form/text-bg.gif)}.x-form-display-field-body{height:22px}.x-toolbar-item .x-form-display-field-body{height:20px}.x-form-display-field{font:normal 12px/14px tahoma,arial,verdana,sans-serif;color:black;margin-top:4px}.x-toolbar-item .x-form-display-field{margin-top:4px;font:normal 11px/13px tahoma,arial,verdana,sans-serif}.x-message-box .x-window-body{background-color:#e8e8e8;border-width:0}.x-message-box-info,.x-message-box-warning,.x-message-box-question,.x-message-box-error{background-position:top left;background-repeat:no-repeat}.x-message-box-info{background-image:url(images/shared/icon-info.gif)}.x-message-box-warning{background-image:url(images/shared/icon-warning.gif)}.x-message-box-question{background-image:url(images/shared/icon-question.gif)}.x-message-box-error{background-image:url(images/shared/icon-error.gif)}.x-form-cb-wrap{height:22px}.x-toolbar-item .x-form-cb-wrap{height:20px}.x-form-cb{margin-top:5px}.x-toolbar-item .x-form-cb{margin-top:4px}.x-form-checkbox{width:13px;height:13px;background:url(images/form/checkbox.gif) no-repeat}.x-form-cb-checked .x-form-checkbox{background-position:0 -13px}.x-form-checkbox-focus{background-position:-13px 0}.x-form-cb-checked .x-form-checkbox-focus{background-position:-13px -13px}.x-form-cb-label{margin-top:4px;font:normal 12px/14px tahoma,arial,verdana,sans-serif}.x-toolbar-item .x-form-cb-label{font:normal 11px/13px tahoma,arial,verdana,sans-serif;margin-top:4px}.x-form-cb-label-before{margin-right:4px}.x-form-cb-label-after{margin-left:4px}.x-form-checkboxgroup-body{padding:0 4px}.x-form-invalid .x-form-checkboxgroup-body{border:1px solid #c30;background-image:url(images/grid/invalid_line.gif);background-repeat:repeat-x;background-position:bottom}.x-check-group-alt{background:#d5d5d5;border-top:1px dotted #b4b4b4;border-bottom:1px dotted #b4b4b4}.x-form-check-group-label{color:black;padding:2px;margin:0 30px 5px 0;border-width:0 0 1px 0;border-style:solid;border-color:black}.x-fieldset{border:1px solid #b5b8c8;padding:0 10px;margin:0 0 10px}.x-ie8m .x-fieldset,.x-quirks .x-ie .x-fieldset{padding-top:0}.x-ie8m .x-fieldset .x-fieldset-body,.x-quirks .x-ie .x-fieldset .x-fieldset-body{padding-top:0}.x-fieldset-header-checkbox{line-height:14px;margin:1px 3px 0 0}.x-fieldset-header{padding:0 3px 1px}.x-fieldset-header .x-tool{margin-top:1px;padding:0}.x-fieldset-header .x-form-cb-wrap{padding:1px 0}.x-fieldset-header-text{font:11px/14px bold tahoma,arial,verdana,sans-serif;color:#333;padding:1px 0}.x-fieldset-header-text-collapsible{cursor:pointer}.x-fieldset-with-title .x-fieldset-header-checkbox,.x-fieldset-with-title .x-tool{margin:1px 3px 0 0}.x-webkit .x-fieldset-header{-webkit-padding-start:3px;-webkit-padding-end:3px}.x-opera .x-fieldset-with-legend{margin-top:-1px}.x-opera.x-mac .x-fieldset-header-text{padding:2px 0 0}.x-strict .x-ie8 .x-fieldset-header{margin-bottom:-1px}.x-strict .x-ie8 .x-fieldset-header .x-tool,.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text,.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox{position:relative;top:-1px}.x-quirks .x-ie .x-fieldset-header,.x-ie8m .x-fieldset-header{padding-left:1px;padding-right:1px}.x-fieldset-collapsed .x-fieldset-body{display:none}.x-fieldset-collapsed{padding-bottom:0!important;border-width:1px 1px 0 1px!important;border-left-color:transparent!important;border-right-color:transparent!important}.x-ie6 .x-fieldset-collapsed{border-width:1px 0 0 0!important;padding-bottom:0!important;margin-left:1px;margin-right:1px}.x-ie .x-fieldset-bwrap{zoom:1}.x-fieldset .x-tool-toggle{background-position:0 -60px}.x-fieldset .x-tool-over .x-tool-toggle{background-position:-15px -60px}.x-fieldset-collapsed .x-tool-toggle{background-position:0 -75px}.x-fieldset-collapsed .x-tool-over .x-tool-toggle{background-position:-15px -75px}.x-ie .x-fieldset-noborder legend{position:relative;margin-bottom:23px}.x-ie .x-fieldset-noborder legend span{position:absolute;left:16px}.x-fieldset{overflow:hidden}.x-fieldset-bwrap{overflow:hidden;zoom:1}.x-fieldset-body{overflow:hidden}.x-form-radio{width:13px;height:13px;background:url(images/form/radio.gif) no-repeat}.x-form-cb-checked .x-form-radio{background-position:0 -13px}.x-form-radio-focus{background-position:-13px 0}.x-form-cb-checked .x-form-radio-focus{background-position:-13px -13px}.x-form-trigger{background:url(images/form/trigger.gif);width:17px;border-width:0 0 1px;border-color:#b5b8c8;border-style:solid}.x-trigger-cell{background-color:white;width:17px}.x-form-trigger-over{background-position:-17px 0;border-color:#a1a1a1}.x-form-trigger-wrap-focus .x-form-trigger{background-position:-51px 0;border-color:#a1a1a1}.x-form-trigger-wrap-focus .x-form-trigger-over{background-position:-68px 0}.x-form-trigger-click,.x-form-trigger-wrap-focus .x-form-trigger-click{background-position:-34px 0}.x-form-clear-trigger{background-image:url(images/form/clear-trigger.gif)}.x-form-search-trigger{background-image:url(images/form/search-trigger.gif)}.x-quirks .prefixie6 .x-form-trigger-input-cell{height:22px}.x-quirks .prefixie6 .x-field-toolbar .x-form-trigger-input-cell{height:20px}div.x-form-spinner-up,div.x-form-spinner-down{background-image:url(images/form/spinner.gif);background-color:white;width:17px;height:11px}.x-form-spinner-down{background-position:0 -11px}.x-form-trigger-wrap-focus .x-form-spinner-down{background-position:-51px -11px}.x-form-trigger-wrap .x-form-spinner-down-over{background-position:-17px -11px}.x-form-trigger-wrap-focus .x-form-spinner-down-over{background-position:-68px -11px}.x-form-trigger-wrap .x-form-spinner-down-click{background-position:-34px -11px}.x-toolbar-item div.x-form-spinner-up,.x-toolbar-item div.x-form-spinner-down{background-image:url(images/form/spinner-small.gif);height:10px}.x-toolbar-item .x-form-spinner-down{background-position:0 -10px}.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down{background-position:-51px -10px}.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-over{background-position:-17px -10px}.x-toolbar-item .x-form-trigger-wrap-focus .x-form-spinner-down-over{background-position:-68px -10px}.x-toolbar-item .x-form-trigger-wrap .x-form-spinner-down-click{background-position:-34px -10px}.x-tbar-page-number{width:30px}.x-tbar-page-first{background-image:url(images/grid/page-first.gif)}.x-tbar-page-prev{background-image:url(images/grid/page-prev.gif)}.x-tbar-page-next{background-image:url(images/grid/page-next.gif)}.x-tbar-page-last{background-image:url(images/grid/page-last.gif)}.x-tbar-loading{background-image:url(images/grid/refresh.gif)}.x-item-disabled .x-tbar-page-first{background-image:url(images/grid/page-first-disabled.gif)}.x-item-disabled .x-tbar-page-prev{background-image:url(images/grid/page-prev-disabled.gif)}.x-item-disabled .x-tbar-page-next{background-image:url(images/grid/page-next-disabled.gif)}.x-item-disabled .x-tbar-page-last{background-image:url(images/grid/page-last-disabled.gif)}.x-item-disabled .x-tbar-loading{background-image:url(images/grid/refresh-disabled.gif)}.x-boundlist{border-width:1px;border-style:solid;border-color:#b5b8c8;background:white}.x-strict .x-ie7m .x-boundlist-list-ct{position:relative}.x-boundlist-item{padding:0 3px;line-height:20px;cursor:pointer;cursor:hand;position:relative;zoom:1;border-width:1px;border-style:dotted;border-color:white}.x-boundlist-selected{background:#d3d3d3;border-color:#b3abaa}.x-boundlist-item-over{background:#e0e0e0;border-color:#bfb8b8}.x-boundlist-floating{border-top-width:0}.x-boundlist-above{border-top-width:1px;border-bottom-width:1px}.x-datepicker{border-width:1px;border-style:solid;border-color:#585858;background-color:white;width:177px}.x-datepicker-header{padding:3px 6px;text-align:center;background-image:none;background-color:#6f6f6f;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#777),color-stop(100%,#656565));background-image:-webkit-linear-gradient(top,#777,#656565);background-image:-moz-linear-gradient(top,#777,#656565);background-image:-o-linear-gradient(top,#777,#656565);background-image:linear-gradient(top,#777,#656565)}.x-datepicker-arrow{width:15px;height:15px;top:6px;cursor:pointer;background-color:#6f6f6f;filter:alpha(opacity=70);opacity:.7}a.x-datepicker-arrow:hover{filter:alpha(opacity=100);opacity:1}.x-datepicker-next{right:6px;background-image:url(images/shared/right-btn.gif)}.x-datepicker-prev{left:6px;background-image:url(images/shared/left-btn.gif)}.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}.x-datepicker-month .x-btn-inner{color:white}.x-datepicker-month .x-btn-split-right{background-image:url(images/button/s-arrow-light.gif);padding-right:12px}.x-datepicker-column-header{width:25px;color:#3e3e3e;font:normal 10px tahoma,arial,verdana,sans-serif;text-align:right;border-width:0 0 1px;border-style:solid;border-color:#d0d0d0;background-image:none;background-color:#e9e9e9;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f1f1f1),color-stop(100%,#dfdfdf));background-image:-webkit-linear-gradient(top,#f1f1f1,#dfdfdf);background-image:-moz-linear-gradient(top,#f1f1f1,#dfdfdf);background-image:-o-linear-gradient(top,#f1f1f1,#dfdfdf);background-image:linear-gradient(top,#f1f1f1,#dfdfdf)}.x-datepicker-column-header-inner{line-height:19px;padding:0 7px 0 0}.x-datepicker-cell{text-align:right;border-width:1px;border-style:solid;border-color:white}.x-datepicker-date{padding:0 4px 0 0;font:normal 11px tahoma,arial,verdana,sans-serif;color:black;cursor:pointer;line-height:18px}a.x-datepicker-date:hover{color:black;background-color:transparent}.x-datepicker-selected{border-style:solid;border-color:#b2aaa9}.x-datepicker-selected .x-datepicker-date{background-color:#d8d8d8;font-weight:bold}.x-datepicker-today{border-color:darkred;border-style:solid}.x-datepicker-prevday .x-datepicker-date,.x-datepicker-nextday .x-datepicker-date{color:#aaa}.x-datepicker-disabled a.x-datepicker-date{background-color:#eee;cursor:default;color:#bbb}.x-datepicker-disabled a.x-datepicker-date:hover{background-color:#eee}.x-datepicker-footer,.x-monthpicker-buttons{padding:4px 0;border-width:1px 0 0;border-style:solid;border-color:#d0d0d0;background-image:none;background-color:#e9e9e9;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dfdfdf),color-stop(49%,#d6d6d6),color-stop(51%,#d0d0d0),color-stop(100%,#d2d2d2));background-image:-webkit-linear-gradient(top,#dfdfdf,#d6d6d6 49%,#d0d0d0 51%,#d2d2d2);background-image:-moz-linear-gradient(top,#dfdfdf,#d6d6d6 49%,#d0d0d0 51%,#d2d2d2);background-image:-o-linear-gradient(top,#dfdfdf,#d6d6d6 49%,#d0d0d0 51%,#d2d2d2);background-image:linear-gradient(top,#dfdfdf,#d6d6d6 49%,#d0d0d0 51%,#d2d2d2);text-align:center}.x-datepicker-footer .x-btn,.x-monthpicker-buttons .x-btn{margin:0 2px 0 2px}.x-monthpicker{width:177px;border-width:1px;border-style:solid;border-color:#585858;background-color:white}.x-monthpicker-months{border-width:0 1px 0 0;border-color:#585858;border-style:solid;width:87px}.x-monthpicker-months .x-monthpicker-item{width:43px}.x-monthpicker-years{width:88px}.x-monthpicker-years .x-monthpicker-item{width:44px}.x-monthpicker-item{margin:5px 0 4px;font:normal 11px tahoma,arial,verdana,sans-serif;text-align:center}.x-monthpicker-item-inner{margin:0 5px 0 5px;color:#523a39;border-width:1px;border-style:solid;border-color:white;line-height:16px;cursor:pointer}a.x-monthpicker-item-inner:hover{background-color:transparent}.x-monthpicker-selected{background-color:#d8d8d8;border-style:solid;border-color:#b2aaa9}.x-monthpicker-yearnav{height:27px}.x-monthpicker-yearnav-button-ct{width:44px}.x-monthpicker-yearnav-button{height:15px;width:15px;cursor:pointer;margin-top:6px;background-color:white}.x-monthpicker-yearnav-next{background-image:url(images/tools/tool-sprites.gif);background-position:0 -120px}.x-monthpicker-yearnav-next-over{background-position:-15px -120px}.x-monthpicker-yearnav-prev{background-image:url(images/tools/tool-sprites.gif);background-position:0 -105px}.x-monthpicker-yearnav-prev-over{background-position:-15px -105px}.x-monthpicker-small .x-monthpicker-item{margin:2px 0 2px}.x-monthpicker-small .x-monthpicker-item-inner{margin:0 5px 0 5px}.x-monthpicker-small .x-monthpicker-yearnav{height:22px}.x-monthpicker-small .x-monthpicker-yearnav-button{margin-top:3px}.x-nlg .x-datepicker-header{background-image:url(images/datepicker/datepicker-header-bg.gif);background-repeat:repeat-x;background-position:top left}.x-nlg .x-datepicker-footer,.x-nlg .x-monthpicker-buttons{background-image:url(images/datepicker/datepicker-footer-bg.gif);background-repeat:repeat-x;background-position:top left}.x-datepicker-header:after{display:none;content:"x-slicer:bg:url(images/datepicker/datepicker-header-bg.gif)"}.x-datepicker-footer:after{display:none;content:"x-slicer:bg:url(images/datepicker/datepicker-footer-bg.gif)"}.x-form-date-trigger{background-image:url(images/form/date-trigger.gif)}.x-form-file-wrap .x-form-text{color:gray}.x-color-picker{width:144px;height:90px;background-color:white;border-color:white;border-width:0;border-style:solid}.x-color-picker-item{width:18px;height:18px;border-width:1px;border-color:white;border-style:solid;background-color:white;cursor:pointer;padding:2px}.x-content-box .x-color-picker-item{width:12px;height:12px}a.x-color-picker-item:hover{border-color:#8bb8f3;background-color:#deecfd}.x-color-picker-selected{border-color:#8bb8f3;background-color:#deecfd}.x-color-picker-item-inner{line-height:10px;border-color:#aca899;border-width:1px;border-style:solid}.x-html-editor-tb .x-btn-text{background:transparent no-repeat;background-image:url(images/editor/tb-sprite.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.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.gif)}.x-html-editor-tip .x-tip-bd .x-tip-bd-inner{padding:5px;padding-bottom:1px}.x-html-editor-tb .x-font-select{font-size:11px;font-family:inherit}.x-html-editor-wrap textarea{font:normal 12px tahoma,arial,verdana,sans-serif;background-color:white;resize:none}.x-grid-body{background:white;border-width:1px;border-style:solid;border-color:#d0d0d0}.x-grid-empty{padding:10px;color:gray;background-color:white;font:normal 11px tahoma,arial,verdana,sans-serif}.x-grid-cell{color:null;font:normal 11px/13px tahoma,arial,verdana,sans-serif;background-color:white;border-color:#ededed #c6c6c6 #ededed #c6c6c6;border-style:solid}.x-grid-row-alt .x-grid-td{background-color:#fafafa}.x-grid-row-before-over .x-grid-td{border-bottom-style:solid;border-bottom-color:#ddd}.x-grid-row-over .x-grid-td{border-bottom-style:solid;border-bottom-color:#ddd}.x-grid-row-before-selected .x-grid-td{border-bottom-style:dotted;border-bottom-color:#bfb8b8}.x-grid-row-selected .x-grid-td{border-bottom-style:dotted;border-bottom-color:#bfb8b8}.x-grid-row-before-focused .x-grid-td{border-bottom-style:dotted;border-bottom-color:#464646;border-bottom-width:1px}.x-grid-row-focused .x-grid-td{background-color:#efefef}.x-grid-row-over .x-grid-td{background-color:#efefef}.x-grid-row-selected .x-grid-td{background-color:#e0e0e0}.x-grid-row-focused .x-grid-td{border-bottom-style:dotted;border-bottom-color:#464646;border-bottom-width:1px}.x-grid-table .x-grid-row-focused-first .x-grid-td{border-top:1px dotted #464646}.x-grid-row-selected .x-grid-row-summary .x-grid-td{border-bottom-color:#e0e0e0;border-top-width:0}.x-grid-row-focused .x-grid-row-summary .x-grid-td{border-bottom-color:#efefef;border-top-width:0}.x-grid-with-row-lines .x-grid-td{border-bottom-width:1px}.x-grid-with-row-lines .x-grid-table{border-top:1px solid white}.x-grid-with-row-lines .x-grid-table-over-first{border-top-style:solid;border-top-color:#ddd}.x-grid-with-row-lines .x-grid-table-selected-first{border-top-style:dotted;border-top-color:#bfb8b8}.x-grid-body .x-grid-table-focused-first{border-top:1px dotted #464646}.x-grid-cell-inner{text-overflow:ellipsis;padding:3px 6px 4px 6px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner{padding-top:2px;padding-bottom:3px}.x-grid-cell-special{border-color:#ededed #c6c6c6 #ededed #c6c6c6;border-style:solid;border-right-width:1px;background-image:none;background-color:#f6f6f6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(100%,#e9e9e9));background-image:-webkit-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:-moz-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:-o-linear-gradient(top,#f6f6f6,#e9e9e9);background-image:linear-gradient(top,#f6f6f6,#e9e9e9)}.x-grid-row-selected .x-grid-cell-special{border-right-color:#ededed #d4b7b7;background-image:none;background-color:#e0e0e0;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#e0e0e0),color-stop(100%,#d3d3d3));background-image:-webkit-linear-gradient(left,#e0e0e0,#d3d3d3);background-image:-moz-linear-gradient(left,#e0e0e0,#d3d3d3);background-image:-o-linear-gradient(left,#e0e0e0,#d3d3d3);background-image:linear-gradient(left,#e0e0e0,#d3d3d3)}.x-nlg .x-grid-cell-special{background-repeat:repeat-y;background-image:url(images/grid/cell-special-bg.gif)}.x-nlg .x-grid-row-selected .x-grid-cell-special{background-image:url(images/grid/cell-special-selected-bg.gif)}.x-grid-cell-special .x-grid-cell-special:after{display:none;content:"x-slicer:bg:url(images/grid/cell-special-bg.gif)"}.x-grid-cell-special .x-grid-cell-special-selected:after{display:none;content:"x-slicer:bg:url(images/grid/cell-special-selected-bg.gif)"}.x-grid-dirty-cell{background:url(images/grid/dirty.gif) no-repeat 0 0}.x-grid-row .x-grid-cell-selected{color:null;background-color:#b8cfee}.x-grid-with-col-lines .x-grid-cell{border-right-width:1px}.x-grid-resize-marker{width:1px;background-color:#0f0f0f}.x-grid-drop-indicator{position:absolute;height:1px;line-height:0;background-color:#77bc71;overflow:visible;pointer-events:none}.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}.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}.x-ie6 .x-grid-drop-indicator-left{background-image:url(images/grid/dd-insert-arrow-right.gif)}.x-ie6 .x-grid-drop-indicator-right{background-image:url(images/grid/dd-insert-arrow-left.gif)}.col-move-top,.col-move-bottom{width:9px;height:9px}.col-move-top{background-image:url(images/grid/col-move-top.gif)}.col-move-bottom{background-image:url(images/grid/col-move-bottom.gif)}.x-grid-header-ct{border:1px solid #d0d0d0;border-bottom-color:#c5c5c5;background-color:#c5c5c5;background-image:none;background-color:#c5c5c5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f9f9f9),color-stop(100%,#e3e4e6));background-image:-webkit-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-moz-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-o-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:linear-gradient(top,#f9f9f9,#e3e4e6)}.x-accordion-item .x-grid-header-ct{border-width:0 0 1px!important}.x-accordion-item .x-grid-header-ct-hidden{border:0!important}.x-grid-body{border-top-color:#c5c5c5}.x-hmenu-sort-asc .x-menu-item-icon{background-image:url(images/grid/hmenu-asc.gif)}.x-hmenu-sort-desc .x-menu-item-icon{background-image:url(images/grid/hmenu-desc.gif)}.x-cols-icon .x-menu-item-icon{background-image:url(images/grid/columns.gif)}.x-column-header{border-right:1px solid #c5c5c5;color:black;font:normal 11px/13px tahoma,arial,verdana,sans-serif;background-image:none;background-color:#c5c5c5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f9f9f9),color-stop(100%,#e3e4e6));background-image:-webkit-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-moz-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:-o-linear-gradient(top,#f9f9f9,#e3e4e6);background-image:linear-gradient(top,#f9f9f9,#e3e4e6)}.x-group-sub-header{background:transparent;border-top:1px solid #c5c5c5}.x-group-sub-header .x-column-header-inner{padding:3px 6px 5px 6px}.x-column-header-inner{padding:4px 6px 5px 6px;text-overflow:ellipsis}.x-column-header-over,.x-column-header-sort-ASC,.x-column-header-sort-DESC{background-image:none;background-color:#f0f0f0;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(100%,#f0f0f0));background-image:-webkit-linear-gradient(top,#fff,#f0f0f0);background-image:-moz-linear-gradient(top,#fff,#f0f0f0);background-image:-o-linear-gradient(top,#fff,#f0f0f0);background-image:linear-gradient(top,#fff,#f0f0f0)}.x-nlg .x-grid-header-ct,.x-nlg .x-column-header{background-image:url(images/grid/column-header-bg.gif)}.x-nlg .x-column-header-over,.x-nlg .x-column-header-sort-ASC,.x-nlg .x-column-header-sort-DESC{background-image:url(images/grid/column-header-over-bg.gif)}.x-column-header-open{background-color:transparent}.x-column-header-open .x-column-header-trigger{background-color:transparent}.x-column-header-trigger{width:14px;cursor:pointer;background-color:transparent;background-position:0 center}.x-column-header-align-right .x-column-header-text{margin-right:9px}.x-column-header-sort-ASC .x-column-header-text,.x-column-header-sort-DESC .x-column-header-text{padding-right:12px;background-position:right center}.x-column-header-sort-ASC .x-column-header-text{background-image:url(images/grid/sort_asc.gif)}.x-column-header-sort-DESC .x-column-header-text{background-image:url(images/grid/sort_desc.gif)}.x-column-header:after{display:none;content:"x-slicer:bg:url(images/grid/column-header-bg.gif), stretch:bottom"}.x-column-header-over:after{display:none;content:"x-slicer:bg:url(images/grid/column-header-over-bg.gif), stretch:bottom"}.x-grid-cell-inner-action-col{padding:2px 2px 2px 2px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-action-col{padding-top:1px;padding-bottom:1px}.x-action-col-cell .x-item-disabled{filter:alpha(opacity=30);opacity:.3}.x-action-col-icon{height:16px;width:16px;cursor:pointer}.x-grid-cell-inner-checkcolumn{padding:4px 6px 3px 6px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-checkcolumn{padding-top:3px;padding-bottom:2px}.x-grid-checkcolumn{width:13px;height:13px;background:url(images/form/checkbox.gif) 0 0 no-repeat}.x-item-disabled .x-grid-checkcolumn{filter:alpha(opacity=30);opacity:.3}.x-grid-checkcolumn-checked{background-position:0 -13px}.x-grid-cell-inner-row-numberer{padding:3px 5px 4px 3px}.x-grid-group-hd{border-width:0 0 2px 0;border-style:solid;border-color:#bcb1b0;padding:10px 4px 4px 4px;background:white;cursor:pointer}.x-grid-group-hd-not-collapsible{cursor:default}.x-grid-group-hd-collapsible .x-grid-group-title{background-repeat:no-repeat;background-position:left center;background-image:url(images/grid/group-collapse.gif);padding:0 0 0 14px}.x-grid-group-title{color:#616161;font:bold 11px/13px tahoma,arial,verdana,sans-serif}.x-grid-group-hd-collapsed .x-grid-group-title{background-image:url(images/grid/group-expand.gif)}.x-grid-group-collapsed .x-grid-group-title{background-image:url(images/grid/group-expand.gif)}.x-group-by-icon{background-image:url(images/grid/group-by.gif)}.x-show-groups-icon{background-image:url(images/grid/group-by.gif)}.x-grid-rowbody{font:normal 11px/13px tahoma,arial,verdana,sans-serif;padding:5px 6px 5px 6px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-rowbody{padding-top:6px;padding-bottom:4px}.x-grid-rowwrap{border-color:#ededed #c6c6c6 #ededed #c6c6c6;border-style:solid}.x-summary-bottom{border-bottom-color:#c5c5c5}.x-docked-summary{border-width:1px;border-color:#d0d0d0;border-style:solid}.x-docked-summary .x-grid-table{width:100%}.x-grid-row-summary .x-grid-cell,.x-grid-row-summary .x-grid-rowwrap,.x-grid-row-summary .x-grid-cell-rowbody{border-color:#ededed #c6c6c6 #ededed #c6c6c6;background-color:transparent!important;border-top-width:0;font:normal 11px/13px tahoma,arial,verdana,sans-serif}.x-grid-with-row-lines .x-grid-table-summary{border:0}.x-grid-locked .x-grid-inner-locked{border-width:0 1px 0 0;border-style:solid}.x-grid-inner-locked .x-column-header-last,.x-grid-inner-locked .x-grid-cell-last{border-right-width:0!important}.x-hmenu-lock .x-menu-item-icon{background-image:url(images/grid/hmenu-lock.gif)}.x-hmenu-unlock .x-menu-item-icon{background-image:url(images/grid/hmenu-unlock.gif)}.x-grid-editor .x-form-text{font:normal 11px/15px tahoma,arial,verdana,sans-serif;padding:1px 5px 2px 5px;height:20px}.x-content-box .x-grid-editor .x-form-text{height:15px}.x-gecko .x-grid-editor .x-form-text{padding-left:4px;padding-right:4px}.x-grid-editor .x-form-trigger{height:20px}.x-grid-editor .x-form-spinner-up,.x-grid-editor .x-form-spinner-down{height:10px}.x-grid-editor .x-form-cb{margin-top:4px}.x-grid-editor .x-form-cb-wrap{height:20px}.x-grid-editor .x-form-display-field-body{height:20px}.x-grid-editor .x-form-display-field{font:normal 11px/15px tahoma,arial,verdana,sans-serif;padding:2px 6px 3px 6px;text-overflow:ellipsis}.x-grid-editor .x-form-action-col-field{padding:2px 2px 2px 2px}.x-tree-cell-editor .x-form-text{padding-left:2px;padding-right:2px}.x-gecko .x-tree-cell-editor .x-form-text{padding-left:1px;padding-right:1px}.x-grid-row-editor .x-field{margin:0 1px 0 1px}.x-grid-row-editor .x-form-display-field{padding:2px 5px 3px 5px}.x-grid-row-editor .x-form-action-col-field{padding:2px 1px 2px 1px}.x-grid-row-editor .x-form-text{padding:1px 4px 2px 4px}.x-gecko .x-grid-row-editor .x-form-text{padding-left:3px;padding-right:3px}.x-grid-row-editor .x-panel-body{border-top:1px solid #d0d0d0!important;border-bottom:1px solid #d0d0d0!important;padding:4px 0 4px 0;background-color:#ebe6e6}.x-grid-with-col-lines .x-grid-row-editor .x-form-cb{margin-right:1px}.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:4px 4px 4px 4px;border-width:0 1px 1px 1px;border-style:solid;background-color:#ebe6e6}.x-grid-row-editor-buttons-default-bottom-mc{background-color:#ebe6e6}.x-nbr .x-grid-row-editor-buttons-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-grid-row-editor-buttons-default-bottom-frameInfo{font-family:th-0-0-5-5-0-1-1-1-4-4-4-4}.x-grid-row-editor-buttons-default-bottom-tl{background-position:0 -10px}.x-grid-row-editor-buttons-default-bottom-tr{background-position:right -15px}.x-grid-row-editor-buttons-default-bottom-bl{background-position:0 -20px}.x-grid-row-editor-buttons-default-bottom-br{background-position:right -25px}.x-grid-row-editor-buttons-default-bottom-ml{background-position:0 top}.x-grid-row-editor-buttons-default-bottom-mr{background-position:right top}.x-grid-row-editor-buttons-default-bottom-tc{background-position:0 0}.x-grid-row-editor-buttons-default-bottom-bc{background-position:0 -5px}.x-grid-row-editor-buttons-default-bottom-tr,.x-grid-row-editor-buttons-default-bottom-br,.x-grid-row-editor-buttons-default-bottom-mr{padding-right:5px}.x-grid-row-editor-buttons-default-bottom-tl,.x-grid-row-editor-buttons-default-bottom-bl,.x-grid-row-editor-buttons-default-bottom-ml{padding-left:5px}.x-grid-row-editor-buttons-default-bottom-tc{height:0}.x-grid-row-editor-buttons-default-bottom-bc{height:5px}.x-grid-row-editor-buttons-default-bottom-tl,.x-grid-row-editor-buttons-default-bottom-bl,.x-grid-row-editor-buttons-default-bottom-tr,.x-grid-row-editor-buttons-default-bottom-br,.x-grid-row-editor-buttons-default-bottom-tc,.x-grid-row-editor-buttons-default-bottom-bc,.x-grid-row-editor-buttons-default-bottom-ml,.x-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif)}.x-grid-row-editor-buttons-default-bottom-ml,.x-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif);background-repeat:repeat-y}.x-grid-row-editor-buttons-default-bottom-mc{padding:4px 0 0 0}.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-tl,.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-bl{position:relative;right:0}.x-grid-row-editor-buttons-default-bottom:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"}.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:4px 4px 4px 4px;border-width:1px 1px 0 1px;border-style:solid;background-color:#ebe6e6}.x-grid-row-editor-buttons-default-top-mc{background-color:#ebe6e6}.x-nbr .x-grid-row-editor-buttons-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-grid-row-editor-buttons-default-top-frameInfo{font-family:th-5-5-0-0-1-1-0-1-4-4-4-4}.x-grid-row-editor-buttons-default-top-tl{background-position:0 -10px}.x-grid-row-editor-buttons-default-top-tr{background-position:right -15px}.x-grid-row-editor-buttons-default-top-bl{background-position:0 -20px}.x-grid-row-editor-buttons-default-top-br{background-position:right -25px}.x-grid-row-editor-buttons-default-top-ml{background-position:0 top}.x-grid-row-editor-buttons-default-top-mr{background-position:right top}.x-grid-row-editor-buttons-default-top-tc{background-position:0 0}.x-grid-row-editor-buttons-default-top-bc{background-position:0 -5px}.x-grid-row-editor-buttons-default-top-tr,.x-grid-row-editor-buttons-default-top-br,.x-grid-row-editor-buttons-default-top-mr{padding-right:5px}.x-grid-row-editor-buttons-default-top-tl,.x-grid-row-editor-buttons-default-top-bl,.x-grid-row-editor-buttons-default-top-ml{padding-left:5px}.x-grid-row-editor-buttons-default-top-tc{height:5px}.x-grid-row-editor-buttons-default-top-bc{height:0}.x-grid-row-editor-buttons-default-top-tl,.x-grid-row-editor-buttons-default-top-bl,.x-grid-row-editor-buttons-default-top-tr,.x-grid-row-editor-buttons-default-top-br,.x-grid-row-editor-buttons-default-top-tc,.x-grid-row-editor-buttons-default-top-bc,.x-grid-row-editor-buttons-default-top-ml,.x-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif)}.x-grid-row-editor-buttons-default-top-ml,.x-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif);background-repeat:repeat-y}.x-grid-row-editor-buttons-default-top-mc{padding:0 0 4px 0}.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-tl,.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-bl{position:relative;right:0}.x-grid-row-editor-buttons-default-top:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"}.x-grid-row-editor-buttons-default-bottom{top:29px}.x-grid-row-editor-buttons-default-top{bottom:29px}.x-grid-row-editor-buttons{border-color:#d0d0d0}.x-row-editor-update-button{margin-right:2px}.x-row-editor-cancel-button{margin-left:2px}.x-grid-row-editor-errors .x-tip-body{padding:5px}.x-grid-row-editor-errors-item{list-style:disc;margin-left:15px}.x-grid-cell-inner-row-expander{padding:6px 7px 5px 7px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-inner-row-expander{padding-top:5px;padding-bottom:4px}.x-grid-row-expander{width:9px;height:9px;cursor:pointer;background-image:url(images/grid/group-collapse.gif)}.x-grid-row-collapsed .x-grid-row-expander{background-image:url(images/grid/group-expand.gif)}.x-grid-cell-inner-property-name{background-image:url(images/grid/property-cell-bg.gif);background-repeat:no-repeat;background-position:-16px 2px;padding-left:12px}.x-accordion-layout-ct{background-color:white;padding:0}.x-accordion-hd .x-panel-header-text-container{color:black;font-weight:normal;font-family:tahoma,arial,verdana,sans-serif;text-transform:none}.x-accordion-item{margin:0}.x-accordion-item .x-accordion-hd{background:#e5e5e5;border-top-color:#ececec;padding:4px 5px 5px 5px}.x-accordion-item .x-accordion-hd-sibling-expanded{border-top-color:#d0d0d0}.x-accordion-item .x-accordion-hd-last-collapsed{border-bottom-color:#e5e5e5}.x-accordion-item .x-accordion-body{border-width:0}.x-accordion-hd .x-tool-collapse-top,.x-accordion-hd .x-tool-collapse-bottom{background-position:0 -255px}.x-accordion-hd .x-tool-expand-top,.x-accordion-hd .x-tool-expand-bottom{background-position:0 -240px}.x-accordion-hd .x-tool-over .x-tool-collapse-top,.x-accordion-hd .x-tool-over .x-tool-collapse-bottom{background-position:-15px -255px}.x-accordion-hd .x-tool-over .x-tool-expand-top,.x-accordion-hd .x-tool-over .x-tool-expand-bottom{background-position:-15px -240px}.x-accordion-hd .x-tool-img{background-color:#e5e5e5}.x-collapse-el{cursor:pointer}.x-layout-split-left,.x-layout-split-right{top:50%;margin-top:-18px;width:5px;height:35px}.x-layout-split-top,.x-layout-split-bottom{left:50%;width:35px;height:5px;margin-left:-18px}.x-layout-split-left{background-image:url(images/util/splitter/mini-left.gif)}.x-layout-split-right{background-image:url(images/util/splitter/mini-right.gif)}.x-layout-split-top{background-image:url(images/util/splitter/mini-top.gif)}.x-layout-split-bottom{background-image:url(images/util/splitter/mini-bottom.gif)}.x-splitter-collapsed .x-layout-split-left{background-image:url(images/util/splitter/mini-right.gif)}.x-splitter-collapsed .x-layout-split-right{background-image:url(images/util/splitter/mini-left.gif)}.x-splitter-collapsed .x-layout-split-top{background-image:url(images/util/splitter/mini-bottom.gif)}.x-splitter-collapsed .x-layout-split-bottom{background-image:url(images/util/splitter/mini-top.gif)}.x-splitter-active{background-color:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x-splitter-active .x-collapse-el{filter:alpha(opacity=30);opacity:.3}.x-border-layout-ct{background-color:#e0e0e0}.x-menu-body{background:#f0f0f0;padding:2px}.x-menu-icon-separator{left:24px;border-left:solid 1px #e0e0e0;background-color:white;width:2px}.x-menu-item{padding:1px;cursor:pointer}.x-menu-item-indent{margin-left:30px}.x-menu-item-active{background-image:none;background-color:#e6e6e6;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#eee),color-stop(100%,#dcdcdc));background-image:-webkit-linear-gradient(top,#eee,#dcdcdc);background-image:-moz-linear-gradient(top,#eee,#dcdcdc);background-image:-o-linear-gradient(top,#eee,#dcdcdc);background-image:linear-gradient(top,#eee,#dcdcdc);border-color:#9d9d9d;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;border-width:1px;border-style:solid;padding:0}.x-nlg .x-menu-item-active{background:#e6e6e6 repeat-x left top;background-image:url(images/menu/menu-item-active-bg.gif)}.x-menu-item-link{line-height:22px;padding:0 0 0 30px;display:inline-block}.x-right-check-item-text{padding-right:22px}.x-menu-item-icon{width:16px;height:16px;top:4px;left:3px;background-position:center center}.x-menu-item-glyph{font-size:16px;line-height:16px;color:#222;opacity:.5}.x-ie8m .x-menu-item-glyph{color:#898989}.x-gecko .x-menu-item-active .x-menu-item-icon,.x-quirks .x-menu-item-active .x-menu-item-icon,.x-ie9m .x-menu-item-active .x-menu-item-icon{top:3px;left:2px}.x-menu-item-icon-right{width:16px;height:16px;top:3px;right:3px;background-position:center center}.x-menu-item-text{font-size:11px;color:#222;cursor:pointer;margin-right:16px}.x-menu-item-checked .x-menu-item-icon,.x-menu-item-checked .x-menu-item-icon-right{background-image:url(images/menu/checked.gif)}.x-menu-item-checked .x-menu-group-icon{background-image:url(images/menu/group-checked.gif)}.x-menu-item-unchecked .x-menu-item-icon,.x-menu-item-unchecked .x-menu-item-icon-right{background-image:url(images/menu/unchecked.gif)}.x-menu-item-unchecked .x-menu-group-icon{background-image:none}.x-menu-item-separator{height:2px;border-top:solid 1px #e0e0e0;background-color:white;margin:2px 0;padding:0}.x-menu-item-arrow{width:12px;height:9px;top:7px;right:0;background-image:url(images/menu/menu-parent.gif)}.x-gecko .x-menu-item-active .x-menu-item-arrow,.x-quirks .x-menu-item-active .x-menu-item-arrow,.x-ie9m .x-menu-item-active .x-menu-item-arrow{top:6px;right:-1px}.x-menu-item-disabled{filter:alpha(opacity=50);opacity:.5}.x-content-box .x-menu-icon-separator{width:1px}.x-content-box .x-menu-item-separator{height:1px}.x-ie .x-menu-item-disabled .x-menu-item-icon{filter:alpha(opacity=50);opacity:.5}.x-ie .x-menu-item-disabled .x-menu-item-text{background-color:transparent}.x-menu-date-item{border-color:#99bbe8}.x-menu-item .x-form-item-label{font-size:11px;color:#222}.x-menu-scroll-top{height:8px;background-image:url(images/menu/scroll-top.gif)}.x-menu-scroll-bottom{height:8px;background-image:url(images/menu/scroll-bottom.gif)}.x-menu-scroll-top,.x-menu-scroll-bottom{background-color:#f0f0f0}.x-menu-item-link:after{display:none;content:"x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"}.x-tool{cursor:pointer}.x-tool-img{overflow:hidden;width:15px;height:15px;background-image:url(images/tools/tool-sprites.gif);margin:0}.x-tool-placeholder{visibility:hidden}.x-tool-close{background-position:0 0}.x-tool-minimize{background-position:0 -15px}.x-tool-maximize{background-position:0 -30px}.x-tool-restore{background-position:0 -45px}.x-tool-toggle{background-position:0 -60px}.x-panel-collapsed .x-tool-toggle{background-position:0 -75px}.x-tool-gear{background-position:0 -90px}.x-tool-prev{background-position:0 -105px}.x-tool-next{background-position:0 -120px}.x-tool-pin{background-position:0 -135px}.x-tool-unpin{background-position:0 -150px}.x-tool-right{background-position:0 -165px}.x-tool-left{background-position:0 -180px}.x-tool-down{background-position:0 -195px}.x-tool-up{background-position:0 -210px}.x-tool-refresh{background-position:0 -225px}.x-tool-plus{background-position:0 -240px}.x-tool-minus{background-position:0 -255px}.x-tool-search{background-position:0 -270px}.x-tool-save{background-position:0 -285px}.x-tool-help{background-position:0 -300px}.x-tool-print{background-position:0 -315px}.x-tool-expand{background-position:0 -330px}.x-tool-collapse{background-position:0 -345px}.x-tool-resize{background-position:0 -360px}.x-tool-move{background-position:0 -375px}.x-tool-expand-bottom,.x-tool-collapse-bottom{background-position:0 -195px}.x-tool-expand-top,.x-tool-collapse-top{background-position:0 -210px}.x-tool-expand-left,.x-tool-collapse-left{background-position:0 -180px}.x-tool-expand-right,.x-tool-collapse-right{background-position:0 -165px}.x-tool-over .x-tool-close{background-position:-15px 0}.x-tool-over .x-tool-minimize{background-position:-15px -15px}.x-tool-over .x-tool-maximize{background-position:-15px -30px}.x-tool-over .x-tool-restore{background-position:-15px -45px}.x-tool-over .x-tool-toggle{background-position:-15px -60px}.x-panel-collapsed .x-tool-over .x-tool-toggle{background-position:-15px -75px}.x-tool-over .x-tool-gear{background-position:-15px -90px}.x-tool-over .x-tool-prev{background-position:-15px -105px}.x-tool-over .x-tool-next{background-position:-15px -120px}.x-tool-over .x-tool-pin{background-position:-15px -135px}.x-tool-over .x-tool-unpin{background-position:-15px -150px}.x-tool-over .x-tool-right{background-position:-15px -165px}.x-tool-over .x-tool-left{background-position:-15px -180px}.x-tool-over .x-tool-down{background-position:-15px -195px}.x-tool-over .x-tool-up{background-position:-15px -210px}.x-tool-over .x-tool-refresh{background-position:-15px -225px}.x-tool-over .x-tool-plus{background-position:-15px -240px}.x-tool-over .x-tool-minus{background-position:-15px -255px}.x-tool-over .x-tool-search{background-position:-15px -270px}.x-tool-over .x-tool-save{background-position:-15px -285px}.x-tool-over .x-tool-help{background-position:-15px -300px}.x-tool-over .x-tool-print{background-position:-15px -315px}.x-tool-over .x-tool-expand{background-position:-15px -330px}.x-tool-over .x-tool-collapse{background-position:-15px -345px}.x-tool-over .x-tool-resize{background-position:-15px -360px}.x-tool-over .x-tool-move{background-position:-15px -375px}.x-tool-over .x-tool-expand-bottom,.x-tool-over .x-tool-collapse-bottom{background-position:-15px -195px}.x-tool-over .x-tool-expand-top,.x-tool-over .x-tool-collapse-top{background-position:-15px -210px}.x-tool-over .x-tool-expand-left,.x-tool-over .x-tool-collapse-left{background-position:-15px -180px}.x-tool-over .x-tool-expand-right,.x-tool-over .x-tool-collapse-right{background-position:-15px -165px}.x-resizable-handle{position:absolute;z-index:100;font-size:1px;line-height:6px;overflow:hidden;zoom:1;filter:alpha(opacity=0);opacity:0;background-color:#fff}.x-collapsed .x-resizable-handle{display:none}.x-resizable-over .x-resizable-handle-north{cursor:n-resize}.x-resizable-over .x-resizable-handle-south{cursor:s-resize}.x-resizable-over .x-resizable-handle-east{cursor:e-resize}.x-resizable-over .x-resizable-handle-west{cursor:w-resize}.x-resizable-over .x-resizable-handle-southeast{cursor:se-resize}.x-resizable-over .x-resizable-handle-northwest{cursor:nw-resize}.x-resizable-over .x-resizable-handle-northeast{cursor:ne-resize}.x-resizable-over .x-resizable-handle-southwest{cursor:sw-resize}.x-resizable-handle-east{width:6px;height:100%;right:0;top:0}.x-resizable-handle-south{width:100%;height:6px;left:0;bottom:0}.x-resizable-handle-west{width:6px;height:100%;left:0;top:0}.x-resizable-handle-north{width:100%;height:6px;left:0;top:0}.x-resizable-handle-southeast{width:6px;height:6px;right:0;bottom:0;z-index:101}.x-resizable-handle-northwest{width:6px;height:6px;left:0;top:0;z-index:101}.x-resizable-handle-northeast{width:6px;height:6px;right:0;top:0;z-index:101}.x-resizable-handle-southwest{width:6px;height:6px;left:0;bottom:0;z-index:101}.x-ie .x-resizable-handle-east{margin-right:-1px}.x-ie .x-resizable-handle-south{margin-bottom:-1px}.x-resizable-pinned .x-resizable-handle,.x-resizable-over .x-resizable-handle{filter:alpha(opacity=100);opacity:1}.x-window .x-window-handle{filter:alpha(opacity=0);opacity:0}.x-window-collapsed .x-window-handle{display:none}.x-resizable-proxy{border:1px dashed #3b5a82;position:absolute;overflow:hidden;z-index:50000}.x-resizable-over .x-resizable-handle-east,.x-resizable-over .x-resizable-handle-west,.x-resizable-pinned .x-resizable-handle-east,.x-resizable-pinned .x-resizable-handle-west{background-image:url(images/sizer/e-handle.gif)}.x-resizable-over .x-resizable-handle-south,.x-resizable-over .x-resizable-handle-north,.x-resizable-pinned .x-resizable-handle-south,.x-resizable-pinned .x-resizable-handle-north{background-image:url(images/sizer/s-handle.gif)}.x-resizable-over .x-resizable-handle-southeast,.x-resizable-pinned .x-resizable-handle-southeast{background-position:top left;background-image:url(images/sizer/se-handle.gif)}.x-resizable-over .x-resizable-handle-northwest,.x-resizable-pinned .x-resizable-handle-northwest{background-position:bottom right;background-image:url(images/sizer/nw-handle.gif)}.x-resizable-over .x-resizable-handle-northeast,.x-resizable-pinned .x-resizable-handle-northeast{background-position:bottom left;background-image:url(images/sizer/ne-handle.gif)}.x-resizable-over .x-resizable-handle-southwest,.x-resizable-pinned .x-resizable-handle-southwest{background-position:top right;background-image:url(images/sizer/sw-handle.gif)}.x-slider-horz{padding-left:7px;background:no-repeat 0 -15px}.x-slider-horz .x-slider-end{padding-right:7px;background:no-repeat right -30px}.x-slider-horz .x-slider-inner{height:15px}.x-ie6 .x-form-item .x-slider-horz,.x-ie7 .x-form-item .x-slider-horz,.x-quirks .x-ie .x-form-item .x-slider-horz{margin-top:4px}.x-slider-horz .x-slider-thumb{width:14px;height:15px;margin-left:-7px;background-image:url(images/slider/slider-thumb.png)}.x-slider-horz .x-slider-thumb-over{background-position:-14px -15px}.x-slider-horz .x-slider-thumb-drag{background-position:-28px -30px}.x-slider-vert{padding-top:7px;background:no-repeat -30px 0}.x-slider-vert .x-slider-end{padding-bottom:7px;background:no-repeat -15px bottom;width:15px}.x-slider-vert .x-slider-inner{width:15px}.x-slider-vert .x-slider-thumb{width:15px;height:14px;margin-bottom:-7px;background-image:url(images/slider/slider-v-thumb.png)}.x-slider-vert .x-slider-thumb-over{background-position:-15px -14px}.x-slider-vert .x-slider-thumb-drag{background-position:-30px -28px}.x-slider-horz,.x-slider-horz .x-slider-end,.x-slider-horz .x-slider-inner{background-image:url(images/slider/slider-bg.png)}.x-slider-vert,.x-slider-vert .x-slider-end,.x-slider-vert .x-slider-inner{background-image:url(images/slider/slider-v-bg.png)}.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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#eaeaea;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dcdcdc),color-stop(100%,#eaeaea));background-image:-webkit-linear-gradient(top,#dcdcdc,#eaeaea);background-image:-moz-linear-gradient(top,#dcdcdc,#eaeaea);background-image:-o-linear-gradient(top,#dcdcdc,#eaeaea);background-image:linear-gradient(top,#dcdcdc,#eaeaea)}.x-tab-default-top-mc{background-image:url(images/tab/tab-default-top-fbg.gif);background-position:0 top;background-color:#eaeaea}.x-nlg .x-tab-default-top{background-image:url(images/tab/tab-default-top-bg.gif);background-position:0 top}.x-nbr .x-tab-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-tab-default-top-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x-tab-default-top-tl{background-position:0 -8px}.x-tab-default-top-tr{background-position:right -12px}.x-tab-default-top-bl{background-position:0 -16px}.x-tab-default-top-br{background-position:right -20px}.x-tab-default-top-ml{background-position:0 top}.x-tab-default-top-mr{background-position:right top}.x-tab-default-top-tc{background-position:0 0}.x-tab-default-top-bc{background-position:0 -4px}.x-tab-default-top-tr,.x-tab-default-top-br,.x-tab-default-top-mr{padding-right:4px}.x-tab-default-top-tl,.x-tab-default-top-bl,.x-tab-default-top-ml{padding-left:4px}.x-tab-default-top-tc{height:4px}.x-tab-default-top-bc{height:0}.x-tab-default-top-tl,.x-tab-default-top-bl,.x-tab-default-top-tr,.x-tab-default-top-br,.x-tab-default-top-tc,.x-tab-default-top-bc,.x-tab-default-top-ml,.x-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-top-ml,.x-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif)}.x-tab-default-top-mc{padding:0 6px 3px 6px}.x-strict .x-ie7 .x-tab-default-top-tl,.x-strict .x-ie7 .x-tab-default-top-bl{position:relative;right:0}.x-tab-default-top:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.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:3px 9px 3px 9px;border-width:0 1px 1px 1px;border-style:solid;background-image:none;background-color:#eaeaea;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#dcdcdc),color-stop(100%,#eaeaea));background-image:-webkit-linear-gradient(bottom,#dcdcdc,#eaeaea);background-image:-moz-linear-gradient(bottom,#dcdcdc,#eaeaea);background-image:-o-linear-gradient(bottom,#dcdcdc,#eaeaea);background-image:linear-gradient(bottom,#dcdcdc,#eaeaea)}.x-tab-default-bottom-mc{background-image:url(images/tab/tab-default-bottom-fbg.gif);background-position:0 top;background-color:#eaeaea}.x-nlg .x-tab-default-bottom{background-image:url(images/tab/tab-default-bottom-bg.gif);background-position:0 top}.x-nbr .x-tab-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-tab-default-bottom-frameInfo{font-family:th-0-0-4-4-0-1-1-1-3-9-3-9}.x-tab-default-bottom-tl{background-position:0 -8px}.x-tab-default-bottom-tr{background-position:right -12px}.x-tab-default-bottom-bl{background-position:0 -16px}.x-tab-default-bottom-br{background-position:right -20px}.x-tab-default-bottom-ml{background-position:0 top}.x-tab-default-bottom-mr{background-position:right top}.x-tab-default-bottom-tc{background-position:0 0}.x-tab-default-bottom-bc{background-position:0 -4px}.x-tab-default-bottom-tr,.x-tab-default-bottom-br,.x-tab-default-bottom-mr{padding-right:4px}.x-tab-default-bottom-tl,.x-tab-default-bottom-bl,.x-tab-default-bottom-ml{padding-left:4px}.x-tab-default-bottom-tc{height:0}.x-tab-default-bottom-bc{height:4px}.x-tab-default-bottom-tl,.x-tab-default-bottom-bl,.x-tab-default-bottom-tr,.x-tab-default-bottom-br,.x-tab-default-bottom-tc,.x-tab-default-bottom-bc,.x-tab-default-bottom-ml,.x-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-corners.gif)}.x-tab-default-bottom-ml,.x-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-sides.gif)}.x-tab-default-bottom-mc{padding:3px 6px 0 6px}.x-strict .x-ie7 .x-tab-default-bottom-tl,.x-strict .x-ie7 .x-tab-default-bottom-bl{position:relative;right:0}.x-tab-default-bottom:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-bottom-fbg.gif), bg:url(images/tab/tab-default-bottom-bg.gif), corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"}.x-tab-default-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: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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#eaeaea;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dcdcdc),color-stop(100%,#eaeaea));background-image:-webkit-linear-gradient(top,#dcdcdc,#eaeaea);background-image:-moz-linear-gradient(top,#dcdcdc,#eaeaea);background-image:-o-linear-gradient(top,#dcdcdc,#eaeaea);background-image:linear-gradient(top,#dcdcdc,#eaeaea)}.x-tab-default-left-mc{background-image:url(images/tab/tab-default-top-fbg.gif);background-position:0 top;background-color:#eaeaea}.x-nlg .x-tab-default-left{background-image:url(images/tab/tab-default-top-bg.gif);background-position:0 top}.x-nbr .x-tab-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-tab-default-left-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x-tab-default-left-tl{background-position:0 -8px}.x-tab-default-left-tr{background-position:right -12px}.x-tab-default-left-bl{background-position:0 -16px}.x-tab-default-left-br{background-position:right -20px}.x-tab-default-left-ml{background-position:0 top}.x-tab-default-left-mr{background-position:right top}.x-tab-default-left-tc{background-position:0 0}.x-tab-default-left-bc{background-position:0 -4px}.x-tab-default-left-tr,.x-tab-default-left-br,.x-tab-default-left-mr{padding-right:4px}.x-tab-default-left-tl,.x-tab-default-left-bl,.x-tab-default-left-ml{padding-left:4px}.x-tab-default-left-tc{height:4px}.x-tab-default-left-bc{height:0}.x-tab-default-left-tl,.x-tab-default-left-bl,.x-tab-default-left-tr,.x-tab-default-left-br,.x-tab-default-left-tc,.x-tab-default-left-bc,.x-tab-default-left-ml,.x-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-left-ml,.x-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif)}.x-tab-default-left-mc{padding:0 6px 3px 6px}.x-strict .x-ie7 .x-tab-default-left-tl,.x-strict .x-ie7 .x-tab-default-left-bl{position:relative;right:0}.x-tab-default-left:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x-tab-default-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: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:3px 9px 3px 9px;border-width:1px 1px 0 1px;border-style:solid;background-image:none;background-color:#eaeaea;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dcdcdc),color-stop(100%,#eaeaea));background-image:-webkit-linear-gradient(top,#dcdcdc,#eaeaea);background-image:-moz-linear-gradient(top,#dcdcdc,#eaeaea);background-image:-o-linear-gradient(top,#dcdcdc,#eaeaea);background-image:linear-gradient(top,#dcdcdc,#eaeaea)}.x-tab-default-right-mc{background-image:url(images/tab/tab-default-top-fbg.gif);background-position:0 top;background-color:#eaeaea}.x-nlg .x-tab-default-right{background-image:url(images/tab/tab-default-top-bg.gif);background-position:0 top}.x-nbr .x-tab-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-tab-default-right-frameInfo{font-family:th-4-4-0-0-1-1-0-1-3-9-3-9}.x-tab-default-right-tl{background-position:0 -8px}.x-tab-default-right-tr{background-position:right -12px}.x-tab-default-right-bl{background-position:0 -16px}.x-tab-default-right-br{background-position:right -20px}.x-tab-default-right-ml{background-position:0 top}.x-tab-default-right-mr{background-position:right top}.x-tab-default-right-tc{background-position:0 0}.x-tab-default-right-bc{background-position:0 -4px}.x-tab-default-right-tr,.x-tab-default-right-br,.x-tab-default-right-mr{padding-right:4px}.x-tab-default-right-tl,.x-tab-default-right-bl,.x-tab-default-right-ml{padding-left:4px}.x-tab-default-right-tc{height:4px}.x-tab-default-right-bc{height:0}.x-tab-default-right-tl,.x-tab-default-right-bl,.x-tab-default-right-tr,.x-tab-default-right-br,.x-tab-default-right-tc,.x-tab-default-right-bc,.x-tab-default-right-ml,.x-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-right-ml,.x-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif)}.x-tab-default-right-mc{padding:0 6px 3px 6px}.x-strict .x-ie7 .x-tab-default-right-tl,.x-strict .x-ie7 .x-tab-default-right-bl{position:relative;right:0}.x-tab-default-right:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/tab/tab-default-top-fbg.gif), bg:url(images/tab/tab-default-top-bg.gif), corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x-tab-default{border-color:#b5b5b5;margin:0 0 0 2px;cursor:pointer}.x-tab-default .x-tab-inner{font-size:11px;font-weight:bold;font-family:tahoma,arial,verdana,sans-serif;color:#6f6f6f;line-height:13px}.x-tab-default .x-tab-icon-el{width:16px;height:16px;line-height:16px;background-position:center center}.x-tab-default .x-tab-glyph{font-size:16px;color:#6f6f6f;opacity:.5}.x-ie8m .x-tab-default .x-tab-glyph{color:#acacac}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default{padding-left:0}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-button{padding-left:9px}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-icon-el{left:9px}.x-tab-default-icon .x-tab-inner{width:16px}.x-tab-default-left{margin:0 2px 0 0}.x-tab-default-top,.x-tab-default-left,.x-tab-default-right{border-bottom:1px solid #d0d0d0;background-image:none;background-color:#eaeaea;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dcdcdc),color-stop(100%,#eaeaea));background-image:-webkit-linear-gradient(top,#dcdcdc,#eaeaea);background-image:-moz-linear-gradient(top,#dcdcdc,#eaeaea);background-image:-o-linear-gradient(top,#dcdcdc,#eaeaea);background-image:linear-gradient(top,#dcdcdc,#eaeaea);-webkit-box-shadow:white 0 1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;-moz-box-shadow:white 0 1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;box-shadow:white 0 1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset}.x-nlg .x-tab-default-top,.x-nlg .x-tab-default-left,.x-nlg .x-tab-default-right{background-image:url(images/tab/tab-default-top-bg.gif)}.x-tab-default-bottom{border-top:1px solid #d0d0d0;background-image:none;background-color:#eaeaea;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#dcdcdc),color-stop(100%,#eaeaea));background-image:-webkit-linear-gradient(bottom,#dcdcdc,#eaeaea);background-image:-moz-linear-gradient(bottom,#dcdcdc,#eaeaea);background-image:-o-linear-gradient(bottom,#dcdcdc,#eaeaea);background-image:linear-gradient(bottom,#dcdcdc,#eaeaea);-webkit-box-shadow:white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;-moz-box-shadow:white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;box-shadow:white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset}.x-nlg .x-tab-default-bottom{background-image:url(images/tab/tab-default-bottom-bg.gif)}.x-tab-default-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-tab-default-left{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.x-tab-default-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-tab-default-right{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.x-tab-default-icon-text-left .x-tab-inner{padding-left:20px}.x-tab-default-over{background-color:#f2eeee}.x-tab-default-over .x-tab-glyph{color:#6f6f6f}.x-ie8m .x-tab-default-over .x-tab-glyph{color:#b0aeae}.x-tab-default-top-over,.x-tab-default-left-over,.x-tab-default-right-over{background-image:none;background-color:#f2eeee;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(100%,#f0f0f0));background-image:-webkit-linear-gradient(top,#fff,#f0f0f0);background-image:-moz-linear-gradient(top,#fff,#f0f0f0);background-image:-o-linear-gradient(top,#fff,#f0f0f0);background-image:linear-gradient(top,#fff,#f0f0f0)}.x-nlg .x-tab-default-top-over,.x-nlg .x-tab-default-left-over,.x-nlg .x-tab-default-right-over{background-image:url(images/tab/tab-default-top-over-bg.gif)}.x-tab-default-bottom-over{background-image:none;background-color:#f2eeee;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#fff),color-stop(100%,#f0f0f0));background-image:-webkit-linear-gradient(bottom,#fff,#f0f0f0);background-image:-moz-linear-gradient(bottom,#fff,#f0f0f0);background-image:-o-linear-gradient(bottom,#fff,#f0f0f0);background-image:linear-gradient(bottom,#fff,#f0f0f0)}.x-nlg .x-tab-default-bottom-over{background-image:url(images/tab/tab-default-bottom-over-bg.gif)}.x-tab-default-active{background-color:#eaeaea}.x-tab-default-active .x-tab-inner{color:#333}.x-tab-default-active .x-tab-glyph{color:#333}.x-ie8m .x-tab-default-active .x-tab-glyph{color:#8e8e8e}.x-tab-default-top-active,.x-tab-default-left-active,.x-tab-default-right-active{border-bottom:1px solid #eaeaea;background-image:none;background-color:#eaeaea;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#fff),color-stop(100%,#eaeaea));background-image:-webkit-linear-gradient(top,#fff,#eaeaea);background-image:-moz-linear-gradient(top,#fff,#eaeaea);background-image:-o-linear-gradient(top,#fff,#eaeaea);background-image:linear-gradient(top,#fff,#eaeaea)}.x-nlg .x-tab-default-top-active,.x-nlg .x-tab-default-left-active,.x-nlg .x-tab-default-right-active{background-image:url(images/tab/tab-default-top-active-bg.gif)}.x-tab-default-bottom-active{border-top:1px solid #eaeaea;background-image:none;background-color:#eaeaea;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#fff),color-stop(100%,#eaeaea));background-image:-webkit-linear-gradient(bottom,#fff,#eaeaea);background-image:-moz-linear-gradient(bottom,#fff,#eaeaea);background-image:-o-linear-gradient(bottom,#fff,#eaeaea);background-image:linear-gradient(bottom,#fff,#eaeaea)}.x-nlg .x-tab-default-bottom-active{background-image:url(images/tab/tab-default-bottom-active-bg.gif)}.x-tab-default-disabled{border-color:#dadada;cursor:default}.x-tab-default-disabled .x-tab-inner{color:#b7b7b7}.x-tab-default-disabled .x-tab-icon-el{filter:alpha(opacity=50);opacity:.5}.x-tab-default-disabled .x-tab-glyph{color:#b7b7b7;opacity:.3;filter:none}.x-ie8m .x-tab-default-disabled .x-tab-glyph{color:#ddd}.x-tab-default-top-disabled,.x-tab-default-left-disabled,.x-tab-default-right-disabled{border-color:#dadada #dadada #d0d0d0}.x-tab-default-bottom-disabled{border-color:#d0d0d0 #dadada #dadada #dadada}.x-tab-default-top-disabled,.x-tab-default-left-disabled,.x-tab-default-right-disabled{background-image:none;background-color:#eee;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#eee),color-stop(100%,#f4f4f4));background-image:-webkit-linear-gradient(top,#eee,#f4f4f4);background-image:-moz-linear-gradient(top,#eee,#f4f4f4);background-image:-o-linear-gradient(top,#eee,#f4f4f4);background-image:linear-gradient(top,#eee,#f4f4f4)}.x-nlg .x-tab-default-top-disabled,.x-nlg .x-tab-default-left-disabled,.x-nlg .x-tab-default-right-disabled{background-image:url(images/tab/tab-default-top-disabled-bg.gif)}.x-tab-default-bottom-disabled{background-image:none;background-color:#eee;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#eee),color-stop(100%,#f4f4f4));background-image:-webkit-linear-gradient(bottom,#eee,#f4f4f4);background-image:-moz-linear-gradient(bottom,#eee,#f4f4f4);background-image:-o-linear-gradient(bottom,#eee,#f4f4f4);background-image:linear-gradient(bottom,#eee,#f4f4f4)}.x-nlg .x-tab-default-bottom-disabled{background-image:url(images/tab/tab-default-bottom-disabled-bg.gif)}.x-nbr .x-tab-default{background-image:none}.x-tab-default-top-over .x-frame-tl,.x-tab-default-top-over .x-frame-bl,.x-tab-default-top-over .x-frame-tr,.x-tab-default-top-over .x-frame-br,.x-tab-default-top-over .x-frame-tc,.x-tab-default-top-over .x-frame-bc,.x-tab-default-left-over .x-frame-tl,.x-tab-default-left-over .x-frame-bl,.x-tab-default-left-over .x-frame-tr,.x-tab-default-left-over .x-frame-br,.x-tab-default-left-over .x-frame-tc,.x-tab-default-left-over .x-frame-bc,.x-tab-default-right-over .x-frame-tl,.x-tab-default-right-over .x-frame-bl,.x-tab-default-right-over .x-frame-tr,.x-tab-default-right-over .x-frame-br,.x-tab-default-right-over .x-frame-tc,.x-tab-default-right-over .x-frame-bc{background-image:url(images/tab/tab-default-top-over-corners.gif)}.x-tab-default-top-over .x-frame-ml,.x-tab-default-top-over .x-frame-mr,.x-tab-default-left-over .x-frame-ml,.x-tab-default-left-over .x-frame-mr,.x-tab-default-right-over .x-frame-ml,.x-tab-default-right-over .x-frame-mr{background-image:url(images/tab/tab-default-top-over-sides.gif)}.x-tab-default-top-over .x-frame-mc,.x-tab-default-left-over .x-frame-mc,.x-tab-default-right-over .x-frame-mc{background-color:#f2eeee;background-repeat:repeat-x;background-image:url(images/tab/tab-default-top-over-fbg.gif)}.x-tab-default-bottom-over .x-frame-tl,.x-tab-default-bottom-over .x-frame-bl,.x-tab-default-bottom-over .x-frame-tr,.x-tab-default-bottom-over .x-frame-br,.x-tab-default-bottom-over .x-frame-tc,.x-tab-default-bottom-over .x-frame-bc{background-image:url(images/tab/tab-default-bottom-over-corners.gif)}.x-tab-default-bottom-over .x-frame-ml,.x-tab-default-bottom-over .x-frame-mr{background-image:url(images/tab/tab-default-bottom-over-sides.gif)}.x-tab-default-bottom-over .x-frame-mc{background-color:#f2eeee;background-repeat:repeat-x;background-image:url(images/tab/tab-default-bottom-over-fbg.gif)}.x-tab-default-top-active .x-frame-tl,.x-tab-default-top-active .x-frame-bl,.x-tab-default-top-active .x-frame-tr,.x-tab-default-top-active .x-frame-br,.x-tab-default-top-active .x-frame-tc,.x-tab-default-top-active .x-frame-bc,.x-tab-default-left-active .x-frame-tl,.x-tab-default-left-active .x-frame-bl,.x-tab-default-left-active .x-frame-tr,.x-tab-default-left-active .x-frame-br,.x-tab-default-left-active .x-frame-tc,.x-tab-default-left-active .x-frame-bc,.x-tab-default-right-active .x-frame-tl,.x-tab-default-right-active .x-frame-bl,.x-tab-default-right-active .x-frame-tr,.x-tab-default-right-active .x-frame-br,.x-tab-default-right-active .x-frame-tc,.x-tab-default-right-active .x-frame-bc{background-image:url(images/tab/tab-default-top-active-corners.gif)}.x-tab-default-top-active .x-frame-ml,.x-tab-default-top-active .x-frame-mr,.x-tab-default-left-active .x-frame-ml,.x-tab-default-left-active .x-frame-mr,.x-tab-default-right-active .x-frame-ml,.x-tab-default-right-active .x-frame-mr{background-image:url(images/tab/tab-default-top-active-sides.gif)}.x-tab-default-top-active .x-frame-mc,.x-tab-default-left-active .x-frame-mc,.x-tab-default-right-active .x-frame-mc{background-color:#eaeaea;background-repeat:repeat-x;background-image:url(images/tab/tab-default-top-active-fbg.gif)}.x-tab-default-bottom-active .x-frame-tl,.x-tab-default-bottom-active .x-frame-bl,.x-tab-default-bottom-active .x-frame-tr,.x-tab-default-bottom-active .x-frame-br,.x-tab-default-bottom-active .x-frame-tc,.x-tab-default-bottom-active .x-frame-bc{background-image:url(images/tab/tab-default-bottom-active-corners.gif)}.x-tab-default-bottom-active .x-frame-ml,.x-tab-default-bottom-active .x-frame-mr{background-image:url(images/tab/tab-default-bottom-active-sides.gif)}.x-tab-default-bottom-active .x-frame-mc{background-color:#eaeaea;background-repeat:repeat-x;background-image:url(images/tab/tab-default-bottom-active-fbg.gif)}.x-tab-default-top-disabled .x-frame-tl,.x-tab-default-top-disabled .x-frame-bl,.x-tab-default-top-disabled .x-frame-tr,.x-tab-default-top-disabled .x-frame-br,.x-tab-default-top-disabled .x-frame-tc,.x-tab-default-top-disabled .x-frame-bc,.x-tab-default-left-disabled .x-frame-tl,.x-tab-default-left-disabled .x-frame-bl,.x-tab-default-left-disabled .x-frame-tr,.x-tab-default-left-disabled .x-frame-br,.x-tab-default-left-disabled .x-frame-tc,.x-tab-default-left-disabled .x-frame-bc,.x-tab-default-right-disabled .x-frame-tl,.x-tab-default-right-disabled .x-frame-bl,.x-tab-default-right-disabled .x-frame-tr,.x-tab-default-right-disabled .x-frame-br,.x-tab-default-right-disabled .x-frame-tc,.x-tab-default-right-disabled .x-frame-bc{background-image:url(images/tab/tab-default-top-disabled-corners.gif)}.x-tab-default-top-disabled .x-frame-ml,.x-tab-default-top-disabled .x-frame-mr,.x-tab-default-left-disabled .x-frame-ml,.x-tab-default-left-disabled .x-frame-mr,.x-tab-default-right-disabled .x-frame-ml,.x-tab-default-right-disabled .x-frame-mr{background-image:url(images/tab/tab-default-top-disabled-sides.gif)}.x-tab-default-top-disabled .x-frame-mc,.x-tab-default-left-disabled .x-frame-mc,.x-tab-default-right-disabled .x-frame-mc{background-color:#eee;background-repeat:repeat-x;background-image:url(images/tab/tab-default-top-disabled-fbg.gif)}.x-tab-default-bottom-disabled .x-frame-tl,.x-tab-default-bottom-disabled .x-frame-bl,.x-tab-default-bottom-disabled .x-frame-tr,.x-tab-default-bottom-disabled .x-frame-br,.x-tab-default-bottom-disabled .x-frame-tc,.x-tab-default-bottom-disabled .x-frame-bc{background-image:url(images/tab/tab-default-bottom-disabled-corners.gif)}.x-tab-default-bottom-disabled .x-frame-ml,.x-tab-default-bottom-disabled .x-frame-mr{background-image:url(images/tab/tab-default-bottom-disabled-sides.gif)}.x-tab-default-bottom-disabled .x-frame-mc{background-color:#eee;background-repeat:repeat-x;background-image:url(images/tab/tab-default-bottom-disabled-fbg.gif)}.x-nbr .x-tab-default-top,.x-nbr .x-tab-default-left,.x-nbr .x-tab-default-right{border-bottom-width:1px!important}.x-nbr .x-tab-default-bottom{border-top-width:1px!important}.x-tab-default .x-tab-close-btn{width:11px;height:11px;background-image:url(images/tab/tab-default-close.gif);filter:alpha(opacity=60);opacity:.6}.x-tab-default .x-tab-close-btn-over{filter:alpha(opacity=100);opacity:1}.x-tab-default .x-tab-close-btn{top:2px;right:2px}.x-tab-default-disabled .x-tab-close-btn{filter:alpha(opacity=30);opacity:.3}.x-tab-default-closable .x-tab-wrap{padding-right:14px}.x-tab-default-top-over:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-top-over-bg.gif), corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif), frame-bg:url(images/tab/tab-default-top-over-fbg.gif)"}.x-tab-default-bottom-over:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-bottom-over-bg.gif), corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif), frame-bg:url(images/tab/tab-default-bottom-over-fbg.gif)"}.x-tab-default-top-active:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-top-active-bg.gif), corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif), frame-bg:url(images/tab/tab-default-top-active-fbg.gif)"}.x-tab-default-bottom-active:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-bottom-active-bg.gif), corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif), frame-bg:url(images/tab/tab-default-bottom-active-fbg.gif)"}.x-tab-default-top-disabled:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-top-disabled-bg.gif), corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif), frame-bg:url(images/tab/tab-default-top-disabled-fbg.gif)"}.x-tab-default-bottom-disabled:after{display:none;content:"x-slicer:bg:url(images/tab/tab-default-bottom-disabled-bg.gif), corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif), frame-bg:url(images/tab/tab-default-bottom-disabled-fbg.gif)"}.x-tab-bar-default{border-style:solid;border-color:#d0d0d0}.x-tab-bar-default-top{padding:1px 0 0;border-width:1px 1px 0}.x-tab-bar-default-bottom{padding:0 0 1px 0;border-width:0 1px 1px 1px}.x-tab-bar-default-left{padding:0 0 0 1px;border-width:1px 0 1px 1px}.x-tab-bar-default-right{padding:0 1px 0 0;border-width:1px 1px 1px 0}.x-tab-bar-default-horizontal{height:25px}.x-content-box .x-tab-bar-default-horizontal{height:23px}.x-tab-bar-default-vertical{width:25px}.x-content-box .x-tab-bar-default-vertical{width:23px}.x-tab-bar-body-default-top{padding-bottom:2px}.x-tab-bar-body-default-bottom{padding-top:2px}.x-tab-bar-body-default-left{padding-right:2px}.x-tab-bar-body-default-right{padding-left:2px}.x-tab-bar-strip-default{border-style:solid;border-color:#d0d0d0;background-color:#eaeaea}.x-content-box .x-tab-bar-strip-default-horizontal{height:2px}.x-content-box .x-tab-bar-strip-default-vertical{width:2px}.x-tab-bar-strip-default-top{border-width:1px 0 0 0;height:3px}.x-tab-bar-plain .x-tab-bar-strip-default-top{border-width:1px 1px 0}.x-tab-bar-strip-default-bottom{border-width:0 0 1px 0;height:3px}.x-tab-bar-plain .x-tab-bar-strip-default-bottom{border-width:0 1px 1px 1px}.x-tab-bar-strip-default-left{border-width:0 0 0 1px;width:3px}.x-tab-bar-plain .x-tab-bar-strip-default-left{border-width:1px 0 1px 1px}.x-tab-bar-strip-default-right{border-width:0 1px 0 0;width:3px}.x-tab-bar-plain .x-tab-bar-strip-default-right{border-width:1px 1px 1px 0}.x-tab-bar-default{background-color:#d2d2d2}.x-tab-bar-default-top{background-image:none;background-color:#d2d2d2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#dfdede),color-stop(100%,#d2d2d2));background-image:-webkit-linear-gradient(top,#dfdede,#d2d2d2);background-image:-moz-linear-gradient(top,#dfdede,#d2d2d2);background-image:-o-linear-gradient(top,#dfdede,#d2d2d2);background-image:linear-gradient(top,#dfdede,#d2d2d2)}.x-nlg .x-tab-bar-default-top{background:url(images/tab-bar/tab-bar-default-top-bg.gif)}.x-tab-bar-default-bottom{background-image:none;background-color:#d2d2d2;background-image:-webkit-gradient(linear,50% 100%,50% 0,color-stop(0%,#dfdede),color-stop(100%,#d2d2d2));background-image:-webkit-linear-gradient(bottom,#dfdede,#d2d2d2);background-image:-moz-linear-gradient(bottom,#dfdede,#d2d2d2);background-image:-o-linear-gradient(bottom,#dfdede,#d2d2d2);background-image:linear-gradient(bottom,#dfdede,#d2d2d2)}.x-nlg .x-tab-bar-default-bottom{background:url(images/tab-bar/tab-bar-default-bottom-bg.gif) bottom 0}.x-tab-bar-default-left{background-image:none;background-color:#d2d2d2;background-image:-webkit-gradient(linear,0% 50%,100% 50%,color-stop(0%,#dfdede),color-stop(100%,#d2d2d2));background-image:-webkit-linear-gradient(left,#dfdede,#d2d2d2);background-image:-moz-linear-gradient(left,#dfdede,#d2d2d2);background-image:-o-linear-gradient(left,#dfdede,#d2d2d2);background-image:linear-gradient(left,#dfdede,#d2d2d2)}.x-nlg .x-tab-bar-default-left{background:url(images/tab-bar/tab-bar-default-left-bg.gif)}.x-tab-bar-default-right{background-image:none;background-color:#d2d2d2;background-image:-webkit-gradient(linear,100% 50%,0% 50%,color-stop(0%,#dfdede),color-stop(100%,#d2d2d2));background-image:-webkit-linear-gradient(right,#dfdede,#d2d2d2);background-image:-moz-linear-gradient(right,#dfdede,#d2d2d2);background-image:-o-linear-gradient(right,#dfdede,#d2d2d2);background-image:linear-gradient(right,#dfdede,#d2d2d2)}.x-nlg .x-tab-bar-default-right{background:url(images/tab-bar/tab-bar-default-right-bg.gif) 0 right}.x-tab-bar-default .x-box-scroller{cursor:pointer}.x-tab-bar-default .x-tabbar-scroll-left,.x-tab-bar-default .x-tabbar-scroll-right{height:20px;width:18px}.x-tab-bar-default .x-tabbar-scroll-top,.x-tab-bar-default .x-tabbar-scroll-bottom{width:20px;height:18px}.x-tab-bar-default-bottom .x-box-scroller{margin-top:1px}.x-tab-bar-default-right .x-box-scroller{margin-left:1px}.x-tab-bar-default-top .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-left-top.gif)}.x-tab-bar-default-top .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-right-top.gif)}.x-tab-bar-default-bottom .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-left-bottom.gif)}.x-tab-bar-default-bottom .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-right-bottom.gif)}.x-tab-bar-default-left .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-left.gif)}.x-tab-bar-default-left .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-left.gif)}.x-tab-bar-default-right .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top-right.gif)}.x-tab-bar-default-right .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom-right.gif)}.x-tab-bar-default .x-tabbar-scroll-left-hover,.x-tab-bar-default .x-tabbar-scroll-right-hover{background-position:-18px 0}.x-tab-bar-default .x-tabbar-scroll-top-hover,.x-tab-bar-default .x-tabbar-scroll-bottom-hover{background-position:0 -18px}.x-tab-bar-default .x-box-scroller-disabled{filter:alpha(opacity=50);opacity:.5;cursor:default}.x-tab-bar-default-top:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-top-bg.gif), stretch:bottom"}.x-tab-bar-default-bottom:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-bottom-bg.gif), stretch:top"}.x-tab-bar-default-left:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-left-bg.gif), stretch:right"}.x-tab-bar-default-right:after{display:none;content:"x-slicer:bg:url(images/tab-bar/tab-bar-default-right-bg.gif), stretch:left"}.x-tab-bar-plain{border-width:0;padding:0;height:23px}.x-column-header-checkbox{border-color:#c5c5c5}.x-grid-row-checker,.x-column-header-checkbox .x-column-header-text{height:13px;width:13px;background-image:url(images/form/checkbox.gif);line-height:13px}.x-column-header-checkbox .x-column-header-inner{padding:5px 5px 4px 5px}.x-grid-cell-row-checker .x-grid-cell-inner{padding:4px 5px 3px 5px}.x-grid-no-row-lines .x-grid-row-focused .x-grid-cell-row-checker .x-grid-cell-inner{padding-top:3px;padding-bottom:2px}.x-grid-hd-checker-on .x-column-header-text,.x-grid-row-selected .x-grid-row-checker,.x-grid-row-checked .x-grid-row-checker{background-position:0 -13px}.x-tree-expander{cursor:pointer}.x-tree-arrows .x-tree-expander{background-image:url(images/tree/arrows.gif)}.x-tree-arrows .x-tree-expander-over .x-tree-expander{background-position:-32px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander{background-position:-16px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander{background-position:-48px center}.x-tree-lines .x-tree-elbow{background-image:url(images/tree/elbow.gif)}.x-tree-lines .x-tree-elbow-end{background-image:url(images/tree/elbow-end.gif)}.x-tree-lines .x-tree-elbow-plus{background-image:url(images/tree/elbow-plus.gif)}.x-tree-lines .x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-plus.gif)}.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus{background-image:url(images/tree/elbow-minus.gif)}.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-minus.gif)}.x-tree-lines .x-tree-elbow-line{background-image:url(images/tree/elbow-line.gif)}.x-tree-no-row-lines .x-tree-expander{background-image:url(images/tree/elbow-plus-nl.gif)}.x-tree-no-row-lines .x-grid-tree-node-expanded .x-tree-expander{background-image:url(images/tree/elbow-minus-nl.gif)}.x-tree-icon{width:16px;height:20px}.x-tree-elbow-img{width:16px;height:20px;margin-right:0}.x-tree-icon,.x-tree-elbow-img,.x-tree-checkbox{margin-top:-3px;margin-bottom:-4px}.x-tree-icon-leaf{background-image:url(images/tree/leaf.gif)}.x-tree-icon-parent{background-image:url(images/tree/folder.gif)}.x-grid-tree-node-expanded .x-tree-icon-parent{background-image:url(images/tree/folder-open.gif)}.x-tree-checkbox{margin-right:3px;top:4px;width:13px;height:13px;background-image:url(images/form/checkbox.gif)}.x-tree-checkbox-checked{background-position:0 -13px}.x-grid-tree-loading .x-tree-icon{background-image:url(images/tree/loading.gif)}.x-grid-cell-inner-treecolumn{font-size:1px;line-height:0}.x-tree-node-text{font-size:11px;line-height:13px;padding-left:3px}.x-grid-cell-inner-treecolumn{padding:3px 6px 4px 0}.x-tree-drop-ok-append .x-dd-drop-icon{background-image:url(images/tree/drop-append.gif)}.x-tree-drop-ok-above .x-dd-drop-icon{background-image:url(images/tree/drop-above.gif)}.x-tree-drop-ok-below .x-dd-drop-icon{background-image:url(images/tree/drop-below.gif)}.x-tree-drop-ok-between .x-dd-drop-icon{background-image:url(images/tree/drop-between.gif)}.x-tree-ddindicator{height:1px;border-width:1px 0 0;border-style:dotted;border-color:green}.x-box-tl{background:transparent no-repeat 0 0;zoom:1}.x-box-tc{height:8px;background:transparent repeat-x 0 0;overflow:hidden}.x-box-tr{background:transparent no-repeat right -8px}.x-box-ml{background:transparent repeat-y 0;padding-left:4px;overflow:hidden;zoom:1}.x-box-mc{background:repeat-x 0 -16px;padding:4px 10px}.x-box-mc h3{margin:0 0 4px 0;zoom:1}.x-box-mr{background:transparent repeat-y right;padding-right:4px;overflow:hidden}.x-box-bl{background:transparent no-repeat 0 -16px;zoom:1}.x-box-bc{background:transparent repeat-x 0 -8px;height:8px;overflow:hidden}.x-box-br{background:transparent no-repeat right -24px}.x-box-tl,.x-box-bl{padding-left:8px;overflow:hidden}.x-box-tr,.x-box-br{padding-right:8px;overflow:hidden}.x-box-tl{background-image:url(images/box/corners.gif)}.x-box-tc{background-image:url(images/box/tb.gif)}.x-box-tr{background-image:url(images/box/corners.gif)}.x-box-ml{background-image:url(images/box/l.gif)}.x-box-mc{background-color:#eee;background-image:url(images/box/tb.gif);font-family:"Myriad Pro","Myriad Web","Tahoma","Helvetica","Arial",sans-serif;color:#393939;font-size:15px}.x-box-mc h3{font-size:18px;font-weight:bold}.x-box-mr{background-image:url(images/box/r.gif)}.x-box-bl{background-image:url(images/box/corners.gif)}.x-box-bc{background-image:url(images/box/tb.gif)}.x-box-br{background-image:url(images/box/corners.gif)}.x-box-blue .x-box-bl,.x-box-blue .x-box-br,.x-box-blue .x-box-tl,.x-box-blue .x-box-tr{background-image:url(images/box/corners-blue.gif)}.x-box-blue .x-box-bc,.x-box-blue .x-box-mc,.x-box-blue .x-box-tc{background-image:url(images/box/tb-blue.gif)}.x-box-blue .x-box-mc{background-color:#c3daf9}.x-box-blue .x-box-mc h3{color:#17385b}.x-box-blue .x-box-ml{background-image:url(images/box/l-blue.gif)}.x-box-blue .x-box-mr{background-image:url(images/box/r-blue.gif)}.x-message-box .x-msg-box-wait{background-image:url(images/shared/blue-loading.gif)}.x-form-trigger{height:22px}.x-content-box .x-form-trigger{height:21px}.x-field-toolbar .x-form-trigger{height:20px}.x-content-box .x-field-toolbar .x-form-trigger{height:19px}.x-content-box div.x-form-spinner-up,.x-content-box div.x-form-spinner-down{height:10px}.x-content-box .x-toolbar-item div.x-form-spinner-up,.x-content-box .x-toolbar-item div.x-form-spinner-down{height:9px}.x-html-editor-wrap .x-toolbar{border-left-color:#b5b8c8;border-top-color:#b5b8c8;border-right-color:#b5b8c8}.x-html-editor-input{border:1px solid #b5b8c8;border-top-width:0}.x-column-header-trigger{background-color:#c5c5c5;background-image:url(images/grid/grid3-hd-btn.gif)}.x-content-box .x-grid-editor .x-form-trigger{height:19px}.x-grid-editor .x-form-spinner-up,.x-grid-editor .x-form-spinner-down{background-image:url(images/form/spinner-small.gif)}.x-content-box .x-grid-editor .x-form-spinner-up,.x-content-box .x-grid-editor .x-form-spinner-down{height:9px}.x-accordion-hd{border-width:1px 0!important;-webkit-box-shadow:inset 0 0 0 0 #e5e5e5;-moz-box-shadow:inset 0 0 0 0 #e5e5e5;box-shadow:inset 0 0 0 0 #e5e5e5}.x-accordion-hd-sibling-expanded{-webkit-box-shadow:inset 0 1px 0 0 #ececec;-moz-box-shadow:inset 0 1px 0 0 #ececec;box-shadow:inset 0 1px 0 0 #ececec}.x-resizable-over .x-resizable-handle-east,.x-resizable-over .x-resizable-handle-west,.x-resizable-pinned .x-resizable-handle-east,.x-resizable-pinned .x-resizable-handle-west{background-position:left}.x-resizable-over .x-resizable-handle-south,.x-resizable-over .x-resizable-handle-north,.x-resizable-pinned .x-resizable-handle-south,.x-resizable-pinned .x-resizable-handle-north{background-position:top}.x-resizable-over .x-resizable-handle-southeast,.x-resizable-pinned .x-resizable-handle-southeast{background-position:top left}.x-resizable-over .x-resizable-handle-northwest,.x-resizable-pinned .x-resizable-handle-northwest{background-position:bottom right}.x-resizable-over .x-resizable-handle-northeast,.x-resizable-pinned .x-resizable-handle-northeast{background-position:bottom left}.x-resizable-over .x-resizable-handle-southwest,.x-resizable-pinned .x-resizable-handle-southwest{background-position:top right}.x-ie6 .x-slider-horz,.x-ie6 .x-slider-horz .x-slider-end,.x-ie6 .x-slider-horz .x-slider-inner{background-image:url(images/slider/slider-bg.gif)}.x-ie6 .x-slider-horz .x-slider-thumb{background-image:url(images/slider/slider-thumb.gif)}.x-ie6 .x-slider-vert,.x-ie6 .x-slider-vert .x-slider-end,.x-ie6 .x-slider-vert .x-slider-inner{background-image:url(images/slider/slider-v-bg.gif)}.x-ie6 .x-slider-vert .x-slider-thumb{background-image:url(images/slider/slider-v-thumb.gif)}.x-tab-icon-el{top:-1px}.x-tab-noicon .x-tab-icon{display:none} \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/boundlist/trigger-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/boundlist/trigger-arrow.png new file mode 100644 index 0000000..11daac3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/boundlist/trigger-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/corners-blue.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/corners-blue.gif new file mode 100644 index 0000000..fa419b5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/corners-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/corners.gif new file mode 100644 index 0000000..8aa8cae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/l-blue.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/l-blue.gif new file mode 100644 index 0000000..5ed7f00 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/l-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/l.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/l.gif new file mode 100644 index 0000000..0160f97 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/l.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/r-blue.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/r-blue.gif new file mode 100644 index 0000000..3ea5cae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/r-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/r.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/r.gif new file mode 100644 index 0000000..34237f6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/r.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/tb-blue.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/tb-blue.gif new file mode 100644 index 0000000..562fecc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/tb-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/tb.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/tb.gif new file mode 100644 index 0000000..435889b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/box/tb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn-group/btn-group-default-framed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn-group/btn-group-default-framed-corners.gif new file mode 100644 index 0000000..f4f23a8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn-group/btn-group-default-framed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn-group/btn-group-default-framed-notitle-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn-group/btn-group-default-framed-notitle-corners.gif new file mode 100644 index 0000000..f4f23a8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn-group/btn-group-default-framed-notitle-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn-group/btn-group-default-framed-notitle-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn-group/btn-group-default-framed-notitle-sides.gif new file mode 100644 index 0000000..ade080d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn-group/btn-group-default-framed-notitle-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn-group/btn-group-default-framed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn-group/btn-group-default-framed-sides.gif new file mode 100644 index 0000000..54f2691 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn-group/btn-group-default-framed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-bg.gif new file mode 100644 index 0000000..e401e3c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-corners.gif new file mode 100644 index 0000000..db04465 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-disabled-bg.gif new file mode 100644 index 0000000..de4829c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-disabled-corners.gif new file mode 100644 index 0000000..65a7b9e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-disabled-fbg.gif new file mode 100644 index 0000000..3259baf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-disabled-sides.gif new file mode 100644 index 0000000..1ef57a6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-fbg.gif new file mode 100644 index 0000000..346d491 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-focus-bg.gif new file mode 100644 index 0000000..6e1e3d9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-focus-corners.gif new file mode 100644 index 0000000..2f4aec0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-focus-fbg.gif new file mode 100644 index 0000000..42f0269 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-focus-sides.gif new file mode 100644 index 0000000..7228fc0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-over-bg.gif new file mode 100644 index 0000000..6e1e3d9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-over-corners.gif new file mode 100644 index 0000000..2f4aec0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-over-fbg.gif new file mode 100644 index 0000000..42f0269 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-over-sides.gif new file mode 100644 index 0000000..7228fc0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-pressed-bg.gif new file mode 100644 index 0000000..fb07359 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-pressed-corners.gif new file mode 100644 index 0000000..36e7d8c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-pressed-fbg.gif new file mode 100644 index 0000000..11268b7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-pressed-sides.gif new file mode 100644 index 0000000..bfe2376 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-sides.gif new file mode 100644 index 0000000..b9f4777 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-large-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-bg.gif new file mode 100644 index 0000000..842cd77 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-corners.gif new file mode 100644 index 0000000..db04465 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-disabled-bg.gif new file mode 100644 index 0000000..6fdc4bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-disabled-corners.gif new file mode 100644 index 0000000..65a7b9e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-disabled-fbg.gif new file mode 100644 index 0000000..716d642 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-disabled-sides.gif new file mode 100644 index 0000000..74c933f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-fbg.gif new file mode 100644 index 0000000..8cbb503 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-focus-bg.gif new file mode 100644 index 0000000..ba105dc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-focus-corners.gif new file mode 100644 index 0000000..2f4aec0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-focus-fbg.gif new file mode 100644 index 0000000..8f585ed Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-focus-sides.gif new file mode 100644 index 0000000..7d75be5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-over-bg.gif new file mode 100644 index 0000000..ba105dc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-over-corners.gif new file mode 100644 index 0000000..2f4aec0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-over-fbg.gif new file mode 100644 index 0000000..8f585ed Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-over-sides.gif new file mode 100644 index 0000000..7d75be5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-pressed-bg.gif new file mode 100644 index 0000000..ea86499 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-pressed-corners.gif new file mode 100644 index 0000000..36e7d8c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-pressed-fbg.gif new file mode 100644 index 0000000..bb8fc6b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-pressed-sides.gif new file mode 100644 index 0000000..c975dad Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-sides.gif new file mode 100644 index 0000000..cf6da87 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-medium-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-bg.gif new file mode 100644 index 0000000..fdf1764 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-corners.gif new file mode 100644 index 0000000..307913c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-disabled-bg.gif new file mode 100644 index 0000000..d92011f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-disabled-corners.gif new file mode 100644 index 0000000..65a7b9e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-disabled-fbg.gif new file mode 100644 index 0000000..223c126 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-disabled-sides.gif new file mode 100644 index 0000000..ddb2019 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-fbg.gif new file mode 100644 index 0000000..16a04a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-focus-bg.gif new file mode 100644 index 0000000..5ff2f4d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-focus-corners.gif new file mode 100644 index 0000000..25a9e7a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-focus-fbg.gif new file mode 100644 index 0000000..4febe54 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-focus-sides.gif new file mode 100644 index 0000000..0baef7a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-over-bg.gif new file mode 100644 index 0000000..5ff2f4d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-over-corners.gif new file mode 100644 index 0000000..f8be1d9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-over-fbg.gif new file mode 100644 index 0000000..4febe54 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-over-sides.gif new file mode 100644 index 0000000..0baef7a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-pressed-bg.gif new file mode 100644 index 0000000..70b02f1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-pressed-corners.gif new file mode 100644 index 0000000..6483b24 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-pressed-fbg.gif new file mode 100644 index 0000000..b809e56 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-pressed-sides.gif new file mode 100644 index 0000000..36c717d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-sides.gif new file mode 100644 index 0000000..129eb8a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-small-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-disabled-corners.gif new file mode 100644 index 0000000..b797cb4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-disabled-sides.gif new file mode 100644 index 0000000..662cdc0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-focus-bg.gif new file mode 100644 index 0000000..6e1e3d9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-focus-corners.gif new file mode 100644 index 0000000..0cca1ff Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-focus-fbg.gif new file mode 100644 index 0000000..42f0269 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-focus-sides.gif new file mode 100644 index 0000000..7228fc0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-over-bg.gif new file mode 100644 index 0000000..6e1e3d9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-over-corners.gif new file mode 100644 index 0000000..0cca1ff Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-over-fbg.gif new file mode 100644 index 0000000..42f0269 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-over-sides.gif new file mode 100644 index 0000000..7228fc0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-pressed-bg.gif new file mode 100644 index 0000000..fb07359 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-pressed-corners.gif new file mode 100644 index 0000000..2acf3b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-pressed-fbg.gif new file mode 100644 index 0000000..11268b7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-pressed-sides.gif new file mode 100644 index 0000000..bfe2376 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-large-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-disabled-corners.gif new file mode 100644 index 0000000..c1d1616 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-disabled-sides.gif new file mode 100644 index 0000000..662cdc0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-focus-bg.gif new file mode 100644 index 0000000..ba105dc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-focus-corners.gif new file mode 100644 index 0000000..2f4aec0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-focus-fbg.gif new file mode 100644 index 0000000..8f585ed Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-focus-sides.gif new file mode 100644 index 0000000..7d75be5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-over-bg.gif new file mode 100644 index 0000000..ba105dc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-over-corners.gif new file mode 100644 index 0000000..2f4aec0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-over-fbg.gif new file mode 100644 index 0000000..8f585ed Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-over-sides.gif new file mode 100644 index 0000000..7d75be5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-pressed-bg.gif new file mode 100644 index 0000000..ea86499 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-pressed-corners.gif new file mode 100644 index 0000000..36e7d8c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-pressed-fbg.gif new file mode 100644 index 0000000..bb8fc6b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-pressed-sides.gif new file mode 100644 index 0000000..c975dad Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-medium-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-disabled-corners.gif new file mode 100644 index 0000000..efe1f57 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-disabled-sides.gif new file mode 100644 index 0000000..662cdc0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-focus-bg.gif new file mode 100644 index 0000000..5ff2f4d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-focus-corners.gif new file mode 100644 index 0000000..2f4aec0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-focus-fbg.gif new file mode 100644 index 0000000..4febe54 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-focus-sides.gif new file mode 100644 index 0000000..0baef7a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-over-bg.gif new file mode 100644 index 0000000..5ff2f4d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-over-corners.gif new file mode 100644 index 0000000..2f4aec0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-over-fbg.gif new file mode 100644 index 0000000..4febe54 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-over-sides.gif new file mode 100644 index 0000000..0baef7a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-pressed-bg.gif new file mode 100644 index 0000000..70b02f1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-pressed-corners.gif new file mode 100644 index 0000000..6483b24 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-pressed-fbg.gif new file mode 100644 index 0000000..b809e56 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-pressed-sides.gif new file mode 100644 index 0000000..36c717d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/btn/btn-default-toolbar-small-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/arrow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/arrow.gif new file mode 100644 index 0000000..3ab4f71 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/arrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/btn-arrow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/btn-arrow.gif new file mode 100644 index 0000000..f90d5df Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/btn-arrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/btn-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/btn-sprite.gif new file mode 100644 index 0000000..834ff97 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/btn-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/btn.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/btn.gif new file mode 100644 index 0000000..96ea61a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/group-cs.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/group-cs.gif new file mode 100644 index 0000000..7059e2b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/group-cs.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/group-lr.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/group-lr.gif new file mode 100644 index 0000000..3f41fbd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/group-lr.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/group-tb.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/group-tb.gif new file mode 100644 index 0000000..c5ea8ca Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/group-tb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-b-noline.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-b-noline.gif new file mode 100644 index 0000000..a4220ee Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-b-noline.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-b.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-b.gif new file mode 100644 index 0000000..84b6470 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-b.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-bo.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-bo.gif new file mode 100644 index 0000000..52a05ca Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-bo.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-light-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-light-rtl.gif new file mode 100644 index 0000000..cfa5ca3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-light-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-light.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-light.gif new file mode 100644 index 0000000..08783c9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-light.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-noline-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-noline-rtl.gif new file mode 100644 index 0000000..c242ef2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-noline-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-noline.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-noline.gif new file mode 100644 index 0000000..0953eab Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-noline.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-o-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-o-rtl.gif new file mode 100644 index 0000000..3fc6ae2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-o-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-o.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-o.gif new file mode 100644 index 0000000..52a5141 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-o.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-rtl.gif new file mode 100644 index 0000000..8f556c5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow.gif new file mode 100644 index 0000000..8940774 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/button/s-arrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/datepicker/datepicker-footer-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/datepicker/datepicker-footer-bg.gif new file mode 100644 index 0000000..b028371 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/datepicker/datepicker-footer-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/datepicker/datepicker-header-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/datepicker/datepicker-header-bg.gif new file mode 100644 index 0000000..21011a1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/datepicker/datepicker-header-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/dd/drop-add.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/dd/drop-add.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/dd/drop-add.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/dd/drop-no.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/dd/drop-no.gif new file mode 100644 index 0000000..08d0833 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/dd/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/dd/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/dd/drop-yes.gif new file mode 100644 index 0000000..8aacb30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/dd/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/editor/tb-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/editor/tb-sprite.gif new file mode 100644 index 0000000..fb70577 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/editor/tb-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/checkbox.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/checkbox.gif new file mode 100644 index 0000000..835b346 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/checkbox.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/clear-trigger-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/clear-trigger-rtl.gif new file mode 100644 index 0000000..940399a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/clear-trigger-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/clear-trigger.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/clear-trigger.gif new file mode 100644 index 0000000..be3ff58 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/clear-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/date-trigger-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/date-trigger-rtl.gif new file mode 100644 index 0000000..6359765 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/date-trigger-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/date-trigger.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/date-trigger.gif new file mode 100644 index 0000000..e0537cb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/date-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/error-tip-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/error-tip-corners.gif new file mode 100644 index 0000000..6ea4c38 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/error-tip-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/exclamation.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/exclamation.gif new file mode 100644 index 0000000..ea31a30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/exclamation.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/radio.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/radio.gif new file mode 100644 index 0000000..db3a530 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/radio.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/search-trigger-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/search-trigger-rtl.gif new file mode 100644 index 0000000..3ff3846 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/search-trigger-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/search-trigger.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/search-trigger.gif new file mode 100644 index 0000000..0cc4f59 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/search-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/spinner-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/spinner-rtl.gif new file mode 100644 index 0000000..ff14c06 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/spinner-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/spinner-small-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/spinner-small-rtl.gif new file mode 100644 index 0000000..70c536e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/spinner-small-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/spinner-small.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/spinner-small.gif new file mode 100644 index 0000000..e70f8d8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/spinner-small.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/spinner.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/spinner.gif new file mode 100644 index 0000000..1e323bf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/spinner.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/text-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/text-bg.gif new file mode 100644 index 0000000..4179607 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/text-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/trigger-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/trigger-rtl.gif new file mode 100644 index 0000000..65205d6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/trigger-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/trigger-square-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/trigger-square-rtl.gif new file mode 100644 index 0000000..a86f6ce Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/trigger-square-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/trigger-square.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/trigger-square.gif new file mode 100644 index 0000000..7a0f585 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/trigger-square.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/trigger-tpl-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/trigger-tpl-rtl.gif new file mode 100644 index 0000000..1e766e4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/trigger-tpl-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/trigger-tpl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/trigger-tpl.gif new file mode 100644 index 0000000..e3701a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/trigger-tpl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/trigger.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/trigger.gif new file mode 100644 index 0000000..b563474 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/form/trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif new file mode 100644 index 0000000..f656a8e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif new file mode 100644 index 0000000..10643df Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif new file mode 100644 index 0000000..42c40b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif new file mode 100644 index 0000000..10643df Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/arrow-left-white.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/arrow-left-white.gif new file mode 100644 index 0000000..63088f5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/arrow-left-white.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/arrow-right-white.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/arrow-right-white.gif new file mode 100644 index 0000000..e9e0678 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/arrow-right-white.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/cell-special-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/cell-special-bg.gif new file mode 100644 index 0000000..d76ffbc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/cell-special-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/cell-special-bg.png b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/cell-special-bg.png new file mode 100644 index 0000000..0bcc236 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/cell-special-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/cell-special-selected-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/cell-special-selected-bg.gif new file mode 100644 index 0000000..f1da867 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/cell-special-selected-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/cell-special-selected-bg.png b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/cell-special-selected-bg.png new file mode 100644 index 0000000..500c3bd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/cell-special-selected-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/col-move-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/col-move-bottom.gif new file mode 100644 index 0000000..c525f7e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/col-move-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/col-move-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/col-move-top.gif new file mode 100644 index 0000000..ccc92b6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/col-move-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/column-header-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/column-header-bg.gif new file mode 100644 index 0000000..dec6733 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/column-header-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/column-header-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/column-header-over-bg.gif new file mode 100644 index 0000000..bd0c1e0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/column-header-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/columns.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/columns.gif new file mode 100644 index 0000000..2d3a823 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/columns.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/dd-insert-arrow-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/dd-insert-arrow-left.gif new file mode 100644 index 0000000..5d923b2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/dd-insert-arrow-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/dd-insert-arrow-left.png b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/dd-insert-arrow-left.png new file mode 100644 index 0000000..5dc6967 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/dd-insert-arrow-left.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/dd-insert-arrow-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/dd-insert-arrow-right.gif new file mode 100644 index 0000000..8d154db Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/dd-insert-arrow-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/dd-insert-arrow-right.png b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/dd-insert-arrow-right.png new file mode 100644 index 0000000..b1a1819 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/dd-insert-arrow-right.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/dirty-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/dirty-rtl.gif new file mode 100644 index 0000000..22fa12a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/dirty-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/dirty.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/dirty.gif new file mode 100644 index 0000000..4f217a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/dirty.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/done.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/done.gif new file mode 100644 index 0000000..a937cb2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/done.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/drop-no.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/drop-no.gif new file mode 100644 index 0000000..31a332b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/drop-yes.gif new file mode 100644 index 0000000..926010e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/footer-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/footer-bg.gif new file mode 100644 index 0000000..126120f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/footer-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid-blue-hd.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid-blue-hd.gif new file mode 100644 index 0000000..862094e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid-blue-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid-blue-split.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid-blue-split.gif new file mode 100644 index 0000000..5286f58 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid-blue-split.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid-hrow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid-hrow.gif new file mode 100644 index 0000000..6374104 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid-hrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid-loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid-loading.gif new file mode 100644 index 0000000..d112c54 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid-split.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid-split.gif new file mode 100644 index 0000000..c76a16e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid-split.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid-vista-hd.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid-vista-hd.gif new file mode 100644 index 0000000..d097263 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid-vista-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid3-hd-btn-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid3-hd-btn-left.gif new file mode 100644 index 0000000..7892705 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid3-hd-btn-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid3-hd-btn.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid3-hd-btn.gif new file mode 100644 index 0000000..daf1ef2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid3-hd-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid3-hrow-over.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid3-hrow-over.gif new file mode 100644 index 0000000..f9c07af Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid3-hrow-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid3-hrow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid3-hrow.gif new file mode 100644 index 0000000..8d459a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid3-hrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid3-rowheader.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid3-rowheader.gif new file mode 100644 index 0000000..2799b45 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/grid3-rowheader.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/group-by.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/group-by.gif new file mode 100644 index 0000000..d6075bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/group-by.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/group-collapse.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/group-collapse.gif new file mode 100644 index 0000000..ec98003 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/group-collapse.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/group-expand-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/group-expand-sprite.gif new file mode 100644 index 0000000..d24891d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/group-expand-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/group-expand.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/group-expand.gif new file mode 100644 index 0000000..71c8ac4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/group-expand.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hd-pop.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hd-pop.gif new file mode 100644 index 0000000..eb8ba79 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hd-pop.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hmenu-asc.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hmenu-asc.gif new file mode 100644 index 0000000..15058ff Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hmenu-asc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hmenu-desc.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hmenu-desc.gif new file mode 100644 index 0000000..f26b7c2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hmenu-desc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hmenu-lock.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hmenu-lock.gif new file mode 100644 index 0000000..1596126 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hmenu-lock.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hmenu-lock.png b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hmenu-lock.png new file mode 100644 index 0000000..8b81e7f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hmenu-lock.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hmenu-unlock.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hmenu-unlock.gif new file mode 100644 index 0000000..af59cf9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hmenu-unlock.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hmenu-unlock.png b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hmenu-unlock.png new file mode 100644 index 0000000..9dd5df3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/hmenu-unlock.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/invalid_line.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/invalid_line.gif new file mode 100644 index 0000000..fb7e0f3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/invalid_line.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/loading.gif new file mode 100644 index 0000000..e846e1d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/mso-hd.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/mso-hd.gif new file mode 100644 index 0000000..669f3cf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/mso-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/nowait.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/nowait.gif new file mode 100644 index 0000000..4c5862c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/nowait.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-first-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-first-disabled.gif new file mode 100644 index 0000000..1e02c41 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-first-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-first.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-first.gif new file mode 100644 index 0000000..60be4bc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-first.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-last-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-last-disabled.gif new file mode 100644 index 0000000..8697067 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-last-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-last.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-last.gif new file mode 100644 index 0000000..beb4a83 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-last.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-next-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-next-disabled.gif new file mode 100644 index 0000000..90a7756 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-next-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-next.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-next.gif new file mode 100644 index 0000000..97db1c2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-next.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-prev-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-prev-disabled.gif new file mode 100644 index 0000000..37154d6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-prev-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-prev.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-prev.gif new file mode 100644 index 0000000..d07e61c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/page-prev.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/pick-button.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/pick-button.gif new file mode 100644 index 0000000..6957924 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/pick-button.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/property-cell-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/property-cell-bg.gif new file mode 100644 index 0000000..7890cf9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/property-cell-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/property-cell-selected-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/property-cell-selected-bg.gif new file mode 100644 index 0000000..1dfe9a6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/property-cell-selected-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/refresh-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/refresh-disabled.gif new file mode 100644 index 0000000..607800b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/refresh-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/refresh.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/refresh.gif new file mode 100644 index 0000000..868b2dc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/refresh.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/row-check-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/row-check-sprite.gif new file mode 100644 index 0000000..6101164 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/row-check-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/row-expand-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/row-expand-sprite.gif new file mode 100644 index 0000000..09c00a6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/row-expand-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/row-over.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/row-over.gif new file mode 100644 index 0000000..b288e38 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/row-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/row-sel.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/row-sel.gif new file mode 100644 index 0000000..98209e6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/row-sel.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/sort-hd.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/sort-hd.gif new file mode 100644 index 0000000..4cf483d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/sort-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/sort_asc.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/sort_asc.gif new file mode 100644 index 0000000..7e562e2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/sort_asc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/sort_desc.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/sort_desc.gif new file mode 100644 index 0000000..9b7a871 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/sort_desc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/wait.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/wait.gif new file mode 100644 index 0000000..471c1a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/grid/wait.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/layout/mini-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/layout/mini-bottom.gif new file mode 100644 index 0000000..c18f9e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/layout/mini-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/layout/mini-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/layout/mini-left.gif new file mode 100644 index 0000000..99f7993 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/layout/mini-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/layout/mini-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/layout/mini-right.gif new file mode 100644 index 0000000..5b13c5a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/layout/mini-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/layout/mini-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/layout/mini-top.gif new file mode 100644 index 0000000..a4ca2bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/layout/mini-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/checked.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/checked.gif new file mode 100644 index 0000000..fad5893 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/checked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/group-checked.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/group-checked.gif new file mode 100644 index 0000000..c882488 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/group-checked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/item-over-disabled.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/item-over-disabled.gif new file mode 100644 index 0000000..97d5ffa Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/item-over-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/item-over.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/item-over.gif new file mode 100644 index 0000000..e0dc5f7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/item-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/menu-item-active-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/menu-item-active-bg.gif new file mode 100644 index 0000000..6b79083 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/menu-item-active-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/menu-parent-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/menu-parent-left.gif new file mode 100644 index 0000000..1ce2ccb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/menu-parent-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/menu-parent.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/menu-parent.gif new file mode 100644 index 0000000..5461a8b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/menu-parent.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/menu.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/menu.gif new file mode 100644 index 0000000..30a2c4b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/menu.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/scroll-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/scroll-bottom.gif new file mode 100644 index 0000000..c18f9e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/scroll-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/scroll-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/scroll-top.gif new file mode 100644 index 0000000..a4ca2bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/scroll-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/unchecked.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/unchecked.gif new file mode 100644 index 0000000..43823e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/menu/unchecked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-bottom-bg.gif new file mode 100644 index 0000000..b3cdd9b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-bottom-bg.gif new file mode 100644 index 0000000..29e799d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-bottom-corners.gif new file mode 100644 index 0000000..ba8d70e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-bottom-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-bottom-fbg.gif new file mode 100644 index 0000000..953040c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-bottom-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-bottom-sides.gif new file mode 100644 index 0000000..4d50b82 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif new file mode 100644 index 0000000..29e799d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif new file mode 100644 index 0000000..0060ab8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif new file mode 100644 index 0000000..953040c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-bottom-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif new file mode 100644 index 0000000..4d50b82 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif new file mode 100644 index 0000000..7814785 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-bg.gif new file mode 100644 index 0000000..55f6038 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif new file mode 100644 index 0000000..d521eed Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-corners.gif new file mode 100644 index 0000000..a897a3a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif new file mode 100644 index 0000000..7890de6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-fbg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif new file mode 100644 index 0000000..4b2ac1b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif new file mode 100644 index 0000000..f0eb1ed Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-sides-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-sides.gif new file mode 100644 index 0000000..6a083e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif new file mode 100644 index 0000000..cc6e99c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-bg.gif new file mode 100644 index 0000000..1fff3c5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif new file mode 100644 index 0000000..5148059 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-corners.gif new file mode 100644 index 0000000..d3ac162 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif new file mode 100644 index 0000000..3666bfb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-fbg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif new file mode 100644 index 0000000..03c6239 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif new file mode 100644 index 0000000..0a5809f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-sides-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-sides.gif new file mode 100644 index 0000000..586de3a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-top-bg.gif new file mode 100644 index 0000000..c6c596f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-top-corners.gif new file mode 100644 index 0000000..61f55ab Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif new file mode 100644 index 0000000..9505c1b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-top-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-top-sides.gif new file mode 100644 index 0000000..86a6515 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-collapsed-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-bg-rtl.gif new file mode 100644 index 0000000..7814785 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-bg.gif new file mode 100644 index 0000000..55f6038 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-corners-rtl.gif new file mode 100644 index 0000000..43e2f0c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-corners.gif new file mode 100644 index 0000000..7c57adf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-fbg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-fbg-rtl.gif new file mode 100644 index 0000000..7890de6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-fbg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-fbg.gif new file mode 100644 index 0000000..4b2ac1b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-sides-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-sides-rtl.gif new file mode 100644 index 0000000..f0eb1ed Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-sides-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-sides.gif new file mode 100644 index 0000000..6a083e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-bg-rtl.gif new file mode 100644 index 0000000..b2d8c7e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-bg.gif new file mode 100644 index 0000000..6ab7b3c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-corners-rtl.gif new file mode 100644 index 0000000..7801530 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-corners.gif new file mode 100644 index 0000000..e13ba49 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-fbg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-fbg-rtl.gif new file mode 100644 index 0000000..3666bfb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-fbg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-fbg.gif new file mode 100644 index 0000000..03c6239 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-sides-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-sides-rtl.gif new file mode 100644 index 0000000..0a5809f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-sides-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-sides.gif new file mode 100644 index 0000000..586de3a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-top-bg.gif new file mode 100644 index 0000000..218cdbd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-top-corners.gif new file mode 100644 index 0000000..7510b99 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-top-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-top-fbg.gif new file mode 100644 index 0000000..9505c1b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-top-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-top-sides.gif new file mode 100644 index 0000000..86a6515 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-framed-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-left-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-left-bg-rtl.gif new file mode 100644 index 0000000..feca146 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-left-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-left-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-left-bg.gif new file mode 100644 index 0000000..4c8213f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-right-bg-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-right-bg-rtl.gif new file mode 100644 index 0000000..b2d8c7e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-right-bg-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-right-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-right-bg.gif new file mode 100644 index 0000000..6ab7b3c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-top-bg.gif new file mode 100644 index 0000000..218cdbd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel-header/panel-header-default-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel/panel-default-framed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel/panel-default-framed-corners.gif new file mode 100644 index 0000000..032a135 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel/panel-default-framed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel/panel-default-framed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel/panel-default-framed-sides.gif new file mode 100644 index 0000000..56ab779 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/panel/panel-default-framed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/progress/progress-default-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/progress/progress-default-bg.gif new file mode 100644 index 0000000..8346317 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/progress/progress-default-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/blue-loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/blue-loading.gif new file mode 100644 index 0000000..3bbf639 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/blue-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/calendar.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/calendar.gif new file mode 100644 index 0000000..133cf23 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/calendar.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/glass-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/glass-bg.gif new file mode 100644 index 0000000..26fbbae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/glass-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/hd-sprite.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/hd-sprite.gif new file mode 100644 index 0000000..42da1ea Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/hd-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/icon-error.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/icon-error.gif new file mode 100644 index 0000000..397b655 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/icon-error.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/icon-info.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/icon-info.gif new file mode 100644 index 0000000..58281c3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/icon-info.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/icon-question.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/icon-question.gif new file mode 100644 index 0000000..08abd82 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/icon-question.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/icon-warning.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/icon-warning.gif new file mode 100644 index 0000000..27ff98b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/icon-warning.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/large-loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/large-loading.gif new file mode 100644 index 0000000..b36b555 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/large-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/left-btn.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/left-btn.gif new file mode 100644 index 0000000..3301054 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/left-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/loading-balls.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/loading-balls.gif new file mode 100644 index 0000000..9ce214b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/loading-balls.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/right-btn.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/right-btn.gif new file mode 100644 index 0000000..c529110 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/right-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/shadow-c.png b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/shadow-c.png new file mode 100644 index 0000000..d435f80 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/shadow-c.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/shadow-lr.png b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/shadow-lr.png new file mode 100644 index 0000000..bb88b6f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/shadow-lr.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/shadow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/shadow.png new file mode 100644 index 0000000..75c0eba Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/shadow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/warning.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/warning.gif new file mode 100644 index 0000000..806d4bc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/shared/warning.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/e-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/e-handle-dark.gif new file mode 100644 index 0000000..b5486c1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/e-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/e-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/e-handle.gif new file mode 100644 index 0000000..a8ed0ed Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/e-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/ne-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/ne-handle-dark.gif new file mode 100644 index 0000000..04e5ecf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/ne-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/ne-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/ne-handle.gif new file mode 100644 index 0000000..6f7b0c2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/ne-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/nw-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/nw-handle-dark.gif new file mode 100644 index 0000000..6e49d69 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/nw-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/nw-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/nw-handle.gif new file mode 100644 index 0000000..92ad82c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/nw-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/s-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/s-handle-dark.gif new file mode 100644 index 0000000..4eb5f0f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/s-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/s-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/s-handle.gif new file mode 100644 index 0000000..d7eeae2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/s-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/se-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/se-handle-dark.gif new file mode 100644 index 0000000..c4c1087 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/se-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/se-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/se-handle.gif new file mode 100644 index 0000000..f011a3b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/se-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/square.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/square.gif new file mode 100644 index 0000000..7751d5e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/square.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/sw-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/sw-handle-dark.gif new file mode 100644 index 0000000..77224b0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/sw-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/sw-handle.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/sw-handle.gif new file mode 100644 index 0000000..aa903dd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/sizer/sw-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-bg.gif new file mode 100644 index 0000000..39edef4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-bg.png b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-bg.png new file mode 100644 index 0000000..10ede26 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-thumb.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-thumb.gif new file mode 100644 index 0000000..5ba1dfb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-thumb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-thumb.png b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-thumb.png new file mode 100644 index 0000000..4bf01be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-thumb.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-v-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-v-bg.gif new file mode 100644 index 0000000..8cc7a87 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-v-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-v-bg.png b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-v-bg.png new file mode 100644 index 0000000..6ed116a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-v-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-v-thumb.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-v-thumb.gif new file mode 100644 index 0000000..58afe96 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-v-thumb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-v-thumb.png b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-v-thumb.png new file mode 100644 index 0000000..6b3eeb7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/slider/slider-v-thumb.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-bottom-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-bottom-left.gif new file mode 100644 index 0000000..e6525b9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-bottom-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-bottom-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-bottom-right.gif new file mode 100644 index 0000000..be657af Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-bottom-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-left-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-left-bottom.gif new file mode 100644 index 0000000..ecc3116 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-left-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-left-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-left-top.gif new file mode 100644 index 0000000..4610705 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-left-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-right-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-right-bottom.gif new file mode 100644 index 0000000..737cc3f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-right-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-right-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-right-top.gif new file mode 100644 index 0000000..49bc1bf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-right-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-top-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-top-left.gif new file mode 100644 index 0000000..3504804 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-top-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-top-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-top-right.gif new file mode 100644 index 0000000..eee6080 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/default-scroll-top-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/tab-bar-default-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/tab-bar-default-bottom-bg.gif new file mode 100644 index 0000000..2c9ed34 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/tab-bar-default-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/tab-bar-default-left-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/tab-bar-default-left-bg.gif new file mode 100644 index 0000000..459a5e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/tab-bar-default-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/tab-bar-default-right-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/tab-bar-default-right-bg.gif new file mode 100644 index 0000000..7430c0e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/tab-bar-default-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/tab-bar-default-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/tab-bar-default-top-bg.gif new file mode 100644 index 0000000..e8aea5a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab-bar/tab-bar-default-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-active-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-active-bg.gif new file mode 100644 index 0000000..d6209f6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-active-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-active-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-active-corners.gif new file mode 100644 index 0000000..f898ccc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-active-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-active-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-active-fbg.gif new file mode 100644 index 0000000..86de5d1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-active-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-active-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-active-sides.gif new file mode 100644 index 0000000..181e456 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-active-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-bg.gif new file mode 100644 index 0000000..505b024 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-corners.gif new file mode 100644 index 0000000..6e77936 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-disabled-bg.gif new file mode 100644 index 0000000..ac1e0a8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-disabled-corners.gif new file mode 100644 index 0000000..97d6dad Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-disabled-fbg.gif new file mode 100644 index 0000000..9f68625 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-disabled-sides.gif new file mode 100644 index 0000000..ea2b4a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-fbg.gif new file mode 100644 index 0000000..9a1db05 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-over-bg.gif new file mode 100644 index 0000000..676537b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-over-corners.gif new file mode 100644 index 0000000..d2ccefe Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-over-fbg.gif new file mode 100644 index 0000000..79a2fe5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-over-sides.gif new file mode 100644 index 0000000..3d1cd4d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-sides.gif new file mode 100644 index 0000000..4467f9e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-close.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-close.gif new file mode 100644 index 0000000..98d5da9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-close.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-active-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-active-bg.gif new file mode 100644 index 0000000..cd74b30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-active-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-active-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-active-corners.gif new file mode 100644 index 0000000..872b285 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-active-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-active-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-active-fbg.gif new file mode 100644 index 0000000..c0df1c8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-active-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-active-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-active-sides.gif new file mode 100644 index 0000000..e96fdf2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-active-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-bg.gif new file mode 100644 index 0000000..dd20a1e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-corners.gif new file mode 100644 index 0000000..afe4e1d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-disabled-bg.gif new file mode 100644 index 0000000..ed0d608 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-disabled-corners.gif new file mode 100644 index 0000000..4160509 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-disabled-fbg.gif new file mode 100644 index 0000000..6acafdd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-disabled-sides.gif new file mode 100644 index 0000000..6389f97 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-fbg.gif new file mode 100644 index 0000000..6e2e4fe Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-over-bg.gif new file mode 100644 index 0000000..68a3191 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-over-corners.gif new file mode 100644 index 0000000..ac78c96 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-over-fbg.gif new file mode 100644 index 0000000..b70e8f8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-over-sides.gif new file mode 100644 index 0000000..3c9e5ca Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-sides.gif new file mode 100644 index 0000000..aa3f651 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tab/tab-default-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tip/tip-default-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tip/tip-default-corners.gif new file mode 100644 index 0000000..979bafe Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tip/tip-default-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tip/tip-default-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tip/tip-default-sides.gif new file mode 100644 index 0000000..5f2e4bf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tip/tip-default-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tip/tip-form-invalid-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tip/tip-form-invalid-corners.gif new file mode 100644 index 0000000..6ab8ee0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tip/tip-form-invalid-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tip/tip-form-invalid-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tip/tip-form-invalid-sides.gif new file mode 100644 index 0000000..b39a15b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tip/tip-form-invalid-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/toolbar/more-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/toolbar/more-left.gif new file mode 100644 index 0000000..8f8cbd4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/toolbar/more-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/toolbar/more.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/toolbar/more.gif new file mode 100644 index 0000000..82beafd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/toolbar/more.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/toolbar/scroll-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/toolbar/scroll-left.gif new file mode 100644 index 0000000..2db8cf5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/toolbar/scroll-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/toolbar/scroll-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/toolbar/scroll-right.gif new file mode 100644 index 0000000..5d5a7ab Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/toolbar/scroll-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/toolbar/toolbar-default-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/toolbar/toolbar-default-bg.gif new file mode 100644 index 0000000..f010d33 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/toolbar/toolbar-default-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tools/tool-sprite-tpl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tools/tool-sprite-tpl.gif new file mode 100644 index 0000000..18277a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tools/tool-sprite-tpl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tools/tool-sprites.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tools/tool-sprites.gif new file mode 100644 index 0000000..36b6b67 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tools/tool-sprites.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tools/tools-sprites-trans.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tools/tools-sprites-trans.gif new file mode 100644 index 0000000..b6d7ba3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tools/tools-sprites-trans.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/arrows-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/arrows-rtl.gif new file mode 100644 index 0000000..7083d77 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/arrows-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/arrows.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/arrows.gif new file mode 100644 index 0000000..f7b8b1c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/arrows.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-above.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-above.gif new file mode 100644 index 0000000..30d1ca7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-above.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-add.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-add.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-add.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-append.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-append.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-append.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-below.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-below.gif new file mode 100644 index 0000000..85f66b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-below.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-between.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-between.gif new file mode 100644 index 0000000..5c6c09d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-between.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-no.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-no.gif new file mode 100644 index 0000000..9d9c6a9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-over.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-over.gif new file mode 100644 index 0000000..30d1ca7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-under.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-under.gif new file mode 100644 index 0000000..85f66b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-under.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-yes.gif new file mode 100644 index 0000000..8aacb30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-end-minus-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-end-minus-rtl.gif new file mode 100644 index 0000000..10227e6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-end-minus-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-end-minus.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-end-minus.gif new file mode 100644 index 0000000..55d8a0f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-end-minus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-end-plus-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-end-plus-rtl.gif new file mode 100644 index 0000000..f4eef89 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-end-plus-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-end-plus.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-end-plus.gif new file mode 100644 index 0000000..a5c62fa Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-end-plus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-end-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-end-rtl.gif new file mode 100644 index 0000000..a5e7248 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-end-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-end.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-end.gif new file mode 100644 index 0000000..406a88d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-end.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-line-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-line-rtl.gif new file mode 100644 index 0000000..6e5b8b4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-line-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-line.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-line.gif new file mode 100644 index 0000000..e25ed03 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-line.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-minus-nl-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-minus-nl-rtl.gif new file mode 100644 index 0000000..2d8dd98 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-minus-nl-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-minus-nl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-minus-nl.gif new file mode 100644 index 0000000..f50bd40 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-minus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-minus-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-minus-rtl.gif new file mode 100644 index 0000000..ed3e5a0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-minus-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-minus.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-minus.gif new file mode 100644 index 0000000..a728796 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-minus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-plus-nl-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-plus-nl-rtl.gif new file mode 100644 index 0000000..2d1e917 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-plus-nl-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-plus-nl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-plus-nl.gif new file mode 100644 index 0000000..96f8d72 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-plus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-plus-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-plus-rtl.gif new file mode 100644 index 0000000..cb0cb49 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-plus-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-plus.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-plus.gif new file mode 100644 index 0000000..ae41983 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-plus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-rtl.gif new file mode 100644 index 0000000..1139cb0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow.gif new file mode 100644 index 0000000..201c413 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/elbow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/folder-open-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/folder-open-rtl.gif new file mode 100644 index 0000000..a34c546 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/folder-open-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/folder-open.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/folder-open.gif new file mode 100644 index 0000000..361e1be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/folder-open.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/folder-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/folder-rtl.gif new file mode 100644 index 0000000..4fab30f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/folder-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/folder.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/folder.gif new file mode 100644 index 0000000..b2fd81a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/folder.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/leaf-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/leaf-rtl.gif new file mode 100644 index 0000000..ab0979a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/leaf-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/leaf.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/leaf.gif new file mode 100644 index 0000000..445769d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/leaf.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/loading.gif new file mode 100644 index 0000000..e846e1d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/s.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/s.gif new file mode 100644 index 0000000..1d11fa9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/tree/s.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/util/splitter/mini-bottom.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/util/splitter/mini-bottom.gif new file mode 100644 index 0000000..c18f9e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/util/splitter/mini-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/util/splitter/mini-left.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/util/splitter/mini-left.gif new file mode 100644 index 0000000..99f7993 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/util/splitter/mini-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/util/splitter/mini-right.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/util/splitter/mini-right.gif new file mode 100644 index 0000000..5b13c5a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/util/splitter/mini-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/util/splitter/mini-top.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/util/splitter/mini-top.gif new file mode 100644 index 0000000..a4ca2bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/util/splitter/mini-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-bottom-corners.gif new file mode 100644 index 0000000..34cb699 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-bottom-sides.gif new file mode 100644 index 0000000..3388ed9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-bottom-corners.gif new file mode 100644 index 0000000..bb47334 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-bottom-sides.gif new file mode 100644 index 0000000..a1cc1ef Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-left-corners-rtl.gif new file mode 100644 index 0000000..bf32b4d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-left-corners.gif new file mode 100644 index 0000000..32828be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-left-sides.gif new file mode 100644 index 0000000..11bfe12 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-right-corners-rtl.gif new file mode 100644 index 0000000..ea381b0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-right-corners.gif new file mode 100644 index 0000000..b87ed41 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-right-sides.gif new file mode 100644 index 0000000..41939a9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-top-corners.gif new file mode 100644 index 0000000..2184175 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-top-sides.gif new file mode 100644 index 0000000..a1cc1ef Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-collapsed-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-left-corners-rtl.gif new file mode 100644 index 0000000..fd56042 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-left-corners.gif new file mode 100644 index 0000000..0a3aca9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-left-sides.gif new file mode 100644 index 0000000..82480c6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-right-corners-rtl.gif new file mode 100644 index 0000000..c3358d1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-right-corners.gif new file mode 100644 index 0000000..e63c624 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-right-sides.gif new file mode 100644 index 0000000..c4682a1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-top-corners.gif new file mode 100644 index 0000000..16e6186 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-top-sides.gif new file mode 100644 index 0000000..3388ed9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window-header/window-header-default-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window/icon-error.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window/icon-error.gif new file mode 100644 index 0000000..397b655 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window/icon-error.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window/icon-info.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window/icon-info.gif new file mode 100644 index 0000000..58281c3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window/icon-info.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window/icon-question.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window/icon-question.gif new file mode 100644 index 0000000..08abd82 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window/icon-question.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window/icon-warning.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window/icon-warning.gif new file mode 100644 index 0000000..27ff98b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window/icon-warning.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window/window-default-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window/window-default-corners.gif new file mode 100644 index 0000000..62863c5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window/window-default-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window/window-default-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window/window-default-sides.gif new file mode 100644 index 0000000..4b1d651 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-gray/images/window/window-default-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/Readme.md b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/Readme.md new file mode 100644 index 0000000..fe784ee --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/Readme.md @@ -0,0 +1,3 @@ +# ext-theme-neptune/resources + +This folder contains static resources (typically an `"images"` folder as well). diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/ext-theme-neptune-all-debug.css b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/ext-theme-neptune-all-debug.css new file mode 100644 index 0000000..68a6842 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/ext-theme-neptune-all-debug.css @@ -0,0 +1,22381 @@ +/* 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. + */ +/* including package ext-theme-neutral */ +/* including package ext-theme-neptune */ +/* including package ext-theme-neptune */ +/** + * @var {boolean} + * True to include the "light" panel UI + */ +/** + * @var {boolean} + * True to include the "light-framed" panel UI + */ +/** + * @var {color} $form-field-focus-border-color + * 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 + */ +/* including package ext-theme-neutral */ +/** + * @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 {string} $font-size + * The default font-family 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 + */ +/** + * @class Ext.FocusManager + */ +/** + * @var {color} + * The border-color of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-style of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-width of the focusFrame. See {@link #method-enable}. + */ +/** + * @class Ext.LoadMask + */ +/** + * @var {number} + * Opacity of the LoadMask + */ +/** + * @var {color} + * The background-color of the LoadMask + */ +/** + * @var {string} + * The type of cursor to dislay when the cursor is over the LoadMask + */ +/** + * @var {number/list} + * The padding to apply to the LoadMask's message element + */ +/** + * @var {string} + * The border-style of the LoadMask's message element + */ +/** + * @var {color} + * The border-color of the LoadMask's message element + */ +/** + * @var {number} + * The border-width of the LoadMask's message element + */ +/** + * @var {color} + * The background-color of the LoadMask's message element + */ +/** + * @var {string/list} + * The background-gradient of the LoadMask's message element. Can be either the name + * of a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the message inner element + */ +/** + * @var {string} + * The icon to display in the message inner element + */ +/** + * @var {list} + * The background-position of the icon + */ +/** + * @var {string} + * The border-style of the message inner element + */ +/** + * @var {color} + * The border-color of the message inner element + */ +/** + * @var {number} + * The border-width of the message inner element + */ +/** + * @var {color} + * The background-color of the message inner element + */ +/** + * @var {color} + * The text color of the message inner element + */ +/** + * @var {number} + * The font-size of the message inner element + */ +/** + * @var {string} + * The font-weight of the message inner element + */ +/** + * @var {string} + * The font-family of the message inner element + */ +/** + * @var {number/list} + * The padding of the message element + */ +/** + * @var {number} + * The border-radius of the message element + */ +/** + * @class Ext.ProgressBar + */ +/** + * @var {number} + * The height of the ProgressBar + */ +/** + * @var {color} + * The border-color of the ProgressBar + */ +/** + * @var {number} + * The border-width of the ProgressBar + */ +/** + * @var {number} + * The border-radius of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar's moving element + */ +/** + * @var {string/list} + * The background-gradient of the ProgressBar's moving element. Can be either the name of + * a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The color of the ProgressBar's text when in front of the ProgressBar's moving element + */ +/** + * @var {color} + * The color of the ProgressBar's text when the ProgressBar's 'moving element is not under it + */ +/** + * @var {string} + * The text-align of the ProgressBar's text + */ +/** + * @var {number} + * The font-size of the ProgressBar's text + */ +/** + * @var {string} + * The font-weight of the ProgressBar's text + */ +/** + * @var {boolean} + * True to include the "default" ProgressBar UI + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a small {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a medium {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a large {@link #scale} button + */ +/** + * @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 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 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 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 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 disabled + */ +/** + * @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 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 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 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 disabled + */ +/** + * @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-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 buton 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-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 + */ +/** + * @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 {number/list} + * The margin 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 {number/list} + * The margin of Toolbar text + */ +/** + * @var {color} + * The text-color of Toolbar text + */ +/** + * @var {number/list} + * The padding of Toolbar text + */ +/** + * @var {number} + * The line-height of Toolbar text + */ +/** + * @var {number} + * The width of Toolbar scrollers + */ +/** + * @var {number} + * The height of Toolbar scrollers + */ +/** + * @var {color} + * The border-color of Toolbar scrollers + */ +/** + * @var {number} + * The border-width of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of disabled Toolbar scrollers + */ +/** + * @var {number} + * The opacity of disabled Toolbar scrollers + */ +/** + * @var {string} + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + */ +/** + * @var {boolean} + * True to include the "default" toolbar UI + */ +/** + * @class Ext.panel.Panel + */ +/** + * @var {number} + * The default border-width of Panels + */ +/** + * @var {color} + * The base color of Panels + */ +/** + * @var {color} + * The default border-color of Panels + */ +/** + * @var {$border-width-threshold} + * 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 {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 {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 {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 + */ +/** + * @class Ext.tip.Tip + */ +/** + * @var {color} + * The background-color of the Tip + */ +/** + * @var {string/list} + * The background-gradient of the Tip. Can be either the name of a predefined gradient or a + * list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The text color of the Tip body + */ +/** + * @var {number} + * The font-size of the Tip body + */ +/** + * @var {string} + * The font-weight of the Tip body + */ +/** + * @var {number/list} + * The padding of the Tip body + */ +/** + * @var {color} + * The text color of any anchor tags inside the Tip body + */ +/** + * @var {color} + * The text color of the Tip header + */ +/** + * @var {number} + * The font-size of the Tip header + */ +/** + * @var {string} + * The font-weight of the Tip header + */ +/** + * @var {number/list} + * The padding of the Tip header's body element + */ +/** + * @var {color} + * The border-color of the Tip + */ +/** + * @var {number} + * The border-width of the Tip + */ +/** + * @var {number} + * The border-radius of the Tip + */ +/** + * @var {color} + * The inner border-color of the form field error Tip + */ +/** + * @var {number} + * The inner border-width of the form field error Tip + */ +/** + * @var {color} + * The border-color of the form field error Tip + */ +/** + * @var {number} + * The border-radius of the form field error Tip + */ +/** + * @var {number} + * The border-width of the form field error Tip + */ +/** + * @var {color} + * The background-color of the form field error Tip + */ +/** + * @var {number/list} + * The padding of the form field error Tip's body element + */ +/** + * @var {color} + * The text color of the form field error Tip's body element + */ +/** + * @var {number} + * The font-size of the form field error Tip's body element + */ +/** + * @var {string} + * The font-weight of the form field error Tip's body element + */ +/** + * @var {color} + * The color of anchor tags in the form field error Tip's body element + */ +/** + * @var {number} + * The space between {@link Ext.panel.Tool Tools} in the header + */ +/** + * @var {string} + * The sprite to use for the header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" tip UI + */ +/** + * @var {boolean} + * True to include the "form-invalid" tip UI + */ +/** + * @class Ext.container.ButtonGroup + */ +/** + * @var {color} + * The background-color of the ButtonGroup + */ +/** + * @var {color} + * The border-color of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of the ButtonGroup + */ +/** + * @var {number/list} + * The body padding of the ButtonGroup + */ +/** + * @var {number/list} + * The inner border-width of the ButtonGroup + */ +/** + * @var {color} + * The inner border-color of the ButtonGroup + */ +/** + * @var {number/list} + * The margin of the header element. Used to add space around the header. + */ +/** + * @var {number} + * The font-size of the header + */ +/** + * @var {number} + * The font-weight of the header + */ +/** + * @var {number} + * The font-family of the header + */ +/** + * @var {number} + * The line-height of the header + */ +/** + * @var {number} + * The text color of the header + */ +/** + * @var {number} + * The padding of the header + */ +/** + * @var {number} + * The background-color of the header + */ +/** + * @var {number} + * The border-spacing to use on the table layout element + */ +/** + * @var {number} + * The background-color of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of framed ButtonGroups + */ +/** + * @var {string} + * Sprite image to use for header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" button group UI + */ +/** + * @var {boolean} + * True to include the "default-framed" button group UI + */ +/** + * @class Ext.window.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 + */ +/** + * @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 {color} + * The text color of toolbar field labels + */ +/** + * @var {string} + * The font-weight of toolbar field labels + */ +/** + * @var {number} + * The font-size of toolbar field labels + */ +/** + * @var {string} + * The font-family of toolbar field labels + */ +/** + * @var {number} + * The line-height of toolbar field labels + */ +/** + * @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 {measurement} $form-item-margin-bottom + * The bottom margin to apply to form items when in auto, anchor, vbox, or table layout + */ +/** + * @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 {font} $form-field-font + * Font 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 {font} $form-toolbar-field-font + * Font 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. + */ +/** + * @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 {number} $form-field-disabled-opacity + */ +/** + * @class Ext.form.field.TextArea + */ +/** + * @var {number/string} + * The line-height to use for the TextArea's text + */ +/** + * @class Ext.form.field.Display + */ +/** + * @var {color} + * The text color of display fields + */ +/** + * @var {string} + * The font-weight of display fields + */ +/** + * @var {number} + * The font-size of display fields + */ +/** + * @var {string} + * The font-family of display fields + */ +/** + * @var {number} + * The line-height of display fields + */ +/** + * @var {string} + * The font-weight of toolbar display fields + */ +/** + * @var {number} + * The font-size of toolbar display fields + */ +/** + * @var {string} + * The font-family of toolbar display fields + */ +/** + * @var {number} + * The line-height of toolbar display fields + */ +/** + * @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 + */ +/** + * @class Ext.form.field.Checkbox + */ +/** + * @var {number} + * The size of the checkbox + */ +/** + * @var {number} + * The space between the boxLabel and the checkbox. + */ +/** + * @class Ext.form.CheckboxGroup + */ +/** + * @var {number/list} + * The padding of the CheckboxGroup body element + */ +/** + * @var {color} + * The text color of the CheckboxGroup label + */ +/** + * @var {number} + * The padding of the CheckboxGroup label + */ +/** + * @var {number} + * The margin of the CheckboxGroup label + */ +/** + * @var {number} + * The border-width of the CheckboxGroup label + */ +/** + * @var {number} + * The border-style of the CheckboxGroup label + */ +/** + * @var {number} + * The border-color of the CheckboxGroup label + */ +/** + * @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/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/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 {number/list} + * The margin to apply to the FieldSet's checkbox (for FieldSets that use + * {@link #checkboxToggle}) + */ +/** + * @var {number} + * The size of the FieldSet's collapse tool + */ +/** + * @var {string} $fieldset-collapse-tool-background-image + * The background-image to use for the collapse tool. If null the default tool + * sprite will be used. Defaults to null. + */ +/** + * @class Ext.form.field.Radio + */ +/** + * @var {number} + * The size of the radio button + */ +/** + * @class Ext.form.field.Trigger + */ +/** + * @var {number} + * The width of the Trigger field's trigger element + */ +/** + * @var {number/list} + * The width of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border + */ +/** + * @var {string} + * The style of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border when hovered + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused and the trigger is hovered + */ +/** + * @class Ext.form.field.Spinner + */ +/** + * @var {number} + * The height of the Spinner trigger buttons + */ +/** + * @var {number} + * The height of the Spinner trigger buttons when the Spinner is used on a + * {@link Ext.toolbar.Toolbar Toolbar} + */ +/** + * @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 {number/list} + * The padding of BoundList items + */ +/** + * @var {number} + * The border-width of BoundList items + */ +/** + * @var {string} + * The border-style of BoundList items + */ +/** + * @var {color} + * The border-color of BoundList items + */ +/** + * @var {color} + * The border-color of hovered BoundList items + */ +/** + * @var {color} + * The border-color of selected BoundList items + */ +/** + * @var {color} + * The background-color of hovered BoundList items + */ +/** + * @var {color} + * The background-color of selected BoundList items + */ +/** + * @class Ext.picker.Date + */ +/** + * @var {number} + * The border-width of the DatePicker + */ +/** + * @var {string} + * The border-style of the DatePicker + */ +/** + * @var {color} + * The background-color of the DatePicker + */ +/** + * @var {string} + * The background-image of the DatePicker next arrow + */ +/** + * @var {string} + * The background-image of the DatePicker previous arrow + */ +/** + * @var {number} + * The width of DatePicker arrows + */ +/** + * @var {number} + * The height of DatePicker arrows + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a DatePicker arrow + */ +/** + * @var {number} + * The opacity of the DatePicker arrows + */ +/** + * @var {number} + * The opacity of the DatePicker arrows when hovered + */ +/** + * @var {string/list} + * The Date Picker header background gradient. Can be either the name of a predefined gradient + * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the Date Picker header + */ +/** + * @var {color} + * The color of the Date Picker month button + */ +/** + * @var {number} + * The width of the arrow on the Date Picker month button + */ +/** + * @var {string} + * The background-image of the arrow on the Date Picker month button + */ +/** + * @var {boolean} + * True to render the month button as transparent + */ +/** + * @var {string} + * The text-align of the Date Picker header + */ +/** + * @var {number} + * The height of Date Picker items + */ +/** + * @var {number} + * The width of Date Picker items + */ +/** + * @var {number/list} + * The padding of Date Picker items + */ +/** + * @var {string} + * The font-family of Date Picker items + */ +/** + * @var {number} + * The font-size of Date Picker items + */ +/** + * @var {string} + * The font-weight of Date Picker items + */ +/** + * @var {string} + * The text-align of Date Picker items + */ +/** + * @var {color} + * The text color of Date Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Date Picker item + */ +/** + * @var {string} + * The font-family of Date Picker column headers + */ +/** + * @var {number} + * The font-size of Date Picker column headers + */ +/** + * @var {string} + * The font-weight of Date Picker column headers + */ +/** + * @var {string/list} + * The background-gradient of Date Picker column headers. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {string} + * The border-style of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker column headers + */ +/** + * @var {string} + * The text-align of Date Picker column headers + */ +/** + * @var {number} + * The height of Date Picker column headers + */ +/** + * @var {number/list} + * The padding of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker items + */ +/** + * @var {string} + * The border-style of Date Picker items + */ +/** + * @var {color} + * The border-color of Date Picker items + */ +/** + * @var {string} + * The border-style of today's date on the Date Picker + */ +/** + * @var {string} + * The border-style of the selected item + */ +/** + * @var {string} + * The font-weight of the selected item + */ +/** + * @var {color} + * The text color of the items in the previous and next months + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a disabled item + */ +/** + * @var {color} + * The text color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of the Date Picker footer + */ +/** + * @var {string/list} + * The background-gradient of the Date Picker footer. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The border-width of the Date Picker footer + */ +/** + * @var {string} + * The border-style of the Date Picker footer + */ +/** + * @var {string} + * The text-align of the Date Picker footer + */ +/** + * @var {number/list} + * The padding of the Date Picker footer + */ +/** + * @var {number} + * The space between the footer buttons + */ +/** + * @var {color} + * The border-color of the Month Picker + */ +/** + * @var {number} + * The border-width of the Month Picker + */ +/** + * @var {string} + * The border-style of the Month Picker + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The border-color of Month Picker items + */ +/** + * @var {string} + * The border-style of Month Picker items + */ +/** + * @var {string} + * The font-family of Month Picker items + */ +/** + * @var {number} + * The font-size of Month Picker items + */ +/** + * @var {string} + * The font-weight of Month Picker items + */ +/** + * @var {number/list} + * The margin of Month Picker items + */ +/** + * @var {string} + * The text-align of Month Picker items + */ +/** + * @var {number} + * The height of Month Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker item + */ +/** + * @var {color} + * The background-color of hovered Month Picker items + */ +/** + * @var {color} + * The background-color of selected Month Picker items + */ +/** + * @var {string} + * The border-style of selected Month Picker items + */ +/** + * @var {color} + * The border-color of selected Month Picker items + */ +/** + * @var {number} + * The height of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The width of the Month Picker year navigation buttons + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker year navigation button + */ +/** + * @var {number} + * The opacity of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The opacity of hovered Month Picker year navigation buttons + */ +/** + * @var {string} + * The background-image of the Month Picker next year navigation button + */ +/** + * @var {string} + * The background-image of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker previous year navigation button + */ +/** + * @var {string} + * The border-style of the Month Picker separator + */ +/** + * @var {number} + * The border-width of the Month Picker separator + */ +/** + * @var {color} + * The border-color of the Month Picker separator + */ +/** + * @var {number/list} + * The margin of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @var {number} + * The height of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @class Ext.picker.Color + */ +/** + * @var {color} + * The background-color of Color Pickers + */ +/** + * @var {color} + * The border-color of Color Pickers + */ +/** + * @var {number} + * The border-width of Color Pickers + */ +/** + * @var {string} + * The border-style of Color Pickers + */ +/** + * @var {number} + * The number of columns to display in the Color Picker + */ +/** + * @var {number} + * The number of rows to display in the Color Picker + */ +/** + * @var {number} + * The height of each Color Picker item + */ +/** + * @var {number} + * The width of each Color Picker item + */ +/** + * @var {number} + * The padding of each Color Picker item + */ +/** + * @var {string} + * The cursor to display when the mouse is over a Color Picker item + */ +/** + * @var {color} + * The border-color of Color Picker items + */ +/** + * @var {number} + * The border-width of Color Picker items + */ +/** + * @var {string} + * The border-style of Color Picker items + */ +/** + * @var {color} + * The border-color of hovered Color Picker items + */ +/** + * @var {color} + * The background-color of Color Picker items + */ +/** + * @var {color} + * The background-color of hovered Color Picker items + */ +/** + * @var {color} + * The border-color of the selected Color Picker item + */ +/** + * @var {color} + * The background-color of the selected Color Picker item + */ +/** + * @var {color} + * The inner border-color of Color Picker items + */ +/** + * @var {number} + * The inner border-width of Color Picker items + */ +/** + * @var {string} + * The inner border-style of Color Picker items + */ +/** + * @class Ext.form.field.HtmlEditor + */ +/** + * @var {number} + * The border-width of the HtmlEditor + */ +/** + * @var {color} + * The border-color of the HtmlEditor + */ +/** + * @var {color} + * The background-color of the HtmlEditor + */ +/** + * @var {number} + * The size of the HtmlEditor toolbar icons + */ +/** + * @var {number} + * The font-size of the HtmlEditor's font selection control + */ +/** + * @var {number} + * The font-family of the HtmlEditor's font selection control + */ +/** + * @class Ext.panel.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} $grid-row-cell-line-height + * 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 {color} + * The border-color of the focused row + */ +/** + * @var {string} + * The border-style of the focused row + */ +/** + * @var {color} + * The text color of the focused row + */ +/** + * @var {color} + * The background-color of the focused row + */ +/** + * @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.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 {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 + */ +/** + * @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.CheckColumn + */ +/** + * @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.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.grid.feature.RowWrap + */ +/** + * @var {color} + * The border-color of wrapped rows + */ +/** + * @var {string} + * The border-style of wrapped rows + */ +/** + * @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 + */ +/** + * @class Ext.grid.plugin.Editing + */ +/** + * The height of grid editor text fields. 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 caluclated by adding $grid-row-cell-line-height to the top and bottom values of + * $grid-cell-inner-padding. + */ +/** + * The padding of grid editor text fields. + */ +/** + * @var {number} + * The font size of the grid editor text + */ +/** + * @var {string} + * The font-weight of the grid editor text + */ +/** + * @var {string} + * The font-family of the grid editor text + */ +/** + * @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 {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 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 {string} + * The text-transform property of Accordion headers + */ +/** + * @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.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 {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. + */ +/** + * @class Ext.layout.container.Border + */ +/** + * @var {color} + * The background-color of the Border layout element + */ +/** + * @class Ext.menu.Menu + */ +/** + * @var {color} + * The background-color of the 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 {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} + * The font-size of {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The margin 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 {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 {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {list} + * The background-position of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} text + */ +/** + * @var {number/list} + * The margin of {@link Ext.menu.Separator Menu Separators} + */ +/** + * @var {number} + * The padding to the right of {@link Ext.menu.CheckItem Check Items}, to make room + * for the checkbox + */ +/** + * @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 space to the left and right of {@link Ext.menu.Item Menu Item} arrows + */ +/** + * @var {number} + * The opacity of disabled {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The height of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers when hovered + */ +/** + * @var {number} + * The opacity of Menu crollers when pressed + */ +/** + * @var {number/list} + * The padding to apply to the Menu body element + */ +/** + * @var {color} + * The color of Menu Item text + */ +/** + * @var {number/list} + * The margin non-MenuItems placed in a Menu + */ +/** + * @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} + */ +/** + * @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.slider.Multi + */ +/** + * @var {number} + * The horizontal slider thumb width + */ +/** + * @var {number} + * The horizontal slider thumb height + */ +/** + * @var {number} + * The width of the horizontal slider end caps + */ +/** + * @var {number} + * The vertical slider thumb width + */ +/** + * @var {number} + * The vertical slider thumb height + */ +/** + * @var {number} + * The height of the vertical slider end caps + */ +/** + * @class Ext.tab.Tab + */ +/** + * @var {color} + * The base color of Tabs + */ +/** + * @var {color} + * The base color of hovered Tabs + */ +/** + * @var {color} + * The base color of the active Tabs + */ +/** + * @var {color} + * The base color of disabled Tabs + */ +/** + * @var {color} + * The text color of Tabs + */ +/** + * @var {color} + * The text color of hovered Tabs + */ +/** + * @var {color} + * The text color of the active Tab + */ +/** + * @var {color} + * The text color of disabled Tabs + */ +/** + * @var {number} + * The font-size of Tabs + */ +/** + * @var {number} + * The font-size of hovered Tabs + */ +/** + * @var {number} + * The font-size of the active Tab + */ +/** + * @var {number} + * The font-size of disabled Tabs + */ +/** + * @var {string} + * The font-family of Tabs + */ +/** + * @var {string} + * The font-family of hovered Tabs + */ +/** + * @var {string} + * The font-family of the active Tab + */ +/** + * @var {string} + * The font-family of disabled Tabs + */ +/** + * @var {string} + * The font-weight of Tabs + */ +/** + * @var {string} + * The font-weight of hovered Tabs + */ +/** + * @var {string} + * The font-weight of the active Tab + */ +/** + * @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 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 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} + * The border-width of Tabs + */ +/** + * @var {number/list} + * The inner border-width of Tabs + */ +/** + * @var {color} + * The inner border-color of Tabs + */ +/** + * @var {color} + * The border-color of Tabs + */ +/** + * @var {color} + * The border-color of hovered Tabs + */ +/** + * @var {color} + * The border-color of the active Tab + */ +/** + * @var {color} + * The border-color of disabled Tabs + */ +/** + * @var {number/list} + * The padding of Tabs + */ +/** + * @var {number/list} + * The padding of the Tab's text element + */ +/** + * @var {number} + * The line-height of Tabs + */ +/** + * @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 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 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 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 {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a left-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `left`. + */ +/** + * @var {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a right-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `right`. + */ +/** + * @var {boolean} + * True to include the "default" tab UI + */ +/** + * @class Ext.tab.Bar + */ +/** + * @var {number/list} + * The padding of the Tab Bar + */ +/** + * @var {number/list} + * The padding of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} Tab Bar strip + */ +/** + * @var {number} + * The width of the Tab Bar scrollers + */ +/** + * @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 change the x postition of the background image on hover to allow for a + * horizonatlly alined background image sprite + */ +/** + * @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.selection.CheckboxModel + */ +/** + * @var {number} + * The horizontal space before the checkbox + */ +/** + * @var {number} + * The horizontal space after the checkbox + */ +/** + * @class Ext.tree.Panel + */ +/** + * @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 + */ +/* 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 + */ +/** + * @var {boolean} $include-content-box + * True to include rules for browsers that do not support the border-box model + * (IE6 strict and IE7 strict) + */ +/** + * @var {boolean} $include-ff + * True to include Firefox specific rules + */ +/** + * @var {boolean} $include-chrome + * True to include Chrome specific rules + */ +/** + * @var {boolean} $include-safari + * True to include Safari specific rules + */ +/** + * @var {boolean} $include-opera + * True to include Opera specific rules + */ +/** + * @var {boolean} $include-webkit + * True to include Webkit specific rules + */ +/** + * @var {measurement} $css-shadow-border-radius + * The border radius for CSS shadows + */ +/** + * @var {color} $include-shadow-images + * True to include all shadow images. + */ +/** + * @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 {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. + */ +/* including package ext-theme-base */ +/* line 1, ../../../ext-theme-base/sass/src/Component.scss */ +.x-body { + margin: 0; +} + +/* line 5, ../../../ext-theme-base/sass/src/Component.scss */ +img { + border: 0; +} + +/* line 10, ../../../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 17, ../../../ext-theme-base/sass/src/Component.scss */ +.x-rtl { + direction: rtl; +} + +/* line 21, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ltr { + direction: ltr; +} + +/* line 25, ../../../ext-theme-base/sass/src/Component.scss */ +.x-clear { + overflow: hidden; + clear: both; + font-size: 0; + line-height: 0; + display: table; +} + +/* line 33, ../../../ext-theme-base/sass/src/Component.scss */ +.x-strict .x-ie7 .x-clear { + height: 0; + width: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/Component.scss */ +.x-layer { + position: absolute !important; + overflow: hidden; + zoom: 1; +} + +/* line 49, ../../../ext-theme-base/sass/src/Component.scss */ +.x-fixed-layer { + position: fixed !important; + overflow: hidden; + zoom: 1; +} + +/* line 55, ../../../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 63, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-display { + display: none !important; +} + +/* line 67, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-visibility { + visibility: hidden !important; +} + +/* line 72, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ie6 .x-item-disabled { + filter: none; +} + +/* line 78, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hidden, +.x-hide-offsets { + display: block !important; + visibility: hidden !important; + position: absolute !important; + top: -10000px !important; +} + +/* line 88, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-nosize { + height: 0 !important; + width: 0 !important; +} + +/* line 94, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-clip { + position: absolute!important; + clip: rect(0, 0, 0, 0); + clip: rect(0 0 0 0); +} + +/* line 102, ../../../ext-theme-base/sass/src/Component.scss */ +.x-masked-relative { + position: relative; +} + +/* line 108, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ie-shadow { + background-color: #777; + display: none; + position: absolute; + overflow: hidden; + zoom: 1; +} + +/* line 117, ../../../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; + cursor: default; +} + +/* line 121, ../../../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 136, ../../../ext-theme-base/sass/src/Component.scss */ +.x-list-plain { + list-style-type: none; + margin: 0; + padding: 0; +} + +/* line 143, ../../../ext-theme-base/sass/src/Component.scss */ +.x-table-plain { + border-collapse: collapse; + border-spacing: 0; + font-size: 1em; +} + +/* line 156, ../../../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 162, ../../../ext-theme-base/sass/src/Component.scss */ +.x-frame-tc, +.x-frame-bc { + background-repeat: repeat-x; +} + +/* line 166, ../../../ext-theme-base/sass/src/Component.scss */ +.x-frame-mc { + background-repeat: repeat-x; + overflow: hidden; +} + +/* line 171, ../../../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 178, ../../../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 184, ../../../ext-theme-base/sass/src/Component.scss */ +.x-item-disabled, +.x-item-disabled * { + cursor: default; +} + +/* line 3, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x-box-item { + position: absolute !important; + left: 0; + top: 0; +} + +/* line 4, ../../../ext-theme-base/sass/src/Editor.scss */ +div.x-editor { + overflow: visible; +} + +/* line 1, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask { + z-index: 100; + position: absolute; + width: 100%; + height: 100%; + zoom: 1; +} + +/* line 10, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask-shim { + z-index: 100; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +/* line 20, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask-msg { + z-index: 20001; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress { + position: relative; + border-style: solid; + overflow: hidden; +} + +/* line 7, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress-bar { + overflow: hidden; + position: absolute; + width: 0; + height: 100%; +} + +/* line 14, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress-text { + overflow: hidden; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn { + display: inline-block; + position: relative; + zoom: 1; + *display: inline; + outline: 0; + cursor: pointer; + white-space: nowrap; + vertical-align: middle; + text-decoration: none; +} + +/* line 15, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-wrap { + position: relative; + display: block; +} + +/* line 20, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-button { + position: relative; + display: block; + text-decoration: none; + overflow: hidden; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner { + display: block; + white-space: nowrap; + overflow: hidden; + zoom: 1; +} + +/* line 35, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 45, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-center { + text-align: center; +} + +/* line 49, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-left { + text-align: left; +} + +/* line 59, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-right { + text-align: right; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-target { + position: absolute; + width: 20000px; + top: 0; + left: 0; + height: 1px; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-inner { + overflow: hidden; + zoom: 1; + position: relative; + left: 0; + top: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-horizontal-box-overflow-body { + float: left; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller { + position: relative; + background-repeat: no-repeat; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller-left, +.x-box-scroller-right { + float: left; + height: 100%; + z-index: 5; +} + +/* line 59, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller-top .x-box-scroller, +.x-box-scroller-bottom .x-box-scroller { + line-height: 0; + font-size: 0; + background-position: center 0; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-menu-after { + float: right; +} + +/* line 1, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-text { + white-space: nowrap; +} + +/* line 5, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-separator { + display: block; + font-size: 1px; + overflow: hidden; + cursor: default; + border: 0; + width: 0; + height: 0; + line-height: 0px; +} + +/* line 17, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal { + width: 2px; +} + +/* line 22, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroller { + padding-left: 0; +} + +/* line 29, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-plain { + border: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked { + position: absolute !important; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-vertical { + position: static; +} + +/* line 11, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-top { + border-bottom-width: 0 !important; +} + +/* line 15, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-bottom { + border-top-width: 0 !important; +} + +/* line 19, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-left { + border-right-width: 0 !important; +} + +/* line 23, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-right { + border-left-width: 0 !important; +} + +/* line 27, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-top { + border-top-width: 0 !important; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-right { + border-right-width: 0 !important; +} + +/* line 35, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-bottom { + border-bottom-width: 0 !important; +} + +/* line 39, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-left { + border-left-width: 0 !important; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-l { + border-left-width: 0 !important; +} + +/* line 48, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-b { + border-bottom-width: 0 !important; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-bl { + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 55, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-r { + border-right-width: 0 !important; +} + +/* line 58, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rl { + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 62, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rb { + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rbl { + border-right-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 71, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-t { + border-top-width: 0 !important; +} + +/* line 74, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tl { + border-top-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 78, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tb { + border-top-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 82, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tbl { + border-top-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 87, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tr { + border-top-width: 0 !important; + border-right-width: 0 !important; +} + +/* line 91, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trl { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 96, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trb { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 101, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trbl { + border-width: 0 !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-header-icon { + background-repeat: no-repeat; + background-position: 0 0; + vertical-align: middle; + text-align: center; +} + +/* line 8, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-header-text-container { + overflow: hidden; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +/* line 4, ../../../ext-theme-base/sass/src/dd/DD.scss */ +.x-dd-drag-proxy, +.x-dd-drag-current { + z-index: 1000000!important; + pointer-events: none; +} + +/* line 2, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-repair .x-dd-drag-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 6, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-repair .x-dd-drop-icon { + display: none; +} + +/* line 11, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85); + opacity: 0.85; + padding: 5px; + padding-left: 20px; + white-space: nowrap; + color: #000; + font: normal 12px helvetica, arial, verdana, sans-serif; + border: 1px solid; + border-color: #ddd #bbb #bbb #ddd; + background-color: #fff; +} + +/* line 28, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-icon { + position: absolute; + top: 3px; + left: 3px; + display: block; + width: 16px; + height: 16px; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + z-index: 1; +} + +/* line 66, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-ok .x-dd-drop-icon { + background-image: url(images/dd/drop-yes.png); +} + +/* line 70, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-ok-add .x-dd-drop-icon { + background-image: url(images/dd/drop-add.png); +} + +/* line 75, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-nodrop div.x-dd-drop-icon { + background-image: url(images/dd/drop-no.png); +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel, +.x-plain { + overflow: hidden; + position: relative; +} + +/* line 7, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel { + outline: none; +} + +/* line 23, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-ie .x-panel-header, +.x-ie .x-panel-header-tl, +.x-ie .x-panel-header-tc, +.x-ie .x-panel-header-tr, +.x-ie .x-panel-header-ml, +.x-ie .x-panel-header-mc, +.x-ie .x-panel-header-mr, +.x-ie .x-panel-header-bl, +.x-ie .x-panel-header-bc, +.x-ie .x-panel-header-br { + zoom: 1; +} + +/* line 29, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-ie8 td.x-frame-mc { + vertical-align: top; +} + +/* line 35, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel-body { + overflow: hidden; + position: relative; +} + +/* line 42, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-vertical .x-frame-mc { + background-repeat: repeat-y; +} + +/* line 49, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel-header-plain, +.x-panel-body-plain { + border: 0; + padding: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip { + position: absolute; + overflow: visible; + /*pointer needs to be able to stick out*/ +} + +/* line 6, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip-body { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip-anchor { + position: absolute; + overflow: hidden; + border-style: solid; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Table.scss */ +.x-table-layout { + font-size: 1em; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group { + position: relative; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body { + position: relative; + zoom: 1; +} +/* line 9, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body .x-table-layout-cell { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/Viewport.scss */ +.x-viewport, .x-viewport body { + margin: 0; + padding: 0; + border: 0 none; + overflow: hidden; + height: 100%; + position: static; +} + +/* line 1, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window { + outline: none; + overflow: hidden; +} +/* line 5, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window .x-window-wrap { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window-body { + position: relative; + overflow: hidden; +} + +/* line 15, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window-body-plain { + background: transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label { + display: block; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label-right { + text-align: right; +} + +/* line 9, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label-top { + display: block; + zoom: 1; +} + +/* line 15, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-invalid-icon { + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-invalid-icon ul { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x-form-textarea { + overflow: auto; + resize: none; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x-safari.x-mac .x-form-textarea { + margin-bottom: -2px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Display.scss */ +.x-form-display-field-body { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb-wrap { + vertical-align: top; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb { + vertical-align: top; + overflow: hidden; + padding: 0; + border: 0; +} +/* line 10, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb::-moz-focus-inner { + padding: 0; + border: 0; +} + +/* line 16, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label { + display: inline-block; + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset { + display: block; + /* preserve margins in IE */ + position: relative; +} + +/* line 6, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header { + overflow: hidden; +} +/* line 10, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-item, +.x-fieldset-header .x-tool { + float: left; +} +/* line 14, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb-wrap { + font-size: 0; + line-height: 0; +} +/* line 19, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb { + margin: 0; +} + +/* line 33, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text { + float: left; +} + +/*misc*/ +/* line 4, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-webkit *:focus { + outline: none !important; +} + +/* line 11, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-item { + vertical-align: top; + table-layout: fixed; +} + +/* line 17, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-item-body { + position: relative; +} + +/* line 33, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-form-item td { + border-top: 1px solid transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + cursor: pointer; + overflow: hidden; + background-repeat: no-repeat; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-item-disabled .x-form-trigger { + cursor: default; +} + +/* line 10, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-trigger-noedit { + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap { + vertical-align: top; + border-collapse: separate; +} + +/* line 2, ../../../ext-theme-base/sass/src/form/field/Spinner.scss */ +.x-form-spinner-up, +.x-form-spinner-down { + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-inner { + table-layout: fixed; + width: 100%; + border-collapse: separate; +} + +/* line 11, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-cell { + padding: 0; +} + +/* line 15, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-header { + position: relative; + zoom: 1; +} + +/* line 20, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-arrow { + position: absolute; + outline: none; + font-size: 0; +} + +/* line 26, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-column-header { + padding: 0; +} + +/* line 30, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-date { + display: block; + zoom: 1; + text-decoration: none; +} + +/* line 36, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker { + position: absolute; + left: 0; + top: 0; +} + +/* line 42, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-body { + height: 100%; +} + +/* line 47, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-months, +.x-monthpicker-years { + float: left; + height: 100%; +} + +/* line 52, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-item { + float: left; +} + +/* line 56, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-item-inner { + display: block; + text-decoration: none; +} + +/* line 61, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button-ct { + float: left; + text-align: center; +} + +/* line 66, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button { + display: inline-block; + outline: none; + font-size: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-buttons { + position: absolute; + bottom: 0; + width: 100%; +} +/* line 78, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-strict .x-ie6 .x-monthpicker-buttons { + bottom: -1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/File.scss */ +.x-form-file-btn { + overflow: hidden; +} + +/* line 5, ../../../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 1, ../../../ext-theme-base/sass/src/form/field/Hidden.scss */ +.x-form-item-hidden { + margin: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x-color-picker-item { + float: left; + text-decoration: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x-color-picker-item-inner { + display: block; + font-size: 1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-toolbar { + position: static !important; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x-htmleditor-iframe { + display: block; + overflow: auto; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Fit.scss */ +.x-fit-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-row, +.x-grid-data-row { + outline: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-view { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-table { + table-layout: fixed; + border-collapse: separate; +} + +/* line 16, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-td { + overflow: hidden; + border-width: 0; + vertical-align: top; +} + +/* line 22, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-cell-inner { + overflow: hidden; + white-space: nowrap; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-resize-marker { + position: absolute; + z-index: 5; + top: 0; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + position: absolute; + top: 0; + line-height: 0; + font-size: 0; + overflow: hidden; + z-index: 20000; + background: no-repeat center top transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/header/Container.scss */ +.x-grid-header-ct { + cursor: default; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header { + position: absolute; + overflow: hidden; + background-repeat: repeat-x; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-inner { + zoom: 1; + white-space: nowrap; + position: relative; + overflow: hidden; +} + +/* line 14, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-text { + white-space: nowrap; + background-repeat: no-repeat; + zoom: 1; + display: inline-block; +} + +/* line 25, ../../../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 43, ../../../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 48, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-right { + text-align: right; +} + +/* line 58, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-left { + text-align: left; +} + +/* line 68, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-center { + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Action.scss */ +.x-grid-cell-inner-action-col { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/CheckColumn.scss */ +.x-grid-cell-inner-checkcolumn { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/RowNumberer.scss */ +.x-row-numberer .x-column-header-inner { + text-overflow: clip; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-group, +.x-grid-group-body, +.x-grid-group-hd { + zoom: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd { + white-space: nowrap; +} + +/* line 11, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-row-body-hidden, .x-grid-group-collapsed { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x-grid-rowbody { + zoom: 1; +} + +/* line 5, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x-grid-row-body-hidden { + display: none; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x-grid-rowwrap .x-grid-table { + border: 0; +} +/* line 6, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x-grid-rowwrap .x-grid-cell { + border-bottom: 0; + background-color: transparent; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb-wrap { + text-align: center; +} + +/* line 9, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field { + margin: 0; + white-space: nowrap; + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor div.x-form-action-col-field { + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor { + position: absolute; + overflow: visible; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons { + position: absolute; + white-space: nowrap; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-expander { + font-size: 0; + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x-abs-layout-ct { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x-abs-layout-item { + position: absolute !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter { + font-size: 1px; +} + +/* line 5, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-horizontal { + cursor: e-resize; + cursor: row-resize; +} + +/* line 10, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-vertical { + cursor: e-resize; + cursor: col-resize; +} + +/* line 17, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed, +.x-splitter-horizontal-noresize, +.x-splitter-vertical-noresize { + cursor: default; +} + +/* line 21, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-active { + z-index: 4; +} + +/* line 25, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-collapse-el { + position: absolute; + background-repeat: no-repeat; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-region-slide-in { + z-index: 5; +} + +/* line 14, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-region-collapsed-placeholder { + z-index: 4; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-column { + float: left; +} + +/* line 21, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-ie6 .x-column { + display: inline; + /*prevent IE6 double-margin bug*/ +} + +/* line 25, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-quirks .x-ie .x-form-layout-table, .x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x-form-layout-table { + border-collapse: separate; + border-spacing: 0 2px; +} + +/* line 9, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x-ie6 .x-form-layout-table { + border-collapse: collapse; + border-spacing: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu { + outline: none; +} + +/* line 5, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item { + white-space: nowrap; + overflow: hidden; +} + +/* line 11, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-cmp { + margin: 2px; +} +/* line 14, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-cmp .x-field-label-cell { + vertical-align: middle; +} + +/* line 22, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-icon-separator { + position: absolute; + top: 0px; + z-index: 0; + height: 100%; + overflow: hidden; +} +/* line 28, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-plain .x-menu-icon-separator { + display: none; +} + +/* line 33, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-link { + text-decoration: none; + outline: 0; + zoom: 1; +} + +/* line 40, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-text { + zoom: 1; +} + +/* line 47, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-icon, +.x-menu-item-icon-right, +.x-menu-item-arrow { + position: absolute; + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/SplitterTracker.scss */ +.x-resizable-overlay { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + display: none; + z-index: 200000; + background-color: #fff; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider { + outline: none; + zoom: 1; + position: relative; +} + +/* line 9, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-inner { + position: relative; + left: 0; + top: 0; + overflow: visible; + zoom: 1; +} +/* line 17, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-inner { + background: repeat-y 0 0; +} + +/* line 23, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-end { + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-thumb { + position: absolute; + background: no-repeat 0 0; +} +/* line 31, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb { + left: 0; +} +/* line 34, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb { + bottom: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Tab.scss */ +a.x-tab { + text-decoration: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Bar.scss */ +.x-tab-bar { + position: relative; +} + +/* line 1, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox .x-column-header-text { + display: block; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 7, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x-grid-cell-row-checker { + vertical-align: middle; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab { + display: block; + white-space: nowrap; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-active { + z-index: 3; +} + +/* line 11, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-wrap { + display: block; + position: relative; +} + +/* line 16, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-button { + zoom: 1; + display: block; + outline: none; +} + +/* line 22, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-inner { + display: block; + text-align: center; + white-space: nowrap; + text-overflow: ellipsis; + -o-text-overflow: ellipsis; + overflow: hidden; + zoom: 1; +} + +/* line 32, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 42, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar { + z-index: 1; +} + +/* line 46, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-body { + z-index: 2; + position: relative; +} + +/* line 51, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip { + position: absolute; + line-height: 0; + font-size: 0; + z-index: 1; +} + +/* line 58, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-horizontal .x-tab-bar-strip { + width: 100%; + left: 0; +} + +/* line 63, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-vertical .x-tab-bar-strip { + height: 100%; + top: 0; +} + +/* line 68, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-top { + bottom: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-bottom { + top: 0; +} + +/* line 76, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-left { + right: 0; +} + +/* line 87, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-right { + left: 0; +} + +/* line 98, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-plain { + background: transparent !important; +} + +/* line 102, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-icon-el { + position: absolute; + background-repeat: no-repeat; + top: 0; + left: 0; + right: auto; + bottom: 0; +} + +/* line 118, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-close-btn { + display: block; + position: absolute; + font-size: 0; + line-height: 0; + background: no-repeat; +} + +/* line 126, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-mc { + overflow: visible; +} + +/* line 3, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-autowidth-table .x-grid-table { + table-layout: auto; + width: auto !important; +} + +/* line 8, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-view { + overflow: hidden; +} + +/* line 13, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-elbow-img, +.x-tree-icon { + background-repeat: no-repeat; + background-position: 0 center; + vertical-align: top; +} + +/* line 19, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-checkbox { + border: 0; + padding: 0; + vertical-align: top; + position: relative; + background-color: transparent; +} + +/* line 27, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-animator-wrap { + overflow: hidden; +} + +/* line 31, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-node-text { + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-surface { + display: -moz-inline-stack; + display: inline-block; + vertical-align: middle; + *vertical-align: auto; + zoom: 1; + *display: inline; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.rvml { + behavior: url(#default#VML); +} + +/* line 10, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-surface tspan { + user-select: none; + -o-user-select: none; + -ms-user-select: none; + -moz-user-select: -moz-none; + -webkit-user-select: none; + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-sprite { + position: absolute; + left: 0; + top: 0; + width: 1px; + height: 1px; +} + +/* line 22, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-group { + position: absolute; + left: 0; + top: 0; + width: 1000px; + height: 1000px; +} + +/* line 30, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-measure-span { + position: absolute; + left: -9999em; + top: -9999em; + padding: 0; + margin: 0; + display: inline; +} + +/* line 39, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 47, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 55, ../../../ext-theme-base/sass/src/draw/Component.scss */ +svg, vml { + overflow: hidden; +} + +/* including package ext-theme-neutral */ +/* line 1, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x-body { + color: black; + font-size: 13px; + font-family: helvetica, arial, verdana, sans-serif; + background: #f5f5f5; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x-animating-size, +.x-collapsed { + overflow: hidden!important; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/Editor.scss */ +.x-editor .x-form-item-body { + padding-bottom: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-element { + position: absolute; + top: -10px; + left: -10px; + width: 0px; + height: 0px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame { + position: absolute; + left: 0px; + top: 0px; + z-index: 100000000; + width: 0px; + height: 0px; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-top, +.x-focus-frame-bottom, +.x-focus-frame-left, +.x-focus-frame-right { + position: absolute; + top: 0px; + left: 0px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-top, +.x-focus-frame-bottom { + border-top: solid 2px #15428b; + height: 2px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-left, +.x-focus-frame-right { + border-left: solid 2px #15428b; + width: 2px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; + background: white; +} + +/* line 9, ../../../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-image: none; + background-color: #e5e5e5; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg-inner { + padding: 0; + background-color: transparent; + color: #666666; + font: normal 13px helvetica, arial, verdana, sans-serif; +} + +/* line 41, ../../../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; +} + +/** + * Creates a visual theme for an Ext.ProgressBar + * + * @param {string} $ui-label + * 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 67, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default { + background-color: #f5f5f5; + border-width: 0; + height: 20px; + border-color: #157fcc; +} +/* line 72, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-content-box .x-progress-default { + height: 20px; +} +/* line 84, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-bar-default { + background-image: none; + background-color: #c1ddf1; +} +/* line 99, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-text { + color: #666666; + font-weight: bold; + font-size: 13px; + text-align: center; + line-height: 20px; +} +/* line 107, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-text-back { + color: #666666; + line-height: 20px; +} + +/** + * Creates a visual theme for a 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-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-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-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-disabled + * The text color of the button when the button is disabled + * + * @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-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-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-disabled + * The font-family of the button when the button is disabled + * + * @param {number} $icon-size + * The size of the button icon + * + * @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=false] + * 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 + */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small { + border-color: #126daf; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #3892d3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4b9cd7), color-stop(50%, #3892d3), color-stop(51%, #358ac8), color-stop(100%, #3892d3)); + background-image: -webkit-linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); + background-image: -moz-linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); + background-image: -o-linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); + background-image: linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mc { + background-image: url(images/btn/btn-default-small-fbg.gif); + background-position: 0 top; + background-color: #3892d3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-small { + background-image: url(images/btn/btn-default-small-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tr, +.x-btn-default-small-br, +.x-btn-default-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl, +.x-btn-default-small-bl, +.x-btn-default-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl, +.x-btn-default-small-bl, +.x-btn-default-small-tr, +.x-btn-default-small-br, +.x-btn-default-small-tc, +.x-btn-default-small-bc, +.x-btn-default-small-ml, +.x-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-ml, +.x-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-small-tl, +.x-strict .x-ie7 .x-btn-default-small-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-inner { + font-size: 12px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + color: white; + padding: 0 5px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow { + background-image: url(images/button/default-small-arrow.png); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow-right { + padding-right: 21px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow-bottom { + padding-bottom: 18px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-glyph { + font-size: 16px; + line-height: 16px; + color: white; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-small .x-btn-glyph { + color: #9bc8e9; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled { + border-color: #157fcc; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-button, +.x-btn-default-small-noicon .x-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-inner, +.x-btn-default-small-noicon .x-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-small-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-inner { + line-height: 16px; + padding-left: 21px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-small-icon-text-left .x-btn-icon-el { + height: 16px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-inner { + line-height: 16px; + padding-right: 21px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-small-icon-text-right .x-btn-icon-el { + height: 16px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-top .x-btn-inner { + padding-top: 21px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-top .x-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-bottom .x-btn-inner { + padding-bottom: 21px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-bottom .x-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over { + border-color: #157fcc; + background-image: none; + background-color: #3386c2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4792c8), color-stop(50%, #3386c2), color-stop(51%, #307fb8), color-stop(100%, #3386c2)); + background-image: -webkit-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -moz-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -o-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus { + border-color: #157fcc; + background-image: none; + background-color: #3386c2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4792c8), color-stop(50%, #3386c2), color-stop(51%, #307fb8), color-stop(100%, #3386c2)); + background-image: -webkit-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -moz-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -o-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active, +.x-btn-default-small-pressed { + border-color: #157fcc; + background-image: none; + background-color: #2a6d9e; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a6d9e), color-stop(50%, #276796), color-stop(51%, #2a6d9e), color-stop(100%, #3f7ba7)); + background-image: -webkit-linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); + background-image: -moz-linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); + background-image: -o-linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); + background-image: linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-tl, +.x-btn-default-small-over .x-frame-bl, +.x-btn-default-small-over .x-frame-tr, +.x-btn-default-small-over .x-frame-br, +.x-btn-default-small-over .x-frame-tc, +.x-btn-default-small-over .x-frame-bc { + background-image: url(images/btn/btn-default-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-ml, +.x-btn-default-small-over .x-frame-mr { + background-image: url(images/btn/btn-default-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-mc { + background-color: #3386c2; + background-image: url(images/btn/btn-default-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-tl, +.x-btn-default-small-focus .x-frame-bl, +.x-btn-default-small-focus .x-frame-tr, +.x-btn-default-small-focus .x-frame-br, +.x-btn-default-small-focus .x-frame-tc, +.x-btn-default-small-focus .x-frame-bc { + background-image: url(images/btn/btn-default-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-ml, +.x-btn-default-small-focus .x-frame-mr { + background-image: url(images/btn/btn-default-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-mc { + background-color: #3386c2; + background-image: url(images/btn/btn-default-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-tl, +.x-btn-default-small-menu-active .x-frame-bl, +.x-btn-default-small-menu-active .x-frame-tr, +.x-btn-default-small-menu-active .x-frame-br, +.x-btn-default-small-menu-active .x-frame-tc, +.x-btn-default-small-menu-active .x-frame-bc, +.x-btn-default-small-pressed .x-frame-tl, +.x-btn-default-small-pressed .x-frame-bl, +.x-btn-default-small-pressed .x-frame-tr, +.x-btn-default-small-pressed .x-frame-br, +.x-btn-default-small-pressed .x-frame-tc, +.x-btn-default-small-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-ml, +.x-btn-default-small-menu-active .x-frame-mr, +.x-btn-default-small-pressed .x-frame-ml, +.x-btn-default-small-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-mc, +.x-btn-default-small-pressed .x-frame-mc { + background-color: #2a6d9e; + background-image: url(images/btn/btn-default-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-tl, +.x-btn-default-small-disabled .x-frame-bl, +.x-btn-default-small-disabled .x-frame-tr, +.x-btn-default-small-disabled .x-frame-br, +.x-btn-default-small-disabled .x-frame-tc, +.x-btn-default-small-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-ml, +.x-btn-default-small-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-mc { + background-color: null; + background-image: url(images/btn/btn-default-small-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-over { + background-image: url(images/btn/btn-default-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-focus { + background-image: url(images/btn/btn-default-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-menu-active, +.x-nlg .x-btn-default-small-pressed { + background-image: url(images/btn/btn-default-small-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-disabled { + background-image: url(images/btn/btn-default-small-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-split-right { + background-image: url(images/button/default-small-s-arrow.png); + padding-right: 23px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-split-bottom { + background-image: url(images/button/default-small-s-arrow-b.png); + padding-bottom: 20px; +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium { + border-color: #126daf; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #3892d3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4b9cd7), color-stop(50%, #3892d3), color-stop(51%, #358ac8), color-stop(100%, #3892d3)); + background-image: -webkit-linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); + background-image: -moz-linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); + background-image: -o-linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); + background-image: linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mc { + background-image: url(images/btn/btn-default-medium-fbg.gif); + background-position: 0 top; + background-color: #3892d3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-medium { + background-image: url(images/btn/btn-default-medium-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tr, +.x-btn-default-medium-br, +.x-btn-default-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl, +.x-btn-default-medium-bl, +.x-btn-default-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl, +.x-btn-default-medium-bl, +.x-btn-default-medium-tr, +.x-btn-default-medium-br, +.x-btn-default-medium-tc, +.x-btn-default-medium-bc, +.x-btn-default-medium-ml, +.x-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-ml, +.x-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-medium-tl, +.x-strict .x-ie7 .x-btn-default-medium-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-inner { + font-size: 14px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + color: white; + padding: 0 8px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow { + background-image: url(images/button/default-medium-arrow.png); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow-right { + padding-right: 30px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow-bottom { + padding-bottom: 26px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-glyph { + font-size: 24px; + line-height: 24px; + color: white; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-medium .x-btn-glyph { + color: #9bc8e9; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled { + border-color: #157fcc; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-button, +.x-btn-default-medium-noicon .x-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-inner, +.x-btn-default-medium-noicon .x-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-medium-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-inner { + line-height: 24px; + padding-left: 29px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon-el { + height: 24px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-inner { + line-height: 24px; + padding-right: 29px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon-el { + height: 24px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-top .x-btn-inner { + padding-top: 29px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-top .x-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-bottom .x-btn-inner { + padding-bottom: 29px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-bottom .x-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over { + border-color: #157fcc; + background-image: none; + background-color: #3386c2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4792c8), color-stop(50%, #3386c2), color-stop(51%, #307fb8), color-stop(100%, #3386c2)); + background-image: -webkit-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -moz-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -o-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus { + border-color: #157fcc; + background-image: none; + background-color: #3386c2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4792c8), color-stop(50%, #3386c2), color-stop(51%, #307fb8), color-stop(100%, #3386c2)); + background-image: -webkit-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -moz-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -o-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active, +.x-btn-default-medium-pressed { + border-color: #157fcc; + background-image: none; + background-color: #2a6d9e; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a6d9e), color-stop(50%, #276796), color-stop(51%, #2a6d9e), color-stop(100%, #3f7ba7)); + background-image: -webkit-linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); + background-image: -moz-linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); + background-image: -o-linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); + background-image: linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-tl, +.x-btn-default-medium-over .x-frame-bl, +.x-btn-default-medium-over .x-frame-tr, +.x-btn-default-medium-over .x-frame-br, +.x-btn-default-medium-over .x-frame-tc, +.x-btn-default-medium-over .x-frame-bc { + background-image: url(images/btn/btn-default-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-ml, +.x-btn-default-medium-over .x-frame-mr { + background-image: url(images/btn/btn-default-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-mc { + background-color: #3386c2; + background-image: url(images/btn/btn-default-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-tl, +.x-btn-default-medium-focus .x-frame-bl, +.x-btn-default-medium-focus .x-frame-tr, +.x-btn-default-medium-focus .x-frame-br, +.x-btn-default-medium-focus .x-frame-tc, +.x-btn-default-medium-focus .x-frame-bc { + background-image: url(images/btn/btn-default-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-ml, +.x-btn-default-medium-focus .x-frame-mr { + background-image: url(images/btn/btn-default-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-mc { + background-color: #3386c2; + background-image: url(images/btn/btn-default-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-tl, +.x-btn-default-medium-menu-active .x-frame-bl, +.x-btn-default-medium-menu-active .x-frame-tr, +.x-btn-default-medium-menu-active .x-frame-br, +.x-btn-default-medium-menu-active .x-frame-tc, +.x-btn-default-medium-menu-active .x-frame-bc, +.x-btn-default-medium-pressed .x-frame-tl, +.x-btn-default-medium-pressed .x-frame-bl, +.x-btn-default-medium-pressed .x-frame-tr, +.x-btn-default-medium-pressed .x-frame-br, +.x-btn-default-medium-pressed .x-frame-tc, +.x-btn-default-medium-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-ml, +.x-btn-default-medium-menu-active .x-frame-mr, +.x-btn-default-medium-pressed .x-frame-ml, +.x-btn-default-medium-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-mc, +.x-btn-default-medium-pressed .x-frame-mc { + background-color: #2a6d9e; + background-image: url(images/btn/btn-default-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-tl, +.x-btn-default-medium-disabled .x-frame-bl, +.x-btn-default-medium-disabled .x-frame-tr, +.x-btn-default-medium-disabled .x-frame-br, +.x-btn-default-medium-disabled .x-frame-tc, +.x-btn-default-medium-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-ml, +.x-btn-default-medium-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-mc { + background-color: null; + background-image: url(images/btn/btn-default-medium-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-over { + background-image: url(images/btn/btn-default-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-focus { + background-image: url(images/btn/btn-default-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-menu-active, +.x-nlg .x-btn-default-medium-pressed { + background-image: url(images/btn/btn-default-medium-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-disabled { + background-image: url(images/btn/btn-default-medium-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-split-right { + background-image: url(images/button/default-medium-s-arrow.png); + padding-right: 32px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-split-bottom { + background-image: url(images/button/default-medium-s-arrow-b.png); + padding-bottom: 28px; +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large { + border-color: #126daf; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #3892d3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4b9cd7), color-stop(50%, #3892d3), color-stop(51%, #358ac8), color-stop(100%, #3892d3)); + background-image: -webkit-linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); + background-image: -moz-linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); + background-image: -o-linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); + background-image: linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mc { + background-image: url(images/btn/btn-default-large-fbg.gif); + background-position: 0 top; + background-color: #3892d3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-large { + background-image: url(images/btn/btn-default-large-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tr, +.x-btn-default-large-br, +.x-btn-default-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl, +.x-btn-default-large-bl, +.x-btn-default-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl, +.x-btn-default-large-bl, +.x-btn-default-large-tr, +.x-btn-default-large-br, +.x-btn-default-large-tc, +.x-btn-default-large-bc, +.x-btn-default-large-ml, +.x-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-ml, +.x-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-large-tl, +.x-strict .x-ie7 .x-btn-default-large-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-inner { + font-size: 16px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + color: white; + padding: 0 10px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow { + background-image: url(images/button/default-large-arrow.png); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow-right { + padding-right: 36px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow-bottom { + padding-bottom: 32px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-glyph { + font-size: 32px; + line-height: 32px; + color: white; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-large .x-btn-glyph { + color: #9bc8e9; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled { + border-color: #157fcc; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-button, +.x-btn-default-large-noicon .x-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-inner, +.x-btn-default-large-noicon .x-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-large-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-inner { + line-height: 32px; + padding-left: 37px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-large-icon-text-left .x-btn-icon-el { + height: 32px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-inner { + line-height: 32px; + padding-right: 37px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-large-icon-text-right .x-btn-icon-el { + height: 32px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-top .x-btn-inner { + padding-top: 37px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-top .x-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-bottom .x-btn-inner { + padding-bottom: 37px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-bottom .x-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over { + border-color: #157fcc; + background-image: none; + background-color: #3386c2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4792c8), color-stop(50%, #3386c2), color-stop(51%, #307fb8), color-stop(100%, #3386c2)); + background-image: -webkit-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -moz-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -o-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus { + border-color: #157fcc; + background-image: none; + background-color: #3386c2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4792c8), color-stop(50%, #3386c2), color-stop(51%, #307fb8), color-stop(100%, #3386c2)); + background-image: -webkit-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -moz-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -o-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active, +.x-btn-default-large-pressed { + border-color: #157fcc; + background-image: none; + background-color: #2a6d9e; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a6d9e), color-stop(50%, #276796), color-stop(51%, #2a6d9e), color-stop(100%, #3f7ba7)); + background-image: -webkit-linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); + background-image: -moz-linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); + background-image: -o-linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); + background-image: linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-tl, +.x-btn-default-large-over .x-frame-bl, +.x-btn-default-large-over .x-frame-tr, +.x-btn-default-large-over .x-frame-br, +.x-btn-default-large-over .x-frame-tc, +.x-btn-default-large-over .x-frame-bc { + background-image: url(images/btn/btn-default-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-ml, +.x-btn-default-large-over .x-frame-mr { + background-image: url(images/btn/btn-default-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-mc { + background-color: #3386c2; + background-image: url(images/btn/btn-default-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-tl, +.x-btn-default-large-focus .x-frame-bl, +.x-btn-default-large-focus .x-frame-tr, +.x-btn-default-large-focus .x-frame-br, +.x-btn-default-large-focus .x-frame-tc, +.x-btn-default-large-focus .x-frame-bc { + background-image: url(images/btn/btn-default-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-ml, +.x-btn-default-large-focus .x-frame-mr { + background-image: url(images/btn/btn-default-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-mc { + background-color: #3386c2; + background-image: url(images/btn/btn-default-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-tl, +.x-btn-default-large-menu-active .x-frame-bl, +.x-btn-default-large-menu-active .x-frame-tr, +.x-btn-default-large-menu-active .x-frame-br, +.x-btn-default-large-menu-active .x-frame-tc, +.x-btn-default-large-menu-active .x-frame-bc, +.x-btn-default-large-pressed .x-frame-tl, +.x-btn-default-large-pressed .x-frame-bl, +.x-btn-default-large-pressed .x-frame-tr, +.x-btn-default-large-pressed .x-frame-br, +.x-btn-default-large-pressed .x-frame-tc, +.x-btn-default-large-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-ml, +.x-btn-default-large-menu-active .x-frame-mr, +.x-btn-default-large-pressed .x-frame-ml, +.x-btn-default-large-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-mc, +.x-btn-default-large-pressed .x-frame-mc { + background-color: #2a6d9e; + background-image: url(images/btn/btn-default-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-tl, +.x-btn-default-large-disabled .x-frame-bl, +.x-btn-default-large-disabled .x-frame-tr, +.x-btn-default-large-disabled .x-frame-br, +.x-btn-default-large-disabled .x-frame-tc, +.x-btn-default-large-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-ml, +.x-btn-default-large-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-mc { + background-color: null; + background-image: url(images/btn/btn-default-large-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-over { + background-image: url(images/btn/btn-default-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-focus { + background-image: url(images/btn/btn-default-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-menu-active, +.x-nlg .x-btn-default-large-pressed { + background-image: url(images/btn/btn-default-large-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-disabled { + background-image: url(images/btn/btn-default-large-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-split-right { + background-image: url(images/button/default-large-s-arrow.png); + padding-right: 38px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-split-bottom { + background-image: url(images/button/default-large-s-arrow-b.png); + padding-bottom: 34px; +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small { + border-color: #e1e1e1; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #f5f5f5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(50%, #f5f5f5), color-stop(51%, #e8e8e8), color-stop(100%, #f5f5f5)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -moz-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -o-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mc { + background-image: url(images/btn/btn-default-toolbar-small-fbg.gif); + background-position: 0 top; + background-color: #f5f5f5; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-toolbar-small { + background-image: url(images/btn/btn-default-toolbar-small-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tr, +.x-btn-default-toolbar-small-br, +.x-btn-default-toolbar-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl, +.x-btn-default-toolbar-small-bl, +.x-btn-default-toolbar-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl, +.x-btn-default-toolbar-small-bl, +.x-btn-default-toolbar-small-tr, +.x-btn-default-toolbar-small-br, +.x-btn-default-toolbar-small-tc, +.x-btn-default-toolbar-small-bc, +.x-btn-default-toolbar-small-ml, +.x-btn-default-toolbar-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-toolbar-small-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-ml, +.x-btn-default-toolbar-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-toolbar-small-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-small-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-small-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-toolbar-small-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-bg.gif), corners:url(images/btn/btn-default-toolbar-small-corners.gif), sides:url(images/btn/btn-default-toolbar-small-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-inner { + font-size: 12px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + color: #666666; + padding: 0 5px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow { + background-image: url(images/button/default-toolbar-small-arrow.png); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow-right { + padding-right: 21px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow-bottom { + padding-bottom: 18px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-glyph { + font-size: 16px; + line-height: 16px; + color: #666666; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-small .x-btn-glyph { + color: #adadad; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled { + background-image: none; + background-color: #f5f5f5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(50%, #f5f5f5), color-stop(51%, #e8e8e8), color-stop(100%, #f5f5f5)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -moz-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -o-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-button, +.x-btn-default-toolbar-small-noicon .x-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-inner { + line-height: 16px; + padding-left: 21px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el { + height: 16px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-inner { + line-height: 16px; + padding-right: 21px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el { + height: 16px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-top .x-btn-inner { + padding-top: 21px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner { + padding-bottom: 21px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over { + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus { + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active, +.x-btn-default-toolbar-small-pressed { + background-image: none; + background-color: #e1e1e1; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1e1e1), color-stop(50%, #d5d5d5), color-stop(51%, #e1e1e1), color-stop(100%, #e4e4e4)); + background-image: -webkit-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -moz-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -o-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-tl, +.x-btn-default-toolbar-small-over .x-frame-bl, +.x-btn-default-toolbar-small-over .x-frame-tr, +.x-btn-default-toolbar-small-over .x-frame-br, +.x-btn-default-toolbar-small-over .x-frame-tc, +.x-btn-default-toolbar-small-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-ml, +.x-btn-default-toolbar-small-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-default-toolbar-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-tl, +.x-btn-default-toolbar-small-focus .x-frame-bl, +.x-btn-default-toolbar-small-focus .x-frame-tr, +.x-btn-default-toolbar-small-focus .x-frame-br, +.x-btn-default-toolbar-small-focus .x-frame-tc, +.x-btn-default-toolbar-small-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-ml, +.x-btn-default-toolbar-small-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-default-toolbar-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-tl, +.x-btn-default-toolbar-small-menu-active .x-frame-bl, +.x-btn-default-toolbar-small-menu-active .x-frame-tr, +.x-btn-default-toolbar-small-menu-active .x-frame-br, +.x-btn-default-toolbar-small-menu-active .x-frame-tc, +.x-btn-default-toolbar-small-menu-active .x-frame-bc, +.x-btn-default-toolbar-small-pressed .x-frame-tl, +.x-btn-default-toolbar-small-pressed .x-frame-bl, +.x-btn-default-toolbar-small-pressed .x-frame-tr, +.x-btn-default-toolbar-small-pressed .x-frame-br, +.x-btn-default-toolbar-small-pressed .x-frame-tc, +.x-btn-default-toolbar-small-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-ml, +.x-btn-default-toolbar-small-menu-active .x-frame-mr, +.x-btn-default-toolbar-small-pressed .x-frame-ml, +.x-btn-default-toolbar-small-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-mc, +.x-btn-default-toolbar-small-pressed .x-frame-mc { + background-color: #e1e1e1; + background-image: url(images/btn/btn-default-toolbar-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-tl, +.x-btn-default-toolbar-small-disabled .x-frame-bl, +.x-btn-default-toolbar-small-disabled .x-frame-tr, +.x-btn-default-toolbar-small-disabled .x-frame-br, +.x-btn-default-toolbar-small-disabled .x-frame-tc, +.x-btn-default-toolbar-small-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-ml, +.x-btn-default-toolbar-small-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-mc { + background-color: #f5f5f5; + background-image: url(images/btn/btn-default-toolbar-small-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-over { + background-image: url(images/btn/btn-default-toolbar-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-focus { + background-image: url(images/btn/btn-default-toolbar-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-menu-active, +.x-nlg .x-btn-default-toolbar-small-pressed { + background-image: url(images/btn/btn-default-toolbar-small-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-disabled { + background-image: url(images/btn/btn-default-toolbar-small-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-split-right { + background-image: url(images/button/default-toolbar-small-s-arrow.png); + padding-right: 23px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-split-bottom { + background-image: url(images/button/default-toolbar-small-s-arrow-b.png); + padding-bottom: 20px; +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-disabled-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium { + border-color: #e1e1e1; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #f5f5f5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(50%, #f5f5f5), color-stop(51%, #e8e8e8), color-stop(100%, #f5f5f5)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -moz-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -o-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mc { + background-image: url(images/btn/btn-default-toolbar-medium-fbg.gif); + background-position: 0 top; + background-color: #f5f5f5; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-toolbar-medium { + background-image: url(images/btn/btn-default-toolbar-medium-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tr, +.x-btn-default-toolbar-medium-br, +.x-btn-default-toolbar-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl, +.x-btn-default-toolbar-medium-bl, +.x-btn-default-toolbar-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl, +.x-btn-default-toolbar-medium-bl, +.x-btn-default-toolbar-medium-tr, +.x-btn-default-toolbar-medium-br, +.x-btn-default-toolbar-medium-tc, +.x-btn-default-toolbar-medium-bc, +.x-btn-default-toolbar-medium-ml, +.x-btn-default-toolbar-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-toolbar-medium-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-ml, +.x-btn-default-toolbar-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-toolbar-medium-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-medium-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-medium-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-toolbar-medium-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-bg.gif), corners:url(images/btn/btn-default-toolbar-medium-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-inner { + font-size: 14px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + color: #666666; + padding: 0 8px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow { + background-image: url(images/button/default-toolbar-medium-arrow.png); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow-right { + padding-right: 30px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow-bottom { + padding-bottom: 26px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-glyph { + font-size: 24px; + line-height: 24px; + color: #666666; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-medium .x-btn-glyph { + color: #adadad; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled { + background-image: none; + background-color: #f5f5f5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(50%, #f5f5f5), color-stop(51%, #e8e8e8), color-stop(100%, #f5f5f5)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -moz-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -o-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-button, +.x-btn-default-toolbar-medium-noicon .x-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-inner { + line-height: 24px; + padding-left: 29px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el { + height: 24px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-inner { + line-height: 24px; + padding-right: 29px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el { + height: 24px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-top .x-btn-inner { + padding-top: 29px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner { + padding-bottom: 29px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over { + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus { + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active, +.x-btn-default-toolbar-medium-pressed { + background-image: none; + background-color: #e1e1e1; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1e1e1), color-stop(50%, #d5d5d5), color-stop(51%, #e1e1e1), color-stop(100%, #e4e4e4)); + background-image: -webkit-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -moz-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -o-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-tl, +.x-btn-default-toolbar-medium-over .x-frame-bl, +.x-btn-default-toolbar-medium-over .x-frame-tr, +.x-btn-default-toolbar-medium-over .x-frame-br, +.x-btn-default-toolbar-medium-over .x-frame-tc, +.x-btn-default-toolbar-medium-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-ml, +.x-btn-default-toolbar-medium-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-default-toolbar-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-tl, +.x-btn-default-toolbar-medium-focus .x-frame-bl, +.x-btn-default-toolbar-medium-focus .x-frame-tr, +.x-btn-default-toolbar-medium-focus .x-frame-br, +.x-btn-default-toolbar-medium-focus .x-frame-tc, +.x-btn-default-toolbar-medium-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-ml, +.x-btn-default-toolbar-medium-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-default-toolbar-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-tl, +.x-btn-default-toolbar-medium-menu-active .x-frame-bl, +.x-btn-default-toolbar-medium-menu-active .x-frame-tr, +.x-btn-default-toolbar-medium-menu-active .x-frame-br, +.x-btn-default-toolbar-medium-menu-active .x-frame-tc, +.x-btn-default-toolbar-medium-menu-active .x-frame-bc, +.x-btn-default-toolbar-medium-pressed .x-frame-tl, +.x-btn-default-toolbar-medium-pressed .x-frame-bl, +.x-btn-default-toolbar-medium-pressed .x-frame-tr, +.x-btn-default-toolbar-medium-pressed .x-frame-br, +.x-btn-default-toolbar-medium-pressed .x-frame-tc, +.x-btn-default-toolbar-medium-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-ml, +.x-btn-default-toolbar-medium-menu-active .x-frame-mr, +.x-btn-default-toolbar-medium-pressed .x-frame-ml, +.x-btn-default-toolbar-medium-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-mc, +.x-btn-default-toolbar-medium-pressed .x-frame-mc { + background-color: #e1e1e1; + background-image: url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-tl, +.x-btn-default-toolbar-medium-disabled .x-frame-bl, +.x-btn-default-toolbar-medium-disabled .x-frame-tr, +.x-btn-default-toolbar-medium-disabled .x-frame-br, +.x-btn-default-toolbar-medium-disabled .x-frame-tc, +.x-btn-default-toolbar-medium-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-ml, +.x-btn-default-toolbar-medium-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-mc { + background-color: #f5f5f5; + background-image: url(images/btn/btn-default-toolbar-medium-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-over { + background-image: url(images/btn/btn-default-toolbar-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-focus { + background-image: url(images/btn/btn-default-toolbar-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-menu-active, +.x-nlg .x-btn-default-toolbar-medium-pressed { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-disabled { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-split-right { + background-image: url(images/button/default-toolbar-medium-s-arrow.png); + padding-right: 32px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-split-bottom { + background-image: url(images/button/default-toolbar-medium-s-arrow-b.png); + padding-bottom: 28px; +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large { + border-color: #e1e1e1; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #f5f5f5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(50%, #f5f5f5), color-stop(51%, #e8e8e8), color-stop(100%, #f5f5f5)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -moz-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -o-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mc { + background-image: url(images/btn/btn-default-toolbar-large-fbg.gif); + background-position: 0 top; + background-color: #f5f5f5; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-toolbar-large { + background-image: url(images/btn/btn-default-toolbar-large-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tr, +.x-btn-default-toolbar-large-br, +.x-btn-default-toolbar-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl, +.x-btn-default-toolbar-large-bl, +.x-btn-default-toolbar-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl, +.x-btn-default-toolbar-large-bl, +.x-btn-default-toolbar-large-tr, +.x-btn-default-toolbar-large-br, +.x-btn-default-toolbar-large-tc, +.x-btn-default-toolbar-large-bc, +.x-btn-default-toolbar-large-ml, +.x-btn-default-toolbar-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-toolbar-large-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-ml, +.x-btn-default-toolbar-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-toolbar-large-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-large-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-large-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-toolbar-large-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-bg.gif), corners:url(images/btn/btn-default-toolbar-large-corners.gif), sides:url(images/btn/btn-default-toolbar-large-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-inner { + font-size: 16px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + color: #666666; + padding: 0 10px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow { + background-image: url(images/button/default-toolbar-large-arrow.png); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow-right { + padding-right: 36px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow-bottom { + padding-bottom: 32px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-glyph { + font-size: 32px; + line-height: 32px; + color: #666666; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-large .x-btn-glyph { + color: #adadad; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled { + background-image: none; + background-color: #f5f5f5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(50%, #f5f5f5), color-stop(51%, #e8e8e8), color-stop(100%, #f5f5f5)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -moz-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -o-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-button, +.x-btn-default-toolbar-large-noicon .x-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-inner { + line-height: 32px; + padding-left: 37px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el { + height: 32px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-inner { + line-height: 32px; + padding-right: 37px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el { + height: 32px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-top .x-btn-inner { + padding-top: 37px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner { + padding-bottom: 37px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over { + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus { + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active, +.x-btn-default-toolbar-large-pressed { + background-image: none; + background-color: #e1e1e1; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1e1e1), color-stop(50%, #d5d5d5), color-stop(51%, #e1e1e1), color-stop(100%, #e4e4e4)); + background-image: -webkit-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -moz-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -o-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-tl, +.x-btn-default-toolbar-large-over .x-frame-bl, +.x-btn-default-toolbar-large-over .x-frame-tr, +.x-btn-default-toolbar-large-over .x-frame-br, +.x-btn-default-toolbar-large-over .x-frame-tc, +.x-btn-default-toolbar-large-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-ml, +.x-btn-default-toolbar-large-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-default-toolbar-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-tl, +.x-btn-default-toolbar-large-focus .x-frame-bl, +.x-btn-default-toolbar-large-focus .x-frame-tr, +.x-btn-default-toolbar-large-focus .x-frame-br, +.x-btn-default-toolbar-large-focus .x-frame-tc, +.x-btn-default-toolbar-large-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-ml, +.x-btn-default-toolbar-large-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-default-toolbar-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-tl, +.x-btn-default-toolbar-large-menu-active .x-frame-bl, +.x-btn-default-toolbar-large-menu-active .x-frame-tr, +.x-btn-default-toolbar-large-menu-active .x-frame-br, +.x-btn-default-toolbar-large-menu-active .x-frame-tc, +.x-btn-default-toolbar-large-menu-active .x-frame-bc, +.x-btn-default-toolbar-large-pressed .x-frame-tl, +.x-btn-default-toolbar-large-pressed .x-frame-bl, +.x-btn-default-toolbar-large-pressed .x-frame-tr, +.x-btn-default-toolbar-large-pressed .x-frame-br, +.x-btn-default-toolbar-large-pressed .x-frame-tc, +.x-btn-default-toolbar-large-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-ml, +.x-btn-default-toolbar-large-menu-active .x-frame-mr, +.x-btn-default-toolbar-large-pressed .x-frame-ml, +.x-btn-default-toolbar-large-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-mc, +.x-btn-default-toolbar-large-pressed .x-frame-mc { + background-color: #e1e1e1; + background-image: url(images/btn/btn-default-toolbar-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-tl, +.x-btn-default-toolbar-large-disabled .x-frame-bl, +.x-btn-default-toolbar-large-disabled .x-frame-tr, +.x-btn-default-toolbar-large-disabled .x-frame-br, +.x-btn-default-toolbar-large-disabled .x-frame-tc, +.x-btn-default-toolbar-large-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-ml, +.x-btn-default-toolbar-large-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-mc { + background-color: #f5f5f5; + background-image: url(images/btn/btn-default-toolbar-large-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-over { + background-image: url(images/btn/btn-default-toolbar-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-focus { + background-image: url(images/btn/btn-default-toolbar-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-menu-active, +.x-nlg .x-btn-default-toolbar-large-pressed { + background-image: url(images/btn/btn-default-toolbar-large-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-disabled { + background-image: url(images/btn/btn-default-toolbar-large-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-split-right { + background-image: url(images/button/default-toolbar-large-s-arrow.png); + padding-right: 38px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-split-bottom { + background-image: url(images/button/default-toolbar-large-s-arrow-b.png); + padding-bottom: 34px; +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-disabled-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 1161, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-left .x-btn-icon-el { + background-position: left center; +} + +/* line 1173, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-right .x-btn-icon-el { + background-position: right center; +} + +/* line 1184, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-top .x-btn-icon-el { + background-position: center top; +} + +/* line 1188, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-bottom .x-btn-icon-el { + background-position: center bottom; +} + +/* line 1192, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow-right { + background-position: right center; +} + +/* line 1202, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow-bottom { + background-position: center bottom; +} + +/* line 1206, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow { + background-repeat: no-repeat; +} + +/* line 1211, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split { + display: block; + background-repeat: no-repeat; +} + +/* line 1216, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split-right { + background-position: right center; +} + +/* line 1226, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split-bottom { + background-position: center bottom; +} + +/* line 1230, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-cycle-fixed-width .x-btn-inner { + text-align: inherit; +} + +/** + * Creates a visual theme for a Toolbar. + * @param {String} $ui + * The name of the UI + * + * @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 {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 {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-disabled=$toolbar-scroller-opacity-disabled] + * The opacity of disabled Toolbar scrollers + * + * @param {string} [$tool-background-image=$toolbar-tool-background-image] + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + * + * @member Ext.toolbar.Toolbar + */ +/* line 94, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar { + font-size: 13px; + border-style: solid; + padding: 6px 0 6px 8px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-item { + margin: 0 8px 0 0; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-text { + margin: 0 6px 0 4px; + color: #333f49; + line-height: 16px; + font-family: helvetica, arial, verdana, sans-serif; + font-size: 12px; + font-weight: normal; +} + +/* line 121, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.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 137, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-footer { + background: #dfeaf2; + border: 0; + margin: 0; + padding: 6px 0 6px 6px; +} +/* line 144, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-footer .x-toolbar-item { + margin: 0 6px 0 0; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-spacer { + width: 2px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-more-icon { + background-image: url(images/toolbar/more.png) !important; + background-position: center center !important; + background-repeat: no-repeat; +} + +/* line 45, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default { + border-color: silver; + border-width: 1px; + background-image: none; + background-color: white; +} +/* line 51, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller { + cursor: pointer; +} +/* line 55, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller-disabled { + cursor: default; +} +/* line 65, ../../../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 166, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-left { + background-image: url(images/toolbar/scroll-left.png); + background-position: 0 0; + width: 16px; + height: 16px; + border-style: solid; + border-color: #8db2e3; + border-width: 0; + margin-top: 4px; +} + +/* line 177, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-left-hover { + background-position: 0 0; +} + +/* line 181, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-right { + background-image: url(images/toolbar/scroll-right.png); + width: 16px; + height: 16px; + border-style: solid; + border-color: #8db2e3; + border-width: 0; + margin-top: 4px; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-right-hover { + background-position: -16px 0; +} + +/* line 195, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar .x-box-menu-after { + margin: 0 8px 0 8px; +} + +/* line 199, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical { + padding: 6px 8px 0 8px; +} +/* line 202, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-item { + margin: 0 0 6px 0; +} +/* line 206, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-text { + margin: 4px 0 6px 0; +} +/* line 210, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-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 219, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-box-menu-after, +.x-toolbar-vertical .x-rtl.x-box-menu-after { + margin: 6px 0 6px 0; + display: block; + float: none; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x-header-draggable .x-header-body, +.x-header-ghost { + cursor: move; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x-header-text { + white-space: nowrap; +} + +/** + * Creates a visual theme for a Panel + * + * @param {string} $ui-label + * 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 {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-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`. + * + * @member Ext.panel.Panel + */ +/* line 736, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default { + border-color: #157fcc; + padding: 0; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default { + font-size: 13px; + border: 1px solid #157fcc; +} +/* line 219, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default .x-tool-img { + background-color: #157fcc; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal { + padding: 9px 9px 10px 9px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal-noborder { + padding: 10px 10px 10px 10px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical { + padding: 9px 9px 9px 10px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical-noborder { + padding: 10px 10px 10px 10px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-default { + color: white; + font-size: 13px; + font-weight: bold; + font-family: arial, helvetica, verdana, sans-serif; + line-height: 15px; + padding: 1px 0 0; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-default { + background: white; + border-color: #157fcc; + color: black; + font-size: 13px; + font-size: normal; + border-width: 1px; + border-style: solid; +} + +/* line 432, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default { + background-image: none; + background-color: #157fcc; +} + +/* line 436, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical { + background-image: none; + background-color: #157fcc; +} + +/* line 494, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-top { + border-bottom-width: 1px !important; +} +/* line 498, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-right { + border-left-width: 1px !important; +} +/* line 502, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-bottom { + border-top-width: 1px !important; +} +/* line 506, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-left { + border-right-width: 1px !important; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-top:after { + display: none; + content: "x-slicer:stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-bottom:after { + display: none; + content: "x-slicer:stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-left:after { + display: none; + content: "x-slicer:stretch:left"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-right:after { + display: none; + content: "x-slicer:stretch:left"; +} + +/**/ +/* */ +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-vertical .x-panel-header-text-container { + background-color: #157fcc; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#157fcc); +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default .x-panel-header-glyph { + color: white; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-default .x-panel-header-glyph { + color: #8abfe5; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-panel-header-icon-before-title { + margin: 0 6px 0 0; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 6px; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-icon-before-title { + margin: 0 0 6px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-icon-after-title { + margin: 6px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-tool-before-title { + margin: 0 6px 0 0; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-tool-after-title { + margin: 6px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-tool-before-title { + margin: 0 0 6px 0; +} + +/* line 687, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-resizable .x-panel-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 2, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-l { + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-b { + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-bl { + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-r { + border-right-color: #157fcc !important; + border-right-width: 1px !important; +} + +/* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-rl { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-rb { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-rbl { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-t { + border-top-color: #157fcc !important; + border-top-width: 1px !important; +} + +/* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-tl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-tb { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-tbl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-tr { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; +} + +/* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-trl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-trb { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-trbl { + border-color: #157fcc !important; + border-width: 1px !important; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed { + border-color: #157fcc; + padding: 0; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed { + font-size: 13px; + border: 5px solid #157fcc; +} +/* line 219, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed .x-tool-img { + background-color: #157fcc; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal { + padding: 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal-noborder { + padding: 10px 10px 5px 10px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical { + padding: 5px 5px 5px 5px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical-noborder { + padding: 10px 10px 10px 5px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-default-framed { + color: white; + font-size: 13px; + font-weight: bold; + font-family: arial, helvetica, verdana, sans-serif; + line-height: 15px; + padding: 1px 0 0; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-default-framed { + background: white; + border-color: #157fcc; + color: black; + font-size: 13px; + font-size: normal; + border-width: 1px; + border-style: solid; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed { + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; + padding: 0px 0px 0px 0px; + border-width: 5px; + border-style: solid; + background-color: white; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mc { + background-color: white; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-default-framed-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-0-0-0-0; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tr, +.x-panel-default-framed-br, +.x-panel-default-framed-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl, +.x-panel-default-framed-bl, +.x-panel-default-framed-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl, +.x-panel-default-framed-bl, +.x-panel-default-framed-tr, +.x-panel-default-framed-br, +.x-panel-default-framed-tc, +.x-panel-default-framed-bc, +.x-panel-default-framed-ml, +.x-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-ml, +.x-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-default-framed-tl, +.x-strict .x-ie7 .x-panel-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 5px 5px 5px; + border-width: 5px 5px 0 5px; + border-style: solid; + background-color: #157fcc; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mc { + background-color: #157fcc; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-top-frameInfo { + font-family: dh-4-4-0-0-5-5-0-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tr, +.x-panel-header-default-framed-top-br, +.x-panel-header-default-framed-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl, +.x-panel-header-default-framed-top-bl, +.x-panel-header-default-framed-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl, +.x-panel-header-default-framed-top-bl, +.x-panel-header-default-framed-top-tr, +.x-panel-header-default-framed-top-br, +.x-panel-header-default-framed-top-tc, +.x-panel-header-default-framed-top-bc, +.x-panel-header-default-framed-top-ml, +.x-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-ml, +.x-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-top-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-top:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 5px 5px 5px; + border-width: 5px 5px 5px 0; + border-style: solid; + background-color: #157fcc; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mc { + background-color: #157fcc; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-right-frameInfo { + font-family: dh-0-4-4-0-5-5-5-0-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-ml { + background-position: 0 right; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mr { + background-position: right right; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tr, +.x-panel-header-default-framed-right-br, +.x-panel-header-default-framed-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl, +.x-panel-header-default-framed-right-bl, +.x-panel-header-default-framed-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl, +.x-panel-header-default-framed-right-bl, +.x-panel-header-default-framed-right-tr, +.x-panel-header-default-framed-right-br, +.x-panel-header-default-framed-right-tc, +.x-panel-header-default-framed-right-bc, +.x-panel-header-default-framed-right-ml, +.x-panel-header-default-framed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-ml, +.x-panel-header-default-framed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-right-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-right:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 0 5px 5px 5px; + border-style: solid; + background-color: #157fcc; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mc { + background-color: #157fcc; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-bottom-frameInfo { + font-family: dh-0-0-4-4-0-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tr, +.x-panel-header-default-framed-bottom-br, +.x-panel-header-default-framed-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl, +.x-panel-header-default-framed-bottom-bl, +.x-panel-header-default-framed-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl, +.x-panel-header-default-framed-bottom-bl, +.x-panel-header-default-framed-bottom-tr, +.x-panel-header-default-framed-bottom-br, +.x-panel-header-default-framed-bottom-tc, +.x-panel-header-default-framed-bottom-bc, +.x-panel-header-default-framed-bottom-ml, +.x-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-ml, +.x-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-bottom:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px 0 5px 5px; + border-style: solid; + background-color: #157fcc; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mc { + background-color: #157fcc; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-left-frameInfo { + font-family: dh-4-0-0-4-5-0-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-ml { + background-position: 0 left; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mr { + background-position: right left; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tr, +.x-panel-header-default-framed-left-br, +.x-panel-header-default-framed-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl, +.x-panel-header-default-framed-left-bl, +.x-panel-header-default-framed-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl, +.x-panel-header-default-framed-left-bl, +.x-panel-header-default-framed-left-tr, +.x-panel-header-default-framed-left-br, +.x-panel-header-default-framed-left-tc, +.x-panel-header-default-framed-left-bc, +.x-panel-header-default-framed-left-ml, +.x-panel-header-default-framed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-ml, +.x-panel-header-default-framed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-left-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-left:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #157fcc; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mc { + background-color: #157fcc; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-top-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tr, +.x-panel-header-default-framed-collapsed-top-br, +.x-panel-header-default-framed-collapsed-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl, +.x-panel-header-default-framed-collapsed-top-bl, +.x-panel-header-default-framed-collapsed-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl, +.x-panel-header-default-framed-collapsed-top-bl, +.x-panel-header-default-framed-collapsed-top-tr, +.x-panel-header-default-framed-collapsed-top-br, +.x-panel-header-default-framed-collapsed-top-tc, +.x-panel-header-default-framed-collapsed-top-bc, +.x-panel-header-default-framed-collapsed-top-ml, +.x-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-ml, +.x-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-top:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #157fcc; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mc { + background-color: #157fcc; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-right-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-ml { + background-position: 0 right; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mr { + background-position: right right; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tr, +.x-panel-header-default-framed-collapsed-right-br, +.x-panel-header-default-framed-collapsed-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl, +.x-panel-header-default-framed-collapsed-right-bl, +.x-panel-header-default-framed-collapsed-right-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl, +.x-panel-header-default-framed-collapsed-right-bl, +.x-panel-header-default-framed-collapsed-right-tr, +.x-panel-header-default-framed-collapsed-right-br, +.x-panel-header-default-framed-collapsed-right-tc, +.x-panel-header-default-framed-collapsed-right-bc, +.x-panel-header-default-framed-collapsed-right-ml, +.x-panel-header-default-framed-collapsed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-ml, +.x-panel-header-default-framed-collapsed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-right:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #157fcc; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mc { + background-color: #157fcc; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-bottom-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tr, +.x-panel-header-default-framed-collapsed-bottom-br, +.x-panel-header-default-framed-collapsed-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl, +.x-panel-header-default-framed-collapsed-bottom-bl, +.x-panel-header-default-framed-collapsed-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl, +.x-panel-header-default-framed-collapsed-bottom-bl, +.x-panel-header-default-framed-collapsed-bottom-tr, +.x-panel-header-default-framed-collapsed-bottom-br, +.x-panel-header-default-framed-collapsed-bottom-tc, +.x-panel-header-default-framed-collapsed-bottom-bc, +.x-panel-header-default-framed-collapsed-bottom-ml, +.x-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-ml, +.x-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-bottom:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #157fcc; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mc { + background-color: #157fcc; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-left-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-ml { + background-position: 0 left; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mr { + background-position: right left; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tr, +.x-panel-header-default-framed-collapsed-left-br, +.x-panel-header-default-framed-collapsed-left-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl, +.x-panel-header-default-framed-collapsed-left-bl, +.x-panel-header-default-framed-collapsed-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl, +.x-panel-header-default-framed-collapsed-left-bl, +.x-panel-header-default-framed-collapsed-left-tr, +.x-panel-header-default-framed-collapsed-left-br, +.x-panel-header-default-framed-collapsed-left-tc, +.x-panel-header-default-framed-collapsed-left-bc, +.x-panel-header-default-framed-collapsed-left-ml, +.x-panel-header-default-framed-collapsed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-ml, +.x-panel-header-default-framed-collapsed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-left:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 396, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-top { + border-bottom-width: 5px !important; +} +/* line 400, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-right { + border-left-width: 5px !important; +} +/* line 404, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-bottom { + border-top-width: 5px !important; +} +/* line 408, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-left { + border-right-width: 5px !important; +} + +/* line 414, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-top { + border-bottom-width: 0 !important; +} +/* line 418, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-right { + border-left-width: 0 !important; +} +/* line 422, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-bottom { + border-top-width: 0 !important; +} +/* line 426, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-left { + border-right-width: 0 !important; +} + +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-framed-vertical .x-panel-header-text-container { + background-color: #157fcc; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#157fcc); +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed .x-panel-header-glyph { + color: white; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-default-framed .x-panel-header-glyph { + color: #8abfe5; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-panel-header-icon-before-title { + margin: 0 6px 0 0; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 6px; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-icon-before-title { + margin: 0 0 6px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-icon-after-title { + margin: 6px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-tool-before-title { + margin: 0 6px 0 0; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-tool-after-title { + margin: 6px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-tool-before-title { + margin: 0 0 6px 0; +} + +/* line 684, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed-resizable { + overflow: visible; +} +/* line 687, ../../../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 696, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed-resizable .x-panel-handle-north-br { + top: -5px; +} +/* line 699, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed-resizable .x-panel-handle-south-br { + bottom: -5px; +} +/* line 702, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed-resizable .x-panel-handle-east-br { + right: -5px; +} +/* line 705, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed-resizable .x-panel-handle-west-br { + left: -5px; +} +/* line 708, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed-resizable .x-panel-handle-northwest-br { + left: -5px; + top: -5px; +} +/* line 712, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed-resizable .x-panel-handle-northeast-br { + right: -5px; + top: -5px; +} +/* line 716, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed-resizable .x-panel-handle-southeast-br { + right: -5px; + bottom: -5px; +} +/* line 720, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed-resizable .x-panel-handle-southwest-br { + left: -5px; + bottom: -5px; +} + +/* line 2, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-l { + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-b { + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-bl { + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-r { + border-right-color: #157fcc !important; + border-right-width: 1px !important; +} + +/* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-rl { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-rb { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-rbl { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-t { + border-top-color: #157fcc !important; + border-top-width: 1px !important; +} + +/* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-tl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-tb { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-tbl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-tr { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; +} + +/* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-trl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-trb { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-trbl { + border-color: #157fcc !important; + border-width: 1px !important; +} + +/** + * Creates a visual theme for a Ext.tip.Tip + * + * @param {string} $ui-label + * 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-body-padding=$tip-header-body-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 167, ../../../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; + zoom: 1; +} +/* line 182, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-content-box .x-tip-anchor { + height: 0; + width: 0; +} + +/* line 189, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-top { + border-top-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-bottom { + border-bottom-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-bottom-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-left { + border-top-color: transparent; + border-bottom-color: transparent; + border-left-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-left-color: pink; + _filter: chroma(color=pink); +} + +/* line 228, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-right { + border-top-color: transparent; + border-bottom-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 137, ../../../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: #eaf3fa; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mc { + background-color: #eaf3fa; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tip-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tip-default-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tr, +.x-tip-default-br, +.x-tip-default-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl, +.x-tip-default-bl, +.x-tip-default-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl, +.x-tip-default-bl, +.x-tip-default-tr, +.x-tip-default-br, +.x-tip-default-tc, +.x-tip-default-bc, +.x-tip-default-ml, +.x-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-ml, +.x-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tip-default-tl, +.x-strict .x-ie7 .x-tip-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tip-default:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-default { + border-color: #e1e1e1; +} +/* line 109, ../../../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: #eaf3fa; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-tool-before-title { + margin: 0 6px 0 0; +} + +/* line 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-body-default { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-text-container-default { + color: black; + font-size: 13px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-default { + padding: 3px; + color: black; + font-size: 13px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-default a { + color: black; +} + +/* line 137, ../../../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: #eaf3fa; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mc { + background-color: #eaf3fa; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tip-form-invalid { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tip-form-invalid-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tr, +.x-tip-form-invalid-br, +.x-tip-form-invalid-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl, +.x-tip-form-invalid-bl, +.x-tip-form-invalid-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl, +.x-tip-form-invalid-bl, +.x-tip-form-invalid-tr, +.x-tip-form-invalid-br, +.x-tip-form-invalid-tc, +.x-tip-form-invalid-bc, +.x-tip-form-invalid-ml, +.x-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-ml, +.x-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tip-form-invalid-tl, +.x-strict .x-ie7 .x-tip-form-invalid-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tip-form-invalid:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-form-invalid { + border-color: #e1e1e1; +} +/* line 109, ../../../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: #eaf3fa; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-form-invalid .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-form-invalid .x-tool-before-title { + margin: 0 6px 0 0; +} + +/* line 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-body-form-invalid { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-text-container-form-invalid { + color: black; + font-size: 13px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid { + padding: 3px 3px 3px 22px; + color: black; + font-size: 13px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid a { + color: black; +} + +/* line 265, ../../../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 268, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid li { + margin-bottom: 4px; +} +/* line 270, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid li.last { + margin-bottom: 0; +} + +/** + * Creates a visual theme for a ButtonGroup. + * + * @param {string} $ui-label + * 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 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-default { + border-color: #dfeaf2; + -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 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default { + padding: 4px 5px; + line-height: 16px; + background: #dfeaf2; + -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 109, ../../../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: #dfeaf2; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-text-container-default { + font: normal 13px helvetica, arial, verdana, sans-serif; + line-height: 16px; + color: #666666; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default { + padding: 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default .x-table-layout { + border-spacing: 5px; +} + +/* line 137, ../../../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 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mc { + background-color: white; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-group-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-group-default-framed-frameInfo { + font-family: dh-3-3-3-3-3-3-3-3-0-1-0-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tr, +.x-btn-group-default-framed-br, +.x-btn-group-default-framed-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl, +.x-btn-group-default-framed-bl, +.x-btn-group-default-framed-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl, +.x-btn-group-default-framed-bl, +.x-btn-group-default-framed-tr, +.x-btn-group-default-framed-br, +.x-btn-group-default-framed-tc, +.x-btn-group-default-framed-bc, +.x-btn-group-default-framed-ml, +.x-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-ml, +.x-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-group-default-framed-tl, +.x-strict .x-ie7 .x-btn-group-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-group-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mc { + background-color: white; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-group-default-framed-notitle { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-group-default-framed-notitle-frameInfo { + font-family: dh-3-3-3-3-3-3-3-3-0-1-0-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tr, +.x-btn-group-default-framed-notitle-br, +.x-btn-group-default-framed-notitle-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl, +.x-btn-group-default-framed-notitle-bl, +.x-btn-group-default-framed-notitle-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl, +.x-btn-group-default-framed-notitle-bl, +.x-btn-group-default-framed-notitle-tr, +.x-btn-group-default-framed-notitle-br, +.x-btn-group-default-framed-notitle-tc, +.x-btn-group-default-framed-notitle-bc, +.x-btn-group-default-framed-notitle-ml, +.x-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-ml, +.x-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-group-default-framed-notitle-tl, +.x-strict .x-ie7 .x-btn-group-default-framed-notitle-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-group-default-framed-notitle:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"; +} + +/**/ +/* */ +/* line 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-default-framed { + border-color: #dfeaf2; + -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 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default-framed { + padding: 4px 5px; + line-height: 16px; + background: #dfeaf2; + -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 109, ../../../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: #dfeaf2; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-text-container-default-framed { + font: normal 13px helvetica, arial, verdana, sans-serif; + line-height: 16px; + color: #666666; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default-framed { + padding: 0 1px 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default-framed .x-table-layout { + border-spacing: 5px; +} + +/** + * Creates a visual theme for a Window + * + * @param {string} $ui-label + * 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`. + * + * @member Ext.window.Window + */ +/* line 545, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default { + border-color: #3892d3; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default { + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; + padding: 0px 0px 0px 0px; + border-width: 5px; + border-style: solid; + background-color: white; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mc { + background-color: white; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-default-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-0-0-0-0; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tr, +.x-window-default-br, +.x-window-default-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl, +.x-window-default-bl, +.x-window-default-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl, +.x-window-default-bl, +.x-window-default-tr, +.x-window-default-br, +.x-window-default-tc, +.x-window-default-bc, +.x-window-default-ml, +.x-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-ml, +.x-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-default-tl, +.x-strict .x-ie7 .x-window-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-default:after { + display: none; + content: "x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"; +} + +/**/ +/* */ +/* line 195, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-body-default { + border-color: #3892d3; + border-width: 1px; + border-style: solid; + background: white; + color: black; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default { + font-size: 13px; + border-color: #3892d3; + zoom: 1; + background-color: #3892d3; +} +/* line 212, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-tool-img { + background-color: #3892d3; +} + +/* line 223, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-window-header-default-vertical .x-window-header-text-container { + background-color: #3892d3; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#3892d3); +} + +/* line 233, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-text-container-default { + color: white; + font-weight: bold; + line-height: 15px; + font-family: arial, helvetica, verdana, sans-serif; + font-size: 13px; + padding: 1px 0 0; + text-transform: none; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 5px 5px 5px; + border-width: 5px 5px 5px 5px; + border-style: solid; + background-color: #3892d3; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mc { + background-color: #3892d3; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-top-frameInfo { + font-family: dh-4-4-0-0-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tr, +.x-window-header-default-top-br, +.x-window-header-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl, +.x-window-header-default-top-bl, +.x-window-header-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl, +.x-window-header-default-top-bl, +.x-window-header-default-top-tr, +.x-window-header-default-top-br, +.x-window-header-default-top-tc, +.x-window-header-default-top-bc, +.x-window-header-default-top-ml, +.x-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-ml, +.x-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-top-tl, +.x-strict .x-ie7 .x-window-header-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 5px 5px 5px; + border-width: 5px 5px 5px 5px; + border-style: solid; + background-color: #3892d3; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mc { + background-color: #3892d3; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-right-frameInfo { + font-family: dh-0-4-4-0-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tr, +.x-window-header-default-right-br, +.x-window-header-default-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl, +.x-window-header-default-right-bl, +.x-window-header-default-right-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl, +.x-window-header-default-right-bl, +.x-window-header-default-right-tr, +.x-window-header-default-right-br, +.x-window-header-default-right-tc, +.x-window-header-default-right-bc, +.x-window-header-default-right-ml, +.x-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-ml, +.x-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-right-tl, +.x-strict .x-ie7 .x-window-header-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px 5px 5px 5px; + border-style: solid; + background-color: #3892d3; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mc { + background-color: #3892d3; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-bottom-frameInfo { + font-family: dh-0-0-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tr, +.x-window-header-default-bottom-br, +.x-window-header-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl, +.x-window-header-default-bottom-bl, +.x-window-header-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl, +.x-window-header-default-bottom-bl, +.x-window-header-default-bottom-tr, +.x-window-header-default-bottom-br, +.x-window-header-default-bottom-tc, +.x-window-header-default-bottom-bc, +.x-window-header-default-bottom-ml, +.x-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-ml, +.x-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-bottom-tl, +.x-strict .x-ie7 .x-window-header-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px 5px 5px 5px; + border-style: solid; + background-color: #3892d3; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mc { + background-color: #3892d3; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-left-frameInfo { + font-family: dh-4-0-0-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tr, +.x-window-header-default-left-br, +.x-window-header-default-left-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl, +.x-window-header-default-left-bl, +.x-window-header-default-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl, +.x-window-header-default-left-bl, +.x-window-header-default-left-tr, +.x-window-header-default-left-br, +.x-window-header-default-left-tc, +.x-window-header-default-left-bc, +.x-window-header-default-left-ml, +.x-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-ml, +.x-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-left-tl, +.x-strict .x-ie7 .x-window-header-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top { + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #3892d3; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mc { + background-color: #3892d3; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-top-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tr, +.x-window-header-default-collapsed-top-br, +.x-window-header-default-collapsed-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl, +.x-window-header-default-collapsed-top-bl, +.x-window-header-default-collapsed-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl, +.x-window-header-default-collapsed-top-bl, +.x-window-header-default-collapsed-top-tr, +.x-window-header-default-collapsed-top-br, +.x-window-header-default-collapsed-top-tc, +.x-window-header-default-collapsed-top-bc, +.x-window-header-default-collapsed-top-ml, +.x-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-ml, +.x-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right { + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #3892d3; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mc { + background-color: #3892d3; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-right-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tr, +.x-window-header-default-collapsed-right-br, +.x-window-header-default-collapsed-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl, +.x-window-header-default-collapsed-right-bl, +.x-window-header-default-collapsed-right-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl, +.x-window-header-default-collapsed-right-bl, +.x-window-header-default-collapsed-right-tr, +.x-window-header-default-collapsed-right-br, +.x-window-header-default-collapsed-right-tc, +.x-window-header-default-collapsed-right-bc, +.x-window-header-default-collapsed-right-ml, +.x-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-ml, +.x-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom { + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #3892d3; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mc { + background-color: #3892d3; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-bottom-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tr, +.x-window-header-default-collapsed-bottom-br, +.x-window-header-default-collapsed-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl, +.x-window-header-default-collapsed-bottom-bl, +.x-window-header-default-collapsed-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl, +.x-window-header-default-collapsed-bottom-bl, +.x-window-header-default-collapsed-bottom-tr, +.x-window-header-default-collapsed-bottom-br, +.x-window-header-default-collapsed-bottom-tc, +.x-window-header-default-collapsed-bottom-bc, +.x-window-header-default-collapsed-bottom-ml, +.x-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-ml, +.x-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left { + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #3892d3; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mc { + background-color: #3892d3; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-left-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tr, +.x-window-header-default-collapsed-left-br, +.x-window-header-default-collapsed-left-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl, +.x-window-header-default-collapsed-left-bl, +.x-window-header-default-collapsed-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl, +.x-window-header-default-collapsed-left-bl, +.x-window-header-default-collapsed-left-tr, +.x-window-header-default-collapsed-left-br, +.x-window-header-default-collapsed-left-tc, +.x-window-header-default-collapsed-left-bc, +.x-window-header-default-collapsed-left-ml, +.x-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-ml, +.x-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 355, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-window-header-icon { + width: 16px; + height: 16px; + color: white; + font-size: 16px; + line-height: 16px; + background-position: center center; +} +/* line 364, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-window-header-glyph { + color: white; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 380, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-ie8m .x-window-header-default .x-window-header-glyph { + color: #9bc8e9; +} + +/* line 388, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-window-header-icon-before-title { + margin: 0 6px 0 0; +} +/* line 398, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-window-header-icon-after-title { + margin: 0 0 0 6px; +} + +/* line 410, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-icon-before-title { + margin: 0 0 6px 0; +} +/* line 420, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-icon-after-title { + margin: 6px 0 0 0; +} + +/* line 433, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 443, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-tool-before-title { + margin: 0 6px 0 0; +} + +/* line 455, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-tool-after-title { + margin: 6px 0 0 0; +} +/* line 465, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-tool-before-title { + margin: 0 0 6px 0; +} + +/* line 479, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default { + border-width: 5px !important; +} + +/* line 489, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-nbr .x-window-default-collapsed .x-window-header { + border-width: 0 !important; +} + +/* line 500, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-resizable { + overflow: visible; +} +/* line 505, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-resizable .x-window-handle-north-br { + top: -5px; +} +/* line 508, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-resizable .x-window-handle-south-br { + bottom: -5px; +} +/* line 511, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-resizable .x-window-handle-east-br { + right: -5px; +} +/* line 514, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-resizable .x-window-handle-west-br { + left: -5px; +} +/* line 517, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-resizable .x-window-handle-northwest-br { + left: -5px; + top: -5px; +} +/* line 521, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-resizable .x-window-handle-northeast-br { + right: -5px; + top: -5px; +} +/* line 525, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-resizable .x-window-handle-southeast-br { + right: -5px; + bottom: -5px; +} +/* line 529, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-resizable .x-window-handle-southwest-br { + left: -5px; + bottom: -5px; +} + +/* line 2, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-l { + border-left-color: #3892d3 !important; + border-left-width: 1px !important; +} + +/* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-b { + border-bottom-color: #3892d3 !important; + border-bottom-width: 1px !important; +} + +/* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-bl { + border-bottom-color: #3892d3 !important; + border-bottom-width: 1px !important; + border-left-color: #3892d3 !important; + border-left-width: 1px !important; +} + +/* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-r { + border-right-color: #3892d3 !important; + border-right-width: 1px !important; +} + +/* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-rl { + border-right-color: #3892d3 !important; + border-right-width: 1px !important; + border-left-color: #3892d3 !important; + border-left-width: 1px !important; +} + +/* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-rb { + border-right-color: #3892d3 !important; + border-right-width: 1px !important; + border-bottom-color: #3892d3 !important; + border-bottom-width: 1px !important; +} + +/* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-rbl { + border-right-color: #3892d3 !important; + border-right-width: 1px !important; + border-bottom-color: #3892d3 !important; + border-bottom-width: 1px !important; + border-left-color: #3892d3 !important; + border-left-width: 1px !important; +} + +/* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-t { + border-top-color: #3892d3 !important; + border-top-width: 1px !important; +} + +/* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-tl { + border-top-color: #3892d3 !important; + border-top-width: 1px !important; + border-left-color: #3892d3 !important; + border-left-width: 1px !important; +} + +/* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-tb { + border-top-color: #3892d3 !important; + border-top-width: 1px !important; + border-bottom-color: #3892d3 !important; + border-bottom-width: 1px !important; +} + +/* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-tbl { + border-top-color: #3892d3 !important; + border-top-width: 1px !important; + border-bottom-color: #3892d3 !important; + border-bottom-width: 1px !important; + border-left-color: #3892d3 !important; + border-left-width: 1px !important; +} + +/* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-tr { + border-top-color: #3892d3 !important; + border-top-width: 1px !important; + border-right-color: #3892d3 !important; + border-right-width: 1px !important; +} + +/* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-trl { + border-top-color: #3892d3 !important; + border-top-width: 1px !important; + border-right-color: #3892d3 !important; + border-right-width: 1px !important; + border-left-color: #3892d3 !important; + border-left-width: 1px !important; +} + +/* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-trb { + border-top-color: #3892d3 !important; + border-top-width: 1px !important; + border-right-color: #3892d3 !important; + border-right-width: 1px !important; + border-bottom-color: #3892d3 !important; + border-bottom-width: 1px !important; +} + +/* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-trbl { + border-color: #3892d3 !important; + border-width: 1px !important; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-invalid-under { + padding: 2px 2px 2px 20px; + color: #cf4c35; + font: normal 13px helvetica, arial, verdana, sans-serif; + line-height: 16px; + background: no-repeat 0 2px; + background-image: url(images/form/exclamation.png); +} + +/* line 14, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +div.x-lbl-top-err-icon { + margin-bottom: 4px; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-invalid-icon { + width: 16px; + height: 16px; + margin: 0 5px; + background-image: url(images/form/exclamation.png); + background-repeat: no-repeat; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-item-label { + color: black; + font: normal 13px/17px helvetica, arial, verdana, sans-serif; + margin-top: 4px; +} + +/* line 45, ../../../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; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-ie6 .x-form-form-item td { + border-top-width: 0; +} +/* line 59, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-ie6 td.x-form-item-pad { + height: 5px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-field { + color: black; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-item, +.x-form-field { + font: normal 13px helvetica, arial, verdana, sans-serif; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-type-text textarea.x-form-invalid-field, .x-form-type-text input.x-form-invalid-field, +.x-form-type-password textarea.x-form-invalid-field, +.x-form-type-password input.x-form-invalid-field, +.x-form-type-number textarea.x-form-invalid-field, +.x-form-type-number input.x-form-invalid-field, +.x-form-type-email textarea.x-form-invalid-field, +.x-form-type-email input.x-form-invalid-field, +.x-form-type-search textarea.x-form-invalid-field, +.x-form-type-search input.x-form-invalid-field, +.x-form-type-tel textarea.x-form-invalid-field, +.x-form-type-tel input.x-form-invalid-field { + background-color: white; + border-color: #cf4c35; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-item-disabled .x-form-item-label, +.x-item-disabled .x-form-field, +.x-item-disabled .x-form-display-field, +.x-item-disabled .x-form-cb-label, +.x-item-disabled .x-form-trigger { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-text { + color: black; + padding: 4px 6px 3px 6px; + background: white repeat-x 0 0; + border-width: 1px; + border-style: solid; + border-color: silver #d9d9d9 #d9d9d9; + height: 24px; + line-height: 15px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-content-box .x-form-text { + height: 15px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-focus { + border-color: #3892d3; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-empty-field, +textarea.x-form-empty-field { + color: gray; +} + +/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-quirks .x-ie .x-form-text, +.x-ie7m .x-form-text { + margin-top: -1px; + margin-bottom: -1px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/TextArea.scss */ +.x-form-textarea { + line-height: normal; + height: auto; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-form-display-field-body { + height: 24px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-form-display-field { + font: normal 13px/17px helvetica, arial, verdana, sans-serif; + color: black; + margin-top: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box .x-window-body { + background-color: white; + border-width: 0; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-info, +.x-message-box-warning, +.x-message-box-question, +.x-message-box-error { + background-position: top left; + background-repeat: no-repeat; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-info { + background-image: url(images/shared/icon-info.png); +} + +/* line 33, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-warning { + background-image: url(images/shared/icon-warning.png); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-question { + background-image: url(images/shared/icon-question.png); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-error { + background-image: url(images/shared/icon-error.png); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-wrap { + height: 24px; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb { + margin-top: 5px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-checkbox { + width: 15px; + height: 15px; + background: url(images/form/checkbox.png) no-repeat; +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-checked .x-form-checkbox { + background-position: 0 -15px; +} + +/* Focused */ +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-checkbox-focus { + background-position: -15px 0; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-checked .x-form-checkbox-focus { + background-position: -15px -15px; +} + +/* boxLabel */ +/* line 40, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label { + margin-top: 4px; + font: normal 13px/17px helvetica, arial, verdana, sans-serif; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label-before { + margin-right: 4px; +} + +/* line 64, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label-after { + margin-left: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-checkboxgroup-body { + padding: 0 4px; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-invalid .x-form-checkboxgroup-body { + border: 1px solid #cf4c35; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-check-group-alt { + background: #f5f5f5; + border-top: 1px dotted #f5f5f5; + border-bottom: 1px dotted #f5f5f5; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-check-group-label { + color: black; + padding: 2px; + margin: 0 30px 5px 0; + border-width: 0 0 1px 0; + border-style: solid; + border-color: black; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset { + border: 1px solid #b5b8c8; + padding: 0 10px; + margin: 0 0 10px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie8m .x-fieldset, +.x-quirks .x-ie .x-fieldset { + padding-top: 0; +} +/* line 13, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie8m .x-fieldset .x-fieldset-body, +.x-quirks .x-ie .x-fieldset .x-fieldset-body { + padding-top: 0; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-checkbox { + line-height: 16px; + margin: 1px 3px 0 0; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header { + padding: 0 3px 1px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-tool { + margin-top: 1px; + padding: 0; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text { + font: 12px/16px bold helvetica, arial, verdana, sans-serif; + color: black; + padding: 1px 0; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text-collapsible { + cursor: pointer; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-with-title .x-fieldset-header-checkbox, +.x-fieldset-with-title .x-tool { + margin: 1px 3px 0 0; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-webkit .x-fieldset-header { + -webkit-padding-start: 3px; + -webkit-padding-end: 3px; +} + +/* line 76, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-opera .x-fieldset-with-legend { + margin-top: -1px; +} +/* line 79, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-opera.x-mac .x-fieldset-header-text { + padding: 2px 0 0; +} + +/* line 87, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-strict .x-ie8 .x-fieldset-header { + margin-bottom: -1px; +} +/* line 91, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-strict .x-ie8 .x-fieldset-header .x-tool, +.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text, +.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox { + position: relative; + top: -1px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-quirks .x-ie .x-fieldset-header, +.x-ie8m .x-fieldset-header { + padding-left: 1px; + padding-right: 1px; +} + +/* line 109, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-fieldset-body { + display: none; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed { + padding-bottom: 0 !important; + border-width: 1px 1px 0 1px !important; + border-left-color: transparent !important; + border-right-color: transparent !important; +} + +/* line 123, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie6 .x-fieldset-collapsed { + border-width: 1px 0 0 0 !important; + padding-bottom: 0 !important; + margin-left: 1px; + margin-right: 1px; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-bwrap { + zoom: 1; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset .x-tool-toggle { + background-image: url(images/fieldset/collapse-tool.png); + background-position: 0 0; +} +/* line 144, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset .x-tool-over .x-tool-toggle { + background-position: 0 -15px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-tool-toggle { + background-position: -15px 0; +} +/* line 156, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-tool-over .x-tool-toggle { + background-position: -15px -15px; +} + +/* IE legend positioning bug */ +/* line 164, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-noborder legend { + position: relative; + margin-bottom: 23px; +} + +/* line 170, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-noborder legend span { + position: absolute; + left: 16px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset { + overflow: hidden; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-bwrap { + overflow: hidden; + zoom: 1; +} + +/* line 186, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-body { + overflow: hidden; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-radio { + width: 15px; + height: 15px; + background: url(images/form/radio.png) no-repeat; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-cb-checked .x-form-radio { + background-position: 0 -15px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-radio-focus { + background-position: -15px 0; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-cb-checked .x-form-radio-focus { + background-position: -15px -15px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + background: url(images/form/trigger.png); + width: 22px; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-trigger-cell { + background-color: white; + width: 22px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-over { + background-position: -22px 0; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap-focus .x-form-trigger { + background-position: -66px 0; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap-focus .x-form-trigger-over { + background-position: -88px 0; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-click, +.x-form-trigger-wrap-focus .x-form-trigger-click { + background-position: -44px 0; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-clear-trigger { + background-image: url(images/form/clear-trigger.png); +} + +/* line 59, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-search-trigger { + background-image: url(images/form/search-trigger.png); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-quirks .prefixie6 .x-form-trigger-input-cell { + height: 24px; +} +/* line 77, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-quirks .prefixie6 .x-field-toolbar .x-form-trigger-input-cell { + height: 24px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +div.x-form-spinner-up, +div.x-form-spinner-down { + background-image: url(images/form/spinner.png); + background-color: white; + width: 22px; + height: 11px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-spinner-down { + background-position: 0 -11px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap-focus .x-form-spinner-down { + background-position: -66px -11px; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap .x-form-spinner-down-over { + background-position: -22px -11px; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap-focus .x-form-spinner-down-over { + background-position: -88px -11px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap .x-form-spinner-down-click { + background-position: -44px -11px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-number { + width: 30px; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-first { + background-image: url(images/grid/page-first.png); +} + +/* line 9, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-prev { + background-image: url(images/grid/page-prev.png); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-next { + background-image: url(images/grid/page-next.png); +} + +/* line 17, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-last { + background-image: url(images/grid/page-last.png); +} + +/* line 21, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-loading { + background-image: url(images/grid/refresh.png); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist { + border-width: 1px; + border-style: solid; + border-color: #e1e1e1; + background: white; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-strict .x-ie7m .x-boundlist-list-ct { + position: relative; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-item { + padding: 0 6px; + line-height: 22px; + cursor: pointer; + cursor: hand; + position: relative; + /*allow hover in IE on empty items*/ + zoom: 1; + border-width: 1px; + border-style: dotted; + border-color: white; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-selected { + background: #c1ddf1; + border-color: #c1ddf1; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-item-over { + background: #d6e8f6; + border-color: #d6e8f6; +} + +/* line 43, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-floating { + border-top-width: 0; +} + +/* line 47, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-above { + border-top-width: 1px; + border-bottom-width: 1px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker { + border-width: 1px; + border-style: solid; + border-color: #e1e1e1; + background-color: white; + width: 212px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-header { + padding: 4px 6px; + text-align: center; + background-image: none; + background-color: #f5f5f5; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-arrow { + width: 12px; + height: 12px; + top: 9px; + cursor: pointer; + background-color: #f5f5f5; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-datepicker-arrow:hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 55, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-next { + right: 6px; + background-image: url(images/datepicker/arrow-right.png); +} + +/* line 60, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-prev { + left: 6px; + background-image: url(images/datepicker/arrow-left.png); +} + +/* line 76, ../../../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 83, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-month .x-btn-inner { + color: #3892d3; +} +/* line 88, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-month .x-btn-split-right { + background-image: url(images/datepicker/month-arrow.png); + padding-right: 8px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-column-header { + width: 30px; + color: black; + font: bold 13px helvetica, arial, verdana, sans-serif; + text-align: right; + background-image: none; + background-color: white; +} + +/* line 113, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-column-header-inner { + line-height: 25px; + padding: 0 9px 0 0; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-cell { + text-align: right; + border-width: 1px; + border-style: solid; + border-color: white; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-date { + padding: 0 7px 0 0; + font: normal 13px helvetica, arial, verdana, sans-serif; + color: black; + cursor: pointer; + line-height: 23px; +} + +/* line 138, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-datepicker-date:hover { + color: black; + background-color: #eaf3fa; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-selected { + border-style: solid; + border-color: #3892d3; +} +/* line 146, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-selected .x-datepicker-date { + background-color: #d6e8f6; + font-weight: bold; +} + +/* line 152, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-today { + border-color: darkred; + border-style: solid; +} + +/* line 159, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-prevday .x-datepicker-date, +.x-datepicker-nextday .x-datepicker-date { + color: #bfbfbf; +} + +/* line 166, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-disabled a.x-datepicker-date { + background-color: #eeeeee; + cursor: default; + color: gray; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-disabled a.x-datepicker-date:hover { + background-color: #eeeeee; +} + +/* line 179, ../../../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 195, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-footer .x-btn, +.x-monthpicker-buttons .x-btn { + margin: 0 3px 0 2px; +} + +/* line 201, ../../../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 211, ../../../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 220, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-months .x-monthpicker-item { + width: 52px; +} + +/* line 225, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-years { + width: 105px; +} +/* line 228, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-years .x-monthpicker-item { + width: 52px; +} + +/* line 233, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-item { + margin: 5px 0 5px; + font: normal 13px helvetica, arial, verdana, sans-serif; + text-align: center; +} + +/* line 239, ../../../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 254, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-monthpicker-item-inner:hover { + background-color: #eaf3fa; +} + +/* line 258, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-selected { + background-color: #d6e8f6; + border-style: solid; + border-color: #3892d3; +} + +/* line 264, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav { + height: 34px; +} + +/* line 268, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button-ct { + width: 52px; +} + +/* line 272, ../../../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; + background-color: white; +} + +/* line 289, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-monthpicker-yearnav-button:hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-next { + background-image: url(images/datepicker/arrow-right.png); + background-position: 0 0; +} + +/* line 299, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-next-over { + background-position: 0 0; +} + +/* line 303, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-prev { + background-image: url(images/datepicker/arrow-left.png); + background-position: 0 0; +} + +/* line 308, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-prev-over { + background-position: 0 0; +} + +/* line 313, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-item { + margin: 2px 0 2px; +} +/* line 317, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-item-inner { + margin: 0 5px 0 5px; +} +/* line 321, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-yearnav { + height: 28px; +} +/* line 325, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-yearnav-button { + margin-top: 8px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */ +.x-form-date-trigger { + background-image: url(images/form/date-trigger.png); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/File.scss */ +.x-form-file-wrap .x-form-text { + color: gray; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker { + width: 192px; + height: 120px; + background-color: white; + border-color: white; + border-width: 0; + border-style: solid; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-item { + width: 24px; + height: 24px; + border-width: 1px; + border-color: white; + border-style: solid; + background-color: white; + cursor: pointer; + padding: 2px; +} +/* line 20, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-content-box .x-color-picker-item { + width: 18px; + height: 18px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +a.x-color-picker-item:hover { + border-color: #8bb8f3; + background-color: #e6e6e6; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-selected { + border-color: #8bb8f3; + background-color: #e6e6e6; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-item-inner { + line-height: 16px; + border-color: #e1e1e1; + border-width: 1px; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-btn-text { + background: transparent no-repeat; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-bold, +.x-menu-item div.x-edit-bold { + background-position: 0 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-italic, +.x-menu-item div.x-edit-italic { + background-position: -16px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-underline, +.x-menu-item div.x-edit-underline { + background-position: -32px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-forecolor, +.x-menu-item div.x-edit-forecolor { + background-position: -160px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 31, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-backcolor, +.x-menu-item div.x-edit-backcolor { + background-position: -176px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifyleft, +.x-menu-item div.x-edit-justifyleft { + background-position: -112px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifycenter, +.x-menu-item div.x-edit-justifycenter { + background-position: -128px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifyright, +.x-menu-item div.x-edit-justifyright { + background-position: -144px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 55, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-insertorderedlist, +.x-menu-item div.x-edit-insertorderedlist { + background-position: -80px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 61, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-insertunorderedlist, +.x-menu-item div.x-edit-insertunorderedlist { + background-position: -96px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 67, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-increasefontsize, +.x-menu-item div.x-edit-increasefontsize { + background-position: -48px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-decreasefontsize, +.x-menu-item div.x-edit-decreasefontsize { + background-position: -64px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 79, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-sourceedit, +.x-menu-item div.x-edit-sourceedit { + background-position: -192px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 85, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-createlink, +.x-menu-item div.x-edit-createlink { + background-position: -208px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 90, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tip .x-tip-bd .x-tip-bd-inner { + padding: 5px; + padding-bottom: 1px; +} + +/* line 95, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-font-select { + font-size: 13px; + font-family: inherit; +} + +/* line 100, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-wrap textarea { + font: normal 13px helvetica, arial, verdana, sans-serif; + background-color: white; + resize: none; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-body { + background: white; + border-width: 1px; + border-style: solid; + border-color: silver; +} + +/* line 8, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-empty { + padding: 10px; + color: gray; + background-color: white; + font: normal 13px helvetica, arial, verdana, sans-serif; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell { + color: null; + font: normal 13px/15px helvetica, arial, verdana, sans-serif; + background-color: white; + border-color: #ededed; + border-style: solid; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-alt .x-grid-td { + background-color: #fafafa; +} +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-over .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #e2eff8; +} +/* line 35, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-over .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #e2eff8; +} +/* line 40, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-selected .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #c1ddf1; +} +/* line 45, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #c1ddf1; +} +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-focused .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #e2eff8; +} +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-td { + background-color: #e2eff8; +} +/* line 65, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-over .x-grid-td { + background-color: #e2eff8; +} +/* line 73, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-td { + background-color: #c1ddf1; +} +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #e2eff8; +} +/* line 96, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-row-focused-first .x-grid-td { + border-top: 1px solid #e2eff8; +} +/* line 103, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-row-summary .x-grid-td { + border-bottom-color: #c1ddf1; + border-top-width: 0; +} +/* line 108, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-row-summary .x-grid-td { + border-bottom-color: #e2eff8; + border-top-width: 0; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-td { + border-bottom-width: 1px; +} +/* line 121, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table { + border-top: 1px solid white; +} +/* line 125, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table-over-first { + border-top-style: solid; + border-top-color: #e2eff8; +} +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table-selected-first { + border-top-style: solid; + border-top-color: #c1ddf1; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table-focused-first { + border-top-style: solid; + border-top-color: #e2eff8; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell-inner { + text-overflow: ellipsis; + padding: 5px 10px 4px 10px; +} + +/* line 178, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell-special { + border-color: #ededed; + border-style: solid; + border-right-width: 1px 0; +} + +/* line 228, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-dirty-cell { + background: url(images/grid/dirty.png) no-repeat 0 0; +} + +/* line 241, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row .x-grid-cell-selected { + color: null; + background-color: #c1ddf1; +} + +/* line 247, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-col-lines .x-grid-cell { + border-right-width: 1px; +} + +/* line 259, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-resize-marker { + width: 1px; + background-color: #0f0f0f; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator { + position: absolute; + height: 1px; + line-height: 0px; + background-color: #77BC71; + overflow: visible; + pointer-events: none; +} +/* line 9, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator .x-grid-drop-indicator-left { + position: absolute; + top: -8px; + left: -12px; + background-image: url(images/grid/dd-insert-arrow-right.png); + height: 16px; + width: 16px; +} +/* line 18, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator .x-grid-drop-indicator-right { + position: absolute; + top: -8px; + right: -11px; + background-image: url(images/grid/dd-insert-arrow-left.png); + height: 16px; + width: 16px; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-ie6 .x-grid-drop-indicator-left { + background-image: url(images/grid/dd-insert-arrow-right.png); +} +/* line 33, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-ie6 .x-grid-drop-indicator-right { + background-image: url(images/grid/dd-insert-arrow-left.png); +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + width: 9px; + height: 9px; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top { + background-image: url(images/grid/col-move-top.png); +} + +/* line 11, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-bottom { + background-image: url(images/grid/col-move-bottom.png); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-grid-header-ct { + border: 1px solid #157fcc; + border-bottom-color: #f5f5f5; + background-color: #f5f5f5; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-accordion-item .x-grid-header-ct { + border-width: 0 0 1px !important; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-accordion-item .x-grid-header-ct-hidden { + border: 0 !important; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-grid-body { + border-top-color: silver; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-hmenu-sort-asc .x-menu-item-icon { + background-image: url(images/grid/hmenu-asc.png); +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-hmenu-sort-desc .x-menu-item-icon { + background-image: url(images/grid/hmenu-desc.png); +} + +/* line 40, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-cols-icon .x-menu-item-icon { + background-image: url(images/grid/columns.png); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header { + border-right: 1px solid silver; + color: #666666; + font: bold 13px/15px helvetica, arial, verdana, sans-serif; + background-color: #f5f5f5; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-group-sub-header { + background: transparent; + border-top: 1px solid silver; +} +/* line 29, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-group-sub-header .x-column-header-inner { + padding: 6px 10px 7px 10px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-inner { + padding: 7px 10px 7px 10px; + text-overflow: ellipsis; +} + +/* line 42, ../../../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: #eef6fb; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-open { + background-color: #eef6fb; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-open .x-column-header-trigger { + background-color: #dfeaf2; +} + +/* line 78, ../../../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 96, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-align-right .x-column-header-text { + margin-right: 12px; +} + +/* line 110, ../../../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 127, ../../../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 130, ../../../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 1, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-grid-cell-inner-action-col { + padding: 4px 4px 4px 4px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-action-col-cell .x-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-action-col-icon { + height: 16px; + width: 16px; + cursor: pointer; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-cell-inner-checkcolumn { + padding: 5px 10px 4px 10px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-checkcolumn { + width: 15px; + height: 15px; + background: url(images/form/checkbox.png) 0 0 no-repeat; +} +/* line 17, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-item-disabled .x-grid-checkcolumn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-checkcolumn-checked { + background-position: 0 -15px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/RowNumberer.scss */ +.x-grid-cell-inner-row-numberer { + padding: 5px 5px 4px 3px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd { + border-width: 0 0 1px 0; + border-style: solid; + border-color: silver; + padding: 8px 4px 8px 4px; + background: #f5f5f5; + cursor: pointer; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-not-collapsible { + cursor: default; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-collapsible .x-grid-group-title { + background-repeat: no-repeat; + background-position: left center; + background-image: url(images/grid/group-collapse.png); + padding: 0 0 0 17px; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-title { + color: #666666; + font: bold 13px/15px helvetica, arial, verdana, sans-serif; +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-collapsed .x-grid-group-title { + background-image: url(images/grid/group-expand.png); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-collapsed .x-grid-group-title { + background-image: url(images/grid/group-expand.png); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-group-by-icon { + background-image: url(images/grid/group-by.png); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-show-groups-icon { + background-image: url(images/grid/group-by.png); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ +.x-grid-rowbody { + font: normal 13px/15px helvetica, arial, verdana, sans-serif; + padding: 5px 10px 5px 10px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowWrap.scss */ +.x-grid-rowwrap { + border-color: #ededed; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-summary-bottom { + border-bottom-color: #f5f5f5; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-docked-summary { + border-width: 1px; + border-color: #157fcc; + border-style: solid; +} +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-docked-summary .x-grid-table { + width: 100%; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-grid-row-summary .x-grid-cell, +.x-grid-row-summary .x-grid-rowwrap, +.x-grid-row-summary .x-grid-cell-rowbody { + border-color: #ededed; + background-color: transparent !important; + border-top-width: 0; + font: normal 13px/15px helvetica, arial, verdana, sans-serif; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-grid-with-row-lines .x-grid-table-summary { + border: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-grid-locked .x-grid-inner-locked { + border-width: 0 1px 0 0; + border-style: solid; +} + +/* line 17, ../../../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 39, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-hmenu-lock .x-menu-item-icon { + background-image: url(images/grid/hmenu-lock.png); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-hmenu-unlock .x-menu-item-icon { + background-image: url(images/grid/hmenu-unlock.png); +} + +/* line 4, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-text { + font: normal 13px/15px helvetica, arial, verdana, sans-serif; + padding: 4px 9px 3px 9px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-gecko .x-grid-editor .x-form-text { + padding-left: 8px; + padding-right: 8px; +} +/* line 58, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field-body { + height: 24px; +} +/* line 62, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field { + font: normal 13px/15px helvetica, arial, verdana, sans-serif; + padding: 5px 10px 4px 10px; + text-overflow: ellipsis; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-action-col-field { + padding: 4px 4px 4px 4px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x-tree-cell-editor .x-form-text { + padding-left: 3px; + padding-right: 3px; +} +/* line 8, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x-gecko .x-tree-cell-editor .x-form-text { + padding-left: 2px; + padding-right: 2px; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-field { + margin: 0 3px 0 2px; +} +/* line 7, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-display-field { + padding: 5px 7px 4px 8px; +} +/* line 16, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-action-col-field { + padding: 4px 1px 4px 2px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-text { + padding: 4px 6px 3px 7px; +} +/* line 30, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-gecko .x-grid-row-editor .x-form-text { + padding-left: 6px; + padding-right: 5px; +} +/* line 38, ../../../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: #dfeaf2; +} +/* line 48, ../../../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 137, ../../../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: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-grid-row-editor-buttons-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-grid-row-editor-buttons-default-bottom-frameInfo { + font-family: th-0-0-5-5-0-1-1-1-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tr, +.x-grid-row-editor-buttons-default-bottom-br, +.x-grid-row-editor-buttons-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl, +.x-grid-row-editor-buttons-default-bottom-bl, +.x-grid-row-editor-buttons-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl, +.x-grid-row-editor-buttons-default-bottom-bl, +.x-grid-row-editor-buttons-default-bottom-tr, +.x-grid-row-editor-buttons-default-bottom-br, +.x-grid-row-editor-buttons-default-bottom-tc, +.x-grid-row-editor-buttons-default-bottom-bc, +.x-grid-row-editor-buttons-default-bottom-ml, +.x-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-ml, +.x-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mc { + padding: 5px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-tl, +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-row-editor-buttons-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-grid-row-editor-buttons-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-grid-row-editor-buttons-default-top-frameInfo { + font-family: th-5-5-0-0-1-1-0-1-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tr, +.x-grid-row-editor-buttons-default-top-br, +.x-grid-row-editor-buttons-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl, +.x-grid-row-editor-buttons-default-top-bl, +.x-grid-row-editor-buttons-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl, +.x-grid-row-editor-buttons-default-top-bl, +.x-grid-row-editor-buttons-default-top-tr, +.x-grid-row-editor-buttons-default-top-br, +.x-grid-row-editor-buttons-default-top-tc, +.x-grid-row-editor-buttons-default-top-bc, +.x-grid-row-editor-buttons-default-top-ml, +.x-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-ml, +.x-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mc { + padding: 1px 1px 5px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-tl, +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-row-editor-buttons-default-top:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 97, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons-default-bottom { + top: 35px; +} + +/* line 103, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons-default-top { + bottom: 35px; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons { + border-color: #e1e1e1; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-row-editor-update-button { + margin-right: 3px; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-row-editor-cancel-button { + margin-left: 2px; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-errors .x-tip-body { + padding: 5px; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-errors-item { + list-style: disc; + margin-left: 15px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-cell-inner-row-expander { + padding: 7px 6px 6px 6px; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-expander { + width: 11px; + height: 11px; + cursor: pointer; + background-image: url(images/grid/group-collapse.png); +} +/* line 20, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-collapsed .x-grid-row-expander { + background-image: url(images/grid/group-expand.png); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-layout-ct { + background-color: white; + padding: 5px 5px 0; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-panel-header-text-container { + color: #666666; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + text-transform: none; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item { + margin: 0 0 5px; +} +/* line 16, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd { + background: #dfeaf2; + border-top-color: white; + padding: 8px 10px; +} +/* line 22, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd-sibling-expanded { + border-top-color: #157fcc; +} +/* line 26, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd-last-collapsed { + border-bottom-color: #dfeaf2; +} +/* line 30, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-body { + border-width: 0; +} + +/* line 37, ../../../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 42, ../../../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 61, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-img { + background-image: url(images/tools/tool-sprites-dark.png); + background-color: #dfeaf2; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-collapse-el { + cursor: pointer; +} + +/* line 6, ../../../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 14, ../../../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 21, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-left { + background-image: url(images/util/splitter/mini-left.png); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-right { + background-image: url(images/util/splitter/mini-right.png); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-top { + background-image: url(images/util/splitter/mini-top.png); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-bottom { + background-image: url(images/util/splitter/mini-bottom.png); +} + +/* line 50, ../../../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 54, ../../../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 70, ../../../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 74, ../../../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 79, ../../../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 83, ../../../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 1, ../../../ext-theme-neutral/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + background-color: #3892d3; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu { + border-style: solid; + border-width: 1px; + border-color: #e1e1e1; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-body { + background: white; + padding: 0; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-icon-separator { + left: 22px; + border-left: solid 1px #e1e1e1; + background-color: white; + width: 1px; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item { + cursor: pointer; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-indent { + margin-left: 27px; +} + +/* line 57, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-active { + background-image: none; + background-color: #d6e8f6; + border-color: #0079d2; +} +/* line 75, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-nlg .x-menu-item-active { + background: #d6e8f6 repeat-x left top; + background-image: url(images/menu/menu-item-active-bg.gif); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-link { + line-height: 24px; + padding: 0 4px 0 27px; + display: inline-block; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-right-check-item-text { + padding-right: 22px; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-icon { + width: 16px; + height: 16px; + top: 5px; + left: 3px; + background-position: center center; +} + +/* line 116, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-glyph { + font-size: 16px; + line-height: 16px; + color: gray; + opacity: 0.5; +} +/* line 132, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie8m .x-menu-item-glyph { + color: #bfbfbf; +} + +/* line 168, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-icon-right { + width: 16px; + height: 16px; + top: 4px; + right: 3px; + background-position: center center; +} + +/* line 183, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-text { + font-size: 13px; + color: black; + cursor: pointer; + margin-right: 16px; +} + +/* line 201, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-checked .x-menu-item-icon, .x-menu-item-checked .x-menu-item-icon-right { + background-image: url(images/menu/checked.png); +} +/* line 204, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-checked .x-menu-group-icon { + background-image: url(images/menu/group-checked.png); +} + +/* line 210, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-unchecked .x-menu-item-icon, .x-menu-item-unchecked .x-menu-item-icon-right { + background-image: url(images/menu/unchecked.png); +} +/* line 213, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-unchecked .x-menu-group-icon { + background-image: none; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-separator { + height: 1px; + border-top: solid 1px #e1e1e1; + background-color: white; + margin: 2px 0; + padding: 0; +} + +/* line 226, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-arrow { + width: 12px; + height: 9px; + top: 8px; + right: 0; + background-image: url(images/menu/menu-parent.png); +} + +/* line 264, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/* line 270, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-content-box .x-menu-icon-separator { + width: 0px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-content-box .x-menu-item-separator { + height: 0px; +} + +/* line 281, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie .x-menu-item-disabled .x-menu-item-icon { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 285, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie .x-menu-item-disabled .x-menu-item-text { + background-color: transparent; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-date-item { + border-color: #99BBE8; +} + +/* line 300, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item .x-form-item-label { + font-size: 13px; + color: black; +} + +/* line 306, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top { + height: 16px; + background-image: url(images/menu/scroll-top.png); +} + +/* line 310, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-bottom { + height: 16px; + background-image: url(images/menu/scroll-bottom.png); +} + +/* line 316, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top, .x-menu-scroll-bottom { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + background-color: white; +} + +/* line 329, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top-hover, .x-menu-scroll-bottom-hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top-pressed, .x-menu-scroll-bottom-pressed { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-menu-item-link:after { + display: none; + content: "x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool { + cursor: pointer; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-img { + overflow: hidden; + width: 16px; + height: 16px; + background-image: url(images/tools/tool-sprites.png); + margin: 0; +} +/* line 12, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool .x-tool-img { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 17, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-img { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 22, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-pressed .x-tool-img { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-placeholder { + visibility: hidden; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-close { + background-position: 0 0; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-minimize { + background-position: 0 -16px; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-maximize { + background-position: 0 -32px; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-restore { + background-position: 0 -48px; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-toggle { + background-position: 0 -64px; +} +/* line 53, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-panel-collapsed .x-tool-toggle { + background-position: 0 -80px; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-gear { + background-position: 0 -96px; +} + +/* line 62, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-prev { + background-position: 0 -112px; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-next { + background-position: 0 -128px; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-pin { + background-position: 0 -144px; +} + +/* line 74, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-unpin { + background-position: 0 -160px; +} + +/* line 78, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-right { + background-position: 0 -176px; +} + +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-left { + background-position: 0 -192px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-down { + background-position: 0 -208px; +} + +/* line 90, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-up { + background-position: 0 -224px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-refresh { + background-position: 0 -240px; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-plus { + background-position: 0 -256px; +} + +/* line 102, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-minus { + background-position: 0 -272px; +} + +/* line 106, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-search { + background-position: 0 -288px; +} + +/* line 110, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-save { + background-position: 0 -304px; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-help { + background-position: 0 -320px; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-print { + background-position: 0 -336px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand { + background-position: 0 -352px; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-collapse { + background-position: 0 -368px; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-resize { + background-position: 0 -384px; +} + +/* line 134, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-move { + background-position: 0 -400px; +} + +/* line 139, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-bottom, +.x-tool-collapse-bottom { + background-position: 0 -208px; +} + +/* line 144, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-top, +.x-tool-collapse-top { + background-position: 0 -224px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-left, +.x-tool-collapse-left { + background-position: 0 -192px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-right, +.x-tool-collapse-right { + background-position: 0 -176px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle { + position: absolute; + z-index: 100; + font-size: 1px; + line-height: 6px; + overflow: hidden; + zoom: 1; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + background-color: #fff; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + -ms-border-radius: 6px; + -o-border-radius: 6px; + border-radius: 6px; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-collapsed .x-resizable-handle { + display: none; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-north { + cursor: n-resize; +} +/* line 26, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south { + cursor: s-resize; +} +/* line 29, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east { + cursor: e-resize; +} +/* line 32, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-west { + cursor: w-resize; +} +/* line 35, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast { + cursor: se-resize; +} +/* line 38, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest { + cursor: nw-resize; +} +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast { + cursor: ne-resize; +} +/* line 44, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest { + cursor: sw-resize; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-east { + width: 6px; + height: 100%; + right: 0; + top: 0; +} + +/* line 56, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-south { + width: 100%; + height: 6px; + left: 0; + bottom: 0; +} + +/* line 63, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-west { + width: 6px; + height: 100%; + left: 0; + top: 0; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-north { + width: 100%; + height: 6px; + left: 0; + top: 0; +} + +/* line 77, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-southeast { + width: 6px; + height: 6px; + right: 0; + bottom: 0; + z-index: 101; +} + +/* line 85, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-northwest { + width: 6px; + height: 6px; + left: 0; + top: 0; + z-index: 101; +} + +/* line 93, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-northeast { + width: 6px; + height: 6px; + right: 0; + top: 0; + z-index: 101; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-southwest { + width: 6px; + height: 6px; + left: 0; + bottom: 0; + z-index: 101; +} + +/*IE rounding error*/ +/* line 111, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-ie .x-resizable-handle-east { + margin-right: -1px; + /*IE rounding error*/ +} +/* line 115, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-ie .x-resizable-handle-south { + margin-bottom: -1px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-pinned .x-resizable-handle, +.x-resizable-over .x-resizable-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 127, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-window .x-window-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-window-collapsed .x-window-handle { + display: none; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-proxy { + border: 1px dashed #3b5a82; + position: absolute; + overflow: hidden; + z-index: 50000; +} + +/* line 148, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east, +.x-resizable-over .x-resizable-handle-west, +.x-resizable-pinned .x-resizable-handle-east, +.x-resizable-pinned .x-resizable-handle-west { + background-image: url(images/sizer/e-handle.png); +} +/* line 154, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south, +.x-resizable-over .x-resizable-handle-north, +.x-resizable-pinned .x-resizable-handle-south, +.x-resizable-pinned .x-resizable-handle-north { + background-image: url(images/sizer/s-handle.png); +} +/* line 159, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast, +.x-resizable-pinned .x-resizable-handle-southeast { + background-position: top left; + background-image: url(images/sizer/se-handle.png); +} +/* line 164, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest, +.x-resizable-pinned .x-resizable-handle-northwest { + background-position: bottom right; + background-image: url(images/sizer/nw-handle.png); +} +/* line 169, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast, +.x-resizable-pinned .x-resizable-handle-northeast { + background-position: bottom left; + background-image: url(images/sizer/ne-handle.png); +} +/* line 174, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest, +.x-resizable-pinned .x-resizable-handle-southwest { + background-position: top right; + background-image: url(images/sizer/sw-handle.png); +} + +/* Horizontal styles */ +/* line 2, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz { + padding-left: 7px; + background: no-repeat 0 -15px; +} +/* line 6, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-end { + padding-right: 7px; + background: no-repeat right -30px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-inner { + height: 15px; +} + +/* line 20, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-ie6 .x-form-item .x-slider-horz, +.x-ie7 .x-form-item .x-slider-horz, +.x-quirks .x-ie .x-form-item .x-slider-horz { + margin-top: 5px; +} + +/* line 26, ../../../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 33, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb-over { + background-position: -15px -15px; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb-drag { + background-position: -30px -30px; +} + +/* Vertical styles */ +/* line 60, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert { + padding-top: 7px; + background: no-repeat -30px 0; +} + +/* line 65, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-end { + padding-bottom: 7px; + background: no-repeat -15px bottom; + width: 15px; +} + +/* line 71, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-inner { + width: 15px; +} + +/* line 75, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb { + width: 15px; + height: 15px; + margin-bottom: -7px; + background-image: url(images/slider/slider-v-thumb.png); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb-over { + background-position: -15px -15px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb-drag { + background-position: -30px -30px; +} + +/* line 92, ../../../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 98, ../../../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); +} + +/** + * 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-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-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} [$ui-border-width=$tab-border-width] + * The border-width of 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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 + * + * @param {color} [$ui-border-bottom-color=$tabbar-strip-border-color] + * The bottom border color of inactive tabs. + * + * @member Ext.tab.Tab + */ +/** + * Creates a visual theme for a Tab Bar + * + * @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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 {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 {number} [$ui-tab-height] + * The height of tabs that will be used in this tabbar UI. The tabbar body is given + * a fixed height to leave room for the tabs, and so that the tabbar does not collapse + * when it does not contain any tabs. + * + * @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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-tab-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 8px 12px 7px 12px; + border-width: 0 0 0 0; + border-style: solid; + background-color: #4b9cd7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mc { + background-color: #4b9cd7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-top-frameInfo { + font-family: th-3-3-0-0-0-0-0-0-8-12-7-12; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tr, +.x-tab-default-top-br, +.x-tab-default-top-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl, +.x-tab-default-top-bl, +.x-tab-default-top-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl, +.x-tab-default-top-bl, +.x-tab-default-top-tr, +.x-tab-default-top-br, +.x-tab-default-top-tc, +.x-tab-default-top-bc, +.x-tab-default-top-ml, +.x-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-ml, +.x-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mc { + padding: 5px 9px 7px 9px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-top-tl, +.x-strict .x-ie7 .x-tab-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomright: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; + -moz-border-radius-bottomleft: 3px; + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + padding: 8px 12px 7px 12px; + border-width: 0 0 0 0; + border-style: solid; + background-color: #4b9cd7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mc { + background-color: #4b9cd7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-bottom-frameInfo { + font-family: th-0-0-3-3-0-0-0-0-8-12-7-12; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tr, +.x-tab-default-bottom-br, +.x-tab-default-bottom-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl, +.x-tab-default-bottom-bl, +.x-tab-default-bottom-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl, +.x-tab-default-bottom-bl, +.x-tab-default-bottom-tr, +.x-tab-default-bottom-br, +.x-tab-default-bottom-tc, +.x-tab-default-bottom-bc, +.x-tab-default-bottom-ml, +.x-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-ml, +.x-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mc { + padding: 8px 9px 4px 9px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-bottom-tl, +.x-strict .x-ie7 .x-tab-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 8px 12px 7px 12px; + border-width: 0 0 0 0; + border-style: solid; + background-color: #4b9cd7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mc { + background-color: #4b9cd7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-left-frameInfo { + font-family: th-3-3-0-0-0-0-0-0-8-12-7-12; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tr, +.x-tab-default-left-br, +.x-tab-default-left-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl, +.x-tab-default-left-bl, +.x-tab-default-left-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl, +.x-tab-default-left-bl, +.x-tab-default-left-tr, +.x-tab-default-left-br, +.x-tab-default-left-tc, +.x-tab-default-left-bc, +.x-tab-default-left-ml, +.x-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-ml, +.x-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mc { + padding: 5px 9px 7px 9px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-left-tl, +.x-strict .x-ie7 .x-tab-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-left:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 8px 12px 7px 12px; + border-width: 0 0 0 0; + border-style: solid; + background-color: #4b9cd7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mc { + background-color: #4b9cd7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-right-frameInfo { + font-family: th-3-3-0-0-0-0-0-0-8-12-7-12; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tr, +.x-tab-default-right-br, +.x-tab-default-right-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl, +.x-tab-default-right-bl, +.x-tab-default-right-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl, +.x-tab-default-right-bl, +.x-tab-default-right-tr, +.x-tab-default-right-br, +.x-tab-default-right-tc, +.x-tab-default-right-bc, +.x-tab-default-right-ml, +.x-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-ml, +.x-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mc { + padding: 5px 9px 7px 9px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-right-tl, +.x-strict .x-ie7 .x-tab-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-right:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 307, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default { + border-color: #157fcc; + margin: 0 1px 0 0; + cursor: pointer; +} +/* line 312, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-inner { + font-size: 13px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + color: white; + line-height: 16px; +} +/* line 322, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-icon-el { + width: 16px; + height: 16px; + line-height: 16px; + background-position: center center; +} +/* line 329, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-glyph { + font-size: 16px; + color: white; + opacity: 0.5; +} +/* line 343, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default .x-tab-glyph { + color: #a5cdeb; +} +/* line 351, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default { + padding-left: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-button { + padding-left: 12px; +} +/* line 358, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-icon-el { + left: 12px; +} + +/* line 366, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-icon .x-tab-inner { + width: 16px; +} + +/* line 384, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-left { + margin: 0 0 0 1px; +} + +/* line 396, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top, +.x-tab-default-left, +.x-tab-default-right { + border-bottom: 0 solid #157fcc; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom { + border-top: 0 solid #157fcc; +} + +/* line 438, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-tab-default-left { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} + +/* line 454, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-tab-default-right { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +} + +/* line 471, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-icon-text-left .x-tab-inner { + padding-left: 22px; +} + +/* line 485, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-over { + background-color: #5fa7db; +} +/* line 509, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-over .x-tab-glyph { + color: white; +} +/* line 516, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-over .x-tab-glyph { + color: #afd3ed; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active { + background-color: #add2ed; +} +/* line 551, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active .x-tab-inner { + color: #157fcc; +} +/* line 566, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active .x-tab-glyph { + color: #157fcc; +} +/* line 573, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-active .x-tab-glyph { + color: #61a8dc; +} + +/* line 581, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active, +.x-tab-default-left-active, +.x-tab-default-right-active { + border-bottom: 0 solid #add2ed; +} + +/* line 594, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active { + border-top: 0 solid #add2ed; +} + +/* line 607, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled { + cursor: default; +} +/* line 620, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-inner { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} +/* line 639, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 644, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-glyph { + color: white; + opacity: 0.3; + filter: none; +} +/* line 658, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-disabled .x-tab-glyph { + color: #81b9e3; +} + +/* line 667, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled, +.x-tab-default-left-disabled, +.x-tab-default-right-disabled { + border-color: #157fcc #157fcc #157fcc; +} + +/* line 671, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled { + border-color: #157fcc #157fcc #157fcc #157fcc; +} + +/* line 699, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default { + background-image: none; +} + +/* line 710, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-tl, +.x-tab-default-top-over .x-frame-bl, +.x-tab-default-top-over .x-frame-tr, +.x-tab-default-top-over .x-frame-br, +.x-tab-default-top-over .x-frame-tc, +.x-tab-default-top-over .x-frame-bc, +.x-tab-default-left-over .x-frame-tl, +.x-tab-default-left-over .x-frame-bl, +.x-tab-default-left-over .x-frame-tr, +.x-tab-default-left-over .x-frame-br, +.x-tab-default-left-over .x-frame-tc, +.x-tab-default-left-over .x-frame-bc, +.x-tab-default-right-over .x-frame-tl, +.x-tab-default-right-over .x-frame-bl, +.x-tab-default-right-over .x-frame-tr, +.x-tab-default-right-over .x-frame-br, +.x-tab-default-right-over .x-frame-tc, +.x-tab-default-right-over .x-frame-bc { + background-image: url(images/tab/tab-default-top-over-corners.gif); +} +/* line 714, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-ml, +.x-tab-default-top-over .x-frame-mr, +.x-tab-default-left-over .x-frame-ml, +.x-tab-default-left-over .x-frame-mr, +.x-tab-default-right-over .x-frame-ml, +.x-tab-default-right-over .x-frame-mr { + background-image: url(images/tab/tab-default-top-over-sides.gif); +} +/* line 717, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-mc, +.x-tab-default-left-over .x-frame-mc, +.x-tab-default-right-over .x-frame-mc { + background-color: #5fa7db; +} + +/* line 732, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-tl, +.x-tab-default-bottom-over .x-frame-bl, +.x-tab-default-bottom-over .x-frame-tr, +.x-tab-default-bottom-over .x-frame-br, +.x-tab-default-bottom-over .x-frame-tc, +.x-tab-default-bottom-over .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-over-corners.gif); +} +/* line 736, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-ml, +.x-tab-default-bottom-over .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-over-sides.gif); +} +/* line 739, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-mc { + background-color: #5fa7db; +} + +/* line 756, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-tl, +.x-tab-default-top-active .x-frame-bl, +.x-tab-default-top-active .x-frame-tr, +.x-tab-default-top-active .x-frame-br, +.x-tab-default-top-active .x-frame-tc, +.x-tab-default-top-active .x-frame-bc, +.x-tab-default-left-active .x-frame-tl, +.x-tab-default-left-active .x-frame-bl, +.x-tab-default-left-active .x-frame-tr, +.x-tab-default-left-active .x-frame-br, +.x-tab-default-left-active .x-frame-tc, +.x-tab-default-left-active .x-frame-bc, +.x-tab-default-right-active .x-frame-tl, +.x-tab-default-right-active .x-frame-bl, +.x-tab-default-right-active .x-frame-tr, +.x-tab-default-right-active .x-frame-br, +.x-tab-default-right-active .x-frame-tc, +.x-tab-default-right-active .x-frame-bc { + background-image: url(images/tab/tab-default-top-active-corners.gif); +} +/* line 760, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-ml, +.x-tab-default-top-active .x-frame-mr, +.x-tab-default-left-active .x-frame-ml, +.x-tab-default-left-active .x-frame-mr, +.x-tab-default-right-active .x-frame-ml, +.x-tab-default-right-active .x-frame-mr { + background-image: url(images/tab/tab-default-top-active-sides.gif); +} +/* line 763, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-mc, +.x-tab-default-left-active .x-frame-mc, +.x-tab-default-right-active .x-frame-mc { + background-color: #add2ed; +} + +/* line 778, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-tl, +.x-tab-default-bottom-active .x-frame-bl, +.x-tab-default-bottom-active .x-frame-tr, +.x-tab-default-bottom-active .x-frame-br, +.x-tab-default-bottom-active .x-frame-tc, +.x-tab-default-bottom-active .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-active-corners.gif); +} +/* line 782, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-ml, +.x-tab-default-bottom-active .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-active-sides.gif); +} +/* line 785, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-mc { + background-color: #add2ed; +} + +/* line 802, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-tl, +.x-tab-default-top-disabled .x-frame-bl, +.x-tab-default-top-disabled .x-frame-tr, +.x-tab-default-top-disabled .x-frame-br, +.x-tab-default-top-disabled .x-frame-tc, +.x-tab-default-top-disabled .x-frame-bc, +.x-tab-default-left-disabled .x-frame-tl, +.x-tab-default-left-disabled .x-frame-bl, +.x-tab-default-left-disabled .x-frame-tr, +.x-tab-default-left-disabled .x-frame-br, +.x-tab-default-left-disabled .x-frame-tc, +.x-tab-default-left-disabled .x-frame-bc, +.x-tab-default-right-disabled .x-frame-tl, +.x-tab-default-right-disabled .x-frame-bl, +.x-tab-default-right-disabled .x-frame-tr, +.x-tab-default-right-disabled .x-frame-br, +.x-tab-default-right-disabled .x-frame-tc, +.x-tab-default-right-disabled .x-frame-bc { + background-image: url(images/tab/tab-default-top-disabled-corners.gif); +} +/* line 806, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-ml, +.x-tab-default-top-disabled .x-frame-mr, +.x-tab-default-left-disabled .x-frame-ml, +.x-tab-default-left-disabled .x-frame-mr, +.x-tab-default-right-disabled .x-frame-ml, +.x-tab-default-right-disabled .x-frame-mr { + background-image: url(images/tab/tab-default-top-disabled-sides.gif); +} +/* line 809, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-mc, +.x-tab-default-left-disabled .x-frame-mc, +.x-tab-default-right-disabled .x-frame-mc { + background-color: #4b9cd7; +} + +/* line 824, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-tl, +.x-tab-default-bottom-disabled .x-frame-bl, +.x-tab-default-bottom-disabled .x-frame-tr, +.x-tab-default-bottom-disabled .x-frame-br, +.x-tab-default-bottom-disabled .x-frame-tc, +.x-tab-default-bottom-disabled .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-disabled-corners.gif); +} +/* line 828, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-ml, +.x-tab-default-bottom-disabled .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-disabled-sides.gif); +} +/* line 831, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-mc { + background-color: #4b9cd7; +} + +/* line 861, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn { + width: 12px; + height: 12px; + background-image: url(images/tab/tab-default-close.png); +} +/* line 870, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn-over { + background-position: -12px 0; +} + +/* line 880, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn { + top: 2px; + right: 2px; +} + +/* line 924, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-close-btn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; + background-position: 0 0; +} + +/* line 934, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-pressed .x-tab-close-btn { + background-position: -24px 0; +} + +/* line 939, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-closable .x-tab-wrap { + padding-right: 15px; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-over:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-over:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-active:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-active:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-disabled:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-disabled:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top { + padding: 0; +} + +/* line 107, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom { + padding: 0 0 0 0; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left { + padding: 0 0 0 0; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right { + padding: 0 0 0 0; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-horizontal { + height: 36px; +} +/* line 153, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-default-horizontal { + height: 36px; +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-vertical { + width: 36px; +} +/* line 165, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-default-vertical { + width: 36px; +} + +/* line 172, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-top { + padding-bottom: 5px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-bottom { + padding-top: 5px; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-left { + padding-right: 5px; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-right { + padding-left: 5px; +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default { + border-style: solid; + border-color: #157fcc; + background-color: #add2ed; +} + +/* line 210, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-strip-default-horizontal { + height: 5px; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-strip-default-vertical { + width: 5px; +} + +/* line 224, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-top { + border-width: 0 0 0 0; + height: 5px; +} +/* line 227, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-top { + border-width: 0 0 0 0; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-bottom { + border-width: 0 0 0 0; + height: 5px; +} +/* line 235, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-bottom { + border-width: 0 0 0 0; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-left { + border-width: 0 0 0 0; + width: 5px; +} +/* line 243, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-left { + border-width: 0 0 0 0; +} + +/* line 257, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-right { + border-width: 0 0 0 0; + width: 5px; +} +/* line 260, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-right { + border-width: 0 0 0 0; +} + +/* line 274, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default { + background-color: #157fcc; +} + +/* line 323, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller { + cursor: pointer; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + background-color: #157fcc; +} +/* line 339, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-plain .x-box-scroller { + background-color: transparent; +} +/* line 341, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-ie8m .x-tab-bar-default .x-box-scroller-plain .x-box-scroller { + background-color: #fff; +} +/* line 348, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 354, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-pressed { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; +} +/* line 363, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-left, +.x-tab-bar-default .x-tabbar-scroll-right { + height: 31px; + width: 24px; +} +/* line 369, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-top, +.x-tab-bar-default .x-tabbar-scroll-bottom { + width: 31px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-box-scroller { + margin-top: 0; +} +/* line 381, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-box-scroller { + margin-left: 0; +} + +/* line 395, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-left.png); +} +/* line 399, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-right.png); +} +/* line 403, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top.png); +} +/* line 407, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom.png); +} + +/* line 425, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-plain-scroll-left.png); +} +/* line 429, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-plain-scroll-right.png); +} +/* line 433, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-plain-scroll-top.png); +} +/* line 437, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-plain-scroll-bottom.png); +} + +/* line 549, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25); + opacity: 0.25; + cursor: default; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-top:after { + display: none; + content: "x-slicer:stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-bottom:after { + display: none; + content: "x-slicer:stretch:top"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-left:after { + display: none; + content: "x-slicer:stretch:right"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-right:after { + display: none; + content: "x-slicer:stretch:left"; +} + +/**/ +/* */ +/* line 998, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain { + border-width: 0; + padding: 0; + height: 36px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox { + border-color: #f5f5f5; +} + +/* line 6, ../../../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, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox .x-column-header-inner { + padding: 7px 4px 7px 4px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-cell-row-checker .x-grid-cell-inner { + padding: 5px 4px 4px 4px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-hd-checker-on .x-column-header-text, +.x-grid-row-selected .x-grid-row-checker, +.x-grid-row-checked .x-grid-row-checker { + background-position: 0 -15px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-expander { + cursor: pointer; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander { + background-image: url(images/tree/arrows.png); +} +/* line 11, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander-over .x-tree-expander { + background-position: -32px center; +} +/* line 15, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander { + background-position: -16px center; +} +/* line 19, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander { + background-position: -48px center; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow { + background-image: url(images/tree/elbow.png); +} +/* line 48, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-end { + background-image: url(images/tree/elbow-end.png); +} +/* line 52, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-plus { + background-image: url(images/tree/elbow-plus.png); +} +/* line 56, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-plus.png); +} +/* line 60, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus { + background-image: url(images/tree/elbow-minus.png); +} +/* line 64, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-minus.png); +} +/* line 68, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-line { + background-image: url(images/tree/elbow-line.png); +} + +/* line 104, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-tree-expander { + background-image: url(images/tree/elbow-plus-nl.png); +} +/* line 108, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-grid-tree-node-expanded .x-tree-expander { + background-image: url(images/tree/elbow-minus-nl.png); +} + +/* line 123, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon { + width: 16px; + height: 24px; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-elbow-img { + width: 18px; + height: 24px; + margin-right: 2px; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon, +.x-tree-elbow-img, +.x-tree-checkbox { + margin-top: -5px; + margin-bottom: -4px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon-leaf { + background-image: url(images/tree/leaf.png); +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon-parent { + background-image: url(images/tree/folder.png); +} + +/* line 171, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-node-expanded .x-tree-icon-parent { + background-image: url(images/tree/folder-open.png); +} + +/* line 181, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-checkbox { + margin-right: 4px; + top: 5px; + width: 15px; + height: 15px; + background-image: url(images/form/checkbox.png); +} + +/* line 196, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-checkbox-checked { + background-position: 0 -15px; +} + +/* line 200, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-loading .x-tree-icon { + background-image: url(images/tree/loading.png); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-cell-inner-treecolumn { + font-size: 1px; + line-height: 0; +} + +/* line 221, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-node-text { + font-size: 13px; + line-height: 15px; + padding-left: 4px; +} + +/* line 235, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-cell-inner-treecolumn { + padding: 5px 10px 4px 6px; +} + +/* line 1, ../../../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, ../../../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, ../../../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, ../../../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, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-ddindicator { + height: 1px; + border-width: 1px 0px 0px; + border-style: dotted; + border-color: green; +} + +/* including package ext-theme-neptune */ +/* line 1, ../../sass/src/Component.scss */ +body { + background-color: #f5f5f5; +} + +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small { + border-color: transparent; +} + +/* line 137, ../../../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-image: none; + background-color: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-mc { + background-image: url(images/btn/btn-plain-toolbar-small-fbg.gif); + background-position: 0 top; + background-color: transparent; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-plain-toolbar-small { + background-image: url(images/btn/btn-plain-toolbar-small-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-plain-toolbar-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-plain-toolbar-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-tr, +.x-btn-plain-toolbar-small-br, +.x-btn-plain-toolbar-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-tl, +.x-btn-plain-toolbar-small-bl, +.x-btn-plain-toolbar-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-tl, +.x-btn-plain-toolbar-small-bl, +.x-btn-plain-toolbar-small-tr, +.x-btn-plain-toolbar-small-br, +.x-btn-plain-toolbar-small-tc, +.x-btn-plain-toolbar-small-bc, +.x-btn-plain-toolbar-small-ml, +.x-btn-plain-toolbar-small-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-ml, +.x-btn-plain-toolbar-small-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-plain-toolbar-small-tl, +.x-strict .x-ie7 .x-btn-plain-toolbar-small-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-small:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-plain-toolbar-small-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-bg.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small .x-btn-inner { + font-size: 12px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + color: #666666; + padding: 0 5px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small .x-btn-arrow { + background-image: url(images/button/plain-toolbar-small-arrow.png); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small .x-btn-arrow-right { + padding-right: 21px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small .x-btn-arrow-bottom { + padding-bottom: 18px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small .x-btn-glyph { + font-size: 16px; + line-height: 16px; + color: #666666; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-plain-toolbar-small .x-btn-glyph { + color: #b2b2b2; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-disabled { + background-image: none; + background-color: transparent; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon .x-btn-button, +.x-btn-plain-toolbar-small-noicon .x-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon .x-btn-inner, +.x-btn-plain-toolbar-small-noicon .x-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-plain-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-plain-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon .x-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon .x-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-left .x-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-left .x-btn-inner { + line-height: 16px; + padding-left: 21px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-left .x-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-plain-toolbar-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-plain-toolbar-small-icon-text-left .x-btn-icon-el { + height: 16px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-right .x-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-right .x-btn-inner { + line-height: 16px; + padding-right: 21px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-right .x-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-plain-toolbar-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-plain-toolbar-small-icon-text-right .x-btn-icon-el { + height: 16px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-top .x-btn-inner { + padding-top: 21px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-top .x-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-plain-toolbar-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-plain-toolbar-small-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-bottom .x-btn-inner { + padding-bottom: 21px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-bottom .x-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-plain-toolbar-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-plain-toolbar-small-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-over { + border-color: #e1e1e1; + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-focus { + border-color: #e1e1e1; + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-menu-active, +.x-btn-plain-toolbar-small-pressed { + border-color: #e1e1e1; + background-image: none; + background-color: #e1e1e1; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1e1e1), color-stop(50%, #d5d5d5), color-stop(51%, #e1e1e1), color-stop(100%, #e4e4e4)); + background-image: -webkit-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -moz-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -o-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-over .x-frame-tl, +.x-btn-plain-toolbar-small-over .x-frame-bl, +.x-btn-plain-toolbar-small-over .x-frame-tr, +.x-btn-plain-toolbar-small-over .x-frame-br, +.x-btn-plain-toolbar-small-over .x-frame-tc, +.x-btn-plain-toolbar-small-over .x-frame-bc { + background-image: url(images/btn/btn-plain-toolbar-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-over .x-frame-ml, +.x-btn-plain-toolbar-small-over .x-frame-mr { + background-image: url(images/btn/btn-plain-toolbar-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-over .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-plain-toolbar-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-focus .x-frame-tl, +.x-btn-plain-toolbar-small-focus .x-frame-bl, +.x-btn-plain-toolbar-small-focus .x-frame-tr, +.x-btn-plain-toolbar-small-focus .x-frame-br, +.x-btn-plain-toolbar-small-focus .x-frame-tc, +.x-btn-plain-toolbar-small-focus .x-frame-bc { + background-image: url(images/btn/btn-plain-toolbar-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-focus .x-frame-ml, +.x-btn-plain-toolbar-small-focus .x-frame-mr { + background-image: url(images/btn/btn-plain-toolbar-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-focus .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-plain-toolbar-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-menu-active .x-frame-tl, +.x-btn-plain-toolbar-small-menu-active .x-frame-bl, +.x-btn-plain-toolbar-small-menu-active .x-frame-tr, +.x-btn-plain-toolbar-small-menu-active .x-frame-br, +.x-btn-plain-toolbar-small-menu-active .x-frame-tc, +.x-btn-plain-toolbar-small-menu-active .x-frame-bc, +.x-btn-plain-toolbar-small-pressed .x-frame-tl, +.x-btn-plain-toolbar-small-pressed .x-frame-bl, +.x-btn-plain-toolbar-small-pressed .x-frame-tr, +.x-btn-plain-toolbar-small-pressed .x-frame-br, +.x-btn-plain-toolbar-small-pressed .x-frame-tc, +.x-btn-plain-toolbar-small-pressed .x-frame-bc { + background-image: url(images/btn/btn-plain-toolbar-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-menu-active .x-frame-ml, +.x-btn-plain-toolbar-small-menu-active .x-frame-mr, +.x-btn-plain-toolbar-small-pressed .x-frame-ml, +.x-btn-plain-toolbar-small-pressed .x-frame-mr { + background-image: url(images/btn/btn-plain-toolbar-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-menu-active .x-frame-mc, +.x-btn-plain-toolbar-small-pressed .x-frame-mc { + background-color: #e1e1e1; + background-image: url(images/btn/btn-plain-toolbar-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-disabled .x-frame-tl, +.x-btn-plain-toolbar-small-disabled .x-frame-bl, +.x-btn-plain-toolbar-small-disabled .x-frame-tr, +.x-btn-plain-toolbar-small-disabled .x-frame-br, +.x-btn-plain-toolbar-small-disabled .x-frame-tc, +.x-btn-plain-toolbar-small-disabled .x-frame-bc { + background-image: url(images/btn/btn-plain-toolbar-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-disabled .x-frame-ml, +.x-btn-plain-toolbar-small-disabled .x-frame-mr { + background-image: url(images/btn/btn-plain-toolbar-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-disabled .x-frame-mc { + background-color: transparent; + background-image: url(images/btn/btn-plain-toolbar-small-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-plain-toolbar-small-over { + background-image: url(images/btn/btn-plain-toolbar-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-plain-toolbar-small-focus { + background-image: url(images/btn/btn-plain-toolbar-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-plain-toolbar-small-menu-active, +.x-nlg .x-btn-plain-toolbar-small-pressed { + background-image: url(images/btn/btn-plain-toolbar-small-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-plain-toolbar-small-disabled { + background-image: url(images/btn/btn-plain-toolbar-small-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-plain-toolbar-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small .x-btn-split-right { + background-image: url(images/button/plain-toolbar-small-s-arrow.png); + padding-right: 23px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small .x-btn-split-bottom { + background-image: url(images/button/plain-toolbar-small-s-arrow-b.png); + padding-bottom: 20px; +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-over-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-disabled-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-disabled-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium { + border-color: transparent; +} + +/* line 137, ../../../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-image: none; + background-color: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-medium-mc { + background-image: url(images/btn/btn-plain-toolbar-medium-fbg.gif); + background-position: 0 top; + background-color: transparent; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-plain-toolbar-medium { + background-image: url(images/btn/btn-plain-toolbar-medium-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-plain-toolbar-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-plain-toolbar-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-medium-tr, +.x-btn-plain-toolbar-medium-br, +.x-btn-plain-toolbar-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-medium-tl, +.x-btn-plain-toolbar-medium-bl, +.x-btn-plain-toolbar-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-medium-tl, +.x-btn-plain-toolbar-medium-bl, +.x-btn-plain-toolbar-medium-tr, +.x-btn-plain-toolbar-medium-br, +.x-btn-plain-toolbar-medium-tc, +.x-btn-plain-toolbar-medium-bc, +.x-btn-plain-toolbar-medium-ml, +.x-btn-plain-toolbar-medium-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-medium-ml, +.x-btn-plain-toolbar-medium-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-plain-toolbar-medium-tl, +.x-strict .x-ie7 .x-btn-plain-toolbar-medium-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-medium:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-plain-toolbar-medium-fbg.gif), bg:url(images/btn/btn-plain-toolbar-medium-bg.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium .x-btn-inner { + font-size: 14px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + color: #666666; + padding: 0 8px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium .x-btn-arrow { + background-image: url(images/button/plain-toolbar-medium-arrow.png); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium .x-btn-arrow-right { + padding-right: 30px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium .x-btn-arrow-bottom { + padding-bottom: 26px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium .x-btn-glyph { + font-size: 24px; + line-height: 24px; + color: #666666; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-plain-toolbar-medium .x-btn-glyph { + color: #b2b2b2; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-disabled { + background-image: none; + background-color: transparent; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-icon .x-btn-button, +.x-btn-plain-toolbar-medium-noicon .x-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-icon .x-btn-inner, +.x-btn-plain-toolbar-medium-noicon .x-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-plain-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-plain-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-icon .x-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-icon .x-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-icon-text-left .x-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-icon-text-left .x-btn-inner { + line-height: 24px; + padding-left: 29px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-icon-text-left .x-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-plain-toolbar-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-plain-toolbar-medium-icon-text-left .x-btn-icon-el { + height: 24px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-icon-text-right .x-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-icon-text-right .x-btn-inner { + line-height: 24px; + padding-right: 29px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-icon-text-right .x-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-plain-toolbar-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-plain-toolbar-medium-icon-text-right .x-btn-icon-el { + height: 24px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-icon-text-top .x-btn-inner { + padding-top: 29px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-icon-text-top .x-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-plain-toolbar-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-plain-toolbar-medium-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-icon-text-bottom .x-btn-inner { + padding-bottom: 29px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-icon-text-bottom .x-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-plain-toolbar-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-plain-toolbar-medium-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-over { + border-color: #e1e1e1; + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-focus { + border-color: #e1e1e1; + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-menu-active, +.x-btn-plain-toolbar-medium-pressed { + border-color: #e1e1e1; + background-image: none; + background-color: #e1e1e1; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1e1e1), color-stop(50%, #d5d5d5), color-stop(51%, #e1e1e1), color-stop(100%, #e4e4e4)); + background-image: -webkit-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -moz-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -o-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-over .x-frame-tl, +.x-btn-plain-toolbar-medium-over .x-frame-bl, +.x-btn-plain-toolbar-medium-over .x-frame-tr, +.x-btn-plain-toolbar-medium-over .x-frame-br, +.x-btn-plain-toolbar-medium-over .x-frame-tc, +.x-btn-plain-toolbar-medium-over .x-frame-bc { + background-image: url(images/btn/btn-plain-toolbar-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-over .x-frame-ml, +.x-btn-plain-toolbar-medium-over .x-frame-mr { + background-image: url(images/btn/btn-plain-toolbar-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-over .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-plain-toolbar-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-focus .x-frame-tl, +.x-btn-plain-toolbar-medium-focus .x-frame-bl, +.x-btn-plain-toolbar-medium-focus .x-frame-tr, +.x-btn-plain-toolbar-medium-focus .x-frame-br, +.x-btn-plain-toolbar-medium-focus .x-frame-tc, +.x-btn-plain-toolbar-medium-focus .x-frame-bc { + background-image: url(images/btn/btn-plain-toolbar-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-focus .x-frame-ml, +.x-btn-plain-toolbar-medium-focus .x-frame-mr { + background-image: url(images/btn/btn-plain-toolbar-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-focus .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-plain-toolbar-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-menu-active .x-frame-tl, +.x-btn-plain-toolbar-medium-menu-active .x-frame-bl, +.x-btn-plain-toolbar-medium-menu-active .x-frame-tr, +.x-btn-plain-toolbar-medium-menu-active .x-frame-br, +.x-btn-plain-toolbar-medium-menu-active .x-frame-tc, +.x-btn-plain-toolbar-medium-menu-active .x-frame-bc, +.x-btn-plain-toolbar-medium-pressed .x-frame-tl, +.x-btn-plain-toolbar-medium-pressed .x-frame-bl, +.x-btn-plain-toolbar-medium-pressed .x-frame-tr, +.x-btn-plain-toolbar-medium-pressed .x-frame-br, +.x-btn-plain-toolbar-medium-pressed .x-frame-tc, +.x-btn-plain-toolbar-medium-pressed .x-frame-bc { + background-image: url(images/btn/btn-plain-toolbar-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-menu-active .x-frame-ml, +.x-btn-plain-toolbar-medium-menu-active .x-frame-mr, +.x-btn-plain-toolbar-medium-pressed .x-frame-ml, +.x-btn-plain-toolbar-medium-pressed .x-frame-mr { + background-image: url(images/btn/btn-plain-toolbar-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-menu-active .x-frame-mc, +.x-btn-plain-toolbar-medium-pressed .x-frame-mc { + background-color: #e1e1e1; + background-image: url(images/btn/btn-plain-toolbar-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-disabled .x-frame-tl, +.x-btn-plain-toolbar-medium-disabled .x-frame-bl, +.x-btn-plain-toolbar-medium-disabled .x-frame-tr, +.x-btn-plain-toolbar-medium-disabled .x-frame-br, +.x-btn-plain-toolbar-medium-disabled .x-frame-tc, +.x-btn-plain-toolbar-medium-disabled .x-frame-bc { + background-image: url(images/btn/btn-plain-toolbar-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-disabled .x-frame-ml, +.x-btn-plain-toolbar-medium-disabled .x-frame-mr { + background-image: url(images/btn/btn-plain-toolbar-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-disabled .x-frame-mc { + background-color: transparent; + background-image: url(images/btn/btn-plain-toolbar-medium-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-plain-toolbar-medium-over { + background-image: url(images/btn/btn-plain-toolbar-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-plain-toolbar-medium-focus { + background-image: url(images/btn/btn-plain-toolbar-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-plain-toolbar-medium-menu-active, +.x-nlg .x-btn-plain-toolbar-medium-pressed { + background-image: url(images/btn/btn-plain-toolbar-medium-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-plain-toolbar-medium-disabled { + background-image: url(images/btn/btn-plain-toolbar-medium-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-plain-toolbar-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium .x-btn-split-right { + background-image: url(images/button/plain-toolbar-medium-s-arrow.png); + padding-right: 32px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium .x-btn-split-bottom { + background-image: url(images/button/plain-toolbar-medium-s-arrow-b.png); + padding-bottom: 28px; +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-medium-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-plain-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-plain-toolbar-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-plain-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-plain-toolbar-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-plain-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-plain-toolbar-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-plain-toolbar-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-medium-disabled-fbg.gif), bg:url(images/btn/btn-plain-toolbar-medium-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large { + border-color: transparent; +} + +/* line 137, ../../../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-image: none; + background-color: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-large-mc { + background-image: url(images/btn/btn-plain-toolbar-large-fbg.gif); + background-position: 0 top; + background-color: transparent; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-plain-toolbar-large { + background-image: url(images/btn/btn-plain-toolbar-large-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-plain-toolbar-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-plain-toolbar-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-large-tr, +.x-btn-plain-toolbar-large-br, +.x-btn-plain-toolbar-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-large-tl, +.x-btn-plain-toolbar-large-bl, +.x-btn-plain-toolbar-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-large-tl, +.x-btn-plain-toolbar-large-bl, +.x-btn-plain-toolbar-large-tr, +.x-btn-plain-toolbar-large-br, +.x-btn-plain-toolbar-large-tc, +.x-btn-plain-toolbar-large-bc, +.x-btn-plain-toolbar-large-ml, +.x-btn-plain-toolbar-large-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-large-ml, +.x-btn-plain-toolbar-large-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-plain-toolbar-large-tl, +.x-strict .x-ie7 .x-btn-plain-toolbar-large-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-large:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-plain-toolbar-large-fbg.gif), bg:url(images/btn/btn-plain-toolbar-large-bg.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large .x-btn-inner { + font-size: 16px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + color: #666666; + padding: 0 10px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large .x-btn-arrow { + background-image: url(images/button/plain-toolbar-large-arrow.png); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large .x-btn-arrow-right { + padding-right: 36px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large .x-btn-arrow-bottom { + padding-bottom: 32px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large .x-btn-glyph { + font-size: 32px; + line-height: 32px; + color: #666666; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-plain-toolbar-large .x-btn-glyph { + color: #b2b2b2; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-disabled { + background-image: none; + background-color: transparent; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-icon .x-btn-button, +.x-btn-plain-toolbar-large-noicon .x-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-icon .x-btn-inner, +.x-btn-plain-toolbar-large-noicon .x-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-plain-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-plain-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-icon .x-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-icon .x-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-icon-text-left .x-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-icon-text-left .x-btn-inner { + line-height: 32px; + padding-left: 37px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-icon-text-left .x-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-plain-toolbar-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-plain-toolbar-large-icon-text-left .x-btn-icon-el { + height: 32px; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-icon-text-right .x-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-icon-text-right .x-btn-inner { + line-height: 32px; + padding-right: 37px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-icon-text-right .x-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-plain-toolbar-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-plain-toolbar-large-icon-text-right .x-btn-icon-el { + height: 32px; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-icon-text-top .x-btn-inner { + padding-top: 37px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-icon-text-top .x-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-plain-toolbar-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-plain-toolbar-large-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-icon-text-bottom .x-btn-inner { + padding-bottom: 37px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-icon-text-bottom .x-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-plain-toolbar-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-plain-toolbar-large-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-over { + border-color: #e1e1e1; + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-focus { + border-color: #e1e1e1; + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-menu-active, +.x-btn-plain-toolbar-large-pressed { + border-color: #e1e1e1; + background-image: none; + background-color: #e1e1e1; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1e1e1), color-stop(50%, #d5d5d5), color-stop(51%, #e1e1e1), color-stop(100%, #e4e4e4)); + background-image: -webkit-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -moz-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -o-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-over .x-frame-tl, +.x-btn-plain-toolbar-large-over .x-frame-bl, +.x-btn-plain-toolbar-large-over .x-frame-tr, +.x-btn-plain-toolbar-large-over .x-frame-br, +.x-btn-plain-toolbar-large-over .x-frame-tc, +.x-btn-plain-toolbar-large-over .x-frame-bc { + background-image: url(images/btn/btn-plain-toolbar-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-over .x-frame-ml, +.x-btn-plain-toolbar-large-over .x-frame-mr { + background-image: url(images/btn/btn-plain-toolbar-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-over .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-plain-toolbar-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-focus .x-frame-tl, +.x-btn-plain-toolbar-large-focus .x-frame-bl, +.x-btn-plain-toolbar-large-focus .x-frame-tr, +.x-btn-plain-toolbar-large-focus .x-frame-br, +.x-btn-plain-toolbar-large-focus .x-frame-tc, +.x-btn-plain-toolbar-large-focus .x-frame-bc { + background-image: url(images/btn/btn-plain-toolbar-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-focus .x-frame-ml, +.x-btn-plain-toolbar-large-focus .x-frame-mr { + background-image: url(images/btn/btn-plain-toolbar-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-focus .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-plain-toolbar-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-menu-active .x-frame-tl, +.x-btn-plain-toolbar-large-menu-active .x-frame-bl, +.x-btn-plain-toolbar-large-menu-active .x-frame-tr, +.x-btn-plain-toolbar-large-menu-active .x-frame-br, +.x-btn-plain-toolbar-large-menu-active .x-frame-tc, +.x-btn-plain-toolbar-large-menu-active .x-frame-bc, +.x-btn-plain-toolbar-large-pressed .x-frame-tl, +.x-btn-plain-toolbar-large-pressed .x-frame-bl, +.x-btn-plain-toolbar-large-pressed .x-frame-tr, +.x-btn-plain-toolbar-large-pressed .x-frame-br, +.x-btn-plain-toolbar-large-pressed .x-frame-tc, +.x-btn-plain-toolbar-large-pressed .x-frame-bc { + background-image: url(images/btn/btn-plain-toolbar-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-menu-active .x-frame-ml, +.x-btn-plain-toolbar-large-menu-active .x-frame-mr, +.x-btn-plain-toolbar-large-pressed .x-frame-ml, +.x-btn-plain-toolbar-large-pressed .x-frame-mr { + background-image: url(images/btn/btn-plain-toolbar-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-menu-active .x-frame-mc, +.x-btn-plain-toolbar-large-pressed .x-frame-mc { + background-color: #e1e1e1; + background-image: url(images/btn/btn-plain-toolbar-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-disabled .x-frame-tl, +.x-btn-plain-toolbar-large-disabled .x-frame-bl, +.x-btn-plain-toolbar-large-disabled .x-frame-tr, +.x-btn-plain-toolbar-large-disabled .x-frame-br, +.x-btn-plain-toolbar-large-disabled .x-frame-tc, +.x-btn-plain-toolbar-large-disabled .x-frame-bc { + background-image: url(images/btn/btn-plain-toolbar-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-disabled .x-frame-ml, +.x-btn-plain-toolbar-large-disabled .x-frame-mr { + background-image: url(images/btn/btn-plain-toolbar-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-disabled .x-frame-mc { + background-color: transparent; + background-image: url(images/btn/btn-plain-toolbar-large-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-plain-toolbar-large-over { + background-image: url(images/btn/btn-plain-toolbar-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-plain-toolbar-large-focus { + background-image: url(images/btn/btn-plain-toolbar-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-plain-toolbar-large-menu-active, +.x-nlg .x-btn-plain-toolbar-large-pressed { + background-image: url(images/btn/btn-plain-toolbar-large-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-plain-toolbar-large-disabled { + background-image: url(images/btn/btn-plain-toolbar-large-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-plain-toolbar-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large .x-btn-split-right { + background-image: url(images/button/plain-toolbar-large-s-arrow.png); + padding-right: 38px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large .x-btn-split-bottom { + background-image: url(images/button/plain-toolbar-large-s-arrow-b.png); + padding-bottom: 34px; +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-large-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-large-over-corners.gif), sides:url(images/btn/btn-plain-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-plain-toolbar-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-plain-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-plain-toolbar-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-plain-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-plain-toolbar-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-plain-toolbar-large-disabled-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-large-disabled-fbg.gif), bg:url(images/btn/btn-plain-toolbar-large-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 210, ../../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 212, ../../sass/src/button/Button.scss */ +.x-strict .x-ie8 .x-btn-plain-toolbar-small-disabled .x-btn-icon-el, .x-strict .x-ie8 +.x-btn-plain-toolbar-medium-disabled .x-btn-icon-el, .x-strict .x-ie8 +.x-btn-plain-toolbar-large-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/* line 3, ../../sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-toolbar-scroll-left { + margin-right: 4px; +} +/* line 7, ../../sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-toolbar-scroll-right { + margin-left: 4px; +} +/* line 12, ../../sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-toolbar-scroll-left, .x-toolbar-default .x-toolbar-scroll-right { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 17, ../../sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-toolbar-scroll-left-hover, .x-toolbar-default .x-toolbar-scroll-right-hover { + background-position: 0 0; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); + opacity: 0.8; +} +/* line 23, ../../sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-toolbar-scroll-left-pressed, .x-toolbar-default .x-toolbar-scroll-right-pressed { + background-position: 0 0; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} +/* line 29, ../../sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25); + opacity: 0.25; +} +/* line 33, ../../sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller { + background-color: white; +} + +/* line 41, ../../sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroller { + padding: 6px 4px 6px 4px; +} + +/* line 45, ../../sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical-scroller { + padding: 3px 8px 3px 8px; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light { + border-color: #157fcc; + padding: 0; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light { + font-size: 13px; + border: 1px solid #157fcc; +} +/* line 219, ../../../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: #dfeaf2; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-horizontal { + padding: 9px 9px 10px 9px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-horizontal-noborder { + padding: 10px 10px 10px 10px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical { + padding: 9px 9px 9px 10px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical-noborder { + padding: 10px 10px 10px 10px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-light { + color: #666666; + font-size: 13px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + line-height: 15px; + padding: 1px 0 0; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-light { + background: white; + border-color: #157fcc; + color: black; + font-size: 13px; + font-size: normal; + border-width: 1px; + border-style: solid; +} + +/* line 432, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light { + background-image: none; + background-color: #dfeaf2; +} + +/* line 436, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical { + background-image: none; + background-color: #dfeaf2; +} + +/* line 494, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-light-collapsed-border-top { + border-bottom-width: 1px !important; +} +/* line 498, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-light-collapsed-border-right { + border-left-width: 1px !important; +} +/* line 502, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-light-collapsed-border-bottom { + border-top-width: 1px !important; +} +/* line 506, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-light-collapsed-border-left { + border-right-width: 1px !important; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-top:after { + display: none; + content: "x-slicer:stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-bottom:after { + display: none; + content: "x-slicer:stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-left:after { + display: none; + content: "x-slicer:stretch:left"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-right:after { + display: none; + content: "x-slicer:stretch:left"; +} + +/**/ +/* */ +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-light-vertical .x-panel-header-text-container { + background-color: #dfeaf2; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#dfeaf2); +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light .x-panel-header-glyph { + color: white; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-light .x-panel-header-glyph { + color: #eff4f8; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-horizontal .x-panel-header-icon-before-title { + margin: 0 6px 0 0; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 6px; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical .x-panel-header-icon-before-title { + margin: 0 0 6px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical .x-panel-header-icon-after-title { + margin: 6px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-horizontal .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-horizontal .x-tool-before-title { + margin: 0 6px 0 0; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical .x-tool-after-title { + margin: 6px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical .x-tool-before-title { + margin: 0 0 6px 0; +} + +/* line 687, ../../../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, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-l { + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-b { + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-bl { + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-r { + border-right-color: #157fcc !important; + border-right-width: 1px !important; +} + +/* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-rl { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-rb { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-rbl { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-t { + border-top-color: #157fcc !important; + border-top-width: 1px !important; +} + +/* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-tl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-tb { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-tbl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-tr { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; +} + +/* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-trl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-trb { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-trbl { + border-color: #157fcc !important; + border-width: 1px !important; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed { + border-color: #dfeaf2; + padding: 0; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed { + font-size: 13px; + border: 5px solid #dfeaf2; +} +/* line 219, ../../../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: #dfeaf2; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-horizontal { + padding: 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-horizontal-noborder { + padding: 10px 10px 5px 10px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-vertical { + padding: 5px 5px 5px 5px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-vertical-noborder { + padding: 10px 10px 10px 5px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-light-framed { + color: #666666; + font-size: 13px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + line-height: 15px; + padding: 1px 0 0; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-light-framed { + background: white; + border-color: #dfeaf2; + color: black; + font-size: 13px; + font-size: normal; + border-width: 1px; + border-style: solid; +} + +/* line 137, ../../../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: 0px 0px 0px 0px; + border-width: 5px; + border-style: solid; + background-color: white; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-mc { + background-color: white; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-light-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-light-framed-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-0-0-0-0; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-tr, +.x-panel-light-framed-br, +.x-panel-light-framed-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-tl, +.x-panel-light-framed-bl, +.x-panel-light-framed-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-tl, +.x-panel-light-framed-bl, +.x-panel-light-framed-tr, +.x-panel-light-framed-br, +.x-panel-light-framed-tc, +.x-panel-light-framed-bc, +.x-panel-light-framed-ml, +.x-panel-light-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-light-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-ml, +.x-panel-light-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-light-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-light-framed-tl, +.x-strict .x-ie7 .x-panel-light-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-light-framed:after { + display: none; + content: "x-slicer:corners:url(images/panel/panel-light-framed-corners.gif), sides:url(images/panel/panel-light-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px 5px 5px 5px; + border-width: 5px 5px 0 5px; + border-style: solid; + background-color: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-light-framed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-light-framed-top-frameInfo { + font-family: dh-4-4-0-0-5-5-0-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-tr, +.x-panel-header-light-framed-top-br, +.x-panel-header-light-framed-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-tl, +.x-panel-header-light-framed-top-bl, +.x-panel-header-light-framed-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-tl, +.x-panel-header-light-framed-top-bl, +.x-panel-header-light-framed-top-tr, +.x-panel-header-light-framed-top-br, +.x-panel-header-light-framed-top-tc, +.x-panel-header-light-framed-top-bc, +.x-panel-header-light-framed-top-ml, +.x-panel-header-light-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-ml, +.x-panel-header-light-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-light-framed-top-tl, +.x-strict .x-ie7 .x-panel-header-light-framed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-framed-top:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-top-corners.gif), sides:url(images/panel-header/panel-header-light-framed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px 5px 5px 5px; + border-width: 5px 5px 5px 0; + border-style: solid; + background-color: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-light-framed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-light-framed-right-frameInfo { + font-family: dh-0-4-4-0-5-5-5-0-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-ml { + background-position: 0 right; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-mr { + background-position: right right; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-tr, +.x-panel-header-light-framed-right-br, +.x-panel-header-light-framed-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-tl, +.x-panel-header-light-framed-right-bl, +.x-panel-header-light-framed-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-tl, +.x-panel-header-light-framed-right-bl, +.x-panel-header-light-framed-right-tr, +.x-panel-header-light-framed-right-br, +.x-panel-header-light-framed-right-tc, +.x-panel-header-light-framed-right-bc, +.x-panel-header-light-framed-right-ml, +.x-panel-header-light-framed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-right-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-ml, +.x-panel-header-light-framed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-light-framed-right-tl, +.x-strict .x-ie7 .x-panel-header-light-framed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-framed-right:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-right-corners.gif), sides:url(images/panel-header/panel-header-light-framed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px 5px 5px 5px; + border-width: 0 5px 5px 5px; + border-style: solid; + background-color: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-light-framed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-light-framed-bottom-frameInfo { + font-family: dh-0-0-4-4-0-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-tr, +.x-panel-header-light-framed-bottom-br, +.x-panel-header-light-framed-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-tl, +.x-panel-header-light-framed-bottom-bl, +.x-panel-header-light-framed-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-tl, +.x-panel-header-light-framed-bottom-bl, +.x-panel-header-light-framed-bottom-tr, +.x-panel-header-light-framed-bottom-br, +.x-panel-header-light-framed-bottom-tc, +.x-panel-header-light-framed-bottom-bc, +.x-panel-header-light-framed-bottom-ml, +.x-panel-header-light-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-ml, +.x-panel-header-light-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-light-framed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-light-framed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-framed-bottom:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-light-framed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px 5px 5px 5px; + border-width: 5px 0 5px 5px; + border-style: solid; + background-color: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-light-framed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-light-framed-left-frameInfo { + font-family: dh-4-0-0-4-5-0-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-ml { + background-position: 0 left; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-mr { + background-position: right left; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-tr, +.x-panel-header-light-framed-left-br, +.x-panel-header-light-framed-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-tl, +.x-panel-header-light-framed-left-bl, +.x-panel-header-light-framed-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-tl, +.x-panel-header-light-framed-left-bl, +.x-panel-header-light-framed-left-tr, +.x-panel-header-light-framed-left-br, +.x-panel-header-light-framed-left-tc, +.x-panel-header-light-framed-left-bc, +.x-panel-header-light-framed-left-ml, +.x-panel-header-light-framed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-left-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-ml, +.x-panel-header-light-framed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-light-framed-left-tl, +.x-strict .x-ie7 .x-panel-header-light-framed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-framed-left:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-left-corners.gif), sides:url(images/panel-header/panel-header-light-framed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-light-framed-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-light-framed-collapsed-top-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-tr, +.x-panel-header-light-framed-collapsed-top-br, +.x-panel-header-light-framed-collapsed-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-tl, +.x-panel-header-light-framed-collapsed-top-bl, +.x-panel-header-light-framed-collapsed-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-tl, +.x-panel-header-light-framed-collapsed-top-bl, +.x-panel-header-light-framed-collapsed-top-tr, +.x-panel-header-light-framed-collapsed-top-br, +.x-panel-header-light-framed-collapsed-top-tc, +.x-panel-header-light-framed-collapsed-top-bc, +.x-panel-header-light-framed-collapsed-top-ml, +.x-panel-header-light-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-ml, +.x-panel-header-light-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-collapsed-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-top-tl, +.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-framed-collapsed-top:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-light-framed-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-light-framed-collapsed-right-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-ml { + background-position: 0 right; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-mr { + background-position: right right; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-tr, +.x-panel-header-light-framed-collapsed-right-br, +.x-panel-header-light-framed-collapsed-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-tl, +.x-panel-header-light-framed-collapsed-right-bl, +.x-panel-header-light-framed-collapsed-right-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-tl, +.x-panel-header-light-framed-collapsed-right-bl, +.x-panel-header-light-framed-collapsed-right-tr, +.x-panel-header-light-framed-collapsed-right-br, +.x-panel-header-light-framed-collapsed-right-tc, +.x-panel-header-light-framed-collapsed-right-bc, +.x-panel-header-light-framed-collapsed-right-ml, +.x-panel-header-light-framed-collapsed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-collapsed-right-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-ml, +.x-panel-header-light-framed-collapsed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-collapsed-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-right-tl, +.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-framed-collapsed-right:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-right-corners.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-light-framed-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-light-framed-collapsed-bottom-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-tr, +.x-panel-header-light-framed-collapsed-bottom-br, +.x-panel-header-light-framed-collapsed-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-tl, +.x-panel-header-light-framed-collapsed-bottom-bl, +.x-panel-header-light-framed-collapsed-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-tl, +.x-panel-header-light-framed-collapsed-bottom-bl, +.x-panel-header-light-framed-collapsed-bottom-tr, +.x-panel-header-light-framed-collapsed-bottom-br, +.x-panel-header-light-framed-collapsed-bottom-tc, +.x-panel-header-light-framed-collapsed-bottom-bc, +.x-panel-header-light-framed-collapsed-bottom-ml, +.x-panel-header-light-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-ml, +.x-panel-header-light-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-collapsed-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-framed-collapsed-bottom:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-light-framed-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-light-framed-collapsed-left-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-ml { + background-position: 0 left; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-mr { + background-position: right left; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-tr, +.x-panel-header-light-framed-collapsed-left-br, +.x-panel-header-light-framed-collapsed-left-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-tl, +.x-panel-header-light-framed-collapsed-left-bl, +.x-panel-header-light-framed-collapsed-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-tl, +.x-panel-header-light-framed-collapsed-left-bl, +.x-panel-header-light-framed-collapsed-left-tr, +.x-panel-header-light-framed-collapsed-left-br, +.x-panel-header-light-framed-collapsed-left-tc, +.x-panel-header-light-framed-collapsed-left-bc, +.x-panel-header-light-framed-collapsed-left-ml, +.x-panel-header-light-framed-collapsed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-collapsed-left-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-ml, +.x-panel-header-light-framed-collapsed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-collapsed-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-left-tl, +.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-framed-collapsed-left:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-left-corners.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 396, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-light-framed-top { + border-bottom-width: 5px !important; +} +/* line 400, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-light-framed-right { + border-left-width: 5px !important; +} +/* line 404, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-light-framed-bottom { + border-top-width: 5px !important; +} +/* line 408, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-light-framed-left { + border-right-width: 5px !important; +} + +/* line 414, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-light-framed-collapsed-top { + border-bottom-width: 0 !important; +} +/* line 418, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-light-framed-collapsed-right { + border-left-width: 0 !important; +} +/* line 422, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-light-framed-collapsed-bottom { + border-top-width: 0 !important; +} +/* line 426, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-light-framed-collapsed-left { + border-right-width: 0 !important; +} + +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-light-framed-vertical .x-panel-header-text-container { + background-color: #dfeaf2; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#dfeaf2); +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed .x-panel-header-glyph { + color: white; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-light-framed .x-panel-header-glyph { + color: #eff4f8; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-horizontal .x-panel-header-icon-before-title { + margin: 0 6px 0 0; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 6px; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-vertical .x-panel-header-icon-before-title { + margin: 0 0 6px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-vertical .x-panel-header-icon-after-title { + margin: 6px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-horizontal .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-horizontal .x-tool-before-title { + margin: 0 6px 0 0; +} + +/* line 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-vertical .x-tool-after-title { + margin: 6px 0 0 0; +} +/* line 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-vertical .x-tool-before-title { + margin: 0 0 6px 0; +} + +/* line 684, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed-resizable { + overflow: visible; +} +/* line 687, ../../../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 696, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed-resizable .x-panel-handle-north-br { + top: -5px; +} +/* line 699, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed-resizable .x-panel-handle-south-br { + bottom: -5px; +} +/* line 702, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed-resizable .x-panel-handle-east-br { + right: -5px; +} +/* line 705, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed-resizable .x-panel-handle-west-br { + left: -5px; +} +/* line 708, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed-resizable .x-panel-handle-northwest-br { + left: -5px; + top: -5px; +} +/* line 712, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed-resizable .x-panel-handle-northeast-br { + right: -5px; + top: -5px; +} +/* line 716, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed-resizable .x-panel-handle-southeast-br { + right: -5px; + bottom: -5px; +} +/* line 720, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed-resizable .x-panel-handle-southwest-br { + left: -5px; + bottom: -5px; +} + +/* line 2, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-l { + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-b { + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-bl { + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-r { + border-right-color: #157fcc !important; + border-right-width: 1px !important; +} + +/* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-rl { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-rb { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-rbl { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-t { + border-top-color: #157fcc !important; + border-top-width: 1px !important; +} + +/* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-tl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-tb { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-tbl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-tr { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; +} + +/* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-trl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-trb { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-trbl { + border-color: #157fcc !important; + border-width: 1px !important; +} + +/* line 1, ../../sass/src/form/field/Trigger.scss */ +.x-form-trigger { + height: 22px; +} + +/* line 9, ../../sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap { + border: 1px solid; + border-color: silver #d9d9d9 #d9d9d9; +} +/* line 12, ../../sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap .x-form-text { + border-width: 0; + height: 22px; +} +/* line 16, ../../sass/src/form/field/Trigger.scss */ +.x-content-box .x-form-trigger-wrap .x-form-text { + height: 15px; +} +/* line 22, ../../sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap-focus .x-form-trigger-wrap { + border-color: #3892d3; +} +/* line 26, ../../sass/src/form/field/Trigger.scss */ +.x-form-invalid .x-form-trigger-wrap { + border-color: #cf4c35; +} + +/* line 3, ../../sass/src/form/field/File.scss */ +.x-form-file-wrap .x-form-trigger-wrap { + border: 0; +} + +/* line 7, ../../sass/src/form/field/File.scss */ +.x-form-file-wrap .x-form-trigger-wrap .x-form-text { + border: 1px solid; + border-color: silver #d9d9d9 #d9d9d9; + height: 24px; +} +/* line 13, ../../sass/src/form/field/File.scss */ +.x-content-box .x-form-file-wrap .x-form-trigger-wrap .x-form-text { + height: 15px; +} + +/* line 1, ../../sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-container { + border: 1px solid; + border-color: silver #d9d9d9 #d9d9d9; +} + +/* line 1, ../../sass/src/grid/header/Container.scss */ +.x-grid-header-ct { + border: 1px solid silver; +} + +/* line 6, ../../sass/src/grid/column/Column.scss */ +.x-column-header-trigger { + background-image: url(images/grid/hd-pop.png); + border-left: 1px solid silver; +} + +/* line 18, ../../sass/src/grid/column/Column.scss */ +.x-column-header-last { + border-right: 0; +} +/* line 20, ../../sass/src/grid/column/Column.scss */ +.x-column-header-last .x-column-header-over .x-column-header-trigger { + border-right: 1px solid silver; +} + +/* line 25, ../../sass/src/grid/column/Column.scss */ +.x-column-header-last { + border-right: 0 none; +} + +/* line 2, ../../sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-img { + background-image: url(images/tools/tool-sprites-dark.png); +} + +/* line 6, ../../sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd-over { + background-color: #e6f1f9; +} + +/* line 1, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-handle { + background-color: #157fcc; + background-repeat: no-repeat; +} + +/* line 10, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east, +.x-resizable-over .x-resizable-handle-west, +.x-resizable-pinned .x-resizable-handle-east, +.x-resizable-pinned .x-resizable-handle-west { + background-position: center; +} +/* line 15, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south, +.x-resizable-over .x-resizable-handle-north, +.x-resizable-pinned .x-resizable-handle-south, +.x-resizable-pinned .x-resizable-handle-north { + background-position: center; +} +/* line 19, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast, +.x-resizable-pinned .x-resizable-handle-southeast { + background-position: -2px -2px; +} +/* line 23, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest, +.x-resizable-pinned .x-resizable-handle-northwest { + background-position: 2px 2px; +} +/* line 27, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast, +.x-resizable-pinned .x-resizable-handle-northeast { + background-position: -2px 2px; +} +/* line 31, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest, +.x-resizable-pinned .x-resizable-handle-southwest { + background-position: 2px -2px; +} diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/ext-theme-neptune-all-rtl-debug.css b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/ext-theme-neptune-all-rtl-debug.css new file mode 100644 index 0000000..0fb18e8 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/ext-theme-neptune-all-rtl-debug.css @@ -0,0 +1,22799 @@ +/* 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. + */ +/* including package ext-theme-neutral */ +/* including package ext-theme-neptune */ +/* including package ext-theme-neptune */ +/** + * @var {boolean} + * True to include the "light" panel UI + */ +/** + * @var {boolean} + * True to include the "light-framed" panel UI + */ +/** + * @var {color} $form-field-focus-border-color + * 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 + */ +/* including package ext-theme-neutral */ +/** + * @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 {string} $font-size + * The default font-family 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 + */ +/** + * @class Ext.FocusManager + */ +/** + * @var {color} + * The border-color of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-style of the focusFrame. See {@link #method-enable}. + */ +/** + * @var {color} + * The border-width of the focusFrame. See {@link #method-enable}. + */ +/** + * @class Ext.LoadMask + */ +/** + * @var {number} + * Opacity of the LoadMask + */ +/** + * @var {color} + * The background-color of the LoadMask + */ +/** + * @var {string} + * The type of cursor to dislay when the cursor is over the LoadMask + */ +/** + * @var {number/list} + * The padding to apply to the LoadMask's message element + */ +/** + * @var {string} + * The border-style of the LoadMask's message element + */ +/** + * @var {color} + * The border-color of the LoadMask's message element + */ +/** + * @var {number} + * The border-width of the LoadMask's message element + */ +/** + * @var {color} + * The background-color of the LoadMask's message element + */ +/** + * @var {string/list} + * The background-gradient of the LoadMask's message element. Can be either the name + * of a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the message inner element + */ +/** + * @var {string} + * The icon to display in the message inner element + */ +/** + * @var {list} + * The background-position of the icon + */ +/** + * @var {string} + * The border-style of the message inner element + */ +/** + * @var {color} + * The border-color of the message inner element + */ +/** + * @var {number} + * The border-width of the message inner element + */ +/** + * @var {color} + * The background-color of the message inner element + */ +/** + * @var {color} + * The text color of the message inner element + */ +/** + * @var {number} + * The font-size of the message inner element + */ +/** + * @var {string} + * The font-weight of the message inner element + */ +/** + * @var {string} + * The font-family of the message inner element + */ +/** + * @var {number/list} + * The padding of the message element + */ +/** + * @var {number} + * The border-radius of the message element + */ +/** + * @class Ext.ProgressBar + */ +/** + * @var {number} + * The height of the ProgressBar + */ +/** + * @var {color} + * The border-color of the ProgressBar + */ +/** + * @var {number} + * The border-width of the ProgressBar + */ +/** + * @var {number} + * The border-radius of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar + */ +/** + * @var {color} + * The background-color of the ProgressBar's moving element + */ +/** + * @var {string/list} + * The background-gradient of the ProgressBar's moving element. Can be either the name of + * a predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The color of the ProgressBar's text when in front of the ProgressBar's moving element + */ +/** + * @var {color} + * The color of the ProgressBar's text when the ProgressBar's 'moving element is not under it + */ +/** + * @var {string} + * The text-align of the ProgressBar's text + */ +/** + * @var {number} + * The font-size of the ProgressBar's text + */ +/** + * @var {string} + * The font-weight of the ProgressBar's text + */ +/** + * @var {boolean} + * True to include the "default" ProgressBar UI + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a small {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a medium {@link #scale} button + */ +/** + * @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 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 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 disabled + */ +/** + * @var {number} + * The default icon size for a large {@link #scale} button + */ +/** + * @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 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 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 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 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 disabled + */ +/** + * @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 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 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 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 disabled + */ +/** + * @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-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 buton 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-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 + */ +/** + * @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 {number/list} + * The margin 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 {number/list} + * The margin of Toolbar text + */ +/** + * @var {color} + * The text-color of Toolbar text + */ +/** + * @var {number/list} + * The padding of Toolbar text + */ +/** + * @var {number} + * The line-height of Toolbar text + */ +/** + * @var {number} + * The width of Toolbar scrollers + */ +/** + * @var {number} + * The height of Toolbar scrollers + */ +/** + * @var {color} + * The border-color of Toolbar scrollers + */ +/** + * @var {number} + * The border-width of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of Toolbar scrollers + */ +/** + * @var {string} + * The cursor of disabled Toolbar scrollers + */ +/** + * @var {number} + * The opacity of disabled Toolbar scrollers + */ +/** + * @var {string} + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + */ +/** + * @var {boolean} + * True to include the "default" toolbar UI + */ +/** + * @class Ext.panel.Panel + */ +/** + * @var {number} + * The default border-width of Panels + */ +/** + * @var {color} + * The base color of Panels + */ +/** + * @var {color} + * The default border-color of Panels + */ +/** + * @var {$border-width-threshold} + * 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 {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 {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 {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 + */ +/** + * @class Ext.tip.Tip + */ +/** + * @var {color} + * The background-color of the Tip + */ +/** + * @var {string/list} + * The background-gradient of the Tip. Can be either the name of a predefined gradient or a + * list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {color} + * The text color of the Tip body + */ +/** + * @var {number} + * The font-size of the Tip body + */ +/** + * @var {string} + * The font-weight of the Tip body + */ +/** + * @var {number/list} + * The padding of the Tip body + */ +/** + * @var {color} + * The text color of any anchor tags inside the Tip body + */ +/** + * @var {color} + * The text color of the Tip header + */ +/** + * @var {number} + * The font-size of the Tip header + */ +/** + * @var {string} + * The font-weight of the Tip header + */ +/** + * @var {number/list} + * The padding of the Tip header's body element + */ +/** + * @var {color} + * The border-color of the Tip + */ +/** + * @var {number} + * The border-width of the Tip + */ +/** + * @var {number} + * The border-radius of the Tip + */ +/** + * @var {color} + * The inner border-color of the form field error Tip + */ +/** + * @var {number} + * The inner border-width of the form field error Tip + */ +/** + * @var {color} + * The border-color of the form field error Tip + */ +/** + * @var {number} + * The border-radius of the form field error Tip + */ +/** + * @var {number} + * The border-width of the form field error Tip + */ +/** + * @var {color} + * The background-color of the form field error Tip + */ +/** + * @var {number/list} + * The padding of the form field error Tip's body element + */ +/** + * @var {color} + * The text color of the form field error Tip's body element + */ +/** + * @var {number} + * The font-size of the form field error Tip's body element + */ +/** + * @var {string} + * The font-weight of the form field error Tip's body element + */ +/** + * @var {color} + * The color of anchor tags in the form field error Tip's body element + */ +/** + * @var {number} + * The space between {@link Ext.panel.Tool Tools} in the header + */ +/** + * @var {string} + * The sprite to use for the header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" tip UI + */ +/** + * @var {boolean} + * True to include the "form-invalid" tip UI + */ +/** + * @class Ext.container.ButtonGroup + */ +/** + * @var {color} + * The background-color of the ButtonGroup + */ +/** + * @var {color} + * The border-color of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of the ButtonGroup + */ +/** + * @var {number} + * The border-radius of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of the ButtonGroup + */ +/** + * @var {number/list} + * The body padding of the ButtonGroup + */ +/** + * @var {number/list} + * The inner border-width of the ButtonGroup + */ +/** + * @var {color} + * The inner border-color of the ButtonGroup + */ +/** + * @var {number/list} + * The margin of the header element. Used to add space around the header. + */ +/** + * @var {number} + * The font-size of the header + */ +/** + * @var {number} + * The font-weight of the header + */ +/** + * @var {number} + * The font-family of the header + */ +/** + * @var {number} + * The line-height of the header + */ +/** + * @var {number} + * The text color of the header + */ +/** + * @var {number} + * The padding of the header + */ +/** + * @var {number} + * The background-color of the header + */ +/** + * @var {number} + * The border-spacing to use on the table layout element + */ +/** + * @var {number} + * The background-color of framed ButtonGroups + */ +/** + * @var {number} + * The border-width of framed ButtonGroups + */ +/** + * @var {string} + * Sprite image to use for header {@link Ext.panel.Tool Tools} + */ +/** + * @var {boolean} + * True to include the "default" button group UI + */ +/** + * @var {boolean} + * True to include the "default-framed" button group UI + */ +/** + * @class Ext.window.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 + */ +/** + * @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 {color} + * The text color of toolbar field labels + */ +/** + * @var {string} + * The font-weight of toolbar field labels + */ +/** + * @var {number} + * The font-size of toolbar field labels + */ +/** + * @var {string} + * The font-family of toolbar field labels + */ +/** + * @var {number} + * The line-height of toolbar field labels + */ +/** + * @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 {measurement} $form-item-margin-bottom + * The bottom margin to apply to form items when in auto, anchor, vbox, or table layout + */ +/** + * @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 {font} $form-field-font + * Font 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 {font} $form-toolbar-field-font + * Font 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. + */ +/** + * @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 {number} $form-field-disabled-opacity + */ +/** + * @class Ext.form.field.TextArea + */ +/** + * @var {number/string} + * The line-height to use for the TextArea's text + */ +/** + * @class Ext.form.field.Display + */ +/** + * @var {color} + * The text color of display fields + */ +/** + * @var {string} + * The font-weight of display fields + */ +/** + * @var {number} + * The font-size of display fields + */ +/** + * @var {string} + * The font-family of display fields + */ +/** + * @var {number} + * The line-height of display fields + */ +/** + * @var {string} + * The font-weight of toolbar display fields + */ +/** + * @var {number} + * The font-size of toolbar display fields + */ +/** + * @var {string} + * The font-family of toolbar display fields + */ +/** + * @var {number} + * The line-height of toolbar display fields + */ +/** + * @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 + */ +/** + * @class Ext.form.field.Checkbox + */ +/** + * @var {number} + * The size of the checkbox + */ +/** + * @var {number} + * The space between the boxLabel and the checkbox. + */ +/** + * @class Ext.form.CheckboxGroup + */ +/** + * @var {number/list} + * The padding of the CheckboxGroup body element + */ +/** + * @var {color} + * The text color of the CheckboxGroup label + */ +/** + * @var {number} + * The padding of the CheckboxGroup label + */ +/** + * @var {number} + * The margin of the CheckboxGroup label + */ +/** + * @var {number} + * The border-width of the CheckboxGroup label + */ +/** + * @var {number} + * The border-style of the CheckboxGroup label + */ +/** + * @var {number} + * The border-color of the CheckboxGroup label + */ +/** + * @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/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/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 {number/list} + * The margin to apply to the FieldSet's checkbox (for FieldSets that use + * {@link #checkboxToggle}) + */ +/** + * @var {number} + * The size of the FieldSet's collapse tool + */ +/** + * @var {string} $fieldset-collapse-tool-background-image + * The background-image to use for the collapse tool. If null the default tool + * sprite will be used. Defaults to null. + */ +/** + * @class Ext.form.field.Radio + */ +/** + * @var {number} + * The size of the radio button + */ +/** + * @class Ext.form.field.Trigger + */ +/** + * @var {number} + * The width of the Trigger field's trigger element + */ +/** + * @var {number/list} + * The width of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border + */ +/** + * @var {string} + * The style of the trigger's border + */ +/** + * @var {color} + * The color of the trigger's border when hovered + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused + */ +/** + * @var {color} + * The color of the trigger's border when the field is focused and the trigger is hovered + */ +/** + * @class Ext.form.field.Spinner + */ +/** + * @var {number} + * The height of the Spinner trigger buttons + */ +/** + * @var {number} + * The height of the Spinner trigger buttons when the Spinner is used on a + * {@link Ext.toolbar.Toolbar Toolbar} + */ +/** + * @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 {number/list} + * The padding of BoundList items + */ +/** + * @var {number} + * The border-width of BoundList items + */ +/** + * @var {string} + * The border-style of BoundList items + */ +/** + * @var {color} + * The border-color of BoundList items + */ +/** + * @var {color} + * The border-color of hovered BoundList items + */ +/** + * @var {color} + * The border-color of selected BoundList items + */ +/** + * @var {color} + * The background-color of hovered BoundList items + */ +/** + * @var {color} + * The background-color of selected BoundList items + */ +/** + * @class Ext.picker.Date + */ +/** + * @var {number} + * The border-width of the DatePicker + */ +/** + * @var {string} + * The border-style of the DatePicker + */ +/** + * @var {color} + * The background-color of the DatePicker + */ +/** + * @var {string} + * The background-image of the DatePicker next arrow + */ +/** + * @var {string} + * The background-image of the DatePicker previous arrow + */ +/** + * @var {number} + * The width of DatePicker arrows + */ +/** + * @var {number} + * The height of DatePicker arrows + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a DatePicker arrow + */ +/** + * @var {number} + * The opacity of the DatePicker arrows + */ +/** + * @var {number} + * The opacity of the DatePicker arrows when hovered + */ +/** + * @var {string/list} + * The Date Picker header background gradient. Can be either the name of a predefined gradient + * or a list of color stops. Used as the `$type` parameter for {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The padding of the Date Picker header + */ +/** + * @var {color} + * The color of the Date Picker month button + */ +/** + * @var {number} + * The width of the arrow on the Date Picker month button + */ +/** + * @var {string} + * The background-image of the arrow on the Date Picker month button + */ +/** + * @var {boolean} + * True to render the month button as transparent + */ +/** + * @var {string} + * The text-align of the Date Picker header + */ +/** + * @var {number} + * The height of Date Picker items + */ +/** + * @var {number} + * The width of Date Picker items + */ +/** + * @var {number/list} + * The padding of Date Picker items + */ +/** + * @var {string} + * The font-family of Date Picker items + */ +/** + * @var {number} + * The font-size of Date Picker items + */ +/** + * @var {string} + * The font-weight of Date Picker items + */ +/** + * @var {string} + * The text-align of Date Picker items + */ +/** + * @var {color} + * The text color of Date Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Date Picker item + */ +/** + * @var {string} + * The font-family of Date Picker column headers + */ +/** + * @var {number} + * The font-size of Date Picker column headers + */ +/** + * @var {string} + * The font-weight of Date Picker column headers + */ +/** + * @var {string/list} + * The background-gradient of Date Picker column headers. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {string} + * The border-style of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker column headers + */ +/** + * @var {string} + * The text-align of Date Picker column headers + */ +/** + * @var {number} + * The height of Date Picker column headers + */ +/** + * @var {number/list} + * The padding of Date Picker column headers + */ +/** + * @var {number} + * The border-width of Date Picker items + */ +/** + * @var {string} + * The border-style of Date Picker items + */ +/** + * @var {color} + * The border-color of Date Picker items + */ +/** + * @var {string} + * The border-style of today's date on the Date Picker + */ +/** + * @var {string} + * The border-style of the selected item + */ +/** + * @var {string} + * The font-weight of the selected item + */ +/** + * @var {color} + * The text color of the items in the previous and next months + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a disabled item + */ +/** + * @var {color} + * The text color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of disabled Date Picker items + */ +/** + * @var {color} + * The background-color of the Date Picker footer + */ +/** + * @var {string/list} + * The background-gradient of the Date Picker footer. Can be either the name of a + * predefined gradient or a list of color stops. Used as the `$type` parameter for + * {@link Global_CSS#background-gradient}. + */ +/** + * @var {number/list} + * The border-width of the Date Picker footer + */ +/** + * @var {string} + * The border-style of the Date Picker footer + */ +/** + * @var {string} + * The text-align of the Date Picker footer + */ +/** + * @var {number/list} + * The padding of the Date Picker footer + */ +/** + * @var {number} + * The space between the footer buttons + */ +/** + * @var {color} + * The border-color of the Month Picker + */ +/** + * @var {number} + * The border-width of the Month Picker + */ +/** + * @var {string} + * The border-style of the Month Picker + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The text color of Month Picker items + */ +/** + * @var {color} + * The border-color of Month Picker items + */ +/** + * @var {string} + * The border-style of Month Picker items + */ +/** + * @var {string} + * The font-family of Month Picker items + */ +/** + * @var {number} + * The font-size of Month Picker items + */ +/** + * @var {string} + * The font-weight of Month Picker items + */ +/** + * @var {number/list} + * The margin of Month Picker items + */ +/** + * @var {string} + * The text-align of Month Picker items + */ +/** + * @var {number} + * The height of Month Picker items + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker item + */ +/** + * @var {color} + * The background-color of hovered Month Picker items + */ +/** + * @var {color} + * The background-color of selected Month Picker items + */ +/** + * @var {string} + * The border-style of selected Month Picker items + */ +/** + * @var {color} + * The border-color of selected Month Picker items + */ +/** + * @var {number} + * The height of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The width of the Month Picker year navigation buttons + */ +/** + * @var {string} + * The type of cursor to display when the cursor is over a Month Picker year navigation button + */ +/** + * @var {number} + * The opacity of the Month Picker year navigation buttons + */ +/** + * @var {number} + * The opacity of hovered Month Picker year navigation buttons + */ +/** + * @var {string} + * The background-image of the Month Picker next year navigation button + */ +/** + * @var {string} + * The background-image of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker next year navigation button + */ +/** + * @var {list} + * The background-poisition of the Month Picker previous year navigation button + */ +/** + * @var {list} + * The background-poisition of the hovered Month Picker previous year navigation button + */ +/** + * @var {string} + * The border-style of the Month Picker separator + */ +/** + * @var {number} + * The border-width of the Month Picker separator + */ +/** + * @var {color} + * The border-color of the Month Picker separator + */ +/** + * @var {number/list} + * The margin of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @var {number} + * The height of Month Picker items when the datepicker does not have footer buttons + */ +/** + * @class Ext.picker.Color + */ +/** + * @var {color} + * The background-color of Color Pickers + */ +/** + * @var {color} + * The border-color of Color Pickers + */ +/** + * @var {number} + * The border-width of Color Pickers + */ +/** + * @var {string} + * The border-style of Color Pickers + */ +/** + * @var {number} + * The number of columns to display in the Color Picker + */ +/** + * @var {number} + * The number of rows to display in the Color Picker + */ +/** + * @var {number} + * The height of each Color Picker item + */ +/** + * @var {number} + * The width of each Color Picker item + */ +/** + * @var {number} + * The padding of each Color Picker item + */ +/** + * @var {string} + * The cursor to display when the mouse is over a Color Picker item + */ +/** + * @var {color} + * The border-color of Color Picker items + */ +/** + * @var {number} + * The border-width of Color Picker items + */ +/** + * @var {string} + * The border-style of Color Picker items + */ +/** + * @var {color} + * The border-color of hovered Color Picker items + */ +/** + * @var {color} + * The background-color of Color Picker items + */ +/** + * @var {color} + * The background-color of hovered Color Picker items + */ +/** + * @var {color} + * The border-color of the selected Color Picker item + */ +/** + * @var {color} + * The background-color of the selected Color Picker item + */ +/** + * @var {color} + * The inner border-color of Color Picker items + */ +/** + * @var {number} + * The inner border-width of Color Picker items + */ +/** + * @var {string} + * The inner border-style of Color Picker items + */ +/** + * @class Ext.form.field.HtmlEditor + */ +/** + * @var {number} + * The border-width of the HtmlEditor + */ +/** + * @var {color} + * The border-color of the HtmlEditor + */ +/** + * @var {color} + * The background-color of the HtmlEditor + */ +/** + * @var {number} + * The size of the HtmlEditor toolbar icons + */ +/** + * @var {number} + * The font-size of the HtmlEditor's font selection control + */ +/** + * @var {number} + * The font-family of the HtmlEditor's font selection control + */ +/** + * @class Ext.panel.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} $grid-row-cell-line-height + * 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 {color} + * The border-color of the focused row + */ +/** + * @var {string} + * The border-style of the focused row + */ +/** + * @var {color} + * The text color of the focused row + */ +/** + * @var {color} + * The background-color of the focused row + */ +/** + * @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.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 {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 + */ +/** + * @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.CheckColumn + */ +/** + * @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.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.grid.feature.RowWrap + */ +/** + * @var {color} + * The border-color of wrapped rows + */ +/** + * @var {string} + * The border-style of wrapped rows + */ +/** + * @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 + */ +/** + * @class Ext.grid.plugin.Editing + */ +/** + * The height of grid editor text fields. 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 caluclated by adding $grid-row-cell-line-height to the top and bottom values of + * $grid-cell-inner-padding. + */ +/** + * The padding of grid editor text fields. + */ +/** + * @var {number} + * The font size of the grid editor text + */ +/** + * @var {string} + * The font-weight of the grid editor text + */ +/** + * @var {string} + * The font-family of the grid editor text + */ +/** + * @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 {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 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 {string} + * The text-transform property of Accordion headers + */ +/** + * @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.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 {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. + */ +/** + * @class Ext.layout.container.Border + */ +/** + * @var {color} + * The background-color of the Border layout element + */ +/** + * @class Ext.menu.Menu + */ +/** + * @var {color} + * The background-color of the 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 {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} + * The font-size of {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The margin 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 {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 {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {list} + * The background-position of {@link Ext.menu.Item Menu Item} icons + */ +/** + * @var {number} + * The space to the left and right of {@link Ext.menu.Item Menu Item} text + */ +/** + * @var {number/list} + * The margin of {@link Ext.menu.Separator Menu Separators} + */ +/** + * @var {number} + * The padding to the right of {@link Ext.menu.CheckItem Check Items}, to make room + * for the checkbox + */ +/** + * @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 space to the left and right of {@link Ext.menu.Item Menu Item} arrows + */ +/** + * @var {number} + * The opacity of disabled {@link Ext.menu.Item Menu Items} + */ +/** + * @var {number} + * The height of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers + */ +/** + * @var {number} + * The opacity of Menu crollers when hovered + */ +/** + * @var {number} + * The opacity of Menu crollers when pressed + */ +/** + * @var {number/list} + * The padding to apply to the Menu body element + */ +/** + * @var {color} + * The color of Menu Item text + */ +/** + * @var {number/list} + * The margin non-MenuItems placed in a Menu + */ +/** + * @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} + */ +/** + * @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.slider.Multi + */ +/** + * @var {number} + * The horizontal slider thumb width + */ +/** + * @var {number} + * The horizontal slider thumb height + */ +/** + * @var {number} + * The width of the horizontal slider end caps + */ +/** + * @var {number} + * The vertical slider thumb width + */ +/** + * @var {number} + * The vertical slider thumb height + */ +/** + * @var {number} + * The height of the vertical slider end caps + */ +/** + * @class Ext.tab.Tab + */ +/** + * @var {color} + * The base color of Tabs + */ +/** + * @var {color} + * The base color of hovered Tabs + */ +/** + * @var {color} + * The base color of the active Tabs + */ +/** + * @var {color} + * The base color of disabled Tabs + */ +/** + * @var {color} + * The text color of Tabs + */ +/** + * @var {color} + * The text color of hovered Tabs + */ +/** + * @var {color} + * The text color of the active Tab + */ +/** + * @var {color} + * The text color of disabled Tabs + */ +/** + * @var {number} + * The font-size of Tabs + */ +/** + * @var {number} + * The font-size of hovered Tabs + */ +/** + * @var {number} + * The font-size of the active Tab + */ +/** + * @var {number} + * The font-size of disabled Tabs + */ +/** + * @var {string} + * The font-family of Tabs + */ +/** + * @var {string} + * The font-family of hovered Tabs + */ +/** + * @var {string} + * The font-family of the active Tab + */ +/** + * @var {string} + * The font-family of disabled Tabs + */ +/** + * @var {string} + * The font-weight of Tabs + */ +/** + * @var {string} + * The font-weight of hovered Tabs + */ +/** + * @var {string} + * The font-weight of the active Tab + */ +/** + * @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 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 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} + * The border-width of Tabs + */ +/** + * @var {number/list} + * The inner border-width of Tabs + */ +/** + * @var {color} + * The inner border-color of Tabs + */ +/** + * @var {color} + * The border-color of Tabs + */ +/** + * @var {color} + * The border-color of hovered Tabs + */ +/** + * @var {color} + * The border-color of the active Tab + */ +/** + * @var {color} + * The border-color of disabled Tabs + */ +/** + * @var {number/list} + * The padding of Tabs + */ +/** + * @var {number/list} + * The padding of the Tab's text element + */ +/** + * @var {number} + * The line-height of Tabs + */ +/** + * @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 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 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 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 {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a left-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `left`. + */ +/** + * @var {string} + * Experimental - Has issues with IE + * The direction to rotate the contents of a right-aligned tab. `right` to rotate + * clockwise or `left` to rotate counterclockwise. Defaults to `right`. + */ +/** + * @var {boolean} + * True to include the "default" tab UI + */ +/** + * @class Ext.tab.Bar + */ +/** + * @var {number/list} + * The padding of the Tab Bar + */ +/** + * @var {number/list} + * The padding of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} 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/list} + * The border-width of the {@link Ext.tab.Panel#plain plain} Tab Bar strip + */ +/** + * @var {number} + * The width of the Tab Bar scrollers + */ +/** + * @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 change the x postition of the background image on hover to allow for a + * horizonatlly alined background image sprite + */ +/** + * @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.selection.CheckboxModel + */ +/** + * @var {number} + * The horizontal space before the checkbox + */ +/** + * @var {number} + * The horizontal space after the checkbox + */ +/** + * @class Ext.tree.Panel + */ +/** + * @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 + */ +/* 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 + */ +/** + * @var {boolean} $include-content-box + * True to include rules for browsers that do not support the border-box model + * (IE6 strict and IE7 strict) + */ +/** + * @var {boolean} $include-ff + * True to include Firefox specific rules + */ +/** + * @var {boolean} $include-chrome + * True to include Chrome specific rules + */ +/** + * @var {boolean} $include-safari + * True to include Safari specific rules + */ +/** + * @var {boolean} $include-opera + * True to include Opera specific rules + */ +/** + * @var {boolean} $include-webkit + * True to include Webkit specific rules + */ +/** + * @var {measurement} $css-shadow-border-radius + * The border radius for CSS shadows + */ +/** + * @var {color} $include-shadow-images + * True to include all shadow images. + */ +/** + * @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 {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. + */ +/* including package ext-theme-base */ +/* + * 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 + */ +/* line 1, ../../../ext-theme-base/sass/src/Component.scss */ +.x-body { + margin: 0; +} + +/* line 5, ../../../ext-theme-base/sass/src/Component.scss */ +img { + border: 0; +} + +/* line 10, ../../../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 17, ../../../ext-theme-base/sass/src/Component.scss */ +.x-rtl { + direction: rtl; +} + +/* line 21, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ltr { + direction: ltr; +} + +/* line 25, ../../../ext-theme-base/sass/src/Component.scss */ +.x-clear { + overflow: hidden; + clear: both; + font-size: 0; + line-height: 0; + display: table; +} + +/* line 33, ../../../ext-theme-base/sass/src/Component.scss */ +.x-strict .x-ie7 .x-clear { + height: 0; + width: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/Component.scss */ +.x-layer { + position: absolute !important; + overflow: hidden; + zoom: 1; +} + +/* line 49, ../../../ext-theme-base/sass/src/Component.scss */ +.x-fixed-layer { + position: fixed !important; + overflow: hidden; + zoom: 1; +} + +/* line 55, ../../../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 63, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-display { + display: none !important; +} + +/* line 67, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-visibility { + visibility: hidden !important; +} + +/* line 72, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ie6 .x-item-disabled { + filter: none; +} + +/* line 78, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hidden, +.x-hide-offsets { + display: block !important; + visibility: hidden !important; + position: absolute !important; + top: -10000px !important; +} + +/* line 88, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-nosize { + height: 0 !important; + width: 0 !important; +} + +/* line 94, ../../../ext-theme-base/sass/src/Component.scss */ +.x-hide-clip { + position: absolute!important; + clip: rect(0, 0, 0, 0); + clip: rect(0 0 0 0); +} + +/* line 102, ../../../ext-theme-base/sass/src/Component.scss */ +.x-masked-relative { + position: relative; +} + +/* line 108, ../../../ext-theme-base/sass/src/Component.scss */ +.x-ie-shadow { + background-color: #777; + display: none; + position: absolute; + overflow: hidden; + zoom: 1; +} + +/* line 117, ../../../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; + cursor: default; +} + +/* line 121, ../../../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 136, ../../../ext-theme-base/sass/src/Component.scss */ +.x-list-plain { + list-style-type: none; + margin: 0; + padding: 0; +} + +/* line 143, ../../../ext-theme-base/sass/src/Component.scss */ +.x-table-plain { + border-collapse: collapse; + border-spacing: 0; + font-size: 1em; +} + +/* line 156, ../../../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 162, ../../../ext-theme-base/sass/src/Component.scss */ +.x-frame-tc, +.x-frame-bc { + background-repeat: repeat-x; +} + +/* line 166, ../../../ext-theme-base/sass/src/Component.scss */ +.x-frame-mc { + background-repeat: repeat-x; + overflow: hidden; +} + +/* line 171, ../../../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 178, ../../../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 184, ../../../ext-theme-base/sass/src/Component.scss */ +.x-item-disabled, +.x-item-disabled * { + cursor: default; +} + +/* line 3, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x-box-item { + position: absolute !important; + left: 0; + top: 0; +} + +/* line 10, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x-rtl > .x-box-item { + right: 0; + left: auto; +} + +/* line 20, ../../../ext-theme-base/sass/src/layout/container/Container.scss */ +.x-ie6 .x-rtl .x-box-item, +.x-quirks .x-ie .x-rtl .x-box-item { + right: 0; + left: auto; +} + +/* line 4, ../../../ext-theme-base/sass/src/Editor.scss */ +div.x-editor { + overflow: visible; +} + +/* line 1, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask { + z-index: 100; + position: absolute; + width: 100%; + height: 100%; + zoom: 1; +} + +/* line 10, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask-shim { + z-index: 100; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +/* line 20, ../../../ext-theme-base/sass/src/LoadMask.scss */ +.x-mask-msg { + z-index: 20001; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress { + position: relative; + border-style: solid; + overflow: hidden; +} + +/* line 7, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress-bar { + overflow: hidden; + position: absolute; + width: 0; + height: 100%; +} + +/* line 14, ../../../ext-theme-base/sass/src/ProgressBar.scss */ +.x-progress-text { + overflow: hidden; + position: absolute; +} + +/* line 1, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn { + display: inline-block; + position: relative; + zoom: 1; + *display: inline; + outline: 0; + cursor: pointer; + white-space: nowrap; + vertical-align: middle; + text-decoration: none; +} + +/* line 15, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-wrap { + position: relative; + display: block; +} + +/* line 20, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-button { + position: relative; + display: block; + text-decoration: none; + overflow: hidden; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner { + display: block; + white-space: nowrap; + overflow: hidden; + zoom: 1; +} + +/* line 35, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 45, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-center { + text-align: center; +} + +/* line 49, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-left { + text-align: left; +} + +/* line 54, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-rtl.x-btn-inner-left { + text-align: right; +} + +/* line 59, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-btn-inner-right { + text-align: right; +} + +/* line 64, ../../../ext-theme-base/sass/src/button/Button.scss */ +.x-rtl.x-btn-inner-right { + text-align: left; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-target { + position: absolute; + width: 20000px; + top: 0; + left: 0; + height: 1px; +} + +/* line 25, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-rtl.x-box-target { + left: auto; + right: 0; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-inner { + overflow: hidden; + zoom: 1; + position: relative; + left: 0; + top: 0; +} + +/* line 41, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-horizontal-box-overflow-body { + float: left; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller { + position: relative; + background-repeat: no-repeat; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller-left, +.x-box-scroller-right { + float: left; + height: 100%; + z-index: 5; +} + +/* line 59, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-scroller-top .x-box-scroller, +.x-box-scroller-bottom .x-box-scroller { + line-height: 0; + font-size: 0; + background-position: center 0; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-box-menu-after { + float: right; +} + +/* line 71, ../../../ext-theme-base/sass/src/layout/container/Box.scss */ +.x-rtl.x-box-menu-after { + float: left; +} + +/* line 1, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-text { + white-space: nowrap; +} + +/* line 5, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-separator { + display: block; + font-size: 1px; + overflow: hidden; + cursor: default; + border: 0; + width: 0; + height: 0; + line-height: 0px; +} + +/* line 17, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal { + width: 2px; +} + +/* line 22, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroller { + padding-left: 0; +} + +/* line 29, ../../../ext-theme-base/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-plain { + border: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked { + position: absolute !important; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-vertical { + position: static; +} + +/* line 11, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-top { + border-bottom-width: 0 !important; +} + +/* line 15, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-bottom { + border-top-width: 0 !important; +} + +/* line 19, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-left { + border-right-width: 0 !important; +} + +/* line 23, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-right { + border-left-width: 0 !important; +} + +/* line 27, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-top { + border-top-width: 0 !important; +} + +/* line 31, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-right { + border-right-width: 0 !important; +} + +/* line 35, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-bottom { + border-bottom-width: 0 !important; +} + +/* line 39, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-docked-noborder-left { + border-left-width: 0 !important; +} + +/* line 45, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-l { + border-left-width: 0 !important; +} + +/* line 48, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-b { + border-bottom-width: 0 !important; +} + +/* line 51, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-bl { + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 55, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-r { + border-right-width: 0 !important; +} + +/* line 58, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rl { + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 62, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rb { + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 66, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-rbl { + border-right-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 71, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-t { + border-top-width: 0 !important; +} + +/* line 74, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tl { + border-top-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 78, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tb { + border-top-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 82, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tbl { + border-top-width: 0 !important; + border-bottom-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 87, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-tr { + border-top-width: 0 !important; + border-right-width: 0 !important; +} + +/* line 91, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trl { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-left-width: 0 !important; +} + +/* line 96, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trb { + border-top-width: 0 !important; + border-right-width: 0 !important; + border-bottom-width: 0 !important; +} + +/* line 101, ../../../ext-theme-base/sass/src/layout/component/Dock.scss */ +.x-noborder-trbl { + border-width: 0 !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-header-icon { + background-repeat: no-repeat; + background-position: 0 0; + vertical-align: middle; + text-align: center; +} + +/* line 8, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-header-text-container { + overflow: hidden; + -o-text-overflow: ellipsis; + text-overflow: ellipsis; +} + +/* line 15, ../../../ext-theme-base/sass/src/panel/Header.scss */ +.x-rtl.x-header-text-container { + -o-text-overflow: clip; + text-overflow: clip; +} + +/* line 4, ../../../ext-theme-base/sass/src/dd/DD.scss */ +.x-dd-drag-proxy, +.x-dd-drag-current { + z-index: 1000000!important; + pointer-events: none; +} + +/* line 2, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-repair .x-dd-drag-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 6, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-repair .x-dd-drop-icon { + display: none; +} + +/* line 11, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drag-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85); + opacity: 0.85; + padding: 5px; + padding-left: 20px; + white-space: nowrap; + color: #000; + font: normal 12px helvetica, arial, verdana, sans-serif; + border: 1px solid; + border-color: #ddd #bbb #bbb #ddd; + background-color: #fff; +} + +/* line 28, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-icon { + position: absolute; + top: 3px; + left: 3px; + display: block; + width: 16px; + height: 16px; + background-color: transparent; + background-position: center; + background-repeat: no-repeat; + z-index: 1; +} + +/* line 51, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-rtl .x-dd-drag-ghost { + padding-left: 5px; + padding-right: 20px; +} +/* line 55, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-rtl .x-dd-drop-icon { + left: auto; + right: 3px; +} + +/* line 66, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-ok .x-dd-drop-icon { + background-image: url(images/dd/drop-yes.png); +} + +/* line 70, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-ok-add .x-dd-drop-icon { + background-image: url(images/dd/drop-add.png); +} + +/* line 75, ../../../ext-theme-base/sass/src/dd/StatusProxy.scss */ +.x-dd-drop-nodrop div.x-dd-drop-icon { + background-image: url(images/dd/drop-no.png); +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel, +.x-plain { + overflow: hidden; + position: relative; +} + +/* line 7, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel { + outline: none; +} + +/* line 23, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-ie .x-panel-header, +.x-ie .x-panel-header-tl, +.x-ie .x-panel-header-tc, +.x-ie .x-panel-header-tr, +.x-ie .x-panel-header-ml, +.x-ie .x-panel-header-mc, +.x-ie .x-panel-header-mr, +.x-ie .x-panel-header-bl, +.x-ie .x-panel-header-bc, +.x-ie .x-panel-header-br { + zoom: 1; +} + +/* line 29, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-ie8 td.x-frame-mc { + vertical-align: top; +} + +/* line 35, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel-body { + overflow: hidden; + position: relative; +} + +/* line 42, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-nlg .x-panel-header-vertical .x-frame-mc { + background-repeat: repeat-y; +} + +/* line 49, ../../../ext-theme-base/sass/src/panel/Panel.scss */ +.x-panel-header-plain, +.x-panel-body-plain { + border: 0; + padding: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip { + position: absolute; + overflow: visible; + /*pointer needs to be able to stick out*/ +} + +/* line 6, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip-body { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/tip/Tip.scss */ +.x-tip-anchor { + position: absolute; + overflow: hidden; + border-style: solid; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Table.scss */ +.x-table-layout { + font-size: 1em; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group { + position: relative; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body { + position: relative; + zoom: 1; +} +/* line 9, ../../../ext-theme-base/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body .x-table-layout-cell { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/container/Viewport.scss */ +.x-viewport, .x-viewport body { + margin: 0; + padding: 0; + border: 0 none; + overflow: hidden; + height: 100%; + position: static; +} + +/* line 1, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window { + outline: none; + overflow: hidden; +} +/* line 5, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window .x-window-wrap { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window-body { + position: relative; + overflow: hidden; +} + +/* line 15, ../../../ext-theme-base/sass/src/window/Window.scss */ +.x-window-body-plain { + background: transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label { + display: block; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label-right { + text-align: right; +} + +/* line 9, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-item-label-top { + display: block; + zoom: 1; +} + +/* line 15, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-invalid-icon { + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/form/Labelable.scss */ +.x-form-invalid-icon ul { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x-form-textarea { + overflow: auto; + resize: none; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/TextArea.scss */ +.x-safari.x-mac .x-form-textarea { + margin-bottom: -2px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Display.scss */ +.x-form-display-field-body { + vertical-align: top; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb-wrap { + vertical-align: top; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb { + vertical-align: top; + overflow: hidden; + padding: 0; + border: 0; +} +/* line 10, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb::-moz-focus-inner { + padding: 0; + border: 0; +} + +/* line 16, ../../../ext-theme-base/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label { + display: inline-block; + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset { + display: block; + /* preserve margins in IE */ + position: relative; +} + +/* line 6, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header { + overflow: hidden; +} +/* line 10, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-item, +.x-fieldset-header .x-tool { + float: left; +} +/* line 14, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb-wrap { + font-size: 0; + line-height: 0; +} +/* line 19, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-form-cb { + margin: 0; +} + +/* line 27, ../../../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 33, ../../../ext-theme-base/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text { + float: left; +} + +/*misc*/ +/* line 4, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-webkit *:focus { + outline: none !important; +} + +/* line 11, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-item { + vertical-align: top; + table-layout: fixed; +} + +/* line 17, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-item-body { + position: relative; +} + +/* line 26, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-rtl.x-form-item .x-form-item-input-row { + position: relative; + right: 0; +} + +/* line 33, ../../../ext-theme-base/sass/src/form/Panel.scss */ +.x-form-form-item td { + border-top: 1px solid transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + cursor: pointer; + overflow: hidden; + background-repeat: no-repeat; +} +/* line 5, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-item-disabled .x-form-trigger { + cursor: default; +} + +/* line 10, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-trigger-noedit { + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap { + vertical-align: top; + border-collapse: separate; +} + +/* line 2, ../../../ext-theme-base/sass/src/form/field/Spinner.scss */ +.x-form-spinner-up, +.x-form-spinner-down { + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-inner { + table-layout: fixed; + width: 100%; + border-collapse: separate; +} + +/* line 11, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-cell { + padding: 0; +} + +/* line 15, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-header { + position: relative; + zoom: 1; +} + +/* line 20, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-arrow { + position: absolute; + outline: none; + font-size: 0; +} + +/* line 26, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-column-header { + padding: 0; +} + +/* line 30, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-datepicker-date { + display: block; + zoom: 1; + text-decoration: none; +} + +/* line 36, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker { + position: absolute; + left: 0; + top: 0; +} + +/* line 42, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-body { + height: 100%; +} + +/* line 47, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-months, +.x-monthpicker-years { + float: left; + height: 100%; +} + +/* line 52, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-item { + float: left; +} + +/* line 56, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-item-inner { + display: block; + text-decoration: none; +} + +/* line 61, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button-ct { + float: left; + text-align: center; +} + +/* line 66, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button { + display: inline-block; + outline: none; + font-size: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-monthpicker-buttons { + position: absolute; + bottom: 0; + width: 100%; +} +/* line 78, ../../../ext-theme-base/sass/src/picker/Date.scss */ +.x-strict .x-ie6 .x-monthpicker-buttons { + bottom: -1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/File.scss */ +.x-form-file-btn { + overflow: hidden; +} + +/* line 5, ../../../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 29, ../../../ext-theme-base/sass/src/form/field/File.scss */ +.x-rtl.x-form-file-input { + right: auto; + left: -2px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/Hidden.scss */ +.x-form-item-hidden { + margin: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x-color-picker-item { + float: left; + text-decoration: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/picker/Color.scss */ +.x-color-picker-item-inner { + display: block; + font-size: 1px; +} + +/* line 1, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-toolbar { + position: static !important; +} + +/* line 5, ../../../ext-theme-base/sass/src/form/field/HtmlEditor.scss */ +.x-htmleditor-iframe { + display: block; + overflow: auto; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Fit.scss */ +.x-fit-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-row, +.x-grid-data-row { + outline: none; +} + +/* line 6, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-view { + overflow: hidden; + position: relative; +} + +/* line 11, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-table { + table-layout: fixed; + border-collapse: separate; +} + +/* line 16, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-td { + overflow: hidden; + border-width: 0; + vertical-align: top; +} + +/* line 22, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-cell-inner { + overflow: hidden; + white-space: nowrap; + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/panel/Table.scss */ +.x-grid-resize-marker { + position: absolute; + z-index: 5; + top: 0; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + position: absolute; + top: 0; + line-height: 0; + font-size: 0; + overflow: hidden; + z-index: 20000; + background: no-repeat center top transparent; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/header/Container.scss */ +.x-grid-header-ct { + cursor: default; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header { + position: absolute; + overflow: hidden; + background-repeat: repeat-x; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-inner { + zoom: 1; + white-space: nowrap; + position: relative; + overflow: hidden; +} + +/* line 14, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-text { + white-space: nowrap; + background-repeat: no-repeat; + zoom: 1; + display: inline-block; +} + +/* line 25, ../../../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 36, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-trigger { + left: 0; + right: auto; +} + +/* line 43, ../../../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 48, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-right { + text-align: right; +} + +/* line 53, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-align-right { + text-align: left; +} + +/* line 58, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-left { + text-align: left; +} + +/* line 63, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-align-left { + text-align: right; +} + +/* line 68, ../../../ext-theme-base/sass/src/grid/column/Column.scss */ +.x-column-header-align-center { + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/Action.scss */ +.x-grid-cell-inner-action-col { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/CheckColumn.scss */ +.x-grid-cell-inner-checkcolumn { + line-height: 0; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/column/RowNumberer.scss */ +.x-row-numberer .x-column-header-inner { + text-overflow: clip; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-group, +.x-grid-group-body, +.x-grid-group-hd { + zoom: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd { + white-space: nowrap; +} + +/* line 11, ../../../ext-theme-base/sass/src/grid/feature/Grouping.scss */ +.x-grid-row-body-hidden, .x-grid-group-collapsed { + display: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x-grid-rowbody { + zoom: 1; +} + +/* line 5, ../../../ext-theme-base/sass/src/grid/feature/RowBody.scss */ +.x-grid-row-body-hidden { + display: none; +} + +/* line 3, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x-grid-rowwrap .x-grid-table { + border: 0; +} +/* line 6, ../../../ext-theme-base/sass/src/grid/feature/RowWrap.scss */ +td.x-grid-rowwrap .x-grid-cell { + border-bottom: 0; + background-color: transparent; +} + +/* line 2, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-cb-wrap { + text-align: center; +} + +/* line 9, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field { + margin: 0; + white-space: nowrap; + overflow: hidden; +} +/* line 17, ../../../ext-theme-base/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor div.x-form-action-col-field { + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor { + position: absolute; + overflow: visible; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons { + position: absolute; + white-space: nowrap; +} + +/* line 1, ../../../ext-theme-base/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-expander { + font-size: 0; + line-height: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x-abs-layout-ct { + position: relative; +} + +/* line 5, ../../../ext-theme-base/sass/src/layout/container/Absolute.scss */ +.x-abs-layout-item { + position: absolute !important; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter { + font-size: 1px; +} + +/* line 5, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-horizontal { + cursor: e-resize; + cursor: row-resize; +} + +/* line 10, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-vertical { + cursor: e-resize; + cursor: col-resize; +} + +/* line 17, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-collapsed, +.x-splitter-horizontal-noresize, +.x-splitter-vertical-noresize { + cursor: default; +} + +/* line 21, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-splitter-active { + z-index: 4; +} + +/* line 25, ../../../ext-theme-base/sass/src/resizer/Splitter.scss */ +.x-collapse-el { + position: absolute; + background-repeat: no-repeat; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + overflow: hidden; + zoom: 1; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + position: relative; +} + +/* line 10, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-border-region-slide-in { + z-index: 5; +} + +/* line 14, ../../../ext-theme-base/sass/src/layout/container/Border.scss */ +.x-region-collapsed-placeholder { + z-index: 4; +} + +/* line 1, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-column { + float: left; +} + +/* line 6, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-rtl > .x-column { + float: right; +} + +/* line 13, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-ie6 .x-rtl .x-column, .x-quirks .x-ie .x-rtl .x-column { + float: right; +} + +/* line 21, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-ie6 .x-column { + display: inline; + /*prevent IE6 double-margin bug*/ +} + +/* line 25, ../../../ext-theme-base/sass/src/layout/container/Column.scss */ +.x-quirks .x-ie .x-form-layout-table, .x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item { + position: relative; +} + +/* line 2, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x-form-layout-table { + border-collapse: separate; + border-spacing: 0 2px; +} + +/* line 9, ../../../ext-theme-base/sass/src/layout/container/Form.scss */ +.x-ie6 .x-form-layout-table { + border-collapse: collapse; + border-spacing: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu { + outline: none; +} + +/* line 5, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item { + white-space: nowrap; + overflow: hidden; +} + +/* line 11, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-cmp { + margin: 2px; +} +/* line 14, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-cmp .x-field-label-cell { + vertical-align: middle; +} + +/* line 22, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-icon-separator { + position: absolute; + top: 0px; + z-index: 0; + height: 100%; + overflow: hidden; +} +/* line 28, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-plain .x-menu-icon-separator { + display: none; +} + +/* line 33, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-link { + text-decoration: none; + outline: 0; + zoom: 1; +} + +/* line 40, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-text { + zoom: 1; +} + +/* line 47, ../../../ext-theme-base/sass/src/menu/Menu.scss */ +.x-menu-item-icon, +.x-menu-item-icon-right, +.x-menu-item-arrow { + position: absolute; + text-align: center; +} + +/* line 1, ../../../ext-theme-base/sass/src/resizer/SplitterTracker.scss */ +.x-resizable-overlay { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + display: none; + z-index: 200000; + background-color: #fff; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider { + outline: none; + zoom: 1; + position: relative; +} + +/* line 9, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-inner { + position: relative; + left: 0; + top: 0; + overflow: visible; + zoom: 1; +} +/* line 17, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-inner { + background: repeat-y 0 0; +} + +/* line 23, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-end { + zoom: 1; +} + +/* line 28, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-thumb { + position: absolute; + background: no-repeat 0 0; +} +/* line 31, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb { + left: 0; +} +/* line 34, ../../../ext-theme-base/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb { + bottom: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Tab.scss */ +a.x-tab { + text-decoration: none; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Bar.scss */ +.x-tab-bar { + position: relative; +} + +/* line 1, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox .x-column-header-text { + display: block; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 7, ../../../ext-theme-base/sass/src/selection/CheckboxModel.scss */ +.x-grid-cell-row-checker { + vertical-align: middle; + background-repeat: no-repeat; + font-size: 0; +} + +/* line 1, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab { + display: block; + white-space: nowrap; + z-index: 1; +} + +/* line 7, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-active { + z-index: 3; +} + +/* line 11, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-wrap { + display: block; + position: relative; +} + +/* line 16, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-button { + zoom: 1; + display: block; + outline: none; +} + +/* line 22, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-inner { + display: block; + text-align: center; + white-space: nowrap; + text-overflow: ellipsis; + -o-text-overflow: ellipsis; + overflow: hidden; + zoom: 1; +} + +/* line 32, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-btn-icon-el { + top: 0; + right: 0; + bottom: 0; + left: 0; + position: absolute; + background-repeat: no-repeat; + text-align: center; +} + +/* line 42, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar { + z-index: 1; +} + +/* line 46, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-body { + z-index: 2; + position: relative; +} + +/* line 51, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip { + position: absolute; + line-height: 0; + font-size: 0; + z-index: 1; +} + +/* line 58, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-horizontal .x-tab-bar-strip { + width: 100%; + left: 0; +} + +/* line 63, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-vertical .x-tab-bar-strip { + height: 100%; + top: 0; +} + +/* line 68, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-top { + bottom: 0; +} + +/* line 72, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-bottom { + top: 0; +} + +/* line 76, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-left { + right: 0; +} + +/* line 81, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-rtl.x-tab-bar .x-tab-bar-strip-left { + right: auto; + left: 0; +} + +/* line 87, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-strip-right { + left: 0; +} + +/* line 92, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-rtl.x-tab-bar .x-tab-bar-strip-right { + left: auto; + right: 0; +} + +/* line 98, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-bar-plain { + background: transparent !important; +} + +/* line 102, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-icon-el { + position: absolute; + background-repeat: no-repeat; + top: 0; + left: 0; + right: auto; + bottom: 0; +} + +/* line 112, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-rtl.x-tab-icon-el { + left: auto; + right: 0; +} + +/* line 118, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-close-btn { + display: block; + position: absolute; + font-size: 0; + line-height: 0; + background: no-repeat; +} + +/* line 126, ../../../ext-theme-base/sass/src/tab/Panel.scss */ +.x-tab-mc { + overflow: visible; +} + +/* line 3, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-autowidth-table .x-grid-table { + table-layout: auto; + width: auto !important; +} + +/* line 8, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-view { + overflow: hidden; +} + +/* line 13, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-elbow-img, +.x-tree-icon { + background-repeat: no-repeat; + background-position: 0 center; + vertical-align: top; +} + +/* line 19, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-checkbox { + border: 0; + padding: 0; + vertical-align: top; + position: relative; + background-color: transparent; +} + +/* line 27, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-animator-wrap { + overflow: hidden; +} + +/* line 31, ../../../ext-theme-base/sass/src/tree/Panel.scss */ +.x-tree-node-text { + zoom: 1; +} + +/* line 1, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-surface { + display: -moz-inline-stack; + display: inline-block; + vertical-align: middle; + *vertical-align: auto; + zoom: 1; + *display: inline; + overflow: hidden; +} + +/* line 6, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.rvml { + behavior: url(#default#VML); +} + +/* line 10, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-surface tspan { + user-select: none; + -o-user-select: none; + -ms-user-select: none; + -moz-user-select: -moz-none; + -webkit-user-select: none; + cursor: default; +} + +/* line 14, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-sprite { + position: absolute; + left: 0; + top: 0; + width: 1px; + height: 1px; +} + +/* line 22, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-group { + position: absolute; + left: 0; + top: 0; + width: 1000px; + height: 1000px; +} + +/* line 30, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-measure-span { + position: absolute; + left: -9999em; + top: -9999em; + padding: 0; + margin: 0; + display: inline; +} + +/* line 39, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 47, ../../../ext-theme-base/sass/src/draw/Component.scss */ +.x-vml-base { + position: relative; + top: 0; + left: 0; + overflow: hidden; + display: inline-block; +} + +/* line 55, ../../../ext-theme-base/sass/src/draw/Component.scss */ +svg, vml { + overflow: hidden; +} + +/* including package ext-theme-neutral */ +/* line 1, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x-body { + color: black; + font-size: 13px; + font-family: helvetica, arial, verdana, sans-serif; + background: #f5f5f5; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/Component.scss */ +.x-animating-size, +.x-collapsed { + overflow: hidden!important; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/Editor.scss */ +.x-editor .x-form-item-body { + padding-bottom: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-element { + position: absolute; + top: -10px; + left: -10px; + width: 0px; + height: 0px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame { + position: absolute; + left: 0px; + top: 0px; + z-index: 100000000; + width: 0px; + height: 0px; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-top, +.x-focus-frame-bottom, +.x-focus-frame-left, +.x-focus-frame-right { + position: absolute; + top: 0px; + left: 0px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-top, +.x-focus-frame-bottom { + border-top: solid 2px #15428b; + height: 2px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/FocusManager.scss */ +.x-focus-frame-left, +.x-focus-frame-right { + border-left: solid 2px #15428b; + width: 2px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; + background: white; +} + +/* line 9, ../../../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-image: none; + background-color: #e5e5e5; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-mask-msg-inner { + padding: 0; + background-color: transparent; + color: #666666; + font: normal 13px helvetica, arial, verdana, sans-serif; +} + +/* line 41, ../../../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 52, ../../../ext-theme-neutral/sass/src/LoadMask.scss */ +.x-rtl.x-mask-msg-text { + padding: 21px 0 0 0; +} + +/** + * Creates a visual theme for an Ext.ProgressBar + * + * @param {string} $ui-label + * 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 67, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default { + background-color: #f5f5f5; + border-width: 0; + height: 20px; + border-color: #157fcc; +} +/* line 72, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-content-box .x-progress-default { + height: 20px; +} +/* line 84, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-bar-default { + background-image: none; + background-color: #c1ddf1; +} +/* line 99, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-text { + color: #666666; + font-weight: bold; + font-size: 13px; + text-align: center; + line-height: 20px; +} +/* line 107, ../../../ext-theme-neutral/sass/src/ProgressBar.scss */ +.x-progress-default .x-progress-text-back { + color: #666666; + line-height: 20px; +} + +/** + * Creates a visual theme for a 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-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-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-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-disabled + * The text color of the button when the button is disabled + * + * @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-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-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-disabled + * The font-family of the button when the button is disabled + * + * @param {number} $icon-size + * The size of the button icon + * + * @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=false] + * 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 + */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small { + border-color: #126daf; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #3892d3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4b9cd7), color-stop(50%, #3892d3), color-stop(51%, #358ac8), color-stop(100%, #3892d3)); + background-image: -webkit-linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); + background-image: -moz-linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); + background-image: -o-linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); + background-image: linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mc { + background-image: url(images/btn/btn-default-small-fbg.gif); + background-position: 0 top; + background-color: #3892d3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-small { + background-image: url(images/btn/btn-default-small-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tr, +.x-btn-default-small-br, +.x-btn-default-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl, +.x-btn-default-small-bl, +.x-btn-default-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-tl, +.x-btn-default-small-bl, +.x-btn-default-small-tr, +.x-btn-default-small-br, +.x-btn-default-small-tc, +.x-btn-default-small-bc, +.x-btn-default-small-ml, +.x-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-ml, +.x-btn-default-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-small-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-small-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-small-tl, +.x-strict .x-ie7 .x-btn-default-small-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-inner { + font-size: 12px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + color: white; + padding: 0 5px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow { + background-image: url(images/button/default-small-arrow.png); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow-right { + padding-right: 21px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 21px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-arrow-bottom { + padding-bottom: 18px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-glyph { + font-size: 16px; + line-height: 16px; + color: white; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-small .x-btn-glyph { + color: #9bc8e9; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled { + border-color: #157fcc; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-button, +.x-btn-default-small-noicon .x-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-inner, +.x-btn-default-small-noicon .x-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-small-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-small-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 5px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon .x-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-inner { + line-height: 16px; + padding-left: 21px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-rtl.x-btn-inner { + padding-left: 5px; + padding-right: 21px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 21px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-small-icon-text-left .x-btn-icon-el { + height: 16px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-inner { + line-height: 16px; + padding-right: 21px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-rtl.x-btn-inner { + padding-right: 5px; + padding-left: 21px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-small-icon-text-right .x-btn-icon-el { + height: 16px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-top .x-btn-inner { + padding-top: 21px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-top .x-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-bottom .x-btn-inner { + padding-bottom: 21px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-icon-text-bottom .x-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over { + border-color: #157fcc; + background-image: none; + background-color: #3386c2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4792c8), color-stop(50%, #3386c2), color-stop(51%, #307fb8), color-stop(100%, #3386c2)); + background-image: -webkit-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -moz-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -o-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus { + border-color: #157fcc; + background-image: none; + background-color: #3386c2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4792c8), color-stop(50%, #3386c2), color-stop(51%, #307fb8), color-stop(100%, #3386c2)); + background-image: -webkit-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -moz-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -o-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active, +.x-btn-default-small-pressed { + border-color: #157fcc; + background-image: none; + background-color: #2a6d9e; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a6d9e), color-stop(50%, #276796), color-stop(51%, #2a6d9e), color-stop(100%, #3f7ba7)); + background-image: -webkit-linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); + background-image: -moz-linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); + background-image: -o-linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); + background-image: linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-tl, +.x-btn-default-small-over .x-frame-bl, +.x-btn-default-small-over .x-frame-tr, +.x-btn-default-small-over .x-frame-br, +.x-btn-default-small-over .x-frame-tc, +.x-btn-default-small-over .x-frame-bc { + background-image: url(images/btn/btn-default-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-ml, +.x-btn-default-small-over .x-frame-mr { + background-image: url(images/btn/btn-default-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-over .x-frame-mc { + background-color: #3386c2; + background-image: url(images/btn/btn-default-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-tl, +.x-btn-default-small-focus .x-frame-bl, +.x-btn-default-small-focus .x-frame-tr, +.x-btn-default-small-focus .x-frame-br, +.x-btn-default-small-focus .x-frame-tc, +.x-btn-default-small-focus .x-frame-bc { + background-image: url(images/btn/btn-default-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-ml, +.x-btn-default-small-focus .x-frame-mr { + background-image: url(images/btn/btn-default-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-focus .x-frame-mc { + background-color: #3386c2; + background-image: url(images/btn/btn-default-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-tl, +.x-btn-default-small-menu-active .x-frame-bl, +.x-btn-default-small-menu-active .x-frame-tr, +.x-btn-default-small-menu-active .x-frame-br, +.x-btn-default-small-menu-active .x-frame-tc, +.x-btn-default-small-menu-active .x-frame-bc, +.x-btn-default-small-pressed .x-frame-tl, +.x-btn-default-small-pressed .x-frame-bl, +.x-btn-default-small-pressed .x-frame-tr, +.x-btn-default-small-pressed .x-frame-br, +.x-btn-default-small-pressed .x-frame-tc, +.x-btn-default-small-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-ml, +.x-btn-default-small-menu-active .x-frame-mr, +.x-btn-default-small-pressed .x-frame-ml, +.x-btn-default-small-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-menu-active .x-frame-mc, +.x-btn-default-small-pressed .x-frame-mc { + background-color: #2a6d9e; + background-image: url(images/btn/btn-default-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-tl, +.x-btn-default-small-disabled .x-frame-bl, +.x-btn-default-small-disabled .x-frame-tr, +.x-btn-default-small-disabled .x-frame-br, +.x-btn-default-small-disabled .x-frame-tc, +.x-btn-default-small-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-ml, +.x-btn-default-small-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled .x-frame-mc { + background-color: null; + background-image: url(images/btn/btn-default-small-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-over { + background-image: url(images/btn/btn-default-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-focus { + background-image: url(images/btn/btn-default-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-menu-active, +.x-nlg .x-btn-default-small-pressed { + background-image: url(images/btn/btn-default-small-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-small-disabled { + background-image: url(images/btn/btn-default-small-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-split-right { + background-image: url(images/button/default-small-s-arrow.png); + padding-right: 23px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-rtl.x-btn-split-right { + background-image: url(images/button/default-small-s-arrow-rtl.png); + padding-right: 0; + padding-left: 23px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small .x-btn-split-bottom { + background-image: url(images/button/default-small-s-arrow-b.png); + padding-bottom: 20px; +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-small-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium { + border-color: #126daf; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #3892d3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4b9cd7), color-stop(50%, #3892d3), color-stop(51%, #358ac8), color-stop(100%, #3892d3)); + background-image: -webkit-linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); + background-image: -moz-linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); + background-image: -o-linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); + background-image: linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mc { + background-image: url(images/btn/btn-default-medium-fbg.gif); + background-position: 0 top; + background-color: #3892d3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-medium { + background-image: url(images/btn/btn-default-medium-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tr, +.x-btn-default-medium-br, +.x-btn-default-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl, +.x-btn-default-medium-bl, +.x-btn-default-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-tl, +.x-btn-default-medium-bl, +.x-btn-default-medium-tr, +.x-btn-default-medium-br, +.x-btn-default-medium-tc, +.x-btn-default-medium-bc, +.x-btn-default-medium-ml, +.x-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-ml, +.x-btn-default-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-medium-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-medium-tl, +.x-strict .x-ie7 .x-btn-default-medium-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-inner { + font-size: 14px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + color: white; + padding: 0 8px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow { + background-image: url(images/button/default-medium-arrow.png); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow-right { + padding-right: 30px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 30px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-arrow-bottom { + padding-bottom: 26px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-glyph { + font-size: 24px; + line-height: 24px; + color: white; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-medium .x-btn-glyph { + color: #9bc8e9; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled { + border-color: #157fcc; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-button, +.x-btn-default-medium-noicon .x-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-inner, +.x-btn-default-medium-noicon .x-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-medium-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-medium-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 8px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon .x-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-inner { + line-height: 24px; + padding-left: 29px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-rtl.x-btn-inner { + padding-left: 8px; + padding-right: 29px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 29px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon-el { + height: 24px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-inner { + line-height: 24px; + padding-right: 29px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-rtl.x-btn-inner { + padding-right: 8px; + padding-left: 29px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon-el { + height: 24px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-top .x-btn-inner { + padding-top: 29px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-top .x-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-bottom .x-btn-inner { + padding-bottom: 29px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-icon-text-bottom .x-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over { + border-color: #157fcc; + background-image: none; + background-color: #3386c2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4792c8), color-stop(50%, #3386c2), color-stop(51%, #307fb8), color-stop(100%, #3386c2)); + background-image: -webkit-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -moz-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -o-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus { + border-color: #157fcc; + background-image: none; + background-color: #3386c2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4792c8), color-stop(50%, #3386c2), color-stop(51%, #307fb8), color-stop(100%, #3386c2)); + background-image: -webkit-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -moz-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -o-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active, +.x-btn-default-medium-pressed { + border-color: #157fcc; + background-image: none; + background-color: #2a6d9e; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a6d9e), color-stop(50%, #276796), color-stop(51%, #2a6d9e), color-stop(100%, #3f7ba7)); + background-image: -webkit-linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); + background-image: -moz-linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); + background-image: -o-linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); + background-image: linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-tl, +.x-btn-default-medium-over .x-frame-bl, +.x-btn-default-medium-over .x-frame-tr, +.x-btn-default-medium-over .x-frame-br, +.x-btn-default-medium-over .x-frame-tc, +.x-btn-default-medium-over .x-frame-bc { + background-image: url(images/btn/btn-default-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-ml, +.x-btn-default-medium-over .x-frame-mr { + background-image: url(images/btn/btn-default-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-over .x-frame-mc { + background-color: #3386c2; + background-image: url(images/btn/btn-default-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-tl, +.x-btn-default-medium-focus .x-frame-bl, +.x-btn-default-medium-focus .x-frame-tr, +.x-btn-default-medium-focus .x-frame-br, +.x-btn-default-medium-focus .x-frame-tc, +.x-btn-default-medium-focus .x-frame-bc { + background-image: url(images/btn/btn-default-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-ml, +.x-btn-default-medium-focus .x-frame-mr { + background-image: url(images/btn/btn-default-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-focus .x-frame-mc { + background-color: #3386c2; + background-image: url(images/btn/btn-default-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-tl, +.x-btn-default-medium-menu-active .x-frame-bl, +.x-btn-default-medium-menu-active .x-frame-tr, +.x-btn-default-medium-menu-active .x-frame-br, +.x-btn-default-medium-menu-active .x-frame-tc, +.x-btn-default-medium-menu-active .x-frame-bc, +.x-btn-default-medium-pressed .x-frame-tl, +.x-btn-default-medium-pressed .x-frame-bl, +.x-btn-default-medium-pressed .x-frame-tr, +.x-btn-default-medium-pressed .x-frame-br, +.x-btn-default-medium-pressed .x-frame-tc, +.x-btn-default-medium-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-ml, +.x-btn-default-medium-menu-active .x-frame-mr, +.x-btn-default-medium-pressed .x-frame-ml, +.x-btn-default-medium-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-menu-active .x-frame-mc, +.x-btn-default-medium-pressed .x-frame-mc { + background-color: #2a6d9e; + background-image: url(images/btn/btn-default-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-tl, +.x-btn-default-medium-disabled .x-frame-bl, +.x-btn-default-medium-disabled .x-frame-tr, +.x-btn-default-medium-disabled .x-frame-br, +.x-btn-default-medium-disabled .x-frame-tc, +.x-btn-default-medium-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-ml, +.x-btn-default-medium-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled .x-frame-mc { + background-color: null; + background-image: url(images/btn/btn-default-medium-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-over { + background-image: url(images/btn/btn-default-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-focus { + background-image: url(images/btn/btn-default-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-menu-active, +.x-nlg .x-btn-default-medium-pressed { + background-image: url(images/btn/btn-default-medium-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-medium-disabled { + background-image: url(images/btn/btn-default-medium-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-split-right { + background-image: url(images/button/default-medium-s-arrow.png); + padding-right: 32px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-rtl.x-btn-split-right { + background-image: url(images/button/default-medium-s-arrow-rtl.png); + padding-right: 0; + padding-left: 32px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium .x-btn-split-bottom { + background-image: url(images/button/default-medium-s-arrow-b.png); + padding-bottom: 28px; +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-medium-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large { + border-color: #126daf; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #3892d3; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4b9cd7), color-stop(50%, #3892d3), color-stop(51%, #358ac8), color-stop(100%, #3892d3)); + background-image: -webkit-linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); + background-image: -moz-linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); + background-image: -o-linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); + background-image: linear-gradient(top, #4b9cd7, #3892d3 50%, #358ac8 51%, #3892d3); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mc { + background-image: url(images/btn/btn-default-large-fbg.gif); + background-position: 0 top; + background-color: #3892d3; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-large { + background-image: url(images/btn/btn-default-large-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tr, +.x-btn-default-large-br, +.x-btn-default-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl, +.x-btn-default-large-bl, +.x-btn-default-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-tl, +.x-btn-default-large-bl, +.x-btn-default-large-tr, +.x-btn-default-large-br, +.x-btn-default-large-tc, +.x-btn-default-large-bc, +.x-btn-default-large-ml, +.x-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-ml, +.x-btn-default-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-large-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-large-tl, +.x-strict .x-ie7 .x-btn-default-large-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-inner { + font-size: 16px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + color: white; + padding: 0 10px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow { + background-image: url(images/button/default-large-arrow.png); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow-right { + padding-right: 36px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 36px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-arrow-bottom { + padding-bottom: 32px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-glyph { + font-size: 32px; + line-height: 32px; + color: white; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-large .x-btn-glyph { + color: #9bc8e9; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled { + border-color: #157fcc; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-button, +.x-btn-default-large-noicon .x-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-inner, +.x-btn-default-large-noicon .x-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-large-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-large-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 10px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon .x-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-inner { + line-height: 32px; + padding-left: 37px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-rtl.x-btn-inner { + padding-left: 10px; + padding-right: 37px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 37px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-large-icon-text-left .x-btn-icon-el { + height: 32px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-inner { + line-height: 32px; + padding-right: 37px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-rtl.x-btn-inner { + padding-right: 10px; + padding-left: 37px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-large-icon-text-right .x-btn-icon-el { + height: 32px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-top .x-btn-inner { + padding-top: 37px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-top .x-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-bottom .x-btn-inner { + padding-bottom: 37px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-icon-text-bottom .x-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over { + border-color: #157fcc; + background-image: none; + background-color: #3386c2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4792c8), color-stop(50%, #3386c2), color-stop(51%, #307fb8), color-stop(100%, #3386c2)); + background-image: -webkit-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -moz-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -o-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus { + border-color: #157fcc; + background-image: none; + background-color: #3386c2; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4792c8), color-stop(50%, #3386c2), color-stop(51%, #307fb8), color-stop(100%, #3386c2)); + background-image: -webkit-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -moz-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: -o-linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); + background-image: linear-gradient(top, #4792c8, #3386c2 50%, #307fb8 51%, #3386c2); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active, +.x-btn-default-large-pressed { + border-color: #157fcc; + background-image: none; + background-color: #2a6d9e; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a6d9e), color-stop(50%, #276796), color-stop(51%, #2a6d9e), color-stop(100%, #3f7ba7)); + background-image: -webkit-linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); + background-image: -moz-linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); + background-image: -o-linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); + background-image: linear-gradient(top, #2a6d9e, #276796 50%, #2a6d9e 51%, #3f7ba7); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-tl, +.x-btn-default-large-over .x-frame-bl, +.x-btn-default-large-over .x-frame-tr, +.x-btn-default-large-over .x-frame-br, +.x-btn-default-large-over .x-frame-tc, +.x-btn-default-large-over .x-frame-bc { + background-image: url(images/btn/btn-default-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-ml, +.x-btn-default-large-over .x-frame-mr { + background-image: url(images/btn/btn-default-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-over .x-frame-mc { + background-color: #3386c2; + background-image: url(images/btn/btn-default-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-tl, +.x-btn-default-large-focus .x-frame-bl, +.x-btn-default-large-focus .x-frame-tr, +.x-btn-default-large-focus .x-frame-br, +.x-btn-default-large-focus .x-frame-tc, +.x-btn-default-large-focus .x-frame-bc { + background-image: url(images/btn/btn-default-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-ml, +.x-btn-default-large-focus .x-frame-mr { + background-image: url(images/btn/btn-default-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-focus .x-frame-mc { + background-color: #3386c2; + background-image: url(images/btn/btn-default-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-tl, +.x-btn-default-large-menu-active .x-frame-bl, +.x-btn-default-large-menu-active .x-frame-tr, +.x-btn-default-large-menu-active .x-frame-br, +.x-btn-default-large-menu-active .x-frame-tc, +.x-btn-default-large-menu-active .x-frame-bc, +.x-btn-default-large-pressed .x-frame-tl, +.x-btn-default-large-pressed .x-frame-bl, +.x-btn-default-large-pressed .x-frame-tr, +.x-btn-default-large-pressed .x-frame-br, +.x-btn-default-large-pressed .x-frame-tc, +.x-btn-default-large-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-ml, +.x-btn-default-large-menu-active .x-frame-mr, +.x-btn-default-large-pressed .x-frame-ml, +.x-btn-default-large-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-menu-active .x-frame-mc, +.x-btn-default-large-pressed .x-frame-mc { + background-color: #2a6d9e; + background-image: url(images/btn/btn-default-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-tl, +.x-btn-default-large-disabled .x-frame-bl, +.x-btn-default-large-disabled .x-frame-tr, +.x-btn-default-large-disabled .x-frame-br, +.x-btn-default-large-disabled .x-frame-tc, +.x-btn-default-large-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-ml, +.x-btn-default-large-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled .x-frame-mc { + background-color: null; + background-image: url(images/btn/btn-default-large-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-over { + background-image: url(images/btn/btn-default-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-focus { + background-image: url(images/btn/btn-default-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-menu-active, +.x-nlg .x-btn-default-large-pressed { + background-image: url(images/btn/btn-default-large-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-large-disabled { + background-image: url(images/btn/btn-default-large-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-split-right { + background-image: url(images/button/default-large-s-arrow.png); + padding-right: 38px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-rtl.x-btn-split-right { + background-image: url(images/button/default-large-s-arrow-rtl.png); + padding-right: 0; + padding-left: 38px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large .x-btn-split-bottom { + background-image: url(images/button/default-large-s-arrow-b.png); + padding-bottom: 34px; +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-large-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small { + border-color: #e1e1e1; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #f5f5f5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(50%, #f5f5f5), color-stop(51%, #e8e8e8), color-stop(100%, #f5f5f5)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -moz-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -o-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mc { + background-image: url(images/btn/btn-default-toolbar-small-fbg.gif); + background-position: 0 top; + background-color: #f5f5f5; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-toolbar-small { + background-image: url(images/btn/btn-default-toolbar-small-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tr, +.x-btn-default-toolbar-small-br, +.x-btn-default-toolbar-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl, +.x-btn-default-toolbar-small-bl, +.x-btn-default-toolbar-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-tl, +.x-btn-default-toolbar-small-bl, +.x-btn-default-toolbar-small-tr, +.x-btn-default-toolbar-small-br, +.x-btn-default-toolbar-small-tc, +.x-btn-default-toolbar-small-bc, +.x-btn-default-toolbar-small-ml, +.x-btn-default-toolbar-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-toolbar-small-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-ml, +.x-btn-default-toolbar-small-mr { + zoom: 1; + background-image: url(images/btn/btn-default-toolbar-small-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-small-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-small-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-small-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-toolbar-small-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-bg.gif), corners:url(images/btn/btn-default-toolbar-small-corners.gif), sides:url(images/btn/btn-default-toolbar-small-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-inner { + font-size: 12px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + color: #666666; + padding: 0 5px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow { + background-image: url(images/button/default-toolbar-small-arrow.png); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow-right { + padding-right: 21px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 21px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-arrow-bottom { + padding-bottom: 18px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-glyph { + font-size: 16px; + line-height: 16px; + color: #666666; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-small .x-btn-glyph { + color: #adadad; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled { + background-image: none; + background-color: #f5f5f5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(50%, #f5f5f5), color-stop(51%, #e8e8e8), color-stop(100%, #f5f5f5)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -moz-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -o-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-button, +.x-btn-default-toolbar-small-noicon .x-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 5px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon .x-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-inner { + line-height: 16px; + padding-left: 21px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-rtl.x-btn-inner { + padding-left: 5px; + padding-right: 21px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 21px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el { + height: 16px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-inner { + line-height: 16px; + padding-right: 21px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-rtl.x-btn-inner { + padding-right: 5px; + padding-left: 21px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el { + height: 16px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-top .x-btn-inner { + padding-top: 21px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner { + padding-bottom: 21px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over { + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus { + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active, +.x-btn-default-toolbar-small-pressed { + background-image: none; + background-color: #e1e1e1; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1e1e1), color-stop(50%, #d5d5d5), color-stop(51%, #e1e1e1), color-stop(100%, #e4e4e4)); + background-image: -webkit-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -moz-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -o-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-tl, +.x-btn-default-toolbar-small-over .x-frame-bl, +.x-btn-default-toolbar-small-over .x-frame-tr, +.x-btn-default-toolbar-small-over .x-frame-br, +.x-btn-default-toolbar-small-over .x-frame-tc, +.x-btn-default-toolbar-small-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-ml, +.x-btn-default-toolbar-small-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-over .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-default-toolbar-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-tl, +.x-btn-default-toolbar-small-focus .x-frame-bl, +.x-btn-default-toolbar-small-focus .x-frame-tr, +.x-btn-default-toolbar-small-focus .x-frame-br, +.x-btn-default-toolbar-small-focus .x-frame-tc, +.x-btn-default-toolbar-small-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-ml, +.x-btn-default-toolbar-small-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-focus .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-default-toolbar-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-tl, +.x-btn-default-toolbar-small-menu-active .x-frame-bl, +.x-btn-default-toolbar-small-menu-active .x-frame-tr, +.x-btn-default-toolbar-small-menu-active .x-frame-br, +.x-btn-default-toolbar-small-menu-active .x-frame-tc, +.x-btn-default-toolbar-small-menu-active .x-frame-bc, +.x-btn-default-toolbar-small-pressed .x-frame-tl, +.x-btn-default-toolbar-small-pressed .x-frame-bl, +.x-btn-default-toolbar-small-pressed .x-frame-tr, +.x-btn-default-toolbar-small-pressed .x-frame-br, +.x-btn-default-toolbar-small-pressed .x-frame-tc, +.x-btn-default-toolbar-small-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-ml, +.x-btn-default-toolbar-small-menu-active .x-frame-mr, +.x-btn-default-toolbar-small-pressed .x-frame-ml, +.x-btn-default-toolbar-small-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-menu-active .x-frame-mc, +.x-btn-default-toolbar-small-pressed .x-frame-mc { + background-color: #e1e1e1; + background-image: url(images/btn/btn-default-toolbar-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-tl, +.x-btn-default-toolbar-small-disabled .x-frame-bl, +.x-btn-default-toolbar-small-disabled .x-frame-tr, +.x-btn-default-toolbar-small-disabled .x-frame-br, +.x-btn-default-toolbar-small-disabled .x-frame-tc, +.x-btn-default-toolbar-small-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-ml, +.x-btn-default-toolbar-small-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled .x-frame-mc { + background-color: #f5f5f5; + background-image: url(images/btn/btn-default-toolbar-small-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-over { + background-image: url(images/btn/btn-default-toolbar-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-focus { + background-image: url(images/btn/btn-default-toolbar-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-menu-active, +.x-nlg .x-btn-default-toolbar-small-pressed { + background-image: url(images/btn/btn-default-toolbar-small-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-small-disabled { + background-image: url(images/btn/btn-default-toolbar-small-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-split-right { + background-image: url(images/button/default-toolbar-small-s-arrow.png); + padding-right: 23px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-rtl.x-btn-split-right { + background-image: url(images/button/default-toolbar-small-s-arrow-rtl.png); + padding-right: 0; + padding-left: 23px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small .x-btn-split-bottom { + background-image: url(images/button/default-toolbar-small-s-arrow-b.png); + padding-bottom: 20px; +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-small-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-disabled-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium { + border-color: #e1e1e1; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #f5f5f5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(50%, #f5f5f5), color-stop(51%, #e8e8e8), color-stop(100%, #f5f5f5)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -moz-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -o-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mc { + background-image: url(images/btn/btn-default-toolbar-medium-fbg.gif); + background-position: 0 top; + background-color: #f5f5f5; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-toolbar-medium { + background-image: url(images/btn/btn-default-toolbar-medium-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-medium { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-medium-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tr, +.x-btn-default-toolbar-medium-br, +.x-btn-default-toolbar-medium-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl, +.x-btn-default-toolbar-medium-bl, +.x-btn-default-toolbar-medium-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-tl, +.x-btn-default-toolbar-medium-bl, +.x-btn-default-toolbar-medium-tr, +.x-btn-default-toolbar-medium-br, +.x-btn-default-toolbar-medium-tc, +.x-btn-default-toolbar-medium-bc, +.x-btn-default-toolbar-medium-ml, +.x-btn-default-toolbar-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-toolbar-medium-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-ml, +.x-btn-default-toolbar-medium-mr { + zoom: 1; + background-image: url(images/btn/btn-default-toolbar-medium-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-medium-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-medium-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-medium-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-toolbar-medium-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-bg.gif), corners:url(images/btn/btn-default-toolbar-medium-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-inner { + font-size: 14px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + color: #666666; + padding: 0 8px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow { + background-image: url(images/button/default-toolbar-medium-arrow.png); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow-right { + padding-right: 30px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 30px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-arrow-bottom { + padding-bottom: 26px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-glyph { + font-size: 24px; + line-height: 24px; + color: #666666; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-medium .x-btn-glyph { + color: #adadad; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled { + background-image: none; + background-color: #f5f5f5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(50%, #f5f5f5), color-stop(51%, #e8e8e8), color-stop(100%, #f5f5f5)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -moz-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -o-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-button, +.x-btn-default-toolbar-medium-noicon .x-btn-button { + height: 24px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-inner { + line-height: 24px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 8px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-inner { + width: 24px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon .x-btn-icon-el { + width: 24px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-button { + height: 24px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-inner { + line-height: 24px; + padding-left: 29px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-rtl.x-btn-inner { + padding-left: 8px; + padding-right: 29px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 29px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el { + width: 24px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el { + height: 24px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-button { + height: 24px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-inner { + line-height: 24px; + padding-right: 29px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-rtl.x-btn-inner { + padding-right: 8px; + padding-left: 29px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el { + width: 24px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el { + height: 24px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-top .x-btn-inner { + padding-top: 29px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el { + height: 24px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner { + padding-bottom: 29px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el { + height: 24px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over { + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus { + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active, +.x-btn-default-toolbar-medium-pressed { + background-image: none; + background-color: #e1e1e1; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1e1e1), color-stop(50%, #d5d5d5), color-stop(51%, #e1e1e1), color-stop(100%, #e4e4e4)); + background-image: -webkit-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -moz-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -o-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-tl, +.x-btn-default-toolbar-medium-over .x-frame-bl, +.x-btn-default-toolbar-medium-over .x-frame-tr, +.x-btn-default-toolbar-medium-over .x-frame-br, +.x-btn-default-toolbar-medium-over .x-frame-tc, +.x-btn-default-toolbar-medium-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-ml, +.x-btn-default-toolbar-medium-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-over .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-default-toolbar-medium-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-tl, +.x-btn-default-toolbar-medium-focus .x-frame-bl, +.x-btn-default-toolbar-medium-focus .x-frame-tr, +.x-btn-default-toolbar-medium-focus .x-frame-br, +.x-btn-default-toolbar-medium-focus .x-frame-tc, +.x-btn-default-toolbar-medium-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-ml, +.x-btn-default-toolbar-medium-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-focus .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-default-toolbar-medium-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-tl, +.x-btn-default-toolbar-medium-menu-active .x-frame-bl, +.x-btn-default-toolbar-medium-menu-active .x-frame-tr, +.x-btn-default-toolbar-medium-menu-active .x-frame-br, +.x-btn-default-toolbar-medium-menu-active .x-frame-tc, +.x-btn-default-toolbar-medium-menu-active .x-frame-bc, +.x-btn-default-toolbar-medium-pressed .x-frame-tl, +.x-btn-default-toolbar-medium-pressed .x-frame-bl, +.x-btn-default-toolbar-medium-pressed .x-frame-tr, +.x-btn-default-toolbar-medium-pressed .x-frame-br, +.x-btn-default-toolbar-medium-pressed .x-frame-tc, +.x-btn-default-toolbar-medium-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-ml, +.x-btn-default-toolbar-medium-menu-active .x-frame-mr, +.x-btn-default-toolbar-medium-pressed .x-frame-ml, +.x-btn-default-toolbar-medium-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-menu-active .x-frame-mc, +.x-btn-default-toolbar-medium-pressed .x-frame-mc { + background-color: #e1e1e1; + background-image: url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-tl, +.x-btn-default-toolbar-medium-disabled .x-frame-bl, +.x-btn-default-toolbar-medium-disabled .x-frame-tr, +.x-btn-default-toolbar-medium-disabled .x-frame-br, +.x-btn-default-toolbar-medium-disabled .x-frame-tc, +.x-btn-default-toolbar-medium-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-ml, +.x-btn-default-toolbar-medium-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled .x-frame-mc { + background-color: #f5f5f5; + background-image: url(images/btn/btn-default-toolbar-medium-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-over { + background-image: url(images/btn/btn-default-toolbar-medium-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-focus { + background-image: url(images/btn/btn-default-toolbar-medium-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-menu-active, +.x-nlg .x-btn-default-toolbar-medium-pressed { + background-image: url(images/btn/btn-default-toolbar-medium-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-medium-disabled { + background-image: url(images/btn/btn-default-toolbar-medium-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-medium { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-split-right { + background-image: url(images/button/default-toolbar-medium-s-arrow.png); + padding-right: 32px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-rtl.x-btn-split-right { + background-image: url(images/button/default-toolbar-medium-s-arrow-rtl.png); + padding-right: 0; + padding-left: 32px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium .x-btn-split-bottom { + background-image: url(images/button/default-toolbar-medium-s-arrow-b.png); + padding-bottom: 28px; +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-medium-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-medium-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large { + border-color: #e1e1e1; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large { + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + -ms-border-radius: 3px; + -o-border-radius: 3px; + border-radius: 3px; + padding: 3px 3px 3px 3px; + border-width: 1px; + border-style: solid; + background-image: none; + background-color: #f5f5f5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(50%, #f5f5f5), color-stop(51%, #e8e8e8), color-stop(100%, #f5f5f5)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -moz-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -o-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mc { + background-image: url(images/btn/btn-default-toolbar-large-fbg.gif); + background-position: 0 top; + background-color: #f5f5f5; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-default-toolbar-large { + background-image: url(images/btn/btn-default-toolbar-large-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-default-toolbar-large { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-default-toolbar-large-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tr, +.x-btn-default-toolbar-large-br, +.x-btn-default-toolbar-large-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl, +.x-btn-default-toolbar-large-bl, +.x-btn-default-toolbar-large-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-tl, +.x-btn-default-toolbar-large-bl, +.x-btn-default-toolbar-large-tr, +.x-btn-default-toolbar-large-br, +.x-btn-default-toolbar-large-tc, +.x-btn-default-toolbar-large-bc, +.x-btn-default-toolbar-large-ml, +.x-btn-default-toolbar-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-toolbar-large-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-ml, +.x-btn-default-toolbar-large-mr { + zoom: 1; + background-image: url(images/btn/btn-default-toolbar-large-sides.gif); +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-default-toolbar-large-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-default-toolbar-large-tl, +.x-strict .x-ie7 .x-btn-default-toolbar-large-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-toolbar-large-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-bg.gif), corners:url(images/btn/btn-default-toolbar-large-corners.gif), sides:url(images/btn/btn-default-toolbar-large-sides.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-inner { + font-size: 16px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + color: #666666; + padding: 0 10px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow { + background-image: url(images/button/default-toolbar-large-arrow.png); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow-right { + padding-right: 36px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 36px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-arrow-bottom { + padding-bottom: 32px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-glyph { + font-size: 32px; + line-height: 32px; + color: #666666; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-default-toolbar-large .x-btn-glyph { + color: #adadad; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled { + background-image: none; + background-color: #f5f5f5; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f6f6f6), color-stop(50%, #f5f5f5), color-stop(51%, #e8e8e8), color-stop(100%, #f5f5f5)); + background-image: -webkit-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -moz-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: -o-linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); + background-image: linear-gradient(top, #f6f6f6, #f5f5f5 50%, #e8e8e8 51%, #f5f5f5); +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-button, +.x-btn-default-toolbar-large-noicon .x-btn-button { + height: 32px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-inner { + line-height: 32px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 10px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-inner { + width: 32px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon .x-btn-icon-el { + width: 32px; + height: 32px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-button { + height: 32px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-inner { + line-height: 32px; + padding-left: 37px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-rtl.x-btn-inner { + padding-left: 10px; + padding-right: 37px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 37px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el { + width: 32px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el { + height: 32px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-button { + height: 32px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-inner { + line-height: 32px; + padding-right: 37px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-rtl.x-btn-inner { + padding-right: 10px; + padding-left: 37px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el { + width: 32px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el { + height: 32px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-top .x-btn-inner { + padding-top: 37px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el { + height: 32px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner { + padding-bottom: 37px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el { + height: 32px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over { + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus { + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active, +.x-btn-default-toolbar-large-pressed { + background-image: none; + background-color: #e1e1e1; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1e1e1), color-stop(50%, #d5d5d5), color-stop(51%, #e1e1e1), color-stop(100%, #e4e4e4)); + background-image: -webkit-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -moz-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -o-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-tl, +.x-btn-default-toolbar-large-over .x-frame-bl, +.x-btn-default-toolbar-large-over .x-frame-tr, +.x-btn-default-toolbar-large-over .x-frame-br, +.x-btn-default-toolbar-large-over .x-frame-tc, +.x-btn-default-toolbar-large-over .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-ml, +.x-btn-default-toolbar-large-over .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-over .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-default-toolbar-large-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-tl, +.x-btn-default-toolbar-large-focus .x-frame-bl, +.x-btn-default-toolbar-large-focus .x-frame-tr, +.x-btn-default-toolbar-large-focus .x-frame-br, +.x-btn-default-toolbar-large-focus .x-frame-tc, +.x-btn-default-toolbar-large-focus .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-ml, +.x-btn-default-toolbar-large-focus .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-focus .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-default-toolbar-large-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-tl, +.x-btn-default-toolbar-large-menu-active .x-frame-bl, +.x-btn-default-toolbar-large-menu-active .x-frame-tr, +.x-btn-default-toolbar-large-menu-active .x-frame-br, +.x-btn-default-toolbar-large-menu-active .x-frame-tc, +.x-btn-default-toolbar-large-menu-active .x-frame-bc, +.x-btn-default-toolbar-large-pressed .x-frame-tl, +.x-btn-default-toolbar-large-pressed .x-frame-bl, +.x-btn-default-toolbar-large-pressed .x-frame-tr, +.x-btn-default-toolbar-large-pressed .x-frame-br, +.x-btn-default-toolbar-large-pressed .x-frame-tc, +.x-btn-default-toolbar-large-pressed .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-ml, +.x-btn-default-toolbar-large-menu-active .x-frame-mr, +.x-btn-default-toolbar-large-pressed .x-frame-ml, +.x-btn-default-toolbar-large-pressed .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-menu-active .x-frame-mc, +.x-btn-default-toolbar-large-pressed .x-frame-mc { + background-color: #e1e1e1; + background-image: url(images/btn/btn-default-toolbar-large-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-tl, +.x-btn-default-toolbar-large-disabled .x-frame-bl, +.x-btn-default-toolbar-large-disabled .x-frame-tr, +.x-btn-default-toolbar-large-disabled .x-frame-br, +.x-btn-default-toolbar-large-disabled .x-frame-tc, +.x-btn-default-toolbar-large-disabled .x-frame-bc { + background-image: url(images/btn/btn-default-toolbar-large-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-ml, +.x-btn-default-toolbar-large-disabled .x-frame-mr { + background-image: url(images/btn/btn-default-toolbar-large-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled .x-frame-mc { + background-color: #f5f5f5; + background-image: url(images/btn/btn-default-toolbar-large-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-over { + background-image: url(images/btn/btn-default-toolbar-large-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-focus { + background-image: url(images/btn/btn-default-toolbar-large-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-menu-active, +.x-nlg .x-btn-default-toolbar-large-pressed { + background-image: url(images/btn/btn-default-toolbar-large-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-default-toolbar-large-disabled { + background-image: url(images/btn/btn-default-toolbar-large-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-default-toolbar-large { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-split-right { + background-image: url(images/button/default-toolbar-large-s-arrow.png); + padding-right: 38px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-rtl.x-btn-split-right { + background-image: url(images/button/default-toolbar-large-s-arrow-rtl.png); + padding-right: 0; + padding-left: 38px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large .x-btn-split-bottom { + background-image: url(images/button/default-toolbar-large-s-arrow-b.png); + padding-bottom: 34px; +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-default-toolbar-large-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-default-toolbar-large-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-disabled-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 1161, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-left .x-btn-icon-el { + background-position: left center; +} +/* line 1166, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-left .x-rtl.x-btn-icon-el { + background-position: right center; +} + +/* line 1173, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-right .x-btn-icon-el { + background-position: right center; +} +/* line 1178, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-right .x-rtl.x-btn-icon-el { + background-position: left center; +} + +/* line 1184, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-top .x-btn-icon-el { + background-position: center top; +} + +/* line 1188, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-icon-text-bottom .x-btn-icon-el { + background-position: center bottom; +} + +/* line 1192, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow-right { + background-position: right center; +} + +/* line 1197, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-rtl.x-btn-arrow-right { + background-position: left center; +} + +/* line 1202, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow-bottom { + background-position: center bottom; +} + +/* line 1206, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-arrow { + background-repeat: no-repeat; +} + +/* line 1211, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split { + display: block; + background-repeat: no-repeat; +} + +/* line 1216, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split-right { + background-position: right center; +} + +/* line 1221, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-rtl.x-btn-split-right { + background-position: 0 center; +} + +/* line 1226, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-split-bottom { + background-position: center bottom; +} + +/* line 1230, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-cycle-fixed-width .x-btn-inner { + text-align: inherit; +} + +/** + * Creates a visual theme for a Toolbar. + * @param {String} $ui + * The name of the UI + * + * @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 {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 {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-disabled=$toolbar-scroller-opacity-disabled] + * The opacity of disabled Toolbar scrollers + * + * @param {string} [$tool-background-image=$toolbar-tool-background-image] + * The sprite to use for {@link Ext.panel.Tool Tools} on a Toolbar + * + * @member Ext.toolbar.Toolbar + */ +/* line 94, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar { + font-size: 13px; + border-style: solid; + padding: 6px 0 6px 8px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-item { + margin: 0 8px 0 0; +} + +/* line 107, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-rtl.x-toolbar-item { + margin: 0 0 0 8px; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-text { + margin: 0 6px 0 4px; + color: #333f49; + line-height: 16px; + font-family: helvetica, arial, verdana, sans-serif; + font-size: 12px; + font-weight: normal; +} + +/* line 121, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.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 132, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-rtl.x-toolbar { + padding: 6px 8px 6px 0; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-footer { + background: #dfeaf2; + border: 0; + margin: 0; + padding: 6px 0 6px 6px; +} +/* line 144, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-footer .x-toolbar-item { + margin: 0 6px 0 0; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-spacer { + width: 2px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-more-icon { + background-image: url(images/toolbar/more.png) !important; + background-position: center center !important; + background-repeat: no-repeat; +} + +/* line 45, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default { + border-color: silver; + border-width: 1px; + background-image: none; + background-color: white; +} +/* line 51, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller { + cursor: pointer; +} +/* line 55, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller-disabled { + cursor: default; +} +/* line 65, ../../../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 166, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-left { + background-image: url(images/toolbar/scroll-left.png); + background-position: 0 0; + width: 16px; + height: 16px; + border-style: solid; + border-color: #8db2e3; + border-width: 0; + margin-top: 4px; +} + +/* line 177, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-left-hover { + background-position: 0 0; +} + +/* line 181, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-right { + background-image: url(images/toolbar/scroll-right.png); + width: 16px; + height: 16px; + border-style: solid; + border-color: #8db2e3; + border-width: 0; + margin-top: 4px; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroll-right-hover { + background-position: -16px 0; +} + +/* line 195, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar .x-box-menu-after { + margin: 0 8px 0 8px; +} + +/* line 199, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical { + padding: 6px 8px 0 8px; +} +/* line 202, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-item { + margin: 0 0 6px 0; +} +/* line 206, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-toolbar-text { + margin: 4px 0 6px 0; +} +/* line 210, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-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 219, ../../../ext-theme-neutral/sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical .x-box-menu-after, +.x-toolbar-vertical .x-rtl.x-box-menu-after { + margin: 6px 0 6px 0; + display: block; + float: none; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x-header-draggable .x-header-body, +.x-header-ghost { + cursor: move; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/panel/Header.scss */ +.x-header-text { + white-space: nowrap; +} + +/** + * Creates a visual theme for a Panel + * + * @param {string} $ui-label + * 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 {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-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`. + * + * @member Ext.panel.Panel + */ +/* line 736, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default { + border-color: #157fcc; + padding: 0; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default { + font-size: 13px; + border: 1px solid #157fcc; +} +/* line 219, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default .x-tool-img { + background-color: #157fcc; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal { + padding: 9px 9px 10px 9px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal-noborder { + padding: 10px 10px 10px 10px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical { + padding: 9px 9px 9px 10px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical-noborder { + padding: 10px 10px 10px 10px; +} + +/* line 249, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-vertical { + padding: 9px 10px 9px 9px; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-vertical-noborder { + padding: 10px 10px 10px 10px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-default { + color: white; + font-size: 13px; + font-weight: bold; + font-family: arial, helvetica, verdana, sans-serif; + line-height: 15px; + padding: 1px 0 0; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-default { + background: white; + border-color: #157fcc; + color: black; + font-size: 13px; + font-size: normal; + border-width: 1px; + border-style: solid; +} + +/* line 432, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default { + background-image: none; + background-color: #157fcc; +} + +/* line 436, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical { + background-image: none; + background-color: #157fcc; +} + +/* line 441, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-vertical { + background-image: none; + background-color: #157fcc; +} + +/* line 494, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-top { + border-bottom-width: 1px !important; +} +/* line 498, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-right { + border-left-width: 1px !important; +} +/* line 502, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-bottom { + border-top-width: 1px !important; +} +/* line 506, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-collapsed-border-left { + border-right-width: 1px !important; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-top:after { + display: none; + content: "x-slicer:stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-bottom:after { + display: none; + content: "x-slicer:stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-left:after { + display: none; + content: "x-slicer:stretch:left"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-right:after { + display: none; + content: "x-slicer:stretch:left"; +} + +/**/ +/* */ +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-vertical .x-panel-header-text-container { + background-color: #157fcc; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#157fcc); +} + +/* line 527, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-rtl.x-panel-header-text-container { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-vertical .x-rtl.x-panel-header-text-container { + background-color: #157fcc; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#157fcc); +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default .x-panel-header-glyph { + color: white; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-default .x-panel-header-glyph { + color: #8abfe5; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-panel-header-icon-before-title { + margin: 0 6px 0 0; +} +/* line 585, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 0 6px; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 6px; +} +/* line 595, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-rtl.x-panel-header-icon-after-title { + margin: 0 6px 0 0; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-icon-before-title { + margin: 0 0 6px 0; +} +/* line 607, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 6px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-panel-header-icon-after-title { + margin: 6px 0 0 0; +} +/* line 617, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-rtl.x-panel-header-icon-after-title { + margin: 6px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 630, ../../../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 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-horizontal .x-tool-before-title { + margin: 0 6px 0 0; +} +/* line 640, ../../../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 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-tool-after-title { + margin: 6px 0 0 0; +} +/* line 652, ../../../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 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-vertical .x-tool-before-title { + margin: 0 0 6px 0; +} +/* line 662, ../../../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 670, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-collapsed-border-right { + border-right-width: 1px !important; +} +/* line 673, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-collapsed-border-left { + border-left-width: 1px !important; +} + +/* line 687, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-resizable .x-panel-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 2, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-l { + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-b { + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-bl { + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-r { + border-right-color: #157fcc !important; + border-right-width: 1px !important; +} + +/* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-rl { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-rb { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-rbl { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-t { + border-top-color: #157fcc !important; + border-top-width: 1px !important; +} + +/* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-tl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-tb { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-tbl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-tr { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; +} + +/* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-trl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-trb { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-outer-border-trbl { + border-color: #157fcc !important; + border-width: 1px !important; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed { + border-color: #157fcc; + padding: 0; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed { + font-size: 13px; + border: 5px solid #157fcc; +} +/* line 219, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed .x-tool-img { + background-color: #157fcc; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal { + padding: 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal-noborder { + padding: 10px 10px 5px 10px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical { + padding: 5px 5px 5px 5px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical-noborder { + padding: 10px 10px 10px 5px; +} + +/* line 249, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-framed-vertical { + padding: 5px 5px 5px 5px; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-framed-vertical-noborder { + padding: 10px 5px 10px 10px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-default-framed { + color: white; + font-size: 13px; + font-weight: bold; + font-family: arial, helvetica, verdana, sans-serif; + line-height: 15px; + padding: 1px 0 0; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-default-framed { + background: white; + border-color: #157fcc; + color: black; + font-size: 13px; + font-size: normal; + border-width: 1px; + border-style: solid; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed { + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; + padding: 0px 0px 0px 0px; + border-width: 5px; + border-style: solid; + background-color: white; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mc { + background-color: white; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-default-framed-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-0-0-0-0; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tr, +.x-panel-default-framed-br, +.x-panel-default-framed-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl, +.x-panel-default-framed-bl, +.x-panel-default-framed-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-tl, +.x-panel-default-framed-bl, +.x-panel-default-framed-tr, +.x-panel-default-framed-br, +.x-panel-default-framed-tc, +.x-panel-default-framed-bc, +.x-panel-default-framed-ml, +.x-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-ml, +.x-panel-default-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-default-framed-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-default-framed-tl, +.x-strict .x-ie7 .x-panel-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 5px 5px 5px; + border-width: 5px 5px 0 5px; + border-style: solid; + background-color: #157fcc; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mc { + background-color: #157fcc; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-top-frameInfo { + font-family: dh-4-4-0-0-5-5-0-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tr, +.x-panel-header-default-framed-top-br, +.x-panel-header-default-framed-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl, +.x-panel-header-default-framed-top-bl, +.x-panel-header-default-framed-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-tl, +.x-panel-header-default-framed-top-bl, +.x-panel-header-default-framed-top-tr, +.x-panel-header-default-framed-top-br, +.x-panel-header-default-framed-top-tc, +.x-panel-header-default-framed-top-bc, +.x-panel-header-default-framed-top-ml, +.x-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-ml, +.x-panel-header-default-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-top-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-top-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-top:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 5px 5px 5px; + border-width: 5px 5px 5px 0; + border-style: solid; + background-color: #157fcc; +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right { + background-image: none; + background-color: #157fcc; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mc { + background-color: #157fcc; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-right-frameInfo { + font-family: dh-0-4-4-0-5-5-5-0-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-ml { + background-position: 0 right; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mr { + background-position: right right; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tr, +.x-panel-header-default-framed-right-br, +.x-panel-header-default-framed-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl, +.x-panel-header-default-framed-right-bl, +.x-panel-header-default-framed-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-tl, +.x-panel-header-default-framed-right-bl, +.x-panel-header-default-framed-right-tr, +.x-panel-header-default-framed-right-br, +.x-panel-header-default-framed-right-tc, +.x-panel-header-default-framed-right-bc, +.x-panel-header-default-framed-right-ml, +.x-panel-header-default-framed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-right-tl, .x-rtl.x-panel-header-default-framed-right-ml, .x-rtl.x-panel-header-default-framed-right-bl, .x-rtl.x-panel-header-default-framed-right-tr, .x-rtl.x-panel-header-default-framed-right-mr, .x-rtl.x-panel-header-default-framed-right-br { + background-image: url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-ml, +.x-panel-header-default-framed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-right-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-right-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-right:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 0 5px 5px 5px; + border-style: solid; + background-color: #157fcc; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mc { + background-color: #157fcc; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-bottom-frameInfo { + font-family: dh-0-0-4-4-0-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tr, +.x-panel-header-default-framed-bottom-br, +.x-panel-header-default-framed-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl, +.x-panel-header-default-framed-bottom-bl, +.x-panel-header-default-framed-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-tl, +.x-panel-header-default-framed-bottom-bl, +.x-panel-header-default-framed-bottom-tr, +.x-panel-header-default-framed-bottom-br, +.x-panel-header-default-framed-bottom-tc, +.x-panel-header-default-framed-bottom-bc, +.x-panel-header-default-framed-bottom-ml, +.x-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-ml, +.x-panel-header-default-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-bottom-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-bottom:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px 0 5px 5px; + border-style: solid; + background-color: #157fcc; +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left { + background-image: none; + background-color: #157fcc; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mc { + background-color: #157fcc; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-left-frameInfo { + font-family: dh-4-0-0-4-5-0-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-ml { + background-position: 0 left; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mr { + background-position: right left; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tr, +.x-panel-header-default-framed-left-br, +.x-panel-header-default-framed-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl, +.x-panel-header-default-framed-left-bl, +.x-panel-header-default-framed-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-tl, +.x-panel-header-default-framed-left-bl, +.x-panel-header-default-framed-left-tr, +.x-panel-header-default-framed-left-br, +.x-panel-header-default-framed-left-tc, +.x-panel-header-default-framed-left-bc, +.x-panel-header-default-framed-left-ml, +.x-panel-header-default-framed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-left-tl, .x-rtl.x-panel-header-default-framed-left-ml, .x-rtl.x-panel-header-default-framed-left-bl, .x-rtl.x-panel-header-default-framed-left-tr, .x-rtl.x-panel-header-default-framed-left-mr, .x-rtl.x-panel-header-default-framed-left-br { + background-image: url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-ml, +.x-panel-header-default-framed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-left-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-left-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-left:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #157fcc; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mc { + background-color: #157fcc; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-top-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tr, +.x-panel-header-default-framed-collapsed-top-br, +.x-panel-header-default-framed-collapsed-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl, +.x-panel-header-default-framed-collapsed-top-bl, +.x-panel-header-default-framed-collapsed-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-tl, +.x-panel-header-default-framed-collapsed-top-bl, +.x-panel-header-default-framed-collapsed-top-tr, +.x-panel-header-default-framed-collapsed-top-br, +.x-panel-header-default-framed-collapsed-top-tc, +.x-panel-header-default-framed-collapsed-top-bc, +.x-panel-header-default-framed-collapsed-top-ml, +.x-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-ml, +.x-panel-header-default-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-top-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-top:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #157fcc; +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right { + background-image: none; + background-color: #157fcc; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mc { + background-color: #157fcc; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-right-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-ml { + background-position: 0 right; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mr { + background-position: right right; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tr, +.x-panel-header-default-framed-collapsed-right-br, +.x-panel-header-default-framed-collapsed-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl, +.x-panel-header-default-framed-collapsed-right-bl, +.x-panel-header-default-framed-collapsed-right-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-tl, +.x-panel-header-default-framed-collapsed-right-bl, +.x-panel-header-default-framed-collapsed-right-tr, +.x-panel-header-default-framed-collapsed-right-br, +.x-panel-header-default-framed-collapsed-right-tc, +.x-panel-header-default-framed-collapsed-right-bc, +.x-panel-header-default-framed-collapsed-right-ml, +.x-panel-header-default-framed-collapsed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-right-tl, .x-rtl.x-panel-header-default-framed-collapsed-right-ml, .x-rtl.x-panel-header-default-framed-collapsed-right-bl, .x-rtl.x-panel-header-default-framed-collapsed-right-tr, .x-rtl.x-panel-header-default-framed-collapsed-right-mr, .x-rtl.x-panel-header-default-framed-collapsed-right-br { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-ml, +.x-panel-header-default-framed-collapsed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-right-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-right:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #157fcc; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mc { + background-color: #157fcc; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-bottom-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tr, +.x-panel-header-default-framed-collapsed-bottom-br, +.x-panel-header-default-framed-collapsed-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl, +.x-panel-header-default-framed-collapsed-bottom-bl, +.x-panel-header-default-framed-collapsed-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-tl, +.x-panel-header-default-framed-collapsed-bottom-bl, +.x-panel-header-default-framed-collapsed-bottom-tr, +.x-panel-header-default-framed-collapsed-bottom-br, +.x-panel-header-default-framed-collapsed-bottom-tc, +.x-panel-header-default-framed-collapsed-bottom-bc, +.x-panel-header-default-framed-collapsed-bottom-ml, +.x-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-ml, +.x-panel-header-default-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-bottom-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-bottom:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #157fcc; +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left { + background-image: none; + background-color: #157fcc; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mc { + background-color: #157fcc; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-default-framed-collapsed-left-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-ml { + background-position: 0 left; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mr { + background-position: right left; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tr, +.x-panel-header-default-framed-collapsed-left-br, +.x-panel-header-default-framed-collapsed-left-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl, +.x-panel-header-default-framed-collapsed-left-bl, +.x-panel-header-default-framed-collapsed-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-tl, +.x-panel-header-default-framed-collapsed-left-bl, +.x-panel-header-default-framed-collapsed-left-tr, +.x-panel-header-default-framed-collapsed-left-br, +.x-panel-header-default-framed-collapsed-left-tc, +.x-panel-header-default-framed-collapsed-left-bc, +.x-panel-header-default-framed-collapsed-left-ml, +.x-panel-header-default-framed-collapsed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-left-tl, .x-rtl.x-panel-header-default-framed-collapsed-left-ml, .x-rtl.x-panel-header-default-framed-collapsed-left-bl, .x-rtl.x-panel-header-default-framed-collapsed-left-tr, .x-rtl.x-panel-header-default-framed-collapsed-left-mr, .x-rtl.x-panel-header-default-framed-collapsed-left-br { + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-ml, +.x-panel-header-default-framed-collapsed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-default-framed-collapsed-left-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl, +.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-default-framed-collapsed-left:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 396, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-top { + border-bottom-width: 5px !important; +} +/* line 400, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-right { + border-left-width: 5px !important; +} +/* line 404, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-bottom { + border-top-width: 5px !important; +} +/* line 408, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-default-framed-left { + border-right-width: 5px !important; +} + +/* line 414, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-top { + border-bottom-width: 0 !important; +} +/* line 418, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-right { + border-left-width: 0 !important; +} +/* line 422, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-bottom { + border-top-width: 0 !important; +} +/* line 426, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-default-framed-collapsed-left { + border-right-width: 0 !important; +} + +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-framed-vertical .x-panel-header-text-container { + background-color: #157fcc; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#157fcc); +} + +/* line 527, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-text-container { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-default-framed-vertical .x-rtl.x-panel-header-text-container { + background-color: #157fcc; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#157fcc); +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed .x-panel-header-glyph { + color: white; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-default-framed .x-panel-header-glyph { + color: #8abfe5; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-panel-header-icon-before-title { + margin: 0 6px 0 0; +} +/* line 585, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 0 6px; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 6px; +} +/* line 595, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-rtl.x-panel-header-icon-after-title { + margin: 0 6px 0 0; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-icon-before-title { + margin: 0 0 6px 0; +} +/* line 607, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 6px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-panel-header-icon-after-title { + margin: 6px 0 0 0; +} +/* line 617, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-icon-after-title { + margin: 6px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 630, ../../../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 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-horizontal .x-tool-before-title { + margin: 0 6px 0 0; +} +/* line 640, ../../../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 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-tool-after-title { + margin: 6px 0 0 0; +} +/* line 652, ../../../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 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-default-framed-vertical .x-tool-before-title { + margin: 0 0 6px 0; +} +/* line 662, ../../../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 670, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-border-right { + border-right-width: 5px !important; +} +/* line 673, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-default-framed-collapsed-border-left { + border-left-width: 5px !important; +} + +/* line 684, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed-resizable { + overflow: visible; +} +/* line 687, ../../../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 696, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed-resizable .x-panel-handle-north-br { + top: -5px; +} +/* line 699, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed-resizable .x-panel-handle-south-br { + bottom: -5px; +} +/* line 702, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed-resizable .x-panel-handle-east-br { + right: -5px; +} +/* line 705, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed-resizable .x-panel-handle-west-br { + left: -5px; +} +/* line 708, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed-resizable .x-panel-handle-northwest-br { + left: -5px; + top: -5px; +} +/* line 712, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed-resizable .x-panel-handle-northeast-br { + right: -5px; + top: -5px; +} +/* line 716, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed-resizable .x-panel-handle-southeast-br { + right: -5px; + bottom: -5px; +} +/* line 720, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-default-framed-resizable .x-panel-handle-southwest-br { + left: -5px; + bottom: -5px; +} + +/* line 2, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-l { + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-b { + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-bl { + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-r { + border-right-color: #157fcc !important; + border-right-width: 1px !important; +} + +/* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-rl { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-rb { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-rbl { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-t { + border-top-color: #157fcc !important; + border-top-width: 1px !important; +} + +/* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-tl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-tb { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-tbl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-tr { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; +} + +/* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-trl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-trb { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-default-framed-outer-border-trbl { + border-color: #157fcc !important; + border-width: 1px !important; +} + +/** + * Creates a visual theme for a Ext.tip.Tip + * + * @param {string} $ui-label + * 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-body-padding=$tip-header-body-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 167, ../../../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; + zoom: 1; +} +/* line 182, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-content-box .x-tip-anchor { + height: 0; + width: 0; +} + +/* line 189, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-top { + border-top-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-bottom { + border-bottom-color: transparent; + border-left-color: transparent; + border-right-color: transparent; + _border-bottom-color: pink; + _border-left-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-left { + border-top-color: transparent; + border-bottom-color: transparent; + border-left-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-left-color: pink; + _filter: chroma(color=pink); +} + +/* line 228, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-anchor-right { + border-top-color: transparent; + border-bottom-color: transparent; + border-right-color: transparent; + _border-top-color: pink; + _border-bottom-color: pink; + _border-right-color: pink; + _filter: chroma(color=pink); +} + +/* line 137, ../../../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: #eaf3fa; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mc { + background-color: #eaf3fa; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tip-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tip-default-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tr, +.x-tip-default-br, +.x-tip-default-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl, +.x-tip-default-bl, +.x-tip-default-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-tl, +.x-tip-default-bl, +.x-tip-default-tr, +.x-tip-default-br, +.x-tip-default-tc, +.x-tip-default-bc, +.x-tip-default-ml, +.x-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-ml, +.x-tip-default-mr { + zoom: 1; + background-image: url(images/tip/tip-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tip-default-tl, +.x-strict .x-ie7 .x-tip-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tip-default:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-default { + border-color: #e1e1e1; +} +/* line 109, ../../../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: #eaf3fa; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 129, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-rtl.x-tool-after-title { + margin: 0 6px 0 0; +} +/* line 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-tool-before-title { + margin: 0 6px 0 0; +} +/* line 139, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-default .x-rtl.x-tool-before-title { + margin: 0 0 0 6px; +} + +/* line 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-body-default { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-text-container-default { + color: black; + font-size: 13px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-default { + padding: 3px; + color: black; + font-size: 13px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-default a { + color: black; +} + +/* line 137, ../../../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: #eaf3fa; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mc { + background-color: #eaf3fa; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tip-form-invalid { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tip-form-invalid-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-2-2-2-2; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tr, +.x-tip-form-invalid-br, +.x-tip-form-invalid-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl, +.x-tip-form-invalid-bl, +.x-tip-form-invalid-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-tl, +.x-tip-form-invalid-bl, +.x-tip-form-invalid-tr, +.x-tip-form-invalid-br, +.x-tip-form-invalid-tc, +.x-tip-form-invalid-bc, +.x-tip-form-invalid-ml, +.x-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-ml, +.x-tip-form-invalid-mr { + zoom: 1; + background-image: url(images/tip/tip-form-invalid-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tip-form-invalid-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tip-form-invalid-tl, +.x-strict .x-ie7 .x-tip-form-invalid-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tip-form-invalid:after { + display: none; + content: "x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-form-invalid { + border-color: #e1e1e1; +} +/* line 109, ../../../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: #eaf3fa; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-form-invalid .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 129, ../../../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 134, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-form-invalid .x-tool-before-title { + margin: 0 6px 0 0; +} +/* line 139, ../../../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 145, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-body-form-invalid { + padding: 3px 3px 0 3px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-header-text-container-form-invalid { + color: black; + font-size: 13px; + font-weight: bold; +} + +/* line 155, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid { + padding: 3px 3px 3px 22px; + color: black; + font-size: 13px; + font-weight: normal; +} +/* line 160, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid a { + color: black; +} + +/* line 265, ../../../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 268, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid li { + margin-bottom: 4px; +} +/* line 270, ../../../ext-theme-neutral/sass/src/tip/Tip.scss */ +.x-tip-body-form-invalid li.last { + margin-bottom: 0; +} + +/** + * Creates a visual theme for a ButtonGroup. + * + * @param {string} $ui-label + * 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 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-default { + border-color: #dfeaf2; + -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 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default { + padding: 4px 5px; + line-height: 16px; + background: #dfeaf2; + -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 109, ../../../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: #dfeaf2; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-text-container-default { + font: normal 13px helvetica, arial, verdana, sans-serif; + line-height: 16px; + color: #666666; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default { + padding: 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default .x-table-layout { + border-spacing: 5px; +} + +/* line 137, ../../../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 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mc { + background-color: white; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-group-default-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-group-default-framed-frameInfo { + font-family: dh-3-3-3-3-3-3-3-3-0-1-0-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tr, +.x-btn-group-default-framed-br, +.x-btn-group-default-framed-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl, +.x-btn-group-default-framed-bl, +.x-btn-group-default-framed-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-tl, +.x-btn-group-default-framed-bl, +.x-btn-group-default-framed-tr, +.x-btn-group-default-framed-br, +.x-btn-group-default-framed-tc, +.x-btn-group-default-framed-bc, +.x-btn-group-default-framed-ml, +.x-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-ml, +.x-btn-group-default-framed-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-group-default-framed-tl, +.x-strict .x-ie7 .x-btn-group-default-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-group-default-framed:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mc { + background-color: white; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-group-default-framed-notitle { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-group-default-framed-notitle-frameInfo { + font-family: dh-3-3-3-3-3-3-3-3-0-1-0-1; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tr, +.x-btn-group-default-framed-notitle-br, +.x-btn-group-default-framed-notitle-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl, +.x-btn-group-default-framed-notitle-bl, +.x-btn-group-default-framed-notitle-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-tl, +.x-btn-group-default-framed-notitle-bl, +.x-btn-group-default-framed-notitle-tr, +.x-btn-group-default-framed-notitle-br, +.x-btn-group-default-framed-notitle-tc, +.x-btn-group-default-framed-notitle-bc, +.x-btn-group-default-framed-notitle-ml, +.x-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-ml, +.x-btn-group-default-framed-notitle-mr { + zoom: 1; + background-image: url(images/btn-group/btn-group-default-framed-notitle-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-group-default-framed-notitle-mc { + padding: 0px 1px 0px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-group-default-framed-notitle-tl, +.x-strict .x-ie7 .x-btn-group-default-framed-notitle-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-group-default-framed-notitle:after { + display: none; + content: "x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"; +} + +/**/ +/* */ +/* line 89, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-default-framed { + border-color: #dfeaf2; + -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 98, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-default-framed { + padding: 4px 5px; + line-height: 16px; + background: #dfeaf2; + -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 109, ../../../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: #dfeaf2; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-header-text-container-default-framed { + font: normal 13px helvetica, arial, verdana, sans-serif; + line-height: 16px; + color: #666666; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default-framed { + padding: 0 1px 0 1px; +} +/* line 128, ../../../ext-theme-neutral/sass/src/container/ButtonGroup.scss */ +.x-btn-group-body-default-framed .x-table-layout { + border-spacing: 5px; +} + +/** + * Creates a visual theme for a Window + * + * @param {string} $ui-label + * 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`. + * + * @member Ext.window.Window + */ +/* line 545, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-ghost { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default { + border-color: #3892d3; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default { + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; + padding: 0px 0px 0px 0px; + border-width: 5px; + border-style: solid; + background-color: white; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mc { + background-color: white; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-default { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-default-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-0-0-0-0; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tr, +.x-window-default-br, +.x-window-default-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl, +.x-window-default-bl, +.x-window-default-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-tl, +.x-window-default-bl, +.x-window-default-tr, +.x-window-default-br, +.x-window-default-tc, +.x-window-default-bc, +.x-window-default-ml, +.x-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-ml, +.x-window-default-mr { + zoom: 1; + background-image: url(images/window/window-default-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-default-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-default-tl, +.x-strict .x-ie7 .x-window-default-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-default:after { + display: none; + content: "x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"; +} + +/**/ +/* */ +/* line 195, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-body-default { + border-color: #3892d3; + border-width: 1px; + border-style: solid; + background: white; + color: black; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default { + font-size: 13px; + border-color: #3892d3; + zoom: 1; + background-color: #3892d3; +} +/* line 212, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-tool-img { + background-color: #3892d3; +} + +/* line 223, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-window-header-default-vertical .x-window-header-text-container { + background-color: #3892d3; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#3892d3); +} + +/* line 228, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-rtl.x-window-header-text-container { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-window-header-default-vertical .x-rtl.x-window-header-text-container { + background-color: #3892d3; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#3892d3); +} + +/* line 233, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-text-container-default { + color: white; + font-weight: bold; + line-height: 15px; + font-family: arial, helvetica, verdana, sans-serif; + font-size: 13px; + padding: 1px 0 0; + text-transform: none; +} + +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 5px 5px 5px; + border-width: 5px 5px 5px 5px; + border-style: solid; + background-color: #3892d3; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mc { + background-color: #3892d3; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-top-frameInfo { + font-family: dh-4-4-0-0-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tr, +.x-window-header-default-top-br, +.x-window-header-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl, +.x-window-header-default-top-bl, +.x-window-header-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-tl, +.x-window-header-default-top-bl, +.x-window-header-default-top-tr, +.x-window-header-default-top-br, +.x-window-header-default-top-tc, +.x-window-header-default-top-bc, +.x-window-header-default-top-ml, +.x-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-ml, +.x-window-header-default-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-top-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-top-tl, +.x-strict .x-ie7 .x-window-header-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 4px; + -webkit-border-top-right-radius: 4px; + border-top-right-radius: 4px; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 5px 5px 5px 5px; + border-width: 5px 5px 5px 5px; + border-style: solid; + background-color: #3892d3; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mc { + background-color: #3892d3; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-right-frameInfo { + font-family: dh-0-4-4-0-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tr, +.x-window-header-default-right-br, +.x-window-header-default-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl, +.x-window-header-default-right-bl, +.x-window-header-default-right-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-tl, +.x-window-header-default-right-bl, +.x-window-header-default-right-tr, +.x-window-header-default-right-br, +.x-window-header-default-right-tc, +.x-window-header-default-right-bc, +.x-window-header-default-right-ml, +.x-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-window-header-default-right-tl, .x-rtl.x-window-header-default-right-ml, .x-rtl.x-window-header-default-right-bl, .x-rtl.x-window-header-default-right-tr, .x-rtl.x-window-header-default-right-mr, .x-rtl.x-window-header-default-right-br { + background-image: url(images/window-header/window-header-default-right-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-ml, +.x-window-header-default-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-right-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-right-tl, +.x-strict .x-ie7 .x-window-header-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomright: 4px; + -webkit-border-bottom-right-radius: 4px; + border-bottom-right-radius: 4px; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px 5px 5px 5px; + border-style: solid; + background-color: #3892d3; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mc { + background-color: #3892d3; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-bottom-frameInfo { + font-family: dh-0-0-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tr, +.x-window-header-default-bottom-br, +.x-window-header-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl, +.x-window-header-default-bottom-bl, +.x-window-header-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-tl, +.x-window-header-default-bottom-bl, +.x-window-header-default-bottom-tr, +.x-window-header-default-bottom-br, +.x-window-header-default-bottom-tc, +.x-window-header-default-bottom-bc, +.x-window-header-default-bottom-ml, +.x-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-ml, +.x-window-header-default-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-bottom-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-bottom-tl, +.x-strict .x-ie7 .x-window-header-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left { + -moz-border-radius-topleft: 4px; + -webkit-border-top-left-radius: 4px; + border-top-left-radius: 4px; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 4px; + -webkit-border-bottom-left-radius: 4px; + border-bottom-left-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px 5px 5px 5px; + border-style: solid; + background-color: #3892d3; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mc { + background-color: #3892d3; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-left-frameInfo { + font-family: dh-4-0-0-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tr, +.x-window-header-default-left-br, +.x-window-header-default-left-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl, +.x-window-header-default-left-bl, +.x-window-header-default-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-tl, +.x-window-header-default-left-bl, +.x-window-header-default-left-tr, +.x-window-header-default-left-br, +.x-window-header-default-left-tc, +.x-window-header-default-left-bc, +.x-window-header-default-left-ml, +.x-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-window-header-default-left-tl, .x-rtl.x-window-header-default-left-ml, .x-rtl.x-window-header-default-left-bl, .x-rtl.x-window-header-default-left-tr, .x-rtl.x-window-header-default-left-mr, .x-rtl.x-window-header-default-left-br { + background-image: url(images/window-header/window-header-default-left-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-ml, +.x-window-header-default-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-left-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-left-tl, +.x-strict .x-ie7 .x-window-header-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top { + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #3892d3; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mc { + background-color: #3892d3; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-top-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tr, +.x-window-header-default-collapsed-top-br, +.x-window-header-default-collapsed-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl, +.x-window-header-default-collapsed-top-bl, +.x-window-header-default-collapsed-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-tl, +.x-window-header-default-collapsed-top-bl, +.x-window-header-default-collapsed-top-tr, +.x-window-header-default-collapsed-top-br, +.x-window-header-default-collapsed-top-tc, +.x-window-header-default-collapsed-top-bc, +.x-window-header-default-collapsed-top-ml, +.x-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-ml, +.x-window-header-default-collapsed-top-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-top-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-top:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right { + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #3892d3; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mc { + background-color: #3892d3; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-right-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tr, +.x-window-header-default-collapsed-right-br, +.x-window-header-default-collapsed-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl, +.x-window-header-default-collapsed-right-bl, +.x-window-header-default-collapsed-right-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-tl, +.x-window-header-default-collapsed-right-bl, +.x-window-header-default-collapsed-right-tr, +.x-window-header-default-collapsed-right-br, +.x-window-header-default-collapsed-right-tc, +.x-window-header-default-collapsed-right-bc, +.x-window-header-default-collapsed-right-ml, +.x-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-window-header-default-collapsed-right-tl, .x-rtl.x-window-header-default-collapsed-right-ml, .x-rtl.x-window-header-default-collapsed-right-bl, .x-rtl.x-window-header-default-collapsed-right-tr, .x-rtl.x-window-header-default-collapsed-right-mr, .x-rtl.x-window-header-default-collapsed-right-br { + background-image: url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-ml, +.x-window-header-default-collapsed-right-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-right-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-right:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom { + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #3892d3; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mc { + background-color: #3892d3; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-bottom-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tr, +.x-window-header-default-collapsed-bottom-br, +.x-window-header-default-collapsed-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl, +.x-window-header-default-collapsed-bottom-bl, +.x-window-header-default-collapsed-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-tl, +.x-window-header-default-collapsed-bottom-bl, +.x-window-header-default-collapsed-bottom-tr, +.x-window-header-default-collapsed-bottom-br, +.x-window-header-default-collapsed-bottom-tc, +.x-window-header-default-collapsed-bottom-bc, +.x-window-header-default-collapsed-bottom-ml, +.x-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-ml, +.x-window-header-default-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-bottom-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-bottom:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left { + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + -ms-border-radius: 4px; + -o-border-radius: 4px; + border-radius: 4px; + padding: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #3892d3; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mc { + background-color: #3892d3; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-window-header-default-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-window-header-default-collapsed-left-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tr, +.x-window-header-default-collapsed-left-br, +.x-window-header-default-collapsed-left-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl, +.x-window-header-default-collapsed-left-bl, +.x-window-header-default-collapsed-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-tl, +.x-window-header-default-collapsed-left-bl, +.x-window-header-default-collapsed-left-tr, +.x-window-header-default-collapsed-left-br, +.x-window-header-default-collapsed-left-tc, +.x-window-header-default-collapsed-left-bc, +.x-window-header-default-collapsed-left-ml, +.x-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-window-header-default-collapsed-left-tl, .x-rtl.x-window-header-default-collapsed-left-ml, .x-rtl.x-window-header-default-collapsed-left-bl, .x-rtl.x-window-header-default-collapsed-left-tr, .x-rtl.x-window-header-default-collapsed-left-mr, .x-rtl.x-window-header-default-collapsed-left-br { + background-image: url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-ml, +.x-window-header-default-collapsed-left-mr { + zoom: 1; + background-image: url(images/window-header/window-header-default-collapsed-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-window-header-default-collapsed-left-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl, +.x-strict .x-ie7 .x-window-header-default-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-window-header-default-collapsed-left:after { + display: none; + content: "x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 355, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-window-header-icon { + width: 16px; + height: 16px; + color: white; + font-size: 16px; + line-height: 16px; + background-position: center center; +} +/* line 364, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default .x-window-header-glyph { + color: white; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 380, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-ie8m .x-window-header-default .x-window-header-glyph { + color: #9bc8e9; +} + +/* line 388, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-window-header-icon-before-title { + margin: 0 6px 0 0; +} +/* line 393, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-rtl.x-window-header-icon-before-title { + margin: 0 0 0 6px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-window-header-icon-after-title { + margin: 0 0 0 6px; +} +/* line 403, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-rtl.x-window-header-icon-after-title { + margin: 0 6px 0 0; +} + +/* line 410, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-icon-before-title { + margin: 0 0 6px 0; +} +/* line 415, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-rtl.x-window-header-icon-before-title { + margin: 0 0 6px 0; +} +/* line 420, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-window-header-icon-after-title { + margin: 6px 0 0 0; +} +/* line 425, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-rtl.x-window-header-icon-after-title { + margin: 6px 0 0 0; +} + +/* line 433, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 438, ../../../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 443, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-horizontal .x-tool-before-title { + margin: 0 6px 0 0; +} +/* line 448, ../../../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 455, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-tool-after-title { + margin: 6px 0 0 0; +} +/* line 460, ../../../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 465, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default-vertical .x-tool-before-title { + margin: 0 0 6px 0; +} +/* line 470, ../../../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 479, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-header-default { + border-width: 5px !important; +} + +/* line 489, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-nbr .x-window-default-collapsed .x-window-header { + border-width: 0 !important; +} + +/* line 500, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-resizable { + overflow: visible; +} +/* line 505, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-resizable .x-window-handle-north-br { + top: -5px; +} +/* line 508, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-resizable .x-window-handle-south-br { + bottom: -5px; +} +/* line 511, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-resizable .x-window-handle-east-br { + right: -5px; +} +/* line 514, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-resizable .x-window-handle-west-br { + left: -5px; +} +/* line 517, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-resizable .x-window-handle-northwest-br { + left: -5px; + top: -5px; +} +/* line 521, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-resizable .x-window-handle-northeast-br { + right: -5px; + top: -5px; +} +/* line 525, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-resizable .x-window-handle-southeast-br { + right: -5px; + bottom: -5px; +} +/* line 529, ../../../ext-theme-neutral/sass/src/window/Window.scss */ +.x-window-default-resizable .x-window-handle-southwest-br { + left: -5px; + bottom: -5px; +} + +/* line 2, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-l { + border-left-color: #3892d3 !important; + border-left-width: 1px !important; +} + +/* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-b { + border-bottom-color: #3892d3 !important; + border-bottom-width: 1px !important; +} + +/* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-bl { + border-bottom-color: #3892d3 !important; + border-bottom-width: 1px !important; + border-left-color: #3892d3 !important; + border-left-width: 1px !important; +} + +/* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-r { + border-right-color: #3892d3 !important; + border-right-width: 1px !important; +} + +/* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-rl { + border-right-color: #3892d3 !important; + border-right-width: 1px !important; + border-left-color: #3892d3 !important; + border-left-width: 1px !important; +} + +/* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-rb { + border-right-color: #3892d3 !important; + border-right-width: 1px !important; + border-bottom-color: #3892d3 !important; + border-bottom-width: 1px !important; +} + +/* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-rbl { + border-right-color: #3892d3 !important; + border-right-width: 1px !important; + border-bottom-color: #3892d3 !important; + border-bottom-width: 1px !important; + border-left-color: #3892d3 !important; + border-left-width: 1px !important; +} + +/* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-t { + border-top-color: #3892d3 !important; + border-top-width: 1px !important; +} + +/* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-tl { + border-top-color: #3892d3 !important; + border-top-width: 1px !important; + border-left-color: #3892d3 !important; + border-left-width: 1px !important; +} + +/* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-tb { + border-top-color: #3892d3 !important; + border-top-width: 1px !important; + border-bottom-color: #3892d3 !important; + border-bottom-width: 1px !important; +} + +/* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-tbl { + border-top-color: #3892d3 !important; + border-top-width: 1px !important; + border-bottom-color: #3892d3 !important; + border-bottom-width: 1px !important; + border-left-color: #3892d3 !important; + border-left-width: 1px !important; +} + +/* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-tr { + border-top-color: #3892d3 !important; + border-top-width: 1px !important; + border-right-color: #3892d3 !important; + border-right-width: 1px !important; +} + +/* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-trl { + border-top-color: #3892d3 !important; + border-top-width: 1px !important; + border-right-color: #3892d3 !important; + border-right-width: 1px !important; + border-left-color: #3892d3 !important; + border-left-width: 1px !important; +} + +/* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-trb { + border-top-color: #3892d3 !important; + border-top-width: 1px !important; + border-right-color: #3892d3 !important; + border-right-width: 1px !important; + border-bottom-color: #3892d3 !important; + border-bottom-width: 1px !important; +} + +/* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-window-default-outer-border-trbl { + border-color: #3892d3 !important; + border-width: 1px !important; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-invalid-under { + padding: 2px 2px 2px 20px; + color: #cf4c35; + font: normal 13px helvetica, arial, verdana, sans-serif; + line-height: 16px; + background: no-repeat 0 2px; + background-image: url(images/form/exclamation.png); +} + +/* line 14, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +div.x-lbl-top-err-icon { + margin-bottom: 4px; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-invalid-icon { + width: 16px; + height: 16px; + margin: 0 5px; + background-image: url(images/form/exclamation.png); + background-repeat: no-repeat; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-form-item-label { + color: black; + font: normal 13px/17px helvetica, arial, verdana, sans-serif; + margin-top: 4px; +} + +/* line 45, ../../../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; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-ie6 .x-form-form-item td { + border-top-width: 0; +} +/* line 59, ../../../ext-theme-neutral/sass/src/form/Labelable.scss */ +.x-ie6 td.x-form-item-pad { + height: 5px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-field { + color: black; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-item, +.x-form-field { + font: normal 13px helvetica, arial, verdana, sans-serif; +} + +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-form-type-text textarea.x-form-invalid-field, .x-form-type-text input.x-form-invalid-field, +.x-form-type-password textarea.x-form-invalid-field, +.x-form-type-password input.x-form-invalid-field, +.x-form-type-number textarea.x-form-invalid-field, +.x-form-type-number input.x-form-invalid-field, +.x-form-type-email textarea.x-form-invalid-field, +.x-form-type-email input.x-form-invalid-field, +.x-form-type-search textarea.x-form-invalid-field, +.x-form-type-search input.x-form-invalid-field, +.x-form-type-tel textarea.x-form-invalid-field, +.x-form-type-tel input.x-form-invalid-field { + background-color: white; + border-color: #cf4c35; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Base.scss */ +.x-item-disabled .x-form-item-label, +.x-item-disabled .x-form-field, +.x-item-disabled .x-form-display-field, +.x-item-disabled .x-form-cb-label, +.x-item-disabled .x-form-trigger { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-text { + color: black; + padding: 4px 6px 3px 6px; + background: white repeat-x 0 0; + border-width: 1px; + border-style: solid; + border-color: silver #d9d9d9 #d9d9d9; + height: 24px; + line-height: 15px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-content-box .x-form-text { + height: 15px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-focus { + border-color: #3892d3; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-form-empty-field, +textarea.x-form-empty-field { + color: gray; +} + +/* line 48, ../../../ext-theme-neutral/sass/src/form/field/Text.scss */ +.x-quirks .x-ie .x-form-text, +.x-ie7m .x-form-text { + margin-top: -1px; + margin-bottom: -1px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/TextArea.scss */ +.x-form-textarea { + line-height: normal; + height: auto; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-form-display-field-body { + height: 24px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Display.scss */ +.x-form-display-field { + font: normal 13px/17px helvetica, arial, verdana, sans-serif; + color: black; + margin-top: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box .x-window-body { + background-color: white; + border-width: 0; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-info, +.x-message-box-warning, +.x-message-box-question, +.x-message-box-error { + background-position: top left; + background-repeat: no-repeat; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-rtl.x-message-box-info, .x-rtl.x-message-box-warning, .x-rtl.x-message-box-question, .x-rtl.x-message-box-error { + background-position: top left; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-info { + background-image: url(images/shared/icon-info.png); +} + +/* line 33, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-warning { + background-image: url(images/shared/icon-warning.png); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-question { + background-image: url(images/shared/icon-question.png); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/window/MessageBox.scss */ +.x-message-box-error { + background-image: url(images/shared/icon-error.png); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-wrap { + height: 24px; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb { + margin-top: 5px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-checkbox { + width: 15px; + height: 15px; + background: url(images/form/checkbox.png) no-repeat; +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-checked .x-form-checkbox { + background-position: 0 -15px; +} + +/* Focused */ +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-checkbox-focus { + background-position: -15px 0; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-checked .x-form-checkbox-focus { + background-position: -15px -15px; +} + +/* boxLabel */ +/* line 40, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label { + margin-top: 4px; + font: normal 13px/17px helvetica, arial, verdana, sans-serif; +} + +/* line 53, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label-before { + margin-right: 4px; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-rtl.x-field .x-form-cb-label-before { + margin-right: 0; + margin-left: 4px; +} + +/* line 64, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-form-cb-label-after { + margin-left: 4px; +} + +/* line 69, ../../../ext-theme-neutral/sass/src/form/field/Checkbox.scss */ +.x-rtl.x-field .x-form-cb-label-after { + margin-left: 0; + margin-right: 4px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-checkboxgroup-body { + padding: 0 4px; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-invalid .x-form-checkboxgroup-body { + border: 1px solid #cf4c35; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-check-group-alt { + background: #f5f5f5; + border-top: 1px dotted #f5f5f5; + border-bottom: 1px dotted #f5f5f5; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-form-check-group-label { + color: black; + padding: 2px; + margin: 0 30px 5px 0; + border-width: 0 0 1px 0; + border-style: solid; + border-color: black; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/form/CheckboxGroup.scss */ +.x-rtl.x-form-check-group-label { + margin: 0 0 5px 30px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset { + border: 1px solid #b5b8c8; + padding: 0 10px; + margin: 0 0 10px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie8m .x-fieldset, +.x-quirks .x-ie .x-fieldset { + padding-top: 0; +} +/* line 13, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie8m .x-fieldset .x-fieldset-body, +.x-quirks .x-ie .x-fieldset .x-fieldset-body { + padding-top: 0; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-checkbox { + line-height: 16px; + margin: 1px 3px 0 0; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header { + padding: 0 3px 1px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header .x-tool { + margin-top: 1px; + padding: 0; +} + +/* line 39, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text { + font: 12px/16px bold helvetica, arial, verdana, sans-serif; + color: black; + padding: 1px 0; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-header-text-collapsible { + cursor: pointer; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-with-title .x-fieldset-header-checkbox, +.x-fieldset-with-title .x-tool { + margin: 1px 3px 0 0; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-with-title .x-rtl .x-fieldset-header-checkbox, +.x-fieldset-with-title .x-rtl .x-tool { + margin: 1px 0 0 3px; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-webkit .x-fieldset-header { + -webkit-padding-start: 3px; + -webkit-padding-end: 3px; +} + +/* line 76, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-opera .x-fieldset-with-legend { + margin-top: -1px; +} +/* line 79, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-opera.x-mac .x-fieldset-header-text { + padding: 2px 0 0; +} + +/* line 87, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-strict .x-ie8 .x-fieldset-header { + margin-bottom: -1px; +} +/* line 91, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-strict .x-ie8 .x-fieldset-header .x-tool, +.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text, +.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox { + position: relative; + top: -1px; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-quirks .x-ie .x-fieldset-header, +.x-ie8m .x-fieldset-header { + padding-left: 1px; + padding-right: 1px; +} + +/* line 109, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-fieldset-body { + display: none; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed { + padding-bottom: 0 !important; + border-width: 1px 1px 0 1px !important; + border-left-color: transparent !important; + border-right-color: transparent !important; +} + +/* line 123, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie6 .x-fieldset-collapsed { + border-width: 1px 0 0 0 !important; + padding-bottom: 0 !important; + margin-left: 1px; + margin-right: 1px; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-bwrap { + zoom: 1; +} + +/* line 137, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset .x-tool-toggle { + background-image: url(images/fieldset/collapse-tool.png); + background-position: 0 0; +} +/* line 144, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset .x-tool-over .x-tool-toggle { + background-position: 0 -15px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-tool-toggle { + background-position: -15px 0; +} +/* line 156, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-collapsed .x-tool-over .x-tool-toggle { + background-position: -15px -15px; +} + +/* IE legend positioning bug */ +/* line 164, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-noborder legend { + position: relative; + margin-bottom: 23px; +} + +/* line 170, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-ie .x-fieldset-noborder legend span { + position: absolute; + left: 16px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset { + overflow: hidden; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-bwrap { + overflow: hidden; + zoom: 1; +} + +/* line 186, ../../../ext-theme-neutral/sass/src/form/FieldSet.scss */ +.x-fieldset-body { + overflow: hidden; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-radio { + width: 15px; + height: 15px; + background: url(images/form/radio.png) no-repeat; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-cb-checked .x-form-radio { + background-position: 0 -15px; +} + +/* line 11, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-radio-focus { + background-position: -15px 0; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/form/field/Radio.scss */ +.x-form-cb-checked .x-form-radio-focus { + background-position: -15px -15px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger { + background: url(images/form/trigger.png); + width: 22px; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-rtl.x-form-trigger-wrap .x-form-trigger { + background-image: url(images/form/trigger-rtl.png); +} + +/* line 18, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-trigger-cell { + background-color: white; + width: 22px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-over { + background-position: -22px 0; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap-focus .x-form-trigger { + background-position: -66px 0; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap-focus .x-form-trigger-over { + background-position: -88px 0; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-trigger-click, +.x-form-trigger-wrap-focus .x-form-trigger-click { + background-position: -44px 0; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-clear-trigger { + background-image: url(images/form/clear-trigger.png); +} + +/* line 54, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-rtl.x-form-trigger-wrap .x-form-clear-trigger { + background-image: url(images/form/clear-trigger-rtl.png); +} + +/* line 59, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-form-search-trigger { + background-image: url(images/form/search-trigger.png); +} + +/* line 64, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-rtl.x-form-trigger-wrap .x-form-search-trigger { + background-image: url(images/form/search-trigger-rtl.png); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-quirks .prefixie6 .x-form-trigger-input-cell { + height: 24px; +} +/* line 77, ../../../ext-theme-neutral/sass/src/form/field/Trigger.scss */ +.x-quirks .prefixie6 .x-field-toolbar .x-form-trigger-input-cell { + height: 24px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +div.x-form-spinner-up, +div.x-form-spinner-down { + background-image: url(images/form/spinner.png); + background-color: white; + width: 22px; + height: 11px; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-rtl.x-form-trigger-wrap .x-form-spinner-up, +.x-rtl.x-form-trigger-wrap .x-form-spinner-down { + background-image: url(images/form/spinner-rtl.png); +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-spinner-down { + background-position: 0 -11px; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap-focus .x-form-spinner-down { + background-position: -66px -11px; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap .x-form-spinner-down-over { + background-position: -22px -11px; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap-focus .x-form-spinner-down-over { + background-position: -88px -11px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/form/field/Spinner.scss */ +.x-form-trigger-wrap .x-form-spinner-down-click { + background-position: -44px -11px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-number { + width: 30px; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-first { + background-image: url(images/grid/page-first.png); +} + +/* line 9, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-prev { + background-image: url(images/grid/page-prev.png); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-next { + background-image: url(images/grid/page-next.png); +} + +/* line 17, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-page-last { + background-image: url(images/grid/page-last.png); +} + +/* line 21, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-tbar-loading { + background-image: url(images/grid/refresh.png); +} + +/* line 51, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-rtl.x-tbar-page-first { + background-image: url(images/grid/page-last.png); +} +/* line 55, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-rtl.x-tbar-page-prev { + background-image: url(images/grid/page-next.png); +} +/* line 59, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-rtl.x-tbar-page-next { + background-image: url(images/grid/page-prev.png); +} +/* line 63, ../../../ext-theme-neutral/sass/src/toolbar/Paging.scss */ +.x-rtl.x-tbar-page-last { + background-image: url(images/grid/page-first.png); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist { + border-width: 1px; + border-style: solid; + border-color: #e1e1e1; + background: white; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-strict .x-ie7m .x-boundlist-list-ct { + position: relative; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-item { + padding: 0 6px; + line-height: 22px; + cursor: pointer; + cursor: hand; + position: relative; + /*allow hover in IE on empty items*/ + zoom: 1; + border-width: 1px; + border-style: dotted; + border-color: white; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-selected { + background: #c1ddf1; + border-color: #c1ddf1; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-item-over { + background: #d6e8f6; + border-color: #d6e8f6; +} + +/* line 43, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-floating { + border-top-width: 0; +} + +/* line 47, ../../../ext-theme-neutral/sass/src/view/BoundList.scss */ +.x-boundlist-above { + border-top-width: 1px; + border-bottom-width: 1px; +} + +/* line 9, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker { + border-width: 1px; + border-style: solid; + border-color: #e1e1e1; + background-color: white; + width: 212px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-header { + padding: 4px 6px; + text-align: center; + background-image: none; + background-color: #f5f5f5; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-arrow { + width: 12px; + height: 12px; + top: 9px; + cursor: pointer; + background-color: #f5f5f5; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-datepicker-arrow:hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 55, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-next { + right: 6px; + background-image: url(images/datepicker/arrow-right.png); +} + +/* line 60, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-prev { + left: 6px; + background-image: url(images/datepicker/arrow-left.png); +} + +/* line 76, ../../../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 83, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-month .x-btn-inner { + color: #3892d3; +} +/* line 88, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-month .x-btn-split-right { + background-image: url(images/datepicker/month-arrow.png); + padding-right: 8px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-column-header { + width: 30px; + color: black; + font: bold 13px helvetica, arial, verdana, sans-serif; + text-align: right; + background-image: none; + background-color: white; +} + +/* line 113, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-column-header-inner { + line-height: 25px; + padding: 0 9px 0 0; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-cell { + text-align: right; + border-width: 1px; + border-style: solid; + border-color: white; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-date { + padding: 0 7px 0 0; + font: normal 13px helvetica, arial, verdana, sans-serif; + color: black; + cursor: pointer; + line-height: 23px; +} + +/* line 138, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-datepicker-date:hover { + color: black; + background-color: #eaf3fa; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-selected { + border-style: solid; + border-color: #3892d3; +} +/* line 146, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-selected .x-datepicker-date { + background-color: #d6e8f6; + font-weight: bold; +} + +/* line 152, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-today { + border-color: darkred; + border-style: solid; +} + +/* line 159, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-prevday .x-datepicker-date, +.x-datepicker-nextday .x-datepicker-date { + color: #bfbfbf; +} + +/* line 166, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-disabled a.x-datepicker-date { + background-color: #eeeeee; + cursor: default; + color: gray; +} + +/* line 174, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-disabled a.x-datepicker-date:hover { + background-color: #eeeeee; +} + +/* line 179, ../../../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 195, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-datepicker-footer .x-btn, +.x-monthpicker-buttons .x-btn { + margin: 0 3px 0 2px; +} + +/* line 201, ../../../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 211, ../../../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 220, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-months .x-monthpicker-item { + width: 52px; +} + +/* line 225, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-years { + width: 105px; +} +/* line 228, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-years .x-monthpicker-item { + width: 52px; +} + +/* line 233, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-item { + margin: 5px 0 5px; + font: normal 13px helvetica, arial, verdana, sans-serif; + text-align: center; +} + +/* line 239, ../../../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 254, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-monthpicker-item-inner:hover { + background-color: #eaf3fa; +} + +/* line 258, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-selected { + background-color: #d6e8f6; + border-style: solid; + border-color: #3892d3; +} + +/* line 264, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav { + height: 34px; +} + +/* line 268, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-button-ct { + width: 52px; +} + +/* line 272, ../../../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; + background-color: white; +} + +/* line 289, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +a.x-monthpicker-yearnav-button:hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-next { + background-image: url(images/datepicker/arrow-right.png); + background-position: 0 0; +} + +/* line 299, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-next-over { + background-position: 0 0; +} + +/* line 303, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-prev { + background-image: url(images/datepicker/arrow-left.png); + background-position: 0 0; +} + +/* line 308, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-yearnav-prev-over { + background-position: 0 0; +} + +/* line 313, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-item { + margin: 2px 0 2px; +} +/* line 317, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-item-inner { + margin: 0 5px 0 5px; +} +/* line 321, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-yearnav { + height: 28px; +} +/* line 325, ../../../ext-theme-neutral/sass/src/picker/Date.scss */ +.x-monthpicker-small .x-monthpicker-yearnav-button { + margin-top: 8px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */ +.x-form-date-trigger { + background-image: url(images/form/date-trigger.png); +} + +/* line 6, ../../../ext-theme-neutral/sass/src/form/field/Date.scss */ +.x-rtl.x-form-trigger-wrap .x-form-date-trigger { + background-image: url(images/form/date-trigger-rtl.png); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/File.scss */ +.x-form-file-wrap .x-form-text { + color: gray; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker { + width: 192px; + height: 120px; + background-color: white; + border-color: white; + border-width: 0; + border-style: solid; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-item { + width: 24px; + height: 24px; + border-width: 1px; + border-color: white; + border-style: solid; + background-color: white; + cursor: pointer; + padding: 2px; +} +/* line 20, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-content-box .x-color-picker-item { + width: 18px; + height: 18px; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +a.x-color-picker-item:hover { + border-color: #8bb8f3; + background-color: #e6e6e6; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-selected { + border-color: #8bb8f3; + background-color: #e6e6e6; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/picker/Color.scss */ +.x-color-picker-item-inner { + line-height: 16px; + border-color: #e1e1e1; + border-width: 1px; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-btn-text { + background: transparent no-repeat; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 7, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-bold, +.x-menu-item div.x-edit-bold { + background-position: 0 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 13, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-italic, +.x-menu-item div.x-edit-italic { + background-position: -16px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 19, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-underline, +.x-menu-item div.x-edit-underline { + background-position: -32px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-forecolor, +.x-menu-item div.x-edit-forecolor { + background-position: -160px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 31, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-backcolor, +.x-menu-item div.x-edit-backcolor { + background-position: -176px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 37, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifyleft, +.x-menu-item div.x-edit-justifyleft { + background-position: -112px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifycenter, +.x-menu-item div.x-edit-justifycenter { + background-position: -128px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-justifyright, +.x-menu-item div.x-edit-justifyright { + background-position: -144px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 55, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-insertorderedlist, +.x-menu-item div.x-edit-insertorderedlist { + background-position: -80px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 61, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-insertunorderedlist, +.x-menu-item div.x-edit-insertunorderedlist { + background-position: -96px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 67, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-increasefontsize, +.x-menu-item div.x-edit-increasefontsize { + background-position: -48px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 73, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-decreasefontsize, +.x-menu-item div.x-edit-decreasefontsize { + background-position: -64px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 79, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-sourceedit, +.x-menu-item div.x-edit-sourceedit { + background-position: -192px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 85, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-edit-createlink, +.x-menu-item div.x-edit-createlink { + background-position: -208px 0; + background-image: url(images/editor/tb-sprite.png); +} + +/* line 90, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tip .x-tip-bd .x-tip-bd-inner { + padding: 5px; + padding-bottom: 1px; +} + +/* line 95, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-tb .x-font-select { + font-size: 13px; + font-family: inherit; +} + +/* line 100, ../../../ext-theme-neutral/sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-wrap textarea { + font: normal 13px helvetica, arial, verdana, sans-serif; + background-color: white; + resize: none; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-body { + background: white; + border-width: 1px; + border-style: solid; + border-color: silver; +} + +/* line 8, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-empty { + padding: 10px; + color: gray; + background-color: white; + font: normal 13px helvetica, arial, verdana, sans-serif; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell { + color: null; + font: normal 13px/15px helvetica, arial, verdana, sans-serif; + background-color: white; + border-color: #ededed; + border-style: solid; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-alt .x-grid-td { + background-color: #fafafa; +} +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-over .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #e2eff8; +} +/* line 35, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-over .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #e2eff8; +} +/* line 40, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-selected .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #c1ddf1; +} +/* line 45, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #c1ddf1; +} +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-before-focused .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #e2eff8; +} +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-td { + background-color: #e2eff8; +} +/* line 65, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-over .x-grid-td { + background-color: #e2eff8; +} +/* line 73, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-td { + background-color: #c1ddf1; +} +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-td { + border-bottom-style: solid; + border-bottom-color: #e2eff8; +} +/* line 96, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-row-focused-first .x-grid-td { + border-top: 1px solid #e2eff8; +} +/* line 103, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-selected .x-grid-row-summary .x-grid-td { + border-bottom-color: #c1ddf1; + border-top-width: 0; +} +/* line 108, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row-focused .x-grid-row-summary .x-grid-td { + border-bottom-color: #e2eff8; + border-top-width: 0; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-td { + border-bottom-width: 1px; +} +/* line 121, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table { + border-top: 1px solid white; +} +/* line 125, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table-over-first { + border-top-style: solid; + border-top-color: #e2eff8; +} +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table-selected-first { + border-top-style: solid; + border-top-color: #c1ddf1; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-row-lines .x-grid-table-focused-first { + border-top-style: solid; + border-top-color: #e2eff8; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell-inner { + text-overflow: ellipsis; + padding: 5px 10px 4px 10px; +} + +/* line 178, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-cell-special { + border-color: #ededed; + border-style: solid; + border-right-width: 1px 0; +} + +/* line 221, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-rtl.x-grid-cell-special { + border-right-width: 0; + border-left-width: 1px 0; +} + +/* line 228, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-dirty-cell { + background: url(images/grid/dirty.png) no-repeat 0 0; +} + +/* line 233, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-rtl.x-grid-dirty-cell { + background-image: url(images/grid/dirty-rtl.png); + background-position: right 0; +} + +/* line 241, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-row .x-grid-cell-selected { + color: null; + background-color: #c1ddf1; +} + +/* line 247, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-with-col-lines .x-grid-cell { + border-right-width: 1px; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-rtl.x-grid-with-col-lines .x-grid-cell { + border-right-width: 0; + border-left-width: 1px; +} + +/* line 259, ../../../ext-theme-neutral/sass/src/panel/Table.scss */ +.x-grid-resize-marker { + width: 1px; + background-color: #0f0f0f; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator { + position: absolute; + height: 1px; + line-height: 0px; + background-color: #77BC71; + overflow: visible; + pointer-events: none; +} +/* line 9, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator .x-grid-drop-indicator-left { + position: absolute; + top: -8px; + left: -12px; + background-image: url(images/grid/dd-insert-arrow-right.png); + height: 16px; + width: 16px; +} +/* line 18, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-grid-drop-indicator .x-grid-drop-indicator-right { + position: absolute; + top: -8px; + right: -11px; + background-image: url(images/grid/dd-insert-arrow-left.png); + height: 16px; + width: 16px; +} + +/* line 29, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-ie6 .x-grid-drop-indicator-left { + background-image: url(images/grid/dd-insert-arrow-right.png); +} +/* line 33, ../../../ext-theme-neutral/sass/src/view/DropZone.scss */ +.x-ie6 .x-grid-drop-indicator-right { + background-image: url(images/grid/dd-insert-arrow-left.png); +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top, +.col-move-bottom { + width: 9px; + height: 9px; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-top { + background-image: url(images/grid/col-move-top.png); +} + +/* line 11, ../../../ext-theme-neutral/sass/src/grid/header/DropZone.scss */ +.col-move-bottom { + background-image: url(images/grid/col-move-bottom.png); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-grid-header-ct { + border: 1px solid #157fcc; + border-bottom-color: #f5f5f5; + background-color: #f5f5f5; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-accordion-item .x-grid-header-ct { + border-width: 0 0 1px !important; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-accordion-item .x-grid-header-ct-hidden { + border: 0 !important; +} + +/* line 28, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-grid-body { + border-top-color: silver; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-hmenu-sort-asc .x-menu-item-icon { + background-image: url(images/grid/hmenu-asc.png); +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-hmenu-sort-desc .x-menu-item-icon { + background-image: url(images/grid/hmenu-desc.png); +} + +/* line 40, ../../../ext-theme-neutral/sass/src/grid/header/Container.scss */ +.x-cols-icon .x-menu-item-icon { + background-image: url(images/grid/columns.png); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header { + border-right: 1px solid silver; + color: #666666; + font: bold 13px/15px helvetica, arial, verdana, sans-serif; + background-color: #f5f5f5; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header { + border-right: 0 none; + border-left: 1px solid silver; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-group-sub-header { + background: transparent; + border-top: 1px solid silver; +} +/* line 29, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-group-sub-header .x-column-header-inner { + padding: 6px 10px 7px 10px; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-inner { + padding: 7px 10px 7px 10px; + text-overflow: ellipsis; +} + +/* line 42, ../../../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: #eef6fb; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-open { + background-color: #eef6fb; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-open .x-column-header-trigger { + background-color: #dfeaf2; +} + +/* line 78, ../../../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 86, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-trigger { + background-position: center center; +} + +/* line 96, ../../../ext-theme-neutral/sass/src/grid/column/Column.scss */ +.x-column-header-align-right .x-column-header-text { + margin-right: 12px; +} + +/* line 101, ../../../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 110, ../../../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 119, ../../../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 127, ../../../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 130, ../../../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 1, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-grid-cell-inner-action-col { + padding: 4px 4px 4px 4px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-action-col-cell .x-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 16, ../../../ext-theme-neutral/sass/src/grid/column/Action.scss */ +.x-action-col-icon { + height: 16px; + width: 16px; + cursor: pointer; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-cell-inner-checkcolumn { + padding: 5px 10px 4px 10px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-checkcolumn { + width: 15px; + height: 15px; + background: url(images/form/checkbox.png) 0 0 no-repeat; +} +/* line 17, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-item-disabled .x-grid-checkcolumn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} + +/* line 22, ../../../ext-theme-neutral/sass/src/grid/column/CheckColumn.scss */ +.x-grid-checkcolumn-checked { + background-position: 0 -15px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/column/RowNumberer.scss */ +.x-grid-cell-inner-row-numberer { + padding: 5px 5px 4px 3px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd { + border-width: 0 0 1px 0; + border-style: solid; + border-color: silver; + padding: 8px 4px 8px 4px; + background: #f5f5f5; + cursor: pointer; +} + +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-not-collapsible { + cursor: default; +} + +/* line 15, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-collapsible .x-grid-group-title { + background-repeat: no-repeat; + background-position: left center; + background-image: url(images/grid/group-collapse.png); + padding: 0 0 0 17px; +} + +/* line 24, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-rtl.x-grid-view .x-grid-group-hd-collapsible .x-grid-group-title { + background-position: right center; + padding: 0 17px 0 0; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-title { + color: #666666; + font: bold 13px/15px helvetica, arial, verdana, sans-serif; +} + +/* line 36, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-hd-collapsed .x-grid-group-title { + background-image: url(images/grid/group-expand.png); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-grid-group-collapsed .x-grid-group-title { + background-image: url(images/grid/group-expand.png); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-group-by-icon { + background-image: url(images/grid/group-by.png); +} + +/* line 49, ../../../ext-theme-neutral/sass/src/grid/feature/Grouping.scss */ +.x-show-groups-icon { + background-image: url(images/grid/group-by.png); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowBody.scss */ +.x-grid-rowbody { + font: normal 13px/15px helvetica, arial, verdana, sans-serif; + padding: 5px 10px 5px 10px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/RowWrap.scss */ +.x-grid-rowwrap { + border-color: #ededed; + border-style: solid; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-summary-bottom { + border-bottom-color: #f5f5f5; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-docked-summary { + border-width: 1px; + border-color: #157fcc; + border-style: solid; +} +/* line 10, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-docked-summary .x-grid-table { + width: 100%; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-grid-row-summary .x-grid-cell, +.x-grid-row-summary .x-grid-rowwrap, +.x-grid-row-summary .x-grid-cell-rowbody { + border-color: #ededed; + background-color: transparent !important; + border-top-width: 0; + font: normal 13px/15px helvetica, arial, verdana, sans-serif; +} + +/* line 26, ../../../ext-theme-neutral/sass/src/grid/feature/Summary.scss */ +.x-grid-with-row-lines .x-grid-table-summary { + border: 0; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-grid-locked .x-grid-inner-locked { + border-width: 0 1px 0 0; + border-style: solid; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-grid-locked .x-rtl.x-grid-inner-locked { + border-width: 0 0 0 1px; +} + +/* line 17, ../../../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 21, ../../../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 29, ../../../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 32, ../../../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 39, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-hmenu-lock .x-menu-item-icon { + background-image: url(images/grid/hmenu-lock.png); +} + +/* line 43, ../../../ext-theme-neutral/sass/src/grid/locking/Lockable.scss */ +.x-hmenu-unlock .x-menu-item-icon { + background-image: url(images/grid/hmenu-unlock.png); +} + +/* line 4, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-text { + font: normal 13px/15px helvetica, arial, verdana, sans-serif; + padding: 4px 9px 3px 9px; +} +/* line 21, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-gecko .x-grid-editor .x-form-text { + padding-left: 8px; + padding-right: 8px; +} +/* line 58, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field-body { + height: 24px; +} +/* line 62, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-display-field { + font: normal 13px/15px helvetica, arial, verdana, sans-serif; + padding: 5px 10px 4px 10px; + text-overflow: ellipsis; +} +/* line 73, ../../../ext-theme-neutral/sass/src/grid/plugin/Editing.scss */ +.x-grid-editor .x-form-action-col-field { + padding: 4px 4px 4px 4px; +} + +/* line 3, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x-tree-cell-editor .x-form-text { + padding-left: 3px; + padding-right: 3px; +} +/* line 8, ../../../ext-theme-neutral/sass/src/grid/plugin/CellEditing.scss */ +.x-gecko .x-tree-cell-editor .x-form-text { + padding-left: 2px; + padding-right: 2px; +} + +/* line 2, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-field { + margin: 0 3px 0 2px; +} +/* line 7, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-display-field { + padding: 5px 7px 4px 8px; +} +/* line 16, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-action-col-field { + padding: 4px 1px 4px 2px; +} +/* line 27, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor .x-form-text { + padding: 4px 6px 3px 7px; +} +/* line 30, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-gecko .x-grid-row-editor .x-form-text { + padding-left: 6px; + padding-right: 5px; +} +/* line 38, ../../../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: #dfeaf2; +} +/* line 48, ../../../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 53, ../../../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 137, ../../../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: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-grid-row-editor-buttons-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-grid-row-editor-buttons-default-bottom-frameInfo { + font-family: th-0-0-5-5-0-1-1-1-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tr, +.x-grid-row-editor-buttons-default-bottom-br, +.x-grid-row-editor-buttons-default-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl, +.x-grid-row-editor-buttons-default-bottom-bl, +.x-grid-row-editor-buttons-default-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-tl, +.x-grid-row-editor-buttons-default-bottom-bl, +.x-grid-row-editor-buttons-default-bottom-tr, +.x-grid-row-editor-buttons-default-bottom-br, +.x-grid-row-editor-buttons-default-bottom-tc, +.x-grid-row-editor-buttons-default-bottom-bc, +.x-grid-row-editor-buttons-default-bottom-ml, +.x-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-ml, +.x-grid-row-editor-buttons-default-bottom-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-bottom-mc { + padding: 5px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-tl, +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-row-editor-buttons-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-grid-row-editor-buttons-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-grid-row-editor-buttons-default-top-frameInfo { + font-family: th-5-5-0-0-1-1-0-1-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tr, +.x-grid-row-editor-buttons-default-top-br, +.x-grid-row-editor-buttons-default-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl, +.x-grid-row-editor-buttons-default-top-bl, +.x-grid-row-editor-buttons-default-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-tl, +.x-grid-row-editor-buttons-default-top-bl, +.x-grid-row-editor-buttons-default-top-tr, +.x-grid-row-editor-buttons-default-top-br, +.x-grid-row-editor-buttons-default-top-tc, +.x-grid-row-editor-buttons-default-top-bc, +.x-grid-row-editor-buttons-default-top-ml, +.x-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-ml, +.x-grid-row-editor-buttons-default-top-mr { + zoom: 1; + background-image: url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-grid-row-editor-buttons-default-top-mc { + padding: 1px 1px 5px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-tl, +.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-grid-row-editor-buttons-default-top:after { + display: none; + content: "x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 97, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons-default-bottom { + top: 35px; +} + +/* line 103, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons-default-top { + bottom: 35px; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-buttons { + border-color: #e1e1e1; +} + +/* line 112, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-row-editor-update-button { + margin-right: 3px; +} + +/* line 115, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-row-editor-cancel-button { + margin-left: 2px; +} + +/* line 120, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-rtl.x-row-editor-update-button { + margin-left: 3px; + margin-right: auto; +} + +/* line 124, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-rtl.x-row-editor-cancel-button { + margin-right: 2px; + margin-left: auto; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-errors .x-tip-body { + padding: 5px; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-grid-row-editor-errors-item { + list-style: disc; + margin-left: 15px; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/grid/plugin/RowEditing.scss */ +.x-rtl.x-grid-row-editor-errors .x-grid-row-editor-errors-item { + margin-left: 0; + margin-right: 15px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-cell-inner-row-expander { + padding: 7px 6px 6px 6px; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-expander { + width: 11px; + height: 11px; + cursor: pointer; + background-image: url(images/grid/group-collapse.png); +} +/* line 20, ../../../ext-theme-neutral/sass/src/grid/plugin/RowExpander.scss */ +.x-grid-row-collapsed .x-grid-row-expander { + background-image: url(images/grid/group-expand.png); +} + +/* line 1, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-layout-ct { + background-color: white; + padding: 5px 5px 0; +} + +/* line 6, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-panel-header-text-container { + color: #666666; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + text-transform: none; +} + +/* line 13, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item { + margin: 0 0 5px; +} +/* line 16, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd { + background: #dfeaf2; + border-top-color: white; + padding: 8px 10px; +} +/* line 22, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd-sibling-expanded { + border-top-color: #157fcc; +} +/* line 26, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd-last-collapsed { + border-bottom-color: #dfeaf2; +} +/* line 30, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-body { + border-width: 0; +} + +/* line 37, ../../../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 42, ../../../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 61, ../../../ext-theme-neutral/sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-img { + background-image: url(images/tools/tool-sprites-dark.png); + background-color: #dfeaf2; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-collapse-el { + cursor: pointer; +} + +/* line 6, ../../../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 14, ../../../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 21, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-left { + background-image: url(images/util/splitter/mini-left.png); +} + +/* line 25, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-right { + background-image: url(images/util/splitter/mini-right.png); +} + +/* line 31, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-rtl.x-layout-split-left { + background-image: url(images/util/splitter/mini-right.png); +} +/* line 35, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-rtl.x-layout-split-right { + background-image: url(images/util/splitter/mini-left.png); +} + +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-top { + background-image: url(images/util/splitter/mini-top.png); +} + +/* line 45, ../../../ext-theme-neutral/sass/src/resizer/Splitter.scss */ +.x-layout-split-bottom { + background-image: url(images/util/splitter/mini-bottom.png); +} + +/* line 50, ../../../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 54, ../../../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 60, ../../../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 64, ../../../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 70, ../../../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 74, ../../../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 79, ../../../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 83, ../../../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 1, ../../../ext-theme-neutral/sass/src/layout/container/Border.scss */ +.x-border-layout-ct { + background-color: #3892d3; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu { + border-style: solid; + border-width: 1px; + border-color: #e1e1e1; +} + +/* line 14, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-body { + background: white; + padding: 0; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-icon-separator { + left: 22px; + border-left: solid 1px #e1e1e1; + background-color: white; + width: 1px; +} + +/* line 27, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu .x-menu-icon-separator { + left: auto; + right: 22px; +} + +/* line 33, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item { + cursor: pointer; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-indent { + margin-left: 27px; +} + +/* line 51, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-indent { + margin-left: 0; + margin-right: 27px; +} + +/* line 57, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-active { + background-image: none; + background-color: #d6e8f6; + border-color: #0079d2; +} +/* line 75, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-nlg .x-menu-item-active { + background: #d6e8f6 repeat-x left top; + background-image: url(images/menu/menu-item-active-bg.gif); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-link { + line-height: 24px; + padding: 0 4px 0 27px; + display: inline-block; +} + +/* line 91, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-link { + padding: 0 27px 0 4px; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-right-check-item-text { + padding-right: 22px; +} + +/* line 102, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-right-check-item-text { + padding-left: 22px; + padding-right: 0; +} + +/* line 108, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-icon { + width: 16px; + height: 16px; + top: 5px; + left: 3px; + background-position: center center; +} + +/* line 116, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-glyph { + font-size: 16px; + line-height: 16px; + color: gray; + opacity: 0.5; +} +/* line 132, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie8m .x-menu-item-glyph { + color: #bfbfbf; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-icon { + left: auto; + right: 3px; +} + +/* line 168, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-icon-right { + width: 16px; + height: 16px; + top: 4px; + right: 3px; + background-position: center center; +} + +/* line 177, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-icon-right { + right: auto; + left: 3px; +} + +/* line 183, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-text { + font-size: 13px; + color: black; + cursor: pointer; + margin-right: 16px; +} + +/* line 193, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +a.x-rtl .x-menu-item-text { + margin-right: 0; + margin-left: 16px; +} + +/* line 201, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-checked .x-menu-item-icon, .x-menu-item-checked .x-menu-item-icon-right { + background-image: url(images/menu/checked.png); +} +/* line 204, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-checked .x-menu-group-icon { + background-image: url(images/menu/group-checked.png); +} + +/* line 210, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-unchecked .x-menu-item-icon, .x-menu-item-unchecked .x-menu-item-icon-right { + background-image: url(images/menu/unchecked.png); +} +/* line 213, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-unchecked .x-menu-group-icon { + background-image: none; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-separator { + height: 1px; + border-top: solid 1px #e1e1e1; + background-color: white; + margin: 2px 0; + padding: 0; +} + +/* line 226, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-arrow { + width: 12px; + height: 9px; + top: 8px; + right: 0; + background-image: url(images/menu/menu-parent.png); +} + +/* line 246, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-rtl.x-menu-item-arrow { + left: 0; + right: auto; + background-image: url(images/menu/menu-parent-left.png); +} + +/* line 264, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/* line 270, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-content-box .x-menu-icon-separator { + width: 0px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-content-box .x-menu-item-separator { + height: 0px; +} + +/* line 281, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie .x-menu-item-disabled .x-menu-item-icon { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 285, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-ie .x-menu-item-disabled .x-menu-item-text { + background-color: transparent; +} + +/* line 294, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-date-item { + border-color: #99BBE8; +} + +/* line 300, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-item .x-form-item-label { + font-size: 13px; + color: black; +} + +/* line 306, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top { + height: 16px; + background-image: url(images/menu/scroll-top.png); +} + +/* line 310, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-bottom { + height: 16px; + background-image: url(images/menu/scroll-bottom.png); +} + +/* line 316, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top, .x-menu-scroll-bottom { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + background-color: white; +} + +/* line 329, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top-hover, .x-menu-scroll-bottom-hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/menu/Menu.scss */ +.x-menu-scroll-top-pressed, .x-menu-scroll-bottom-pressed { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-menu-item-link:after { + display: none; + content: "x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"; +} + +/**/ +/* */ +/* line 1, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool { + cursor: pointer; +} + +/* line 5, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-img { + overflow: hidden; + width: 16px; + height: 16px; + background-image: url(images/tools/tool-sprites.png); + margin: 0; +} +/* line 12, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool .x-tool-img { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 17, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-over .x-tool-img { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 22, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-pressed .x-tool-img { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; +} + +/* line 30, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-placeholder { + visibility: hidden; +} + +/* line 34, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-close { + background-position: 0 0; +} + +/* line 38, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-minimize { + background-position: 0 -16px; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-maximize { + background-position: 0 -32px; +} + +/* line 46, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-restore { + background-position: 0 -48px; +} + +/* line 50, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-toggle { + background-position: 0 -64px; +} +/* line 53, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-panel-collapsed .x-tool-toggle { + background-position: 0 -80px; +} + +/* line 58, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-gear { + background-position: 0 -96px; +} + +/* line 62, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-prev { + background-position: 0 -112px; +} + +/* line 66, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-next { + background-position: 0 -128px; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-pin { + background-position: 0 -144px; +} + +/* line 74, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-unpin { + background-position: 0 -160px; +} + +/* line 78, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-right { + background-position: 0 -176px; +} + +/* line 82, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-left { + background-position: 0 -192px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-down { + background-position: 0 -208px; +} + +/* line 90, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-up { + background-position: 0 -224px; +} + +/* line 94, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-refresh { + background-position: 0 -240px; +} + +/* line 98, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-plus { + background-position: 0 -256px; +} + +/* line 102, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-minus { + background-position: 0 -272px; +} + +/* line 106, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-search { + background-position: 0 -288px; +} + +/* line 110, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-save { + background-position: 0 -304px; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-help { + background-position: 0 -320px; +} + +/* line 118, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-print { + background-position: 0 -336px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand { + background-position: 0 -352px; +} + +/* line 126, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-collapse { + background-position: 0 -368px; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-resize { + background-position: 0 -384px; +} + +/* line 134, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-move { + background-position: 0 -400px; +} + +/* line 139, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-bottom, +.x-tool-collapse-bottom { + background-position: 0 -208px; +} + +/* line 144, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-top, +.x-tool-collapse-top { + background-position: 0 -224px; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-left, +.x-tool-collapse-left { + background-position: 0 -192px; +} + +/* line 154, ../../../ext-theme-neutral/sass/src/panel/Tool.scss */ +.x-tool-expand-right, +.x-tool-collapse-right { + background-position: 0 -176px; +} + +/* line 161, ../../../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 166, ../../../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 1, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle { + position: absolute; + z-index: 100; + font-size: 1px; + line-height: 6px; + overflow: hidden; + zoom: 1; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; + background-color: #fff; + -webkit-border-radius: 6px; + -moz-border-radius: 6px; + -ms-border-radius: 6px; + -o-border-radius: 6px; + border-radius: 6px; +} + +/* line 18, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-collapsed .x-resizable-handle { + display: none; +} + +/* line 23, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-north { + cursor: n-resize; +} +/* line 26, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south { + cursor: s-resize; +} +/* line 29, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east { + cursor: e-resize; +} +/* line 32, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-west { + cursor: w-resize; +} +/* line 35, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast { + cursor: se-resize; +} +/* line 38, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest { + cursor: nw-resize; +} +/* line 41, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast { + cursor: ne-resize; +} +/* line 44, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest { + cursor: sw-resize; +} + +/* line 49, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-east { + width: 6px; + height: 100%; + right: 0; + top: 0; +} + +/* line 56, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-south { + width: 100%; + height: 6px; + left: 0; + bottom: 0; +} + +/* line 63, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-west { + width: 6px; + height: 100%; + left: 0; + top: 0; +} + +/* line 70, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-north { + width: 100%; + height: 6px; + left: 0; + top: 0; +} + +/* line 77, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-southeast { + width: 6px; + height: 6px; + right: 0; + bottom: 0; + z-index: 101; +} + +/* line 85, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-northwest { + width: 6px; + height: 6px; + left: 0; + top: 0; + z-index: 101; +} + +/* line 93, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-northeast { + width: 6px; + height: 6px; + right: 0; + top: 0; + z-index: 101; +} + +/* line 101, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-handle-southwest { + width: 6px; + height: 6px; + left: 0; + bottom: 0; + z-index: 101; +} + +/*IE rounding error*/ +/* line 111, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-ie .x-resizable-handle-east { + margin-right: -1px; + /*IE rounding error*/ +} +/* line 115, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-ie .x-resizable-handle-south { + margin-bottom: -1px; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-pinned .x-resizable-handle, +.x-resizable-over .x-resizable-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} + +/* line 127, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-window .x-window-handle { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); + opacity: 0; +} + +/* line 131, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-window-collapsed .x-window-handle { + display: none; +} + +/* line 136, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-proxy { + border: 1px dashed #3b5a82; + position: absolute; + overflow: hidden; + z-index: 50000; +} + +/* line 148, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east, +.x-resizable-over .x-resizable-handle-west, +.x-resizable-pinned .x-resizable-handle-east, +.x-resizable-pinned .x-resizable-handle-west { + background-image: url(images/sizer/e-handle.png); +} +/* line 154, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south, +.x-resizable-over .x-resizable-handle-north, +.x-resizable-pinned .x-resizable-handle-south, +.x-resizable-pinned .x-resizable-handle-north { + background-image: url(images/sizer/s-handle.png); +} +/* line 159, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast, +.x-resizable-pinned .x-resizable-handle-southeast { + background-position: top left; + background-image: url(images/sizer/se-handle.png); +} +/* line 164, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest, +.x-resizable-pinned .x-resizable-handle-northwest { + background-position: bottom right; + background-image: url(images/sizer/nw-handle.png); +} +/* line 169, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast, +.x-resizable-pinned .x-resizable-handle-northeast { + background-position: bottom left; + background-image: url(images/sizer/ne-handle.png); +} +/* line 174, ../../../ext-theme-neutral/sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest, +.x-resizable-pinned .x-resizable-handle-southwest { + background-position: top right; + background-image: url(images/sizer/sw-handle.png); +} + +/* Horizontal styles */ +/* line 2, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz { + padding-left: 7px; + background: no-repeat 0 -15px; +} +/* line 6, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-end { + padding-right: 7px; + background: no-repeat right -30px; +} + +/* line 12, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-inner { + height: 15px; +} + +/* line 20, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-ie6 .x-form-item .x-slider-horz, +.x-ie7 .x-form-item .x-slider-horz, +.x-quirks .x-ie .x-form-item .x-slider-horz { + margin-top: 5px; +} + +/* line 26, ../../../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 33, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb-over { + background-position: -15px -15px; +} + +/* line 37, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-horz .x-slider-thumb-drag { + background-position: -30px -30px; +} + +/* line 42, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-rtl.x-slider-horz { + padding-left: 0; + padding-right: 7px; + background-position: right -30px; +} +/* line 47, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-rtl.x-slider-horz .x-slider-end { + padding-right: 0; + padding-left: 7px; + background-position: left -15px; +} +/* line 53, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-rtl.x-slider-horz .x-slider-thumb { + margin-right: -7px; +} + +/* Vertical styles */ +/* line 60, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert { + padding-top: 7px; + background: no-repeat -30px 0; +} + +/* line 65, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-end { + padding-bottom: 7px; + background: no-repeat -15px bottom; + width: 15px; +} + +/* line 71, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-inner { + width: 15px; +} + +/* line 75, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb { + width: 15px; + height: 15px; + margin-bottom: -7px; + background-image: url(images/slider/slider-v-thumb.png); +} + +/* line 82, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb-over { + background-position: -15px -15px; +} + +/* line 86, ../../../ext-theme-neutral/sass/src/slider/Multi.scss */ +.x-slider-vert .x-slider-thumb-drag { + background-position: -30px -30px; +} + +/* line 92, ../../../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 98, ../../../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); +} + +/** + * 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-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-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} [$ui-border-width=$tab-border-width] + * The border-width of 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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 + * + * @param {color} [$ui-border-bottom-color=$tabbar-strip-border-color] + * The bottom border color of inactive tabs. + * + * @member Ext.tab.Tab + */ +/** + * Creates a visual theme for a Tab Bar + * + * @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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 {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 {number} [$ui-tab-height] + * The height of tabs that will be used in this tabbar UI. The tabbar body is given + * a fixed height to leave room for the tabs, and so that the tabbar does not collapse + * when it does not contain any tabs. + * + * @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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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 {color} [$ui-tab-inner-border-color=$tab-inner-border-color] + * The inner border-color of 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-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-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 {number/list} [$ui-strip-plain-border-width=$tabbar-strip-plain-border-width] + * The border-width of the {@link Ext.tab.Panel#plain plain} 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 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 8px 12px 7px 12px; + border-width: 0 0 0 0; + border-style: solid; + background-color: #4b9cd7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mc { + background-color: #4b9cd7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-top-frameInfo { + font-family: th-3-3-0-0-0-0-0-0-8-12-7-12; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tr, +.x-tab-default-top-br, +.x-tab-default-top-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl, +.x-tab-default-top-bl, +.x-tab-default-top-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-tl, +.x-tab-default-top-bl, +.x-tab-default-top-tr, +.x-tab-default-top-br, +.x-tab-default-top-tc, +.x-tab-default-top-bc, +.x-tab-default-top-ml, +.x-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-ml, +.x-tab-default-top-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-top-mc { + padding: 5px 9px 7px 9px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-top-tl, +.x-strict .x-ie7 .x-tab-default-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom { + -moz-border-radius-topleft: 0; + -webkit-border-top-left-radius: 0; + border-top-left-radius: 0; + -moz-border-radius-topright: 0; + -webkit-border-top-right-radius: 0; + border-top-right-radius: 0; + -moz-border-radius-bottomright: 3px; + -webkit-border-bottom-right-radius: 3px; + border-bottom-right-radius: 3px; + -moz-border-radius-bottomleft: 3px; + -webkit-border-bottom-left-radius: 3px; + border-bottom-left-radius: 3px; + padding: 8px 12px 7px 12px; + border-width: 0 0 0 0; + border-style: solid; + background-color: #4b9cd7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mc { + background-color: #4b9cd7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-bottom-frameInfo { + font-family: th-0-0-3-3-0-0-0-0-8-12-7-12; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tr, +.x-tab-default-bottom-br, +.x-tab-default-bottom-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl, +.x-tab-default-bottom-bl, +.x-tab-default-bottom-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-tl, +.x-tab-default-bottom-bl, +.x-tab-default-bottom-tr, +.x-tab-default-bottom-br, +.x-tab-default-bottom-tc, +.x-tab-default-bottom-bc, +.x-tab-default-bottom-ml, +.x-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-ml, +.x-tab-default-bottom-mr { + zoom: 1; + background-image: url(images/tab/tab-default-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-bottom-mc { + padding: 8px 9px 4px 9px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-bottom-tl, +.x-strict .x-ie7 .x-tab-default-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 8px 12px 7px 12px; + border-width: 0 0 0 0; + border-style: solid; + background-color: #4b9cd7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mc { + background-color: #4b9cd7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-left-frameInfo { + font-family: th-3-3-0-0-0-0-0-0-8-12-7-12; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tr, +.x-tab-default-left-br, +.x-tab-default-left-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl, +.x-tab-default-left-bl, +.x-tab-default-left-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-tl, +.x-tab-default-left-bl, +.x-tab-default-left-tr, +.x-tab-default-left-br, +.x-tab-default-left-tc, +.x-tab-default-left-bc, +.x-tab-default-left-ml, +.x-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-ml, +.x-tab-default-left-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-left-mc { + padding: 5px 9px 7px 9px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-left-tl, +.x-strict .x-ie7 .x-tab-default-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-left:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right { + -moz-border-radius-topleft: 3px; + -webkit-border-top-left-radius: 3px; + border-top-left-radius: 3px; + -moz-border-radius-topright: 3px; + -webkit-border-top-right-radius: 3px; + border-top-right-radius: 3px; + -moz-border-radius-bottomright: 0; + -webkit-border-bottom-right-radius: 0; + border-bottom-right-radius: 0; + -moz-border-radius-bottomleft: 0; + -webkit-border-bottom-left-radius: 0; + border-bottom-left-radius: 0; + padding: 8px 12px 7px 12px; + border-width: 0 0 0 0; + border-style: solid; + background-color: #4b9cd7; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mc { + background-color: #4b9cd7; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-tab-default-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-tab-default-right-frameInfo { + font-family: th-3-3-0-0-0-0-0-0-8-12-7-12; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tr, +.x-tab-default-right-br, +.x-tab-default-right-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl, +.x-tab-default-right-bl, +.x-tab-default-right-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-tl, +.x-tab-default-right-bl, +.x-tab-default-right-tr, +.x-tab-default-right-br, +.x-tab-default-right-tc, +.x-tab-default-right-bc, +.x-tab-default-right-ml, +.x-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-ml, +.x-tab-default-right-mr { + zoom: 1; + background-image: url(images/tab/tab-default-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-tab-default-right-mc { + padding: 5px 9px 7px 9px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-tab-default-right-tl, +.x-strict .x-ie7 .x-tab-default-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-right:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"; +} + +/**/ +/* */ +/* line 307, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default { + border-color: #157fcc; + margin: 0 1px 0 0; + cursor: pointer; +} +/* line 312, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-inner { + font-size: 13px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + color: white; + line-height: 16px; +} +/* line 322, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-icon-el { + width: 16px; + height: 16px; + line-height: 16px; + background-position: center center; +} +/* line 329, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-glyph { + font-size: 16px; + color: white; + opacity: 0.5; +} +/* line 343, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default .x-tab-glyph { + color: #a5cdeb; +} +/* line 351, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default { + padding-left: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-button { + padding-left: 12px; +} +/* line 358, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-icon-el { + left: 12px; +} + +/* line 366, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-icon .x-tab-inner { + width: 16px; +} + +/* line 373, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default { + margin: 0 0 0 1px; +} + +/* line 379, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default { + margin: 0 0 0 1px; +} + +/* line 384, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-left { + margin: 0 0 0 1px; +} + +/* line 389, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-left { + margin: 0 1px 0 0; +} + +/* line 396, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top, +.x-tab-default-left, +.x-tab-default-right { + border-bottom: 0 solid #157fcc; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom { + border-top: 0 solid #157fcc; +} + +/* line 438, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-tab-default-left { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} + +/* line 449, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-left { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-rtl.x-tab-default-left { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +} + +/* line 454, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-tab-default-right { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); +} + +/* line 465, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-right { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-rtl.x-tab-default-right { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); +} + +/* line 471, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-icon-text-left .x-tab-inner { + padding-left: 22px; +} + +/* line 478, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-icon-text-left .x-tab-inner { + padding-left: 0; + padding-right: 22px; +} + +/* line 485, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-over { + background-color: #5fa7db; +} +/* line 509, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-over .x-tab-glyph { + color: white; +} +/* line 516, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-over .x-tab-glyph { + color: #afd3ed; +} + +/* line 545, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active { + background-color: #add2ed; +} +/* line 551, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active .x-tab-inner { + color: #157fcc; +} +/* line 566, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-active .x-tab-glyph { + color: #157fcc; +} +/* line 573, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-active .x-tab-glyph { + color: #61a8dc; +} + +/* line 581, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active, +.x-tab-default-left-active, +.x-tab-default-right-active { + border-bottom: 0 solid #add2ed; +} + +/* line 594, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active { + border-top: 0 solid #add2ed; +} + +/* line 607, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled { + cursor: default; +} +/* line 620, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-inner { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; +} +/* line 639, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} +/* line 644, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-glyph { + color: white; + opacity: 0.3; + filter: none; +} +/* line 658, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-ie8m .x-tab-default-disabled .x-tab-glyph { + color: #81b9e3; +} + +/* line 667, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled, +.x-tab-default-left-disabled, +.x-tab-default-right-disabled { + border-color: #157fcc #157fcc #157fcc; +} + +/* line 671, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled { + border-color: #157fcc #157fcc #157fcc #157fcc; +} + +/* line 699, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-nbr .x-tab-default { + background-image: none; +} + +/* line 710, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-tl, +.x-tab-default-top-over .x-frame-bl, +.x-tab-default-top-over .x-frame-tr, +.x-tab-default-top-over .x-frame-br, +.x-tab-default-top-over .x-frame-tc, +.x-tab-default-top-over .x-frame-bc, +.x-tab-default-left-over .x-frame-tl, +.x-tab-default-left-over .x-frame-bl, +.x-tab-default-left-over .x-frame-tr, +.x-tab-default-left-over .x-frame-br, +.x-tab-default-left-over .x-frame-tc, +.x-tab-default-left-over .x-frame-bc, +.x-tab-default-right-over .x-frame-tl, +.x-tab-default-right-over .x-frame-bl, +.x-tab-default-right-over .x-frame-tr, +.x-tab-default-right-over .x-frame-br, +.x-tab-default-right-over .x-frame-tc, +.x-tab-default-right-over .x-frame-bc { + background-image: url(images/tab/tab-default-top-over-corners.gif); +} +/* line 714, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-ml, +.x-tab-default-top-over .x-frame-mr, +.x-tab-default-left-over .x-frame-ml, +.x-tab-default-left-over .x-frame-mr, +.x-tab-default-right-over .x-frame-ml, +.x-tab-default-right-over .x-frame-mr { + background-image: url(images/tab/tab-default-top-over-sides.gif); +} +/* line 717, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-over .x-frame-mc, +.x-tab-default-left-over .x-frame-mc, +.x-tab-default-right-over .x-frame-mc { + background-color: #5fa7db; +} + +/* line 732, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-tl, +.x-tab-default-bottom-over .x-frame-bl, +.x-tab-default-bottom-over .x-frame-tr, +.x-tab-default-bottom-over .x-frame-br, +.x-tab-default-bottom-over .x-frame-tc, +.x-tab-default-bottom-over .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-over-corners.gif); +} +/* line 736, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-ml, +.x-tab-default-bottom-over .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-over-sides.gif); +} +/* line 739, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-over .x-frame-mc { + background-color: #5fa7db; +} + +/* line 756, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-tl, +.x-tab-default-top-active .x-frame-bl, +.x-tab-default-top-active .x-frame-tr, +.x-tab-default-top-active .x-frame-br, +.x-tab-default-top-active .x-frame-tc, +.x-tab-default-top-active .x-frame-bc, +.x-tab-default-left-active .x-frame-tl, +.x-tab-default-left-active .x-frame-bl, +.x-tab-default-left-active .x-frame-tr, +.x-tab-default-left-active .x-frame-br, +.x-tab-default-left-active .x-frame-tc, +.x-tab-default-left-active .x-frame-bc, +.x-tab-default-right-active .x-frame-tl, +.x-tab-default-right-active .x-frame-bl, +.x-tab-default-right-active .x-frame-tr, +.x-tab-default-right-active .x-frame-br, +.x-tab-default-right-active .x-frame-tc, +.x-tab-default-right-active .x-frame-bc { + background-image: url(images/tab/tab-default-top-active-corners.gif); +} +/* line 760, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-ml, +.x-tab-default-top-active .x-frame-mr, +.x-tab-default-left-active .x-frame-ml, +.x-tab-default-left-active .x-frame-mr, +.x-tab-default-right-active .x-frame-ml, +.x-tab-default-right-active .x-frame-mr { + background-image: url(images/tab/tab-default-top-active-sides.gif); +} +/* line 763, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-active .x-frame-mc, +.x-tab-default-left-active .x-frame-mc, +.x-tab-default-right-active .x-frame-mc { + background-color: #add2ed; +} + +/* line 778, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-tl, +.x-tab-default-bottom-active .x-frame-bl, +.x-tab-default-bottom-active .x-frame-tr, +.x-tab-default-bottom-active .x-frame-br, +.x-tab-default-bottom-active .x-frame-tc, +.x-tab-default-bottom-active .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-active-corners.gif); +} +/* line 782, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-ml, +.x-tab-default-bottom-active .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-active-sides.gif); +} +/* line 785, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-active .x-frame-mc { + background-color: #add2ed; +} + +/* line 802, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-tl, +.x-tab-default-top-disabled .x-frame-bl, +.x-tab-default-top-disabled .x-frame-tr, +.x-tab-default-top-disabled .x-frame-br, +.x-tab-default-top-disabled .x-frame-tc, +.x-tab-default-top-disabled .x-frame-bc, +.x-tab-default-left-disabled .x-frame-tl, +.x-tab-default-left-disabled .x-frame-bl, +.x-tab-default-left-disabled .x-frame-tr, +.x-tab-default-left-disabled .x-frame-br, +.x-tab-default-left-disabled .x-frame-tc, +.x-tab-default-left-disabled .x-frame-bc, +.x-tab-default-right-disabled .x-frame-tl, +.x-tab-default-right-disabled .x-frame-bl, +.x-tab-default-right-disabled .x-frame-tr, +.x-tab-default-right-disabled .x-frame-br, +.x-tab-default-right-disabled .x-frame-tc, +.x-tab-default-right-disabled .x-frame-bc { + background-image: url(images/tab/tab-default-top-disabled-corners.gif); +} +/* line 806, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-ml, +.x-tab-default-top-disabled .x-frame-mr, +.x-tab-default-left-disabled .x-frame-ml, +.x-tab-default-left-disabled .x-frame-mr, +.x-tab-default-right-disabled .x-frame-ml, +.x-tab-default-right-disabled .x-frame-mr { + background-image: url(images/tab/tab-default-top-disabled-sides.gif); +} +/* line 809, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-top-disabled .x-frame-mc, +.x-tab-default-left-disabled .x-frame-mc, +.x-tab-default-right-disabled .x-frame-mc { + background-color: #4b9cd7; +} + +/* line 824, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-tl, +.x-tab-default-bottom-disabled .x-frame-bl, +.x-tab-default-bottom-disabled .x-frame-tr, +.x-tab-default-bottom-disabled .x-frame-br, +.x-tab-default-bottom-disabled .x-frame-tc, +.x-tab-default-bottom-disabled .x-frame-bc { + background-image: url(images/tab/tab-default-bottom-disabled-corners.gif); +} +/* line 828, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-ml, +.x-tab-default-bottom-disabled .x-frame-mr { + background-image: url(images/tab/tab-default-bottom-disabled-sides.gif); +} +/* line 831, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-bottom-disabled .x-frame-mc { + background-color: #4b9cd7; +} + +/* line 861, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn { + width: 12px; + height: 12px; + background-image: url(images/tab/tab-default-close.png); +} +/* line 870, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn-over { + background-position: -12px 0; +} + +/* line 880, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default .x-tab-close-btn { + top: 2px; + right: 2px; +} + +/* line 886, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default .x-tab-close-btn { + right: auto; + left: 2px; +} + +/* line 924, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-disabled .x-tab-close-btn { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); + opacity: 0.3; + background-position: 0 0; +} + +/* line 934, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-pressed .x-tab-close-btn { + background-position: -24px 0; +} + +/* line 939, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-tab-default-closable .x-tab-wrap { + padding-right: 15px; +} + +/* line 944, ../../../ext-theme-neutral/sass/src/tab/Tab.scss */ +.x-rtl.x-tab-default-closable .x-tab-wrap { + padding-right: 0px; + padding-left: 15px; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-over:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-over:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-active:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-active:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-top-disabled:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-default-bottom-disabled:after { + display: none; + content: "x-slicer:corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif)"; +} + +/**/ +/* */ +/* line 100, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-top { + padding: 0; +} + +/* line 107, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom { + padding: 0 0 0 0; +} + +/* line 114, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-left { + padding: 0 0 0 0; +} + +/* line 122, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-left { + padding: 0 0 0 0; +} + +/* line 130, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right { + padding: 0 0 0 0; +} + +/* line 138, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-right { + padding: 0 0 0 0; +} + +/* line 149, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-horizontal { + height: 36px; +} +/* line 153, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-default-horizontal { + height: 36px; +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-vertical { + width: 36px; +} +/* line 165, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-default-vertical { + width: 36px; +} + +/* line 172, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-top { + padding-bottom: 5px; +} + +/* line 176, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-bottom { + padding-top: 5px; +} + +/* line 180, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-left { + padding-right: 5px; +} + +/* line 185, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-body-default-left { + padding-right: 0; + padding-left: 5px; +} + +/* line 191, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-body-default-right { + padding-left: 5px; +} + +/* line 196, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-body-default-right { + padding-left: 0; + padding-right: 5px; +} + +/* line 202, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default { + border-style: solid; + border-color: #157fcc; + background-color: #add2ed; +} + +/* line 210, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-strip-default-horizontal { + height: 5px; +} + +/* line 218, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-content-box .x-tab-bar-strip-default-vertical { + width: 5px; +} + +/* line 224, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-top { + border-width: 0 0 0 0; + height: 5px; +} +/* line 227, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-top { + border-width: 0 0 0 0; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-bottom { + border-width: 0 0 0 0; + height: 5px; +} +/* line 235, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-bottom { + border-width: 0 0 0 0; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-left { + border-width: 0 0 0 0; + width: 5px; +} +/* line 243, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-left { + border-width: 0 0 0 0; +} + +/* line 249, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-strip-default-left { + border-width: 0 0 0 0; +} +/* line 251, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-rtl.x-tab-bar-strip-default-left { + border-width: 0 0 0 0; +} + +/* line 257, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-strip-default-right { + border-width: 0 0 0 0; + width: 5px; +} +/* line 260, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-tab-bar-strip-default-right { + border-width: 0 0 0 0; +} + +/* line 266, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-strip-default-right { + border-width: 0 0 0 0; +} +/* line 268, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain .x-rtl.x-tab-bar-strip-default-right { + border-width: 0 0 0 0; +} + +/* line 274, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default { + background-color: #157fcc; +} + +/* line 323, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller { + cursor: pointer; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; + background-color: #157fcc; +} +/* line 339, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-plain .x-box-scroller { + background-color: transparent; +} +/* line 341, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-ie8m .x-tab-bar-default .x-box-scroller-plain .x-box-scroller { + background-color: #fff; +} +/* line 348, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-hover { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 354, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-pressed { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70); + opacity: 0.7; +} +/* line 363, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-left, +.x-tab-bar-default .x-tabbar-scroll-right { + height: 31px; + width: 24px; +} +/* line 369, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-top, +.x-tab-bar-default .x-tabbar-scroll-bottom { + width: 31px; + height: 24px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-bottom .x-box-scroller { + margin-top: 0; +} +/* line 381, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default-right .x-box-scroller { + margin-left: 0; +} +/* line 386, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default-right .x-box-scroller { + margin-left: 0; + margin-right: 0; +} + +/* line 395, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-left.png); +} +/* line 399, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-right.png); +} +/* line 403, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-scroll-top.png); +} +/* line 407, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-scroll-bottom.png); +} + +/* line 414, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-scroll-right.png); +} +/* line 417, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-scroll-left.png); +} + +/* line 425, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-plain-scroll-left.png); +} +/* line 429, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-plain-scroll-right.png); +} +/* line 433, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-top { + background-image: url(images/tab-bar/default-plain-scroll-top.png); +} +/* line 437, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-bottom { + background-image: url(images/tab-bar/default-plain-scroll-bottom.png); +} + +/* line 444, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-left { + background-image: url(images/tab-bar/default-plain-scroll-right.png); +} +/* line 448, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-rtl.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-right { + background-image: url(images/tab-bar/default-plain-scroll-left.png); +} + +/* line 549, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-default .x-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25); + opacity: 0.25; + cursor: default; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-top:after { + display: none; + content: "x-slicer:stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-bottom:after { + display: none; + content: "x-slicer:stretch:top"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-left:after { + display: none; + content: "x-slicer:stretch:right"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-tab-bar-default-right:after { + display: none; + content: "x-slicer:stretch:left"; +} + +/**/ +/* */ +/* line 998, ../../../ext-theme-neutral/sass/src/tab/Bar.scss */ +.x-tab-bar-plain { + border-width: 0; + padding: 0; + height: 36px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox { + border-color: #f5f5f5; +} + +/* line 6, ../../../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, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-column-header-checkbox .x-column-header-inner { + padding: 7px 4px 7px 4px; +} + +/* line 19, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-cell-row-checker .x-grid-cell-inner { + padding: 5px 4px 4px 4px; +} + +/* line 32, ../../../ext-theme-neutral/sass/src/selection/CheckboxModel.scss */ +.x-grid-hd-checker-on .x-column-header-text, +.x-grid-row-selected .x-grid-row-checker, +.x-grid-row-checked .x-grid-row-checker { + background-position: 0 -15px; +} + +/* line 1, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-expander { + cursor: pointer; +} + +/* line 7, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander { + background-image: url(images/tree/arrows.png); +} +/* line 11, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander-over .x-tree-expander { + background-position: -32px center; +} +/* line 15, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander { + background-position: -16px center; +} +/* line 19, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander { + background-position: -48px center; +} +/* line 24, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-rtl.x-tree-expander { + background: url(images/tree/arrows-rtl.png) no-repeat -48px center; +} +/* line 28, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-tree-expander-over .x-rtl.x-tree-expander { + background-position: -16px center; +} +/* line 32, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-rtl.x-tree-expander { + background-position: -32px center; +} +/* line 36, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-rtl.x-tree-expander { + background-position: 0 center; +} + +/* line 44, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow { + background-image: url(images/tree/elbow.png); +} +/* line 48, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-end { + background-image: url(images/tree/elbow-end.png); +} +/* line 52, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-plus { + background-image: url(images/tree/elbow-plus.png); +} +/* line 56, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-plus.png); +} +/* line 60, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus { + background-image: url(images/tree/elbow-minus.png); +} +/* line 64, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-minus.png); +} +/* line 68, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-tree-elbow-line { + background-image: url(images/tree/elbow-line.png); +} +/* line 73, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow { + background-image: url(images/tree/elbow-rtl.png); +} +/* line 77, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow-end { + background-image: url(images/tree/elbow-end-rtl.png); +} +/* line 81, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow-plus { + background-image: url(images/tree/elbow-plus-rtl.png); +} +/* line 85, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-plus-rtl.png); +} +/* line 89, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-rtl.x-tree-elbow-plus { + background-image: url(images/tree/elbow-minus-rtl.png); +} +/* line 93, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-grid-tree-node-expanded .x-rtl.x-tree-elbow-end-plus { + background-image: url(images/tree/elbow-end-minus-rtl.png); +} +/* line 97, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-lines .x-rtl.x-tree-elbow-line { + background-image: url(images/tree/elbow-line-rtl.png); +} + +/* line 104, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-tree-expander { + background-image: url(images/tree/elbow-plus-nl.png); +} +/* line 108, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-grid-tree-node-expanded .x-tree-expander { + background-image: url(images/tree/elbow-minus-nl.png); +} +/* line 113, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-rtl.x-tree-expander { + background-image: url(images/tree/elbow-plus-nl-rtl.png); +} +/* line 117, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-no-row-lines .x-grid-tree-node-expanded .x-rtl.x-tree-expander { + background-image: url(images/tree/elbow-minus-nl-rtl.png); +} + +/* line 123, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon { + width: 16px; + height: 24px; +} + +/* line 128, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-elbow-img { + width: 18px; + height: 24px; + margin-right: 2px; +} + +/* line 135, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-elbow-img { + margin-right: 0; + margin-left: 2px; +} + +/* line 143, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon, +.x-tree-elbow-img, +.x-tree-checkbox { + margin-top: -5px; + margin-bottom: -4px; +} + +/* line 151, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon-leaf { + background-image: url(images/tree/leaf.png); +} + +/* line 156, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-icon-leaf { + background-image: url(images/tree/leaf-rtl.png); +} + +/* line 161, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-icon-parent { + background-image: url(images/tree/folder.png); +} + +/* line 166, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-icon-parent { + background-image: url(images/tree/folder-rtl.png); +} + +/* line 171, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-node-expanded .x-tree-icon-parent { + background-image: url(images/tree/folder-open.png); +} + +/* line 176, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-node-expanded .x-rtl.x-tree-icon-parent { + background-image: url(images/tree/folder-open-rtl.png); +} + +/* line 181, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-checkbox { + margin-right: 4px; + top: 5px; + width: 15px; + height: 15px; + background-image: url(images/form/checkbox.png); +} + +/* line 190, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-checkbox { + margin-right: 0; + margin-left: 4px; +} + +/* line 196, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-checkbox-checked { + background-position: 0 -15px; +} + +/* line 200, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-loading .x-tree-icon { + background-image: url(images/tree/loading.png); +} + +/* line 205, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-tree-loading .x-rtl.x-tree-icon { + background-image: url(images/tree/loading.png); +} + +/* line 215, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-cell-inner-treecolumn { + font-size: 1px; + line-height: 0; +} + +/* line 221, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-tree-node-text { + font-size: 13px; + line-height: 15px; + padding-left: 4px; +} + +/* line 228, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-rtl.x-tree-node-text { + padding-left: 0; + padding-right: 4px; +} + +/* line 235, ../../../ext-theme-neutral/sass/src/tree/Panel.scss */ +.x-grid-cell-inner-treecolumn { + padding: 5px 10px 4px 6px; +} + +/* line 1, ../../../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, ../../../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, ../../../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, ../../../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, ../../../ext-theme-neutral/sass/src/tree/ViewDropZone.scss */ +.x-tree-ddindicator { + height: 1px; + border-width: 1px 0px 0px; + border-style: dotted; + border-color: green; +} + +/* including package ext-theme-neptune */ +/* line 1, ../../sass/src/Component.scss */ +body { + background-color: #f5f5f5; +} + +/* line 246, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small { + border-color: transparent; +} + +/* line 137, ../../../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-image: none; + background-color: transparent; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-mc { + background-image: url(images/btn/btn-plain-toolbar-small-fbg.gif); + background-position: 0 top; + background-color: transparent; +} + +/* line 212, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nlg .x-btn-plain-toolbar-small { + background-image: url(images/btn/btn-plain-toolbar-small-bg.gif); + background-position: 0 top; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-btn-plain-toolbar-small { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; + background-image: none; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-btn-plain-toolbar-small-frameInfo { + font-family: th-3-3-3-3-1-1-1-1-3-3-3-3; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-tl { + background-position: 0 -6px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-tr { + background-position: right -9px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-bl { + background-position: 0 -12px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-br { + background-position: right -15px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-bc { + background-position: 0 -3px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-tr, +.x-btn-plain-toolbar-small-br, +.x-btn-plain-toolbar-small-mr { + padding-right: 3px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-tl, +.x-btn-plain-toolbar-small-bl, +.x-btn-plain-toolbar-small-ml { + padding-left: 3px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-tc { + height: 3px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-bc { + height: 3px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-tl, +.x-btn-plain-toolbar-small-bl, +.x-btn-plain-toolbar-small-tr, +.x-btn-plain-toolbar-small-br, +.x-btn-plain-toolbar-small-tc, +.x-btn-plain-toolbar-small-bc, +.x-btn-plain-toolbar-small-ml, +.x-btn-plain-toolbar-small-mr { + zoom: 1; +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-ml, +.x-btn-plain-toolbar-small-mr { + zoom: 1; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-btn-plain-toolbar-small-mc { + padding: 1px 1px 1px 1px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-btn-plain-toolbar-small-tl, +.x-strict .x-ie7 .x-btn-plain-toolbar-small-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-small:after { + display: none; + content: "x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-plain-toolbar-small-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-bg.gif)"; +} + +/**/ +/* */ +/* line 253, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small .x-btn-inner { + font-size: 12px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + color: #666666; + padding: 0 5px; +} +/* line 261, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small .x-btn-arrow { + background-image: url(images/button/plain-toolbar-small-arrow.png); +} +/* line 269, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small .x-btn-arrow-right { + padding-right: 21px; +} +/* line 274, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small .x-rtl.x-btn-arrow-right { + padding-right: 0; + padding-left: 21px; +} +/* line 280, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small .x-btn-arrow-bottom { + padding-bottom: 18px; +} +/* line 284, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small .x-btn-glyph { + font-size: 16px; + line-height: 16px; + color: #666666; + opacity: 0.5; +} +/* line 303, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie8m .x-btn-plain-toolbar-small .x-btn-glyph { + color: #b2b2b2; +} + +/* line 309, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-disabled { + background-image: none; + background-color: transparent; +} + +/* line 335, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon .x-btn-button, +.x-btn-plain-toolbar-small-noicon .x-btn-button { + height: 16px; +} +/* line 339, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon .x-btn-inner, +.x-btn-plain-toolbar-small-noicon .x-btn-inner { + line-height: 16px; +} + +/* line 349, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon .x-btn-arrow-right .x-btn-inner, +.x-btn-plain-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner, +.x-btn-plain-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner { + padding-right: 0; +} +/* line 354, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-plain-toolbar-small-noicon .x-btn-arrow-right .x-rtl.x-btn-inner, +.x-btn-plain-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 5px; + padding-left: 0; +} + +/* line 364, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon .x-btn-inner { + width: 16px; + padding: 0; +} +/* line 370, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon .x-btn-icon-el { + width: 16px; + height: 16px; +} + +/* line 377, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-left .x-btn-button { + height: 16px; +} +/* line 382, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-left .x-btn-inner { + line-height: 16px; + padding-left: 21px; +} +/* line 388, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-left .x-rtl.x-btn-inner { + padding-left: 5px; + padding-right: 21px; +} +/* line 393, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner { + padding-right: 21px; +} +/* line 398, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-left .x-btn-icon-el { + width: 16px; + right: auto; +} +/* line 403, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-plain-toolbar-small-icon-text-left .x-btn-icon-el, .x-quirks .x-btn-plain-toolbar-small-icon-text-left .x-btn-icon-el { + height: 16px; +} +/* line 409, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-left .x-rtl.x-btn-icon-el { + left: auto; + right: 0; +} + +/* line 417, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-right .x-btn-button { + height: 16px; +} +/* line 422, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-right .x-btn-inner { + line-height: 16px; + padding-right: 21px; +} +/* line 428, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-right .x-rtl.x-btn-inner { + padding-right: 5px; + padding-left: 21px; +} +/* line 434, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-right .x-btn-icon-el { + width: 16px; + left: auto; +} +/* line 439, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-plain-toolbar-small-icon-text-right .x-btn-icon-el, .x-quirks .x-btn-plain-toolbar-small-icon-text-right .x-btn-icon-el { + height: 16px; +} +/* line 445, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-right .x-rtl.x-btn-icon-el { + left: 0; + right: auto; +} + +/* line 453, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-top .x-btn-inner { + padding-top: 21px; +} +/* line 457, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-top .x-btn-icon-el { + height: 16px; + bottom: auto; +} +/* line 465, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-plain-toolbar-small-icon-text-top .x-btn-icon-el, .x-quirks .x-ie .x-btn-plain-toolbar-small-icon-text-top .x-btn-icon-el { + width: 100%; +} + +/* line 473, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-bottom .x-btn-inner { + padding-bottom: 21px; +} +/* line 477, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-icon-text-bottom .x-btn-icon-el { + height: 16px; + top: auto; +} +/* line 485, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-ie6 .x-btn-plain-toolbar-small-icon-text-bottom .x-btn-icon-el, .x-quirks .x-ie .x-btn-plain-toolbar-small-icon-text-bottom .x-btn-icon-el { + width: 100%; +} + +/* line 492, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-over { + border-color: #e1e1e1; + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 516, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-focus { + border-color: #e1e1e1; + background-image: none; + background-color: #ebebeb; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ededed), color-stop(50%, #ebebeb), color-stop(51%, #dfdfdf), color-stop(100%, #ebebeb)); + background-image: -webkit-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -moz-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: -o-linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); + background-image: linear-gradient(top, #ededed, #ebebeb 50%, #dfdfdf 51%, #ebebeb); +} + +/* line 541, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-menu-active, +.x-btn-plain-toolbar-small-pressed { + border-color: #e1e1e1; + background-image: none; + background-color: #e1e1e1; + background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e1e1e1), color-stop(50%, #d5d5d5), color-stop(51%, #e1e1e1), color-stop(100%, #e4e4e4)); + background-image: -webkit-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -moz-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: -o-linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); + background-image: linear-gradient(top, #e1e1e1, #d5d5d5 50%, #e1e1e1 51%, #e4e4e4); +} + +/* line 573, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-over .x-frame-tl, +.x-btn-plain-toolbar-small-over .x-frame-bl, +.x-btn-plain-toolbar-small-over .x-frame-tr, +.x-btn-plain-toolbar-small-over .x-frame-br, +.x-btn-plain-toolbar-small-over .x-frame-tc, +.x-btn-plain-toolbar-small-over .x-frame-bc { + background-image: url(images/btn/btn-plain-toolbar-small-over-corners.gif); +} +/* line 577, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-over .x-frame-ml, +.x-btn-plain-toolbar-small-over .x-frame-mr { + background-image: url(images/btn/btn-plain-toolbar-small-over-sides.gif); +} +/* line 580, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-over .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-plain-toolbar-small-over-fbg.gif); +} + +/* line 595, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-focus .x-frame-tl, +.x-btn-plain-toolbar-small-focus .x-frame-bl, +.x-btn-plain-toolbar-small-focus .x-frame-tr, +.x-btn-plain-toolbar-small-focus .x-frame-br, +.x-btn-plain-toolbar-small-focus .x-frame-tc, +.x-btn-plain-toolbar-small-focus .x-frame-bc { + background-image: url(images/btn/btn-plain-toolbar-small-focus-corners.gif); +} +/* line 599, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-focus .x-frame-ml, +.x-btn-plain-toolbar-small-focus .x-frame-mr { + background-image: url(images/btn/btn-plain-toolbar-small-focus-sides.gif); +} +/* line 602, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-focus .x-frame-mc { + background-color: #ebebeb; + background-image: url(images/btn/btn-plain-toolbar-small-focus-fbg.gif); +} + +/* line 618, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-menu-active .x-frame-tl, +.x-btn-plain-toolbar-small-menu-active .x-frame-bl, +.x-btn-plain-toolbar-small-menu-active .x-frame-tr, +.x-btn-plain-toolbar-small-menu-active .x-frame-br, +.x-btn-plain-toolbar-small-menu-active .x-frame-tc, +.x-btn-plain-toolbar-small-menu-active .x-frame-bc, +.x-btn-plain-toolbar-small-pressed .x-frame-tl, +.x-btn-plain-toolbar-small-pressed .x-frame-bl, +.x-btn-plain-toolbar-small-pressed .x-frame-tr, +.x-btn-plain-toolbar-small-pressed .x-frame-br, +.x-btn-plain-toolbar-small-pressed .x-frame-tc, +.x-btn-plain-toolbar-small-pressed .x-frame-bc { + background-image: url(images/btn/btn-plain-toolbar-small-pressed-corners.gif); +} +/* line 622, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-menu-active .x-frame-ml, +.x-btn-plain-toolbar-small-menu-active .x-frame-mr, +.x-btn-plain-toolbar-small-pressed .x-frame-ml, +.x-btn-plain-toolbar-small-pressed .x-frame-mr { + background-image: url(images/btn/btn-plain-toolbar-small-pressed-sides.gif); +} +/* line 625, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-menu-active .x-frame-mc, +.x-btn-plain-toolbar-small-pressed .x-frame-mc { + background-color: #e1e1e1; + background-image: url(images/btn/btn-plain-toolbar-small-pressed-fbg.gif); +} + +/* line 640, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-disabled .x-frame-tl, +.x-btn-plain-toolbar-small-disabled .x-frame-bl, +.x-btn-plain-toolbar-small-disabled .x-frame-tr, +.x-btn-plain-toolbar-small-disabled .x-frame-br, +.x-btn-plain-toolbar-small-disabled .x-frame-tc, +.x-btn-plain-toolbar-small-disabled .x-frame-bc { + background-image: url(images/btn/btn-plain-toolbar-small-disabled-corners.gif); +} +/* line 644, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-disabled .x-frame-ml, +.x-btn-plain-toolbar-small-disabled .x-frame-mr { + background-image: url(images/btn/btn-plain-toolbar-small-disabled-sides.gif); +} +/* line 647, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-disabled .x-frame-mc { + background-color: transparent; + background-image: url(images/btn/btn-plain-toolbar-small-disabled-fbg.gif); +} + +/* line 659, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-plain-toolbar-small-over { + background-image: url(images/btn/btn-plain-toolbar-small-over-bg.gif); +} + +/* line 667, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-plain-toolbar-small-focus { + background-image: url(images/btn/btn-plain-toolbar-small-focus-bg.gif); +} + +/* line 676, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-plain-toolbar-small-menu-active, +.x-nlg .x-btn-plain-toolbar-small-pressed { + background-image: url(images/btn/btn-plain-toolbar-small-pressed-bg.gif); +} + +/* line 684, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nlg .x-btn-plain-toolbar-small-disabled { + background-image: url(images/btn/btn-plain-toolbar-small-disabled-bg.gif); +} + +/* line 691, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-nbr .x-btn-plain-toolbar-small { + background-image: none; +} + +/* line 709, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small .x-btn-split-right { + background-image: url(images/button/plain-toolbar-small-s-arrow.png); + padding-right: 23px; +} +/* line 715, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small .x-rtl.x-btn-split-right { + background-image: url(images/button/plain-toolbar-small-s-arrow-rtl.png); + padding-right: 0; + padding-left: 23px; +} +/* line 722, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small .x-btn-split-bottom { + background-image: url(images/button/plain-toolbar-small-s-arrow-b.png); + padding-bottom: 20px; +} + +/* line 745, ../../../ext-theme-neutral/sass/src/button/Button.scss */ +.x-btn-plain-toolbar-small-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-small-over:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-over-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-over-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-small-focus:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-focus-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-small-pressed:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-pressed-bg.gif)"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-btn-plain-toolbar-small-disabled:after { + display: none; + content: "x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-disabled-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-disabled-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-disabled-bg.gif)"; +} + +/**/ +/* */ +/* line 210, ../../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 212, ../../sass/src/button/Button.scss */ +.x-strict .x-ie8 .x-btn-plain-toolbar-small-disabled .x-btn-icon-el, .x-strict .x-ie8 +.x-btn-plain-toolbar-medium-disabled .x-btn-icon-el, .x-strict .x-ie8 +.x-btn-plain-toolbar-large-disabled .x-btn-icon-el { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); + opacity: 0.5; +} + +/* line 3, ../../sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-toolbar-scroll-left { + margin-right: 4px; +} +/* line 7, ../../sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-toolbar-scroll-right { + margin-left: 4px; +} +/* line 12, ../../sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-toolbar-scroll-left, .x-toolbar-default .x-toolbar-scroll-right { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60); + opacity: 0.6; +} +/* line 17, ../../sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-toolbar-scroll-left-hover, .x-toolbar-default .x-toolbar-scroll-right-hover { + background-position: 0 0; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80); + opacity: 0.8; +} +/* line 23, ../../sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-toolbar-scroll-left-pressed, .x-toolbar-default .x-toolbar-scroll-right-pressed { + background-position: 0 0; + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100); + opacity: 1; +} +/* line 29, ../../sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller-disabled { + filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25); + opacity: 0.25; +} +/* line 33, ../../sass/src/toolbar/Toolbar.scss */ +.x-toolbar-default .x-box-scroller { + background-color: white; +} + +/* line 41, ../../sass/src/toolbar/Toolbar.scss */ +.x-toolbar-scroller { + padding: 6px 4px 6px 4px; +} + +/* line 45, ../../sass/src/toolbar/Toolbar.scss */ +.x-toolbar-vertical-scroller { + padding: 3px 8px 3px 8px; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light { + border-color: #157fcc; + padding: 0; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light { + font-size: 13px; + border: 1px solid #157fcc; +} +/* line 219, ../../../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: #dfeaf2; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-horizontal { + padding: 9px 9px 10px 9px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-horizontal-noborder { + padding: 10px 10px 10px 10px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical { + padding: 9px 9px 9px 10px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical-noborder { + padding: 10px 10px 10px 10px; +} + +/* line 249, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-light-vertical { + padding: 9px 10px 9px 9px; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-light-vertical-noborder { + padding: 10px 10px 10px 10px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-light { + color: #666666; + font-size: 13px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + line-height: 15px; + padding: 1px 0 0; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-light { + background: white; + border-color: #157fcc; + color: black; + font-size: 13px; + font-size: normal; + border-width: 1px; + border-style: solid; +} + +/* line 432, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light { + background-image: none; + background-color: #dfeaf2; +} + +/* line 436, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical { + background-image: none; + background-color: #dfeaf2; +} + +/* line 441, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-light-vertical { + background-image: none; + background-color: #dfeaf2; +} + +/* line 494, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-light-collapsed-border-top { + border-bottom-width: 1px !important; +} +/* line 498, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-light-collapsed-border-right { + border-left-width: 1px !important; +} +/* line 502, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-light-collapsed-border-bottom { + border-top-width: 1px !important; +} +/* line 506, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-light-collapsed-border-left { + border-right-width: 1px !important; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-top:after { + display: none; + content: "x-slicer:stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-bottom:after { + display: none; + content: "x-slicer:stretch:bottom"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-left:after { + display: none; + content: "x-slicer:stretch:left"; +} + +/**/ +/* */ +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-right:after { + display: none; + content: "x-slicer:stretch:left"; +} + +/**/ +/* */ +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-light-vertical .x-panel-header-text-container { + background-color: #dfeaf2; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#dfeaf2); +} + +/* line 527, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical .x-rtl.x-panel-header-text-container { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-light-vertical .x-rtl.x-panel-header-text-container { + background-color: #dfeaf2; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#dfeaf2); +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light .x-panel-header-glyph { + color: white; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-light .x-panel-header-glyph { + color: #eff4f8; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-horizontal .x-panel-header-icon-before-title { + margin: 0 6px 0 0; +} +/* line 585, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-horizontal .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 0 6px; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 6px; +} +/* line 595, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-horizontal .x-rtl.x-panel-header-icon-after-title { + margin: 0 6px 0 0; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical .x-panel-header-icon-before-title { + margin: 0 0 6px 0; +} +/* line 607, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 6px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical .x-panel-header-icon-after-title { + margin: 6px 0 0 0; +} +/* line 617, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical .x-rtl.x-panel-header-icon-after-title { + margin: 6px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-horizontal .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 630, ../../../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 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-horizontal .x-tool-before-title { + margin: 0 6px 0 0; +} +/* line 640, ../../../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 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical .x-tool-after-title { + margin: 6px 0 0 0; +} +/* line 652, ../../../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 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-vertical .x-tool-before-title { + margin: 0 0 6px 0; +} +/* line 662, ../../../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 670, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-light-collapsed-border-right { + border-right-width: 1px !important; +} +/* line 673, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-light-collapsed-border-left { + border-left-width: 1px !important; +} + +/* line 687, ../../../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, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-l { + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-b { + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-bl { + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-r { + border-right-color: #157fcc !important; + border-right-width: 1px !important; +} + +/* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-rl { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-rb { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-rbl { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-t { + border-top-color: #157fcc !important; + border-top-width: 1px !important; +} + +/* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-tl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-tb { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-tbl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-tr { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; +} + +/* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-trl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-trb { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-outer-border-trbl { + border-color: #157fcc !important; + border-width: 1px !important; +} + +/* line 206, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed { + border-color: #dfeaf2; + padding: 0; +} + +/* line 212, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed { + font-size: 13px; + border: 5px solid #dfeaf2; +} +/* line 219, ../../../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: #dfeaf2; +} + +/* line 232, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-horizontal { + padding: 5px; +} + +/* line 236, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-horizontal-noborder { + padding: 10px 10px 5px 10px; +} + +/* line 240, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-vertical { + padding: 5px 5px 5px 5px; +} + +/* line 244, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-vertical-noborder { + padding: 10px 10px 10px 5px; +} + +/* line 249, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-light-framed-vertical { + padding: 5px 5px 5px 5px; +} + +/* line 253, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-light-framed-vertical-noborder { + padding: 10px 5px 10px 10px; +} + +/* line 260, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-text-container-light-framed { + color: #666666; + font-size: 13px; + font-weight: bold; + font-family: helvetica, arial, verdana, sans-serif; + line-height: 15px; + padding: 1px 0 0; + text-transform: none; +} + +/* line 272, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-body-light-framed { + background: white; + border-color: #dfeaf2; + color: black; + font-size: 13px; + font-size: normal; + border-width: 1px; + border-style: solid; +} + +/* line 137, ../../../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: 0px 0px 0px 0px; + border-width: 5px; + border-style: solid; + background-color: white; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-mc { + background-color: white; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-light-framed { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-light-framed-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-0-0-0-0; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-tr, +.x-panel-light-framed-br, +.x-panel-light-framed-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-tl, +.x-panel-light-framed-bl, +.x-panel-light-framed-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-tl, +.x-panel-light-framed-bl, +.x-panel-light-framed-tr, +.x-panel-light-framed-br, +.x-panel-light-framed-tc, +.x-panel-light-framed-bc, +.x-panel-light-framed-ml, +.x-panel-light-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-light-framed-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-ml, +.x-panel-light-framed-mr { + zoom: 1; + background-image: url(images/panel/panel-light-framed-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-light-framed-mc { + padding: 0px 0px 0px 0px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-light-framed-tl, +.x-strict .x-ie7 .x-panel-light-framed-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-light-framed:after { + display: none; + content: "x-slicer:corners:url(images/panel/panel-light-framed-corners.gif), sides:url(images/panel/panel-light-framed-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px 5px 5px 5px; + border-width: 5px 5px 0 5px; + border-style: solid; + background-color: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-light-framed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-light-framed-top-frameInfo { + font-family: dh-4-4-0-0-5-5-0-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-tr, +.x-panel-header-light-framed-top-br, +.x-panel-header-light-framed-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-tl, +.x-panel-header-light-framed-top-bl, +.x-panel-header-light-framed-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-bc { + height: 0; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-tl, +.x-panel-header-light-framed-top-bl, +.x-panel-header-light-framed-top-tr, +.x-panel-header-light-framed-top-br, +.x-panel-header-light-framed-top-tc, +.x-panel-header-light-framed-top-bc, +.x-panel-header-light-framed-top-ml, +.x-panel-header-light-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-ml, +.x-panel-header-light-framed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-top-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-light-framed-top-tl, +.x-strict .x-ie7 .x-panel-header-light-framed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-framed-top:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-top-corners.gif), sides:url(images/panel-header/panel-header-light-framed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px 5px 5px 5px; + border-width: 5px 5px 5px 0; + border-style: solid; + background-color: #dfeaf2; +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-light-framed-right { + background-image: none; + background-color: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-light-framed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-light-framed-right-frameInfo { + font-family: dh-0-4-4-0-5-5-5-0-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-ml { + background-position: 0 right; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-mr { + background-position: right right; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-tr, +.x-panel-header-light-framed-right-br, +.x-panel-header-light-framed-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-tl, +.x-panel-header-light-framed-right-bl, +.x-panel-header-light-framed-right-ml { + padding-left: 0; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-tl, +.x-panel-header-light-framed-right-bl, +.x-panel-header-light-framed-right-tr, +.x-panel-header-light-framed-right-br, +.x-panel-header-light-framed-right-tc, +.x-panel-header-light-framed-right-bc, +.x-panel-header-light-framed-right-ml, +.x-panel-header-light-framed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-light-framed-right-tl, .x-rtl.x-panel-header-light-framed-right-ml, .x-rtl.x-panel-header-light-framed-right-bl, .x-rtl.x-panel-header-light-framed-right-tr, .x-rtl.x-panel-header-light-framed-right-mr, .x-rtl.x-panel-header-light-framed-right-br { + background-image: url(images/panel-header/panel-header-light-framed-right-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-ml, +.x-panel-header-light-framed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-right-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-light-framed-right-tl, +.x-strict .x-ie7 .x-panel-header-light-framed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-framed-right:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-light-framed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-light-framed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px 5px 5px 5px; + border-width: 0 5px 5px 5px; + border-style: solid; + background-color: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-light-framed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-light-framed-bottom-frameInfo { + font-family: dh-0-0-4-4-0-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-tr, +.x-panel-header-light-framed-bottom-br, +.x-panel-header-light-framed-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-tl, +.x-panel-header-light-framed-bottom-bl, +.x-panel-header-light-framed-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-tc { + height: 0; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-tl, +.x-panel-header-light-framed-bottom-bl, +.x-panel-header-light-framed-bottom-tr, +.x-panel-header-light-framed-bottom-br, +.x-panel-header-light-framed-bottom-tc, +.x-panel-header-light-framed-bottom-bc, +.x-panel-header-light-framed-bottom-ml, +.x-panel-header-light-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-ml, +.x-panel-header-light-framed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-bottom-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-light-framed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-light-framed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-framed-bottom:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-light-framed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px 5px 5px 5px; + border-width: 5px 0 5px 5px; + border-style: solid; + background-color: #dfeaf2; +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-light-framed-left { + background-image: none; + background-color: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-light-framed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-light-framed-left-frameInfo { + font-family: dh-4-0-0-4-5-0-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-ml { + background-position: 0 left; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-mr { + background-position: right left; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-tr, +.x-panel-header-light-framed-left-br, +.x-panel-header-light-framed-left-mr { + padding-right: 0; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-tl, +.x-panel-header-light-framed-left-bl, +.x-panel-header-light-framed-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-tl, +.x-panel-header-light-framed-left-bl, +.x-panel-header-light-framed-left-tr, +.x-panel-header-light-framed-left-br, +.x-panel-header-light-framed-left-tc, +.x-panel-header-light-framed-left-bc, +.x-panel-header-light-framed-left-ml, +.x-panel-header-light-framed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-light-framed-left-tl, .x-rtl.x-panel-header-light-framed-left-ml, .x-rtl.x-panel-header-light-framed-left-bl, .x-rtl.x-panel-header-light-framed-left-tr, .x-rtl.x-panel-header-light-framed-left-mr, .x-rtl.x-panel-header-light-framed-left-br { + background-image: url(images/panel-header/panel-header-light-framed-left-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-ml, +.x-panel-header-light-framed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-left-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-light-framed-left-tl, +.x-strict .x-ie7 .x-panel-header-light-framed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-framed-left:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-light-framed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-light-framed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-light-framed-collapsed-top { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-light-framed-collapsed-top-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-ml { + background-position: 0 top; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-mr { + background-position: right top; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-tr, +.x-panel-header-light-framed-collapsed-top-br, +.x-panel-header-light-framed-collapsed-top-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-tl, +.x-panel-header-light-framed-collapsed-top-bl, +.x-panel-header-light-framed-collapsed-top-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-tl, +.x-panel-header-light-framed-collapsed-top-bl, +.x-panel-header-light-framed-collapsed-top-tr, +.x-panel-header-light-framed-collapsed-top-br, +.x-panel-header-light-framed-collapsed-top-tc, +.x-panel-header-light-framed-collapsed-top-bc, +.x-panel-header-light-framed-collapsed-top-ml, +.x-panel-header-light-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-collapsed-top-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-ml, +.x-panel-header-light-framed-collapsed-top-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-collapsed-top-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-top-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-top-tl, +.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-top-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-framed-collapsed-top:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-top-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #dfeaf2; +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-light-framed-collapsed-right { + background-image: none; + background-color: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-light-framed-collapsed-right { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-light-framed-collapsed-right-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-ml { + background-position: 0 right; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-mr { + background-position: right right; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-tr, +.x-panel-header-light-framed-collapsed-right-br, +.x-panel-header-light-framed-collapsed-right-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-tl, +.x-panel-header-light-framed-collapsed-right-bl, +.x-panel-header-light-framed-collapsed-right-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-tl, +.x-panel-header-light-framed-collapsed-right-bl, +.x-panel-header-light-framed-collapsed-right-tr, +.x-panel-header-light-framed-collapsed-right-br, +.x-panel-header-light-framed-collapsed-right-tc, +.x-panel-header-light-framed-collapsed-right-bc, +.x-panel-header-light-framed-collapsed-right-ml, +.x-panel-header-light-framed-collapsed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-collapsed-right-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-light-framed-collapsed-right-tl, .x-rtl.x-panel-header-light-framed-collapsed-right-ml, .x-rtl.x-panel-header-light-framed-collapsed-right-bl, .x-rtl.x-panel-header-light-framed-collapsed-right-tr, .x-rtl.x-panel-header-light-framed-collapsed-right-mr, .x-rtl.x-panel-header-light-framed-collapsed-right-br { + background-image: url(images/panel-header/panel-header-light-framed-collapsed-right-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-ml, +.x-panel-header-light-framed-collapsed-right-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-collapsed-right-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-right-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-right-tl, +.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-right-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-framed-collapsed-right:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-light-framed-collapsed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-right-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-light-framed-collapsed-bottom { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-light-framed-collapsed-bottom-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-ml { + background-position: 0 bottom; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-mr { + background-position: right bottom; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-tr, +.x-panel-header-light-framed-collapsed-bottom-br, +.x-panel-header-light-framed-collapsed-bottom-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-tl, +.x-panel-header-light-framed-collapsed-bottom-bl, +.x-panel-header-light-framed-collapsed-bottom-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-tl, +.x-panel-header-light-framed-collapsed-bottom-bl, +.x-panel-header-light-framed-collapsed-bottom-tr, +.x-panel-header-light-framed-collapsed-bottom-br, +.x-panel-header-light-framed-collapsed-bottom-tc, +.x-panel-header-light-framed-collapsed-bottom-bc, +.x-panel-header-light-framed-collapsed-bottom-ml, +.x-panel-header-light-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-collapsed-bottom-corners.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-ml, +.x-panel-header-light-framed-collapsed-bottom-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-collapsed-bottom-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-bottom-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-bottom-tl, +.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-bottom-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-framed-collapsed-bottom:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-bottom-sides.gif)"; +} + +/**/ +/* */ +/* line 137, ../../../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: 5px 5px 5px 5px; + border-width: 5px; + border-style: solid; + background-color: #dfeaf2; +} + +/* line 178, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-light-framed-collapsed-left { + background-image: none; + background-color: #dfeaf2; +} + +/* line 189, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-mc { + background-color: #dfeaf2; +} + +/* line 235, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-nbr .x-panel-header-light-framed-collapsed-left { + padding: 0 !important; + border-width: 0 !important; + -webkit-border-radius: 0px; + -moz-border-radius: 0px; + -ms-border-radius: 0px; + -o-border-radius: 0px; + border-radius: 0px; + background-color: transparent; +} + +/* line 255, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +body.x-nbr .x-panel-header-light-framed-collapsed-left-frameInfo { + font-family: dh-4-4-4-4-5-5-5-5-5-5-5-5; +} + +/* line 322, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-tl { + background-position: 0 -10px; +} + +/* line 326, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-tr { + background-position: right -15px; +} + +/* line 330, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-bl { + background-position: 0 -20px; +} + +/* line 334, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-br { + background-position: right -25px; +} + +/* line 338, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-ml { + background-position: 0 left; +} + +/* line 342, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-mr { + background-position: right left; +} + +/* line 346, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-tc { + background-position: 0 0; +} + +/* line 350, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-bc { + background-position: 0 -5px; +} + +/* line 357, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-tr, +.x-panel-header-light-framed-collapsed-left-br, +.x-panel-header-light-framed-collapsed-left-mr { + padding-right: 5px; +} + +/* line 363, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-tl, +.x-panel-header-light-framed-collapsed-left-bl, +.x-panel-header-light-framed-collapsed-left-ml { + padding-left: 5px; +} + +/* line 367, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-tc { + height: 5px; +} + +/* line 370, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-bc { + height: 5px; +} + +/* line 381, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-tl, +.x-panel-header-light-framed-collapsed-left-bl, +.x-panel-header-light-framed-collapsed-left-tr, +.x-panel-header-light-framed-collapsed-left-br, +.x-panel-header-light-framed-collapsed-left-tc, +.x-panel-header-light-framed-collapsed-left-bc, +.x-panel-header-light-framed-collapsed-left-ml, +.x-panel-header-light-framed-collapsed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-collapsed-left-corners.gif); +} + +/* line 397, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-rtl.x-panel-header-light-framed-collapsed-left-tl, .x-rtl.x-panel-header-light-framed-collapsed-left-ml, .x-rtl.x-panel-header-light-framed-collapsed-left-bl, .x-rtl.x-panel-header-light-framed-collapsed-left-tr, .x-rtl.x-panel-header-light-framed-collapsed-left-mr, .x-rtl.x-panel-header-light-framed-collapsed-left-br { + background-image: url(images/panel-header/panel-header-light-framed-collapsed-left-corners-rtl.gif); +} + +/* line 425, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-ml, +.x-panel-header-light-framed-collapsed-left-mr { + zoom: 1; + background-image: url(images/panel-header/panel-header-light-framed-collapsed-left-sides.gif); + background-repeat: repeat-y; +} + +/* line 437, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-panel-header-light-framed-collapsed-left-mc { + padding: 5px 5px 5px 5px; +} + +/* line 446, ../../../ext-theme-base/sass/etc/mixins/frame.scss */ +.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-left-tl, +.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-left-bl { + position: relative; + right: 0; +} + +/**/ +/* line 78, ../../../ext-theme-base/sass/etc/mixins/slicer.scss */ +.x-panel-header-light-framed-collapsed-left:after { + display: none; + content: "x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-light-framed-collapsed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-left-sides.gif)"; +} + +/**/ +/* */ +/* line 396, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-light-framed-top { + border-bottom-width: 5px !important; +} +/* line 400, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-light-framed-right { + border-left-width: 5px !important; +} +/* line 404, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-light-framed-bottom { + border-top-width: 5px !important; +} +/* line 408, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel .x-panel-header-light-framed-left { + border-right-width: 5px !important; +} + +/* line 414, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-light-framed-collapsed-top { + border-bottom-width: 0 !important; +} +/* line 418, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-light-framed-collapsed-right { + border-left-width: 0 !important; +} +/* line 422, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-light-framed-collapsed-bottom { + border-top-width: 0 !important; +} +/* line 426, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-nbr .x-panel-header-light-framed-collapsed-left { + border-right-width: 0 !important; +} + +/* line 522, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-vertical .x-panel-header-text-container { + -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; + transform: rotate(90deg); + transform-origin: 0 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-light-framed-vertical .x-panel-header-text-container { + background-color: #dfeaf2; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1), progid:DXImageTransform.Microsoft.Chroma(color=#dfeaf2); +} + +/* line 527, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-vertical .x-rtl.x-panel-header-text-container { + -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; + transform: rotate(270deg); + transform-origin: 100% 0; +} +/* line 36, ../../../ext-theme-base/sass/etc/mixins/rotate-element.scss */ +.x-ie9m .x-panel-header-light-framed-vertical .x-rtl.x-panel-header-text-container { + background-color: #dfeaf2; + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3), progid:DXImageTransform.Microsoft.Chroma(color=#dfeaf2); +} + +/* line 551, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed .x-panel-header-icon { + width: 16px; + height: 16px; + background-position: center center; +} +/* line 556, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed .x-panel-header-glyph { + color: white; + font-size: 16px; + line-height: 16px; + opacity: 0.5; +} +/* line 572, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-ie8m .x-panel-header-light-framed .x-panel-header-glyph { + color: #eff4f8; +} + +/* line 580, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-horizontal .x-panel-header-icon-before-title { + margin: 0 6px 0 0; +} +/* line 585, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-horizontal .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 0 6px; +} +/* line 590, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-horizontal .x-panel-header-icon-after-title { + margin: 0 0 0 6px; +} +/* line 595, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-horizontal .x-rtl.x-panel-header-icon-after-title { + margin: 0 6px 0 0; +} + +/* line 602, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-vertical .x-panel-header-icon-before-title { + margin: 0 0 6px 0; +} +/* line 607, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-vertical .x-rtl.x-panel-header-icon-before-title { + margin: 0 0 6px 0; +} +/* line 612, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-vertical .x-panel-header-icon-after-title { + margin: 6px 0 0 0; +} +/* line 617, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-vertical .x-rtl.x-panel-header-icon-after-title { + margin: 6px 0 0 0; +} + +/* line 625, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-horizontal .x-tool-after-title { + margin: 0 0 0 6px; +} +/* line 630, ../../../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 635, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-horizontal .x-tool-before-title { + margin: 0 6px 0 0; +} +/* line 640, ../../../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 647, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-vertical .x-tool-after-title { + margin: 6px 0 0 0; +} +/* line 652, ../../../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 657, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-header-light-framed-vertical .x-tool-before-title { + margin: 0 0 6px 0; +} +/* line 662, ../../../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 670, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-light-framed-collapsed-border-right { + border-right-width: 5px !important; +} +/* line 673, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-rtl.x-panel-header-light-framed-collapsed-border-left { + border-left-width: 5px !important; +} + +/* line 684, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed-resizable { + overflow: visible; +} +/* line 687, ../../../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 696, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed-resizable .x-panel-handle-north-br { + top: -5px; +} +/* line 699, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed-resizable .x-panel-handle-south-br { + bottom: -5px; +} +/* line 702, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed-resizable .x-panel-handle-east-br { + right: -5px; +} +/* line 705, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed-resizable .x-panel-handle-west-br { + left: -5px; +} +/* line 708, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed-resizable .x-panel-handle-northwest-br { + left: -5px; + top: -5px; +} +/* line 712, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed-resizable .x-panel-handle-northeast-br { + right: -5px; + top: -5px; +} +/* line 716, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed-resizable .x-panel-handle-southeast-br { + right: -5px; + bottom: -5px; +} +/* line 720, ../../../ext-theme-neutral/sass/src/panel/Panel.scss */ +.x-panel-light-framed-resizable .x-panel-handle-southwest-br { + left: -5px; + bottom: -5px; +} + +/* line 2, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-l { + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 6, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-b { + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 10, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-bl { + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 16, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-r { + border-right-color: #157fcc !important; + border-right-width: 1px !important; +} + +/* line 20, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-rl { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 26, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-rb { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 32, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-rbl { + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 40, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-t { + border-top-color: #157fcc !important; + border-top-width: 1px !important; +} + +/* line 44, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-tl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 50, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-tb { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 56, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-tbl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 64, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-tr { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; +} + +/* line 70, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-trl { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-left-color: #157fcc !important; + border-left-width: 1px !important; +} + +/* line 78, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-trb { + border-top-color: #157fcc !important; + border-top-width: 1px !important; + border-right-color: #157fcc !important; + border-right-width: 1px !important; + border-bottom-color: #157fcc !important; + border-bottom-width: 1px !important; +} + +/* line 86, ../../../ext-theme-base/sass/etc/mixins/border-management.scss */ +.x-panel-light-framed-outer-border-trbl { + border-color: #157fcc !important; + border-width: 1px !important; +} + +/* line 1, ../../sass/src/form/field/Trigger.scss */ +.x-form-trigger { + height: 22px; +} + +/* line 9, ../../sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap { + border: 1px solid; + border-color: silver #d9d9d9 #d9d9d9; +} +/* line 12, ../../sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap .x-form-text { + border-width: 0; + height: 22px; +} +/* line 16, ../../sass/src/form/field/Trigger.scss */ +.x-content-box .x-form-trigger-wrap .x-form-text { + height: 15px; +} +/* line 22, ../../sass/src/form/field/Trigger.scss */ +.x-form-trigger-wrap-focus .x-form-trigger-wrap { + border-color: #3892d3; +} +/* line 26, ../../sass/src/form/field/Trigger.scss */ +.x-form-invalid .x-form-trigger-wrap { + border-color: #cf4c35; +} + +/* line 3, ../../sass/src/form/field/File.scss */ +.x-form-file-wrap .x-form-trigger-wrap { + border: 0; +} + +/* line 7, ../../sass/src/form/field/File.scss */ +.x-form-file-wrap .x-form-trigger-wrap .x-form-text { + border: 1px solid; + border-color: silver #d9d9d9 #d9d9d9; + height: 24px; +} +/* line 13, ../../sass/src/form/field/File.scss */ +.x-content-box .x-form-file-wrap .x-form-trigger-wrap .x-form-text { + height: 15px; +} + +/* line 1, ../../sass/src/form/field/HtmlEditor.scss */ +.x-html-editor-container { + border: 1px solid; + border-color: silver #d9d9d9 #d9d9d9; +} + +/* line 1, ../../sass/src/grid/header/Container.scss */ +.x-grid-header-ct { + border: 1px solid silver; +} + +/* line 6, ../../sass/src/grid/column/Column.scss */ +.x-column-header-trigger { + background-image: url(images/grid/hd-pop.png); + border-left: 1px solid silver; +} + +/* line 12, ../../sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-trigger { + border-right: 1px solid silver; + border-left: 0; +} + +/* line 18, ../../sass/src/grid/column/Column.scss */ +.x-column-header-last { + border-right: 0; +} +/* line 20, ../../sass/src/grid/column/Column.scss */ +.x-column-header-last .x-column-header-over .x-column-header-trigger { + border-right: 1px solid silver; +} + +/* line 25, ../../sass/src/grid/column/Column.scss */ +.x-column-header-last { + border-right: 0 none; +} + +/* line 29, ../../sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-last { + border-left: 0; +} +/* line 31, ../../sass/src/grid/column/Column.scss */ +.x-rtl.x-column-header-last .x-column-header-over .x-column-header-trigger { + border-left: 1px solid silver; +} + +/* line 2, ../../sass/src/layout/container/Accordion.scss */ +.x-accordion-hd .x-tool-img { + background-image: url(images/tools/tool-sprites-dark.png); +} + +/* line 6, ../../sass/src/layout/container/Accordion.scss */ +.x-accordion-item .x-accordion-hd-over { + background-color: #e6f1f9; +} + +/* line 1, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-handle { + background-color: #157fcc; + background-repeat: no-repeat; +} + +/* line 10, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-east, +.x-resizable-over .x-resizable-handle-west, +.x-resizable-pinned .x-resizable-handle-east, +.x-resizable-pinned .x-resizable-handle-west { + background-position: center; +} +/* line 15, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-south, +.x-resizable-over .x-resizable-handle-north, +.x-resizable-pinned .x-resizable-handle-south, +.x-resizable-pinned .x-resizable-handle-north { + background-position: center; +} +/* line 19, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southeast, +.x-resizable-pinned .x-resizable-handle-southeast { + background-position: -2px -2px; +} +/* line 23, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northwest, +.x-resizable-pinned .x-resizable-handle-northwest { + background-position: 2px 2px; +} +/* line 27, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-northeast, +.x-resizable-pinned .x-resizable-handle-northeast { + background-position: -2px 2px; +} +/* line 31, ../../sass/src/resizer/Resizer.scss */ +.x-resizable-over .x-resizable-handle-southwest, +.x-resizable-pinned .x-resizable-handle-southwest { + background-position: 2px -2px; +} diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/ext-theme-neptune-all-rtl.css b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/ext-theme-neptune-all-rtl.css new file mode 100644 index 0000000..9539ea0 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/ext-theme-neptune-all-rtl.css @@ -0,0 +1 @@ +.x-body{margin:0}img{border:0}.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}.x-rtl{direction:rtl}.x-ltr{direction:ltr}.x-clear{overflow:hidden;clear:both;font-size:0;line-height:0;display:table}.x-strict .x-ie7 .x-clear{height:0;width:0}.x-layer{position:absolute!important;overflow:hidden;zoom:1}.x-fixed-layer{position:fixed!important;overflow:hidden;zoom:1}.x-shim{position:absolute;left:0;top:0;overflow:hidden;filter:alpha(opacity=0);opacity:0}.x-hide-display{display:none!important}.x-hide-visibility{visibility:hidden!important}.x-ie6 .x-item-disabled{filter:none}.x-hidden,.x-hide-offsets{display:block!important;visibility:hidden!important;position:absolute!important;top:-10000px!important}.x-hide-nosize{height:0!important;width:0!important}.x-hide-clip{position:absolute!important;clip:rect(0,0,0,0);clip:rect(0 0 0 0)}.x-masked-relative{position:relative}.x-ie-shadow{background-color:#777;display:none;position:absolute;overflow:hidden;zoom:1}.x-unselectable{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x-selectable{cursor:auto;-moz-user-select:text;-webkit-user-select:text;-ms-user-select:text;user-select:text;-o-user-select:text}.x-list-plain{list-style-type:none;margin:0;padding:0}.x-table-plain{border-collapse:collapse;border-spacing:0;font-size:1em}.x-frame-tl,.x-frame-tr,.x-frame-tc,.x-frame-bl,.x-frame-br,.x-frame-bc{overflow:hidden;background-repeat:no-repeat}.x-frame-tc,.x-frame-bc{background-repeat:repeat-x}.x-frame-mc{background-repeat:repeat-x;overflow:hidden}.x-proxy-el{position:absolute;background:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x-css-shadow{position:absolute;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px}.x-item-disabled,.x-item-disabled *{cursor:default}.x-box-item{position:absolute!important;left:0;top:0}.x-rtl>.x-box-item{right:0;left:auto}.x-ie6 .x-rtl .x-box-item,.x-quirks .x-ie .x-rtl .x-box-item{right:0;left:auto}div.x-editor{overflow:visible}.x-mask{z-index:100;position:absolute;width:100%;height:100%;zoom:1}.x-mask-shim{z-index:100;position:absolute;top:0;left:0;width:100%;height:100%}.x-mask-msg{z-index:20001;position:absolute}.x-progress{position:relative;border-style:solid;overflow:hidden}.x-progress-bar{overflow:hidden;position:absolute;width:0;height:100%}.x-progress-text{overflow:hidden;position:absolute}.x-btn{display:inline-block;position:relative;zoom:1;*display:inline;outline:0;cursor:pointer;white-space:nowrap;vertical-align:middle;text-decoration:none}.x-btn-wrap{position:relative;display:block}.x-btn-button{position:relative;display:block;text-decoration:none;overflow:hidden;zoom:1}.x-btn-inner{display:block;white-space:nowrap;overflow:hidden;zoom:1}.x-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x-btn-inner-center{text-align:center}.x-btn-inner-left{text-align:left}.x-rtl.x-btn-inner-left{text-align:right}.x-btn-inner-right{text-align:right}.x-rtl.x-btn-inner-right{text-align:left}.x-box-layout-ct{overflow:hidden;zoom:1}.x-box-target{position:absolute;width:20000px;top:0;left:0;height:1px}.x-rtl.x-box-target{left:auto;right:0}.x-box-inner{overflow:hidden;zoom:1;position:relative;left:0;top:0}.x-horizontal-box-overflow-body{float:left}.x-box-scroller{position:relative;background-repeat:no-repeat}.x-box-scroller-left,.x-box-scroller-right{float:left;height:100%;z-index:5}.x-box-scroller-top .x-box-scroller,.x-box-scroller-bottom .x-box-scroller{line-height:0;font-size:0;background-position:center 0}.x-box-menu-after{float:right}.x-rtl.x-box-menu-after{float:left}.x-toolbar-text{white-space:nowrap}.x-toolbar-separator{display:block;font-size:1px;overflow:hidden;cursor:default;border:0;width:0;height:0;line-height:0}.x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal{width:2px}.x-toolbar-scroller{padding-left:0}.x-toolbar-plain{border:0}.x-docked{position:absolute!important;z-index:1}.x-docked-vertical{position:static}.x-docked-top{border-bottom-width:0!important}.x-docked-bottom{border-top-width:0!important}.x-docked-left{border-right-width:0!important}.x-docked-right{border-left-width:0!important}.x-docked-noborder-top{border-top-width:0!important}.x-docked-noborder-right{border-right-width:0!important}.x-docked-noborder-bottom{border-bottom-width:0!important}.x-docked-noborder-left{border-left-width:0!important}.x-noborder-l{border-left-width:0!important}.x-noborder-b{border-bottom-width:0!important}.x-noborder-bl{border-bottom-width:0!important;border-left-width:0!important}.x-noborder-r{border-right-width:0!important}.x-noborder-rl{border-right-width:0!important;border-left-width:0!important}.x-noborder-rb{border-right-width:0!important;border-bottom-width:0!important}.x-noborder-rbl{border-right-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x-noborder-t{border-top-width:0!important}.x-noborder-tl{border-top-width:0!important;border-left-width:0!important}.x-noborder-tb{border-top-width:0!important;border-bottom-width:0!important}.x-noborder-tbl{border-top-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x-noborder-tr{border-top-width:0!important;border-right-width:0!important}.x-noborder-trl{border-top-width:0!important;border-right-width:0!important;border-left-width:0!important}.x-noborder-trb{border-top-width:0!important;border-right-width:0!important;border-bottom-width:0!important}.x-noborder-trbl{border-width:0!important}.x-header-icon{background-repeat:no-repeat;background-position:0 0;vertical-align:middle;text-align:center}.x-header-text-container{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.x-rtl.x-header-text-container{-o-text-overflow:clip;text-overflow:clip}.x-dd-drag-proxy,.x-dd-drag-current{z-index:1000000!important;pointer-events:none}.x-dd-drag-repair .x-dd-drag-ghost{filter:alpha(opacity=60);opacity:.6}.x-dd-drag-repair .x-dd-drop-icon{display:none}.x-dd-drag-ghost{filter:alpha(opacity=85);opacity:.85;padding:5px;padding-left:20px;white-space:nowrap;color:#000;font:normal 12px helvetica,arial,verdana,sans-serif;border:1px solid;border-color:#ddd #bbb #bbb #ddd;background-color:#fff}.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}.x-rtl .x-dd-drag-ghost{padding-left:5px;padding-right:20px}.x-rtl .x-dd-drop-icon{left:auto;right:3px}.x-dd-drop-ok .x-dd-drop-icon{background-image:url(images/dd/drop-yes.png)}.x-dd-drop-ok-add .x-dd-drop-icon{background-image:url(images/dd/drop-add.png)}.x-dd-drop-nodrop div.x-dd-drop-icon{background-image:url(images/dd/drop-no.png)}.x-panel,.x-plain{overflow:hidden;position:relative}.x-panel{outline:0}.x-ie .x-panel-header,.x-ie .x-panel-header-tl,.x-ie .x-panel-header-tc,.x-ie .x-panel-header-tr,.x-ie .x-panel-header-ml,.x-ie .x-panel-header-mc,.x-ie .x-panel-header-mr,.x-ie .x-panel-header-bl,.x-ie .x-panel-header-bc,.x-ie .x-panel-header-br{zoom:1}.x-ie8 td.x-frame-mc{vertical-align:top}.x-panel-body{overflow:hidden;position:relative}.x-nlg .x-panel-header-vertical .x-frame-mc{background-repeat:repeat-y}.x-panel-header-plain,.x-panel-body-plain{border:0;padding:0}.x-tip{position:absolute;overflow:visible}.x-tip-body{overflow:hidden;position:relative}.x-tip-anchor{position:absolute;overflow:hidden;border-style:solid}.x-table-layout{font-size:1em}.x-btn-group{position:relative;overflow:hidden}.x-btn-group-body{position:relative;zoom:1}.x-btn-group-body .x-table-layout-cell{vertical-align:top}.x-viewport,.x-viewport body{margin:0;padding:0;border:0 none;overflow:hidden;height:100%;position:static}.x-window{outline:0;overflow:hidden}.x-window .x-window-wrap{position:relative}.x-window-body{position:relative;overflow:hidden}.x-window-body-plain{background:transparent}.x-form-item-label{display:block}.x-form-item-label-right{text-align:right}.x-form-item-label-top{display:block;zoom:1}.x-form-invalid-icon{overflow:hidden}.x-form-invalid-icon ul{display:none}.x-form-textarea{overflow:auto;resize:none}.x-safari.x-mac .x-form-textarea{margin-bottom:-2px}.x-form-display-field-body{vertical-align:top}.x-form-cb-wrap{vertical-align:top}.x-form-cb{vertical-align:top;overflow:hidden;padding:0;border:0}.x-form-cb::-moz-focus-inner{padding:0;border:0}.x-form-cb-label{display:inline-block;zoom:1}.x-fieldset{display:block;position:relative}.x-fieldset-header{overflow:hidden}.x-fieldset-header .x-form-item,.x-fieldset-header .x-tool{float:left}.x-fieldset-header .x-form-cb-wrap{font-size:0;line-height:0}.x-fieldset-header .x-form-cb{margin:0}.x-rtl.x-fieldset-header .x-form-item,.x-rtl.x-fieldset-header .x-tool{float:right}.x-fieldset-header-text{float:left}.x-webkit *:focus{outline:none!important}.x-form-item{vertical-align:top;table-layout:fixed}.x-form-item-body{position:relative}.x-rtl.x-form-item .x-form-item-input-row{position:relative;right:0}.x-form-form-item td{border-top:1px solid transparent}.x-form-trigger{cursor:pointer;overflow:hidden;background-repeat:no-repeat}.x-item-disabled .x-form-trigger{cursor:default}.x-trigger-noedit{cursor:default}.x-form-trigger-wrap{vertical-align:top;border-collapse:separate}.x-form-spinner-up,.x-form-spinner-down{font-size:0}.x-datepicker{position:relative}.x-datepicker-inner{table-layout:fixed;width:100%;border-collapse:separate}.x-datepicker-cell{padding:0}.x-datepicker-header{position:relative;zoom:1}.x-datepicker-arrow{position:absolute;outline:0;font-size:0}.x-datepicker-column-header{padding:0}.x-datepicker-date{display:block;zoom:1;text-decoration:none}.x-monthpicker{position:absolute;left:0;top:0}.x-monthpicker-body{height:100%}.x-monthpicker-months,.x-monthpicker-years{float:left;height:100%}.x-monthpicker-item{float:left}.x-monthpicker-item-inner{display:block;text-decoration:none}.x-monthpicker-yearnav-button-ct{float:left;text-align:center}.x-monthpicker-yearnav-button{display:inline-block;outline:0;font-size:0}.x-monthpicker-buttons{position:absolute;bottom:0;width:100%}.x-strict .x-ie6 .x-monthpicker-buttons{bottom:-1px}.x-form-file-btn{overflow:hidden}.x-form-file-input{border:0;position:absolute;cursor:pointer;top:-2px;right:-2px;filter:alpha(opacity=0);opacity:0;font-size:1000px}.x-rtl.x-form-file-input{right:auto;left:-2px}.x-form-item-hidden{margin:0}.x-color-picker-item{float:left;text-decoration:none}.x-color-picker-item-inner{display:block;font-size:1px}.x-html-editor-tb .x-toolbar{position:static!important}.x-htmleditor-iframe{display:block;overflow:auto}.x-fit-item{position:relative}.x-grid-row,.x-grid-data-row{outline:0}.x-grid-view{overflow:hidden;position:relative}.x-grid-table{table-layout:fixed;border-collapse:separate}.x-grid-td{overflow:hidden;border-width:0;vertical-align:top}.x-grid-cell-inner{overflow:hidden;white-space:nowrap;zoom:1}.x-grid-resize-marker{position:absolute;z-index:5;top:0}.col-move-top,.col-move-bottom{position:absolute;top:0;line-height:0;font-size:0;overflow:hidden;z-index:20000;background:no-repeat center top transparent}.x-grid-header-ct{cursor:default}.x-column-header{position:absolute;overflow:hidden;background-repeat:repeat-x}.x-column-header-inner{zoom:1;white-space:nowrap;position:relative;overflow:hidden}.x-column-header-text{white-space:nowrap;background-repeat:no-repeat;zoom:1;display:inline-block}.x-column-header-trigger{display:none;height:100%;background-repeat:no-repeat;position:absolute;right:0;top:0;z-index:2}.x-rtl.x-column-header-trigger{left:0;right:auto}.x-column-header-over .x-column-header-trigger,.x-column-header-open .x-column-header-trigger{display:block}.x-column-header-align-right{text-align:right}.x-rtl.x-column-header-align-right{text-align:left}.x-column-header-align-left{text-align:left}.x-rtl.x-column-header-align-left{text-align:right}.x-column-header-align-center{text-align:center}.x-grid-cell-inner-action-col{line-height:0;font-size:0}.x-grid-cell-inner-checkcolumn{line-height:0;font-size:0}.x-row-numberer .x-column-header-inner{text-overflow:clip}.x-grid-group,.x-grid-group-body,.x-grid-group-hd{zoom:1}.x-grid-group-hd{white-space:nowrap}.x-grid-row-body-hidden,.x-grid-group-collapsed{display:none}.x-grid-rowbody{zoom:1}.x-grid-row-body-hidden{display:none}td.x-grid-rowwrap .x-grid-table{border:0}td.x-grid-rowwrap .x-grid-cell{border-bottom:0;background-color:transparent}.x-grid-editor .x-form-cb-wrap{text-align:center}.x-grid-editor .x-form-display-field{margin:0;white-space:nowrap;overflow:hidden}.x-grid-editor div.x-form-action-col-field{line-height:0}.x-grid-row-editor{position:absolute;overflow:visible;z-index:1}.x-grid-row-editor-buttons{position:absolute;white-space:nowrap}.x-grid-row-expander{font-size:0;line-height:0}.x-abs-layout-ct{position:relative}.x-abs-layout-item{position:absolute!important}.x-splitter{font-size:1px}.x-splitter-horizontal{cursor:e-resize;cursor:row-resize}.x-splitter-vertical{cursor:e-resize;cursor:col-resize}.x-splitter-collapsed,.x-splitter-horizontal-noresize,.x-splitter-vertical-noresize{cursor:default}.x-splitter-active{z-index:4}.x-collapse-el{position:absolute;background-repeat:no-repeat}.x-border-layout-ct{overflow:hidden;zoom:1}.x-border-layout-ct{position:relative}.x-border-region-slide-in{z-index:5}.x-region-collapsed-placeholder{z-index:4}.x-column{float:left}.x-rtl>.x-column{float:right}.x-ie6 .x-rtl .x-column,.x-quirks .x-ie .x-rtl .x-column{float:right}.x-ie6 .x-column{display:inline}.x-quirks .x-ie .x-form-layout-table,.x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item{position:relative}.x-form-layout-table{border-collapse:separate;border-spacing:0 2px}.x-ie6 .x-form-layout-table{border-collapse:collapse;border-spacing:0}.x-menu{outline:0}.x-menu-item{white-space:nowrap;overflow:hidden}.x-menu-item-cmp{margin:2px}.x-menu-item-cmp .x-field-label-cell{vertical-align:middle}.x-menu-icon-separator{position:absolute;top:0;z-index:0;height:100%;overflow:hidden}.x-menu-plain .x-menu-icon-separator{display:none}.x-menu-item-link{text-decoration:none;outline:0;zoom:1}.x-menu-item-text{zoom:1}.x-menu-item-icon,.x-menu-item-icon-right,.x-menu-item-arrow{position:absolute;text-align:center}.x-resizable-overlay{position:absolute;left:0;top:0;width:100%;height:100%;display:none;z-index:200000;background-color:#fff;filter:alpha(opacity=0);opacity:0}.x-slider{outline:0;zoom:1;position:relative}.x-slider-inner{position:relative;left:0;top:0;overflow:visible;zoom:1}.x-slider-vert .x-slider-inner{background:repeat-y 0 0}.x-slider-end{zoom:1}.x-slider-thumb{position:absolute;background:no-repeat 0 0}.x-slider-horz .x-slider-thumb{left:0}.x-slider-vert .x-slider-thumb{bottom:0}a.x-tab{text-decoration:none}.x-tab-bar{position:relative}.x-column-header-checkbox .x-column-header-text{display:block;background-repeat:no-repeat;font-size:0}.x-grid-cell-row-checker{vertical-align:middle;background-repeat:no-repeat;font-size:0}.x-tab{display:block;white-space:nowrap;z-index:1}.x-tab-active{z-index:3}.x-tab-wrap{display:block;position:relative}.x-tab-button{zoom:1;display:block;outline:0}.x-tab-inner{display:block;text-align:center;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis;overflow:hidden;zoom:1}.x-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x-tab-bar{z-index:1}.x-tab-bar-body{z-index:2;position:relative}.x-tab-bar-strip{position:absolute;line-height:0;font-size:0;z-index:1}.x-tab-bar-horizontal .x-tab-bar-strip{width:100%;left:0}.x-tab-bar-vertical .x-tab-bar-strip{height:100%;top:0}.x-tab-bar-strip-top{bottom:0}.x-tab-bar-strip-bottom{top:0}.x-tab-bar-strip-left{right:0}.x-rtl.x-tab-bar .x-tab-bar-strip-left{right:auto;left:0}.x-tab-bar-strip-right{left:0}.x-rtl.x-tab-bar .x-tab-bar-strip-right{left:auto;right:0}.x-tab-bar-plain{background:transparent!important}.x-tab-icon-el{position:absolute;background-repeat:no-repeat;top:0;left:0;right:auto;bottom:0}.x-rtl.x-tab-icon-el{left:auto;right:0}.x-tab-close-btn{display:block;position:absolute;font-size:0;line-height:0;background:no-repeat}.x-tab-mc{overflow:visible}.x-autowidth-table .x-grid-table{table-layout:auto;width:auto!important}.x-tree-view{overflow:hidden}.x-tree-elbow-img,.x-tree-icon{background-repeat:no-repeat;background-position:0 center;vertical-align:top}.x-tree-checkbox{border:0;padding:0;vertical-align:top;position:relative;background-color:transparent}.x-tree-animator-wrap{overflow:hidden}.x-tree-node-text{zoom:1}.x-surface{display:-moz-inline-stack;display:inline-block;vertical-align:middle;*vertical-align:auto;zoom:1;*display:inline;overflow:hidden}.rvml{behavior:url(#default#VML)}.x-surface tspan{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x-vml-sprite{position:absolute;left:0;top:0;width:1px;height:1px}.x-vml-group{position:absolute;left:0;top:0;width:1000px;height:1000px}.x-vml-measure-span{position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;display:inline}.x-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}.x-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}svg,vml{overflow:hidden}.x-body{color:black;font-size:13px;font-family:helvetica,arial,verdana,sans-serif;background:#f5f5f5}.x-animating-size,.x-collapsed{overflow:hidden!important}.x-editor .x-form-item-body{padding-bottom:0}.x-focus-element{position:absolute;top:-10px;left:-10px;width:0;height:0}.x-focus-frame{position:absolute;left:0;top:0;z-index:100000000;width:0;height:0}.x-focus-frame-top,.x-focus-frame-bottom,.x-focus-frame-left,.x-focus-frame-right{position:absolute;top:0;left:0}.x-focus-frame-top,.x-focus-frame-bottom{border-top:solid 2px #15428b;height:2px}.x-focus-frame-left,.x-focus-frame-right{border-left:solid 2px #15428b;width:2px}.x-mask{filter:alpha(opacity=70);opacity:.7;background:white}.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-image:none;background-color:#e5e5e5}.x-mask-msg-inner{padding:0;background-color:transparent;color:#666;font:normal 13px helvetica,arial,verdana,sans-serif}.x-mask-msg-text{padding:21px 0 0;background-image:url(images/loadmask/loading.gif);background-repeat:no-repeat;background-position:center 0}.x-rtl.x-mask-msg-text{padding:21px 0 0 0}.x-progress-default{background-color:#f5f5f5;border-width:0;height:20px;border-color:#157fcc}.x-content-box .x-progress-default{height:20px}.x-progress-default .x-progress-bar-default{background-image:none;background-color:#c1ddf1}.x-progress-default .x-progress-text{color:#666;font-weight:bold;font-size:13px;text-align:center;line-height:20px}.x-progress-default .x-progress-text-back{color:#666;line-height:20px}.x-btn-default-small{border-color:#126daf}.x-btn-default-small{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#3892d3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4b9cd7),color-stop(50%,#3892d3),color-stop(51%,#358ac8),color-stop(100%,#3892d3));background-image:-webkit-linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3);background-image:-moz-linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3);background-image:-o-linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3);background-image:linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3)}.x-btn-default-small-mc{background-image:url(images/btn/btn-default-small-fbg.gif);background-position:0 top;background-color:#3892d3}.x-nlg .x-btn-default-small{background-image:url(images/btn/btn-default-small-bg.gif);background-position:0 top}.x-nbr .x-btn-default-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-small-tl{background-position:0 -6px}.x-btn-default-small-tr{background-position:right -9px}.x-btn-default-small-bl{background-position:0 -12px}.x-btn-default-small-br{background-position:right -15px}.x-btn-default-small-ml{background-position:0 top}.x-btn-default-small-mr{background-position:right top}.x-btn-default-small-tc{background-position:0 0}.x-btn-default-small-bc{background-position:0 -3px}.x-btn-default-small-tr,.x-btn-default-small-br,.x-btn-default-small-mr{padding-right:3px}.x-btn-default-small-tl,.x-btn-default-small-bl,.x-btn-default-small-ml{padding-left:3px}.x-btn-default-small-tc{height:3px}.x-btn-default-small-bc{height:3px}.x-btn-default-small-tl,.x-btn-default-small-bl,.x-btn-default-small-tr,.x-btn-default-small-br,.x-btn-default-small-tc,.x-btn-default-small-bc,.x-btn-default-small-ml,.x-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-corners.gif)}.x-btn-default-small-ml,.x-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-sides.gif)}.x-btn-default-small-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-small-tl,.x-strict .x-ie7 .x-btn-default-small-bl{position:relative;right:0}.x-btn-default-small:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"}.x-btn-default-small .x-btn-inner{font-size:12px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;color:white;padding:0 5px}.x-btn-default-small .x-btn-arrow{background-image:url(images/button/default-small-arrow.png)}.x-btn-default-small .x-btn-arrow-right{padding-right:21px}.x-btn-default-small .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:21px}.x-btn-default-small .x-btn-arrow-bottom{padding-bottom:18px}.x-btn-default-small .x-btn-glyph{font-size:16px;line-height:16px;color:white;opacity:.5}.x-ie8m .x-btn-default-small .x-btn-glyph{color:#9bc8e9}.x-btn-default-small-disabled{border-color:#157fcc}.x-btn-default-small-icon .x-btn-button,.x-btn-default-small-noicon .x-btn-button{height:16px}.x-btn-default-small-icon .x-btn-inner,.x-btn-default-small-noicon .x-btn-inner{line-height:16px}.x-btn-default-small-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-small-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-small-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-small-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:5px;padding-left:0}.x-btn-default-small-icon .x-btn-inner{width:16px;padding:0}.x-btn-default-small-icon .x-btn-icon-el{width:16px;height:16px}.x-btn-default-small-icon-text-left .x-btn-button{height:16px}.x-btn-default-small-icon-text-left .x-btn-inner{line-height:16px;padding-left:21px}.x-btn-default-small-icon-text-left .x-rtl.x-btn-inner{padding-left:5px;padding-right:21px}.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:21px}.x-btn-default-small-icon-text-left .x-btn-icon-el{width:16px;right:auto}.x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-small-icon-text-left .x-btn-icon-el{height:16px}.x-btn-default-small-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-small-icon-text-right .x-btn-button{height:16px}.x-btn-default-small-icon-text-right .x-btn-inner{line-height:16px;padding-right:21px}.x-btn-default-small-icon-text-right .x-rtl.x-btn-inner{padding-right:5px;padding-left:21px}.x-btn-default-small-icon-text-right .x-btn-icon-el{width:16px;left:auto}.x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-small-icon-text-right .x-btn-icon-el{height:16px}.x-btn-default-small-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-small-icon-text-top .x-btn-inner{padding-top:21px}.x-btn-default-small-icon-text-top .x-btn-icon-el{height:16px;bottom:auto}.x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-small-icon-text-bottom .x-btn-inner{padding-bottom:21px}.x-btn-default-small-icon-text-bottom .x-btn-icon-el{height:16px;top:auto}.x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-small-over{border-color:#157fcc;background-image:none;background-color:#3386c2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4792c8),color-stop(50%,#3386c2),color-stop(51%,#307fb8),color-stop(100%,#3386c2));background-image:-webkit-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-moz-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-o-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2)}.x-btn-default-small-focus{border-color:#157fcc;background-image:none;background-color:#3386c2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4792c8),color-stop(50%,#3386c2),color-stop(51%,#307fb8),color-stop(100%,#3386c2));background-image:-webkit-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-moz-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-o-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2)}.x-btn-default-small-menu-active,.x-btn-default-small-pressed{border-color:#157fcc;background-image:none;background-color:#2a6d9e;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#2a6d9e),color-stop(50%,#276796),color-stop(51%,#2a6d9e),color-stop(100%,#3f7ba7));background-image:-webkit-linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7);background-image:-moz-linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7);background-image:-o-linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7);background-image:linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7)}.x-btn-default-small-over .x-frame-tl,.x-btn-default-small-over .x-frame-bl,.x-btn-default-small-over .x-frame-tr,.x-btn-default-small-over .x-frame-br,.x-btn-default-small-over .x-frame-tc,.x-btn-default-small-over .x-frame-bc{background-image:url(images/btn/btn-default-small-over-corners.gif)}.x-btn-default-small-over .x-frame-ml,.x-btn-default-small-over .x-frame-mr{background-image:url(images/btn/btn-default-small-over-sides.gif)}.x-btn-default-small-over .x-frame-mc{background-color:#3386c2;background-image:url(images/btn/btn-default-small-over-fbg.gif)}.x-btn-default-small-focus .x-frame-tl,.x-btn-default-small-focus .x-frame-bl,.x-btn-default-small-focus .x-frame-tr,.x-btn-default-small-focus .x-frame-br,.x-btn-default-small-focus .x-frame-tc,.x-btn-default-small-focus .x-frame-bc{background-image:url(images/btn/btn-default-small-focus-corners.gif)}.x-btn-default-small-focus .x-frame-ml,.x-btn-default-small-focus .x-frame-mr{background-image:url(images/btn/btn-default-small-focus-sides.gif)}.x-btn-default-small-focus .x-frame-mc{background-color:#3386c2;background-image:url(images/btn/btn-default-small-focus-fbg.gif)}.x-btn-default-small-menu-active .x-frame-tl,.x-btn-default-small-menu-active .x-frame-bl,.x-btn-default-small-menu-active .x-frame-tr,.x-btn-default-small-menu-active .x-frame-br,.x-btn-default-small-menu-active .x-frame-tc,.x-btn-default-small-menu-active .x-frame-bc,.x-btn-default-small-pressed .x-frame-tl,.x-btn-default-small-pressed .x-frame-bl,.x-btn-default-small-pressed .x-frame-tr,.x-btn-default-small-pressed .x-frame-br,.x-btn-default-small-pressed .x-frame-tc,.x-btn-default-small-pressed .x-frame-bc{background-image:url(images/btn/btn-default-small-pressed-corners.gif)}.x-btn-default-small-menu-active .x-frame-ml,.x-btn-default-small-menu-active .x-frame-mr,.x-btn-default-small-pressed .x-frame-ml,.x-btn-default-small-pressed .x-frame-mr{background-image:url(images/btn/btn-default-small-pressed-sides.gif)}.x-btn-default-small-menu-active .x-frame-mc,.x-btn-default-small-pressed .x-frame-mc{background-color:#2a6d9e;background-image:url(images/btn/btn-default-small-pressed-fbg.gif)}.x-btn-default-small-disabled .x-frame-tl,.x-btn-default-small-disabled .x-frame-bl,.x-btn-default-small-disabled .x-frame-tr,.x-btn-default-small-disabled .x-frame-br,.x-btn-default-small-disabled .x-frame-tc,.x-btn-default-small-disabled .x-frame-bc{background-image:url(images/btn/btn-default-small-disabled-corners.gif)}.x-btn-default-small-disabled .x-frame-ml,.x-btn-default-small-disabled .x-frame-mr{background-image:url(images/btn/btn-default-small-disabled-sides.gif)}.x-btn-default-small-disabled .x-frame-mc{background-color:null;background-image:url(images/btn/btn-default-small-disabled-fbg.gif)}.x-nlg .x-btn-default-small-over{background-image:url(images/btn/btn-default-small-over-bg.gif)}.x-nlg .x-btn-default-small-focus{background-image:url(images/btn/btn-default-small-focus-bg.gif)}.x-nlg .x-btn-default-small-menu-active,.x-nlg .x-btn-default-small-pressed{background-image:url(images/btn/btn-default-small-pressed-bg.gif)}.x-nlg .x-btn-default-small-disabled{background-image:url(images/btn/btn-default-small-disabled-bg.gif)}.x-nbr .x-btn-default-small{background-image:none}.x-btn-default-small .x-btn-split-right{background-image:url(images/button/default-small-s-arrow.png);padding-right:23px}.x-btn-default-small .x-rtl.x-btn-split-right{background-image:url(images/button/default-small-s-arrow-rtl.png);padding-right:0;padding-left:23px}.x-btn-default-small .x-btn-split-bottom{background-image:url(images/button/default-small-s-arrow-b.png);padding-bottom:20px}.x-btn-default-small-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"}.x-btn-default-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"}.x-btn-default-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"}.x-btn-default-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"}.x-btn-default-medium{border-color:#126daf}.x-btn-default-medium{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#3892d3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4b9cd7),color-stop(50%,#3892d3),color-stop(51%,#358ac8),color-stop(100%,#3892d3));background-image:-webkit-linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3);background-image:-moz-linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3);background-image:-o-linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3);background-image:linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3)}.x-btn-default-medium-mc{background-image:url(images/btn/btn-default-medium-fbg.gif);background-position:0 top;background-color:#3892d3}.x-nlg .x-btn-default-medium{background-image:url(images/btn/btn-default-medium-bg.gif);background-position:0 top}.x-nbr .x-btn-default-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-medium-tl{background-position:0 -6px}.x-btn-default-medium-tr{background-position:right -9px}.x-btn-default-medium-bl{background-position:0 -12px}.x-btn-default-medium-br{background-position:right -15px}.x-btn-default-medium-ml{background-position:0 top}.x-btn-default-medium-mr{background-position:right top}.x-btn-default-medium-tc{background-position:0 0}.x-btn-default-medium-bc{background-position:0 -3px}.x-btn-default-medium-tr,.x-btn-default-medium-br,.x-btn-default-medium-mr{padding-right:3px}.x-btn-default-medium-tl,.x-btn-default-medium-bl,.x-btn-default-medium-ml{padding-left:3px}.x-btn-default-medium-tc{height:3px}.x-btn-default-medium-bc{height:3px}.x-btn-default-medium-tl,.x-btn-default-medium-bl,.x-btn-default-medium-tr,.x-btn-default-medium-br,.x-btn-default-medium-tc,.x-btn-default-medium-bc,.x-btn-default-medium-ml,.x-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-corners.gif)}.x-btn-default-medium-ml,.x-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-sides.gif)}.x-btn-default-medium-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-medium-tl,.x-strict .x-ie7 .x-btn-default-medium-bl{position:relative;right:0}.x-btn-default-medium:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"}.x-btn-default-medium .x-btn-inner{font-size:14px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;color:white;padding:0 8px}.x-btn-default-medium .x-btn-arrow{background-image:url(images/button/default-medium-arrow.png)}.x-btn-default-medium .x-btn-arrow-right{padding-right:30px}.x-btn-default-medium .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:30px}.x-btn-default-medium .x-btn-arrow-bottom{padding-bottom:26px}.x-btn-default-medium .x-btn-glyph{font-size:24px;line-height:24px;color:white;opacity:.5}.x-ie8m .x-btn-default-medium .x-btn-glyph{color:#9bc8e9}.x-btn-default-medium-disabled{border-color:#157fcc}.x-btn-default-medium-icon .x-btn-button,.x-btn-default-medium-noicon .x-btn-button{height:24px}.x-btn-default-medium-icon .x-btn-inner,.x-btn-default-medium-noicon .x-btn-inner{line-height:24px}.x-btn-default-medium-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-medium-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-medium-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-medium-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:8px;padding-left:0}.x-btn-default-medium-icon .x-btn-inner{width:24px;padding:0}.x-btn-default-medium-icon .x-btn-icon-el{width:24px;height:24px}.x-btn-default-medium-icon-text-left .x-btn-button{height:24px}.x-btn-default-medium-icon-text-left .x-btn-inner{line-height:24px;padding-left:29px}.x-btn-default-medium-icon-text-left .x-rtl.x-btn-inner{padding-left:8px;padding-right:29px}.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:29px}.x-btn-default-medium-icon-text-left .x-btn-icon-el{width:24px;right:auto}.x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon-el{height:24px}.x-btn-default-medium-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-medium-icon-text-right .x-btn-button{height:24px}.x-btn-default-medium-icon-text-right .x-btn-inner{line-height:24px;padding-right:29px}.x-btn-default-medium-icon-text-right .x-rtl.x-btn-inner{padding-right:8px;padding-left:29px}.x-btn-default-medium-icon-text-right .x-btn-icon-el{width:24px;left:auto}.x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon-el{height:24px}.x-btn-default-medium-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-medium-icon-text-top .x-btn-inner{padding-top:29px}.x-btn-default-medium-icon-text-top .x-btn-icon-el{height:24px;bottom:auto}.x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-medium-icon-text-bottom .x-btn-inner{padding-bottom:29px}.x-btn-default-medium-icon-text-bottom .x-btn-icon-el{height:24px;top:auto}.x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-medium-over{border-color:#157fcc;background-image:none;background-color:#3386c2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4792c8),color-stop(50%,#3386c2),color-stop(51%,#307fb8),color-stop(100%,#3386c2));background-image:-webkit-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-moz-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-o-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2)}.x-btn-default-medium-focus{border-color:#157fcc;background-image:none;background-color:#3386c2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4792c8),color-stop(50%,#3386c2),color-stop(51%,#307fb8),color-stop(100%,#3386c2));background-image:-webkit-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-moz-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-o-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2)}.x-btn-default-medium-menu-active,.x-btn-default-medium-pressed{border-color:#157fcc;background-image:none;background-color:#2a6d9e;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#2a6d9e),color-stop(50%,#276796),color-stop(51%,#2a6d9e),color-stop(100%,#3f7ba7));background-image:-webkit-linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7);background-image:-moz-linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7);background-image:-o-linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7);background-image:linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7)}.x-btn-default-medium-over .x-frame-tl,.x-btn-default-medium-over .x-frame-bl,.x-btn-default-medium-over .x-frame-tr,.x-btn-default-medium-over .x-frame-br,.x-btn-default-medium-over .x-frame-tc,.x-btn-default-medium-over .x-frame-bc{background-image:url(images/btn/btn-default-medium-over-corners.gif)}.x-btn-default-medium-over .x-frame-ml,.x-btn-default-medium-over .x-frame-mr{background-image:url(images/btn/btn-default-medium-over-sides.gif)}.x-btn-default-medium-over .x-frame-mc{background-color:#3386c2;background-image:url(images/btn/btn-default-medium-over-fbg.gif)}.x-btn-default-medium-focus .x-frame-tl,.x-btn-default-medium-focus .x-frame-bl,.x-btn-default-medium-focus .x-frame-tr,.x-btn-default-medium-focus .x-frame-br,.x-btn-default-medium-focus .x-frame-tc,.x-btn-default-medium-focus .x-frame-bc{background-image:url(images/btn/btn-default-medium-focus-corners.gif)}.x-btn-default-medium-focus .x-frame-ml,.x-btn-default-medium-focus .x-frame-mr{background-image:url(images/btn/btn-default-medium-focus-sides.gif)}.x-btn-default-medium-focus .x-frame-mc{background-color:#3386c2;background-image:url(images/btn/btn-default-medium-focus-fbg.gif)}.x-btn-default-medium-menu-active .x-frame-tl,.x-btn-default-medium-menu-active .x-frame-bl,.x-btn-default-medium-menu-active .x-frame-tr,.x-btn-default-medium-menu-active .x-frame-br,.x-btn-default-medium-menu-active .x-frame-tc,.x-btn-default-medium-menu-active .x-frame-bc,.x-btn-default-medium-pressed .x-frame-tl,.x-btn-default-medium-pressed .x-frame-bl,.x-btn-default-medium-pressed .x-frame-tr,.x-btn-default-medium-pressed .x-frame-br,.x-btn-default-medium-pressed .x-frame-tc,.x-btn-default-medium-pressed .x-frame-bc{background-image:url(images/btn/btn-default-medium-pressed-corners.gif)}.x-btn-default-medium-menu-active .x-frame-ml,.x-btn-default-medium-menu-active .x-frame-mr,.x-btn-default-medium-pressed .x-frame-ml,.x-btn-default-medium-pressed .x-frame-mr{background-image:url(images/btn/btn-default-medium-pressed-sides.gif)}.x-btn-default-medium-menu-active .x-frame-mc,.x-btn-default-medium-pressed .x-frame-mc{background-color:#2a6d9e;background-image:url(images/btn/btn-default-medium-pressed-fbg.gif)}.x-btn-default-medium-disabled .x-frame-tl,.x-btn-default-medium-disabled .x-frame-bl,.x-btn-default-medium-disabled .x-frame-tr,.x-btn-default-medium-disabled .x-frame-br,.x-btn-default-medium-disabled .x-frame-tc,.x-btn-default-medium-disabled .x-frame-bc{background-image:url(images/btn/btn-default-medium-disabled-corners.gif)}.x-btn-default-medium-disabled .x-frame-ml,.x-btn-default-medium-disabled .x-frame-mr{background-image:url(images/btn/btn-default-medium-disabled-sides.gif)}.x-btn-default-medium-disabled .x-frame-mc{background-color:null;background-image:url(images/btn/btn-default-medium-disabled-fbg.gif)}.x-nlg .x-btn-default-medium-over{background-image:url(images/btn/btn-default-medium-over-bg.gif)}.x-nlg .x-btn-default-medium-focus{background-image:url(images/btn/btn-default-medium-focus-bg.gif)}.x-nlg .x-btn-default-medium-menu-active,.x-nlg .x-btn-default-medium-pressed{background-image:url(images/btn/btn-default-medium-pressed-bg.gif)}.x-nlg .x-btn-default-medium-disabled{background-image:url(images/btn/btn-default-medium-disabled-bg.gif)}.x-nbr .x-btn-default-medium{background-image:none}.x-btn-default-medium .x-btn-split-right{background-image:url(images/button/default-medium-s-arrow.png);padding-right:32px}.x-btn-default-medium .x-rtl.x-btn-split-right{background-image:url(images/button/default-medium-s-arrow-rtl.png);padding-right:0;padding-left:32px}.x-btn-default-medium .x-btn-split-bottom{background-image:url(images/button/default-medium-s-arrow-b.png);padding-bottom:28px}.x-btn-default-medium-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"}.x-btn-default-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"}.x-btn-default-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"}.x-btn-default-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"}.x-btn-default-large{border-color:#126daf}.x-btn-default-large{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#3892d3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4b9cd7),color-stop(50%,#3892d3),color-stop(51%,#358ac8),color-stop(100%,#3892d3));background-image:-webkit-linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3);background-image:-moz-linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3);background-image:-o-linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3);background-image:linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3)}.x-btn-default-large-mc{background-image:url(images/btn/btn-default-large-fbg.gif);background-position:0 top;background-color:#3892d3}.x-nlg .x-btn-default-large{background-image:url(images/btn/btn-default-large-bg.gif);background-position:0 top}.x-nbr .x-btn-default-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-large-tl{background-position:0 -6px}.x-btn-default-large-tr{background-position:right -9px}.x-btn-default-large-bl{background-position:0 -12px}.x-btn-default-large-br{background-position:right -15px}.x-btn-default-large-ml{background-position:0 top}.x-btn-default-large-mr{background-position:right top}.x-btn-default-large-tc{background-position:0 0}.x-btn-default-large-bc{background-position:0 -3px}.x-btn-default-large-tr,.x-btn-default-large-br,.x-btn-default-large-mr{padding-right:3px}.x-btn-default-large-tl,.x-btn-default-large-bl,.x-btn-default-large-ml{padding-left:3px}.x-btn-default-large-tc{height:3px}.x-btn-default-large-bc{height:3px}.x-btn-default-large-tl,.x-btn-default-large-bl,.x-btn-default-large-tr,.x-btn-default-large-br,.x-btn-default-large-tc,.x-btn-default-large-bc,.x-btn-default-large-ml,.x-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-corners.gif)}.x-btn-default-large-ml,.x-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-sides.gif)}.x-btn-default-large-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-large-tl,.x-strict .x-ie7 .x-btn-default-large-bl{position:relative;right:0}.x-btn-default-large:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"}.x-btn-default-large .x-btn-inner{font-size:16px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;color:white;padding:0 10px}.x-btn-default-large .x-btn-arrow{background-image:url(images/button/default-large-arrow.png)}.x-btn-default-large .x-btn-arrow-right{padding-right:36px}.x-btn-default-large .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:36px}.x-btn-default-large .x-btn-arrow-bottom{padding-bottom:32px}.x-btn-default-large .x-btn-glyph{font-size:32px;line-height:32px;color:white;opacity:.5}.x-ie8m .x-btn-default-large .x-btn-glyph{color:#9bc8e9}.x-btn-default-large-disabled{border-color:#157fcc}.x-btn-default-large-icon .x-btn-button,.x-btn-default-large-noicon .x-btn-button{height:32px}.x-btn-default-large-icon .x-btn-inner,.x-btn-default-large-noicon .x-btn-inner{line-height:32px}.x-btn-default-large-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-large-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-large-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-large-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:10px;padding-left:0}.x-btn-default-large-icon .x-btn-inner{width:32px;padding:0}.x-btn-default-large-icon .x-btn-icon-el{width:32px;height:32px}.x-btn-default-large-icon-text-left .x-btn-button{height:32px}.x-btn-default-large-icon-text-left .x-btn-inner{line-height:32px;padding-left:37px}.x-btn-default-large-icon-text-left .x-rtl.x-btn-inner{padding-left:10px;padding-right:37px}.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:37px}.x-btn-default-large-icon-text-left .x-btn-icon-el{width:32px;right:auto}.x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-large-icon-text-left .x-btn-icon-el{height:32px}.x-btn-default-large-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-large-icon-text-right .x-btn-button{height:32px}.x-btn-default-large-icon-text-right .x-btn-inner{line-height:32px;padding-right:37px}.x-btn-default-large-icon-text-right .x-rtl.x-btn-inner{padding-right:10px;padding-left:37px}.x-btn-default-large-icon-text-right .x-btn-icon-el{width:32px;left:auto}.x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-large-icon-text-right .x-btn-icon-el{height:32px}.x-btn-default-large-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-large-icon-text-top .x-btn-inner{padding-top:37px}.x-btn-default-large-icon-text-top .x-btn-icon-el{height:32px;bottom:auto}.x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-large-icon-text-bottom .x-btn-inner{padding-bottom:37px}.x-btn-default-large-icon-text-bottom .x-btn-icon-el{height:32px;top:auto}.x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-large-over{border-color:#157fcc;background-image:none;background-color:#3386c2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4792c8),color-stop(50%,#3386c2),color-stop(51%,#307fb8),color-stop(100%,#3386c2));background-image:-webkit-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-moz-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-o-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2)}.x-btn-default-large-focus{border-color:#157fcc;background-image:none;background-color:#3386c2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4792c8),color-stop(50%,#3386c2),color-stop(51%,#307fb8),color-stop(100%,#3386c2));background-image:-webkit-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-moz-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-o-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2)}.x-btn-default-large-menu-active,.x-btn-default-large-pressed{border-color:#157fcc;background-image:none;background-color:#2a6d9e;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#2a6d9e),color-stop(50%,#276796),color-stop(51%,#2a6d9e),color-stop(100%,#3f7ba7));background-image:-webkit-linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7);background-image:-moz-linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7);background-image:-o-linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7);background-image:linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7)}.x-btn-default-large-over .x-frame-tl,.x-btn-default-large-over .x-frame-bl,.x-btn-default-large-over .x-frame-tr,.x-btn-default-large-over .x-frame-br,.x-btn-default-large-over .x-frame-tc,.x-btn-default-large-over .x-frame-bc{background-image:url(images/btn/btn-default-large-over-corners.gif)}.x-btn-default-large-over .x-frame-ml,.x-btn-default-large-over .x-frame-mr{background-image:url(images/btn/btn-default-large-over-sides.gif)}.x-btn-default-large-over .x-frame-mc{background-color:#3386c2;background-image:url(images/btn/btn-default-large-over-fbg.gif)}.x-btn-default-large-focus .x-frame-tl,.x-btn-default-large-focus .x-frame-bl,.x-btn-default-large-focus .x-frame-tr,.x-btn-default-large-focus .x-frame-br,.x-btn-default-large-focus .x-frame-tc,.x-btn-default-large-focus .x-frame-bc{background-image:url(images/btn/btn-default-large-focus-corners.gif)}.x-btn-default-large-focus .x-frame-ml,.x-btn-default-large-focus .x-frame-mr{background-image:url(images/btn/btn-default-large-focus-sides.gif)}.x-btn-default-large-focus .x-frame-mc{background-color:#3386c2;background-image:url(images/btn/btn-default-large-focus-fbg.gif)}.x-btn-default-large-menu-active .x-frame-tl,.x-btn-default-large-menu-active .x-frame-bl,.x-btn-default-large-menu-active .x-frame-tr,.x-btn-default-large-menu-active .x-frame-br,.x-btn-default-large-menu-active .x-frame-tc,.x-btn-default-large-menu-active .x-frame-bc,.x-btn-default-large-pressed .x-frame-tl,.x-btn-default-large-pressed .x-frame-bl,.x-btn-default-large-pressed .x-frame-tr,.x-btn-default-large-pressed .x-frame-br,.x-btn-default-large-pressed .x-frame-tc,.x-btn-default-large-pressed .x-frame-bc{background-image:url(images/btn/btn-default-large-pressed-corners.gif)}.x-btn-default-large-menu-active .x-frame-ml,.x-btn-default-large-menu-active .x-frame-mr,.x-btn-default-large-pressed .x-frame-ml,.x-btn-default-large-pressed .x-frame-mr{background-image:url(images/btn/btn-default-large-pressed-sides.gif)}.x-btn-default-large-menu-active .x-frame-mc,.x-btn-default-large-pressed .x-frame-mc{background-color:#2a6d9e;background-image:url(images/btn/btn-default-large-pressed-fbg.gif)}.x-btn-default-large-disabled .x-frame-tl,.x-btn-default-large-disabled .x-frame-bl,.x-btn-default-large-disabled .x-frame-tr,.x-btn-default-large-disabled .x-frame-br,.x-btn-default-large-disabled .x-frame-tc,.x-btn-default-large-disabled .x-frame-bc{background-image:url(images/btn/btn-default-large-disabled-corners.gif)}.x-btn-default-large-disabled .x-frame-ml,.x-btn-default-large-disabled .x-frame-mr{background-image:url(images/btn/btn-default-large-disabled-sides.gif)}.x-btn-default-large-disabled .x-frame-mc{background-color:null;background-image:url(images/btn/btn-default-large-disabled-fbg.gif)}.x-nlg .x-btn-default-large-over{background-image:url(images/btn/btn-default-large-over-bg.gif)}.x-nlg .x-btn-default-large-focus{background-image:url(images/btn/btn-default-large-focus-bg.gif)}.x-nlg .x-btn-default-large-menu-active,.x-nlg .x-btn-default-large-pressed{background-image:url(images/btn/btn-default-large-pressed-bg.gif)}.x-nlg .x-btn-default-large-disabled{background-image:url(images/btn/btn-default-large-disabled-bg.gif)}.x-nbr .x-btn-default-large{background-image:none}.x-btn-default-large .x-btn-split-right{background-image:url(images/button/default-large-s-arrow.png);padding-right:38px}.x-btn-default-large .x-rtl.x-btn-split-right{background-image:url(images/button/default-large-s-arrow-rtl.png);padding-right:0;padding-left:38px}.x-btn-default-large .x-btn-split-bottom{background-image:url(images/button/default-large-s-arrow-b.png);padding-bottom:34px}.x-btn-default-large-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"}.x-btn-default-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"}.x-btn-default-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"}.x-btn-default-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"}.x-btn-default-toolbar-small{border-color:#e1e1e1}.x-btn-default-toolbar-small{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#f5f5f5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(50%,#f5f5f5),color-stop(51%,#e8e8e8),color-stop(100%,#f5f5f5));background-image:-webkit-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-moz-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-o-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5)}.x-btn-default-toolbar-small-mc{background-image:url(images/btn/btn-default-toolbar-small-fbg.gif);background-position:0 top;background-color:#f5f5f5}.x-nlg .x-btn-default-toolbar-small{background-image:url(images/btn/btn-default-toolbar-small-bg.gif);background-position:0 top}.x-nbr .x-btn-default-toolbar-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-toolbar-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-toolbar-small-tl{background-position:0 -6px}.x-btn-default-toolbar-small-tr{background-position:right -9px}.x-btn-default-toolbar-small-bl{background-position:0 -12px}.x-btn-default-toolbar-small-br{background-position:right -15px}.x-btn-default-toolbar-small-ml{background-position:0 top}.x-btn-default-toolbar-small-mr{background-position:right top}.x-btn-default-toolbar-small-tc{background-position:0 0}.x-btn-default-toolbar-small-bc{background-position:0 -3px}.x-btn-default-toolbar-small-tr,.x-btn-default-toolbar-small-br,.x-btn-default-toolbar-small-mr{padding-right:3px}.x-btn-default-toolbar-small-tl,.x-btn-default-toolbar-small-bl,.x-btn-default-toolbar-small-ml{padding-left:3px}.x-btn-default-toolbar-small-tc{height:3px}.x-btn-default-toolbar-small-bc{height:3px}.x-btn-default-toolbar-small-tl,.x-btn-default-toolbar-small-bl,.x-btn-default-toolbar-small-tr,.x-btn-default-toolbar-small-br,.x-btn-default-toolbar-small-tc,.x-btn-default-toolbar-small-bc,.x-btn-default-toolbar-small-ml,.x-btn-default-toolbar-small-mr{zoom:1;background-image:url(images/btn/btn-default-toolbar-small-corners.gif)}.x-btn-default-toolbar-small-ml,.x-btn-default-toolbar-small-mr{zoom:1;background-image:url(images/btn/btn-default-toolbar-small-sides.gif)}.x-btn-default-toolbar-small-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-toolbar-small-tl,.x-strict .x-ie7 .x-btn-default-toolbar-small-bl{position:relative;right:0}.x-btn-default-toolbar-small:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-toolbar-small-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-bg.gif), corners:url(images/btn/btn-default-toolbar-small-corners.gif), sides:url(images/btn/btn-default-toolbar-small-sides.gif)"}.x-btn-default-toolbar-small .x-btn-inner{font-size:12px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;color:#666;padding:0 5px}.x-btn-default-toolbar-small .x-btn-arrow{background-image:url(images/button/default-toolbar-small-arrow.png)}.x-btn-default-toolbar-small .x-btn-arrow-right{padding-right:21px}.x-btn-default-toolbar-small .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:21px}.x-btn-default-toolbar-small .x-btn-arrow-bottom{padding-bottom:18px}.x-btn-default-toolbar-small .x-btn-glyph{font-size:16px;line-height:16px;color:#666;opacity:.5}.x-ie8m .x-btn-default-toolbar-small .x-btn-glyph{color:#adadad}.x-btn-default-toolbar-small-disabled{background-image:none;background-color:#f5f5f5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(50%,#f5f5f5),color-stop(51%,#e8e8e8),color-stop(100%,#f5f5f5));background-image:-webkit-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-moz-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-o-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5)}.x-btn-default-toolbar-small-icon .x-btn-button,.x-btn-default-toolbar-small-noicon .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon .x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-inner{line-height:16px}.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:5px;padding-left:0}.x-btn-default-toolbar-small-icon .x-btn-inner{width:16px;padding:0}.x-btn-default-toolbar-small-icon .x-btn-icon-el{width:16px;height:16px}.x-btn-default-toolbar-small-icon-text-left .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon-text-left .x-btn-inner{line-height:16px;padding-left:21px}.x-btn-default-toolbar-small-icon-text-left .x-rtl.x-btn-inner{padding-left:5px;padding-right:21px}.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:21px}.x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el{width:16px;right:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el{height:16px}.x-btn-default-toolbar-small-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-toolbar-small-icon-text-right .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon-text-right .x-btn-inner{line-height:16px;padding-right:21px}.x-btn-default-toolbar-small-icon-text-right .x-rtl.x-btn-inner{padding-right:5px;padding-left:21px}.x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el{width:16px;left:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el{height:16px}.x-btn-default-toolbar-small-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-toolbar-small-icon-text-top .x-btn-inner{padding-top:21px}.x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el{height:16px;bottom:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner{padding-bottom:21px}.x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el{height:16px;top:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-small-over{background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-default-toolbar-small-focus{background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-default-toolbar-small-menu-active,.x-btn-default-toolbar-small-pressed{background-image:none;background-color:#e1e1e1;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e1e1e1),color-stop(50%,#d5d5d5),color-stop(51%,#e1e1e1),color-stop(100%,#e4e4e4));background-image:-webkit-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-moz-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-o-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4)}.x-btn-default-toolbar-small-over .x-frame-tl,.x-btn-default-toolbar-small-over .x-frame-bl,.x-btn-default-toolbar-small-over .x-frame-tr,.x-btn-default-toolbar-small-over .x-frame-br,.x-btn-default-toolbar-small-over .x-frame-tc,.x-btn-default-toolbar-small-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-over-corners.gif)}.x-btn-default-toolbar-small-over .x-frame-ml,.x-btn-default-toolbar-small-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-over-sides.gif)}.x-btn-default-toolbar-small-over .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-default-toolbar-small-over-fbg.gif)}.x-btn-default-toolbar-small-focus .x-frame-tl,.x-btn-default-toolbar-small-focus .x-frame-bl,.x-btn-default-toolbar-small-focus .x-frame-tr,.x-btn-default-toolbar-small-focus .x-frame-br,.x-btn-default-toolbar-small-focus .x-frame-tc,.x-btn-default-toolbar-small-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-focus-corners.gif)}.x-btn-default-toolbar-small-focus .x-frame-ml,.x-btn-default-toolbar-small-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-focus-sides.gif)}.x-btn-default-toolbar-small-focus .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-default-toolbar-small-focus-fbg.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-tl,.x-btn-default-toolbar-small-menu-active .x-frame-bl,.x-btn-default-toolbar-small-menu-active .x-frame-tr,.x-btn-default-toolbar-small-menu-active .x-frame-br,.x-btn-default-toolbar-small-menu-active .x-frame-tc,.x-btn-default-toolbar-small-menu-active .x-frame-bc,.x-btn-default-toolbar-small-pressed .x-frame-tl,.x-btn-default-toolbar-small-pressed .x-frame-bl,.x-btn-default-toolbar-small-pressed .x-frame-tr,.x-btn-default-toolbar-small-pressed .x-frame-br,.x-btn-default-toolbar-small-pressed .x-frame-tc,.x-btn-default-toolbar-small-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-pressed-corners.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-ml,.x-btn-default-toolbar-small-menu-active .x-frame-mr,.x-btn-default-toolbar-small-pressed .x-frame-ml,.x-btn-default-toolbar-small-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-pressed-sides.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-mc,.x-btn-default-toolbar-small-pressed .x-frame-mc{background-color:#e1e1e1;background-image:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif)}.x-btn-default-toolbar-small-disabled .x-frame-tl,.x-btn-default-toolbar-small-disabled .x-frame-bl,.x-btn-default-toolbar-small-disabled .x-frame-tr,.x-btn-default-toolbar-small-disabled .x-frame-br,.x-btn-default-toolbar-small-disabled .x-frame-tc,.x-btn-default-toolbar-small-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-disabled-corners.gif)}.x-btn-default-toolbar-small-disabled .x-frame-ml,.x-btn-default-toolbar-small-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)}.x-btn-default-toolbar-small-disabled .x-frame-mc{background-color:#f5f5f5;background-image:url(images/btn/btn-default-toolbar-small-disabled-fbg.gif)}.x-nlg .x-btn-default-toolbar-small-over{background-image:url(images/btn/btn-default-toolbar-small-over-bg.gif)}.x-nlg .x-btn-default-toolbar-small-focus{background-image:url(images/btn/btn-default-toolbar-small-focus-bg.gif)}.x-nlg .x-btn-default-toolbar-small-menu-active,.x-nlg .x-btn-default-toolbar-small-pressed{background-image:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)}.x-nlg .x-btn-default-toolbar-small-disabled{background-image:url(images/btn/btn-default-toolbar-small-disabled-bg.gif)}.x-nbr .x-btn-default-toolbar-small{background-image:none}.x-btn-default-toolbar-small .x-btn-split-right{background-image:url(images/button/default-toolbar-small-s-arrow.png);padding-right:23px}.x-btn-default-toolbar-small .x-rtl.x-btn-split-right{background-image:url(images/button/default-toolbar-small-s-arrow-rtl.png);padding-right:0;padding-left:23px}.x-btn-default-toolbar-small .x-btn-split-bottom{background-image:url(images/button/default-toolbar-small-s-arrow-b.png);padding-bottom:20px}.x-btn-default-toolbar-small-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-over-bg.gif)"}.x-btn-default-toolbar-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-focus-bg.gif)"}.x-btn-default-toolbar-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)"}.x-btn-default-toolbar-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-disabled-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-disabled-bg.gif)"}.x-btn-default-toolbar-medium{border-color:#e1e1e1}.x-btn-default-toolbar-medium{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#f5f5f5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(50%,#f5f5f5),color-stop(51%,#e8e8e8),color-stop(100%,#f5f5f5));background-image:-webkit-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-moz-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-o-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5)}.x-btn-default-toolbar-medium-mc{background-image:url(images/btn/btn-default-toolbar-medium-fbg.gif);background-position:0 top;background-color:#f5f5f5}.x-nlg .x-btn-default-toolbar-medium{background-image:url(images/btn/btn-default-toolbar-medium-bg.gif);background-position:0 top}.x-nbr .x-btn-default-toolbar-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-toolbar-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-toolbar-medium-tl{background-position:0 -6px}.x-btn-default-toolbar-medium-tr{background-position:right -9px}.x-btn-default-toolbar-medium-bl{background-position:0 -12px}.x-btn-default-toolbar-medium-br{background-position:right -15px}.x-btn-default-toolbar-medium-ml{background-position:0 top}.x-btn-default-toolbar-medium-mr{background-position:right top}.x-btn-default-toolbar-medium-tc{background-position:0 0}.x-btn-default-toolbar-medium-bc{background-position:0 -3px}.x-btn-default-toolbar-medium-tr,.x-btn-default-toolbar-medium-br,.x-btn-default-toolbar-medium-mr{padding-right:3px}.x-btn-default-toolbar-medium-tl,.x-btn-default-toolbar-medium-bl,.x-btn-default-toolbar-medium-ml{padding-left:3px}.x-btn-default-toolbar-medium-tc{height:3px}.x-btn-default-toolbar-medium-bc{height:3px}.x-btn-default-toolbar-medium-tl,.x-btn-default-toolbar-medium-bl,.x-btn-default-toolbar-medium-tr,.x-btn-default-toolbar-medium-br,.x-btn-default-toolbar-medium-tc,.x-btn-default-toolbar-medium-bc,.x-btn-default-toolbar-medium-ml,.x-btn-default-toolbar-medium-mr{zoom:1;background-image:url(images/btn/btn-default-toolbar-medium-corners.gif)}.x-btn-default-toolbar-medium-ml,.x-btn-default-toolbar-medium-mr{zoom:1;background-image:url(images/btn/btn-default-toolbar-medium-sides.gif)}.x-btn-default-toolbar-medium-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-toolbar-medium-tl,.x-strict .x-ie7 .x-btn-default-toolbar-medium-bl{position:relative;right:0}.x-btn-default-toolbar-medium:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-toolbar-medium-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-bg.gif), corners:url(images/btn/btn-default-toolbar-medium-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-sides.gif)"}.x-btn-default-toolbar-medium .x-btn-inner{font-size:14px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;color:#666;padding:0 8px}.x-btn-default-toolbar-medium .x-btn-arrow{background-image:url(images/button/default-toolbar-medium-arrow.png)}.x-btn-default-toolbar-medium .x-btn-arrow-right{padding-right:30px}.x-btn-default-toolbar-medium .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:30px}.x-btn-default-toolbar-medium .x-btn-arrow-bottom{padding-bottom:26px}.x-btn-default-toolbar-medium .x-btn-glyph{font-size:24px;line-height:24px;color:#666;opacity:.5}.x-ie8m .x-btn-default-toolbar-medium .x-btn-glyph{color:#adadad}.x-btn-default-toolbar-medium-disabled{background-image:none;background-color:#f5f5f5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(50%,#f5f5f5),color-stop(51%,#e8e8e8),color-stop(100%,#f5f5f5));background-image:-webkit-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-moz-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-o-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5)}.x-btn-default-toolbar-medium-icon .x-btn-button,.x-btn-default-toolbar-medium-noicon .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon .x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-inner{line-height:24px}.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:8px;padding-left:0}.x-btn-default-toolbar-medium-icon .x-btn-inner{width:24px;padding:0}.x-btn-default-toolbar-medium-icon .x-btn-icon-el{width:24px;height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-inner{line-height:24px;padding-left:29px}.x-btn-default-toolbar-medium-icon-text-left .x-rtl.x-btn-inner{padding-left:8px;padding-right:29px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:29px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el{width:24px;right:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el{height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-toolbar-medium-icon-text-right .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-inner{line-height:24px;padding-right:29px}.x-btn-default-toolbar-medium-icon-text-right .x-rtl.x-btn-inner{padding-right:8px;padding-left:29px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el{width:24px;left:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el{height:24px}.x-btn-default-toolbar-medium-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-toolbar-medium-icon-text-top .x-btn-inner{padding-top:29px}.x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el{height:24px;bottom:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner{padding-bottom:29px}.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el{height:24px;top:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-medium-over{background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-default-toolbar-medium-focus{background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-default-toolbar-medium-menu-active,.x-btn-default-toolbar-medium-pressed{background-image:none;background-color:#e1e1e1;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e1e1e1),color-stop(50%,#d5d5d5),color-stop(51%,#e1e1e1),color-stop(100%,#e4e4e4));background-image:-webkit-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-moz-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-o-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4)}.x-btn-default-toolbar-medium-over .x-frame-tl,.x-btn-default-toolbar-medium-over .x-frame-bl,.x-btn-default-toolbar-medium-over .x-frame-tr,.x-btn-default-toolbar-medium-over .x-frame-br,.x-btn-default-toolbar-medium-over .x-frame-tc,.x-btn-default-toolbar-medium-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-over-corners.gif)}.x-btn-default-toolbar-medium-over .x-frame-ml,.x-btn-default-toolbar-medium-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-over-sides.gif)}.x-btn-default-toolbar-medium-over .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-default-toolbar-medium-over-fbg.gif)}.x-btn-default-toolbar-medium-focus .x-frame-tl,.x-btn-default-toolbar-medium-focus .x-frame-bl,.x-btn-default-toolbar-medium-focus .x-frame-tr,.x-btn-default-toolbar-medium-focus .x-frame-br,.x-btn-default-toolbar-medium-focus .x-frame-tc,.x-btn-default-toolbar-medium-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-focus-corners.gif)}.x-btn-default-toolbar-medium-focus .x-frame-ml,.x-btn-default-toolbar-medium-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-focus-sides.gif)}.x-btn-default-toolbar-medium-focus .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-tl,.x-btn-default-toolbar-medium-menu-active .x-frame-bl,.x-btn-default-toolbar-medium-menu-active .x-frame-tr,.x-btn-default-toolbar-medium-menu-active .x-frame-br,.x-btn-default-toolbar-medium-menu-active .x-frame-tc,.x-btn-default-toolbar-medium-menu-active .x-frame-bc,.x-btn-default-toolbar-medium-pressed .x-frame-tl,.x-btn-default-toolbar-medium-pressed .x-frame-bl,.x-btn-default-toolbar-medium-pressed .x-frame-tr,.x-btn-default-toolbar-medium-pressed .x-frame-br,.x-btn-default-toolbar-medium-pressed .x-frame-tc,.x-btn-default-toolbar-medium-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-ml,.x-btn-default-toolbar-medium-menu-active .x-frame-mr,.x-btn-default-toolbar-medium-pressed .x-frame-ml,.x-btn-default-toolbar-medium-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-mc,.x-btn-default-toolbar-medium-pressed .x-frame-mc{background-color:#e1e1e1;background-image:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-tl,.x-btn-default-toolbar-medium-disabled .x-frame-bl,.x-btn-default-toolbar-medium-disabled .x-frame-tr,.x-btn-default-toolbar-medium-disabled .x-frame-br,.x-btn-default-toolbar-medium-disabled .x-frame-tc,.x-btn-default-toolbar-medium-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-ml,.x-btn-default-toolbar-medium-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-mc{background-color:#f5f5f5;background-image:url(images/btn/btn-default-toolbar-medium-disabled-fbg.gif)}.x-nlg .x-btn-default-toolbar-medium-over{background-image:url(images/btn/btn-default-toolbar-medium-over-bg.gif)}.x-nlg .x-btn-default-toolbar-medium-focus{background-image:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)}.x-nlg .x-btn-default-toolbar-medium-menu-active,.x-nlg .x-btn-default-toolbar-medium-pressed{background-image:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)}.x-nlg .x-btn-default-toolbar-medium-disabled{background-image:url(images/btn/btn-default-toolbar-medium-disabled-bg.gif)}.x-nbr .x-btn-default-toolbar-medium{background-image:none}.x-btn-default-toolbar-medium .x-btn-split-right{background-image:url(images/button/default-toolbar-medium-s-arrow.png);padding-right:32px}.x-btn-default-toolbar-medium .x-rtl.x-btn-split-right{background-image:url(images/button/default-toolbar-medium-s-arrow-rtl.png);padding-right:0;padding-left:32px}.x-btn-default-toolbar-medium .x-btn-split-bottom{background-image:url(images/button/default-toolbar-medium-s-arrow-b.png);padding-bottom:28px}.x-btn-default-toolbar-medium-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-over-bg.gif)"}.x-btn-default-toolbar-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)"}.x-btn-default-toolbar-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)"}.x-btn-default-toolbar-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-disabled-bg.gif)"}.x-btn-default-toolbar-large{border-color:#e1e1e1}.x-btn-default-toolbar-large{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#f5f5f5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(50%,#f5f5f5),color-stop(51%,#e8e8e8),color-stop(100%,#f5f5f5));background-image:-webkit-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-moz-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-o-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5)}.x-btn-default-toolbar-large-mc{background-image:url(images/btn/btn-default-toolbar-large-fbg.gif);background-position:0 top;background-color:#f5f5f5}.x-nlg .x-btn-default-toolbar-large{background-image:url(images/btn/btn-default-toolbar-large-bg.gif);background-position:0 top}.x-nbr .x-btn-default-toolbar-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-toolbar-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-toolbar-large-tl{background-position:0 -6px}.x-btn-default-toolbar-large-tr{background-position:right -9px}.x-btn-default-toolbar-large-bl{background-position:0 -12px}.x-btn-default-toolbar-large-br{background-position:right -15px}.x-btn-default-toolbar-large-ml{background-position:0 top}.x-btn-default-toolbar-large-mr{background-position:right top}.x-btn-default-toolbar-large-tc{background-position:0 0}.x-btn-default-toolbar-large-bc{background-position:0 -3px}.x-btn-default-toolbar-large-tr,.x-btn-default-toolbar-large-br,.x-btn-default-toolbar-large-mr{padding-right:3px}.x-btn-default-toolbar-large-tl,.x-btn-default-toolbar-large-bl,.x-btn-default-toolbar-large-ml{padding-left:3px}.x-btn-default-toolbar-large-tc{height:3px}.x-btn-default-toolbar-large-bc{height:3px}.x-btn-default-toolbar-large-tl,.x-btn-default-toolbar-large-bl,.x-btn-default-toolbar-large-tr,.x-btn-default-toolbar-large-br,.x-btn-default-toolbar-large-tc,.x-btn-default-toolbar-large-bc,.x-btn-default-toolbar-large-ml,.x-btn-default-toolbar-large-mr{zoom:1;background-image:url(images/btn/btn-default-toolbar-large-corners.gif)}.x-btn-default-toolbar-large-ml,.x-btn-default-toolbar-large-mr{zoom:1;background-image:url(images/btn/btn-default-toolbar-large-sides.gif)}.x-btn-default-toolbar-large-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-toolbar-large-tl,.x-strict .x-ie7 .x-btn-default-toolbar-large-bl{position:relative;right:0}.x-btn-default-toolbar-large:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-toolbar-large-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-bg.gif), corners:url(images/btn/btn-default-toolbar-large-corners.gif), sides:url(images/btn/btn-default-toolbar-large-sides.gif)"}.x-btn-default-toolbar-large .x-btn-inner{font-size:16px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;color:#666;padding:0 10px}.x-btn-default-toolbar-large .x-btn-arrow{background-image:url(images/button/default-toolbar-large-arrow.png)}.x-btn-default-toolbar-large .x-btn-arrow-right{padding-right:36px}.x-btn-default-toolbar-large .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:36px}.x-btn-default-toolbar-large .x-btn-arrow-bottom{padding-bottom:32px}.x-btn-default-toolbar-large .x-btn-glyph{font-size:32px;line-height:32px;color:#666;opacity:.5}.x-ie8m .x-btn-default-toolbar-large .x-btn-glyph{color:#adadad}.x-btn-default-toolbar-large-disabled{background-image:none;background-color:#f5f5f5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(50%,#f5f5f5),color-stop(51%,#e8e8e8),color-stop(100%,#f5f5f5));background-image:-webkit-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-moz-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-o-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5)}.x-btn-default-toolbar-large-icon .x-btn-button,.x-btn-default-toolbar-large-noicon .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon .x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-inner{line-height:32px}.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:10px;padding-left:0}.x-btn-default-toolbar-large-icon .x-btn-inner{width:32px;padding:0}.x-btn-default-toolbar-large-icon .x-btn-icon-el{width:32px;height:32px}.x-btn-default-toolbar-large-icon-text-left .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon-text-left .x-btn-inner{line-height:32px;padding-left:37px}.x-btn-default-toolbar-large-icon-text-left .x-rtl.x-btn-inner{padding-left:10px;padding-right:37px}.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:37px}.x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el{width:32px;right:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el{height:32px}.x-btn-default-toolbar-large-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-default-toolbar-large-icon-text-right .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon-text-right .x-btn-inner{line-height:32px;padding-right:37px}.x-btn-default-toolbar-large-icon-text-right .x-rtl.x-btn-inner{padding-right:10px;padding-left:37px}.x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el{width:32px;left:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el{height:32px}.x-btn-default-toolbar-large-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-default-toolbar-large-icon-text-top .x-btn-inner{padding-top:37px}.x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el{height:32px;bottom:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner{padding-bottom:37px}.x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el{height:32px;top:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-large-over{background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-default-toolbar-large-focus{background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-default-toolbar-large-menu-active,.x-btn-default-toolbar-large-pressed{background-image:none;background-color:#e1e1e1;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e1e1e1),color-stop(50%,#d5d5d5),color-stop(51%,#e1e1e1),color-stop(100%,#e4e4e4));background-image:-webkit-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-moz-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-o-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4)}.x-btn-default-toolbar-large-over .x-frame-tl,.x-btn-default-toolbar-large-over .x-frame-bl,.x-btn-default-toolbar-large-over .x-frame-tr,.x-btn-default-toolbar-large-over .x-frame-br,.x-btn-default-toolbar-large-over .x-frame-tc,.x-btn-default-toolbar-large-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-over-corners.gif)}.x-btn-default-toolbar-large-over .x-frame-ml,.x-btn-default-toolbar-large-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-over-sides.gif)}.x-btn-default-toolbar-large-over .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-default-toolbar-large-over-fbg.gif)}.x-btn-default-toolbar-large-focus .x-frame-tl,.x-btn-default-toolbar-large-focus .x-frame-bl,.x-btn-default-toolbar-large-focus .x-frame-tr,.x-btn-default-toolbar-large-focus .x-frame-br,.x-btn-default-toolbar-large-focus .x-frame-tc,.x-btn-default-toolbar-large-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-focus-corners.gif)}.x-btn-default-toolbar-large-focus .x-frame-ml,.x-btn-default-toolbar-large-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-focus-sides.gif)}.x-btn-default-toolbar-large-focus .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-default-toolbar-large-focus-fbg.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-tl,.x-btn-default-toolbar-large-menu-active .x-frame-bl,.x-btn-default-toolbar-large-menu-active .x-frame-tr,.x-btn-default-toolbar-large-menu-active .x-frame-br,.x-btn-default-toolbar-large-menu-active .x-frame-tc,.x-btn-default-toolbar-large-menu-active .x-frame-bc,.x-btn-default-toolbar-large-pressed .x-frame-tl,.x-btn-default-toolbar-large-pressed .x-frame-bl,.x-btn-default-toolbar-large-pressed .x-frame-tr,.x-btn-default-toolbar-large-pressed .x-frame-br,.x-btn-default-toolbar-large-pressed .x-frame-tc,.x-btn-default-toolbar-large-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-pressed-corners.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-ml,.x-btn-default-toolbar-large-menu-active .x-frame-mr,.x-btn-default-toolbar-large-pressed .x-frame-ml,.x-btn-default-toolbar-large-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-pressed-sides.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-mc,.x-btn-default-toolbar-large-pressed .x-frame-mc{background-color:#e1e1e1;background-image:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif)}.x-btn-default-toolbar-large-disabled .x-frame-tl,.x-btn-default-toolbar-large-disabled .x-frame-bl,.x-btn-default-toolbar-large-disabled .x-frame-tr,.x-btn-default-toolbar-large-disabled .x-frame-br,.x-btn-default-toolbar-large-disabled .x-frame-tc,.x-btn-default-toolbar-large-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-disabled-corners.gif)}.x-btn-default-toolbar-large-disabled .x-frame-ml,.x-btn-default-toolbar-large-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)}.x-btn-default-toolbar-large-disabled .x-frame-mc{background-color:#f5f5f5;background-image:url(images/btn/btn-default-toolbar-large-disabled-fbg.gif)}.x-nlg .x-btn-default-toolbar-large-over{background-image:url(images/btn/btn-default-toolbar-large-over-bg.gif)}.x-nlg .x-btn-default-toolbar-large-focus{background-image:url(images/btn/btn-default-toolbar-large-focus-bg.gif)}.x-nlg .x-btn-default-toolbar-large-menu-active,.x-nlg .x-btn-default-toolbar-large-pressed{background-image:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)}.x-nlg .x-btn-default-toolbar-large-disabled{background-image:url(images/btn/btn-default-toolbar-large-disabled-bg.gif)}.x-nbr .x-btn-default-toolbar-large{background-image:none}.x-btn-default-toolbar-large .x-btn-split-right{background-image:url(images/button/default-toolbar-large-s-arrow.png);padding-right:38px}.x-btn-default-toolbar-large .x-rtl.x-btn-split-right{background-image:url(images/button/default-toolbar-large-s-arrow-rtl.png);padding-right:0;padding-left:38px}.x-btn-default-toolbar-large .x-btn-split-bottom{background-image:url(images/button/default-toolbar-large-s-arrow-b.png);padding-bottom:34px}.x-btn-default-toolbar-large-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-over-bg.gif)"}.x-btn-default-toolbar-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-focus-bg.gif)"}.x-btn-default-toolbar-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)"}.x-btn-default-toolbar-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-disabled-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-disabled-bg.gif)"}.x-btn-icon-text-left .x-btn-icon-el{background-position:left center}.x-btn-icon-text-left .x-rtl.x-btn-icon-el{background-position:right center}.x-btn-icon-text-right .x-btn-icon-el{background-position:right center}.x-btn-icon-text-right .x-rtl.x-btn-icon-el{background-position:left center}.x-btn-icon-text-top .x-btn-icon-el{background-position:center top}.x-btn-icon-text-bottom .x-btn-icon-el{background-position:center bottom}.x-btn-arrow-right{background-position:right center}.x-rtl.x-btn-arrow-right{background-position:left center}.x-btn-arrow-bottom{background-position:center bottom}.x-btn-arrow{background-repeat:no-repeat}.x-btn-split{display:block;background-repeat:no-repeat}.x-btn-split-right{background-position:right center}.x-rtl.x-btn-split-right{background-position:0 center}.x-btn-split-bottom{background-position:center bottom}.x-cycle-fixed-width .x-btn-inner{text-align:inherit}.x-toolbar{font-size:13px;border-style:solid;padding:6px 0 6px 8px}.x-toolbar-item{margin:0 8px 0 0}.x-rtl.x-toolbar-item{margin:0 0 0 8px}.x-toolbar-text{margin:0 6px 0 4px;color:#333f49;line-height:16px;font-family:helvetica,arial,verdana,sans-serif;font-size:12px;font-weight:normal}.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}.x-rtl.x-toolbar{padding:6px 8px 6px 0}.x-toolbar-footer{background:#dfeaf2;border:0;margin:0;padding:6px 0 6px 6px}.x-toolbar-footer .x-toolbar-item{margin:0 6px 0 0}.x-toolbar-spacer{width:2px}.x-toolbar-more-icon{background-image:url(images/toolbar/more.png)!important;background-position:center center!important;background-repeat:no-repeat}.x-toolbar-default{border-color:silver;border-width:1px;background-image:none;background-color:white}.x-toolbar-default .x-box-scroller{cursor:pointer}.x-toolbar-default .x-box-scroller-disabled{cursor:default}.x-toolbar-default .x-tool-img{background-image:url(images/tools/tool-sprites-dark.png);background-color:white}.x-toolbar-scroll-left{background-image:url(images/toolbar/scroll-left.png);background-position:0 0;width:16px;height:16px;border-style:solid;border-color:#8db2e3;border-width:0;margin-top:4px}.x-toolbar-scroll-left-hover{background-position:0 0}.x-toolbar-scroll-right{background-image:url(images/toolbar/scroll-right.png);width:16px;height:16px;border-style:solid;border-color:#8db2e3;border-width:0;margin-top:4px}.x-toolbar-scroll-right-hover{background-position:-16px 0}.x-toolbar .x-box-menu-after{margin:0 8px 0 8px}.x-toolbar-vertical{padding:6px 8px 0 8px}.x-toolbar-vertical .x-toolbar-item{margin:0 0 6px 0}.x-toolbar-vertical .x-toolbar-text{margin:4px 0 6px 0}.x-toolbar-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}.x-toolbar-vertical .x-box-menu-after,.x-toolbar-vertical .x-rtl.x-box-menu-after{margin:6px 0 6px 0;display:block;float:none}.x-header-draggable .x-header-body,.x-header-ghost{cursor:move}.x-header-text{white-space:nowrap}.x-panel-ghost{filter:alpha(opacity=50);opacity:.5}.x-panel-default{border-color:#157fcc;padding:0}.x-panel-header-default{font-size:13px;border:1px solid #157fcc}.x-panel-header-default .x-tool-img{background-color:#157fcc}.x-panel-header-default-horizontal{padding:9px 9px 10px 9px}.x-panel-header-default-horizontal-noborder{padding:10px 10px 10px 10px}.x-panel-header-default-vertical{padding:9px 9px 9px 10px}.x-panel-header-default-vertical-noborder{padding:10px 10px 10px 10px}.x-rtl.x-panel-header-default-vertical{padding:9px 10px 9px 9px}.x-rtl.x-panel-header-default-vertical-noborder{padding:10px 10px 10px 10px}.x-panel-header-text-container-default{color:white;font-size:13px;font-weight:bold;font-family:arial,helvetica,verdana,sans-serif;line-height:15px;padding:1px 0 0;text-transform:none}.x-panel-body-default{background:white;border-color:#157fcc;color:black;font-size:13px;font-size:normal;border-width:1px;border-style:solid}.x-panel-header-default{background-image:none;background-color:#157fcc}.x-panel-header-default-vertical{background-image:none;background-color:#157fcc}.x-rtl.x-panel-header-default-vertical{background-image:none;background-color:#157fcc}.x-panel .x-panel-header-default-collapsed-border-top{border-bottom-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-right{border-left-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-bottom{border-top-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-left{border-right-width:1px!important}.x-panel-header-default-top:after{display:none;content:"x-slicer:stretch:bottom"}.x-panel-header-default-bottom:after{display:none;content:"x-slicer:stretch:bottom"}.x-panel-header-default-left:after{display:none;content:"x-slicer:stretch:left"}.x-panel-header-default-right:after{display:none;content:"x-slicer:stretch:left"}.x-panel-header-default-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-default-vertical .x-panel-header-text-container{background-color:#157fcc;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#157fcc)}.x-panel-header-default-vertical .x-rtl.x-panel-header-text-container{-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-panel-header-default-vertical .x-rtl.x-panel-header-text-container{background-color:#157fcc;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3),progid:DXImageTransform.Microsoft.Chroma(color=#157fcc)}.x-panel-header-default .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-default .x-panel-header-glyph{color:white;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-default .x-panel-header-glyph{color:#8abfe5}.x-panel-header-default-horizontal .x-panel-header-icon-before-title{margin:0 6px 0 0}.x-panel-header-default-horizontal .x-rtl.x-panel-header-icon-before-title{margin:0 0 0 6px}.x-panel-header-default-horizontal .x-panel-header-icon-after-title{margin:0 0 0 6px}.x-panel-header-default-horizontal .x-rtl.x-panel-header-icon-after-title{margin:0 6px 0 0}.x-panel-header-default-vertical .x-panel-header-icon-before-title{margin:0 0 6px 0}.x-panel-header-default-vertical .x-rtl.x-panel-header-icon-before-title{margin:0 0 6px 0}.x-panel-header-default-vertical .x-panel-header-icon-after-title{margin:6px 0 0 0}.x-panel-header-default-vertical .x-rtl.x-panel-header-icon-after-title{margin:6px 0 0 0}.x-panel-header-default-horizontal .x-tool-after-title{margin:0 0 0 6px}.x-panel-header-default-horizontal .x-rtl.x-tool-after-title{margin:0 6px 0 0}.x-panel-header-default-horizontal .x-tool-before-title{margin:0 6px 0 0}.x-panel-header-default-horizontal .x-rtl.x-tool-before-title{margin:0 0 0 6px}.x-panel-header-default-vertical .x-tool-after-title{margin:6px 0 0 0}.x-panel-header-default-vertical .x-rtl.x-tool-after-title{margin:6px 0 0 0}.x-panel-header-default-vertical .x-tool-before-title{margin:0 0 6px 0}.x-panel-header-default-vertical .x-rtl.x-tool-before-title{margin:0 0 6px 0}.x-rtl.x-panel-header-default-collapsed-border-right{border-right-width:1px!important}.x-rtl.x-panel-header-default-collapsed-border-left{border-left-width:1px!important}.x-panel-default-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-panel-default-outer-border-l{border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-outer-border-b{border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-default-outer-border-bl{border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-outer-border-r{border-right-color:#157fcc!important;border-right-width:1px!important}.x-panel-default-outer-border-rl{border-right-color:#157fcc!important;border-right-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-outer-border-rb{border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-default-outer-border-rbl{border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-outer-border-t{border-top-color:#157fcc!important;border-top-width:1px!important}.x-panel-default-outer-border-tl{border-top-color:#157fcc!important;border-top-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-outer-border-tb{border-top-color:#157fcc!important;border-top-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-default-outer-border-tbl{border-top-color:#157fcc!important;border-top-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-outer-border-tr{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important}.x-panel-default-outer-border-trl{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-outer-border-trb{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-default-outer-border-trbl{border-color:#157fcc!important;border-width:1px!important}.x-panel-default-framed{border-color:#157fcc;padding:0}.x-panel-header-default-framed{font-size:13px;border:5px solid #157fcc}.x-panel-header-default-framed .x-tool-img{background-color:#157fcc}.x-panel-header-default-framed-horizontal{padding:5px}.x-panel-header-default-framed-horizontal-noborder{padding:10px 10px 5px 10px}.x-panel-header-default-framed-vertical{padding:5px 5px 5px 5px}.x-panel-header-default-framed-vertical-noborder{padding:10px 10px 10px 5px}.x-rtl.x-panel-header-default-framed-vertical{padding:5px 5px 5px 5px}.x-rtl.x-panel-header-default-framed-vertical-noborder{padding:10px 5px 10px 10px}.x-panel-header-text-container-default-framed{color:white;font-size:13px;font-weight:bold;font-family:arial,helvetica,verdana,sans-serif;line-height:15px;padding:1px 0 0;text-transform:none}.x-panel-body-default-framed{background:white;border-color:#157fcc;color:black;font-size:13px;font-size:normal;border-width:1px;border-style:solid}.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;border-width:5px;border-style:solid;background-color:white}.x-panel-default-framed-mc{background-color:white}.x-nbr .x-panel-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-default-framed-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-0-0-0-0}.x-panel-default-framed-tl{background-position:0 -10px}.x-panel-default-framed-tr{background-position:right -15px}.x-panel-default-framed-bl{background-position:0 -20px}.x-panel-default-framed-br{background-position:right -25px}.x-panel-default-framed-ml{background-position:0 top}.x-panel-default-framed-mr{background-position:right top}.x-panel-default-framed-tc{background-position:0 0}.x-panel-default-framed-bc{background-position:0 -5px}.x-panel-default-framed-tr,.x-panel-default-framed-br,.x-panel-default-framed-mr{padding-right:5px}.x-panel-default-framed-tl,.x-panel-default-framed-bl,.x-panel-default-framed-ml{padding-left:5px}.x-panel-default-framed-tc{height:5px}.x-panel-default-framed-bc{height:5px}.x-panel-default-framed-tl,.x-panel-default-framed-bl,.x-panel-default-framed-tr,.x-panel-default-framed-br,.x-panel-default-framed-tc,.x-panel-default-framed-bc,.x-panel-default-framed-ml,.x-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-corners.gif)}.x-panel-default-framed-ml,.x-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-sides.gif);background-repeat:repeat-y}.x-panel-default-framed-mc{padding:0}.x-strict .x-ie7 .x-panel-default-framed-tl,.x-strict .x-ie7 .x-panel-default-framed-bl{position:relative;right:0}.x-panel-default-framed:after{display:none;content:"x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"}.x-panel-header-default-framed-top{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 5px 5px 5px;border-width:5px 5px 0 5px;border-style:solid;background-color:#157fcc}.x-panel-header-default-framed-top-mc{background-color:#157fcc}.x-nbr .x-panel-header-default-framed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-default-framed-top-frameInfo{font-family:dh-4-4-0-0-5-5-0-5-5-5-5-5}.x-panel-header-default-framed-top-tl{background-position:0 -10px}.x-panel-header-default-framed-top-tr{background-position:right -15px}.x-panel-header-default-framed-top-bl{background-position:0 -20px}.x-panel-header-default-framed-top-br{background-position:right -25px}.x-panel-header-default-framed-top-ml{background-position:0 top}.x-panel-header-default-framed-top-mr{background-position:right top}.x-panel-header-default-framed-top-tc{background-position:0 0}.x-panel-header-default-framed-top-bc{background-position:0 -5px}.x-panel-header-default-framed-top-tr,.x-panel-header-default-framed-top-br,.x-panel-header-default-framed-top-mr{padding-right:5px}.x-panel-header-default-framed-top-tl,.x-panel-header-default-framed-top-bl,.x-panel-header-default-framed-top-ml{padding-left:5px}.x-panel-header-default-framed-top-tc{height:5px}.x-panel-header-default-framed-top-bc{height:0}.x-panel-header-default-framed-top-tl,.x-panel-header-default-framed-top-bl,.x-panel-header-default-framed-top-tr,.x-panel-header-default-framed-top-br,.x-panel-header-default-framed-top-tc,.x-panel-header-default-framed-top-bc,.x-panel-header-default-framed-top-ml,.x-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-corners.gif)}.x-panel-header-default-framed-top-ml,.x-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-sides.gif);background-repeat:repeat-y}.x-panel-header-default-framed-top-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-default-framed-top-tl,.x-strict .x-ie7 .x-panel-header-default-framed-top-bl{position:relative;right:0}.x-panel-header-default-framed-top:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"}.x-panel-header-default-framed-right{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 5px 5px 5px;border-width:5px 5px 5px 0;border-style:solid;background-color:#157fcc}.x-rtl.x-panel-header-default-framed-right{background-image:none;background-color:#157fcc}.x-panel-header-default-framed-right-mc{background-color:#157fcc}.x-nbr .x-panel-header-default-framed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-default-framed-right-frameInfo{font-family:dh-0-4-4-0-5-5-5-0-5-5-5-5}.x-panel-header-default-framed-right-tl{background-position:0 -10px}.x-panel-header-default-framed-right-tr{background-position:right -15px}.x-panel-header-default-framed-right-bl{background-position:0 -20px}.x-panel-header-default-framed-right-br{background-position:right -25px}.x-panel-header-default-framed-right-ml{background-position:0 right}.x-panel-header-default-framed-right-mr{background-position:right right}.x-panel-header-default-framed-right-tc{background-position:0 0}.x-panel-header-default-framed-right-bc{background-position:0 -5px}.x-panel-header-default-framed-right-tr,.x-panel-header-default-framed-right-br,.x-panel-header-default-framed-right-mr{padding-right:5px}.x-panel-header-default-framed-right-tl,.x-panel-header-default-framed-right-bl,.x-panel-header-default-framed-right-ml{padding-left:0}.x-panel-header-default-framed-right-tc{height:5px}.x-panel-header-default-framed-right-bc{height:5px}.x-panel-header-default-framed-right-tl,.x-panel-header-default-framed-right-bl,.x-panel-header-default-framed-right-tr,.x-panel-header-default-framed-right-br,.x-panel-header-default-framed-right-tc,.x-panel-header-default-framed-right-bc,.x-panel-header-default-framed-right-ml,.x-panel-header-default-framed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-corners.gif)}.x-rtl.x-panel-header-default-framed-right-tl,.x-rtl.x-panel-header-default-framed-right-ml,.x-rtl.x-panel-header-default-framed-right-bl,.x-rtl.x-panel-header-default-framed-right-tr,.x-rtl.x-panel-header-default-framed-right-mr,.x-rtl.x-panel-header-default-framed-right-br{background-image:url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif)}.x-panel-header-default-framed-right-ml,.x-panel-header-default-framed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-sides.gif);background-repeat:repeat-y}.x-panel-header-default-framed-right-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-default-framed-right-tl,.x-strict .x-ie7 .x-panel-header-default-framed-right-bl{position:relative;right:0}.x-panel-header-default-framed-right:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif)"}.x-panel-header-default-framed-bottom{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 5px 5px 5px;border-width:0 5px 5px 5px;border-style:solid;background-color:#157fcc}.x-panel-header-default-framed-bottom-mc{background-color:#157fcc}.x-nbr .x-panel-header-default-framed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-default-framed-bottom-frameInfo{font-family:dh-0-0-4-4-0-5-5-5-5-5-5-5}.x-panel-header-default-framed-bottom-tl{background-position:0 -10px}.x-panel-header-default-framed-bottom-tr{background-position:right -15px}.x-panel-header-default-framed-bottom-bl{background-position:0 -20px}.x-panel-header-default-framed-bottom-br{background-position:right -25px}.x-panel-header-default-framed-bottom-ml{background-position:0 bottom}.x-panel-header-default-framed-bottom-mr{background-position:right bottom}.x-panel-header-default-framed-bottom-tc{background-position:0 0}.x-panel-header-default-framed-bottom-bc{background-position:0 -5px}.x-panel-header-default-framed-bottom-tr,.x-panel-header-default-framed-bottom-br,.x-panel-header-default-framed-bottom-mr{padding-right:5px}.x-panel-header-default-framed-bottom-tl,.x-panel-header-default-framed-bottom-bl,.x-panel-header-default-framed-bottom-ml{padding-left:5px}.x-panel-header-default-framed-bottom-tc{height:0}.x-panel-header-default-framed-bottom-bc{height:5px}.x-panel-header-default-framed-bottom-tl,.x-panel-header-default-framed-bottom-bl,.x-panel-header-default-framed-bottom-tr,.x-panel-header-default-framed-bottom-br,.x-panel-header-default-framed-bottom-tc,.x-panel-header-default-framed-bottom-bc,.x-panel-header-default-framed-bottom-ml,.x-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-corners.gif)}.x-panel-header-default-framed-bottom-ml,.x-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-sides.gif);background-repeat:repeat-y}.x-panel-header-default-framed-bottom-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl,.x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl{position:relative;right:0}.x-panel-header-default-framed-bottom:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"}.x-panel-header-default-framed-left{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 5px 5px 5px;border-width:5px 0 5px 5px;border-style:solid;background-color:#157fcc}.x-rtl.x-panel-header-default-framed-left{background-image:none;background-color:#157fcc}.x-panel-header-default-framed-left-mc{background-color:#157fcc}.x-nbr .x-panel-header-default-framed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-default-framed-left-frameInfo{font-family:dh-4-0-0-4-5-0-5-5-5-5-5-5}.x-panel-header-default-framed-left-tl{background-position:0 -10px}.x-panel-header-default-framed-left-tr{background-position:right -15px}.x-panel-header-default-framed-left-bl{background-position:0 -20px}.x-panel-header-default-framed-left-br{background-position:right -25px}.x-panel-header-default-framed-left-ml{background-position:0 left}.x-panel-header-default-framed-left-mr{background-position:right left}.x-panel-header-default-framed-left-tc{background-position:0 0}.x-panel-header-default-framed-left-bc{background-position:0 -5px}.x-panel-header-default-framed-left-tr,.x-panel-header-default-framed-left-br,.x-panel-header-default-framed-left-mr{padding-right:0}.x-panel-header-default-framed-left-tl,.x-panel-header-default-framed-left-bl,.x-panel-header-default-framed-left-ml{padding-left:5px}.x-panel-header-default-framed-left-tc{height:5px}.x-panel-header-default-framed-left-bc{height:5px}.x-panel-header-default-framed-left-tl,.x-panel-header-default-framed-left-bl,.x-panel-header-default-framed-left-tr,.x-panel-header-default-framed-left-br,.x-panel-header-default-framed-left-tc,.x-panel-header-default-framed-left-bc,.x-panel-header-default-framed-left-ml,.x-panel-header-default-framed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-corners.gif)}.x-rtl.x-panel-header-default-framed-left-tl,.x-rtl.x-panel-header-default-framed-left-ml,.x-rtl.x-panel-header-default-framed-left-bl,.x-rtl.x-panel-header-default-framed-left-tr,.x-rtl.x-panel-header-default-framed-left-mr,.x-rtl.x-panel-header-default-framed-left-br{background-image:url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif)}.x-panel-header-default-framed-left-ml,.x-panel-header-default-framed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-sides.gif);background-repeat:repeat-y}.x-panel-header-default-framed-left-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-default-framed-left-tl,.x-strict .x-ie7 .x-panel-header-default-framed-left-bl{position:relative;right:0}.x-panel-header-default-framed-left:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif)"}.x-panel-header-default-framed-collapsed-top{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#157fcc}.x-panel-header-default-framed-collapsed-top-mc{background-color:#157fcc}.x-nbr .x-panel-header-default-framed-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-default-framed-collapsed-top-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-panel-header-default-framed-collapsed-top-tl{background-position:0 -10px}.x-panel-header-default-framed-collapsed-top-tr{background-position:right -15px}.x-panel-header-default-framed-collapsed-top-bl{background-position:0 -20px}.x-panel-header-default-framed-collapsed-top-br{background-position:right -25px}.x-panel-header-default-framed-collapsed-top-ml{background-position:0 top}.x-panel-header-default-framed-collapsed-top-mr{background-position:right top}.x-panel-header-default-framed-collapsed-top-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-top-bc{background-position:0 -5px}.x-panel-header-default-framed-collapsed-top-tr,.x-panel-header-default-framed-collapsed-top-br,.x-panel-header-default-framed-collapsed-top-mr{padding-right:5px}.x-panel-header-default-framed-collapsed-top-tl,.x-panel-header-default-framed-collapsed-top-bl,.x-panel-header-default-framed-collapsed-top-ml{padding-left:5px}.x-panel-header-default-framed-collapsed-top-tc{height:5px}.x-panel-header-default-framed-collapsed-top-bc{height:5px}.x-panel-header-default-framed-collapsed-top-tl,.x-panel-header-default-framed-collapsed-top-bl,.x-panel-header-default-framed-collapsed-top-tr,.x-panel-header-default-framed-collapsed-top-br,.x-panel-header-default-framed-collapsed-top-tc,.x-panel-header-default-framed-collapsed-top-bc,.x-panel-header-default-framed-collapsed-top-ml,.x-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif)}.x-panel-header-default-framed-collapsed-top-ml,.x-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif);background-repeat:repeat-y}.x-panel-header-default-framed-collapsed-top-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-top:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"}.x-panel-header-default-framed-collapsed-right{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#157fcc}.x-rtl.x-panel-header-default-framed-collapsed-right{background-image:none;background-color:#157fcc}.x-panel-header-default-framed-collapsed-right-mc{background-color:#157fcc}.x-nbr .x-panel-header-default-framed-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-default-framed-collapsed-right-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-panel-header-default-framed-collapsed-right-tl{background-position:0 -10px}.x-panel-header-default-framed-collapsed-right-tr{background-position:right -15px}.x-panel-header-default-framed-collapsed-right-bl{background-position:0 -20px}.x-panel-header-default-framed-collapsed-right-br{background-position:right -25px}.x-panel-header-default-framed-collapsed-right-ml{background-position:0 right}.x-panel-header-default-framed-collapsed-right-mr{background-position:right right}.x-panel-header-default-framed-collapsed-right-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-right-bc{background-position:0 -5px}.x-panel-header-default-framed-collapsed-right-tr,.x-panel-header-default-framed-collapsed-right-br,.x-panel-header-default-framed-collapsed-right-mr{padding-right:5px}.x-panel-header-default-framed-collapsed-right-tl,.x-panel-header-default-framed-collapsed-right-bl,.x-panel-header-default-framed-collapsed-right-ml{padding-left:5px}.x-panel-header-default-framed-collapsed-right-tc{height:5px}.x-panel-header-default-framed-collapsed-right-bc{height:5px}.x-panel-header-default-framed-collapsed-right-tl,.x-panel-header-default-framed-collapsed-right-bl,.x-panel-header-default-framed-collapsed-right-tr,.x-panel-header-default-framed-collapsed-right-br,.x-panel-header-default-framed-collapsed-right-tc,.x-panel-header-default-framed-collapsed-right-bc,.x-panel-header-default-framed-collapsed-right-ml,.x-panel-header-default-framed-collapsed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif)}.x-rtl.x-panel-header-default-framed-collapsed-right-tl,.x-rtl.x-panel-header-default-framed-collapsed-right-ml,.x-rtl.x-panel-header-default-framed-collapsed-right-bl,.x-rtl.x-panel-header-default-framed-collapsed-right-tr,.x-rtl.x-panel-header-default-framed-collapsed-right-mr,.x-rtl.x-panel-header-default-framed-collapsed-right-br{background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif)}.x-panel-header-default-framed-collapsed-right-ml,.x-panel-header-default-framed-collapsed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif);background-repeat:repeat-y}.x-panel-header-default-framed-collapsed-right-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-right:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif)"}.x-panel-header-default-framed-collapsed-bottom{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#157fcc}.x-panel-header-default-framed-collapsed-bottom-mc{background-color:#157fcc}.x-nbr .x-panel-header-default-framed-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-default-framed-collapsed-bottom-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-panel-header-default-framed-collapsed-bottom-tl{background-position:0 -10px}.x-panel-header-default-framed-collapsed-bottom-tr{background-position:right -15px}.x-panel-header-default-framed-collapsed-bottom-bl{background-position:0 -20px}.x-panel-header-default-framed-collapsed-bottom-br{background-position:right -25px}.x-panel-header-default-framed-collapsed-bottom-ml{background-position:0 bottom}.x-panel-header-default-framed-collapsed-bottom-mr{background-position:right bottom}.x-panel-header-default-framed-collapsed-bottom-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-bottom-bc{background-position:0 -5px}.x-panel-header-default-framed-collapsed-bottom-tr,.x-panel-header-default-framed-collapsed-bottom-br,.x-panel-header-default-framed-collapsed-bottom-mr{padding-right:5px}.x-panel-header-default-framed-collapsed-bottom-tl,.x-panel-header-default-framed-collapsed-bottom-bl,.x-panel-header-default-framed-collapsed-bottom-ml{padding-left:5px}.x-panel-header-default-framed-collapsed-bottom-tc{height:5px}.x-panel-header-default-framed-collapsed-bottom-bc{height:5px}.x-panel-header-default-framed-collapsed-bottom-tl,.x-panel-header-default-framed-collapsed-bottom-bl,.x-panel-header-default-framed-collapsed-bottom-tr,.x-panel-header-default-framed-collapsed-bottom-br,.x-panel-header-default-framed-collapsed-bottom-tc,.x-panel-header-default-framed-collapsed-bottom-bc,.x-panel-header-default-framed-collapsed-bottom-ml,.x-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif)}.x-panel-header-default-framed-collapsed-bottom-ml,.x-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif);background-repeat:repeat-y}.x-panel-header-default-framed-collapsed-bottom-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-bottom:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"}.x-panel-header-default-framed-collapsed-left{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#157fcc}.x-rtl.x-panel-header-default-framed-collapsed-left{background-image:none;background-color:#157fcc}.x-panel-header-default-framed-collapsed-left-mc{background-color:#157fcc}.x-nbr .x-panel-header-default-framed-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-default-framed-collapsed-left-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-panel-header-default-framed-collapsed-left-tl{background-position:0 -10px}.x-panel-header-default-framed-collapsed-left-tr{background-position:right -15px}.x-panel-header-default-framed-collapsed-left-bl{background-position:0 -20px}.x-panel-header-default-framed-collapsed-left-br{background-position:right -25px}.x-panel-header-default-framed-collapsed-left-ml{background-position:0 left}.x-panel-header-default-framed-collapsed-left-mr{background-position:right left}.x-panel-header-default-framed-collapsed-left-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-left-bc{background-position:0 -5px}.x-panel-header-default-framed-collapsed-left-tr,.x-panel-header-default-framed-collapsed-left-br,.x-panel-header-default-framed-collapsed-left-mr{padding-right:5px}.x-panel-header-default-framed-collapsed-left-tl,.x-panel-header-default-framed-collapsed-left-bl,.x-panel-header-default-framed-collapsed-left-ml{padding-left:5px}.x-panel-header-default-framed-collapsed-left-tc{height:5px}.x-panel-header-default-framed-collapsed-left-bc{height:5px}.x-panel-header-default-framed-collapsed-left-tl,.x-panel-header-default-framed-collapsed-left-bl,.x-panel-header-default-framed-collapsed-left-tr,.x-panel-header-default-framed-collapsed-left-br,.x-panel-header-default-framed-collapsed-left-tc,.x-panel-header-default-framed-collapsed-left-bc,.x-panel-header-default-framed-collapsed-left-ml,.x-panel-header-default-framed-collapsed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif)}.x-rtl.x-panel-header-default-framed-collapsed-left-tl,.x-rtl.x-panel-header-default-framed-collapsed-left-ml,.x-rtl.x-panel-header-default-framed-collapsed-left-bl,.x-rtl.x-panel-header-default-framed-collapsed-left-tr,.x-rtl.x-panel-header-default-framed-collapsed-left-mr,.x-rtl.x-panel-header-default-framed-collapsed-left-br{background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif)}.x-panel-header-default-framed-collapsed-left-ml,.x-panel-header-default-framed-collapsed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif);background-repeat:repeat-y}.x-panel-header-default-framed-collapsed-left-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-left:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif)"}.x-panel .x-panel-header-default-framed-top{border-bottom-width:5px!important}.x-panel .x-panel-header-default-framed-right{border-left-width:5px!important}.x-panel .x-panel-header-default-framed-bottom{border-top-width:5px!important}.x-panel .x-panel-header-default-framed-left{border-right-width:5px!important}.x-nbr .x-panel-header-default-framed-collapsed-top{border-bottom-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-right{border-left-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-bottom{border-top-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-left{border-right-width:0!important}.x-panel-header-default-framed-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-default-framed-vertical .x-panel-header-text-container{background-color:#157fcc;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#157fcc)}.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-text-container{-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-panel-header-default-framed-vertical .x-rtl.x-panel-header-text-container{background-color:#157fcc;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3),progid:DXImageTransform.Microsoft.Chroma(color=#157fcc)}.x-panel-header-default-framed .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-default-framed .x-panel-header-glyph{color:white;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-default-framed .x-panel-header-glyph{color:#8abfe5}.x-panel-header-default-framed-horizontal .x-panel-header-icon-before-title{margin:0 6px 0 0}.x-panel-header-default-framed-horizontal .x-rtl.x-panel-header-icon-before-title{margin:0 0 0 6px}.x-panel-header-default-framed-horizontal .x-panel-header-icon-after-title{margin:0 0 0 6px}.x-panel-header-default-framed-horizontal .x-rtl.x-panel-header-icon-after-title{margin:0 6px 0 0}.x-panel-header-default-framed-vertical .x-panel-header-icon-before-title{margin:0 0 6px 0}.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-icon-before-title{margin:0 0 6px 0}.x-panel-header-default-framed-vertical .x-panel-header-icon-after-title{margin:6px 0 0 0}.x-panel-header-default-framed-vertical .x-rtl.x-panel-header-icon-after-title{margin:6px 0 0 0}.x-panel-header-default-framed-horizontal .x-tool-after-title{margin:0 0 0 6px}.x-panel-header-default-framed-horizontal .x-rtl.x-tool-after-title{margin:0 6px 0 0}.x-panel-header-default-framed-horizontal .x-tool-before-title{margin:0 6px 0 0}.x-panel-header-default-framed-horizontal .x-rtl.x-tool-before-title{margin:0 0 0 6px}.x-panel-header-default-framed-vertical .x-tool-after-title{margin:6px 0 0 0}.x-panel-header-default-framed-vertical .x-rtl.x-tool-after-title{margin:6px 0 0 0}.x-panel-header-default-framed-vertical .x-tool-before-title{margin:0 0 6px 0}.x-panel-header-default-framed-vertical .x-rtl.x-tool-before-title{margin:0 0 6px 0}.x-rtl.x-panel-header-default-framed-collapsed-border-right{border-right-width:5px!important}.x-rtl.x-panel-header-default-framed-collapsed-border-left{border-left-width:5px!important}.x-panel-default-framed-resizable{overflow:visible}.x-panel-default-framed-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-panel-default-framed-resizable .x-panel-handle-north-br{top:-5px}.x-panel-default-framed-resizable .x-panel-handle-south-br{bottom:-5px}.x-panel-default-framed-resizable .x-panel-handle-east-br{right:-5px}.x-panel-default-framed-resizable .x-panel-handle-west-br{left:-5px}.x-panel-default-framed-resizable .x-panel-handle-northwest-br{left:-5px;top:-5px}.x-panel-default-framed-resizable .x-panel-handle-northeast-br{right:-5px;top:-5px}.x-panel-default-framed-resizable .x-panel-handle-southeast-br{right:-5px;bottom:-5px}.x-panel-default-framed-resizable .x-panel-handle-southwest-br{left:-5px;bottom:-5px}.x-panel-default-framed-outer-border-l{border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-framed-outer-border-b{border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-default-framed-outer-border-bl{border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-framed-outer-border-r{border-right-color:#157fcc!important;border-right-width:1px!important}.x-panel-default-framed-outer-border-rl{border-right-color:#157fcc!important;border-right-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-framed-outer-border-rb{border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-default-framed-outer-border-rbl{border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-framed-outer-border-t{border-top-color:#157fcc!important;border-top-width:1px!important}.x-panel-default-framed-outer-border-tl{border-top-color:#157fcc!important;border-top-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-framed-outer-border-tb{border-top-color:#157fcc!important;border-top-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-default-framed-outer-border-tbl{border-top-color:#157fcc!important;border-top-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-framed-outer-border-tr{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important}.x-panel-default-framed-outer-border-trl{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-framed-outer-border-trb{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-default-framed-outer-border-trbl{border-color:#157fcc!important;border-width:1px!important}.x-tip-anchor{position:absolute;overflow:hidden;height:10px;width:10px;border-style:solid;border-width:5px;border-color:#e1e1e1;zoom:1}.x-content-box .x-tip-anchor{height:0;width:0}.x-tip-anchor-top{border-top-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-bottom{border-bottom-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-bottom-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-left{border-top-color:transparent;border-bottom-color:transparent;border-left-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-left-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-right{border-top-color:transparent;border-bottom-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.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:#eaf3fa}.x-tip-default-mc{background-color:#eaf3fa}.x-nbr .x-tip-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tip-default-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-tip-default-tl{background-position:0 -6px}.x-tip-default-tr{background-position:right -9px}.x-tip-default-bl{background-position:0 -12px}.x-tip-default-br{background-position:right -15px}.x-tip-default-ml{background-position:0 top}.x-tip-default-mr{background-position:right top}.x-tip-default-tc{background-position:0 0}.x-tip-default-bc{background-position:0 -3px}.x-tip-default-tr,.x-tip-default-br,.x-tip-default-mr{padding-right:3px}.x-tip-default-tl,.x-tip-default-bl,.x-tip-default-ml{padding-left:3px}.x-tip-default-tc{height:3px}.x-tip-default-bc{height:3px}.x-tip-default-tl,.x-tip-default-bl,.x-tip-default-tr,.x-tip-default-br,.x-tip-default-tc,.x-tip-default-bc,.x-tip-default-ml,.x-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-corners.gif)}.x-tip-default-ml,.x-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-sides.gif);background-repeat:repeat-y}.x-tip-default-mc{padding:0}.x-strict .x-ie7 .x-tip-default-tl,.x-strict .x-ie7 .x-tip-default-bl{position:relative;right:0}.x-tip-default:after{display:none;content:"x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"}.x-tip-default{border-color:#e1e1e1}.x-tip-default .x-tool-img{background-image:url(images/tools/tool-sprites-dark.png);background-color:#eaf3fa}.x-tip-header-default .x-tool-after-title{margin:0 0 0 6px}.x-tip-header-default .x-rtl.x-tool-after-title{margin:0 6px 0 0}.x-tip-header-default .x-tool-before-title{margin:0 6px 0 0}.x-tip-header-default .x-rtl.x-tool-before-title{margin:0 0 0 6px}.x-tip-header-body-default{padding:3px 3px 0 3px}.x-tip-header-text-container-default{color:black;font-size:13px;font-weight:bold}.x-tip-body-default{padding:3px;color:black;font-size:13px;font-weight:normal}.x-tip-body-default a{color:black}.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:#eaf3fa}.x-tip-form-invalid-mc{background-color:#eaf3fa}.x-nbr .x-tip-form-invalid{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tip-form-invalid-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-tip-form-invalid-tl{background-position:0 -6px}.x-tip-form-invalid-tr{background-position:right -9px}.x-tip-form-invalid-bl{background-position:0 -12px}.x-tip-form-invalid-br{background-position:right -15px}.x-tip-form-invalid-ml{background-position:0 top}.x-tip-form-invalid-mr{background-position:right top}.x-tip-form-invalid-tc{background-position:0 0}.x-tip-form-invalid-bc{background-position:0 -3px}.x-tip-form-invalid-tr,.x-tip-form-invalid-br,.x-tip-form-invalid-mr{padding-right:3px}.x-tip-form-invalid-tl,.x-tip-form-invalid-bl,.x-tip-form-invalid-ml{padding-left:3px}.x-tip-form-invalid-tc{height:3px}.x-tip-form-invalid-bc{height:3px}.x-tip-form-invalid-tl,.x-tip-form-invalid-bl,.x-tip-form-invalid-tr,.x-tip-form-invalid-br,.x-tip-form-invalid-tc,.x-tip-form-invalid-bc,.x-tip-form-invalid-ml,.x-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-corners.gif)}.x-tip-form-invalid-ml,.x-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-sides.gif);background-repeat:repeat-y}.x-tip-form-invalid-mc{padding:0}.x-strict .x-ie7 .x-tip-form-invalid-tl,.x-strict .x-ie7 .x-tip-form-invalid-bl{position:relative;right:0}.x-tip-form-invalid:after{display:none;content:"x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"}.x-tip-form-invalid{border-color:#e1e1e1}.x-tip-form-invalid .x-tool-img{background-image:url(images/tools/tool-sprites-dark.png);background-color:#eaf3fa}.x-tip-header-form-invalid .x-tool-after-title{margin:0 0 0 6px}.x-tip-header-form-invalid .x-rtl.x-tool-after-title{margin:0 6px 0 0}.x-tip-header-form-invalid .x-tool-before-title{margin:0 6px 0 0}.x-tip-header-form-invalid .x-rtl.x-tool-before-title{margin:0 0 0 6px}.x-tip-header-body-form-invalid{padding:3px 3px 0 3px}.x-tip-header-text-container-form-invalid{color:black;font-size:13px;font-weight:bold}.x-tip-body-form-invalid{padding:3px 3px 3px 22px;color:black;font-size:13px;font-weight:normal}.x-tip-body-form-invalid a{color:black}.x-tip-body-form-invalid{background:1px 1px no-repeat;background-image:url(images/form/exclamation.png)}.x-tip-body-form-invalid li{margin-bottom:4px}.x-tip-body-form-invalid li.last{margin-bottom:0}.x-btn-group-default{border-color:#dfeaf2;-webkit-box-shadow:white 0 1px 0 0 inset,white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;-moz-box-shadow:white 0 1px 0 0 inset,white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;box-shadow:white 0 1px 0 0 inset,white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset}.x-btn-group-header-default{padding:4px 5px;line-height:16px;background:#dfeaf2;-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}.x-btn-group-header-default .x-tool-img{background-image:url(images/tools/tool-sprites-dark.png);background-color:#dfeaf2}.x-btn-group-header-text-container-default{font:normal 13px helvetica,arial,verdana,sans-serif;line-height:16px;color:#666}.x-btn-group-body-default{padding:0 1px}.x-btn-group-body-default .x-table-layout{border-spacing:5px}.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:0 1px 0 1px;border-width:3px;border-style:solid;background-color:white}.x-btn-group-default-framed-mc{background-color:white}.x-nbr .x-btn-group-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-group-default-framed-frameInfo{font-family:dh-3-3-3-3-3-3-3-3-0-1-0-1}.x-btn-group-default-framed-tl{background-position:0 -6px}.x-btn-group-default-framed-tr{background-position:right -9px}.x-btn-group-default-framed-bl{background-position:0 -12px}.x-btn-group-default-framed-br{background-position:right -15px}.x-btn-group-default-framed-ml{background-position:0 top}.x-btn-group-default-framed-mr{background-position:right top}.x-btn-group-default-framed-tc{background-position:0 0}.x-btn-group-default-framed-bc{background-position:0 -3px}.x-btn-group-default-framed-tr,.x-btn-group-default-framed-br,.x-btn-group-default-framed-mr{padding-right:3px}.x-btn-group-default-framed-tl,.x-btn-group-default-framed-bl,.x-btn-group-default-framed-ml{padding-left:3px}.x-btn-group-default-framed-tc{height:3px}.x-btn-group-default-framed-bc{height:3px}.x-btn-group-default-framed-tl,.x-btn-group-default-framed-bl,.x-btn-group-default-framed-tr,.x-btn-group-default-framed-br,.x-btn-group-default-framed-tc,.x-btn-group-default-framed-bc,.x-btn-group-default-framed-ml,.x-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-corners.gif)}.x-btn-group-default-framed-ml,.x-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-sides.gif);background-repeat:repeat-y}.x-btn-group-default-framed-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-btn-group-default-framed-tl,.x-strict .x-ie7 .x-btn-group-default-framed-bl{position:relative;right:0}.x-btn-group-default-framed:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"}.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:0 1px 0 1px;border-width:3px;border-style:solid;background-color:white}.x-btn-group-default-framed-notitle-mc{background-color:white}.x-nbr .x-btn-group-default-framed-notitle{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-group-default-framed-notitle-frameInfo{font-family:dh-3-3-3-3-3-3-3-3-0-1-0-1}.x-btn-group-default-framed-notitle-tl{background-position:0 -6px}.x-btn-group-default-framed-notitle-tr{background-position:right -9px}.x-btn-group-default-framed-notitle-bl{background-position:0 -12px}.x-btn-group-default-framed-notitle-br{background-position:right -15px}.x-btn-group-default-framed-notitle-ml{background-position:0 top}.x-btn-group-default-framed-notitle-mr{background-position:right top}.x-btn-group-default-framed-notitle-tc{background-position:0 0}.x-btn-group-default-framed-notitle-bc{background-position:0 -3px}.x-btn-group-default-framed-notitle-tr,.x-btn-group-default-framed-notitle-br,.x-btn-group-default-framed-notitle-mr{padding-right:3px}.x-btn-group-default-framed-notitle-tl,.x-btn-group-default-framed-notitle-bl,.x-btn-group-default-framed-notitle-ml{padding-left:3px}.x-btn-group-default-framed-notitle-tc{height:3px}.x-btn-group-default-framed-notitle-bc{height:3px}.x-btn-group-default-framed-notitle-tl,.x-btn-group-default-framed-notitle-bl,.x-btn-group-default-framed-notitle-tr,.x-btn-group-default-framed-notitle-br,.x-btn-group-default-framed-notitle-tc,.x-btn-group-default-framed-notitle-bc,.x-btn-group-default-framed-notitle-ml,.x-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-corners.gif)}.x-btn-group-default-framed-notitle-ml,.x-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-sides.gif);background-repeat:repeat-y}.x-btn-group-default-framed-notitle-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-btn-group-default-framed-notitle-tl,.x-strict .x-ie7 .x-btn-group-default-framed-notitle-bl{position:relative;right:0}.x-btn-group-default-framed-notitle:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"}.x-btn-group-default-framed{border-color:#dfeaf2;-webkit-box-shadow:white 0 1px 0 0 inset,white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;-moz-box-shadow:white 0 1px 0 0 inset,white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;box-shadow:white 0 1px 0 0 inset,white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset}.x-btn-group-header-default-framed{padding:4px 5px;line-height:16px;background:#dfeaf2;-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}.x-btn-group-header-default-framed .x-tool-img{background-image:url(images/tools/tool-sprites-dark.png);background-color:#dfeaf2}.x-btn-group-header-text-container-default-framed{font:normal 13px helvetica,arial,verdana,sans-serif;line-height:16px;color:#666}.x-btn-group-body-default-framed{padding:0 1px 0 1px}.x-btn-group-body-default-framed .x-table-layout{border-spacing:5px}.x-window-ghost{filter:alpha(opacity=50);opacity:.5}.x-window-default{border-color:#3892d3;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px}.x-window-default{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:0;border-width:5px;border-style:solid;background-color:white}.x-window-default-mc{background-color:white}.x-nbr .x-window-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-default-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-0-0-0-0}.x-window-default-tl{background-position:0 -10px}.x-window-default-tr{background-position:right -15px}.x-window-default-bl{background-position:0 -20px}.x-window-default-br{background-position:right -25px}.x-window-default-ml{background-position:0 top}.x-window-default-mr{background-position:right top}.x-window-default-tc{background-position:0 0}.x-window-default-bc{background-position:0 -5px}.x-window-default-tr,.x-window-default-br,.x-window-default-mr{padding-right:5px}.x-window-default-tl,.x-window-default-bl,.x-window-default-ml{padding-left:5px}.x-window-default-tc{height:5px}.x-window-default-bc{height:5px}.x-window-default-tl,.x-window-default-bl,.x-window-default-tr,.x-window-default-br,.x-window-default-tc,.x-window-default-bc,.x-window-default-ml,.x-window-default-mr{zoom:1;background-image:url(images/window/window-default-corners.gif)}.x-window-default-ml,.x-window-default-mr{zoom:1;background-image:url(images/window/window-default-sides.gif);background-repeat:repeat-y}.x-window-default-mc{padding:0}.x-strict .x-ie7 .x-window-default-tl,.x-strict .x-ie7 .x-window-default-bl{position:relative;right:0}.x-window-default:after{display:none;content:"x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"}.x-window-body-default{border-color:#3892d3;border-width:1px;border-style:solid;background:white;color:black}.x-window-header-default{font-size:13px;border-color:#3892d3;zoom:1;background-color:#3892d3}.x-window-header-default .x-tool-img{background-color:#3892d3}.x-window-header-default-vertical .x-window-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-window-header-default-vertical .x-window-header-text-container{background-color:#3892d3;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#3892d3)}.x-window-header-default-vertical .x-rtl.x-window-header-text-container{-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-window-header-default-vertical .x-rtl.x-window-header-text-container{background-color:#3892d3;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3),progid:DXImageTransform.Microsoft.Chroma(color=#3892d3)}.x-window-header-text-container-default{color:white;font-weight:bold;line-height:15px;font-family:arial,helvetica,verdana,sans-serif;font-size:13px;padding:1px 0 0;text-transform:none}.x-window-header-default-top{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 5px 5px 5px;border-width:5px 5px 5px 5px;border-style:solid;background-color:#3892d3}.x-window-header-default-top-mc{background-color:#3892d3}.x-nbr .x-window-header-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-top-frameInfo{font-family:dh-4-4-0-0-5-5-5-5-5-5-5-5}.x-window-header-default-top-tl{background-position:0 -10px}.x-window-header-default-top-tr{background-position:right -15px}.x-window-header-default-top-bl{background-position:0 -20px}.x-window-header-default-top-br{background-position:right -25px}.x-window-header-default-top-ml{background-position:0 top}.x-window-header-default-top-mr{background-position:right top}.x-window-header-default-top-tc{background-position:0 0}.x-window-header-default-top-bc{background-position:0 -5px}.x-window-header-default-top-tr,.x-window-header-default-top-br,.x-window-header-default-top-mr{padding-right:5px}.x-window-header-default-top-tl,.x-window-header-default-top-bl,.x-window-header-default-top-ml{padding-left:5px}.x-window-header-default-top-tc{height:5px}.x-window-header-default-top-bc{height:5px}.x-window-header-default-top-tl,.x-window-header-default-top-bl,.x-window-header-default-top-tr,.x-window-header-default-top-br,.x-window-header-default-top-tc,.x-window-header-default-top-bc,.x-window-header-default-top-ml,.x-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-corners.gif)}.x-window-header-default-top-ml,.x-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-sides.gif);background-repeat:repeat-y}.x-window-header-default-top-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-window-header-default-top-tl,.x-strict .x-ie7 .x-window-header-default-top-bl{position:relative;right:0}.x-window-header-default-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"}.x-window-header-default-right{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 5px 5px 5px;border-width:5px 5px 5px 5px;border-style:solid;background-color:#3892d3}.x-window-header-default-right-mc{background-color:#3892d3}.x-nbr .x-window-header-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-right-frameInfo{font-family:dh-0-4-4-0-5-5-5-5-5-5-5-5}.x-window-header-default-right-tl{background-position:0 -10px}.x-window-header-default-right-tr{background-position:right -15px}.x-window-header-default-right-bl{background-position:0 -20px}.x-window-header-default-right-br{background-position:right -25px}.x-window-header-default-right-ml{background-position:0 top}.x-window-header-default-right-mr{background-position:right top}.x-window-header-default-right-tc{background-position:0 0}.x-window-header-default-right-bc{background-position:0 -5px}.x-window-header-default-right-tr,.x-window-header-default-right-br,.x-window-header-default-right-mr{padding-right:5px}.x-window-header-default-right-tl,.x-window-header-default-right-bl,.x-window-header-default-right-ml{padding-left:5px}.x-window-header-default-right-tc{height:5px}.x-window-header-default-right-bc{height:5px}.x-window-header-default-right-tl,.x-window-header-default-right-bl,.x-window-header-default-right-tr,.x-window-header-default-right-br,.x-window-header-default-right-tc,.x-window-header-default-right-bc,.x-window-header-default-right-ml,.x-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-corners.gif)}.x-rtl.x-window-header-default-right-tl,.x-rtl.x-window-header-default-right-ml,.x-rtl.x-window-header-default-right-bl,.x-rtl.x-window-header-default-right-tr,.x-rtl.x-window-header-default-right-mr,.x-rtl.x-window-header-default-right-br{background-image:url(images/window-header/window-header-default-right-corners-rtl.gif)}.x-window-header-default-right-ml,.x-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-sides.gif);background-repeat:repeat-y}.x-window-header-default-right-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-window-header-default-right-tl,.x-strict .x-ie7 .x-window-header-default-right-bl{position:relative;right:0}.x-window-header-default-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"}.x-window-header-default-bottom{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 5px 5px 5px;border-width:5px 5px 5px 5px;border-style:solid;background-color:#3892d3}.x-window-header-default-bottom-mc{background-color:#3892d3}.x-nbr .x-window-header-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-bottom-frameInfo{font-family:dh-0-0-4-4-5-5-5-5-5-5-5-5}.x-window-header-default-bottom-tl{background-position:0 -10px}.x-window-header-default-bottom-tr{background-position:right -15px}.x-window-header-default-bottom-bl{background-position:0 -20px}.x-window-header-default-bottom-br{background-position:right -25px}.x-window-header-default-bottom-ml{background-position:0 top}.x-window-header-default-bottom-mr{background-position:right top}.x-window-header-default-bottom-tc{background-position:0 0}.x-window-header-default-bottom-bc{background-position:0 -5px}.x-window-header-default-bottom-tr,.x-window-header-default-bottom-br,.x-window-header-default-bottom-mr{padding-right:5px}.x-window-header-default-bottom-tl,.x-window-header-default-bottom-bl,.x-window-header-default-bottom-ml{padding-left:5px}.x-window-header-default-bottom-tc{height:5px}.x-window-header-default-bottom-bc{height:5px}.x-window-header-default-bottom-tl,.x-window-header-default-bottom-bl,.x-window-header-default-bottom-tr,.x-window-header-default-bottom-br,.x-window-header-default-bottom-tc,.x-window-header-default-bottom-bc,.x-window-header-default-bottom-ml,.x-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-corners.gif)}.x-window-header-default-bottom-ml,.x-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-sides.gif);background-repeat:repeat-y}.x-window-header-default-bottom-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-window-header-default-bottom-tl,.x-strict .x-ie7 .x-window-header-default-bottom-bl{position:relative;right:0}.x-window-header-default-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"}.x-window-header-default-left{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 5px 5px 5px;border-width:5px 5px 5px 5px;border-style:solid;background-color:#3892d3}.x-window-header-default-left-mc{background-color:#3892d3}.x-nbr .x-window-header-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-left-frameInfo{font-family:dh-4-0-0-4-5-5-5-5-5-5-5-5}.x-window-header-default-left-tl{background-position:0 -10px}.x-window-header-default-left-tr{background-position:right -15px}.x-window-header-default-left-bl{background-position:0 -20px}.x-window-header-default-left-br{background-position:right -25px}.x-window-header-default-left-ml{background-position:0 top}.x-window-header-default-left-mr{background-position:right top}.x-window-header-default-left-tc{background-position:0 0}.x-window-header-default-left-bc{background-position:0 -5px}.x-window-header-default-left-tr,.x-window-header-default-left-br,.x-window-header-default-left-mr{padding-right:5px}.x-window-header-default-left-tl,.x-window-header-default-left-bl,.x-window-header-default-left-ml{padding-left:5px}.x-window-header-default-left-tc{height:5px}.x-window-header-default-left-bc{height:5px}.x-window-header-default-left-tl,.x-window-header-default-left-bl,.x-window-header-default-left-tr,.x-window-header-default-left-br,.x-window-header-default-left-tc,.x-window-header-default-left-bc,.x-window-header-default-left-ml,.x-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-corners.gif)}.x-rtl.x-window-header-default-left-tl,.x-rtl.x-window-header-default-left-ml,.x-rtl.x-window-header-default-left-bl,.x-rtl.x-window-header-default-left-tr,.x-rtl.x-window-header-default-left-mr,.x-rtl.x-window-header-default-left-br{background-image:url(images/window-header/window-header-default-left-corners-rtl.gif)}.x-window-header-default-left-ml,.x-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-sides.gif);background-repeat:repeat-y}.x-window-header-default-left-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-window-header-default-left-tl,.x-strict .x-ie7 .x-window-header-default-left-bl{position:relative;right:0}.x-window-header-default-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"}.x-window-header-default-collapsed-top{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#3892d3}.x-window-header-default-collapsed-top-mc{background-color:#3892d3}.x-nbr .x-window-header-default-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-top-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-window-header-default-collapsed-top-tl{background-position:0 -10px}.x-window-header-default-collapsed-top-tr{background-position:right -15px}.x-window-header-default-collapsed-top-bl{background-position:0 -20px}.x-window-header-default-collapsed-top-br{background-position:right -25px}.x-window-header-default-collapsed-top-ml{background-position:0 top}.x-window-header-default-collapsed-top-mr{background-position:right top}.x-window-header-default-collapsed-top-tc{background-position:0 0}.x-window-header-default-collapsed-top-bc{background-position:0 -5px}.x-window-header-default-collapsed-top-tr,.x-window-header-default-collapsed-top-br,.x-window-header-default-collapsed-top-mr{padding-right:5px}.x-window-header-default-collapsed-top-tl,.x-window-header-default-collapsed-top-bl,.x-window-header-default-collapsed-top-ml{padding-left:5px}.x-window-header-default-collapsed-top-tc{height:5px}.x-window-header-default-collapsed-top-bc{height:5px}.x-window-header-default-collapsed-top-tl,.x-window-header-default-collapsed-top-bl,.x-window-header-default-collapsed-top-tr,.x-window-header-default-collapsed-top-br,.x-window-header-default-collapsed-top-tc,.x-window-header-default-collapsed-top-bc,.x-window-header-default-collapsed-top-ml,.x-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-corners.gif)}.x-window-header-default-collapsed-top-ml,.x-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-top-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-top-bl{position:relative;right:0}.x-window-header-default-collapsed-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"}.x-window-header-default-collapsed-right{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#3892d3}.x-window-header-default-collapsed-right-mc{background-color:#3892d3}.x-nbr .x-window-header-default-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-right-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-window-header-default-collapsed-right-tl{background-position:0 -10px}.x-window-header-default-collapsed-right-tr{background-position:right -15px}.x-window-header-default-collapsed-right-bl{background-position:0 -20px}.x-window-header-default-collapsed-right-br{background-position:right -25px}.x-window-header-default-collapsed-right-ml{background-position:0 top}.x-window-header-default-collapsed-right-mr{background-position:right top}.x-window-header-default-collapsed-right-tc{background-position:0 0}.x-window-header-default-collapsed-right-bc{background-position:0 -5px}.x-window-header-default-collapsed-right-tr,.x-window-header-default-collapsed-right-br,.x-window-header-default-collapsed-right-mr{padding-right:5px}.x-window-header-default-collapsed-right-tl,.x-window-header-default-collapsed-right-bl,.x-window-header-default-collapsed-right-ml{padding-left:5px}.x-window-header-default-collapsed-right-tc{height:5px}.x-window-header-default-collapsed-right-bc{height:5px}.x-window-header-default-collapsed-right-tl,.x-window-header-default-collapsed-right-bl,.x-window-header-default-collapsed-right-tr,.x-window-header-default-collapsed-right-br,.x-window-header-default-collapsed-right-tc,.x-window-header-default-collapsed-right-bc,.x-window-header-default-collapsed-right-ml,.x-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-corners.gif)}.x-rtl.x-window-header-default-collapsed-right-tl,.x-rtl.x-window-header-default-collapsed-right-ml,.x-rtl.x-window-header-default-collapsed-right-bl,.x-rtl.x-window-header-default-collapsed-right-tr,.x-rtl.x-window-header-default-collapsed-right-mr,.x-rtl.x-window-header-default-collapsed-right-br{background-image:url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif)}.x-window-header-default-collapsed-right-ml,.x-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-right-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-right-bl{position:relative;right:0}.x-window-header-default-collapsed-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-right-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"}.x-window-header-default-collapsed-bottom{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#3892d3}.x-window-header-default-collapsed-bottom-mc{background-color:#3892d3}.x-nbr .x-window-header-default-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-bottom-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-window-header-default-collapsed-bottom-tl{background-position:0 -10px}.x-window-header-default-collapsed-bottom-tr{background-position:right -15px}.x-window-header-default-collapsed-bottom-bl{background-position:0 -20px}.x-window-header-default-collapsed-bottom-br{background-position:right -25px}.x-window-header-default-collapsed-bottom-ml{background-position:0 top}.x-window-header-default-collapsed-bottom-mr{background-position:right top}.x-window-header-default-collapsed-bottom-tc{background-position:0 0}.x-window-header-default-collapsed-bottom-bc{background-position:0 -5px}.x-window-header-default-collapsed-bottom-tr,.x-window-header-default-collapsed-bottom-br,.x-window-header-default-collapsed-bottom-mr{padding-right:5px}.x-window-header-default-collapsed-bottom-tl,.x-window-header-default-collapsed-bottom-bl,.x-window-header-default-collapsed-bottom-ml{padding-left:5px}.x-window-header-default-collapsed-bottom-tc{height:5px}.x-window-header-default-collapsed-bottom-bc{height:5px}.x-window-header-default-collapsed-bottom-tl,.x-window-header-default-collapsed-bottom-bl,.x-window-header-default-collapsed-bottom-tr,.x-window-header-default-collapsed-bottom-br,.x-window-header-default-collapsed-bottom-tc,.x-window-header-default-collapsed-bottom-bc,.x-window-header-default-collapsed-bottom-ml,.x-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-corners.gif)}.x-window-header-default-collapsed-bottom-ml,.x-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-bottom-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl{position:relative;right:0}.x-window-header-default-collapsed-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"}.x-window-header-default-collapsed-left{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#3892d3}.x-window-header-default-collapsed-left-mc{background-color:#3892d3}.x-nbr .x-window-header-default-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-left-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-window-header-default-collapsed-left-tl{background-position:0 -10px}.x-window-header-default-collapsed-left-tr{background-position:right -15px}.x-window-header-default-collapsed-left-bl{background-position:0 -20px}.x-window-header-default-collapsed-left-br{background-position:right -25px}.x-window-header-default-collapsed-left-ml{background-position:0 top}.x-window-header-default-collapsed-left-mr{background-position:right top}.x-window-header-default-collapsed-left-tc{background-position:0 0}.x-window-header-default-collapsed-left-bc{background-position:0 -5px}.x-window-header-default-collapsed-left-tr,.x-window-header-default-collapsed-left-br,.x-window-header-default-collapsed-left-mr{padding-right:5px}.x-window-header-default-collapsed-left-tl,.x-window-header-default-collapsed-left-bl,.x-window-header-default-collapsed-left-ml{padding-left:5px}.x-window-header-default-collapsed-left-tc{height:5px}.x-window-header-default-collapsed-left-bc{height:5px}.x-window-header-default-collapsed-left-tl,.x-window-header-default-collapsed-left-bl,.x-window-header-default-collapsed-left-tr,.x-window-header-default-collapsed-left-br,.x-window-header-default-collapsed-left-tc,.x-window-header-default-collapsed-left-bc,.x-window-header-default-collapsed-left-ml,.x-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-corners.gif)}.x-rtl.x-window-header-default-collapsed-left-tl,.x-rtl.x-window-header-default-collapsed-left-ml,.x-rtl.x-window-header-default-collapsed-left-bl,.x-rtl.x-window-header-default-collapsed-left-tr,.x-rtl.x-window-header-default-collapsed-left-mr,.x-rtl.x-window-header-default-collapsed-left-br{background-image:url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif)}.x-window-header-default-collapsed-left-ml,.x-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-left-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-left-bl{position:relative;right:0}.x-window-header-default-collapsed-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), corners-rtl:url(images/window-header/window-header-default-collapsed-left-corners-rtl.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"}.x-window-header-default .x-window-header-icon{width:16px;height:16px;color:white;font-size:16px;line-height:16px;background-position:center center}.x-window-header-default .x-window-header-glyph{color:white;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-window-header-default .x-window-header-glyph{color:#9bc8e9}.x-window-header-default-horizontal .x-window-header-icon-before-title{margin:0 6px 0 0}.x-window-header-default-horizontal .x-rtl.x-window-header-icon-before-title{margin:0 0 0 6px}.x-window-header-default-horizontal .x-window-header-icon-after-title{margin:0 0 0 6px}.x-window-header-default-horizontal .x-rtl.x-window-header-icon-after-title{margin:0 6px 0 0}.x-window-header-default-vertical .x-window-header-icon-before-title{margin:0 0 6px 0}.x-window-header-default-vertical .x-rtl.x-window-header-icon-before-title{margin:0 0 6px 0}.x-window-header-default-vertical .x-window-header-icon-after-title{margin:6px 0 0 0}.x-window-header-default-vertical .x-rtl.x-window-header-icon-after-title{margin:6px 0 0 0}.x-window-header-default-horizontal .x-tool-after-title{margin:0 0 0 6px}.x-window-header-default-horizontal .x-rtl.x-tool-after-title{margin:0 6px 0 0}.x-window-header-default-horizontal .x-tool-before-title{margin:0 6px 0 0}.x-window-header-default-horizontal .x-rtl.x-tool-before-title{margin:0 0 0 6px}.x-window-header-default-vertical .x-tool-after-title{margin:6px 0 0 0}.x-window-header-default-vertical .x-rtl.x-tool-after-title{margin:6px 0 0 0}.x-window-header-default-vertical .x-tool-before-title{margin:0 0 6px 0}.x-window-header-default-vertical .x-rtl.x-tool-before-title{margin:0 0 6px 0}.x-window-header-default{border-width:5px!important}.x-nbr .x-window-default-collapsed .x-window-header{border-width:0!important}.x-window-default-resizable{overflow:visible}.x-window-default-resizable .x-window-handle-north-br{top:-5px}.x-window-default-resizable .x-window-handle-south-br{bottom:-5px}.x-window-default-resizable .x-window-handle-east-br{right:-5px}.x-window-default-resizable .x-window-handle-west-br{left:-5px}.x-window-default-resizable .x-window-handle-northwest-br{left:-5px;top:-5px}.x-window-default-resizable .x-window-handle-northeast-br{right:-5px;top:-5px}.x-window-default-resizable .x-window-handle-southeast-br{right:-5px;bottom:-5px}.x-window-default-resizable .x-window-handle-southwest-br{left:-5px;bottom:-5px}.x-window-default-outer-border-l{border-left-color:#3892d3!important;border-left-width:1px!important}.x-window-default-outer-border-b{border-bottom-color:#3892d3!important;border-bottom-width:1px!important}.x-window-default-outer-border-bl{border-bottom-color:#3892d3!important;border-bottom-width:1px!important;border-left-color:#3892d3!important;border-left-width:1px!important}.x-window-default-outer-border-r{border-right-color:#3892d3!important;border-right-width:1px!important}.x-window-default-outer-border-rl{border-right-color:#3892d3!important;border-right-width:1px!important;border-left-color:#3892d3!important;border-left-width:1px!important}.x-window-default-outer-border-rb{border-right-color:#3892d3!important;border-right-width:1px!important;border-bottom-color:#3892d3!important;border-bottom-width:1px!important}.x-window-default-outer-border-rbl{border-right-color:#3892d3!important;border-right-width:1px!important;border-bottom-color:#3892d3!important;border-bottom-width:1px!important;border-left-color:#3892d3!important;border-left-width:1px!important}.x-window-default-outer-border-t{border-top-color:#3892d3!important;border-top-width:1px!important}.x-window-default-outer-border-tl{border-top-color:#3892d3!important;border-top-width:1px!important;border-left-color:#3892d3!important;border-left-width:1px!important}.x-window-default-outer-border-tb{border-top-color:#3892d3!important;border-top-width:1px!important;border-bottom-color:#3892d3!important;border-bottom-width:1px!important}.x-window-default-outer-border-tbl{border-top-color:#3892d3!important;border-top-width:1px!important;border-bottom-color:#3892d3!important;border-bottom-width:1px!important;border-left-color:#3892d3!important;border-left-width:1px!important}.x-window-default-outer-border-tr{border-top-color:#3892d3!important;border-top-width:1px!important;border-right-color:#3892d3!important;border-right-width:1px!important}.x-window-default-outer-border-trl{border-top-color:#3892d3!important;border-top-width:1px!important;border-right-color:#3892d3!important;border-right-width:1px!important;border-left-color:#3892d3!important;border-left-width:1px!important}.x-window-default-outer-border-trb{border-top-color:#3892d3!important;border-top-width:1px!important;border-right-color:#3892d3!important;border-right-width:1px!important;border-bottom-color:#3892d3!important;border-bottom-width:1px!important}.x-window-default-outer-border-trbl{border-color:#3892d3!important;border-width:1px!important}.x-form-invalid-under{padding:2px 2px 2px 20px;color:#cf4c35;font:normal 13px helvetica,arial,verdana,sans-serif;line-height:16px;background:no-repeat 0 2px;background-image:url(images/form/exclamation.png)}div.x-lbl-top-err-icon{margin-bottom:4px}.x-form-invalid-icon{width:16px;height:16px;margin:0 5px;background-image:url(images/form/exclamation.png);background-repeat:no-repeat}.x-form-item-label{color:black;font:normal 13px/17px helvetica,arial,verdana,sans-serif;margin-top:4px}.x-autocontainer-form-item,.x-anchor-form-item,.x-vbox-form-item,.x-table-form-item{margin-bottom:5px}.x-ie6 .x-form-form-item td{border-top-width:0}.x-ie6 td.x-form-item-pad{height:5px}.x-form-field{color:black}.x-form-item,.x-form-field{font:normal 13px helvetica,arial,verdana,sans-serif}.x-form-type-text textarea.x-form-invalid-field,.x-form-type-text input.x-form-invalid-field,.x-form-type-password textarea.x-form-invalid-field,.x-form-type-password input.x-form-invalid-field,.x-form-type-number textarea.x-form-invalid-field,.x-form-type-number input.x-form-invalid-field,.x-form-type-email textarea.x-form-invalid-field,.x-form-type-email input.x-form-invalid-field,.x-form-type-search textarea.x-form-invalid-field,.x-form-type-search input.x-form-invalid-field,.x-form-type-tel textarea.x-form-invalid-field,.x-form-type-tel input.x-form-invalid-field{background-color:white;border-color:#cf4c35}.x-item-disabled .x-form-item-label,.x-item-disabled .x-form-field,.x-item-disabled .x-form-display-field,.x-item-disabled .x-form-cb-label,.x-item-disabled .x-form-trigger{filter:alpha(opacity=30);opacity:.3}.x-form-text{color:black;padding:4px 6px 3px 6px;background:white repeat-x 0 0;border-width:1px;border-style:solid;border-color:silver #d9d9d9 #d9d9d9;height:24px;line-height:15px}.x-content-box .x-form-text{height:15px}.x-form-focus{border-color:#3892d3}.x-form-empty-field,textarea.x-form-empty-field{color:gray}.x-quirks .x-ie .x-form-text,.x-ie7m .x-form-text{margin-top:-1px;margin-bottom:-1px}.x-form-textarea{line-height:normal;height:auto}.x-form-display-field-body{height:24px}.x-form-display-field{font:normal 13px/17px helvetica,arial,verdana,sans-serif;color:black;margin-top:4px}.x-message-box .x-window-body{background-color:white;border-width:0}.x-message-box-info,.x-message-box-warning,.x-message-box-question,.x-message-box-error{background-position:top left;background-repeat:no-repeat}.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:top left}.x-message-box-info{background-image:url(images/shared/icon-info.png)}.x-message-box-warning{background-image:url(images/shared/icon-warning.png)}.x-message-box-question{background-image:url(images/shared/icon-question.png)}.x-message-box-error{background-image:url(images/shared/icon-error.png)}.x-form-cb-wrap{height:24px}.x-form-cb{margin-top:5px}.x-form-checkbox{width:15px;height:15px;background:url(images/form/checkbox.png) no-repeat}.x-form-cb-checked .x-form-checkbox{background-position:0 -15px}.x-form-checkbox-focus{background-position:-15px 0}.x-form-cb-checked .x-form-checkbox-focus{background-position:-15px -15px}.x-form-cb-label{margin-top:4px;font:normal 13px/17px helvetica,arial,verdana,sans-serif}.x-form-cb-label-before{margin-right:4px}.x-rtl.x-field .x-form-cb-label-before{margin-right:0;margin-left:4px}.x-form-cb-label-after{margin-left:4px}.x-rtl.x-field .x-form-cb-label-after{margin-left:0;margin-right:4px}.x-form-checkboxgroup-body{padding:0 4px}.x-form-invalid .x-form-checkboxgroup-body{border:1px solid #cf4c35}.x-check-group-alt{background:#f5f5f5;border-top:1px dotted #f5f5f5;border-bottom:1px dotted #f5f5f5}.x-form-check-group-label{color:black;padding:2px;margin:0 30px 5px 0;border-width:0 0 1px 0;border-style:solid;border-color:black}.x-rtl.x-form-check-group-label{margin:0 0 5px 30px}.x-fieldset{border:1px solid #b5b8c8;padding:0 10px;margin:0 0 10px}.x-ie8m .x-fieldset,.x-quirks .x-ie .x-fieldset{padding-top:0}.x-ie8m .x-fieldset .x-fieldset-body,.x-quirks .x-ie .x-fieldset .x-fieldset-body{padding-top:0}.x-fieldset-header-checkbox{line-height:16px;margin:1px 3px 0 0}.x-fieldset-header{padding:0 3px 1px}.x-fieldset-header .x-tool{margin-top:1px;padding:0}.x-fieldset-header-text{font:12px/16px bold helvetica,arial,verdana,sans-serif;color:black;padding:1px 0}.x-fieldset-header-text-collapsible{cursor:pointer}.x-fieldset-with-title .x-fieldset-header-checkbox,.x-fieldset-with-title .x-tool{margin:1px 3px 0 0}.x-fieldset-with-title .x-rtl .x-fieldset-header-checkbox,.x-fieldset-with-title .x-rtl .x-tool{margin:1px 0 0 3px}.x-webkit .x-fieldset-header{-webkit-padding-start:3px;-webkit-padding-end:3px}.x-opera .x-fieldset-with-legend{margin-top:-1px}.x-opera.x-mac .x-fieldset-header-text{padding:2px 0 0}.x-strict .x-ie8 .x-fieldset-header{margin-bottom:-1px}.x-strict .x-ie8 .x-fieldset-header .x-tool,.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text,.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox{position:relative;top:-1px}.x-quirks .x-ie .x-fieldset-header,.x-ie8m .x-fieldset-header{padding-left:1px;padding-right:1px}.x-fieldset-collapsed .x-fieldset-body{display:none}.x-fieldset-collapsed{padding-bottom:0!important;border-width:1px 1px 0 1px!important;border-left-color:transparent!important;border-right-color:transparent!important}.x-ie6 .x-fieldset-collapsed{border-width:1px 0 0 0!important;padding-bottom:0!important;margin-left:1px;margin-right:1px}.x-ie .x-fieldset-bwrap{zoom:1}.x-fieldset .x-tool-toggle{background-image:url(images/fieldset/collapse-tool.png);background-position:0 0}.x-fieldset .x-tool-over .x-tool-toggle{background-position:0 -15px}.x-fieldset-collapsed .x-tool-toggle{background-position:-15px 0}.x-fieldset-collapsed .x-tool-over .x-tool-toggle{background-position:-15px -15px}.x-ie .x-fieldset-noborder legend{position:relative;margin-bottom:23px}.x-ie .x-fieldset-noborder legend span{position:absolute;left:16px}.x-fieldset{overflow:hidden}.x-fieldset-bwrap{overflow:hidden;zoom:1}.x-fieldset-body{overflow:hidden}.x-form-radio{width:15px;height:15px;background:url(images/form/radio.png) no-repeat}.x-form-cb-checked .x-form-radio{background-position:0 -15px}.x-form-radio-focus{background-position:-15px 0}.x-form-cb-checked .x-form-radio-focus{background-position:-15px -15px}.x-form-trigger{background:url(images/form/trigger.png);width:22px}.x-rtl.x-form-trigger-wrap .x-form-trigger{background-image:url(images/form/trigger-rtl.png)}.x-trigger-cell{background-color:white;width:22px}.x-form-trigger-over{background-position:-22px 0}.x-form-trigger-wrap-focus .x-form-trigger{background-position:-66px 0}.x-form-trigger-wrap-focus .x-form-trigger-over{background-position:-88px 0}.x-form-trigger-click,.x-form-trigger-wrap-focus .x-form-trigger-click{background-position:-44px 0}.x-form-clear-trigger{background-image:url(images/form/clear-trigger.png)}.x-rtl.x-form-trigger-wrap .x-form-clear-trigger{background-image:url(images/form/clear-trigger-rtl.png)}.x-form-search-trigger{background-image:url(images/form/search-trigger.png)}.x-rtl.x-form-trigger-wrap .x-form-search-trigger{background-image:url(images/form/search-trigger-rtl.png)}.x-quirks .prefixie6 .x-form-trigger-input-cell{height:24px}.x-quirks .prefixie6 .x-field-toolbar .x-form-trigger-input-cell{height:24px}div.x-form-spinner-up,div.x-form-spinner-down{background-image:url(images/form/spinner.png);background-color:white;width:22px;height:11px}.x-rtl.x-form-trigger-wrap .x-form-spinner-up,.x-rtl.x-form-trigger-wrap .x-form-spinner-down{background-image:url(images/form/spinner-rtl.png)}.x-form-spinner-down{background-position:0 -11px}.x-form-trigger-wrap-focus .x-form-spinner-down{background-position:-66px -11px}.x-form-trigger-wrap .x-form-spinner-down-over{background-position:-22px -11px}.x-form-trigger-wrap-focus .x-form-spinner-down-over{background-position:-88px -11px}.x-form-trigger-wrap .x-form-spinner-down-click{background-position:-44px -11px}.x-tbar-page-number{width:30px}.x-tbar-page-first{background-image:url(images/grid/page-first.png)}.x-tbar-page-prev{background-image:url(images/grid/page-prev.png)}.x-tbar-page-next{background-image:url(images/grid/page-next.png)}.x-tbar-page-last{background-image:url(images/grid/page-last.png)}.x-tbar-loading{background-image:url(images/grid/refresh.png)}.x-rtl.x-tbar-page-first{background-image:url(images/grid/page-last.png)}.x-rtl.x-tbar-page-prev{background-image:url(images/grid/page-next.png)}.x-rtl.x-tbar-page-next{background-image:url(images/grid/page-prev.png)}.x-rtl.x-tbar-page-last{background-image:url(images/grid/page-first.png)}.x-boundlist{border-width:1px;border-style:solid;border-color:#e1e1e1;background:white}.x-strict .x-ie7m .x-boundlist-list-ct{position:relative}.x-boundlist-item{padding:0 6px;line-height:22px;cursor:pointer;cursor:hand;position:relative;zoom:1;border-width:1px;border-style:dotted;border-color:white}.x-boundlist-selected{background:#c1ddf1;border-color:#c1ddf1}.x-boundlist-item-over{background:#d6e8f6;border-color:#d6e8f6}.x-boundlist-floating{border-top-width:0}.x-boundlist-above{border-top-width:1px;border-bottom-width:1px}.x-datepicker{border-width:1px;border-style:solid;border-color:#e1e1e1;background-color:white;width:212px}.x-datepicker-header{padding:4px 6px;text-align:center;background-image:none;background-color:#f5f5f5}.x-datepicker-arrow{width:12px;height:12px;top:9px;cursor:pointer;background-color:#f5f5f5;filter:alpha(opacity=70);opacity:.7}a.x-datepicker-arrow:hover{filter:alpha(opacity=100);opacity:1}.x-datepicker-next{right:6px;background-image:url(images/datepicker/arrow-right.png)}.x-datepicker-prev{left:6px;background-image:url(images/datepicker/arrow-left.png)}.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}.x-datepicker-month .x-btn-inner{color:#3892d3}.x-datepicker-month .x-btn-split-right{background-image:url(images/datepicker/month-arrow.png);padding-right:8px}.x-datepicker-column-header{width:30px;color:black;font:bold 13px helvetica,arial,verdana,sans-serif;text-align:right;background-image:none;background-color:white}.x-datepicker-column-header-inner{line-height:25px;padding:0 9px 0 0}.x-datepicker-cell{text-align:right;border-width:1px;border-style:solid;border-color:white}.x-datepicker-date{padding:0 7px 0 0;font:normal 13px helvetica,arial,verdana,sans-serif;color:black;cursor:pointer;line-height:23px}a.x-datepicker-date:hover{color:black;background-color:#eaf3fa}.x-datepicker-selected{border-style:solid;border-color:#3892d3}.x-datepicker-selected .x-datepicker-date{background-color:#d6e8f6;font-weight:bold}.x-datepicker-today{border-color:darkred;border-style:solid}.x-datepicker-prevday .x-datepicker-date,.x-datepicker-nextday .x-datepicker-date{color:#bfbfbf}.x-datepicker-disabled a.x-datepicker-date{background-color:#eee;cursor:default;color:gray}.x-datepicker-disabled a.x-datepicker-date:hover{background-color:#eee}.x-datepicker-footer,.x-monthpicker-buttons{padding:3px 0;background-image:none;background-color:#f5f5f5;text-align:center}.x-datepicker-footer .x-btn,.x-monthpicker-buttons .x-btn{margin:0 3px 0 2px}.x-monthpicker{width:212px;border-width:1px;border-style:solid;border-color:#e1e1e1;background-color:white}.x-monthpicker-months{border-width:0 1px 0 0;border-color:#e1e1e1;border-style:solid;width:105px}.x-monthpicker-months .x-monthpicker-item{width:52px}.x-monthpicker-years{width:105px}.x-monthpicker-years .x-monthpicker-item{width:52px}.x-monthpicker-item{margin:5px 0 5px;font:normal 13px helvetica,arial,verdana,sans-serif;text-align:center}.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}a.x-monthpicker-item-inner:hover{background-color:#eaf3fa}.x-monthpicker-selected{background-color:#d6e8f6;border-style:solid;border-color:#3892d3}.x-monthpicker-yearnav{height:34px}.x-monthpicker-yearnav-button-ct{width:52px}.x-monthpicker-yearnav-button{height:12px;width:12px;cursor:pointer;margin-top:11px;filter:alpha(opacity=70);opacity:.7;background-color:white}a.x-monthpicker-yearnav-button:hover{filter:alpha(opacity=100);opacity:1}.x-monthpicker-yearnav-next{background-image:url(images/datepicker/arrow-right.png);background-position:0 0}.x-monthpicker-yearnav-next-over{background-position:0 0}.x-monthpicker-yearnav-prev{background-image:url(images/datepicker/arrow-left.png);background-position:0 0}.x-monthpicker-yearnav-prev-over{background-position:0 0}.x-monthpicker-small .x-monthpicker-item{margin:2px 0 2px}.x-monthpicker-small .x-monthpicker-item-inner{margin:0 5px 0 5px}.x-monthpicker-small .x-monthpicker-yearnav{height:28px}.x-monthpicker-small .x-monthpicker-yearnav-button{margin-top:8px}.x-form-date-trigger{background-image:url(images/form/date-trigger.png)}.x-rtl.x-form-trigger-wrap .x-form-date-trigger{background-image:url(images/form/date-trigger-rtl.png)}.x-form-file-wrap .x-form-text{color:gray}.x-color-picker{width:192px;height:120px;background-color:white;border-color:white;border-width:0;border-style:solid}.x-color-picker-item{width:24px;height:24px;border-width:1px;border-color:white;border-style:solid;background-color:white;cursor:pointer;padding:2px}.x-content-box .x-color-picker-item{width:18px;height:18px}a.x-color-picker-item:hover{border-color:#8bb8f3;background-color:#e6e6e6}.x-color-picker-selected{border-color:#8bb8f3;background-color:#e6e6e6}.x-color-picker-item-inner{line-height:16px;border-color:#e1e1e1;border-width:1px;border-style:solid}.x-html-editor-tb .x-btn-text{background:transparent no-repeat;background-image:url(images/editor/tb-sprite.png)}.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)}.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)}.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)}.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)}.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)}.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)}.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)}.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)}.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)}.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)}.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)}.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)}.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)}.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)}.x-html-editor-tip .x-tip-bd .x-tip-bd-inner{padding:5px;padding-bottom:1px}.x-html-editor-tb .x-font-select{font-size:13px;font-family:inherit}.x-html-editor-wrap textarea{font:normal 13px helvetica,arial,verdana,sans-serif;background-color:white;resize:none}.x-grid-body{background:white;border-width:1px;border-style:solid;border-color:silver}.x-grid-empty{padding:10px;color:gray;background-color:white;font:normal 13px helvetica,arial,verdana,sans-serif}.x-grid-cell{color:null;font:normal 13px/15px helvetica,arial,verdana,sans-serif;background-color:white;border-color:#ededed;border-style:solid}.x-grid-row-alt .x-grid-td{background-color:#fafafa}.x-grid-row-before-over .x-grid-td{border-bottom-style:solid;border-bottom-color:#e2eff8}.x-grid-row-over .x-grid-td{border-bottom-style:solid;border-bottom-color:#e2eff8}.x-grid-row-before-selected .x-grid-td{border-bottom-style:solid;border-bottom-color:#c1ddf1}.x-grid-row-selected .x-grid-td{border-bottom-style:solid;border-bottom-color:#c1ddf1}.x-grid-row-before-focused .x-grid-td{border-bottom-style:solid;border-bottom-color:#e2eff8}.x-grid-row-focused .x-grid-td{background-color:#e2eff8}.x-grid-row-over .x-grid-td{background-color:#e2eff8}.x-grid-row-selected .x-grid-td{background-color:#c1ddf1}.x-grid-row-focused .x-grid-td{border-bottom-style:solid;border-bottom-color:#e2eff8}.x-grid-with-row-lines .x-grid-row-focused-first .x-grid-td{border-top:1px solid #e2eff8}.x-grid-row-selected .x-grid-row-summary .x-grid-td{border-bottom-color:#c1ddf1;border-top-width:0}.x-grid-row-focused .x-grid-row-summary .x-grid-td{border-bottom-color:#e2eff8;border-top-width:0}.x-grid-with-row-lines .x-grid-td{border-bottom-width:1px}.x-grid-with-row-lines .x-grid-table{border-top:1px solid white}.x-grid-with-row-lines .x-grid-table-over-first{border-top-style:solid;border-top-color:#e2eff8}.x-grid-with-row-lines .x-grid-table-selected-first{border-top-style:solid;border-top-color:#c1ddf1}.x-grid-with-row-lines .x-grid-table-focused-first{border-top-style:solid;border-top-color:#e2eff8}.x-grid-cell-inner{text-overflow:ellipsis;padding:5px 10px 4px 10px}.x-grid-cell-special{border-color:#ededed;border-style:solid;border-right-width:1px 0}.x-rtl.x-grid-cell-special{border-right-width:0;border-left-width:1px 0}.x-grid-dirty-cell{background:url(images/grid/dirty.png) no-repeat 0 0}.x-rtl.x-grid-dirty-cell{background-image:url(images/grid/dirty-rtl.png);background-position:right 0}.x-grid-row .x-grid-cell-selected{color:null;background-color:#c1ddf1}.x-grid-with-col-lines .x-grid-cell{border-right-width:1px}.x-rtl.x-grid-with-col-lines .x-grid-cell{border-right-width:0;border-left-width:1px}.x-grid-resize-marker{width:1px;background-color:#0f0f0f}.x-grid-drop-indicator{position:absolute;height:1px;line-height:0;background-color:#77bc71;overflow:visible;pointer-events:none}.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}.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}.x-ie6 .x-grid-drop-indicator-left{background-image:url(images/grid/dd-insert-arrow-right.png)}.x-ie6 .x-grid-drop-indicator-right{background-image:url(images/grid/dd-insert-arrow-left.png)}.col-move-top,.col-move-bottom{width:9px;height:9px}.col-move-top{background-image:url(images/grid/col-move-top.png)}.col-move-bottom{background-image:url(images/grid/col-move-bottom.png)}.x-grid-header-ct{border:1px solid #157fcc;border-bottom-color:#f5f5f5;background-color:#f5f5f5}.x-accordion-item .x-grid-header-ct{border-width:0 0 1px!important}.x-accordion-item .x-grid-header-ct-hidden{border:0!important}.x-grid-body{border-top-color:silver}.x-hmenu-sort-asc .x-menu-item-icon{background-image:url(images/grid/hmenu-asc.png)}.x-hmenu-sort-desc .x-menu-item-icon{background-image:url(images/grid/hmenu-desc.png)}.x-cols-icon .x-menu-item-icon{background-image:url(images/grid/columns.png)}.x-column-header{border-right:1px solid silver;color:#666;font:bold 13px/15px helvetica,arial,verdana,sans-serif;background-color:#f5f5f5}.x-rtl.x-column-header{border-right:0 none;border-left:1px solid silver}.x-group-sub-header{background:transparent;border-top:1px solid silver}.x-group-sub-header .x-column-header-inner{padding:6px 10px 7px 10px}.x-column-header-inner{padding:7px 10px 7px 10px;text-overflow:ellipsis}.x-column-header-over,.x-column-header-sort-ASC,.x-column-header-sort-DESC{background-image:none;background-color:#eef6fb}.x-column-header-open{background-color:#eef6fb}.x-column-header-open .x-column-header-trigger{background-color:#dfeaf2}.x-column-header-trigger{width:18px;cursor:pointer;background-color:transparent;background-position:center center}.x-rtl.x-column-header-trigger{background-position:center center}.x-column-header-align-right .x-column-header-text{margin-right:12px}.x-column-header-align-right .x-rtl.x-column-header-text{margin-right:0;margin-left:12px}.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}.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}.x-column-header-sort-ASC .x-column-header-text{background-image:url(images/grid/sort_asc.png)}.x-column-header-sort-DESC .x-column-header-text{background-image:url(images/grid/sort_desc.png)}.x-grid-cell-inner-action-col{padding:4px 4px 4px 4px}.x-action-col-cell .x-item-disabled{filter:alpha(opacity=30);opacity:.3}.x-action-col-icon{height:16px;width:16px;cursor:pointer}.x-grid-cell-inner-checkcolumn{padding:5px 10px 4px 10px}.x-grid-checkcolumn{width:15px;height:15px;background:url(images/form/checkbox.png) 0 0 no-repeat}.x-item-disabled .x-grid-checkcolumn{filter:alpha(opacity=30);opacity:.3}.x-grid-checkcolumn-checked{background-position:0 -15px}.x-grid-cell-inner-row-numberer{padding:5px 5px 4px 3px}.x-grid-group-hd{border-width:0 0 1px 0;border-style:solid;border-color:silver;padding:8px 4px 8px 4px;background:#f5f5f5;cursor:pointer}.x-grid-group-hd-not-collapsible{cursor:default}.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}.x-rtl.x-grid-view .x-grid-group-hd-collapsible .x-grid-group-title{background-position:right center;padding:0 17px 0 0}.x-grid-group-title{color:#666;font:bold 13px/15px helvetica,arial,verdana,sans-serif}.x-grid-group-hd-collapsed .x-grid-group-title{background-image:url(images/grid/group-expand.png)}.x-grid-group-collapsed .x-grid-group-title{background-image:url(images/grid/group-expand.png)}.x-group-by-icon{background-image:url(images/grid/group-by.png)}.x-show-groups-icon{background-image:url(images/grid/group-by.png)}.x-grid-rowbody{font:normal 13px/15px helvetica,arial,verdana,sans-serif;padding:5px 10px 5px 10px}.x-grid-rowwrap{border-color:#ededed;border-style:solid}.x-summary-bottom{border-bottom-color:#f5f5f5}.x-docked-summary{border-width:1px;border-color:#157fcc;border-style:solid}.x-docked-summary .x-grid-table{width:100%}.x-grid-row-summary .x-grid-cell,.x-grid-row-summary .x-grid-rowwrap,.x-grid-row-summary .x-grid-cell-rowbody{border-color:#ededed;background-color:transparent!important;border-top-width:0;font:normal 13px/15px helvetica,arial,verdana,sans-serif}.x-grid-with-row-lines .x-grid-table-summary{border:0}.x-grid-locked .x-grid-inner-locked{border-width:0 1px 0 0;border-style:solid}.x-grid-locked .x-rtl.x-grid-inner-locked{border-width:0 0 0 1px}.x-grid-inner-locked .x-column-header-last,.x-grid-inner-locked .x-grid-cell-last{border-right-width:0!important}.x-grid-inner-locked .x-rtl.x-column-header-last{border-left-width:0!important}.x-rtl.x-grid-inner-locked .x-grid-row .x-column-header-last{border-left:0 none}.x-rtl.x-grid-inner-locked .x-grid-row .x-grid-cell-last{border-left:0 none}.x-hmenu-lock .x-menu-item-icon{background-image:url(images/grid/hmenu-lock.png)}.x-hmenu-unlock .x-menu-item-icon{background-image:url(images/grid/hmenu-unlock.png)}.x-grid-editor .x-form-text{font:normal 13px/15px helvetica,arial,verdana,sans-serif;padding:4px 9px 3px 9px}.x-gecko .x-grid-editor .x-form-text{padding-left:8px;padding-right:8px}.x-grid-editor .x-form-display-field-body{height:24px}.x-grid-editor .x-form-display-field{font:normal 13px/15px helvetica,arial,verdana,sans-serif;padding:5px 10px 4px 10px;text-overflow:ellipsis}.x-grid-editor .x-form-action-col-field{padding:4px 4px 4px 4px}.x-tree-cell-editor .x-form-text{padding-left:3px;padding-right:3px}.x-gecko .x-tree-cell-editor .x-form-text{padding-left:2px;padding-right:2px}.x-grid-row-editor .x-field{margin:0 3px 0 2px}.x-grid-row-editor .x-form-display-field{padding:5px 7px 4px 8px}.x-grid-row-editor .x-form-action-col-field{padding:4px 1px 4px 2px}.x-grid-row-editor .x-form-text{padding:4px 6px 3px 7px}.x-gecko .x-grid-row-editor .x-form-text{padding-left:6px;padding-right:5px}.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:#dfeaf2}.x-grid-with-col-lines .x-grid-row-editor .x-form-cb{margin-right:1px}.x-grid-with-col-lines .x-grid-row-editor .x-rtl.x-form-cb{margin-right:0;margin-left:1px}.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:#dfeaf2}.x-grid-row-editor-buttons-default-bottom-mc{background-color:#dfeaf2}.x-nbr .x-grid-row-editor-buttons-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-grid-row-editor-buttons-default-bottom-frameInfo{font-family:th-0-0-5-5-0-1-1-1-5-5-5-5}.x-grid-row-editor-buttons-default-bottom-tl{background-position:0 -10px}.x-grid-row-editor-buttons-default-bottom-tr{background-position:right -15px}.x-grid-row-editor-buttons-default-bottom-bl{background-position:0 -20px}.x-grid-row-editor-buttons-default-bottom-br{background-position:right -25px}.x-grid-row-editor-buttons-default-bottom-ml{background-position:0 top}.x-grid-row-editor-buttons-default-bottom-mr{background-position:right top}.x-grid-row-editor-buttons-default-bottom-tc{background-position:0 0}.x-grid-row-editor-buttons-default-bottom-bc{background-position:0 -5px}.x-grid-row-editor-buttons-default-bottom-tr,.x-grid-row-editor-buttons-default-bottom-br,.x-grid-row-editor-buttons-default-bottom-mr{padding-right:5px}.x-grid-row-editor-buttons-default-bottom-tl,.x-grid-row-editor-buttons-default-bottom-bl,.x-grid-row-editor-buttons-default-bottom-ml{padding-left:5px}.x-grid-row-editor-buttons-default-bottom-tc{height:0}.x-grid-row-editor-buttons-default-bottom-bc{height:5px}.x-grid-row-editor-buttons-default-bottom-tl,.x-grid-row-editor-buttons-default-bottom-bl,.x-grid-row-editor-buttons-default-bottom-tr,.x-grid-row-editor-buttons-default-bottom-br,.x-grid-row-editor-buttons-default-bottom-tc,.x-grid-row-editor-buttons-default-bottom-bc,.x-grid-row-editor-buttons-default-bottom-ml,.x-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif)}.x-grid-row-editor-buttons-default-bottom-ml,.x-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif);background-repeat:repeat-y}.x-grid-row-editor-buttons-default-bottom-mc{padding:5px 1px 1px 1px}.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-tl,.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-bl{position:relative;right:0}.x-grid-row-editor-buttons-default-bottom:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"}.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:#dfeaf2}.x-grid-row-editor-buttons-default-top-mc{background-color:#dfeaf2}.x-nbr .x-grid-row-editor-buttons-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-grid-row-editor-buttons-default-top-frameInfo{font-family:th-5-5-0-0-1-1-0-1-5-5-5-5}.x-grid-row-editor-buttons-default-top-tl{background-position:0 -10px}.x-grid-row-editor-buttons-default-top-tr{background-position:right -15px}.x-grid-row-editor-buttons-default-top-bl{background-position:0 -20px}.x-grid-row-editor-buttons-default-top-br{background-position:right -25px}.x-grid-row-editor-buttons-default-top-ml{background-position:0 top}.x-grid-row-editor-buttons-default-top-mr{background-position:right top}.x-grid-row-editor-buttons-default-top-tc{background-position:0 0}.x-grid-row-editor-buttons-default-top-bc{background-position:0 -5px}.x-grid-row-editor-buttons-default-top-tr,.x-grid-row-editor-buttons-default-top-br,.x-grid-row-editor-buttons-default-top-mr{padding-right:5px}.x-grid-row-editor-buttons-default-top-tl,.x-grid-row-editor-buttons-default-top-bl,.x-grid-row-editor-buttons-default-top-ml{padding-left:5px}.x-grid-row-editor-buttons-default-top-tc{height:5px}.x-grid-row-editor-buttons-default-top-bc{height:0}.x-grid-row-editor-buttons-default-top-tl,.x-grid-row-editor-buttons-default-top-bl,.x-grid-row-editor-buttons-default-top-tr,.x-grid-row-editor-buttons-default-top-br,.x-grid-row-editor-buttons-default-top-tc,.x-grid-row-editor-buttons-default-top-bc,.x-grid-row-editor-buttons-default-top-ml,.x-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif)}.x-grid-row-editor-buttons-default-top-ml,.x-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif);background-repeat:repeat-y}.x-grid-row-editor-buttons-default-top-mc{padding:1px 1px 5px 1px}.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-tl,.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-bl{position:relative;right:0}.x-grid-row-editor-buttons-default-top:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"}.x-grid-row-editor-buttons-default-bottom{top:35px}.x-grid-row-editor-buttons-default-top{bottom:35px}.x-grid-row-editor-buttons{border-color:#e1e1e1}.x-row-editor-update-button{margin-right:3px}.x-row-editor-cancel-button{margin-left:2px}.x-rtl.x-row-editor-update-button{margin-left:3px;margin-right:auto}.x-rtl.x-row-editor-cancel-button{margin-right:2px;margin-left:auto}.x-grid-row-editor-errors .x-tip-body{padding:5px}.x-grid-row-editor-errors-item{list-style:disc;margin-left:15px}.x-rtl.x-grid-row-editor-errors .x-grid-row-editor-errors-item{margin-left:0;margin-right:15px}.x-grid-cell-inner-row-expander{padding:7px 6px 6px 6px}.x-grid-row-expander{width:11px;height:11px;cursor:pointer;background-image:url(images/grid/group-collapse.png)}.x-grid-row-collapsed .x-grid-row-expander{background-image:url(images/grid/group-expand.png)}.x-accordion-layout-ct{background-color:white;padding:5px 5px 0}.x-accordion-hd .x-panel-header-text-container{color:#666;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;text-transform:none}.x-accordion-item{margin:0 0 5px}.x-accordion-item .x-accordion-hd{background:#dfeaf2;border-top-color:white;padding:8px 10px}.x-accordion-item .x-accordion-hd-sibling-expanded{border-top-color:#157fcc}.x-accordion-item .x-accordion-hd-last-collapsed{border-bottom-color:#dfeaf2}.x-accordion-item .x-accordion-body{border-width:0}.x-accordion-hd .x-tool-collapse-top,.x-accordion-hd .x-tool-collapse-bottom{background-position:0 -272px}.x-accordion-hd .x-tool-expand-top,.x-accordion-hd .x-tool-expand-bottom{background-position:0 -256px}.x-accordion-hd .x-tool-img{background-image:url(images/tools/tool-sprites-dark.png);background-color:#dfeaf2}.x-collapse-el{cursor:pointer}.x-layout-split-left,.x-layout-split-right{top:50%;margin-top:-24px;width:8px;height:48px}.x-layout-split-top,.x-layout-split-bottom{left:50%;width:48px;height:8px;margin-left:-24px}.x-layout-split-left{background-image:url(images/util/splitter/mini-left.png)}.x-layout-split-right{background-image:url(images/util/splitter/mini-right.png)}.x-rtl.x-layout-split-left{background-image:url(images/util/splitter/mini-right.png)}.x-rtl.x-layout-split-right{background-image:url(images/util/splitter/mini-left.png)}.x-layout-split-top{background-image:url(images/util/splitter/mini-top.png)}.x-layout-split-bottom{background-image:url(images/util/splitter/mini-bottom.png)}.x-splitter-collapsed .x-layout-split-left{background-image:url(images/util/splitter/mini-right.png)}.x-splitter-collapsed .x-layout-split-right{background-image:url(images/util/splitter/mini-left.png)}.x-splitter-collapsed .x-rtl.x-layout-split-left{background-image:url(images/util/splitter/mini-left.png)}.x-splitter-collapsed .x-rtl.x-layout-split-right{background-image:url(images/util/splitter/mini-right.png)}.x-splitter-collapsed .x-layout-split-top{background-image:url(images/util/splitter/mini-bottom.png)}.x-splitter-collapsed .x-layout-split-bottom{background-image:url(images/util/splitter/mini-top.png)}.x-splitter-active{background-color:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x-splitter-active .x-collapse-el{filter:alpha(opacity=30);opacity:.3}.x-border-layout-ct{background-color:#3892d3}.x-menu{border-style:solid;border-width:1px;border-color:#e1e1e1}.x-menu-body{background:white;padding:0}.x-menu-icon-separator{left:22px;border-left:solid 1px #e1e1e1;background-color:white;width:1px}.x-rtl.x-menu .x-menu-icon-separator{left:auto;right:22px}.x-menu-item{cursor:pointer}.x-menu-item-indent{margin-left:27px}.x-rtl.x-menu-item-indent{margin-left:0;margin-right:27px}.x-menu-item-active{background-image:none;background-color:#d6e8f6;border-color:#0079d2}.x-nlg .x-menu-item-active{background:#d6e8f6 repeat-x left top;background-image:url(images/menu/menu-item-active-bg.gif)}.x-menu-item-link{line-height:24px;padding:0 4px 0 27px;display:inline-block}.x-rtl.x-menu-item-link{padding:0 27px 0 4px}.x-right-check-item-text{padding-right:22px}.x-rtl.x-right-check-item-text{padding-left:22px;padding-right:0}.x-menu-item-icon{width:16px;height:16px;top:5px;left:3px;background-position:center center}.x-menu-item-glyph{font-size:16px;line-height:16px;color:gray;opacity:.5}.x-ie8m .x-menu-item-glyph{color:#bfbfbf}.x-rtl.x-menu-item-icon{left:auto;right:3px}.x-menu-item-icon-right{width:16px;height:16px;top:4px;right:3px;background-position:center center}.x-rtl.x-menu-item-icon-right{right:auto;left:3px}.x-menu-item-text{font-size:13px;color:black;cursor:pointer;margin-right:16px}a.x-rtl .x-menu-item-text{margin-right:0;margin-left:16px}.x-menu-item-checked .x-menu-item-icon,.x-menu-item-checked .x-menu-item-icon-right{background-image:url(images/menu/checked.png)}.x-menu-item-checked .x-menu-group-icon{background-image:url(images/menu/group-checked.png)}.x-menu-item-unchecked .x-menu-item-icon,.x-menu-item-unchecked .x-menu-item-icon-right{background-image:url(images/menu/unchecked.png)}.x-menu-item-unchecked .x-menu-group-icon{background-image:none}.x-menu-item-separator{height:1px;border-top:solid 1px #e1e1e1;background-color:white;margin:2px 0;padding:0}.x-menu-item-arrow{width:12px;height:9px;top:8px;right:0;background-image:url(images/menu/menu-parent.png)}.x-rtl.x-menu-item-arrow{left:0;right:auto;background-image:url(images/menu/menu-parent-left.png)}.x-menu-item-disabled{filter:alpha(opacity=50);opacity:.5}.x-content-box .x-menu-icon-separator{width:0}.x-content-box .x-menu-item-separator{height:0}.x-ie .x-menu-item-disabled .x-menu-item-icon{filter:alpha(opacity=50);opacity:.5}.x-ie .x-menu-item-disabled .x-menu-item-text{background-color:transparent}.x-menu-date-item{border-color:#99bbe8}.x-menu-item .x-form-item-label{font-size:13px;color:black}.x-menu-scroll-top{height:16px;background-image:url(images/menu/scroll-top.png)}.x-menu-scroll-bottom{height:16px;background-image:url(images/menu/scroll-bottom.png)}.x-menu-scroll-top,.x-menu-scroll-bottom{filter:alpha(opacity=50);opacity:.5;background-color:white}.x-menu-scroll-top-hover,.x-menu-scroll-bottom-hover{filter:alpha(opacity=60);opacity:.6}.x-menu-scroll-top-pressed,.x-menu-scroll-bottom-pressed{filter:alpha(opacity=70);opacity:.7}.x-menu-item-link:after{display:none;content:"x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"}.x-tool{cursor:pointer}.x-tool-img{overflow:hidden;width:16px;height:16px;background-image:url(images/tools/tool-sprites.png);margin:0}.x-tool .x-tool-img{filter:alpha(opacity=50);opacity:.5}.x-tool-over .x-tool-img{filter:alpha(opacity=60);opacity:.6}.x-tool-pressed .x-tool-img{filter:alpha(opacity=70);opacity:.7}.x-tool-placeholder{visibility:hidden}.x-tool-close{background-position:0 0}.x-tool-minimize{background-position:0 -16px}.x-tool-maximize{background-position:0 -32px}.x-tool-restore{background-position:0 -48px}.x-tool-toggle{background-position:0 -64px}.x-panel-collapsed .x-tool-toggle{background-position:0 -80px}.x-tool-gear{background-position:0 -96px}.x-tool-prev{background-position:0 -112px}.x-tool-next{background-position:0 -128px}.x-tool-pin{background-position:0 -144px}.x-tool-unpin{background-position:0 -160px}.x-tool-right{background-position:0 -176px}.x-tool-left{background-position:0 -192px}.x-tool-down{background-position:0 -208px}.x-tool-up{background-position:0 -224px}.x-tool-refresh{background-position:0 -240px}.x-tool-plus{background-position:0 -256px}.x-tool-minus{background-position:0 -272px}.x-tool-search{background-position:0 -288px}.x-tool-save{background-position:0 -304px}.x-tool-help{background-position:0 -320px}.x-tool-print{background-position:0 -336px}.x-tool-expand{background-position:0 -352px}.x-tool-collapse{background-position:0 -368px}.x-tool-resize{background-position:0 -384px}.x-tool-move{background-position:0 -400px}.x-tool-expand-bottom,.x-tool-collapse-bottom{background-position:0 -208px}.x-tool-expand-top,.x-tool-collapse-top{background-position:0 -224px}.x-tool-expand-left,.x-tool-collapse-left{background-position:0 -192px}.x-tool-expand-right,.x-tool-collapse-right{background-position:0 -176px}.x-rtl.x-tool-expand-left,.x-rtl.x-tool-collapse-left{background-position:0 -176px}.x-rtl.x-tool-expand-right,.x-rtl.x-tool-collapse-right{background-position:0 -192px}.x-resizable-handle{position:absolute;z-index:100;font-size:1px;line-height:6px;overflow:hidden;zoom:1;filter:alpha(opacity=0);opacity:0;background-color:#fff;-webkit-border-radius:6px;-moz-border-radius:6px;-ms-border-radius:6px;-o-border-radius:6px;border-radius:6px}.x-collapsed .x-resizable-handle{display:none}.x-resizable-over .x-resizable-handle-north{cursor:n-resize}.x-resizable-over .x-resizable-handle-south{cursor:s-resize}.x-resizable-over .x-resizable-handle-east{cursor:e-resize}.x-resizable-over .x-resizable-handle-west{cursor:w-resize}.x-resizable-over .x-resizable-handle-southeast{cursor:se-resize}.x-resizable-over .x-resizable-handle-northwest{cursor:nw-resize}.x-resizable-over .x-resizable-handle-northeast{cursor:ne-resize}.x-resizable-over .x-resizable-handle-southwest{cursor:sw-resize}.x-resizable-handle-east{width:6px;height:100%;right:0;top:0}.x-resizable-handle-south{width:100%;height:6px;left:0;bottom:0}.x-resizable-handle-west{width:6px;height:100%;left:0;top:0}.x-resizable-handle-north{width:100%;height:6px;left:0;top:0}.x-resizable-handle-southeast{width:6px;height:6px;right:0;bottom:0;z-index:101}.x-resizable-handle-northwest{width:6px;height:6px;left:0;top:0;z-index:101}.x-resizable-handle-northeast{width:6px;height:6px;right:0;top:0;z-index:101}.x-resizable-handle-southwest{width:6px;height:6px;left:0;bottom:0;z-index:101}.x-ie .x-resizable-handle-east{margin-right:-1px}.x-ie .x-resizable-handle-south{margin-bottom:-1px}.x-resizable-pinned .x-resizable-handle,.x-resizable-over .x-resizable-handle{filter:alpha(opacity=100);opacity:1}.x-window .x-window-handle{filter:alpha(opacity=0);opacity:0}.x-window-collapsed .x-window-handle{display:none}.x-resizable-proxy{border:1px dashed #3b5a82;position:absolute;overflow:hidden;z-index:50000}.x-resizable-over .x-resizable-handle-east,.x-resizable-over .x-resizable-handle-west,.x-resizable-pinned .x-resizable-handle-east,.x-resizable-pinned .x-resizable-handle-west{background-image:url(images/sizer/e-handle.png)}.x-resizable-over .x-resizable-handle-south,.x-resizable-over .x-resizable-handle-north,.x-resizable-pinned .x-resizable-handle-south,.x-resizable-pinned .x-resizable-handle-north{background-image:url(images/sizer/s-handle.png)}.x-resizable-over .x-resizable-handle-southeast,.x-resizable-pinned .x-resizable-handle-southeast{background-position:top left;background-image:url(images/sizer/se-handle.png)}.x-resizable-over .x-resizable-handle-northwest,.x-resizable-pinned .x-resizable-handle-northwest{background-position:bottom right;background-image:url(images/sizer/nw-handle.png)}.x-resizable-over .x-resizable-handle-northeast,.x-resizable-pinned .x-resizable-handle-northeast{background-position:bottom left;background-image:url(images/sizer/ne-handle.png)}.x-resizable-over .x-resizable-handle-southwest,.x-resizable-pinned .x-resizable-handle-southwest{background-position:top right;background-image:url(images/sizer/sw-handle.png)}.x-slider-horz{padding-left:7px;background:no-repeat 0 -15px}.x-slider-horz .x-slider-end{padding-right:7px;background:no-repeat right -30px}.x-slider-horz .x-slider-inner{height:15px}.x-ie6 .x-form-item .x-slider-horz,.x-ie7 .x-form-item .x-slider-horz,.x-quirks .x-ie .x-form-item .x-slider-horz{margin-top:5px}.x-slider-horz .x-slider-thumb{width:15px;height:15px;margin-left:-7px;background-image:url(images/slider/slider-thumb.png)}.x-slider-horz .x-slider-thumb-over{background-position:-15px -15px}.x-slider-horz .x-slider-thumb-drag{background-position:-30px -30px}.x-rtl.x-slider-horz{padding-left:0;padding-right:7px;background-position:right -30px}.x-rtl.x-slider-horz .x-slider-end{padding-right:0;padding-left:7px;background-position:left -15px}.x-rtl.x-slider-horz .x-slider-thumb{margin-right:-7px}.x-slider-vert{padding-top:7px;background:no-repeat -30px 0}.x-slider-vert .x-slider-end{padding-bottom:7px;background:no-repeat -15px bottom;width:15px}.x-slider-vert .x-slider-inner{width:15px}.x-slider-vert .x-slider-thumb{width:15px;height:15px;margin-bottom:-7px;background-image:url(images/slider/slider-v-thumb.png)}.x-slider-vert .x-slider-thumb-over{background-position:-15px -15px}.x-slider-vert .x-slider-thumb-drag{background-position:-30px -30px}.x-slider-horz,.x-slider-horz .x-slider-end,.x-slider-horz .x-slider-inner{background-image:url(images/slider/slider-bg.png)}.x-slider-vert,.x-slider-vert .x-slider-end,.x-slider-vert .x-slider-inner{background-image:url(images/slider/slider-v-bg.png)}.x-tab-default-top{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:8px 12px 7px 12px;border-width:0;border-style:solid;background-color:#4b9cd7}.x-tab-default-top-mc{background-color:#4b9cd7}.x-nbr .x-tab-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tab-default-top-frameInfo{font-family:th-3-3-0-0-0-0-0-0-8-12-7-12}.x-tab-default-top-tl{background-position:0 -6px}.x-tab-default-top-tr{background-position:right -9px}.x-tab-default-top-bl{background-position:0 -12px}.x-tab-default-top-br{background-position:right -15px}.x-tab-default-top-ml{background-position:0 top}.x-tab-default-top-mr{background-position:right top}.x-tab-default-top-tc{background-position:0 0}.x-tab-default-top-bc{background-position:0 -3px}.x-tab-default-top-tr,.x-tab-default-top-br,.x-tab-default-top-mr{padding-right:3px}.x-tab-default-top-tl,.x-tab-default-top-bl,.x-tab-default-top-ml{padding-left:3px}.x-tab-default-top-tc{height:3px}.x-tab-default-top-bc{height:0}.x-tab-default-top-tl,.x-tab-default-top-bl,.x-tab-default-top-tr,.x-tab-default-top-br,.x-tab-default-top-tc,.x-tab-default-top-bc,.x-tab-default-top-ml,.x-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-top-ml,.x-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif);background-repeat:repeat-y}.x-tab-default-top-mc{padding:5px 9px 7px 9px}.x-strict .x-ie7 .x-tab-default-top-tl,.x-strict .x-ie7 .x-tab-default-top-bl{position:relative;right:0}.x-tab-default-top:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x-tab-default-bottom{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;padding:8px 12px 7px 12px;border-width:0;border-style:solid;background-color:#4b9cd7}.x-tab-default-bottom-mc{background-color:#4b9cd7}.x-nbr .x-tab-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tab-default-bottom-frameInfo{font-family:th-0-0-3-3-0-0-0-0-8-12-7-12}.x-tab-default-bottom-tl{background-position:0 -6px}.x-tab-default-bottom-tr{background-position:right -9px}.x-tab-default-bottom-bl{background-position:0 -12px}.x-tab-default-bottom-br{background-position:right -15px}.x-tab-default-bottom-ml{background-position:0 top}.x-tab-default-bottom-mr{background-position:right top}.x-tab-default-bottom-tc{background-position:0 0}.x-tab-default-bottom-bc{background-position:0 -3px}.x-tab-default-bottom-tr,.x-tab-default-bottom-br,.x-tab-default-bottom-mr{padding-right:3px}.x-tab-default-bottom-tl,.x-tab-default-bottom-bl,.x-tab-default-bottom-ml{padding-left:3px}.x-tab-default-bottom-tc{height:0}.x-tab-default-bottom-bc{height:3px}.x-tab-default-bottom-tl,.x-tab-default-bottom-bl,.x-tab-default-bottom-tr,.x-tab-default-bottom-br,.x-tab-default-bottom-tc,.x-tab-default-bottom-bc,.x-tab-default-bottom-ml,.x-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-corners.gif)}.x-tab-default-bottom-ml,.x-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-sides.gif);background-repeat:repeat-y}.x-tab-default-bottom-mc{padding:8px 9px 4px 9px}.x-strict .x-ie7 .x-tab-default-bottom-tl,.x-strict .x-ie7 .x-tab-default-bottom-bl{position:relative;right:0}.x-tab-default-bottom:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"}.x-tab-default-left{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:8px 12px 7px 12px;border-width:0;border-style:solid;background-color:#4b9cd7}.x-tab-default-left-mc{background-color:#4b9cd7}.x-nbr .x-tab-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tab-default-left-frameInfo{font-family:th-3-3-0-0-0-0-0-0-8-12-7-12}.x-tab-default-left-tl{background-position:0 -6px}.x-tab-default-left-tr{background-position:right -9px}.x-tab-default-left-bl{background-position:0 -12px}.x-tab-default-left-br{background-position:right -15px}.x-tab-default-left-ml{background-position:0 top}.x-tab-default-left-mr{background-position:right top}.x-tab-default-left-tc{background-position:0 0}.x-tab-default-left-bc{background-position:0 -3px}.x-tab-default-left-tr,.x-tab-default-left-br,.x-tab-default-left-mr{padding-right:3px}.x-tab-default-left-tl,.x-tab-default-left-bl,.x-tab-default-left-ml{padding-left:3px}.x-tab-default-left-tc{height:3px}.x-tab-default-left-bc{height:0}.x-tab-default-left-tl,.x-tab-default-left-bl,.x-tab-default-left-tr,.x-tab-default-left-br,.x-tab-default-left-tc,.x-tab-default-left-bc,.x-tab-default-left-ml,.x-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-left-ml,.x-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif);background-repeat:repeat-y}.x-tab-default-left-mc{padding:5px 9px 7px 9px}.x-strict .x-ie7 .x-tab-default-left-tl,.x-strict .x-ie7 .x-tab-default-left-bl{position:relative;right:0}.x-tab-default-left:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x-tab-default-right{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:8px 12px 7px 12px;border-width:0;border-style:solid;background-color:#4b9cd7}.x-tab-default-right-mc{background-color:#4b9cd7}.x-nbr .x-tab-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tab-default-right-frameInfo{font-family:th-3-3-0-0-0-0-0-0-8-12-7-12}.x-tab-default-right-tl{background-position:0 -6px}.x-tab-default-right-tr{background-position:right -9px}.x-tab-default-right-bl{background-position:0 -12px}.x-tab-default-right-br{background-position:right -15px}.x-tab-default-right-ml{background-position:0 top}.x-tab-default-right-mr{background-position:right top}.x-tab-default-right-tc{background-position:0 0}.x-tab-default-right-bc{background-position:0 -3px}.x-tab-default-right-tr,.x-tab-default-right-br,.x-tab-default-right-mr{padding-right:3px}.x-tab-default-right-tl,.x-tab-default-right-bl,.x-tab-default-right-ml{padding-left:3px}.x-tab-default-right-tc{height:3px}.x-tab-default-right-bc{height:0}.x-tab-default-right-tl,.x-tab-default-right-bl,.x-tab-default-right-tr,.x-tab-default-right-br,.x-tab-default-right-tc,.x-tab-default-right-bc,.x-tab-default-right-ml,.x-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-right-ml,.x-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif);background-repeat:repeat-y}.x-tab-default-right-mc{padding:5px 9px 7px 9px}.x-strict .x-ie7 .x-tab-default-right-tl,.x-strict .x-ie7 .x-tab-default-right-bl{position:relative;right:0}.x-tab-default-right:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x-tab-default{border-color:#157fcc;margin:0 1px 0 0;cursor:pointer}.x-tab-default .x-tab-inner{font-size:13px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;color:white;line-height:16px}.x-tab-default .x-tab-icon-el{width:16px;height:16px;line-height:16px;background-position:center center}.x-tab-default .x-tab-glyph{font-size:16px;color:white;opacity:.5}.x-ie8m .x-tab-default .x-tab-glyph{color:#a5cdeb}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default{padding-left:0}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-button{padding-left:12px}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-icon-el{left:12px}.x-tab-default-icon .x-tab-inner{width:16px}.x-rtl.x-tab-default{margin:0 0 0 1px}.x-rtl.x-tab-default{margin:0 0 0 1px}.x-tab-default-left{margin:0 0 0 1px}.x-rtl.x-tab-default-left{margin:0 1px 0 0}.x-tab-default-top,.x-tab-default-left,.x-tab-default-right{border-bottom:0 solid #157fcc}.x-tab-default-bottom{border-top:0 solid #157fcc}.x-tab-default-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-tab-default-left{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.x-rtl.x-tab-default-left{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-rtl.x-tab-default-left{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.x-tab-default-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-tab-default-right{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.x-rtl.x-tab-default-right{-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-rtl.x-tab-default-right{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.x-tab-default-icon-text-left .x-tab-inner{padding-left:22px}.x-rtl.x-tab-default-icon-text-left .x-tab-inner{padding-left:0;padding-right:22px}.x-tab-default-over{background-color:#5fa7db}.x-tab-default-over .x-tab-glyph{color:white}.x-ie8m .x-tab-default-over .x-tab-glyph{color:#afd3ed}.x-tab-default-active{background-color:#add2ed}.x-tab-default-active .x-tab-inner{color:#157fcc}.x-tab-default-active .x-tab-glyph{color:#157fcc}.x-ie8m .x-tab-default-active .x-tab-glyph{color:#61a8dc}.x-tab-default-top-active,.x-tab-default-left-active,.x-tab-default-right-active{border-bottom:0 solid #add2ed}.x-tab-default-bottom-active{border-top:0 solid #add2ed}.x-tab-default-disabled{cursor:default}.x-tab-default-disabled .x-tab-inner{filter:alpha(opacity=30);opacity:.3}.x-tab-default-disabled .x-tab-icon-el{filter:alpha(opacity=50);opacity:.5}.x-tab-default-disabled .x-tab-glyph{color:white;opacity:.3;filter:none}.x-ie8m .x-tab-default-disabled .x-tab-glyph{color:#81b9e3}.x-tab-default-top-disabled,.x-tab-default-left-disabled,.x-tab-default-right-disabled{border-color:#157fcc #157fcc #157fcc}.x-tab-default-bottom-disabled{border-color:#157fcc #157fcc #157fcc #157fcc}.x-nbr .x-tab-default{background-image:none}.x-tab-default-top-over .x-frame-tl,.x-tab-default-top-over .x-frame-bl,.x-tab-default-top-over .x-frame-tr,.x-tab-default-top-over .x-frame-br,.x-tab-default-top-over .x-frame-tc,.x-tab-default-top-over .x-frame-bc,.x-tab-default-left-over .x-frame-tl,.x-tab-default-left-over .x-frame-bl,.x-tab-default-left-over .x-frame-tr,.x-tab-default-left-over .x-frame-br,.x-tab-default-left-over .x-frame-tc,.x-tab-default-left-over .x-frame-bc,.x-tab-default-right-over .x-frame-tl,.x-tab-default-right-over .x-frame-bl,.x-tab-default-right-over .x-frame-tr,.x-tab-default-right-over .x-frame-br,.x-tab-default-right-over .x-frame-tc,.x-tab-default-right-over .x-frame-bc{background-image:url(images/tab/tab-default-top-over-corners.gif)}.x-tab-default-top-over .x-frame-ml,.x-tab-default-top-over .x-frame-mr,.x-tab-default-left-over .x-frame-ml,.x-tab-default-left-over .x-frame-mr,.x-tab-default-right-over .x-frame-ml,.x-tab-default-right-over .x-frame-mr{background-image:url(images/tab/tab-default-top-over-sides.gif)}.x-tab-default-top-over .x-frame-mc,.x-tab-default-left-over .x-frame-mc,.x-tab-default-right-over .x-frame-mc{background-color:#5fa7db}.x-tab-default-bottom-over .x-frame-tl,.x-tab-default-bottom-over .x-frame-bl,.x-tab-default-bottom-over .x-frame-tr,.x-tab-default-bottom-over .x-frame-br,.x-tab-default-bottom-over .x-frame-tc,.x-tab-default-bottom-over .x-frame-bc{background-image:url(images/tab/tab-default-bottom-over-corners.gif)}.x-tab-default-bottom-over .x-frame-ml,.x-tab-default-bottom-over .x-frame-mr{background-image:url(images/tab/tab-default-bottom-over-sides.gif)}.x-tab-default-bottom-over .x-frame-mc{background-color:#5fa7db}.x-tab-default-top-active .x-frame-tl,.x-tab-default-top-active .x-frame-bl,.x-tab-default-top-active .x-frame-tr,.x-tab-default-top-active .x-frame-br,.x-tab-default-top-active .x-frame-tc,.x-tab-default-top-active .x-frame-bc,.x-tab-default-left-active .x-frame-tl,.x-tab-default-left-active .x-frame-bl,.x-tab-default-left-active .x-frame-tr,.x-tab-default-left-active .x-frame-br,.x-tab-default-left-active .x-frame-tc,.x-tab-default-left-active .x-frame-bc,.x-tab-default-right-active .x-frame-tl,.x-tab-default-right-active .x-frame-bl,.x-tab-default-right-active .x-frame-tr,.x-tab-default-right-active .x-frame-br,.x-tab-default-right-active .x-frame-tc,.x-tab-default-right-active .x-frame-bc{background-image:url(images/tab/tab-default-top-active-corners.gif)}.x-tab-default-top-active .x-frame-ml,.x-tab-default-top-active .x-frame-mr,.x-tab-default-left-active .x-frame-ml,.x-tab-default-left-active .x-frame-mr,.x-tab-default-right-active .x-frame-ml,.x-tab-default-right-active .x-frame-mr{background-image:url(images/tab/tab-default-top-active-sides.gif)}.x-tab-default-top-active .x-frame-mc,.x-tab-default-left-active .x-frame-mc,.x-tab-default-right-active .x-frame-mc{background-color:#add2ed}.x-tab-default-bottom-active .x-frame-tl,.x-tab-default-bottom-active .x-frame-bl,.x-tab-default-bottom-active .x-frame-tr,.x-tab-default-bottom-active .x-frame-br,.x-tab-default-bottom-active .x-frame-tc,.x-tab-default-bottom-active .x-frame-bc{background-image:url(images/tab/tab-default-bottom-active-corners.gif)}.x-tab-default-bottom-active .x-frame-ml,.x-tab-default-bottom-active .x-frame-mr{background-image:url(images/tab/tab-default-bottom-active-sides.gif)}.x-tab-default-bottom-active .x-frame-mc{background-color:#add2ed}.x-tab-default-top-disabled .x-frame-tl,.x-tab-default-top-disabled .x-frame-bl,.x-tab-default-top-disabled .x-frame-tr,.x-tab-default-top-disabled .x-frame-br,.x-tab-default-top-disabled .x-frame-tc,.x-tab-default-top-disabled .x-frame-bc,.x-tab-default-left-disabled .x-frame-tl,.x-tab-default-left-disabled .x-frame-bl,.x-tab-default-left-disabled .x-frame-tr,.x-tab-default-left-disabled .x-frame-br,.x-tab-default-left-disabled .x-frame-tc,.x-tab-default-left-disabled .x-frame-bc,.x-tab-default-right-disabled .x-frame-tl,.x-tab-default-right-disabled .x-frame-bl,.x-tab-default-right-disabled .x-frame-tr,.x-tab-default-right-disabled .x-frame-br,.x-tab-default-right-disabled .x-frame-tc,.x-tab-default-right-disabled .x-frame-bc{background-image:url(images/tab/tab-default-top-disabled-corners.gif)}.x-tab-default-top-disabled .x-frame-ml,.x-tab-default-top-disabled .x-frame-mr,.x-tab-default-left-disabled .x-frame-ml,.x-tab-default-left-disabled .x-frame-mr,.x-tab-default-right-disabled .x-frame-ml,.x-tab-default-right-disabled .x-frame-mr{background-image:url(images/tab/tab-default-top-disabled-sides.gif)}.x-tab-default-top-disabled .x-frame-mc,.x-tab-default-left-disabled .x-frame-mc,.x-tab-default-right-disabled .x-frame-mc{background-color:#4b9cd7}.x-tab-default-bottom-disabled .x-frame-tl,.x-tab-default-bottom-disabled .x-frame-bl,.x-tab-default-bottom-disabled .x-frame-tr,.x-tab-default-bottom-disabled .x-frame-br,.x-tab-default-bottom-disabled .x-frame-tc,.x-tab-default-bottom-disabled .x-frame-bc{background-image:url(images/tab/tab-default-bottom-disabled-corners.gif)}.x-tab-default-bottom-disabled .x-frame-ml,.x-tab-default-bottom-disabled .x-frame-mr{background-image:url(images/tab/tab-default-bottom-disabled-sides.gif)}.x-tab-default-bottom-disabled .x-frame-mc{background-color:#4b9cd7}.x-tab-default .x-tab-close-btn{width:12px;height:12px;background-image:url(images/tab/tab-default-close.png)}.x-tab-default .x-tab-close-btn-over{background-position:-12px 0}.x-tab-default .x-tab-close-btn{top:2px;right:2px}.x-rtl.x-tab-default .x-tab-close-btn{right:auto;left:2px}.x-tab-default-disabled .x-tab-close-btn{filter:alpha(opacity=30);opacity:.3;background-position:0 0}.x-tab-default-pressed .x-tab-close-btn{background-position:-24px 0}.x-tab-default-closable .x-tab-wrap{padding-right:15px}.x-rtl.x-tab-default-closable .x-tab-wrap{padding-right:0;padding-left:15px}.x-tab-default-top-over:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif)"}.x-tab-default-bottom-over:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif)"}.x-tab-default-top-active:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif)"}.x-tab-default-bottom-active:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif)"}.x-tab-default-top-disabled:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif)"}.x-tab-default-bottom-disabled:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif)"}.x-tab-bar-default-top{padding:0}.x-tab-bar-default-bottom{padding:0}.x-tab-bar-default-left{padding:0}.x-rtl.x-tab-bar-default-left{padding:0}.x-tab-bar-default-right{padding:0}.x-rtl.x-tab-bar-default-right{padding:0}.x-tab-bar-default-horizontal{height:36px}.x-content-box .x-tab-bar-default-horizontal{height:36px}.x-tab-bar-default-vertical{width:36px}.x-content-box .x-tab-bar-default-vertical{width:36px}.x-tab-bar-body-default-top{padding-bottom:5px}.x-tab-bar-body-default-bottom{padding-top:5px}.x-tab-bar-body-default-left{padding-right:5px}.x-rtl.x-tab-bar-body-default-left{padding-right:0;padding-left:5px}.x-tab-bar-body-default-right{padding-left:5px}.x-rtl.x-tab-bar-body-default-right{padding-left:0;padding-right:5px}.x-tab-bar-strip-default{border-style:solid;border-color:#157fcc;background-color:#add2ed}.x-content-box .x-tab-bar-strip-default-horizontal{height:5px}.x-content-box .x-tab-bar-strip-default-vertical{width:5px}.x-tab-bar-strip-default-top{border-width:0;height:5px}.x-tab-bar-plain .x-tab-bar-strip-default-top{border-width:0}.x-tab-bar-strip-default-bottom{border-width:0;height:5px}.x-tab-bar-plain .x-tab-bar-strip-default-bottom{border-width:0}.x-tab-bar-strip-default-left{border-width:0;width:5px}.x-tab-bar-plain .x-tab-bar-strip-default-left{border-width:0}.x-rtl.x-tab-bar-strip-default-left{border-width:0}.x-tab-bar-plain .x-rtl.x-tab-bar-strip-default-left{border-width:0}.x-tab-bar-strip-default-right{border-width:0;width:5px}.x-tab-bar-plain .x-tab-bar-strip-default-right{border-width:0}.x-rtl.x-tab-bar-strip-default-right{border-width:0}.x-tab-bar-plain .x-rtl.x-tab-bar-strip-default-right{border-width:0}.x-tab-bar-default{background-color:#157fcc}.x-tab-bar-default .x-box-scroller{cursor:pointer;filter:alpha(opacity=50);opacity:.5;background-color:#157fcc}.x-tab-bar-default .x-box-scroller-plain .x-box-scroller{background-color:transparent}.x-ie8m .x-tab-bar-default .x-box-scroller-plain .x-box-scroller{background-color:#fff}.x-tab-bar-default .x-box-scroller-hover{filter:alpha(opacity=60);opacity:.6}.x-tab-bar-default .x-box-scroller-pressed{filter:alpha(opacity=70);opacity:.7}.x-tab-bar-default .x-tabbar-scroll-left,.x-tab-bar-default .x-tabbar-scroll-right{height:31px;width:24px}.x-tab-bar-default .x-tabbar-scroll-top,.x-tab-bar-default .x-tabbar-scroll-bottom{width:31px;height:24px}.x-tab-bar-default-bottom .x-box-scroller{margin-top:0}.x-tab-bar-default-right .x-box-scroller{margin-left:0}.x-rtl.x-tab-bar-default-right .x-box-scroller{margin-left:0;margin-right:0}.x-tab-bar-default .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-left.png)}.x-tab-bar-default .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-right.png)}.x-tab-bar-default .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top.png)}.x-tab-bar-default .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom.png)}.x-rtl.x-tab-bar-default .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-right.png)}.x-rtl.x-tab-bar-default .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-left.png)}.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-plain-scroll-left.png)}.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-plain-scroll-right.png)}.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-plain-scroll-top.png)}.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-plain-scroll-bottom.png)}.x-rtl.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-plain-scroll-right.png)}.x-rtl.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-plain-scroll-left.png)}.x-tab-bar-default .x-box-scroller-disabled{filter:alpha(opacity=25);opacity:.25;cursor:default}.x-tab-bar-default-top:after{display:none;content:"x-slicer:stretch:bottom"}.x-tab-bar-default-bottom:after{display:none;content:"x-slicer:stretch:top"}.x-tab-bar-default-left:after{display:none;content:"x-slicer:stretch:right"}.x-tab-bar-default-right:after{display:none;content:"x-slicer:stretch:left"}.x-tab-bar-plain{border-width:0;padding:0;height:36px}.x-column-header-checkbox{border-color:#f5f5f5}.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}.x-column-header-checkbox .x-column-header-inner{padding:7px 4px 7px 4px}.x-grid-cell-row-checker .x-grid-cell-inner{padding:5px 4px 4px 4px}.x-grid-hd-checker-on .x-column-header-text,.x-grid-row-selected .x-grid-row-checker,.x-grid-row-checked .x-grid-row-checker{background-position:0 -15px}.x-tree-expander{cursor:pointer}.x-tree-arrows .x-tree-expander{background-image:url(images/tree/arrows.png)}.x-tree-arrows .x-tree-expander-over .x-tree-expander{background-position:-32px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander{background-position:-16px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander{background-position:-48px center}.x-tree-arrows .x-rtl.x-tree-expander{background:url(images/tree/arrows-rtl.png) no-repeat -48px center}.x-tree-arrows .x-tree-expander-over .x-rtl.x-tree-expander{background-position:-16px center}.x-tree-arrows .x-grid-tree-node-expanded .x-rtl.x-tree-expander{background-position:-32px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-rtl.x-tree-expander{background-position:0 center}.x-tree-lines .x-tree-elbow{background-image:url(images/tree/elbow.png)}.x-tree-lines .x-tree-elbow-end{background-image:url(images/tree/elbow-end.png)}.x-tree-lines .x-tree-elbow-plus{background-image:url(images/tree/elbow-plus.png)}.x-tree-lines .x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-plus.png)}.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus{background-image:url(images/tree/elbow-minus.png)}.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-minus.png)}.x-tree-lines .x-tree-elbow-line{background-image:url(images/tree/elbow-line.png)}.x-tree-lines .x-rtl.x-tree-elbow{background-image:url(images/tree/elbow-rtl.png)}.x-tree-lines .x-rtl.x-tree-elbow-end{background-image:url(images/tree/elbow-end-rtl.png)}.x-tree-lines .x-rtl.x-tree-elbow-plus{background-image:url(images/tree/elbow-plus-rtl.png)}.x-tree-lines .x-rtl.x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-plus-rtl.png)}.x-tree-lines .x-grid-tree-node-expanded .x-rtl.x-tree-elbow-plus{background-image:url(images/tree/elbow-minus-rtl.png)}.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)}.x-tree-lines .x-rtl.x-tree-elbow-line{background-image:url(images/tree/elbow-line-rtl.png)}.x-tree-no-row-lines .x-tree-expander{background-image:url(images/tree/elbow-plus-nl.png)}.x-tree-no-row-lines .x-grid-tree-node-expanded .x-tree-expander{background-image:url(images/tree/elbow-minus-nl.png)}.x-tree-no-row-lines .x-rtl.x-tree-expander{background-image:url(images/tree/elbow-plus-nl-rtl.png)}.x-tree-no-row-lines .x-grid-tree-node-expanded .x-rtl.x-tree-expander{background-image:url(images/tree/elbow-minus-nl-rtl.png)}.x-tree-icon{width:16px;height:24px}.x-tree-elbow-img{width:18px;height:24px;margin-right:2px}.x-rtl.x-tree-elbow-img{margin-right:0;margin-left:2px}.x-tree-icon,.x-tree-elbow-img,.x-tree-checkbox{margin-top:-5px;margin-bottom:-4px}.x-tree-icon-leaf{background-image:url(images/tree/leaf.png)}.x-rtl.x-tree-icon-leaf{background-image:url(images/tree/leaf-rtl.png)}.x-tree-icon-parent{background-image:url(images/tree/folder.png)}.x-rtl.x-tree-icon-parent{background-image:url(images/tree/folder-rtl.png)}.x-grid-tree-node-expanded .x-tree-icon-parent{background-image:url(images/tree/folder-open.png)}.x-grid-tree-node-expanded .x-rtl.x-tree-icon-parent{background-image:url(images/tree/folder-open-rtl.png)}.x-tree-checkbox{margin-right:4px;top:5px;width:15px;height:15px;background-image:url(images/form/checkbox.png)}.x-rtl.x-tree-checkbox{margin-right:0;margin-left:4px}.x-tree-checkbox-checked{background-position:0 -15px}.x-grid-tree-loading .x-tree-icon{background-image:url(images/tree/loading.png)}.x-grid-tree-loading .x-rtl.x-tree-icon{background-image:url(images/tree/loading.png)}.x-grid-cell-inner-treecolumn{font-size:1px;line-height:0}.x-tree-node-text{font-size:13px;line-height:15px;padding-left:4px}.x-rtl.x-tree-node-text{padding-left:0;padding-right:4px}.x-grid-cell-inner-treecolumn{padding:5px 10px 4px 6px}.x-tree-drop-ok-append .x-dd-drop-icon{background-image:url(images/tree/drop-append.png)}.x-tree-drop-ok-above .x-dd-drop-icon{background-image:url(images/tree/drop-above.png)}.x-tree-drop-ok-below .x-dd-drop-icon{background-image:url(images/tree/drop-below.png)}.x-tree-drop-ok-between .x-dd-drop-icon{background-image:url(images/tree/drop-between.png)}.x-tree-ddindicator{height:1px;border-width:1px 0 0;border-style:dotted;border-color:green}body{background-color:#f5f5f5}.x-btn-plain-toolbar-small{border-color:transparent}.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-image:none;background-color:transparent}.x-btn-plain-toolbar-small-mc{background-image:url(images/btn/btn-plain-toolbar-small-fbg.gif);background-position:0 top;background-color:transparent}.x-nlg .x-btn-plain-toolbar-small{background-image:url(images/btn/btn-plain-toolbar-small-bg.gif);background-position:0 top}.x-nbr .x-btn-plain-toolbar-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-plain-toolbar-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-plain-toolbar-small-tl{background-position:0 -6px}.x-btn-plain-toolbar-small-tr{background-position:right -9px}.x-btn-plain-toolbar-small-bl{background-position:0 -12px}.x-btn-plain-toolbar-small-br{background-position:right -15px}.x-btn-plain-toolbar-small-ml{background-position:0 top}.x-btn-plain-toolbar-small-mr{background-position:right top}.x-btn-plain-toolbar-small-tc{background-position:0 0}.x-btn-plain-toolbar-small-bc{background-position:0 -3px}.x-btn-plain-toolbar-small-tr,.x-btn-plain-toolbar-small-br,.x-btn-plain-toolbar-small-mr{padding-right:3px}.x-btn-plain-toolbar-small-tl,.x-btn-plain-toolbar-small-bl,.x-btn-plain-toolbar-small-ml{padding-left:3px}.x-btn-plain-toolbar-small-tc{height:3px}.x-btn-plain-toolbar-small-bc{height:3px}.x-btn-plain-toolbar-small-tl,.x-btn-plain-toolbar-small-bl,.x-btn-plain-toolbar-small-tr,.x-btn-plain-toolbar-small-br,.x-btn-plain-toolbar-small-tc,.x-btn-plain-toolbar-small-bc,.x-btn-plain-toolbar-small-ml,.x-btn-plain-toolbar-small-mr{zoom:1}.x-btn-plain-toolbar-small-ml,.x-btn-plain-toolbar-small-mr{zoom:1}.x-btn-plain-toolbar-small-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-plain-toolbar-small-tl,.x-strict .x-ie7 .x-btn-plain-toolbar-small-bl{position:relative;right:0}.x-btn-plain-toolbar-small:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-plain-toolbar-small-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-bg.gif)"}.x-btn-plain-toolbar-small .x-btn-inner{font-size:12px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;color:#666;padding:0 5px}.x-btn-plain-toolbar-small .x-btn-arrow{background-image:url(images/button/plain-toolbar-small-arrow.png)}.x-btn-plain-toolbar-small .x-btn-arrow-right{padding-right:21px}.x-btn-plain-toolbar-small .x-rtl.x-btn-arrow-right{padding-right:0;padding-left:21px}.x-btn-plain-toolbar-small .x-btn-arrow-bottom{padding-bottom:18px}.x-btn-plain-toolbar-small .x-btn-glyph{font-size:16px;line-height:16px;color:#666;opacity:.5}.x-ie8m .x-btn-plain-toolbar-small .x-btn-glyph{color:#b2b2b2}.x-btn-plain-toolbar-small-disabled{background-image:none;background-color:transparent}.x-btn-plain-toolbar-small-icon .x-btn-button,.x-btn-plain-toolbar-small-noicon .x-btn-button{height:16px}.x-btn-plain-toolbar-small-icon .x-btn-inner,.x-btn-plain-toolbar-small-noicon .x-btn-inner{line-height:16px}.x-btn-plain-toolbar-small-icon .x-btn-arrow-right .x-btn-inner,.x-btn-plain-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-plain-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-plain-toolbar-small-icon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-plain-toolbar-small-noicon .x-btn-arrow-right .x-rtl.x-btn-inner,.x-btn-plain-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:5px;padding-left:0}.x-btn-plain-toolbar-small-icon .x-btn-inner{width:16px;padding:0}.x-btn-plain-toolbar-small-icon .x-btn-icon-el{width:16px;height:16px}.x-btn-plain-toolbar-small-icon-text-left .x-btn-button{height:16px}.x-btn-plain-toolbar-small-icon-text-left .x-btn-inner{line-height:16px;padding-left:21px}.x-btn-plain-toolbar-small-icon-text-left .x-rtl.x-btn-inner{padding-left:5px;padding-right:21px}.x-btn-plain-toolbar-small-icon-text-left .x-btn-arrow-right .x-rtl.x-btn-inner{padding-right:21px}.x-btn-plain-toolbar-small-icon-text-left .x-btn-icon-el{width:16px;right:auto}.x-ie6 .x-btn-plain-toolbar-small-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-plain-toolbar-small-icon-text-left .x-btn-icon-el{height:16px}.x-btn-plain-toolbar-small-icon-text-left .x-rtl.x-btn-icon-el{left:auto;right:0}.x-btn-plain-toolbar-small-icon-text-right .x-btn-button{height:16px}.x-btn-plain-toolbar-small-icon-text-right .x-btn-inner{line-height:16px;padding-right:21px}.x-btn-plain-toolbar-small-icon-text-right .x-rtl.x-btn-inner{padding-right:5px;padding-left:21px}.x-btn-plain-toolbar-small-icon-text-right .x-btn-icon-el{width:16px;left:auto}.x-ie6 .x-btn-plain-toolbar-small-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-plain-toolbar-small-icon-text-right .x-btn-icon-el{height:16px}.x-btn-plain-toolbar-small-icon-text-right .x-rtl.x-btn-icon-el{left:0;right:auto}.x-btn-plain-toolbar-small-icon-text-top .x-btn-inner{padding-top:21px}.x-btn-plain-toolbar-small-icon-text-top .x-btn-icon-el{height:16px;bottom:auto}.x-ie6 .x-btn-plain-toolbar-small-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-plain-toolbar-small-icon-text-top .x-btn-icon-el{width:100%}.x-btn-plain-toolbar-small-icon-text-bottom .x-btn-inner{padding-bottom:21px}.x-btn-plain-toolbar-small-icon-text-bottom .x-btn-icon-el{height:16px;top:auto}.x-ie6 .x-btn-plain-toolbar-small-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-plain-toolbar-small-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-plain-toolbar-small-over{border-color:#e1e1e1;background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-plain-toolbar-small-focus{border-color:#e1e1e1;background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-plain-toolbar-small-menu-active,.x-btn-plain-toolbar-small-pressed{border-color:#e1e1e1;background-image:none;background-color:#e1e1e1;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e1e1e1),color-stop(50%,#d5d5d5),color-stop(51%,#e1e1e1),color-stop(100%,#e4e4e4));background-image:-webkit-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-moz-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-o-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4)}.x-btn-plain-toolbar-small-over .x-frame-tl,.x-btn-plain-toolbar-small-over .x-frame-bl,.x-btn-plain-toolbar-small-over .x-frame-tr,.x-btn-plain-toolbar-small-over .x-frame-br,.x-btn-plain-toolbar-small-over .x-frame-tc,.x-btn-plain-toolbar-small-over .x-frame-bc{background-image:url(images/btn/btn-plain-toolbar-small-over-corners.gif)}.x-btn-plain-toolbar-small-over .x-frame-ml,.x-btn-plain-toolbar-small-over .x-frame-mr{background-image:url(images/btn/btn-plain-toolbar-small-over-sides.gif)}.x-btn-plain-toolbar-small-over .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-plain-toolbar-small-over-fbg.gif)}.x-btn-plain-toolbar-small-focus .x-frame-tl,.x-btn-plain-toolbar-small-focus .x-frame-bl,.x-btn-plain-toolbar-small-focus .x-frame-tr,.x-btn-plain-toolbar-small-focus .x-frame-br,.x-btn-plain-toolbar-small-focus .x-frame-tc,.x-btn-plain-toolbar-small-focus .x-frame-bc{background-image:url(images/btn/btn-plain-toolbar-small-focus-corners.gif)}.x-btn-plain-toolbar-small-focus .x-frame-ml,.x-btn-plain-toolbar-small-focus .x-frame-mr{background-image:url(images/btn/btn-plain-toolbar-small-focus-sides.gif)}.x-btn-plain-toolbar-small-focus .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-plain-toolbar-small-focus-fbg.gif)}.x-btn-plain-toolbar-small-menu-active .x-frame-tl,.x-btn-plain-toolbar-small-menu-active .x-frame-bl,.x-btn-plain-toolbar-small-menu-active .x-frame-tr,.x-btn-plain-toolbar-small-menu-active .x-frame-br,.x-btn-plain-toolbar-small-menu-active .x-frame-tc,.x-btn-plain-toolbar-small-menu-active .x-frame-bc,.x-btn-plain-toolbar-small-pressed .x-frame-tl,.x-btn-plain-toolbar-small-pressed .x-frame-bl,.x-btn-plain-toolbar-small-pressed .x-frame-tr,.x-btn-plain-toolbar-small-pressed .x-frame-br,.x-btn-plain-toolbar-small-pressed .x-frame-tc,.x-btn-plain-toolbar-small-pressed .x-frame-bc{background-image:url(images/btn/btn-plain-toolbar-small-pressed-corners.gif)}.x-btn-plain-toolbar-small-menu-active .x-frame-ml,.x-btn-plain-toolbar-small-menu-active .x-frame-mr,.x-btn-plain-toolbar-small-pressed .x-frame-ml,.x-btn-plain-toolbar-small-pressed .x-frame-mr{background-image:url(images/btn/btn-plain-toolbar-small-pressed-sides.gif)}.x-btn-plain-toolbar-small-menu-active .x-frame-mc,.x-btn-plain-toolbar-small-pressed .x-frame-mc{background-color:#e1e1e1;background-image:url(images/btn/btn-plain-toolbar-small-pressed-fbg.gif)}.x-btn-plain-toolbar-small-disabled .x-frame-tl,.x-btn-plain-toolbar-small-disabled .x-frame-bl,.x-btn-plain-toolbar-small-disabled .x-frame-tr,.x-btn-plain-toolbar-small-disabled .x-frame-br,.x-btn-plain-toolbar-small-disabled .x-frame-tc,.x-btn-plain-toolbar-small-disabled .x-frame-bc{background-image:url(images/btn/btn-plain-toolbar-small-disabled-corners.gif)}.x-btn-plain-toolbar-small-disabled .x-frame-ml,.x-btn-plain-toolbar-small-disabled .x-frame-mr{background-image:url(images/btn/btn-plain-toolbar-small-disabled-sides.gif)}.x-btn-plain-toolbar-small-disabled .x-frame-mc{background-color:transparent;background-image:url(images/btn/btn-plain-toolbar-small-disabled-fbg.gif)}.x-nlg .x-btn-plain-toolbar-small-over{background-image:url(images/btn/btn-plain-toolbar-small-over-bg.gif)}.x-nlg .x-btn-plain-toolbar-small-focus{background-image:url(images/btn/btn-plain-toolbar-small-focus-bg.gif)}.x-nlg .x-btn-plain-toolbar-small-menu-active,.x-nlg .x-btn-plain-toolbar-small-pressed{background-image:url(images/btn/btn-plain-toolbar-small-pressed-bg.gif)}.x-nlg .x-btn-plain-toolbar-small-disabled{background-image:url(images/btn/btn-plain-toolbar-small-disabled-bg.gif)}.x-nbr .x-btn-plain-toolbar-small{background-image:none}.x-btn-plain-toolbar-small .x-btn-split-right{background-image:url(images/button/plain-toolbar-small-s-arrow.png);padding-right:23px}.x-btn-plain-toolbar-small .x-rtl.x-btn-split-right{background-image:url(images/button/plain-toolbar-small-s-arrow-rtl.png);padding-right:0;padding-left:23px}.x-btn-plain-toolbar-small .x-btn-split-bottom{background-image:url(images/button/plain-toolbar-small-s-arrow-b.png);padding-bottom:20px}.x-btn-plain-toolbar-small-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-plain-toolbar-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-over-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-over-bg.gif)"}.x-btn-plain-toolbar-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-focus-bg.gif)"}.x-btn-plain-toolbar-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-pressed-bg.gif)"}.x-btn-plain-toolbar-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-disabled-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-disabled-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-disabled-bg.gif)"}.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}.x-strict .x-ie8 .x-btn-plain-toolbar-small-disabled .x-btn-icon-el,.x-strict .x-ie8 .x-btn-plain-toolbar-medium-disabled .x-btn-icon-el,.x-strict .x-ie8 .x-btn-plain-toolbar-large-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-toolbar-default .x-toolbar-scroll-left{margin-right:4px}.x-toolbar-default .x-toolbar-scroll-right{margin-left:4px}.x-toolbar-default .x-toolbar-scroll-left,.x-toolbar-default .x-toolbar-scroll-right{filter:alpha(opacity=60);opacity:.6}.x-toolbar-default .x-toolbar-scroll-left-hover,.x-toolbar-default .x-toolbar-scroll-right-hover{background-position:0 0;filter:alpha(opacity=80);opacity:.8}.x-toolbar-default .x-toolbar-scroll-left-pressed,.x-toolbar-default .x-toolbar-scroll-right-pressed{background-position:0 0;filter:alpha(opacity=100);opacity:1}.x-toolbar-default .x-box-scroller-disabled{filter:alpha(opacity=25);opacity:.25}.x-toolbar-default .x-box-scroller{background-color:white}.x-toolbar-scroller{padding:6px 4px 6px 4px}.x-toolbar-vertical-scroller{padding:3px 8px 3px 8px}.x-panel-light{border-color:#157fcc;padding:0}.x-panel-header-light{font-size:13px;border:1px solid #157fcc}.x-panel-header-light .x-tool-img{background-image:url(images/tools/tool-sprites-dark.png);background-color:#dfeaf2}.x-panel-header-light-horizontal{padding:9px 9px 10px 9px}.x-panel-header-light-horizontal-noborder{padding:10px 10px 10px 10px}.x-panel-header-light-vertical{padding:9px 9px 9px 10px}.x-panel-header-light-vertical-noborder{padding:10px 10px 10px 10px}.x-rtl.x-panel-header-light-vertical{padding:9px 10px 9px 9px}.x-rtl.x-panel-header-light-vertical-noborder{padding:10px 10px 10px 10px}.x-panel-header-text-container-light{color:#666;font-size:13px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;line-height:15px;padding:1px 0 0;text-transform:none}.x-panel-body-light{background:white;border-color:#157fcc;color:black;font-size:13px;font-size:normal;border-width:1px;border-style:solid}.x-panel-header-light{background-image:none;background-color:#dfeaf2}.x-panel-header-light-vertical{background-image:none;background-color:#dfeaf2}.x-rtl.x-panel-header-light-vertical{background-image:none;background-color:#dfeaf2}.x-panel .x-panel-header-light-collapsed-border-top{border-bottom-width:1px!important}.x-panel .x-panel-header-light-collapsed-border-right{border-left-width:1px!important}.x-panel .x-panel-header-light-collapsed-border-bottom{border-top-width:1px!important}.x-panel .x-panel-header-light-collapsed-border-left{border-right-width:1px!important}.x-panel-header-light-top:after{display:none;content:"x-slicer:stretch:bottom"}.x-panel-header-light-bottom:after{display:none;content:"x-slicer:stretch:bottom"}.x-panel-header-light-left:after{display:none;content:"x-slicer:stretch:left"}.x-panel-header-light-right:after{display:none;content:"x-slicer:stretch:left"}.x-panel-header-light-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-light-vertical .x-panel-header-text-container{background-color:#dfeaf2;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#dfeaf2)}.x-panel-header-light-vertical .x-rtl.x-panel-header-text-container{-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-panel-header-light-vertical .x-rtl.x-panel-header-text-container{background-color:#dfeaf2;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3),progid:DXImageTransform.Microsoft.Chroma(color=#dfeaf2)}.x-panel-header-light .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-light .x-panel-header-glyph{color:white;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-light .x-panel-header-glyph{color:#eff4f8}.x-panel-header-light-horizontal .x-panel-header-icon-before-title{margin:0 6px 0 0}.x-panel-header-light-horizontal .x-rtl.x-panel-header-icon-before-title{margin:0 0 0 6px}.x-panel-header-light-horizontal .x-panel-header-icon-after-title{margin:0 0 0 6px}.x-panel-header-light-horizontal .x-rtl.x-panel-header-icon-after-title{margin:0 6px 0 0}.x-panel-header-light-vertical .x-panel-header-icon-before-title{margin:0 0 6px 0}.x-panel-header-light-vertical .x-rtl.x-panel-header-icon-before-title{margin:0 0 6px 0}.x-panel-header-light-vertical .x-panel-header-icon-after-title{margin:6px 0 0 0}.x-panel-header-light-vertical .x-rtl.x-panel-header-icon-after-title{margin:6px 0 0 0}.x-panel-header-light-horizontal .x-tool-after-title{margin:0 0 0 6px}.x-panel-header-light-horizontal .x-rtl.x-tool-after-title{margin:0 6px 0 0}.x-panel-header-light-horizontal .x-tool-before-title{margin:0 6px 0 0}.x-panel-header-light-horizontal .x-rtl.x-tool-before-title{margin:0 0 0 6px}.x-panel-header-light-vertical .x-tool-after-title{margin:6px 0 0 0}.x-panel-header-light-vertical .x-rtl.x-tool-after-title{margin:6px 0 0 0}.x-panel-header-light-vertical .x-tool-before-title{margin:0 0 6px 0}.x-panel-header-light-vertical .x-rtl.x-tool-before-title{margin:0 0 6px 0}.x-rtl.x-panel-header-light-collapsed-border-right{border-right-width:1px!important}.x-rtl.x-panel-header-light-collapsed-border-left{border-left-width:1px!important}.x-panel-light-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-panel-light-outer-border-l{border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-outer-border-b{border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-light-outer-border-bl{border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-outer-border-r{border-right-color:#157fcc!important;border-right-width:1px!important}.x-panel-light-outer-border-rl{border-right-color:#157fcc!important;border-right-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-outer-border-rb{border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-light-outer-border-rbl{border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-outer-border-t{border-top-color:#157fcc!important;border-top-width:1px!important}.x-panel-light-outer-border-tl{border-top-color:#157fcc!important;border-top-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-outer-border-tb{border-top-color:#157fcc!important;border-top-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-light-outer-border-tbl{border-top-color:#157fcc!important;border-top-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-outer-border-tr{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important}.x-panel-light-outer-border-trl{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-outer-border-trb{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-light-outer-border-trbl{border-color:#157fcc!important;border-width:1px!important}.x-panel-light-framed{border-color:#dfeaf2;padding:0}.x-panel-header-light-framed{font-size:13px;border:5px solid #dfeaf2}.x-panel-header-light-framed .x-tool-img{background-image:url(images/tools/tool-sprites-dark.png);background-color:#dfeaf2}.x-panel-header-light-framed-horizontal{padding:5px}.x-panel-header-light-framed-horizontal-noborder{padding:10px 10px 5px 10px}.x-panel-header-light-framed-vertical{padding:5px 5px 5px 5px}.x-panel-header-light-framed-vertical-noborder{padding:10px 10px 10px 5px}.x-rtl.x-panel-header-light-framed-vertical{padding:5px 5px 5px 5px}.x-rtl.x-panel-header-light-framed-vertical-noborder{padding:10px 5px 10px 10px}.x-panel-header-text-container-light-framed{color:#666;font-size:13px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;line-height:15px;padding:1px 0 0;text-transform:none}.x-panel-body-light-framed{background:white;border-color:#dfeaf2;color:black;font-size:13px;font-size:normal;border-width:1px;border-style:solid}.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;border-width:5px;border-style:solid;background-color:white}.x-panel-light-framed-mc{background-color:white}.x-nbr .x-panel-light-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-light-framed-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-0-0-0-0}.x-panel-light-framed-tl{background-position:0 -10px}.x-panel-light-framed-tr{background-position:right -15px}.x-panel-light-framed-bl{background-position:0 -20px}.x-panel-light-framed-br{background-position:right -25px}.x-panel-light-framed-ml{background-position:0 top}.x-panel-light-framed-mr{background-position:right top}.x-panel-light-framed-tc{background-position:0 0}.x-panel-light-framed-bc{background-position:0 -5px}.x-panel-light-framed-tr,.x-panel-light-framed-br,.x-panel-light-framed-mr{padding-right:5px}.x-panel-light-framed-tl,.x-panel-light-framed-bl,.x-panel-light-framed-ml{padding-left:5px}.x-panel-light-framed-tc{height:5px}.x-panel-light-framed-bc{height:5px}.x-panel-light-framed-tl,.x-panel-light-framed-bl,.x-panel-light-framed-tr,.x-panel-light-framed-br,.x-panel-light-framed-tc,.x-panel-light-framed-bc,.x-panel-light-framed-ml,.x-panel-light-framed-mr{zoom:1;background-image:url(images/panel/panel-light-framed-corners.gif)}.x-panel-light-framed-ml,.x-panel-light-framed-mr{zoom:1;background-image:url(images/panel/panel-light-framed-sides.gif);background-repeat:repeat-y}.x-panel-light-framed-mc{padding:0}.x-strict .x-ie7 .x-panel-light-framed-tl,.x-strict .x-ie7 .x-panel-light-framed-bl{position:relative;right:0}.x-panel-light-framed:after{display:none;content:"x-slicer:corners:url(images/panel/panel-light-framed-corners.gif), sides:url(images/panel/panel-light-framed-sides.gif)"}.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:5px 5px 5px 5px;border-width:5px 5px 0 5px;border-style:solid;background-color:#dfeaf2}.x-panel-header-light-framed-top-mc{background-color:#dfeaf2}.x-nbr .x-panel-header-light-framed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-light-framed-top-frameInfo{font-family:dh-4-4-0-0-5-5-0-5-5-5-5-5}.x-panel-header-light-framed-top-tl{background-position:0 -10px}.x-panel-header-light-framed-top-tr{background-position:right -15px}.x-panel-header-light-framed-top-bl{background-position:0 -20px}.x-panel-header-light-framed-top-br{background-position:right -25px}.x-panel-header-light-framed-top-ml{background-position:0 top}.x-panel-header-light-framed-top-mr{background-position:right top}.x-panel-header-light-framed-top-tc{background-position:0 0}.x-panel-header-light-framed-top-bc{background-position:0 -5px}.x-panel-header-light-framed-top-tr,.x-panel-header-light-framed-top-br,.x-panel-header-light-framed-top-mr{padding-right:5px}.x-panel-header-light-framed-top-tl,.x-panel-header-light-framed-top-bl,.x-panel-header-light-framed-top-ml{padding-left:5px}.x-panel-header-light-framed-top-tc{height:5px}.x-panel-header-light-framed-top-bc{height:0}.x-panel-header-light-framed-top-tl,.x-panel-header-light-framed-top-bl,.x-panel-header-light-framed-top-tr,.x-panel-header-light-framed-top-br,.x-panel-header-light-framed-top-tc,.x-panel-header-light-framed-top-bc,.x-panel-header-light-framed-top-ml,.x-panel-header-light-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-top-corners.gif)}.x-panel-header-light-framed-top-ml,.x-panel-header-light-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-top-sides.gif);background-repeat:repeat-y}.x-panel-header-light-framed-top-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-light-framed-top-tl,.x-strict .x-ie7 .x-panel-header-light-framed-top-bl{position:relative;right:0}.x-panel-header-light-framed-top:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-light-framed-top-corners.gif), sides:url(images/panel-header/panel-header-light-framed-top-sides.gif)"}.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:5px 5px 5px 5px;border-width:5px 5px 5px 0;border-style:solid;background-color:#dfeaf2}.x-rtl.x-panel-header-light-framed-right{background-image:none;background-color:#dfeaf2}.x-panel-header-light-framed-right-mc{background-color:#dfeaf2}.x-nbr .x-panel-header-light-framed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-light-framed-right-frameInfo{font-family:dh-0-4-4-0-5-5-5-0-5-5-5-5}.x-panel-header-light-framed-right-tl{background-position:0 -10px}.x-panel-header-light-framed-right-tr{background-position:right -15px}.x-panel-header-light-framed-right-bl{background-position:0 -20px}.x-panel-header-light-framed-right-br{background-position:right -25px}.x-panel-header-light-framed-right-ml{background-position:0 right}.x-panel-header-light-framed-right-mr{background-position:right right}.x-panel-header-light-framed-right-tc{background-position:0 0}.x-panel-header-light-framed-right-bc{background-position:0 -5px}.x-panel-header-light-framed-right-tr,.x-panel-header-light-framed-right-br,.x-panel-header-light-framed-right-mr{padding-right:5px}.x-panel-header-light-framed-right-tl,.x-panel-header-light-framed-right-bl,.x-panel-header-light-framed-right-ml{padding-left:0}.x-panel-header-light-framed-right-tc{height:5px}.x-panel-header-light-framed-right-bc{height:5px}.x-panel-header-light-framed-right-tl,.x-panel-header-light-framed-right-bl,.x-panel-header-light-framed-right-tr,.x-panel-header-light-framed-right-br,.x-panel-header-light-framed-right-tc,.x-panel-header-light-framed-right-bc,.x-panel-header-light-framed-right-ml,.x-panel-header-light-framed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-right-corners.gif)}.x-rtl.x-panel-header-light-framed-right-tl,.x-rtl.x-panel-header-light-framed-right-ml,.x-rtl.x-panel-header-light-framed-right-bl,.x-rtl.x-panel-header-light-framed-right-tr,.x-rtl.x-panel-header-light-framed-right-mr,.x-rtl.x-panel-header-light-framed-right-br{background-image:url(images/panel-header/panel-header-light-framed-right-corners-rtl.gif)}.x-panel-header-light-framed-right-ml,.x-panel-header-light-framed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-right-sides.gif);background-repeat:repeat-y}.x-panel-header-light-framed-right-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-light-framed-right-tl,.x-strict .x-ie7 .x-panel-header-light-framed-right-bl{position:relative;right:0}.x-panel-header-light-framed-right:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-light-framed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-light-framed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-light-framed-right-sides.gif)"}.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:5px 5px 5px 5px;border-width:0 5px 5px 5px;border-style:solid;background-color:#dfeaf2}.x-panel-header-light-framed-bottom-mc{background-color:#dfeaf2}.x-nbr .x-panel-header-light-framed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-light-framed-bottom-frameInfo{font-family:dh-0-0-4-4-0-5-5-5-5-5-5-5}.x-panel-header-light-framed-bottom-tl{background-position:0 -10px}.x-panel-header-light-framed-bottom-tr{background-position:right -15px}.x-panel-header-light-framed-bottom-bl{background-position:0 -20px}.x-panel-header-light-framed-bottom-br{background-position:right -25px}.x-panel-header-light-framed-bottom-ml{background-position:0 bottom}.x-panel-header-light-framed-bottom-mr{background-position:right bottom}.x-panel-header-light-framed-bottom-tc{background-position:0 0}.x-panel-header-light-framed-bottom-bc{background-position:0 -5px}.x-panel-header-light-framed-bottom-tr,.x-panel-header-light-framed-bottom-br,.x-panel-header-light-framed-bottom-mr{padding-right:5px}.x-panel-header-light-framed-bottom-tl,.x-panel-header-light-framed-bottom-bl,.x-panel-header-light-framed-bottom-ml{padding-left:5px}.x-panel-header-light-framed-bottom-tc{height:0}.x-panel-header-light-framed-bottom-bc{height:5px}.x-panel-header-light-framed-bottom-tl,.x-panel-header-light-framed-bottom-bl,.x-panel-header-light-framed-bottom-tr,.x-panel-header-light-framed-bottom-br,.x-panel-header-light-framed-bottom-tc,.x-panel-header-light-framed-bottom-bc,.x-panel-header-light-framed-bottom-ml,.x-panel-header-light-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-bottom-corners.gif)}.x-panel-header-light-framed-bottom-ml,.x-panel-header-light-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-bottom-sides.gif);background-repeat:repeat-y}.x-panel-header-light-framed-bottom-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-light-framed-bottom-tl,.x-strict .x-ie7 .x-panel-header-light-framed-bottom-bl{position:relative;right:0}.x-panel-header-light-framed-bottom:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-light-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-light-framed-bottom-sides.gif)"}.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:5px 5px 5px 5px;border-width:5px 0 5px 5px;border-style:solid;background-color:#dfeaf2}.x-rtl.x-panel-header-light-framed-left{background-image:none;background-color:#dfeaf2}.x-panel-header-light-framed-left-mc{background-color:#dfeaf2}.x-nbr .x-panel-header-light-framed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-light-framed-left-frameInfo{font-family:dh-4-0-0-4-5-0-5-5-5-5-5-5}.x-panel-header-light-framed-left-tl{background-position:0 -10px}.x-panel-header-light-framed-left-tr{background-position:right -15px}.x-panel-header-light-framed-left-bl{background-position:0 -20px}.x-panel-header-light-framed-left-br{background-position:right -25px}.x-panel-header-light-framed-left-ml{background-position:0 left}.x-panel-header-light-framed-left-mr{background-position:right left}.x-panel-header-light-framed-left-tc{background-position:0 0}.x-panel-header-light-framed-left-bc{background-position:0 -5px}.x-panel-header-light-framed-left-tr,.x-panel-header-light-framed-left-br,.x-panel-header-light-framed-left-mr{padding-right:0}.x-panel-header-light-framed-left-tl,.x-panel-header-light-framed-left-bl,.x-panel-header-light-framed-left-ml{padding-left:5px}.x-panel-header-light-framed-left-tc{height:5px}.x-panel-header-light-framed-left-bc{height:5px}.x-panel-header-light-framed-left-tl,.x-panel-header-light-framed-left-bl,.x-panel-header-light-framed-left-tr,.x-panel-header-light-framed-left-br,.x-panel-header-light-framed-left-tc,.x-panel-header-light-framed-left-bc,.x-panel-header-light-framed-left-ml,.x-panel-header-light-framed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-left-corners.gif)}.x-rtl.x-panel-header-light-framed-left-tl,.x-rtl.x-panel-header-light-framed-left-ml,.x-rtl.x-panel-header-light-framed-left-bl,.x-rtl.x-panel-header-light-framed-left-tr,.x-rtl.x-panel-header-light-framed-left-mr,.x-rtl.x-panel-header-light-framed-left-br{background-image:url(images/panel-header/panel-header-light-framed-left-corners-rtl.gif)}.x-panel-header-light-framed-left-ml,.x-panel-header-light-framed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-left-sides.gif);background-repeat:repeat-y}.x-panel-header-light-framed-left-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-light-framed-left-tl,.x-strict .x-ie7 .x-panel-header-light-framed-left-bl{position:relative;right:0}.x-panel-header-light-framed-left:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-light-framed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-light-framed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-light-framed-left-sides.gif)"}.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:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#dfeaf2}.x-panel-header-light-framed-collapsed-top-mc{background-color:#dfeaf2}.x-nbr .x-panel-header-light-framed-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-light-framed-collapsed-top-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-panel-header-light-framed-collapsed-top-tl{background-position:0 -10px}.x-panel-header-light-framed-collapsed-top-tr{background-position:right -15px}.x-panel-header-light-framed-collapsed-top-bl{background-position:0 -20px}.x-panel-header-light-framed-collapsed-top-br{background-position:right -25px}.x-panel-header-light-framed-collapsed-top-ml{background-position:0 top}.x-panel-header-light-framed-collapsed-top-mr{background-position:right top}.x-panel-header-light-framed-collapsed-top-tc{background-position:0 0}.x-panel-header-light-framed-collapsed-top-bc{background-position:0 -5px}.x-panel-header-light-framed-collapsed-top-tr,.x-panel-header-light-framed-collapsed-top-br,.x-panel-header-light-framed-collapsed-top-mr{padding-right:5px}.x-panel-header-light-framed-collapsed-top-tl,.x-panel-header-light-framed-collapsed-top-bl,.x-panel-header-light-framed-collapsed-top-ml{padding-left:5px}.x-panel-header-light-framed-collapsed-top-tc{height:5px}.x-panel-header-light-framed-collapsed-top-bc{height:5px}.x-panel-header-light-framed-collapsed-top-tl,.x-panel-header-light-framed-collapsed-top-bl,.x-panel-header-light-framed-collapsed-top-tr,.x-panel-header-light-framed-collapsed-top-br,.x-panel-header-light-framed-collapsed-top-tc,.x-panel-header-light-framed-collapsed-top-bc,.x-panel-header-light-framed-collapsed-top-ml,.x-panel-header-light-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-collapsed-top-corners.gif)}.x-panel-header-light-framed-collapsed-top-ml,.x-panel-header-light-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-collapsed-top-sides.gif);background-repeat:repeat-y}.x-panel-header-light-framed-collapsed-top-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-top-tl,.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-top-bl{position:relative;right:0}.x-panel-header-light-framed-collapsed-top:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-top-sides.gif)"}.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:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#dfeaf2}.x-rtl.x-panel-header-light-framed-collapsed-right{background-image:none;background-color:#dfeaf2}.x-panel-header-light-framed-collapsed-right-mc{background-color:#dfeaf2}.x-nbr .x-panel-header-light-framed-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-light-framed-collapsed-right-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-panel-header-light-framed-collapsed-right-tl{background-position:0 -10px}.x-panel-header-light-framed-collapsed-right-tr{background-position:right -15px}.x-panel-header-light-framed-collapsed-right-bl{background-position:0 -20px}.x-panel-header-light-framed-collapsed-right-br{background-position:right -25px}.x-panel-header-light-framed-collapsed-right-ml{background-position:0 right}.x-panel-header-light-framed-collapsed-right-mr{background-position:right right}.x-panel-header-light-framed-collapsed-right-tc{background-position:0 0}.x-panel-header-light-framed-collapsed-right-bc{background-position:0 -5px}.x-panel-header-light-framed-collapsed-right-tr,.x-panel-header-light-framed-collapsed-right-br,.x-panel-header-light-framed-collapsed-right-mr{padding-right:5px}.x-panel-header-light-framed-collapsed-right-tl,.x-panel-header-light-framed-collapsed-right-bl,.x-panel-header-light-framed-collapsed-right-ml{padding-left:5px}.x-panel-header-light-framed-collapsed-right-tc{height:5px}.x-panel-header-light-framed-collapsed-right-bc{height:5px}.x-panel-header-light-framed-collapsed-right-tl,.x-panel-header-light-framed-collapsed-right-bl,.x-panel-header-light-framed-collapsed-right-tr,.x-panel-header-light-framed-collapsed-right-br,.x-panel-header-light-framed-collapsed-right-tc,.x-panel-header-light-framed-collapsed-right-bc,.x-panel-header-light-framed-collapsed-right-ml,.x-panel-header-light-framed-collapsed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-collapsed-right-corners.gif)}.x-rtl.x-panel-header-light-framed-collapsed-right-tl,.x-rtl.x-panel-header-light-framed-collapsed-right-ml,.x-rtl.x-panel-header-light-framed-collapsed-right-bl,.x-rtl.x-panel-header-light-framed-collapsed-right-tr,.x-rtl.x-panel-header-light-framed-collapsed-right-mr,.x-rtl.x-panel-header-light-framed-collapsed-right-br{background-image:url(images/panel-header/panel-header-light-framed-collapsed-right-corners-rtl.gif)}.x-panel-header-light-framed-collapsed-right-ml,.x-panel-header-light-framed-collapsed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-collapsed-right-sides.gif);background-repeat:repeat-y}.x-panel-header-light-framed-collapsed-right-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-right-tl,.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-right-bl{position:relative;right:0}.x-panel-header-light-framed-collapsed-right:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-right-corners.gif), corners-rtl:url(images/panel-header/panel-header-light-framed-collapsed-right-corners-rtl.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-right-sides.gif)"}.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:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#dfeaf2}.x-panel-header-light-framed-collapsed-bottom-mc{background-color:#dfeaf2}.x-nbr .x-panel-header-light-framed-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-light-framed-collapsed-bottom-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-panel-header-light-framed-collapsed-bottom-tl{background-position:0 -10px}.x-panel-header-light-framed-collapsed-bottom-tr{background-position:right -15px}.x-panel-header-light-framed-collapsed-bottom-bl{background-position:0 -20px}.x-panel-header-light-framed-collapsed-bottom-br{background-position:right -25px}.x-panel-header-light-framed-collapsed-bottom-ml{background-position:0 bottom}.x-panel-header-light-framed-collapsed-bottom-mr{background-position:right bottom}.x-panel-header-light-framed-collapsed-bottom-tc{background-position:0 0}.x-panel-header-light-framed-collapsed-bottom-bc{background-position:0 -5px}.x-panel-header-light-framed-collapsed-bottom-tr,.x-panel-header-light-framed-collapsed-bottom-br,.x-panel-header-light-framed-collapsed-bottom-mr{padding-right:5px}.x-panel-header-light-framed-collapsed-bottom-tl,.x-panel-header-light-framed-collapsed-bottom-bl,.x-panel-header-light-framed-collapsed-bottom-ml{padding-left:5px}.x-panel-header-light-framed-collapsed-bottom-tc{height:5px}.x-panel-header-light-framed-collapsed-bottom-bc{height:5px}.x-panel-header-light-framed-collapsed-bottom-tl,.x-panel-header-light-framed-collapsed-bottom-bl,.x-panel-header-light-framed-collapsed-bottom-tr,.x-panel-header-light-framed-collapsed-bottom-br,.x-panel-header-light-framed-collapsed-bottom-tc,.x-panel-header-light-framed-collapsed-bottom-bc,.x-panel-header-light-framed-collapsed-bottom-ml,.x-panel-header-light-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-collapsed-bottom-corners.gif)}.x-panel-header-light-framed-collapsed-bottom-ml,.x-panel-header-light-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-collapsed-bottom-sides.gif);background-repeat:repeat-y}.x-panel-header-light-framed-collapsed-bottom-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-bottom-tl,.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-bottom-bl{position:relative;right:0}.x-panel-header-light-framed-collapsed-bottom:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-bottom-sides.gif)"}.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:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#dfeaf2}.x-rtl.x-panel-header-light-framed-collapsed-left{background-image:none;background-color:#dfeaf2}.x-panel-header-light-framed-collapsed-left-mc{background-color:#dfeaf2}.x-nbr .x-panel-header-light-framed-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-light-framed-collapsed-left-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-panel-header-light-framed-collapsed-left-tl{background-position:0 -10px}.x-panel-header-light-framed-collapsed-left-tr{background-position:right -15px}.x-panel-header-light-framed-collapsed-left-bl{background-position:0 -20px}.x-panel-header-light-framed-collapsed-left-br{background-position:right -25px}.x-panel-header-light-framed-collapsed-left-ml{background-position:0 left}.x-panel-header-light-framed-collapsed-left-mr{background-position:right left}.x-panel-header-light-framed-collapsed-left-tc{background-position:0 0}.x-panel-header-light-framed-collapsed-left-bc{background-position:0 -5px}.x-panel-header-light-framed-collapsed-left-tr,.x-panel-header-light-framed-collapsed-left-br,.x-panel-header-light-framed-collapsed-left-mr{padding-right:5px}.x-panel-header-light-framed-collapsed-left-tl,.x-panel-header-light-framed-collapsed-left-bl,.x-panel-header-light-framed-collapsed-left-ml{padding-left:5px}.x-panel-header-light-framed-collapsed-left-tc{height:5px}.x-panel-header-light-framed-collapsed-left-bc{height:5px}.x-panel-header-light-framed-collapsed-left-tl,.x-panel-header-light-framed-collapsed-left-bl,.x-panel-header-light-framed-collapsed-left-tr,.x-panel-header-light-framed-collapsed-left-br,.x-panel-header-light-framed-collapsed-left-tc,.x-panel-header-light-framed-collapsed-left-bc,.x-panel-header-light-framed-collapsed-left-ml,.x-panel-header-light-framed-collapsed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-collapsed-left-corners.gif)}.x-rtl.x-panel-header-light-framed-collapsed-left-tl,.x-rtl.x-panel-header-light-framed-collapsed-left-ml,.x-rtl.x-panel-header-light-framed-collapsed-left-bl,.x-rtl.x-panel-header-light-framed-collapsed-left-tr,.x-rtl.x-panel-header-light-framed-collapsed-left-mr,.x-rtl.x-panel-header-light-framed-collapsed-left-br{background-image:url(images/panel-header/panel-header-light-framed-collapsed-left-corners-rtl.gif)}.x-panel-header-light-framed-collapsed-left-ml,.x-panel-header-light-framed-collapsed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-collapsed-left-sides.gif);background-repeat:repeat-y}.x-panel-header-light-framed-collapsed-left-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-left-tl,.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-left-bl{position:relative;right:0}.x-panel-header-light-framed-collapsed-left:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-left-corners.gif), corners-rtl:url(images/panel-header/panel-header-light-framed-collapsed-left-corners-rtl.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-left-sides.gif)"}.x-panel .x-panel-header-light-framed-top{border-bottom-width:5px!important}.x-panel .x-panel-header-light-framed-right{border-left-width:5px!important}.x-panel .x-panel-header-light-framed-bottom{border-top-width:5px!important}.x-panel .x-panel-header-light-framed-left{border-right-width:5px!important}.x-nbr .x-panel-header-light-framed-collapsed-top{border-bottom-width:0!important}.x-nbr .x-panel-header-light-framed-collapsed-right{border-left-width:0!important}.x-nbr .x-panel-header-light-framed-collapsed-bottom{border-top-width:0!important}.x-nbr .x-panel-header-light-framed-collapsed-left{border-right-width:0!important}.x-panel-header-light-framed-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-light-framed-vertical .x-panel-header-text-container{background-color:#dfeaf2;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#dfeaf2)}.x-panel-header-light-framed-vertical .x-rtl.x-panel-header-text-container{-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-panel-header-light-framed-vertical .x-rtl.x-panel-header-text-container{background-color:#dfeaf2;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3),progid:DXImageTransform.Microsoft.Chroma(color=#dfeaf2)}.x-panel-header-light-framed .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-light-framed .x-panel-header-glyph{color:white;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-light-framed .x-panel-header-glyph{color:#eff4f8}.x-panel-header-light-framed-horizontal .x-panel-header-icon-before-title{margin:0 6px 0 0}.x-panel-header-light-framed-horizontal .x-rtl.x-panel-header-icon-before-title{margin:0 0 0 6px}.x-panel-header-light-framed-horizontal .x-panel-header-icon-after-title{margin:0 0 0 6px}.x-panel-header-light-framed-horizontal .x-rtl.x-panel-header-icon-after-title{margin:0 6px 0 0}.x-panel-header-light-framed-vertical .x-panel-header-icon-before-title{margin:0 0 6px 0}.x-panel-header-light-framed-vertical .x-rtl.x-panel-header-icon-before-title{margin:0 0 6px 0}.x-panel-header-light-framed-vertical .x-panel-header-icon-after-title{margin:6px 0 0 0}.x-panel-header-light-framed-vertical .x-rtl.x-panel-header-icon-after-title{margin:6px 0 0 0}.x-panel-header-light-framed-horizontal .x-tool-after-title{margin:0 0 0 6px}.x-panel-header-light-framed-horizontal .x-rtl.x-tool-after-title{margin:0 6px 0 0}.x-panel-header-light-framed-horizontal .x-tool-before-title{margin:0 6px 0 0}.x-panel-header-light-framed-horizontal .x-rtl.x-tool-before-title{margin:0 0 0 6px}.x-panel-header-light-framed-vertical .x-tool-after-title{margin:6px 0 0 0}.x-panel-header-light-framed-vertical .x-rtl.x-tool-after-title{margin:6px 0 0 0}.x-panel-header-light-framed-vertical .x-tool-before-title{margin:0 0 6px 0}.x-panel-header-light-framed-vertical .x-rtl.x-tool-before-title{margin:0 0 6px 0}.x-rtl.x-panel-header-light-framed-collapsed-border-right{border-right-width:5px!important}.x-rtl.x-panel-header-light-framed-collapsed-border-left{border-left-width:5px!important}.x-panel-light-framed-resizable{overflow:visible}.x-panel-light-framed-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-panel-light-framed-resizable .x-panel-handle-north-br{top:-5px}.x-panel-light-framed-resizable .x-panel-handle-south-br{bottom:-5px}.x-panel-light-framed-resizable .x-panel-handle-east-br{right:-5px}.x-panel-light-framed-resizable .x-panel-handle-west-br{left:-5px}.x-panel-light-framed-resizable .x-panel-handle-northwest-br{left:-5px;top:-5px}.x-panel-light-framed-resizable .x-panel-handle-northeast-br{right:-5px;top:-5px}.x-panel-light-framed-resizable .x-panel-handle-southeast-br{right:-5px;bottom:-5px}.x-panel-light-framed-resizable .x-panel-handle-southwest-br{left:-5px;bottom:-5px}.x-panel-light-framed-outer-border-l{border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-framed-outer-border-b{border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-light-framed-outer-border-bl{border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-framed-outer-border-r{border-right-color:#157fcc!important;border-right-width:1px!important}.x-panel-light-framed-outer-border-rl{border-right-color:#157fcc!important;border-right-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-framed-outer-border-rb{border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-light-framed-outer-border-rbl{border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-framed-outer-border-t{border-top-color:#157fcc!important;border-top-width:1px!important}.x-panel-light-framed-outer-border-tl{border-top-color:#157fcc!important;border-top-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-framed-outer-border-tb{border-top-color:#157fcc!important;border-top-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-light-framed-outer-border-tbl{border-top-color:#157fcc!important;border-top-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-framed-outer-border-tr{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important}.x-panel-light-framed-outer-border-trl{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-framed-outer-border-trb{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-light-framed-outer-border-trbl{border-color:#157fcc!important;border-width:1px!important}.x-form-trigger{height:22px}.x-form-trigger-wrap{border:1px solid;border-color:silver #d9d9d9 #d9d9d9}.x-form-trigger-wrap .x-form-text{border-width:0;height:22px}.x-content-box .x-form-trigger-wrap .x-form-text{height:15px}.x-form-trigger-wrap-focus .x-form-trigger-wrap{border-color:#3892d3}.x-form-invalid .x-form-trigger-wrap{border-color:#cf4c35}.x-form-file-wrap .x-form-trigger-wrap{border:0}.x-form-file-wrap .x-form-trigger-wrap .x-form-text{border:1px solid;border-color:silver #d9d9d9 #d9d9d9;height:24px}.x-content-box .x-form-file-wrap .x-form-trigger-wrap .x-form-text{height:15px}.x-html-editor-container{border:1px solid;border-color:silver #d9d9d9 #d9d9d9}.x-grid-header-ct{border:1px solid silver}.x-column-header-trigger{background-image:url(images/grid/hd-pop.png);border-left:1px solid silver}.x-rtl.x-column-header-trigger{border-right:1px solid silver;border-left:0}.x-column-header-last{border-right:0}.x-column-header-last .x-column-header-over .x-column-header-trigger{border-right:1px solid silver}.x-column-header-last{border-right:0 none}.x-rtl.x-column-header-last{border-left:0}.x-rtl.x-column-header-last .x-column-header-over .x-column-header-trigger{border-left:1px solid silver}.x-accordion-hd .x-tool-img{background-image:url(images/tools/tool-sprites-dark.png)}.x-accordion-item .x-accordion-hd-over{background-color:#e6f1f9}.x-resizable-handle{background-color:#157fcc;background-repeat:no-repeat}.x-resizable-over .x-resizable-handle-east,.x-resizable-over .x-resizable-handle-west,.x-resizable-pinned .x-resizable-handle-east,.x-resizable-pinned .x-resizable-handle-west{background-position:center}.x-resizable-over .x-resizable-handle-south,.x-resizable-over .x-resizable-handle-north,.x-resizable-pinned .x-resizable-handle-south,.x-resizable-pinned .x-resizable-handle-north{background-position:center}.x-resizable-over .x-resizable-handle-southeast,.x-resizable-pinned .x-resizable-handle-southeast{background-position:-2px -2px}.x-resizable-over .x-resizable-handle-northwest,.x-resizable-pinned .x-resizable-handle-northwest{background-position:2px 2px}.x-resizable-over .x-resizable-handle-northeast,.x-resizable-pinned .x-resizable-handle-northeast{background-position:-2px 2px}.x-resizable-over .x-resizable-handle-southwest,.x-resizable-pinned .x-resizable-handle-southwest{background-position:2px -2px} \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/ext-theme-neptune-all.css b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/ext-theme-neptune-all.css new file mode 100644 index 0000000..6aedc37 --- /dev/null +++ b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/ext-theme-neptune-all.css @@ -0,0 +1 @@ +.x-body{margin:0}img{border:0}.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}.x-rtl{direction:rtl}.x-ltr{direction:ltr}.x-clear{overflow:hidden;clear:both;font-size:0;line-height:0;display:table}.x-strict .x-ie7 .x-clear{height:0;width:0}.x-layer{position:absolute!important;overflow:hidden;zoom:1}.x-fixed-layer{position:fixed!important;overflow:hidden;zoom:1}.x-shim{position:absolute;left:0;top:0;overflow:hidden;filter:alpha(opacity=0);opacity:0}.x-hide-display{display:none!important}.x-hide-visibility{visibility:hidden!important}.x-ie6 .x-item-disabled{filter:none}.x-hidden,.x-hide-offsets{display:block!important;visibility:hidden!important;position:absolute!important;top:-10000px!important}.x-hide-nosize{height:0!important;width:0!important}.x-hide-clip{position:absolute!important;clip:rect(0,0,0,0);clip:rect(0 0 0 0)}.x-masked-relative{position:relative}.x-ie-shadow{background-color:#777;display:none;position:absolute;overflow:hidden;zoom:1}.x-unselectable{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x-selectable{cursor:auto;-moz-user-select:text;-webkit-user-select:text;-ms-user-select:text;user-select:text;-o-user-select:text}.x-list-plain{list-style-type:none;margin:0;padding:0}.x-table-plain{border-collapse:collapse;border-spacing:0;font-size:1em}.x-frame-tl,.x-frame-tr,.x-frame-tc,.x-frame-bl,.x-frame-br,.x-frame-bc{overflow:hidden;background-repeat:no-repeat}.x-frame-tc,.x-frame-bc{background-repeat:repeat-x}.x-frame-mc{background-repeat:repeat-x;overflow:hidden}.x-proxy-el{position:absolute;background:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x-css-shadow{position:absolute;-webkit-border-radius:5px;-moz-border-radius:5px;-ms-border-radius:5px;-o-border-radius:5px;border-radius:5px}.x-item-disabled,.x-item-disabled *{cursor:default}.x-box-item{position:absolute!important;left:0;top:0}div.x-editor{overflow:visible}.x-mask{z-index:100;position:absolute;width:100%;height:100%;zoom:1}.x-mask-shim{z-index:100;position:absolute;top:0;left:0;width:100%;height:100%}.x-mask-msg{z-index:20001;position:absolute}.x-progress{position:relative;border-style:solid;overflow:hidden}.x-progress-bar{overflow:hidden;position:absolute;width:0;height:100%}.x-progress-text{overflow:hidden;position:absolute}.x-btn{display:inline-block;position:relative;zoom:1;*display:inline;outline:0;cursor:pointer;white-space:nowrap;vertical-align:middle;text-decoration:none}.x-btn-wrap{position:relative;display:block}.x-btn-button{position:relative;display:block;text-decoration:none;overflow:hidden;zoom:1}.x-btn-inner{display:block;white-space:nowrap;overflow:hidden;zoom:1}.x-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x-btn-inner-center{text-align:center}.x-btn-inner-left{text-align:left}.x-btn-inner-right{text-align:right}.x-box-layout-ct{overflow:hidden;zoom:1}.x-box-target{position:absolute;width:20000px;top:0;left:0;height:1px}.x-box-inner{overflow:hidden;zoom:1;position:relative;left:0;top:0}.x-horizontal-box-overflow-body{float:left}.x-box-scroller{position:relative;background-repeat:no-repeat}.x-box-scroller-left,.x-box-scroller-right{float:left;height:100%;z-index:5}.x-box-scroller-top .x-box-scroller,.x-box-scroller-bottom .x-box-scroller{line-height:0;font-size:0;background-position:center 0}.x-box-menu-after{float:right}.x-toolbar-text{white-space:nowrap}.x-toolbar-separator{display:block;font-size:1px;overflow:hidden;cursor:default;border:0;width:0;height:0;line-height:0}.x-quirks .x-ie .x-toolbar .x-toolbar-separator-horizontal{width:2px}.x-toolbar-scroller{padding-left:0}.x-toolbar-plain{border:0}.x-docked{position:absolute!important;z-index:1}.x-docked-vertical{position:static}.x-docked-top{border-bottom-width:0!important}.x-docked-bottom{border-top-width:0!important}.x-docked-left{border-right-width:0!important}.x-docked-right{border-left-width:0!important}.x-docked-noborder-top{border-top-width:0!important}.x-docked-noborder-right{border-right-width:0!important}.x-docked-noborder-bottom{border-bottom-width:0!important}.x-docked-noborder-left{border-left-width:0!important}.x-noborder-l{border-left-width:0!important}.x-noborder-b{border-bottom-width:0!important}.x-noborder-bl{border-bottom-width:0!important;border-left-width:0!important}.x-noborder-r{border-right-width:0!important}.x-noborder-rl{border-right-width:0!important;border-left-width:0!important}.x-noborder-rb{border-right-width:0!important;border-bottom-width:0!important}.x-noborder-rbl{border-right-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x-noborder-t{border-top-width:0!important}.x-noborder-tl{border-top-width:0!important;border-left-width:0!important}.x-noborder-tb{border-top-width:0!important;border-bottom-width:0!important}.x-noborder-tbl{border-top-width:0!important;border-bottom-width:0!important;border-left-width:0!important}.x-noborder-tr{border-top-width:0!important;border-right-width:0!important}.x-noborder-trl{border-top-width:0!important;border-right-width:0!important;border-left-width:0!important}.x-noborder-trb{border-top-width:0!important;border-right-width:0!important;border-bottom-width:0!important}.x-noborder-trbl{border-width:0!important}.x-header-icon{background-repeat:no-repeat;background-position:0 0;vertical-align:middle;text-align:center}.x-header-text-container{overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis}.x-dd-drag-proxy,.x-dd-drag-current{z-index:1000000!important;pointer-events:none}.x-dd-drag-repair .x-dd-drag-ghost{filter:alpha(opacity=60);opacity:.6}.x-dd-drag-repair .x-dd-drop-icon{display:none}.x-dd-drag-ghost{filter:alpha(opacity=85);opacity:.85;padding:5px;padding-left:20px;white-space:nowrap;color:#000;font:normal 12px helvetica,arial,verdana,sans-serif;border:1px solid;border-color:#ddd #bbb #bbb #ddd;background-color:#fff}.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}.x-dd-drop-ok .x-dd-drop-icon{background-image:url(images/dd/drop-yes.png)}.x-dd-drop-ok-add .x-dd-drop-icon{background-image:url(images/dd/drop-add.png)}.x-dd-drop-nodrop div.x-dd-drop-icon{background-image:url(images/dd/drop-no.png)}.x-panel,.x-plain{overflow:hidden;position:relative}.x-panel{outline:0}.x-ie .x-panel-header,.x-ie .x-panel-header-tl,.x-ie .x-panel-header-tc,.x-ie .x-panel-header-tr,.x-ie .x-panel-header-ml,.x-ie .x-panel-header-mc,.x-ie .x-panel-header-mr,.x-ie .x-panel-header-bl,.x-ie .x-panel-header-bc,.x-ie .x-panel-header-br{zoom:1}.x-ie8 td.x-frame-mc{vertical-align:top}.x-panel-body{overflow:hidden;position:relative}.x-nlg .x-panel-header-vertical .x-frame-mc{background-repeat:repeat-y}.x-panel-header-plain,.x-panel-body-plain{border:0;padding:0}.x-tip{position:absolute;overflow:visible}.x-tip-body{overflow:hidden;position:relative}.x-tip-anchor{position:absolute;overflow:hidden;border-style:solid}.x-table-layout{font-size:1em}.x-btn-group{position:relative;overflow:hidden}.x-btn-group-body{position:relative;zoom:1}.x-btn-group-body .x-table-layout-cell{vertical-align:top}.x-viewport,.x-viewport body{margin:0;padding:0;border:0 none;overflow:hidden;height:100%;position:static}.x-window{outline:0;overflow:hidden}.x-window .x-window-wrap{position:relative}.x-window-body{position:relative;overflow:hidden}.x-window-body-plain{background:transparent}.x-form-item-label{display:block}.x-form-item-label-right{text-align:right}.x-form-item-label-top{display:block;zoom:1}.x-form-invalid-icon{overflow:hidden}.x-form-invalid-icon ul{display:none}.x-form-textarea{overflow:auto;resize:none}.x-safari.x-mac .x-form-textarea{margin-bottom:-2px}.x-form-display-field-body{vertical-align:top}.x-form-cb-wrap{vertical-align:top}.x-form-cb{vertical-align:top;overflow:hidden;padding:0;border:0}.x-form-cb::-moz-focus-inner{padding:0;border:0}.x-form-cb-label{display:inline-block;zoom:1}.x-fieldset{display:block;position:relative}.x-fieldset-header{overflow:hidden}.x-fieldset-header .x-form-item,.x-fieldset-header .x-tool{float:left}.x-fieldset-header .x-form-cb-wrap{font-size:0;line-height:0}.x-fieldset-header .x-form-cb{margin:0}.x-fieldset-header-text{float:left}.x-webkit *:focus{outline:none!important}.x-form-item{vertical-align:top;table-layout:fixed}.x-form-item-body{position:relative}.x-form-form-item td{border-top:1px solid transparent}.x-form-trigger{cursor:pointer;overflow:hidden;background-repeat:no-repeat}.x-item-disabled .x-form-trigger{cursor:default}.x-trigger-noedit{cursor:default}.x-form-trigger-wrap{vertical-align:top;border-collapse:separate}.x-form-spinner-up,.x-form-spinner-down{font-size:0}.x-datepicker{position:relative}.x-datepicker-inner{table-layout:fixed;width:100%;border-collapse:separate}.x-datepicker-cell{padding:0}.x-datepicker-header{position:relative;zoom:1}.x-datepicker-arrow{position:absolute;outline:0;font-size:0}.x-datepicker-column-header{padding:0}.x-datepicker-date{display:block;zoom:1;text-decoration:none}.x-monthpicker{position:absolute;left:0;top:0}.x-monthpicker-body{height:100%}.x-monthpicker-months,.x-monthpicker-years{float:left;height:100%}.x-monthpicker-item{float:left}.x-monthpicker-item-inner{display:block;text-decoration:none}.x-monthpicker-yearnav-button-ct{float:left;text-align:center}.x-monthpicker-yearnav-button{display:inline-block;outline:0;font-size:0}.x-monthpicker-buttons{position:absolute;bottom:0;width:100%}.x-strict .x-ie6 .x-monthpicker-buttons{bottom:-1px}.x-form-file-btn{overflow:hidden}.x-form-file-input{border:0;position:absolute;cursor:pointer;top:-2px;right:-2px;filter:alpha(opacity=0);opacity:0;font-size:1000px}.x-form-item-hidden{margin:0}.x-color-picker-item{float:left;text-decoration:none}.x-color-picker-item-inner{display:block;font-size:1px}.x-html-editor-tb .x-toolbar{position:static!important}.x-htmleditor-iframe{display:block;overflow:auto}.x-fit-item{position:relative}.x-grid-row,.x-grid-data-row{outline:0}.x-grid-view{overflow:hidden;position:relative}.x-grid-table{table-layout:fixed;border-collapse:separate}.x-grid-td{overflow:hidden;border-width:0;vertical-align:top}.x-grid-cell-inner{overflow:hidden;white-space:nowrap;zoom:1}.x-grid-resize-marker{position:absolute;z-index:5;top:0}.col-move-top,.col-move-bottom{position:absolute;top:0;line-height:0;font-size:0;overflow:hidden;z-index:20000;background:no-repeat center top transparent}.x-grid-header-ct{cursor:default}.x-column-header{position:absolute;overflow:hidden;background-repeat:repeat-x}.x-column-header-inner{zoom:1;white-space:nowrap;position:relative;overflow:hidden}.x-column-header-text{white-space:nowrap;background-repeat:no-repeat;zoom:1;display:inline-block}.x-column-header-trigger{display:none;height:100%;background-repeat:no-repeat;position:absolute;right:0;top:0;z-index:2}.x-column-header-over .x-column-header-trigger,.x-column-header-open .x-column-header-trigger{display:block}.x-column-header-align-right{text-align:right}.x-column-header-align-left{text-align:left}.x-column-header-align-center{text-align:center}.x-grid-cell-inner-action-col{line-height:0;font-size:0}.x-grid-cell-inner-checkcolumn{line-height:0;font-size:0}.x-row-numberer .x-column-header-inner{text-overflow:clip}.x-grid-group,.x-grid-group-body,.x-grid-group-hd{zoom:1}.x-grid-group-hd{white-space:nowrap}.x-grid-row-body-hidden,.x-grid-group-collapsed{display:none}.x-grid-rowbody{zoom:1}.x-grid-row-body-hidden{display:none}td.x-grid-rowwrap .x-grid-table{border:0}td.x-grid-rowwrap .x-grid-cell{border-bottom:0;background-color:transparent}.x-grid-editor .x-form-cb-wrap{text-align:center}.x-grid-editor .x-form-display-field{margin:0;white-space:nowrap;overflow:hidden}.x-grid-editor div.x-form-action-col-field{line-height:0}.x-grid-row-editor{position:absolute;overflow:visible;z-index:1}.x-grid-row-editor-buttons{position:absolute;white-space:nowrap}.x-grid-row-expander{font-size:0;line-height:0}.x-abs-layout-ct{position:relative}.x-abs-layout-item{position:absolute!important}.x-splitter{font-size:1px}.x-splitter-horizontal{cursor:e-resize;cursor:row-resize}.x-splitter-vertical{cursor:e-resize;cursor:col-resize}.x-splitter-collapsed,.x-splitter-horizontal-noresize,.x-splitter-vertical-noresize{cursor:default}.x-splitter-active{z-index:4}.x-collapse-el{position:absolute;background-repeat:no-repeat}.x-border-layout-ct{overflow:hidden;zoom:1}.x-border-layout-ct{position:relative}.x-border-region-slide-in{z-index:5}.x-region-collapsed-placeholder{z-index:4}.x-column{float:left}.x-ie6 .x-column{display:inline}.x-quirks .x-ie .x-form-layout-table,.x-quirks .x-ie .x-form-layout-table tbody tr.x-form-item{position:relative}.x-form-layout-table{border-collapse:separate;border-spacing:0 2px}.x-ie6 .x-form-layout-table{border-collapse:collapse;border-spacing:0}.x-menu{outline:0}.x-menu-item{white-space:nowrap;overflow:hidden}.x-menu-item-cmp{margin:2px}.x-menu-item-cmp .x-field-label-cell{vertical-align:middle}.x-menu-icon-separator{position:absolute;top:0;z-index:0;height:100%;overflow:hidden}.x-menu-plain .x-menu-icon-separator{display:none}.x-menu-item-link{text-decoration:none;outline:0;zoom:1}.x-menu-item-text{zoom:1}.x-menu-item-icon,.x-menu-item-icon-right,.x-menu-item-arrow{position:absolute;text-align:center}.x-resizable-overlay{position:absolute;left:0;top:0;width:100%;height:100%;display:none;z-index:200000;background-color:#fff;filter:alpha(opacity=0);opacity:0}.x-slider{outline:0;zoom:1;position:relative}.x-slider-inner{position:relative;left:0;top:0;overflow:visible;zoom:1}.x-slider-vert .x-slider-inner{background:repeat-y 0 0}.x-slider-end{zoom:1}.x-slider-thumb{position:absolute;background:no-repeat 0 0}.x-slider-horz .x-slider-thumb{left:0}.x-slider-vert .x-slider-thumb{bottom:0}a.x-tab{text-decoration:none}.x-tab-bar{position:relative}.x-column-header-checkbox .x-column-header-text{display:block;background-repeat:no-repeat;font-size:0}.x-grid-cell-row-checker{vertical-align:middle;background-repeat:no-repeat;font-size:0}.x-tab{display:block;white-space:nowrap;z-index:1}.x-tab-active{z-index:3}.x-tab-wrap{display:block;position:relative}.x-tab-button{zoom:1;display:block;outline:0}.x-tab-inner{display:block;text-align:center;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis;overflow:hidden;zoom:1}.x-btn-icon-el{top:0;right:0;bottom:0;left:0;position:absolute;background-repeat:no-repeat;text-align:center}.x-tab-bar{z-index:1}.x-tab-bar-body{z-index:2;position:relative}.x-tab-bar-strip{position:absolute;line-height:0;font-size:0;z-index:1}.x-tab-bar-horizontal .x-tab-bar-strip{width:100%;left:0}.x-tab-bar-vertical .x-tab-bar-strip{height:100%;top:0}.x-tab-bar-strip-top{bottom:0}.x-tab-bar-strip-bottom{top:0}.x-tab-bar-strip-left{right:0}.x-tab-bar-strip-right{left:0}.x-tab-bar-plain{background:transparent!important}.x-tab-icon-el{position:absolute;background-repeat:no-repeat;top:0;left:0;right:auto;bottom:0}.x-tab-close-btn{display:block;position:absolute;font-size:0;line-height:0;background:no-repeat}.x-tab-mc{overflow:visible}.x-autowidth-table .x-grid-table{table-layout:auto;width:auto!important}.x-tree-view{overflow:hidden}.x-tree-elbow-img,.x-tree-icon{background-repeat:no-repeat;background-position:0 center;vertical-align:top}.x-tree-checkbox{border:0;padding:0;vertical-align:top;position:relative;background-color:transparent}.x-tree-animator-wrap{overflow:hidden}.x-tree-node-text{zoom:1}.x-surface{display:-moz-inline-stack;display:inline-block;vertical-align:middle;*vertical-align:auto;zoom:1;*display:inline;overflow:hidden}.rvml{behavior:url(#default#VML)}.x-surface tspan{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:-moz-none;-webkit-user-select:none;cursor:default}.x-vml-sprite{position:absolute;left:0;top:0;width:1px;height:1px}.x-vml-group{position:absolute;left:0;top:0;width:1000px;height:1000px}.x-vml-measure-span{position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;display:inline}.x-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}.x-vml-base{position:relative;top:0;left:0;overflow:hidden;display:inline-block}svg,vml{overflow:hidden}.x-body{color:black;font-size:13px;font-family:helvetica,arial,verdana,sans-serif;background:#f5f5f5}.x-animating-size,.x-collapsed{overflow:hidden!important}.x-editor .x-form-item-body{padding-bottom:0}.x-focus-element{position:absolute;top:-10px;left:-10px;width:0;height:0}.x-focus-frame{position:absolute;left:0;top:0;z-index:100000000;width:0;height:0}.x-focus-frame-top,.x-focus-frame-bottom,.x-focus-frame-left,.x-focus-frame-right{position:absolute;top:0;left:0}.x-focus-frame-top,.x-focus-frame-bottom{border-top:solid 2px #15428b;height:2px}.x-focus-frame-left,.x-focus-frame-right{border-left:solid 2px #15428b;width:2px}.x-mask{filter:alpha(opacity=70);opacity:.7;background:white}.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-image:none;background-color:#e5e5e5}.x-mask-msg-inner{padding:0;background-color:transparent;color:#666;font:normal 13px helvetica,arial,verdana,sans-serif}.x-mask-msg-text{padding:21px 0 0;background-image:url(images/loadmask/loading.gif);background-repeat:no-repeat;background-position:center 0}.x-progress-default{background-color:#f5f5f5;border-width:0;height:20px;border-color:#157fcc}.x-content-box .x-progress-default{height:20px}.x-progress-default .x-progress-bar-default{background-image:none;background-color:#c1ddf1}.x-progress-default .x-progress-text{color:#666;font-weight:bold;font-size:13px;text-align:center;line-height:20px}.x-progress-default .x-progress-text-back{color:#666;line-height:20px}.x-btn-default-small{border-color:#126daf}.x-btn-default-small{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#3892d3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4b9cd7),color-stop(50%,#3892d3),color-stop(51%,#358ac8),color-stop(100%,#3892d3));background-image:-webkit-linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3);background-image:-moz-linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3);background-image:-o-linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3);background-image:linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3)}.x-btn-default-small-mc{background-image:url(images/btn/btn-default-small-fbg.gif);background-position:0 top;background-color:#3892d3}.x-nlg .x-btn-default-small{background-image:url(images/btn/btn-default-small-bg.gif);background-position:0 top}.x-nbr .x-btn-default-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-small-tl{background-position:0 -6px}.x-btn-default-small-tr{background-position:right -9px}.x-btn-default-small-bl{background-position:0 -12px}.x-btn-default-small-br{background-position:right -15px}.x-btn-default-small-ml{background-position:0 top}.x-btn-default-small-mr{background-position:right top}.x-btn-default-small-tc{background-position:0 0}.x-btn-default-small-bc{background-position:0 -3px}.x-btn-default-small-tr,.x-btn-default-small-br,.x-btn-default-small-mr{padding-right:3px}.x-btn-default-small-tl,.x-btn-default-small-bl,.x-btn-default-small-ml{padding-left:3px}.x-btn-default-small-tc{height:3px}.x-btn-default-small-bc{height:3px}.x-btn-default-small-tl,.x-btn-default-small-bl,.x-btn-default-small-tr,.x-btn-default-small-br,.x-btn-default-small-tc,.x-btn-default-small-bc,.x-btn-default-small-ml,.x-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-corners.gif)}.x-btn-default-small-ml,.x-btn-default-small-mr{zoom:1;background-image:url(images/btn/btn-default-small-sides.gif)}.x-btn-default-small-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-small-tl,.x-strict .x-ie7 .x-btn-default-small-bl{position:relative;right:0}.x-btn-default-small:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-small-fbg.gif), bg:url(images/btn/btn-default-small-bg.gif), corners:url(images/btn/btn-default-small-corners.gif), sides:url(images/btn/btn-default-small-sides.gif)"}.x-btn-default-small .x-btn-inner{font-size:12px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;color:white;padding:0 5px}.x-btn-default-small .x-btn-arrow{background-image:url(images/button/default-small-arrow.png)}.x-btn-default-small .x-btn-arrow-right{padding-right:21px}.x-btn-default-small .x-btn-arrow-bottom{padding-bottom:18px}.x-btn-default-small .x-btn-glyph{font-size:16px;line-height:16px;color:white;opacity:.5}.x-ie8m .x-btn-default-small .x-btn-glyph{color:#9bc8e9}.x-btn-default-small-disabled{border-color:#157fcc}.x-btn-default-small-icon .x-btn-button,.x-btn-default-small-noicon .x-btn-button{height:16px}.x-btn-default-small-icon .x-btn-inner,.x-btn-default-small-noicon .x-btn-inner{line-height:16px}.x-btn-default-small-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-small-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-small-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-small-icon .x-btn-inner{width:16px;padding:0}.x-btn-default-small-icon .x-btn-icon-el{width:16px;height:16px}.x-btn-default-small-icon-text-left .x-btn-button{height:16px}.x-btn-default-small-icon-text-left .x-btn-inner{line-height:16px;padding-left:21px}.x-btn-default-small-icon-text-left .x-btn-icon-el{width:16px;right:auto}.x-ie6 .x-btn-default-small-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-small-icon-text-left .x-btn-icon-el{height:16px}.x-btn-default-small-icon-text-right .x-btn-button{height:16px}.x-btn-default-small-icon-text-right .x-btn-inner{line-height:16px;padding-right:21px}.x-btn-default-small-icon-text-right .x-btn-icon-el{width:16px;left:auto}.x-ie6 .x-btn-default-small-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-small-icon-text-right .x-btn-icon-el{height:16px}.x-btn-default-small-icon-text-top .x-btn-inner{padding-top:21px}.x-btn-default-small-icon-text-top .x-btn-icon-el{height:16px;bottom:auto}.x-ie6 .x-btn-default-small-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-small-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-small-icon-text-bottom .x-btn-inner{padding-bottom:21px}.x-btn-default-small-icon-text-bottom .x-btn-icon-el{height:16px;top:auto}.x-ie6 .x-btn-default-small-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-small-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-small-over{border-color:#157fcc;background-image:none;background-color:#3386c2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4792c8),color-stop(50%,#3386c2),color-stop(51%,#307fb8),color-stop(100%,#3386c2));background-image:-webkit-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-moz-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-o-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2)}.x-btn-default-small-focus{border-color:#157fcc;background-image:none;background-color:#3386c2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4792c8),color-stop(50%,#3386c2),color-stop(51%,#307fb8),color-stop(100%,#3386c2));background-image:-webkit-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-moz-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-o-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2)}.x-btn-default-small-menu-active,.x-btn-default-small-pressed{border-color:#157fcc;background-image:none;background-color:#2a6d9e;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#2a6d9e),color-stop(50%,#276796),color-stop(51%,#2a6d9e),color-stop(100%,#3f7ba7));background-image:-webkit-linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7);background-image:-moz-linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7);background-image:-o-linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7);background-image:linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7)}.x-btn-default-small-over .x-frame-tl,.x-btn-default-small-over .x-frame-bl,.x-btn-default-small-over .x-frame-tr,.x-btn-default-small-over .x-frame-br,.x-btn-default-small-over .x-frame-tc,.x-btn-default-small-over .x-frame-bc{background-image:url(images/btn/btn-default-small-over-corners.gif)}.x-btn-default-small-over .x-frame-ml,.x-btn-default-small-over .x-frame-mr{background-image:url(images/btn/btn-default-small-over-sides.gif)}.x-btn-default-small-over .x-frame-mc{background-color:#3386c2;background-image:url(images/btn/btn-default-small-over-fbg.gif)}.x-btn-default-small-focus .x-frame-tl,.x-btn-default-small-focus .x-frame-bl,.x-btn-default-small-focus .x-frame-tr,.x-btn-default-small-focus .x-frame-br,.x-btn-default-small-focus .x-frame-tc,.x-btn-default-small-focus .x-frame-bc{background-image:url(images/btn/btn-default-small-focus-corners.gif)}.x-btn-default-small-focus .x-frame-ml,.x-btn-default-small-focus .x-frame-mr{background-image:url(images/btn/btn-default-small-focus-sides.gif)}.x-btn-default-small-focus .x-frame-mc{background-color:#3386c2;background-image:url(images/btn/btn-default-small-focus-fbg.gif)}.x-btn-default-small-menu-active .x-frame-tl,.x-btn-default-small-menu-active .x-frame-bl,.x-btn-default-small-menu-active .x-frame-tr,.x-btn-default-small-menu-active .x-frame-br,.x-btn-default-small-menu-active .x-frame-tc,.x-btn-default-small-menu-active .x-frame-bc,.x-btn-default-small-pressed .x-frame-tl,.x-btn-default-small-pressed .x-frame-bl,.x-btn-default-small-pressed .x-frame-tr,.x-btn-default-small-pressed .x-frame-br,.x-btn-default-small-pressed .x-frame-tc,.x-btn-default-small-pressed .x-frame-bc{background-image:url(images/btn/btn-default-small-pressed-corners.gif)}.x-btn-default-small-menu-active .x-frame-ml,.x-btn-default-small-menu-active .x-frame-mr,.x-btn-default-small-pressed .x-frame-ml,.x-btn-default-small-pressed .x-frame-mr{background-image:url(images/btn/btn-default-small-pressed-sides.gif)}.x-btn-default-small-menu-active .x-frame-mc,.x-btn-default-small-pressed .x-frame-mc{background-color:#2a6d9e;background-image:url(images/btn/btn-default-small-pressed-fbg.gif)}.x-btn-default-small-disabled .x-frame-tl,.x-btn-default-small-disabled .x-frame-bl,.x-btn-default-small-disabled .x-frame-tr,.x-btn-default-small-disabled .x-frame-br,.x-btn-default-small-disabled .x-frame-tc,.x-btn-default-small-disabled .x-frame-bc{background-image:url(images/btn/btn-default-small-disabled-corners.gif)}.x-btn-default-small-disabled .x-frame-ml,.x-btn-default-small-disabled .x-frame-mr{background-image:url(images/btn/btn-default-small-disabled-sides.gif)}.x-btn-default-small-disabled .x-frame-mc{background-color:null;background-image:url(images/btn/btn-default-small-disabled-fbg.gif)}.x-nlg .x-btn-default-small-over{background-image:url(images/btn/btn-default-small-over-bg.gif)}.x-nlg .x-btn-default-small-focus{background-image:url(images/btn/btn-default-small-focus-bg.gif)}.x-nlg .x-btn-default-small-menu-active,.x-nlg .x-btn-default-small-pressed{background-image:url(images/btn/btn-default-small-pressed-bg.gif)}.x-nlg .x-btn-default-small-disabled{background-image:url(images/btn/btn-default-small-disabled-bg.gif)}.x-nbr .x-btn-default-small{background-image:none}.x-btn-default-small .x-btn-split-right{background-image:url(images/button/default-small-s-arrow.png);padding-right:23px}.x-btn-default-small .x-btn-split-bottom{background-image:url(images/button/default-small-s-arrow-b.png);padding-bottom:20px}.x-btn-default-small-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-over-corners.gif), sides:url(images/btn/btn-default-small-over-sides.gif), frame-bg:url(images/btn/btn-default-small-over-fbg.gif), bg:url(images/btn/btn-default-small-over-bg.gif)"}.x-btn-default-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-focus-corners.gif), sides:url(images/btn/btn-default-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-small-focus-fbg.gif), bg:url(images/btn/btn-default-small-focus-bg.gif)"}.x-btn-default-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-pressed-corners.gif), sides:url(images/btn/btn-default-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-small-pressed-fbg.gif), bg:url(images/btn/btn-default-small-pressed-bg.gif)"}.x-btn-default-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-small-disabled-corners.gif), sides:url(images/btn/btn-default-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-small-disabled-fbg.gif), bg:url(images/btn/btn-default-small-disabled-bg.gif)"}.x-btn-default-medium{border-color:#126daf}.x-btn-default-medium{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#3892d3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4b9cd7),color-stop(50%,#3892d3),color-stop(51%,#358ac8),color-stop(100%,#3892d3));background-image:-webkit-linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3);background-image:-moz-linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3);background-image:-o-linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3);background-image:linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3)}.x-btn-default-medium-mc{background-image:url(images/btn/btn-default-medium-fbg.gif);background-position:0 top;background-color:#3892d3}.x-nlg .x-btn-default-medium{background-image:url(images/btn/btn-default-medium-bg.gif);background-position:0 top}.x-nbr .x-btn-default-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-medium-tl{background-position:0 -6px}.x-btn-default-medium-tr{background-position:right -9px}.x-btn-default-medium-bl{background-position:0 -12px}.x-btn-default-medium-br{background-position:right -15px}.x-btn-default-medium-ml{background-position:0 top}.x-btn-default-medium-mr{background-position:right top}.x-btn-default-medium-tc{background-position:0 0}.x-btn-default-medium-bc{background-position:0 -3px}.x-btn-default-medium-tr,.x-btn-default-medium-br,.x-btn-default-medium-mr{padding-right:3px}.x-btn-default-medium-tl,.x-btn-default-medium-bl,.x-btn-default-medium-ml{padding-left:3px}.x-btn-default-medium-tc{height:3px}.x-btn-default-medium-bc{height:3px}.x-btn-default-medium-tl,.x-btn-default-medium-bl,.x-btn-default-medium-tr,.x-btn-default-medium-br,.x-btn-default-medium-tc,.x-btn-default-medium-bc,.x-btn-default-medium-ml,.x-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-corners.gif)}.x-btn-default-medium-ml,.x-btn-default-medium-mr{zoom:1;background-image:url(images/btn/btn-default-medium-sides.gif)}.x-btn-default-medium-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-medium-tl,.x-strict .x-ie7 .x-btn-default-medium-bl{position:relative;right:0}.x-btn-default-medium:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-medium-fbg.gif), bg:url(images/btn/btn-default-medium-bg.gif), corners:url(images/btn/btn-default-medium-corners.gif), sides:url(images/btn/btn-default-medium-sides.gif)"}.x-btn-default-medium .x-btn-inner{font-size:14px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;color:white;padding:0 8px}.x-btn-default-medium .x-btn-arrow{background-image:url(images/button/default-medium-arrow.png)}.x-btn-default-medium .x-btn-arrow-right{padding-right:30px}.x-btn-default-medium .x-btn-arrow-bottom{padding-bottom:26px}.x-btn-default-medium .x-btn-glyph{font-size:24px;line-height:24px;color:white;opacity:.5}.x-ie8m .x-btn-default-medium .x-btn-glyph{color:#9bc8e9}.x-btn-default-medium-disabled{border-color:#157fcc}.x-btn-default-medium-icon .x-btn-button,.x-btn-default-medium-noicon .x-btn-button{height:24px}.x-btn-default-medium-icon .x-btn-inner,.x-btn-default-medium-noicon .x-btn-inner{line-height:24px}.x-btn-default-medium-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-medium-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-medium-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-medium-icon .x-btn-inner{width:24px;padding:0}.x-btn-default-medium-icon .x-btn-icon-el{width:24px;height:24px}.x-btn-default-medium-icon-text-left .x-btn-button{height:24px}.x-btn-default-medium-icon-text-left .x-btn-inner{line-height:24px;padding-left:29px}.x-btn-default-medium-icon-text-left .x-btn-icon-el{width:24px;right:auto}.x-ie6 .x-btn-default-medium-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-medium-icon-text-left .x-btn-icon-el{height:24px}.x-btn-default-medium-icon-text-right .x-btn-button{height:24px}.x-btn-default-medium-icon-text-right .x-btn-inner{line-height:24px;padding-right:29px}.x-btn-default-medium-icon-text-right .x-btn-icon-el{width:24px;left:auto}.x-ie6 .x-btn-default-medium-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-medium-icon-text-right .x-btn-icon-el{height:24px}.x-btn-default-medium-icon-text-top .x-btn-inner{padding-top:29px}.x-btn-default-medium-icon-text-top .x-btn-icon-el{height:24px;bottom:auto}.x-ie6 .x-btn-default-medium-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-medium-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-medium-icon-text-bottom .x-btn-inner{padding-bottom:29px}.x-btn-default-medium-icon-text-bottom .x-btn-icon-el{height:24px;top:auto}.x-ie6 .x-btn-default-medium-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-medium-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-medium-over{border-color:#157fcc;background-image:none;background-color:#3386c2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4792c8),color-stop(50%,#3386c2),color-stop(51%,#307fb8),color-stop(100%,#3386c2));background-image:-webkit-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-moz-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-o-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2)}.x-btn-default-medium-focus{border-color:#157fcc;background-image:none;background-color:#3386c2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4792c8),color-stop(50%,#3386c2),color-stop(51%,#307fb8),color-stop(100%,#3386c2));background-image:-webkit-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-moz-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-o-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2)}.x-btn-default-medium-menu-active,.x-btn-default-medium-pressed{border-color:#157fcc;background-image:none;background-color:#2a6d9e;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#2a6d9e),color-stop(50%,#276796),color-stop(51%,#2a6d9e),color-stop(100%,#3f7ba7));background-image:-webkit-linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7);background-image:-moz-linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7);background-image:-o-linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7);background-image:linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7)}.x-btn-default-medium-over .x-frame-tl,.x-btn-default-medium-over .x-frame-bl,.x-btn-default-medium-over .x-frame-tr,.x-btn-default-medium-over .x-frame-br,.x-btn-default-medium-over .x-frame-tc,.x-btn-default-medium-over .x-frame-bc{background-image:url(images/btn/btn-default-medium-over-corners.gif)}.x-btn-default-medium-over .x-frame-ml,.x-btn-default-medium-over .x-frame-mr{background-image:url(images/btn/btn-default-medium-over-sides.gif)}.x-btn-default-medium-over .x-frame-mc{background-color:#3386c2;background-image:url(images/btn/btn-default-medium-over-fbg.gif)}.x-btn-default-medium-focus .x-frame-tl,.x-btn-default-medium-focus .x-frame-bl,.x-btn-default-medium-focus .x-frame-tr,.x-btn-default-medium-focus .x-frame-br,.x-btn-default-medium-focus .x-frame-tc,.x-btn-default-medium-focus .x-frame-bc{background-image:url(images/btn/btn-default-medium-focus-corners.gif)}.x-btn-default-medium-focus .x-frame-ml,.x-btn-default-medium-focus .x-frame-mr{background-image:url(images/btn/btn-default-medium-focus-sides.gif)}.x-btn-default-medium-focus .x-frame-mc{background-color:#3386c2;background-image:url(images/btn/btn-default-medium-focus-fbg.gif)}.x-btn-default-medium-menu-active .x-frame-tl,.x-btn-default-medium-menu-active .x-frame-bl,.x-btn-default-medium-menu-active .x-frame-tr,.x-btn-default-medium-menu-active .x-frame-br,.x-btn-default-medium-menu-active .x-frame-tc,.x-btn-default-medium-menu-active .x-frame-bc,.x-btn-default-medium-pressed .x-frame-tl,.x-btn-default-medium-pressed .x-frame-bl,.x-btn-default-medium-pressed .x-frame-tr,.x-btn-default-medium-pressed .x-frame-br,.x-btn-default-medium-pressed .x-frame-tc,.x-btn-default-medium-pressed .x-frame-bc{background-image:url(images/btn/btn-default-medium-pressed-corners.gif)}.x-btn-default-medium-menu-active .x-frame-ml,.x-btn-default-medium-menu-active .x-frame-mr,.x-btn-default-medium-pressed .x-frame-ml,.x-btn-default-medium-pressed .x-frame-mr{background-image:url(images/btn/btn-default-medium-pressed-sides.gif)}.x-btn-default-medium-menu-active .x-frame-mc,.x-btn-default-medium-pressed .x-frame-mc{background-color:#2a6d9e;background-image:url(images/btn/btn-default-medium-pressed-fbg.gif)}.x-btn-default-medium-disabled .x-frame-tl,.x-btn-default-medium-disabled .x-frame-bl,.x-btn-default-medium-disabled .x-frame-tr,.x-btn-default-medium-disabled .x-frame-br,.x-btn-default-medium-disabled .x-frame-tc,.x-btn-default-medium-disabled .x-frame-bc{background-image:url(images/btn/btn-default-medium-disabled-corners.gif)}.x-btn-default-medium-disabled .x-frame-ml,.x-btn-default-medium-disabled .x-frame-mr{background-image:url(images/btn/btn-default-medium-disabled-sides.gif)}.x-btn-default-medium-disabled .x-frame-mc{background-color:null;background-image:url(images/btn/btn-default-medium-disabled-fbg.gif)}.x-nlg .x-btn-default-medium-over{background-image:url(images/btn/btn-default-medium-over-bg.gif)}.x-nlg .x-btn-default-medium-focus{background-image:url(images/btn/btn-default-medium-focus-bg.gif)}.x-nlg .x-btn-default-medium-menu-active,.x-nlg .x-btn-default-medium-pressed{background-image:url(images/btn/btn-default-medium-pressed-bg.gif)}.x-nlg .x-btn-default-medium-disabled{background-image:url(images/btn/btn-default-medium-disabled-bg.gif)}.x-nbr .x-btn-default-medium{background-image:none}.x-btn-default-medium .x-btn-split-right{background-image:url(images/button/default-medium-s-arrow.png);padding-right:32px}.x-btn-default-medium .x-btn-split-bottom{background-image:url(images/button/default-medium-s-arrow-b.png);padding-bottom:28px}.x-btn-default-medium-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-over-corners.gif), sides:url(images/btn/btn-default-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-medium-over-fbg.gif), bg:url(images/btn/btn-default-medium-over-bg.gif)"}.x-btn-default-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-focus-corners.gif), sides:url(images/btn/btn-default-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-medium-focus-fbg.gif), bg:url(images/btn/btn-default-medium-focus-bg.gif)"}.x-btn-default-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-pressed-corners.gif), sides:url(images/btn/btn-default-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-medium-pressed-bg.gif)"}.x-btn-default-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-medium-disabled-corners.gif), sides:url(images/btn/btn-default-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-medium-disabled-bg.gif)"}.x-btn-default-large{border-color:#126daf}.x-btn-default-large{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#3892d3;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4b9cd7),color-stop(50%,#3892d3),color-stop(51%,#358ac8),color-stop(100%,#3892d3));background-image:-webkit-linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3);background-image:-moz-linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3);background-image:-o-linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3);background-image:linear-gradient(top,#4b9cd7,#3892d3 50%,#358ac8 51%,#3892d3)}.x-btn-default-large-mc{background-image:url(images/btn/btn-default-large-fbg.gif);background-position:0 top;background-color:#3892d3}.x-nlg .x-btn-default-large{background-image:url(images/btn/btn-default-large-bg.gif);background-position:0 top}.x-nbr .x-btn-default-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-large-tl{background-position:0 -6px}.x-btn-default-large-tr{background-position:right -9px}.x-btn-default-large-bl{background-position:0 -12px}.x-btn-default-large-br{background-position:right -15px}.x-btn-default-large-ml{background-position:0 top}.x-btn-default-large-mr{background-position:right top}.x-btn-default-large-tc{background-position:0 0}.x-btn-default-large-bc{background-position:0 -3px}.x-btn-default-large-tr,.x-btn-default-large-br,.x-btn-default-large-mr{padding-right:3px}.x-btn-default-large-tl,.x-btn-default-large-bl,.x-btn-default-large-ml{padding-left:3px}.x-btn-default-large-tc{height:3px}.x-btn-default-large-bc{height:3px}.x-btn-default-large-tl,.x-btn-default-large-bl,.x-btn-default-large-tr,.x-btn-default-large-br,.x-btn-default-large-tc,.x-btn-default-large-bc,.x-btn-default-large-ml,.x-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-corners.gif)}.x-btn-default-large-ml,.x-btn-default-large-mr{zoom:1;background-image:url(images/btn/btn-default-large-sides.gif)}.x-btn-default-large-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-large-tl,.x-strict .x-ie7 .x-btn-default-large-bl{position:relative;right:0}.x-btn-default-large:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-large-fbg.gif), bg:url(images/btn/btn-default-large-bg.gif), corners:url(images/btn/btn-default-large-corners.gif), sides:url(images/btn/btn-default-large-sides.gif)"}.x-btn-default-large .x-btn-inner{font-size:16px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;color:white;padding:0 10px}.x-btn-default-large .x-btn-arrow{background-image:url(images/button/default-large-arrow.png)}.x-btn-default-large .x-btn-arrow-right{padding-right:36px}.x-btn-default-large .x-btn-arrow-bottom{padding-bottom:32px}.x-btn-default-large .x-btn-glyph{font-size:32px;line-height:32px;color:white;opacity:.5}.x-ie8m .x-btn-default-large .x-btn-glyph{color:#9bc8e9}.x-btn-default-large-disabled{border-color:#157fcc}.x-btn-default-large-icon .x-btn-button,.x-btn-default-large-noicon .x-btn-button{height:32px}.x-btn-default-large-icon .x-btn-inner,.x-btn-default-large-noicon .x-btn-inner{line-height:32px}.x-btn-default-large-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-large-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-large-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-large-icon .x-btn-inner{width:32px;padding:0}.x-btn-default-large-icon .x-btn-icon-el{width:32px;height:32px}.x-btn-default-large-icon-text-left .x-btn-button{height:32px}.x-btn-default-large-icon-text-left .x-btn-inner{line-height:32px;padding-left:37px}.x-btn-default-large-icon-text-left .x-btn-icon-el{width:32px;right:auto}.x-ie6 .x-btn-default-large-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-large-icon-text-left .x-btn-icon-el{height:32px}.x-btn-default-large-icon-text-right .x-btn-button{height:32px}.x-btn-default-large-icon-text-right .x-btn-inner{line-height:32px;padding-right:37px}.x-btn-default-large-icon-text-right .x-btn-icon-el{width:32px;left:auto}.x-ie6 .x-btn-default-large-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-large-icon-text-right .x-btn-icon-el{height:32px}.x-btn-default-large-icon-text-top .x-btn-inner{padding-top:37px}.x-btn-default-large-icon-text-top .x-btn-icon-el{height:32px;bottom:auto}.x-ie6 .x-btn-default-large-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-large-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-large-icon-text-bottom .x-btn-inner{padding-bottom:37px}.x-btn-default-large-icon-text-bottom .x-btn-icon-el{height:32px;top:auto}.x-ie6 .x-btn-default-large-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-large-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-large-over{border-color:#157fcc;background-image:none;background-color:#3386c2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4792c8),color-stop(50%,#3386c2),color-stop(51%,#307fb8),color-stop(100%,#3386c2));background-image:-webkit-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-moz-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-o-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2)}.x-btn-default-large-focus{border-color:#157fcc;background-image:none;background-color:#3386c2;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#4792c8),color-stop(50%,#3386c2),color-stop(51%,#307fb8),color-stop(100%,#3386c2));background-image:-webkit-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-moz-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:-o-linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2);background-image:linear-gradient(top,#4792c8,#3386c2 50%,#307fb8 51%,#3386c2)}.x-btn-default-large-menu-active,.x-btn-default-large-pressed{border-color:#157fcc;background-image:none;background-color:#2a6d9e;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#2a6d9e),color-stop(50%,#276796),color-stop(51%,#2a6d9e),color-stop(100%,#3f7ba7));background-image:-webkit-linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7);background-image:-moz-linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7);background-image:-o-linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7);background-image:linear-gradient(top,#2a6d9e,#276796 50%,#2a6d9e 51%,#3f7ba7)}.x-btn-default-large-over .x-frame-tl,.x-btn-default-large-over .x-frame-bl,.x-btn-default-large-over .x-frame-tr,.x-btn-default-large-over .x-frame-br,.x-btn-default-large-over .x-frame-tc,.x-btn-default-large-over .x-frame-bc{background-image:url(images/btn/btn-default-large-over-corners.gif)}.x-btn-default-large-over .x-frame-ml,.x-btn-default-large-over .x-frame-mr{background-image:url(images/btn/btn-default-large-over-sides.gif)}.x-btn-default-large-over .x-frame-mc{background-color:#3386c2;background-image:url(images/btn/btn-default-large-over-fbg.gif)}.x-btn-default-large-focus .x-frame-tl,.x-btn-default-large-focus .x-frame-bl,.x-btn-default-large-focus .x-frame-tr,.x-btn-default-large-focus .x-frame-br,.x-btn-default-large-focus .x-frame-tc,.x-btn-default-large-focus .x-frame-bc{background-image:url(images/btn/btn-default-large-focus-corners.gif)}.x-btn-default-large-focus .x-frame-ml,.x-btn-default-large-focus .x-frame-mr{background-image:url(images/btn/btn-default-large-focus-sides.gif)}.x-btn-default-large-focus .x-frame-mc{background-color:#3386c2;background-image:url(images/btn/btn-default-large-focus-fbg.gif)}.x-btn-default-large-menu-active .x-frame-tl,.x-btn-default-large-menu-active .x-frame-bl,.x-btn-default-large-menu-active .x-frame-tr,.x-btn-default-large-menu-active .x-frame-br,.x-btn-default-large-menu-active .x-frame-tc,.x-btn-default-large-menu-active .x-frame-bc,.x-btn-default-large-pressed .x-frame-tl,.x-btn-default-large-pressed .x-frame-bl,.x-btn-default-large-pressed .x-frame-tr,.x-btn-default-large-pressed .x-frame-br,.x-btn-default-large-pressed .x-frame-tc,.x-btn-default-large-pressed .x-frame-bc{background-image:url(images/btn/btn-default-large-pressed-corners.gif)}.x-btn-default-large-menu-active .x-frame-ml,.x-btn-default-large-menu-active .x-frame-mr,.x-btn-default-large-pressed .x-frame-ml,.x-btn-default-large-pressed .x-frame-mr{background-image:url(images/btn/btn-default-large-pressed-sides.gif)}.x-btn-default-large-menu-active .x-frame-mc,.x-btn-default-large-pressed .x-frame-mc{background-color:#2a6d9e;background-image:url(images/btn/btn-default-large-pressed-fbg.gif)}.x-btn-default-large-disabled .x-frame-tl,.x-btn-default-large-disabled .x-frame-bl,.x-btn-default-large-disabled .x-frame-tr,.x-btn-default-large-disabled .x-frame-br,.x-btn-default-large-disabled .x-frame-tc,.x-btn-default-large-disabled .x-frame-bc{background-image:url(images/btn/btn-default-large-disabled-corners.gif)}.x-btn-default-large-disabled .x-frame-ml,.x-btn-default-large-disabled .x-frame-mr{background-image:url(images/btn/btn-default-large-disabled-sides.gif)}.x-btn-default-large-disabled .x-frame-mc{background-color:null;background-image:url(images/btn/btn-default-large-disabled-fbg.gif)}.x-nlg .x-btn-default-large-over{background-image:url(images/btn/btn-default-large-over-bg.gif)}.x-nlg .x-btn-default-large-focus{background-image:url(images/btn/btn-default-large-focus-bg.gif)}.x-nlg .x-btn-default-large-menu-active,.x-nlg .x-btn-default-large-pressed{background-image:url(images/btn/btn-default-large-pressed-bg.gif)}.x-nlg .x-btn-default-large-disabled{background-image:url(images/btn/btn-default-large-disabled-bg.gif)}.x-nbr .x-btn-default-large{background-image:none}.x-btn-default-large .x-btn-split-right{background-image:url(images/button/default-large-s-arrow.png);padding-right:38px}.x-btn-default-large .x-btn-split-bottom{background-image:url(images/button/default-large-s-arrow-b.png);padding-bottom:34px}.x-btn-default-large-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-over-corners.gif), sides:url(images/btn/btn-default-large-over-sides.gif), frame-bg:url(images/btn/btn-default-large-over-fbg.gif), bg:url(images/btn/btn-default-large-over-bg.gif)"}.x-btn-default-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-focus-corners.gif), sides:url(images/btn/btn-default-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-large-focus-fbg.gif), bg:url(images/btn/btn-default-large-focus-bg.gif)"}.x-btn-default-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-pressed-corners.gif), sides:url(images/btn/btn-default-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-large-pressed-fbg.gif), bg:url(images/btn/btn-default-large-pressed-bg.gif)"}.x-btn-default-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-large-disabled-corners.gif), sides:url(images/btn/btn-default-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-large-disabled-fbg.gif), bg:url(images/btn/btn-default-large-disabled-bg.gif)"}.x-btn-default-toolbar-small{border-color:#e1e1e1}.x-btn-default-toolbar-small{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#f5f5f5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(50%,#f5f5f5),color-stop(51%,#e8e8e8),color-stop(100%,#f5f5f5));background-image:-webkit-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-moz-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-o-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5)}.x-btn-default-toolbar-small-mc{background-image:url(images/btn/btn-default-toolbar-small-fbg.gif);background-position:0 top;background-color:#f5f5f5}.x-nlg .x-btn-default-toolbar-small{background-image:url(images/btn/btn-default-toolbar-small-bg.gif);background-position:0 top}.x-nbr .x-btn-default-toolbar-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-toolbar-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-toolbar-small-tl{background-position:0 -6px}.x-btn-default-toolbar-small-tr{background-position:right -9px}.x-btn-default-toolbar-small-bl{background-position:0 -12px}.x-btn-default-toolbar-small-br{background-position:right -15px}.x-btn-default-toolbar-small-ml{background-position:0 top}.x-btn-default-toolbar-small-mr{background-position:right top}.x-btn-default-toolbar-small-tc{background-position:0 0}.x-btn-default-toolbar-small-bc{background-position:0 -3px}.x-btn-default-toolbar-small-tr,.x-btn-default-toolbar-small-br,.x-btn-default-toolbar-small-mr{padding-right:3px}.x-btn-default-toolbar-small-tl,.x-btn-default-toolbar-small-bl,.x-btn-default-toolbar-small-ml{padding-left:3px}.x-btn-default-toolbar-small-tc{height:3px}.x-btn-default-toolbar-small-bc{height:3px}.x-btn-default-toolbar-small-tl,.x-btn-default-toolbar-small-bl,.x-btn-default-toolbar-small-tr,.x-btn-default-toolbar-small-br,.x-btn-default-toolbar-small-tc,.x-btn-default-toolbar-small-bc,.x-btn-default-toolbar-small-ml,.x-btn-default-toolbar-small-mr{zoom:1;background-image:url(images/btn/btn-default-toolbar-small-corners.gif)}.x-btn-default-toolbar-small-ml,.x-btn-default-toolbar-small-mr{zoom:1;background-image:url(images/btn/btn-default-toolbar-small-sides.gif)}.x-btn-default-toolbar-small-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-toolbar-small-tl,.x-strict .x-ie7 .x-btn-default-toolbar-small-bl{position:relative;right:0}.x-btn-default-toolbar-small:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-toolbar-small-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-bg.gif), corners:url(images/btn/btn-default-toolbar-small-corners.gif), sides:url(images/btn/btn-default-toolbar-small-sides.gif)"}.x-btn-default-toolbar-small .x-btn-inner{font-size:12px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;color:#666;padding:0 5px}.x-btn-default-toolbar-small .x-btn-arrow{background-image:url(images/button/default-toolbar-small-arrow.png)}.x-btn-default-toolbar-small .x-btn-arrow-right{padding-right:21px}.x-btn-default-toolbar-small .x-btn-arrow-bottom{padding-bottom:18px}.x-btn-default-toolbar-small .x-btn-glyph{font-size:16px;line-height:16px;color:#666;opacity:.5}.x-ie8m .x-btn-default-toolbar-small .x-btn-glyph{color:#adadad}.x-btn-default-toolbar-small-disabled{background-image:none;background-color:#f5f5f5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(50%,#f5f5f5),color-stop(51%,#e8e8e8),color-stop(100%,#f5f5f5));background-image:-webkit-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-moz-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-o-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5)}.x-btn-default-toolbar-small-icon .x-btn-button,.x-btn-default-toolbar-small-noicon .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon .x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-inner{line-height:16px}.x-btn-default-toolbar-small-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-small-icon .x-btn-inner{width:16px;padding:0}.x-btn-default-toolbar-small-icon .x-btn-icon-el{width:16px;height:16px}.x-btn-default-toolbar-small-icon-text-left .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon-text-left .x-btn-inner{line-height:16px;padding-left:21px}.x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el{width:16px;right:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-small-icon-text-left .x-btn-icon-el{height:16px}.x-btn-default-toolbar-small-icon-text-right .x-btn-button{height:16px}.x-btn-default-toolbar-small-icon-text-right .x-btn-inner{line-height:16px;padding-right:21px}.x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el{width:16px;left:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-small-icon-text-right .x-btn-icon-el{height:16px}.x-btn-default-toolbar-small-icon-text-top .x-btn-inner{padding-top:21px}.x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el{height:16px;bottom:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-small-icon-text-bottom .x-btn-inner{padding-bottom:21px}.x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el{height:16px;top:auto}.x-ie6 .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-small-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-small-over{background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-default-toolbar-small-focus{background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-default-toolbar-small-menu-active,.x-btn-default-toolbar-small-pressed{background-image:none;background-color:#e1e1e1;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e1e1e1),color-stop(50%,#d5d5d5),color-stop(51%,#e1e1e1),color-stop(100%,#e4e4e4));background-image:-webkit-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-moz-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-o-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4)}.x-btn-default-toolbar-small-over .x-frame-tl,.x-btn-default-toolbar-small-over .x-frame-bl,.x-btn-default-toolbar-small-over .x-frame-tr,.x-btn-default-toolbar-small-over .x-frame-br,.x-btn-default-toolbar-small-over .x-frame-tc,.x-btn-default-toolbar-small-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-over-corners.gif)}.x-btn-default-toolbar-small-over .x-frame-ml,.x-btn-default-toolbar-small-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-over-sides.gif)}.x-btn-default-toolbar-small-over .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-default-toolbar-small-over-fbg.gif)}.x-btn-default-toolbar-small-focus .x-frame-tl,.x-btn-default-toolbar-small-focus .x-frame-bl,.x-btn-default-toolbar-small-focus .x-frame-tr,.x-btn-default-toolbar-small-focus .x-frame-br,.x-btn-default-toolbar-small-focus .x-frame-tc,.x-btn-default-toolbar-small-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-focus-corners.gif)}.x-btn-default-toolbar-small-focus .x-frame-ml,.x-btn-default-toolbar-small-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-focus-sides.gif)}.x-btn-default-toolbar-small-focus .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-default-toolbar-small-focus-fbg.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-tl,.x-btn-default-toolbar-small-menu-active .x-frame-bl,.x-btn-default-toolbar-small-menu-active .x-frame-tr,.x-btn-default-toolbar-small-menu-active .x-frame-br,.x-btn-default-toolbar-small-menu-active .x-frame-tc,.x-btn-default-toolbar-small-menu-active .x-frame-bc,.x-btn-default-toolbar-small-pressed .x-frame-tl,.x-btn-default-toolbar-small-pressed .x-frame-bl,.x-btn-default-toolbar-small-pressed .x-frame-tr,.x-btn-default-toolbar-small-pressed .x-frame-br,.x-btn-default-toolbar-small-pressed .x-frame-tc,.x-btn-default-toolbar-small-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-pressed-corners.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-ml,.x-btn-default-toolbar-small-menu-active .x-frame-mr,.x-btn-default-toolbar-small-pressed .x-frame-ml,.x-btn-default-toolbar-small-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-pressed-sides.gif)}.x-btn-default-toolbar-small-menu-active .x-frame-mc,.x-btn-default-toolbar-small-pressed .x-frame-mc{background-color:#e1e1e1;background-image:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif)}.x-btn-default-toolbar-small-disabled .x-frame-tl,.x-btn-default-toolbar-small-disabled .x-frame-bl,.x-btn-default-toolbar-small-disabled .x-frame-tr,.x-btn-default-toolbar-small-disabled .x-frame-br,.x-btn-default-toolbar-small-disabled .x-frame-tc,.x-btn-default-toolbar-small-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-small-disabled-corners.gif)}.x-btn-default-toolbar-small-disabled .x-frame-ml,.x-btn-default-toolbar-small-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-small-disabled-sides.gif)}.x-btn-default-toolbar-small-disabled .x-frame-mc{background-color:#f5f5f5;background-image:url(images/btn/btn-default-toolbar-small-disabled-fbg.gif)}.x-nlg .x-btn-default-toolbar-small-over{background-image:url(images/btn/btn-default-toolbar-small-over-bg.gif)}.x-nlg .x-btn-default-toolbar-small-focus{background-image:url(images/btn/btn-default-toolbar-small-focus-bg.gif)}.x-nlg .x-btn-default-toolbar-small-menu-active,.x-nlg .x-btn-default-toolbar-small-pressed{background-image:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)}.x-nlg .x-btn-default-toolbar-small-disabled{background-image:url(images/btn/btn-default-toolbar-small-disabled-bg.gif)}.x-nbr .x-btn-default-toolbar-small{background-image:none}.x-btn-default-toolbar-small .x-btn-split-right{background-image:url(images/button/default-toolbar-small-s-arrow.png);padding-right:23px}.x-btn-default-toolbar-small .x-btn-split-bottom{background-image:url(images/button/default-toolbar-small-s-arrow-b.png);padding-bottom:20px}.x-btn-default-toolbar-small-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-over-corners.gif), sides:url(images/btn/btn-default-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-over-bg.gif)"}.x-btn-default-toolbar-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-focus-bg.gif)"}.x-btn-default-toolbar-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-pressed-bg.gif)"}.x-btn-default-toolbar-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-small-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-small-disabled-fbg.gif), bg:url(images/btn/btn-default-toolbar-small-disabled-bg.gif)"}.x-btn-default-toolbar-medium{border-color:#e1e1e1}.x-btn-default-toolbar-medium{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#f5f5f5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(50%,#f5f5f5),color-stop(51%,#e8e8e8),color-stop(100%,#f5f5f5));background-image:-webkit-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-moz-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-o-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5)}.x-btn-default-toolbar-medium-mc{background-image:url(images/btn/btn-default-toolbar-medium-fbg.gif);background-position:0 top;background-color:#f5f5f5}.x-nlg .x-btn-default-toolbar-medium{background-image:url(images/btn/btn-default-toolbar-medium-bg.gif);background-position:0 top}.x-nbr .x-btn-default-toolbar-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-toolbar-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-toolbar-medium-tl{background-position:0 -6px}.x-btn-default-toolbar-medium-tr{background-position:right -9px}.x-btn-default-toolbar-medium-bl{background-position:0 -12px}.x-btn-default-toolbar-medium-br{background-position:right -15px}.x-btn-default-toolbar-medium-ml{background-position:0 top}.x-btn-default-toolbar-medium-mr{background-position:right top}.x-btn-default-toolbar-medium-tc{background-position:0 0}.x-btn-default-toolbar-medium-bc{background-position:0 -3px}.x-btn-default-toolbar-medium-tr,.x-btn-default-toolbar-medium-br,.x-btn-default-toolbar-medium-mr{padding-right:3px}.x-btn-default-toolbar-medium-tl,.x-btn-default-toolbar-medium-bl,.x-btn-default-toolbar-medium-ml{padding-left:3px}.x-btn-default-toolbar-medium-tc{height:3px}.x-btn-default-toolbar-medium-bc{height:3px}.x-btn-default-toolbar-medium-tl,.x-btn-default-toolbar-medium-bl,.x-btn-default-toolbar-medium-tr,.x-btn-default-toolbar-medium-br,.x-btn-default-toolbar-medium-tc,.x-btn-default-toolbar-medium-bc,.x-btn-default-toolbar-medium-ml,.x-btn-default-toolbar-medium-mr{zoom:1;background-image:url(images/btn/btn-default-toolbar-medium-corners.gif)}.x-btn-default-toolbar-medium-ml,.x-btn-default-toolbar-medium-mr{zoom:1;background-image:url(images/btn/btn-default-toolbar-medium-sides.gif)}.x-btn-default-toolbar-medium-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-toolbar-medium-tl,.x-strict .x-ie7 .x-btn-default-toolbar-medium-bl{position:relative;right:0}.x-btn-default-toolbar-medium:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-toolbar-medium-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-bg.gif), corners:url(images/btn/btn-default-toolbar-medium-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-sides.gif)"}.x-btn-default-toolbar-medium .x-btn-inner{font-size:14px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;color:#666;padding:0 8px}.x-btn-default-toolbar-medium .x-btn-arrow{background-image:url(images/button/default-toolbar-medium-arrow.png)}.x-btn-default-toolbar-medium .x-btn-arrow-right{padding-right:30px}.x-btn-default-toolbar-medium .x-btn-arrow-bottom{padding-bottom:26px}.x-btn-default-toolbar-medium .x-btn-glyph{font-size:24px;line-height:24px;color:#666;opacity:.5}.x-ie8m .x-btn-default-toolbar-medium .x-btn-glyph{color:#adadad}.x-btn-default-toolbar-medium-disabled{background-image:none;background-color:#f5f5f5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(50%,#f5f5f5),color-stop(51%,#e8e8e8),color-stop(100%,#f5f5f5));background-image:-webkit-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-moz-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-o-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5)}.x-btn-default-toolbar-medium-icon .x-btn-button,.x-btn-default-toolbar-medium-noicon .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon .x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-inner{line-height:24px}.x-btn-default-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-medium-icon .x-btn-inner{width:24px;padding:0}.x-btn-default-toolbar-medium-icon .x-btn-icon-el{width:24px;height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-inner{line-height:24px;padding-left:29px}.x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el{width:24px;right:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-medium-icon-text-left .x-btn-icon-el{height:24px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-button{height:24px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-inner{line-height:24px;padding-right:29px}.x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el{width:24px;left:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-medium-icon-text-right .x-btn-icon-el{height:24px}.x-btn-default-toolbar-medium-icon-text-top .x-btn-inner{padding-top:29px}.x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el{height:24px;bottom:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-inner{padding-bottom:29px}.x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el{height:24px;top:auto}.x-ie6 .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-medium-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-medium-over{background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-default-toolbar-medium-focus{background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-default-toolbar-medium-menu-active,.x-btn-default-toolbar-medium-pressed{background-image:none;background-color:#e1e1e1;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e1e1e1),color-stop(50%,#d5d5d5),color-stop(51%,#e1e1e1),color-stop(100%,#e4e4e4));background-image:-webkit-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-moz-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-o-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4)}.x-btn-default-toolbar-medium-over .x-frame-tl,.x-btn-default-toolbar-medium-over .x-frame-bl,.x-btn-default-toolbar-medium-over .x-frame-tr,.x-btn-default-toolbar-medium-over .x-frame-br,.x-btn-default-toolbar-medium-over .x-frame-tc,.x-btn-default-toolbar-medium-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-over-corners.gif)}.x-btn-default-toolbar-medium-over .x-frame-ml,.x-btn-default-toolbar-medium-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-over-sides.gif)}.x-btn-default-toolbar-medium-over .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-default-toolbar-medium-over-fbg.gif)}.x-btn-default-toolbar-medium-focus .x-frame-tl,.x-btn-default-toolbar-medium-focus .x-frame-bl,.x-btn-default-toolbar-medium-focus .x-frame-tr,.x-btn-default-toolbar-medium-focus .x-frame-br,.x-btn-default-toolbar-medium-focus .x-frame-tc,.x-btn-default-toolbar-medium-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-focus-corners.gif)}.x-btn-default-toolbar-medium-focus .x-frame-ml,.x-btn-default-toolbar-medium-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-focus-sides.gif)}.x-btn-default-toolbar-medium-focus .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-tl,.x-btn-default-toolbar-medium-menu-active .x-frame-bl,.x-btn-default-toolbar-medium-menu-active .x-frame-tr,.x-btn-default-toolbar-medium-menu-active .x-frame-br,.x-btn-default-toolbar-medium-menu-active .x-frame-tc,.x-btn-default-toolbar-medium-menu-active .x-frame-bc,.x-btn-default-toolbar-medium-pressed .x-frame-tl,.x-btn-default-toolbar-medium-pressed .x-frame-bl,.x-btn-default-toolbar-medium-pressed .x-frame-tr,.x-btn-default-toolbar-medium-pressed .x-frame-br,.x-btn-default-toolbar-medium-pressed .x-frame-tc,.x-btn-default-toolbar-medium-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-ml,.x-btn-default-toolbar-medium-menu-active .x-frame-mr,.x-btn-default-toolbar-medium-pressed .x-frame-ml,.x-btn-default-toolbar-medium-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif)}.x-btn-default-toolbar-medium-menu-active .x-frame-mc,.x-btn-default-toolbar-medium-pressed .x-frame-mc{background-color:#e1e1e1;background-image:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-tl,.x-btn-default-toolbar-medium-disabled .x-frame-bl,.x-btn-default-toolbar-medium-disabled .x-frame-tr,.x-btn-default-toolbar-medium-disabled .x-frame-br,.x-btn-default-toolbar-medium-disabled .x-frame-tc,.x-btn-default-toolbar-medium-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-ml,.x-btn-default-toolbar-medium-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif)}.x-btn-default-toolbar-medium-disabled .x-frame-mc{background-color:#f5f5f5;background-image:url(images/btn/btn-default-toolbar-medium-disabled-fbg.gif)}.x-nlg .x-btn-default-toolbar-medium-over{background-image:url(images/btn/btn-default-toolbar-medium-over-bg.gif)}.x-nlg .x-btn-default-toolbar-medium-focus{background-image:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)}.x-nlg .x-btn-default-toolbar-medium-menu-active,.x-nlg .x-btn-default-toolbar-medium-pressed{background-image:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)}.x-nlg .x-btn-default-toolbar-medium-disabled{background-image:url(images/btn/btn-default-toolbar-medium-disabled-bg.gif)}.x-nbr .x-btn-default-toolbar-medium{background-image:none}.x-btn-default-toolbar-medium .x-btn-split-right{background-image:url(images/button/default-toolbar-medium-s-arrow.png);padding-right:32px}.x-btn-default-toolbar-medium .x-btn-split-bottom{background-image:url(images/button/default-toolbar-medium-s-arrow-b.png);padding-bottom:28px}.x-btn-default-toolbar-medium-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-over-bg.gif)"}.x-btn-default-toolbar-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-focus-bg.gif)"}.x-btn-default-toolbar-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-pressed-bg.gif)"}.x-btn-default-toolbar-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-medium-disabled-fbg.gif), bg:url(images/btn/btn-default-toolbar-medium-disabled-bg.gif)"}.x-btn-default-toolbar-large{border-color:#e1e1e1}.x-btn-default-toolbar-large{-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;padding:3px 3px 3px 3px;border-width:1px;border-style:solid;background-image:none;background-color:#f5f5f5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(50%,#f5f5f5),color-stop(51%,#e8e8e8),color-stop(100%,#f5f5f5));background-image:-webkit-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-moz-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-o-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5)}.x-btn-default-toolbar-large-mc{background-image:url(images/btn/btn-default-toolbar-large-fbg.gif);background-position:0 top;background-color:#f5f5f5}.x-nlg .x-btn-default-toolbar-large{background-image:url(images/btn/btn-default-toolbar-large-bg.gif);background-position:0 top}.x-nbr .x-btn-default-toolbar-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-default-toolbar-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-default-toolbar-large-tl{background-position:0 -6px}.x-btn-default-toolbar-large-tr{background-position:right -9px}.x-btn-default-toolbar-large-bl{background-position:0 -12px}.x-btn-default-toolbar-large-br{background-position:right -15px}.x-btn-default-toolbar-large-ml{background-position:0 top}.x-btn-default-toolbar-large-mr{background-position:right top}.x-btn-default-toolbar-large-tc{background-position:0 0}.x-btn-default-toolbar-large-bc{background-position:0 -3px}.x-btn-default-toolbar-large-tr,.x-btn-default-toolbar-large-br,.x-btn-default-toolbar-large-mr{padding-right:3px}.x-btn-default-toolbar-large-tl,.x-btn-default-toolbar-large-bl,.x-btn-default-toolbar-large-ml{padding-left:3px}.x-btn-default-toolbar-large-tc{height:3px}.x-btn-default-toolbar-large-bc{height:3px}.x-btn-default-toolbar-large-tl,.x-btn-default-toolbar-large-bl,.x-btn-default-toolbar-large-tr,.x-btn-default-toolbar-large-br,.x-btn-default-toolbar-large-tc,.x-btn-default-toolbar-large-bc,.x-btn-default-toolbar-large-ml,.x-btn-default-toolbar-large-mr{zoom:1;background-image:url(images/btn/btn-default-toolbar-large-corners.gif)}.x-btn-default-toolbar-large-ml,.x-btn-default-toolbar-large-mr{zoom:1;background-image:url(images/btn/btn-default-toolbar-large-sides.gif)}.x-btn-default-toolbar-large-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-default-toolbar-large-tl,.x-strict .x-ie7 .x-btn-default-toolbar-large-bl{position:relative;right:0}.x-btn-default-toolbar-large:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-default-toolbar-large-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-bg.gif), corners:url(images/btn/btn-default-toolbar-large-corners.gif), sides:url(images/btn/btn-default-toolbar-large-sides.gif)"}.x-btn-default-toolbar-large .x-btn-inner{font-size:16px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;color:#666;padding:0 10px}.x-btn-default-toolbar-large .x-btn-arrow{background-image:url(images/button/default-toolbar-large-arrow.png)}.x-btn-default-toolbar-large .x-btn-arrow-right{padding-right:36px}.x-btn-default-toolbar-large .x-btn-arrow-bottom{padding-bottom:32px}.x-btn-default-toolbar-large .x-btn-glyph{font-size:32px;line-height:32px;color:#666;opacity:.5}.x-ie8m .x-btn-default-toolbar-large .x-btn-glyph{color:#adadad}.x-btn-default-toolbar-large-disabled{background-image:none;background-color:#f5f5f5;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#f6f6f6),color-stop(50%,#f5f5f5),color-stop(51%,#e8e8e8),color-stop(100%,#f5f5f5));background-image:-webkit-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-moz-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:-o-linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5);background-image:linear-gradient(top,#f6f6f6,#f5f5f5 50%,#e8e8e8 51%,#f5f5f5)}.x-btn-default-toolbar-large-icon .x-btn-button,.x-btn-default-toolbar-large-noicon .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon .x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-inner{line-height:32px}.x-btn-default-toolbar-large-icon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-default-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-default-toolbar-large-icon .x-btn-inner{width:32px;padding:0}.x-btn-default-toolbar-large-icon .x-btn-icon-el{width:32px;height:32px}.x-btn-default-toolbar-large-icon-text-left .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon-text-left .x-btn-inner{line-height:32px;padding-left:37px}.x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el{width:32px;right:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-large-icon-text-left .x-btn-icon-el{height:32px}.x-btn-default-toolbar-large-icon-text-right .x-btn-button{height:32px}.x-btn-default-toolbar-large-icon-text-right .x-btn-inner{line-height:32px;padding-right:37px}.x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el{width:32px;left:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-default-toolbar-large-icon-text-right .x-btn-icon-el{height:32px}.x-btn-default-toolbar-large-icon-text-top .x-btn-inner{padding-top:37px}.x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el{height:32px;bottom:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-top .x-btn-icon-el{width:100%}.x-btn-default-toolbar-large-icon-text-bottom .x-btn-inner{padding-bottom:37px}.x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el{height:32px;top:auto}.x-ie6 .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-default-toolbar-large-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-default-toolbar-large-over{background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-default-toolbar-large-focus{background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-default-toolbar-large-menu-active,.x-btn-default-toolbar-large-pressed{background-image:none;background-color:#e1e1e1;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e1e1e1),color-stop(50%,#d5d5d5),color-stop(51%,#e1e1e1),color-stop(100%,#e4e4e4));background-image:-webkit-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-moz-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-o-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4)}.x-btn-default-toolbar-large-over .x-frame-tl,.x-btn-default-toolbar-large-over .x-frame-bl,.x-btn-default-toolbar-large-over .x-frame-tr,.x-btn-default-toolbar-large-over .x-frame-br,.x-btn-default-toolbar-large-over .x-frame-tc,.x-btn-default-toolbar-large-over .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-over-corners.gif)}.x-btn-default-toolbar-large-over .x-frame-ml,.x-btn-default-toolbar-large-over .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-over-sides.gif)}.x-btn-default-toolbar-large-over .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-default-toolbar-large-over-fbg.gif)}.x-btn-default-toolbar-large-focus .x-frame-tl,.x-btn-default-toolbar-large-focus .x-frame-bl,.x-btn-default-toolbar-large-focus .x-frame-tr,.x-btn-default-toolbar-large-focus .x-frame-br,.x-btn-default-toolbar-large-focus .x-frame-tc,.x-btn-default-toolbar-large-focus .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-focus-corners.gif)}.x-btn-default-toolbar-large-focus .x-frame-ml,.x-btn-default-toolbar-large-focus .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-focus-sides.gif)}.x-btn-default-toolbar-large-focus .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-default-toolbar-large-focus-fbg.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-tl,.x-btn-default-toolbar-large-menu-active .x-frame-bl,.x-btn-default-toolbar-large-menu-active .x-frame-tr,.x-btn-default-toolbar-large-menu-active .x-frame-br,.x-btn-default-toolbar-large-menu-active .x-frame-tc,.x-btn-default-toolbar-large-menu-active .x-frame-bc,.x-btn-default-toolbar-large-pressed .x-frame-tl,.x-btn-default-toolbar-large-pressed .x-frame-bl,.x-btn-default-toolbar-large-pressed .x-frame-tr,.x-btn-default-toolbar-large-pressed .x-frame-br,.x-btn-default-toolbar-large-pressed .x-frame-tc,.x-btn-default-toolbar-large-pressed .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-pressed-corners.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-ml,.x-btn-default-toolbar-large-menu-active .x-frame-mr,.x-btn-default-toolbar-large-pressed .x-frame-ml,.x-btn-default-toolbar-large-pressed .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-pressed-sides.gif)}.x-btn-default-toolbar-large-menu-active .x-frame-mc,.x-btn-default-toolbar-large-pressed .x-frame-mc{background-color:#e1e1e1;background-image:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif)}.x-btn-default-toolbar-large-disabled .x-frame-tl,.x-btn-default-toolbar-large-disabled .x-frame-bl,.x-btn-default-toolbar-large-disabled .x-frame-tr,.x-btn-default-toolbar-large-disabled .x-frame-br,.x-btn-default-toolbar-large-disabled .x-frame-tc,.x-btn-default-toolbar-large-disabled .x-frame-bc{background-image:url(images/btn/btn-default-toolbar-large-disabled-corners.gif)}.x-btn-default-toolbar-large-disabled .x-frame-ml,.x-btn-default-toolbar-large-disabled .x-frame-mr{background-image:url(images/btn/btn-default-toolbar-large-disabled-sides.gif)}.x-btn-default-toolbar-large-disabled .x-frame-mc{background-color:#f5f5f5;background-image:url(images/btn/btn-default-toolbar-large-disabled-fbg.gif)}.x-nlg .x-btn-default-toolbar-large-over{background-image:url(images/btn/btn-default-toolbar-large-over-bg.gif)}.x-nlg .x-btn-default-toolbar-large-focus{background-image:url(images/btn/btn-default-toolbar-large-focus-bg.gif)}.x-nlg .x-btn-default-toolbar-large-menu-active,.x-nlg .x-btn-default-toolbar-large-pressed{background-image:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)}.x-nlg .x-btn-default-toolbar-large-disabled{background-image:url(images/btn/btn-default-toolbar-large-disabled-bg.gif)}.x-nbr .x-btn-default-toolbar-large{background-image:none}.x-btn-default-toolbar-large .x-btn-split-right{background-image:url(images/button/default-toolbar-large-s-arrow.png);padding-right:38px}.x-btn-default-toolbar-large .x-btn-split-bottom{background-image:url(images/button/default-toolbar-large-s-arrow-b.png);padding-bottom:34px}.x-btn-default-toolbar-large-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-default-toolbar-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-over-corners.gif), sides:url(images/btn/btn-default-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-over-bg.gif)"}.x-btn-default-toolbar-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-default-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-focus-bg.gif)"}.x-btn-default-toolbar-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-default-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-pressed-bg.gif)"}.x-btn-default-toolbar-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-default-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-default-toolbar-large-disabled-sides.gif), frame-bg:url(images/btn/btn-default-toolbar-large-disabled-fbg.gif), bg:url(images/btn/btn-default-toolbar-large-disabled-bg.gif)"}.x-btn-icon-text-left .x-btn-icon-el{background-position:left center}.x-btn-icon-text-right .x-btn-icon-el{background-position:right center}.x-btn-icon-text-top .x-btn-icon-el{background-position:center top}.x-btn-icon-text-bottom .x-btn-icon-el{background-position:center bottom}.x-btn-arrow-right{background-position:right center}.x-btn-arrow-bottom{background-position:center bottom}.x-btn-arrow{background-repeat:no-repeat}.x-btn-split{display:block;background-repeat:no-repeat}.x-btn-split-right{background-position:right center}.x-btn-split-bottom{background-position:center bottom}.x-cycle-fixed-width .x-btn-inner{text-align:inherit}.x-toolbar{font-size:13px;border-style:solid;padding:6px 0 6px 8px}.x-toolbar-item{margin:0 8px 0 0}.x-toolbar-text{margin:0 6px 0 4px;color:#333f49;line-height:16px;font-family:helvetica,arial,verdana,sans-serif;font-size:12px;font-weight:normal}.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}.x-toolbar-footer{background:#dfeaf2;border:0;margin:0;padding:6px 0 6px 6px}.x-toolbar-footer .x-toolbar-item{margin:0 6px 0 0}.x-toolbar-spacer{width:2px}.x-toolbar-more-icon{background-image:url(images/toolbar/more.png)!important;background-position:center center!important;background-repeat:no-repeat}.x-toolbar-default{border-color:silver;border-width:1px;background-image:none;background-color:white}.x-toolbar-default .x-box-scroller{cursor:pointer}.x-toolbar-default .x-box-scroller-disabled{cursor:default}.x-toolbar-default .x-tool-img{background-image:url(images/tools/tool-sprites-dark.png);background-color:white}.x-toolbar-scroll-left{background-image:url(images/toolbar/scroll-left.png);background-position:0 0;width:16px;height:16px;border-style:solid;border-color:#8db2e3;border-width:0;margin-top:4px}.x-toolbar-scroll-left-hover{background-position:0 0}.x-toolbar-scroll-right{background-image:url(images/toolbar/scroll-right.png);width:16px;height:16px;border-style:solid;border-color:#8db2e3;border-width:0;margin-top:4px}.x-toolbar-scroll-right-hover{background-position:-16px 0}.x-toolbar .x-box-menu-after{margin:0 8px 0 8px}.x-toolbar-vertical{padding:6px 8px 0 8px}.x-toolbar-vertical .x-toolbar-item{margin:0 0 6px 0}.x-toolbar-vertical .x-toolbar-text{margin:4px 0 6px 0}.x-toolbar-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}.x-toolbar-vertical .x-box-menu-after,.x-toolbar-vertical .x-rtl.x-box-menu-after{margin:6px 0 6px 0;display:block;float:none}.x-header-draggable .x-header-body,.x-header-ghost{cursor:move}.x-header-text{white-space:nowrap}.x-panel-ghost{filter:alpha(opacity=50);opacity:.5}.x-panel-default{border-color:#157fcc;padding:0}.x-panel-header-default{font-size:13px;border:1px solid #157fcc}.x-panel-header-default .x-tool-img{background-color:#157fcc}.x-panel-header-default-horizontal{padding:9px 9px 10px 9px}.x-panel-header-default-horizontal-noborder{padding:10px 10px 10px 10px}.x-panel-header-default-vertical{padding:9px 9px 9px 10px}.x-panel-header-default-vertical-noborder{padding:10px 10px 10px 10px}.x-panel-header-text-container-default{color:white;font-size:13px;font-weight:bold;font-family:arial,helvetica,verdana,sans-serif;line-height:15px;padding:1px 0 0;text-transform:none}.x-panel-body-default{background:white;border-color:#157fcc;color:black;font-size:13px;font-size:normal;border-width:1px;border-style:solid}.x-panel-header-default{background-image:none;background-color:#157fcc}.x-panel-header-default-vertical{background-image:none;background-color:#157fcc}.x-panel .x-panel-header-default-collapsed-border-top{border-bottom-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-right{border-left-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-bottom{border-top-width:1px!important}.x-panel .x-panel-header-default-collapsed-border-left{border-right-width:1px!important}.x-panel-header-default-top:after{display:none;content:"x-slicer:stretch:bottom"}.x-panel-header-default-bottom:after{display:none;content:"x-slicer:stretch:bottom"}.x-panel-header-default-left:after{display:none;content:"x-slicer:stretch:left"}.x-panel-header-default-right:after{display:none;content:"x-slicer:stretch:left"}.x-panel-header-default-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-default-vertical .x-panel-header-text-container{background-color:#157fcc;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#157fcc)}.x-panel-header-default .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-default .x-panel-header-glyph{color:white;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-default .x-panel-header-glyph{color:#8abfe5}.x-panel-header-default-horizontal .x-panel-header-icon-before-title{margin:0 6px 0 0}.x-panel-header-default-horizontal .x-panel-header-icon-after-title{margin:0 0 0 6px}.x-panel-header-default-vertical .x-panel-header-icon-before-title{margin:0 0 6px 0}.x-panel-header-default-vertical .x-panel-header-icon-after-title{margin:6px 0 0 0}.x-panel-header-default-horizontal .x-tool-after-title{margin:0 0 0 6px}.x-panel-header-default-horizontal .x-tool-before-title{margin:0 6px 0 0}.x-panel-header-default-vertical .x-tool-after-title{margin:6px 0 0 0}.x-panel-header-default-vertical .x-tool-before-title{margin:0 0 6px 0}.x-panel-default-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-panel-default-outer-border-l{border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-outer-border-b{border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-default-outer-border-bl{border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-outer-border-r{border-right-color:#157fcc!important;border-right-width:1px!important}.x-panel-default-outer-border-rl{border-right-color:#157fcc!important;border-right-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-outer-border-rb{border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-default-outer-border-rbl{border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-outer-border-t{border-top-color:#157fcc!important;border-top-width:1px!important}.x-panel-default-outer-border-tl{border-top-color:#157fcc!important;border-top-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-outer-border-tb{border-top-color:#157fcc!important;border-top-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-default-outer-border-tbl{border-top-color:#157fcc!important;border-top-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-outer-border-tr{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important}.x-panel-default-outer-border-trl{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-outer-border-trb{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-default-outer-border-trbl{border-color:#157fcc!important;border-width:1px!important}.x-panel-default-framed{border-color:#157fcc;padding:0}.x-panel-header-default-framed{font-size:13px;border:5px solid #157fcc}.x-panel-header-default-framed .x-tool-img{background-color:#157fcc}.x-panel-header-default-framed-horizontal{padding:5px}.x-panel-header-default-framed-horizontal-noborder{padding:10px 10px 5px 10px}.x-panel-header-default-framed-vertical{padding:5px 5px 5px 5px}.x-panel-header-default-framed-vertical-noborder{padding:10px 10px 10px 5px}.x-panel-header-text-container-default-framed{color:white;font-size:13px;font-weight:bold;font-family:arial,helvetica,verdana,sans-serif;line-height:15px;padding:1px 0 0;text-transform:none}.x-panel-body-default-framed{background:white;border-color:#157fcc;color:black;font-size:13px;font-size:normal;border-width:1px;border-style:solid}.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;border-width:5px;border-style:solid;background-color:white}.x-panel-default-framed-mc{background-color:white}.x-nbr .x-panel-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-default-framed-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-0-0-0-0}.x-panel-default-framed-tl{background-position:0 -10px}.x-panel-default-framed-tr{background-position:right -15px}.x-panel-default-framed-bl{background-position:0 -20px}.x-panel-default-framed-br{background-position:right -25px}.x-panel-default-framed-ml{background-position:0 top}.x-panel-default-framed-mr{background-position:right top}.x-panel-default-framed-tc{background-position:0 0}.x-panel-default-framed-bc{background-position:0 -5px}.x-panel-default-framed-tr,.x-panel-default-framed-br,.x-panel-default-framed-mr{padding-right:5px}.x-panel-default-framed-tl,.x-panel-default-framed-bl,.x-panel-default-framed-ml{padding-left:5px}.x-panel-default-framed-tc{height:5px}.x-panel-default-framed-bc{height:5px}.x-panel-default-framed-tl,.x-panel-default-framed-bl,.x-panel-default-framed-tr,.x-panel-default-framed-br,.x-panel-default-framed-tc,.x-panel-default-framed-bc,.x-panel-default-framed-ml,.x-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-corners.gif)}.x-panel-default-framed-ml,.x-panel-default-framed-mr{zoom:1;background-image:url(images/panel/panel-default-framed-sides.gif);background-repeat:repeat-y}.x-panel-default-framed-mc{padding:0}.x-strict .x-ie7 .x-panel-default-framed-tl,.x-strict .x-ie7 .x-panel-default-framed-bl{position:relative;right:0}.x-panel-default-framed:after{display:none;content:"x-slicer:corners:url(images/panel/panel-default-framed-corners.gif), sides:url(images/panel/panel-default-framed-sides.gif)"}.x-panel-header-default-framed-top{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 5px 5px 5px;border-width:5px 5px 0 5px;border-style:solid;background-color:#157fcc}.x-panel-header-default-framed-top-mc{background-color:#157fcc}.x-nbr .x-panel-header-default-framed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-default-framed-top-frameInfo{font-family:dh-4-4-0-0-5-5-0-5-5-5-5-5}.x-panel-header-default-framed-top-tl{background-position:0 -10px}.x-panel-header-default-framed-top-tr{background-position:right -15px}.x-panel-header-default-framed-top-bl{background-position:0 -20px}.x-panel-header-default-framed-top-br{background-position:right -25px}.x-panel-header-default-framed-top-ml{background-position:0 top}.x-panel-header-default-framed-top-mr{background-position:right top}.x-panel-header-default-framed-top-tc{background-position:0 0}.x-panel-header-default-framed-top-bc{background-position:0 -5px}.x-panel-header-default-framed-top-tr,.x-panel-header-default-framed-top-br,.x-panel-header-default-framed-top-mr{padding-right:5px}.x-panel-header-default-framed-top-tl,.x-panel-header-default-framed-top-bl,.x-panel-header-default-framed-top-ml{padding-left:5px}.x-panel-header-default-framed-top-tc{height:5px}.x-panel-header-default-framed-top-bc{height:0}.x-panel-header-default-framed-top-tl,.x-panel-header-default-framed-top-bl,.x-panel-header-default-framed-top-tr,.x-panel-header-default-framed-top-br,.x-panel-header-default-framed-top-tc,.x-panel-header-default-framed-top-bc,.x-panel-header-default-framed-top-ml,.x-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-corners.gif)}.x-panel-header-default-framed-top-ml,.x-panel-header-default-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-top-sides.gif);background-repeat:repeat-y}.x-panel-header-default-framed-top-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-default-framed-top-tl,.x-strict .x-ie7 .x-panel-header-default-framed-top-bl{position:relative;right:0}.x-panel-header-default-framed-top:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-default-framed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-top-sides.gif)"}.x-panel-header-default-framed-right{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 5px 5px 5px;border-width:5px 5px 5px 0;border-style:solid;background-color:#157fcc}.x-panel-header-default-framed-right-mc{background-color:#157fcc}.x-nbr .x-panel-header-default-framed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-default-framed-right-frameInfo{font-family:dh-0-4-4-0-5-5-5-0-5-5-5-5}.x-panel-header-default-framed-right-tl{background-position:0 -10px}.x-panel-header-default-framed-right-tr{background-position:right -15px}.x-panel-header-default-framed-right-bl{background-position:0 -20px}.x-panel-header-default-framed-right-br{background-position:right -25px}.x-panel-header-default-framed-right-ml{background-position:0 right}.x-panel-header-default-framed-right-mr{background-position:right right}.x-panel-header-default-framed-right-tc{background-position:0 0}.x-panel-header-default-framed-right-bc{background-position:0 -5px}.x-panel-header-default-framed-right-tr,.x-panel-header-default-framed-right-br,.x-panel-header-default-framed-right-mr{padding-right:5px}.x-panel-header-default-framed-right-tl,.x-panel-header-default-framed-right-bl,.x-panel-header-default-framed-right-ml{padding-left:0}.x-panel-header-default-framed-right-tc{height:5px}.x-panel-header-default-framed-right-bc{height:5px}.x-panel-header-default-framed-right-tl,.x-panel-header-default-framed-right-bl,.x-panel-header-default-framed-right-tr,.x-panel-header-default-framed-right-br,.x-panel-header-default-framed-right-tc,.x-panel-header-default-framed-right-bc,.x-panel-header-default-framed-right-ml,.x-panel-header-default-framed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-corners.gif)}.x-panel-header-default-framed-right-ml,.x-panel-header-default-framed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-right-sides.gif);background-repeat:repeat-y}.x-panel-header-default-framed-right-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-default-framed-right-tl,.x-strict .x-ie7 .x-panel-header-default-framed-right-bl{position:relative;right:0}.x-panel-header-default-framed-right:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-default-framed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-right-sides.gif)"}.x-panel-header-default-framed-bottom{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 5px 5px 5px;border-width:0 5px 5px 5px;border-style:solid;background-color:#157fcc}.x-panel-header-default-framed-bottom-mc{background-color:#157fcc}.x-nbr .x-panel-header-default-framed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-default-framed-bottom-frameInfo{font-family:dh-0-0-4-4-0-5-5-5-5-5-5-5}.x-panel-header-default-framed-bottom-tl{background-position:0 -10px}.x-panel-header-default-framed-bottom-tr{background-position:right -15px}.x-panel-header-default-framed-bottom-bl{background-position:0 -20px}.x-panel-header-default-framed-bottom-br{background-position:right -25px}.x-panel-header-default-framed-bottom-ml{background-position:0 bottom}.x-panel-header-default-framed-bottom-mr{background-position:right bottom}.x-panel-header-default-framed-bottom-tc{background-position:0 0}.x-panel-header-default-framed-bottom-bc{background-position:0 -5px}.x-panel-header-default-framed-bottom-tr,.x-panel-header-default-framed-bottom-br,.x-panel-header-default-framed-bottom-mr{padding-right:5px}.x-panel-header-default-framed-bottom-tl,.x-panel-header-default-framed-bottom-bl,.x-panel-header-default-framed-bottom-ml{padding-left:5px}.x-panel-header-default-framed-bottom-tc{height:0}.x-panel-header-default-framed-bottom-bc{height:5px}.x-panel-header-default-framed-bottom-tl,.x-panel-header-default-framed-bottom-bl,.x-panel-header-default-framed-bottom-tr,.x-panel-header-default-framed-bottom-br,.x-panel-header-default-framed-bottom-tc,.x-panel-header-default-framed-bottom-bc,.x-panel-header-default-framed-bottom-ml,.x-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-corners.gif)}.x-panel-header-default-framed-bottom-ml,.x-panel-header-default-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-bottom-sides.gif);background-repeat:repeat-y}.x-panel-header-default-framed-bottom-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-default-framed-bottom-tl,.x-strict .x-ie7 .x-panel-header-default-framed-bottom-bl{position:relative;right:0}.x-panel-header-default-framed-bottom:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-default-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-bottom-sides.gif)"}.x-panel-header-default-framed-left{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 5px 5px 5px;border-width:5px 0 5px 5px;border-style:solid;background-color:#157fcc}.x-panel-header-default-framed-left-mc{background-color:#157fcc}.x-nbr .x-panel-header-default-framed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-default-framed-left-frameInfo{font-family:dh-4-0-0-4-5-0-5-5-5-5-5-5}.x-panel-header-default-framed-left-tl{background-position:0 -10px}.x-panel-header-default-framed-left-tr{background-position:right -15px}.x-panel-header-default-framed-left-bl{background-position:0 -20px}.x-panel-header-default-framed-left-br{background-position:right -25px}.x-panel-header-default-framed-left-ml{background-position:0 left}.x-panel-header-default-framed-left-mr{background-position:right left}.x-panel-header-default-framed-left-tc{background-position:0 0}.x-panel-header-default-framed-left-bc{background-position:0 -5px}.x-panel-header-default-framed-left-tr,.x-panel-header-default-framed-left-br,.x-panel-header-default-framed-left-mr{padding-right:0}.x-panel-header-default-framed-left-tl,.x-panel-header-default-framed-left-bl,.x-panel-header-default-framed-left-ml{padding-left:5px}.x-panel-header-default-framed-left-tc{height:5px}.x-panel-header-default-framed-left-bc{height:5px}.x-panel-header-default-framed-left-tl,.x-panel-header-default-framed-left-bl,.x-panel-header-default-framed-left-tr,.x-panel-header-default-framed-left-br,.x-panel-header-default-framed-left-tc,.x-panel-header-default-framed-left-bc,.x-panel-header-default-framed-left-ml,.x-panel-header-default-framed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-corners.gif)}.x-panel-header-default-framed-left-ml,.x-panel-header-default-framed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-left-sides.gif);background-repeat:repeat-y}.x-panel-header-default-framed-left-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-default-framed-left-tl,.x-strict .x-ie7 .x-panel-header-default-framed-left-bl{position:relative;right:0}.x-panel-header-default-framed-left:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-default-framed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-left-sides.gif)"}.x-panel-header-default-framed-collapsed-top{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#157fcc}.x-panel-header-default-framed-collapsed-top-mc{background-color:#157fcc}.x-nbr .x-panel-header-default-framed-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-default-framed-collapsed-top-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-panel-header-default-framed-collapsed-top-tl{background-position:0 -10px}.x-panel-header-default-framed-collapsed-top-tr{background-position:right -15px}.x-panel-header-default-framed-collapsed-top-bl{background-position:0 -20px}.x-panel-header-default-framed-collapsed-top-br{background-position:right -25px}.x-panel-header-default-framed-collapsed-top-ml{background-position:0 top}.x-panel-header-default-framed-collapsed-top-mr{background-position:right top}.x-panel-header-default-framed-collapsed-top-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-top-bc{background-position:0 -5px}.x-panel-header-default-framed-collapsed-top-tr,.x-panel-header-default-framed-collapsed-top-br,.x-panel-header-default-framed-collapsed-top-mr{padding-right:5px}.x-panel-header-default-framed-collapsed-top-tl,.x-panel-header-default-framed-collapsed-top-bl,.x-panel-header-default-framed-collapsed-top-ml{padding-left:5px}.x-panel-header-default-framed-collapsed-top-tc{height:5px}.x-panel-header-default-framed-collapsed-top-bc{height:5px}.x-panel-header-default-framed-collapsed-top-tl,.x-panel-header-default-framed-collapsed-top-bl,.x-panel-header-default-framed-collapsed-top-tr,.x-panel-header-default-framed-collapsed-top-br,.x-panel-header-default-framed-collapsed-top-tc,.x-panel-header-default-framed-collapsed-top-bc,.x-panel-header-default-framed-collapsed-top-ml,.x-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif)}.x-panel-header-default-framed-collapsed-top-ml,.x-panel-header-default-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif);background-repeat:repeat-y}.x-panel-header-default-framed-collapsed-top-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-top-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-top:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-top-sides.gif)"}.x-panel-header-default-framed-collapsed-right{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#157fcc}.x-panel-header-default-framed-collapsed-right-mc{background-color:#157fcc}.x-nbr .x-panel-header-default-framed-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-default-framed-collapsed-right-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-panel-header-default-framed-collapsed-right-tl{background-position:0 -10px}.x-panel-header-default-framed-collapsed-right-tr{background-position:right -15px}.x-panel-header-default-framed-collapsed-right-bl{background-position:0 -20px}.x-panel-header-default-framed-collapsed-right-br{background-position:right -25px}.x-panel-header-default-framed-collapsed-right-ml{background-position:0 right}.x-panel-header-default-framed-collapsed-right-mr{background-position:right right}.x-panel-header-default-framed-collapsed-right-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-right-bc{background-position:0 -5px}.x-panel-header-default-framed-collapsed-right-tr,.x-panel-header-default-framed-collapsed-right-br,.x-panel-header-default-framed-collapsed-right-mr{padding-right:5px}.x-panel-header-default-framed-collapsed-right-tl,.x-panel-header-default-framed-collapsed-right-bl,.x-panel-header-default-framed-collapsed-right-ml{padding-left:5px}.x-panel-header-default-framed-collapsed-right-tc{height:5px}.x-panel-header-default-framed-collapsed-right-bc{height:5px}.x-panel-header-default-framed-collapsed-right-tl,.x-panel-header-default-framed-collapsed-right-bl,.x-panel-header-default-framed-collapsed-right-tr,.x-panel-header-default-framed-collapsed-right-br,.x-panel-header-default-framed-collapsed-right-tc,.x-panel-header-default-framed-collapsed-right-bc,.x-panel-header-default-framed-collapsed-right-ml,.x-panel-header-default-framed-collapsed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif)}.x-panel-header-default-framed-collapsed-right-ml,.x-panel-header-default-framed-collapsed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif);background-repeat:repeat-y}.x-panel-header-default-framed-collapsed-right-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-right-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-right:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-right-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-right-sides.gif)"}.x-panel-header-default-framed-collapsed-bottom{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#157fcc}.x-panel-header-default-framed-collapsed-bottom-mc{background-color:#157fcc}.x-nbr .x-panel-header-default-framed-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-default-framed-collapsed-bottom-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-panel-header-default-framed-collapsed-bottom-tl{background-position:0 -10px}.x-panel-header-default-framed-collapsed-bottom-tr{background-position:right -15px}.x-panel-header-default-framed-collapsed-bottom-bl{background-position:0 -20px}.x-panel-header-default-framed-collapsed-bottom-br{background-position:right -25px}.x-panel-header-default-framed-collapsed-bottom-ml{background-position:0 bottom}.x-panel-header-default-framed-collapsed-bottom-mr{background-position:right bottom}.x-panel-header-default-framed-collapsed-bottom-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-bottom-bc{background-position:0 -5px}.x-panel-header-default-framed-collapsed-bottom-tr,.x-panel-header-default-framed-collapsed-bottom-br,.x-panel-header-default-framed-collapsed-bottom-mr{padding-right:5px}.x-panel-header-default-framed-collapsed-bottom-tl,.x-panel-header-default-framed-collapsed-bottom-bl,.x-panel-header-default-framed-collapsed-bottom-ml{padding-left:5px}.x-panel-header-default-framed-collapsed-bottom-tc{height:5px}.x-panel-header-default-framed-collapsed-bottom-bc{height:5px}.x-panel-header-default-framed-collapsed-bottom-tl,.x-panel-header-default-framed-collapsed-bottom-bl,.x-panel-header-default-framed-collapsed-bottom-tr,.x-panel-header-default-framed-collapsed-bottom-br,.x-panel-header-default-framed-collapsed-bottom-tc,.x-panel-header-default-framed-collapsed-bottom-bc,.x-panel-header-default-framed-collapsed-bottom-ml,.x-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif)}.x-panel-header-default-framed-collapsed-bottom-ml,.x-panel-header-default-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif);background-repeat:repeat-y}.x-panel-header-default-framed-collapsed-bottom-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-bottom-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-bottom:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif)"}.x-panel-header-default-framed-collapsed-left{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#157fcc}.x-panel-header-default-framed-collapsed-left-mc{background-color:#157fcc}.x-nbr .x-panel-header-default-framed-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-default-framed-collapsed-left-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-panel-header-default-framed-collapsed-left-tl{background-position:0 -10px}.x-panel-header-default-framed-collapsed-left-tr{background-position:right -15px}.x-panel-header-default-framed-collapsed-left-bl{background-position:0 -20px}.x-panel-header-default-framed-collapsed-left-br{background-position:right -25px}.x-panel-header-default-framed-collapsed-left-ml{background-position:0 left}.x-panel-header-default-framed-collapsed-left-mr{background-position:right left}.x-panel-header-default-framed-collapsed-left-tc{background-position:0 0}.x-panel-header-default-framed-collapsed-left-bc{background-position:0 -5px}.x-panel-header-default-framed-collapsed-left-tr,.x-panel-header-default-framed-collapsed-left-br,.x-panel-header-default-framed-collapsed-left-mr{padding-right:5px}.x-panel-header-default-framed-collapsed-left-tl,.x-panel-header-default-framed-collapsed-left-bl,.x-panel-header-default-framed-collapsed-left-ml{padding-left:5px}.x-panel-header-default-framed-collapsed-left-tc{height:5px}.x-panel-header-default-framed-collapsed-left-bc{height:5px}.x-panel-header-default-framed-collapsed-left-tl,.x-panel-header-default-framed-collapsed-left-bl,.x-panel-header-default-framed-collapsed-left-tr,.x-panel-header-default-framed-collapsed-left-br,.x-panel-header-default-framed-collapsed-left-tc,.x-panel-header-default-framed-collapsed-left-bc,.x-panel-header-default-framed-collapsed-left-ml,.x-panel-header-default-framed-collapsed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif)}.x-panel-header-default-framed-collapsed-left-ml,.x-panel-header-default-framed-collapsed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif);background-repeat:repeat-y}.x-panel-header-default-framed-collapsed-left-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-tl,.x-strict .x-ie7 .x-panel-header-default-framed-collapsed-left-bl{position:relative;right:0}.x-panel-header-default-framed-collapsed-left:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-default-framed-collapsed-left-corners.gif), sides:url(images/panel-header/panel-header-default-framed-collapsed-left-sides.gif)"}.x-panel .x-panel-header-default-framed-top{border-bottom-width:5px!important}.x-panel .x-panel-header-default-framed-right{border-left-width:5px!important}.x-panel .x-panel-header-default-framed-bottom{border-top-width:5px!important}.x-panel .x-panel-header-default-framed-left{border-right-width:5px!important}.x-nbr .x-panel-header-default-framed-collapsed-top{border-bottom-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-right{border-left-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-bottom{border-top-width:0!important}.x-nbr .x-panel-header-default-framed-collapsed-left{border-right-width:0!important}.x-panel-header-default-framed-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-default-framed-vertical .x-panel-header-text-container{background-color:#157fcc;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#157fcc)}.x-panel-header-default-framed .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-default-framed .x-panel-header-glyph{color:white;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-default-framed .x-panel-header-glyph{color:#8abfe5}.x-panel-header-default-framed-horizontal .x-panel-header-icon-before-title{margin:0 6px 0 0}.x-panel-header-default-framed-horizontal .x-panel-header-icon-after-title{margin:0 0 0 6px}.x-panel-header-default-framed-vertical .x-panel-header-icon-before-title{margin:0 0 6px 0}.x-panel-header-default-framed-vertical .x-panel-header-icon-after-title{margin:6px 0 0 0}.x-panel-header-default-framed-horizontal .x-tool-after-title{margin:0 0 0 6px}.x-panel-header-default-framed-horizontal .x-tool-before-title{margin:0 6px 0 0}.x-panel-header-default-framed-vertical .x-tool-after-title{margin:6px 0 0 0}.x-panel-header-default-framed-vertical .x-tool-before-title{margin:0 0 6px 0}.x-panel-default-framed-resizable{overflow:visible}.x-panel-default-framed-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-panel-default-framed-resizable .x-panel-handle-north-br{top:-5px}.x-panel-default-framed-resizable .x-panel-handle-south-br{bottom:-5px}.x-panel-default-framed-resizable .x-panel-handle-east-br{right:-5px}.x-panel-default-framed-resizable .x-panel-handle-west-br{left:-5px}.x-panel-default-framed-resizable .x-panel-handle-northwest-br{left:-5px;top:-5px}.x-panel-default-framed-resizable .x-panel-handle-northeast-br{right:-5px;top:-5px}.x-panel-default-framed-resizable .x-panel-handle-southeast-br{right:-5px;bottom:-5px}.x-panel-default-framed-resizable .x-panel-handle-southwest-br{left:-5px;bottom:-5px}.x-panel-default-framed-outer-border-l{border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-framed-outer-border-b{border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-default-framed-outer-border-bl{border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-framed-outer-border-r{border-right-color:#157fcc!important;border-right-width:1px!important}.x-panel-default-framed-outer-border-rl{border-right-color:#157fcc!important;border-right-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-framed-outer-border-rb{border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-default-framed-outer-border-rbl{border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-framed-outer-border-t{border-top-color:#157fcc!important;border-top-width:1px!important}.x-panel-default-framed-outer-border-tl{border-top-color:#157fcc!important;border-top-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-framed-outer-border-tb{border-top-color:#157fcc!important;border-top-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-default-framed-outer-border-tbl{border-top-color:#157fcc!important;border-top-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-framed-outer-border-tr{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important}.x-panel-default-framed-outer-border-trl{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-default-framed-outer-border-trb{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-default-framed-outer-border-trbl{border-color:#157fcc!important;border-width:1px!important}.x-tip-anchor{position:absolute;overflow:hidden;height:10px;width:10px;border-style:solid;border-width:5px;border-color:#e1e1e1;zoom:1}.x-content-box .x-tip-anchor{height:0;width:0}.x-tip-anchor-top{border-top-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-bottom{border-bottom-color:transparent;border-left-color:transparent;border-right-color:transparent;_border-bottom-color:pink;_border-left-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-left{border-top-color:transparent;border-bottom-color:transparent;border-left-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-left-color:pink;_filter:chroma(color=pink)}.x-tip-anchor-right{border-top-color:transparent;border-bottom-color:transparent;border-right-color:transparent;_border-top-color:pink;_border-bottom-color:pink;_border-right-color:pink;_filter:chroma(color=pink)}.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:#eaf3fa}.x-tip-default-mc{background-color:#eaf3fa}.x-nbr .x-tip-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tip-default-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-tip-default-tl{background-position:0 -6px}.x-tip-default-tr{background-position:right -9px}.x-tip-default-bl{background-position:0 -12px}.x-tip-default-br{background-position:right -15px}.x-tip-default-ml{background-position:0 top}.x-tip-default-mr{background-position:right top}.x-tip-default-tc{background-position:0 0}.x-tip-default-bc{background-position:0 -3px}.x-tip-default-tr,.x-tip-default-br,.x-tip-default-mr{padding-right:3px}.x-tip-default-tl,.x-tip-default-bl,.x-tip-default-ml{padding-left:3px}.x-tip-default-tc{height:3px}.x-tip-default-bc{height:3px}.x-tip-default-tl,.x-tip-default-bl,.x-tip-default-tr,.x-tip-default-br,.x-tip-default-tc,.x-tip-default-bc,.x-tip-default-ml,.x-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-corners.gif)}.x-tip-default-ml,.x-tip-default-mr{zoom:1;background-image:url(images/tip/tip-default-sides.gif);background-repeat:repeat-y}.x-tip-default-mc{padding:0}.x-strict .x-ie7 .x-tip-default-tl,.x-strict .x-ie7 .x-tip-default-bl{position:relative;right:0}.x-tip-default:after{display:none;content:"x-slicer:corners:url(images/tip/tip-default-corners.gif), sides:url(images/tip/tip-default-sides.gif)"}.x-tip-default{border-color:#e1e1e1}.x-tip-default .x-tool-img{background-image:url(images/tools/tool-sprites-dark.png);background-color:#eaf3fa}.x-tip-header-default .x-tool-after-title{margin:0 0 0 6px}.x-tip-header-default .x-tool-before-title{margin:0 6px 0 0}.x-tip-header-body-default{padding:3px 3px 0 3px}.x-tip-header-text-container-default{color:black;font-size:13px;font-weight:bold}.x-tip-body-default{padding:3px;color:black;font-size:13px;font-weight:normal}.x-tip-body-default a{color:black}.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:#eaf3fa}.x-tip-form-invalid-mc{background-color:#eaf3fa}.x-nbr .x-tip-form-invalid{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tip-form-invalid-frameInfo{font-family:th-3-3-3-3-1-1-1-1-2-2-2-2}.x-tip-form-invalid-tl{background-position:0 -6px}.x-tip-form-invalid-tr{background-position:right -9px}.x-tip-form-invalid-bl{background-position:0 -12px}.x-tip-form-invalid-br{background-position:right -15px}.x-tip-form-invalid-ml{background-position:0 top}.x-tip-form-invalid-mr{background-position:right top}.x-tip-form-invalid-tc{background-position:0 0}.x-tip-form-invalid-bc{background-position:0 -3px}.x-tip-form-invalid-tr,.x-tip-form-invalid-br,.x-tip-form-invalid-mr{padding-right:3px}.x-tip-form-invalid-tl,.x-tip-form-invalid-bl,.x-tip-form-invalid-ml{padding-left:3px}.x-tip-form-invalid-tc{height:3px}.x-tip-form-invalid-bc{height:3px}.x-tip-form-invalid-tl,.x-tip-form-invalid-bl,.x-tip-form-invalid-tr,.x-tip-form-invalid-br,.x-tip-form-invalid-tc,.x-tip-form-invalid-bc,.x-tip-form-invalid-ml,.x-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-corners.gif)}.x-tip-form-invalid-ml,.x-tip-form-invalid-mr{zoom:1;background-image:url(images/tip/tip-form-invalid-sides.gif);background-repeat:repeat-y}.x-tip-form-invalid-mc{padding:0}.x-strict .x-ie7 .x-tip-form-invalid-tl,.x-strict .x-ie7 .x-tip-form-invalid-bl{position:relative;right:0}.x-tip-form-invalid:after{display:none;content:"x-slicer:corners:url(images/tip/tip-form-invalid-corners.gif), sides:url(images/tip/tip-form-invalid-sides.gif)"}.x-tip-form-invalid{border-color:#e1e1e1}.x-tip-form-invalid .x-tool-img{background-image:url(images/tools/tool-sprites-dark.png);background-color:#eaf3fa}.x-tip-header-form-invalid .x-tool-after-title{margin:0 0 0 6px}.x-tip-header-form-invalid .x-tool-before-title{margin:0 6px 0 0}.x-tip-header-body-form-invalid{padding:3px 3px 0 3px}.x-tip-header-text-container-form-invalid{color:black;font-size:13px;font-weight:bold}.x-tip-body-form-invalid{padding:3px 3px 3px 22px;color:black;font-size:13px;font-weight:normal}.x-tip-body-form-invalid a{color:black}.x-tip-body-form-invalid{background:1px 1px no-repeat;background-image:url(images/form/exclamation.png)}.x-tip-body-form-invalid li{margin-bottom:4px}.x-tip-body-form-invalid li.last{margin-bottom:0}.x-btn-group-default{border-color:#dfeaf2;-webkit-box-shadow:white 0 1px 0 0 inset,white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;-moz-box-shadow:white 0 1px 0 0 inset,white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;box-shadow:white 0 1px 0 0 inset,white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset}.x-btn-group-header-default{padding:4px 5px;line-height:16px;background:#dfeaf2;-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}.x-btn-group-header-default .x-tool-img{background-image:url(images/tools/tool-sprites-dark.png);background-color:#dfeaf2}.x-btn-group-header-text-container-default{font:normal 13px helvetica,arial,verdana,sans-serif;line-height:16px;color:#666}.x-btn-group-body-default{padding:0 1px}.x-btn-group-body-default .x-table-layout{border-spacing:5px}.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:0 1px 0 1px;border-width:3px;border-style:solid;background-color:white}.x-btn-group-default-framed-mc{background-color:white}.x-nbr .x-btn-group-default-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-group-default-framed-frameInfo{font-family:dh-3-3-3-3-3-3-3-3-0-1-0-1}.x-btn-group-default-framed-tl{background-position:0 -6px}.x-btn-group-default-framed-tr{background-position:right -9px}.x-btn-group-default-framed-bl{background-position:0 -12px}.x-btn-group-default-framed-br{background-position:right -15px}.x-btn-group-default-framed-ml{background-position:0 top}.x-btn-group-default-framed-mr{background-position:right top}.x-btn-group-default-framed-tc{background-position:0 0}.x-btn-group-default-framed-bc{background-position:0 -3px}.x-btn-group-default-framed-tr,.x-btn-group-default-framed-br,.x-btn-group-default-framed-mr{padding-right:3px}.x-btn-group-default-framed-tl,.x-btn-group-default-framed-bl,.x-btn-group-default-framed-ml{padding-left:3px}.x-btn-group-default-framed-tc{height:3px}.x-btn-group-default-framed-bc{height:3px}.x-btn-group-default-framed-tl,.x-btn-group-default-framed-bl,.x-btn-group-default-framed-tr,.x-btn-group-default-framed-br,.x-btn-group-default-framed-tc,.x-btn-group-default-framed-bc,.x-btn-group-default-framed-ml,.x-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-corners.gif)}.x-btn-group-default-framed-ml,.x-btn-group-default-framed-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-sides.gif);background-repeat:repeat-y}.x-btn-group-default-framed-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-btn-group-default-framed-tl,.x-strict .x-ie7 .x-btn-group-default-framed-bl{position:relative;right:0}.x-btn-group-default-framed:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-corners.gif), sides:url(images/btn-group/btn-group-default-framed-sides.gif)"}.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:0 1px 0 1px;border-width:3px;border-style:solid;background-color:white}.x-btn-group-default-framed-notitle-mc{background-color:white}.x-nbr .x-btn-group-default-framed-notitle{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-btn-group-default-framed-notitle-frameInfo{font-family:dh-3-3-3-3-3-3-3-3-0-1-0-1}.x-btn-group-default-framed-notitle-tl{background-position:0 -6px}.x-btn-group-default-framed-notitle-tr{background-position:right -9px}.x-btn-group-default-framed-notitle-bl{background-position:0 -12px}.x-btn-group-default-framed-notitle-br{background-position:right -15px}.x-btn-group-default-framed-notitle-ml{background-position:0 top}.x-btn-group-default-framed-notitle-mr{background-position:right top}.x-btn-group-default-framed-notitle-tc{background-position:0 0}.x-btn-group-default-framed-notitle-bc{background-position:0 -3px}.x-btn-group-default-framed-notitle-tr,.x-btn-group-default-framed-notitle-br,.x-btn-group-default-framed-notitle-mr{padding-right:3px}.x-btn-group-default-framed-notitle-tl,.x-btn-group-default-framed-notitle-bl,.x-btn-group-default-framed-notitle-ml{padding-left:3px}.x-btn-group-default-framed-notitle-tc{height:3px}.x-btn-group-default-framed-notitle-bc{height:3px}.x-btn-group-default-framed-notitle-tl,.x-btn-group-default-framed-notitle-bl,.x-btn-group-default-framed-notitle-tr,.x-btn-group-default-framed-notitle-br,.x-btn-group-default-framed-notitle-tc,.x-btn-group-default-framed-notitle-bc,.x-btn-group-default-framed-notitle-ml,.x-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-corners.gif)}.x-btn-group-default-framed-notitle-ml,.x-btn-group-default-framed-notitle-mr{zoom:1;background-image:url(images/btn-group/btn-group-default-framed-notitle-sides.gif);background-repeat:repeat-y}.x-btn-group-default-framed-notitle-mc{padding:0 1px 0 1px}.x-strict .x-ie7 .x-btn-group-default-framed-notitle-tl,.x-strict .x-ie7 .x-btn-group-default-framed-notitle-bl{position:relative;right:0}.x-btn-group-default-framed-notitle:after{display:none;content:"x-slicer:corners:url(images/btn-group/btn-group-default-framed-notitle-corners.gif), sides:url(images/btn-group/btn-group-default-framed-notitle-sides.gif)"}.x-btn-group-default-framed{border-color:#dfeaf2;-webkit-box-shadow:white 0 1px 0 0 inset,white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;-moz-box-shadow:white 0 1px 0 0 inset,white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset;box-shadow:white 0 1px 0 0 inset,white 0 -1px 0 0 inset,white -1px 0 0 0 inset,white 1px 0 0 0 inset}.x-btn-group-header-default-framed{padding:4px 5px;line-height:16px;background:#dfeaf2;-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}.x-btn-group-header-default-framed .x-tool-img{background-image:url(images/tools/tool-sprites-dark.png);background-color:#dfeaf2}.x-btn-group-header-text-container-default-framed{font:normal 13px helvetica,arial,verdana,sans-serif;line-height:16px;color:#666}.x-btn-group-body-default-framed{padding:0 1px 0 1px}.x-btn-group-body-default-framed .x-table-layout{border-spacing:5px}.x-window-ghost{filter:alpha(opacity=50);opacity:.5}.x-window-default{border-color:#3892d3;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px}.x-window-default{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:0;border-width:5px;border-style:solid;background-color:white}.x-window-default-mc{background-color:white}.x-nbr .x-window-default{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-default-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-0-0-0-0}.x-window-default-tl{background-position:0 -10px}.x-window-default-tr{background-position:right -15px}.x-window-default-bl{background-position:0 -20px}.x-window-default-br{background-position:right -25px}.x-window-default-ml{background-position:0 top}.x-window-default-mr{background-position:right top}.x-window-default-tc{background-position:0 0}.x-window-default-bc{background-position:0 -5px}.x-window-default-tr,.x-window-default-br,.x-window-default-mr{padding-right:5px}.x-window-default-tl,.x-window-default-bl,.x-window-default-ml{padding-left:5px}.x-window-default-tc{height:5px}.x-window-default-bc{height:5px}.x-window-default-tl,.x-window-default-bl,.x-window-default-tr,.x-window-default-br,.x-window-default-tc,.x-window-default-bc,.x-window-default-ml,.x-window-default-mr{zoom:1;background-image:url(images/window/window-default-corners.gif)}.x-window-default-ml,.x-window-default-mr{zoom:1;background-image:url(images/window/window-default-sides.gif);background-repeat:repeat-y}.x-window-default-mc{padding:0}.x-strict .x-ie7 .x-window-default-tl,.x-strict .x-ie7 .x-window-default-bl{position:relative;right:0}.x-window-default:after{display:none;content:"x-slicer:corners:url(images/window/window-default-corners.gif), sides:url(images/window/window-default-sides.gif)"}.x-window-body-default{border-color:#3892d3;border-width:1px;border-style:solid;background:white;color:black}.x-window-header-default{font-size:13px;border-color:#3892d3;zoom:1;background-color:#3892d3}.x-window-header-default .x-tool-img{background-color:#3892d3}.x-window-header-default-vertical .x-window-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-window-header-default-vertical .x-window-header-text-container{background-color:#3892d3;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#3892d3)}.x-window-header-text-container-default{color:white;font-weight:bold;line-height:15px;font-family:arial,helvetica,verdana,sans-serif;font-size:13px;padding:1px 0 0;text-transform:none}.x-window-header-default-top{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 5px 5px 5px;border-width:5px 5px 5px 5px;border-style:solid;background-color:#3892d3}.x-window-header-default-top-mc{background-color:#3892d3}.x-nbr .x-window-header-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-top-frameInfo{font-family:dh-4-4-0-0-5-5-5-5-5-5-5-5}.x-window-header-default-top-tl{background-position:0 -10px}.x-window-header-default-top-tr{background-position:right -15px}.x-window-header-default-top-bl{background-position:0 -20px}.x-window-header-default-top-br{background-position:right -25px}.x-window-header-default-top-ml{background-position:0 top}.x-window-header-default-top-mr{background-position:right top}.x-window-header-default-top-tc{background-position:0 0}.x-window-header-default-top-bc{background-position:0 -5px}.x-window-header-default-top-tr,.x-window-header-default-top-br,.x-window-header-default-top-mr{padding-right:5px}.x-window-header-default-top-tl,.x-window-header-default-top-bl,.x-window-header-default-top-ml{padding-left:5px}.x-window-header-default-top-tc{height:5px}.x-window-header-default-top-bc{height:5px}.x-window-header-default-top-tl,.x-window-header-default-top-bl,.x-window-header-default-top-tr,.x-window-header-default-top-br,.x-window-header-default-top-tc,.x-window-header-default-top-bc,.x-window-header-default-top-ml,.x-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-corners.gif)}.x-window-header-default-top-ml,.x-window-header-default-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-top-sides.gif);background-repeat:repeat-y}.x-window-header-default-top-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-window-header-default-top-tl,.x-strict .x-ie7 .x-window-header-default-top-bl{position:relative;right:0}.x-window-header-default-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-top-corners.gif), sides:url(images/window-header/window-header-default-top-sides.gif)"}.x-window-header-default-right{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:4px;-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:5px 5px 5px 5px;border-width:5px 5px 5px 5px;border-style:solid;background-color:#3892d3}.x-window-header-default-right-mc{background-color:#3892d3}.x-nbr .x-window-header-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-right-frameInfo{font-family:dh-0-4-4-0-5-5-5-5-5-5-5-5}.x-window-header-default-right-tl{background-position:0 -10px}.x-window-header-default-right-tr{background-position:right -15px}.x-window-header-default-right-bl{background-position:0 -20px}.x-window-header-default-right-br{background-position:right -25px}.x-window-header-default-right-ml{background-position:0 top}.x-window-header-default-right-mr{background-position:right top}.x-window-header-default-right-tc{background-position:0 0}.x-window-header-default-right-bc{background-position:0 -5px}.x-window-header-default-right-tr,.x-window-header-default-right-br,.x-window-header-default-right-mr{padding-right:5px}.x-window-header-default-right-tl,.x-window-header-default-right-bl,.x-window-header-default-right-ml{padding-left:5px}.x-window-header-default-right-tc{height:5px}.x-window-header-default-right-bc{height:5px}.x-window-header-default-right-tl,.x-window-header-default-right-bl,.x-window-header-default-right-tr,.x-window-header-default-right-br,.x-window-header-default-right-tc,.x-window-header-default-right-bc,.x-window-header-default-right-ml,.x-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-corners.gif)}.x-window-header-default-right-ml,.x-window-header-default-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-right-sides.gif);background-repeat:repeat-y}.x-window-header-default-right-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-window-header-default-right-tl,.x-strict .x-ie7 .x-window-header-default-right-bl{position:relative;right:0}.x-window-header-default-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-right-corners.gif), sides:url(images/window-header/window-header-default-right-sides.gif)"}.x-window-header-default-bottom{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 5px 5px 5px;border-width:5px 5px 5px 5px;border-style:solid;background-color:#3892d3}.x-window-header-default-bottom-mc{background-color:#3892d3}.x-nbr .x-window-header-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-bottom-frameInfo{font-family:dh-0-0-4-4-5-5-5-5-5-5-5-5}.x-window-header-default-bottom-tl{background-position:0 -10px}.x-window-header-default-bottom-tr{background-position:right -15px}.x-window-header-default-bottom-bl{background-position:0 -20px}.x-window-header-default-bottom-br{background-position:right -25px}.x-window-header-default-bottom-ml{background-position:0 top}.x-window-header-default-bottom-mr{background-position:right top}.x-window-header-default-bottom-tc{background-position:0 0}.x-window-header-default-bottom-bc{background-position:0 -5px}.x-window-header-default-bottom-tr,.x-window-header-default-bottom-br,.x-window-header-default-bottom-mr{padding-right:5px}.x-window-header-default-bottom-tl,.x-window-header-default-bottom-bl,.x-window-header-default-bottom-ml{padding-left:5px}.x-window-header-default-bottom-tc{height:5px}.x-window-header-default-bottom-bc{height:5px}.x-window-header-default-bottom-tl,.x-window-header-default-bottom-bl,.x-window-header-default-bottom-tr,.x-window-header-default-bottom-br,.x-window-header-default-bottom-tc,.x-window-header-default-bottom-bc,.x-window-header-default-bottom-ml,.x-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-corners.gif)}.x-window-header-default-bottom-ml,.x-window-header-default-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-bottom-sides.gif);background-repeat:repeat-y}.x-window-header-default-bottom-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-window-header-default-bottom-tl,.x-strict .x-ie7 .x-window-header-default-bottom-bl{position:relative;right:0}.x-window-header-default-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-bottom-corners.gif), sides:url(images/window-header/window-header-default-bottom-sides.gif)"}.x-window-header-default-left{-moz-border-radius-topleft:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;padding:5px 5px 5px 5px;border-width:5px 5px 5px 5px;border-style:solid;background-color:#3892d3}.x-window-header-default-left-mc{background-color:#3892d3}.x-nbr .x-window-header-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-left-frameInfo{font-family:dh-4-0-0-4-5-5-5-5-5-5-5-5}.x-window-header-default-left-tl{background-position:0 -10px}.x-window-header-default-left-tr{background-position:right -15px}.x-window-header-default-left-bl{background-position:0 -20px}.x-window-header-default-left-br{background-position:right -25px}.x-window-header-default-left-ml{background-position:0 top}.x-window-header-default-left-mr{background-position:right top}.x-window-header-default-left-tc{background-position:0 0}.x-window-header-default-left-bc{background-position:0 -5px}.x-window-header-default-left-tr,.x-window-header-default-left-br,.x-window-header-default-left-mr{padding-right:5px}.x-window-header-default-left-tl,.x-window-header-default-left-bl,.x-window-header-default-left-ml{padding-left:5px}.x-window-header-default-left-tc{height:5px}.x-window-header-default-left-bc{height:5px}.x-window-header-default-left-tl,.x-window-header-default-left-bl,.x-window-header-default-left-tr,.x-window-header-default-left-br,.x-window-header-default-left-tc,.x-window-header-default-left-bc,.x-window-header-default-left-ml,.x-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-corners.gif)}.x-window-header-default-left-ml,.x-window-header-default-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-left-sides.gif);background-repeat:repeat-y}.x-window-header-default-left-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-window-header-default-left-tl,.x-strict .x-ie7 .x-window-header-default-left-bl{position:relative;right:0}.x-window-header-default-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-left-corners.gif), sides:url(images/window-header/window-header-default-left-sides.gif)"}.x-window-header-default-collapsed-top{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#3892d3}.x-window-header-default-collapsed-top-mc{background-color:#3892d3}.x-nbr .x-window-header-default-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-top-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-window-header-default-collapsed-top-tl{background-position:0 -10px}.x-window-header-default-collapsed-top-tr{background-position:right -15px}.x-window-header-default-collapsed-top-bl{background-position:0 -20px}.x-window-header-default-collapsed-top-br{background-position:right -25px}.x-window-header-default-collapsed-top-ml{background-position:0 top}.x-window-header-default-collapsed-top-mr{background-position:right top}.x-window-header-default-collapsed-top-tc{background-position:0 0}.x-window-header-default-collapsed-top-bc{background-position:0 -5px}.x-window-header-default-collapsed-top-tr,.x-window-header-default-collapsed-top-br,.x-window-header-default-collapsed-top-mr{padding-right:5px}.x-window-header-default-collapsed-top-tl,.x-window-header-default-collapsed-top-bl,.x-window-header-default-collapsed-top-ml{padding-left:5px}.x-window-header-default-collapsed-top-tc{height:5px}.x-window-header-default-collapsed-top-bc{height:5px}.x-window-header-default-collapsed-top-tl,.x-window-header-default-collapsed-top-bl,.x-window-header-default-collapsed-top-tr,.x-window-header-default-collapsed-top-br,.x-window-header-default-collapsed-top-tc,.x-window-header-default-collapsed-top-bc,.x-window-header-default-collapsed-top-ml,.x-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-corners.gif)}.x-window-header-default-collapsed-top-ml,.x-window-header-default-collapsed-top-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-top-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-top-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-window-header-default-collapsed-top-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-top-bl{position:relative;right:0}.x-window-header-default-collapsed-top:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-top-corners.gif), sides:url(images/window-header/window-header-default-collapsed-top-sides.gif)"}.x-window-header-default-collapsed-right{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#3892d3}.x-window-header-default-collapsed-right-mc{background-color:#3892d3}.x-nbr .x-window-header-default-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-right-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-window-header-default-collapsed-right-tl{background-position:0 -10px}.x-window-header-default-collapsed-right-tr{background-position:right -15px}.x-window-header-default-collapsed-right-bl{background-position:0 -20px}.x-window-header-default-collapsed-right-br{background-position:right -25px}.x-window-header-default-collapsed-right-ml{background-position:0 top}.x-window-header-default-collapsed-right-mr{background-position:right top}.x-window-header-default-collapsed-right-tc{background-position:0 0}.x-window-header-default-collapsed-right-bc{background-position:0 -5px}.x-window-header-default-collapsed-right-tr,.x-window-header-default-collapsed-right-br,.x-window-header-default-collapsed-right-mr{padding-right:5px}.x-window-header-default-collapsed-right-tl,.x-window-header-default-collapsed-right-bl,.x-window-header-default-collapsed-right-ml{padding-left:5px}.x-window-header-default-collapsed-right-tc{height:5px}.x-window-header-default-collapsed-right-bc{height:5px}.x-window-header-default-collapsed-right-tl,.x-window-header-default-collapsed-right-bl,.x-window-header-default-collapsed-right-tr,.x-window-header-default-collapsed-right-br,.x-window-header-default-collapsed-right-tc,.x-window-header-default-collapsed-right-bc,.x-window-header-default-collapsed-right-ml,.x-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-corners.gif)}.x-window-header-default-collapsed-right-ml,.x-window-header-default-collapsed-right-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-right-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-right-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-window-header-default-collapsed-right-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-right-bl{position:relative;right:0}.x-window-header-default-collapsed-right:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-right-corners.gif), sides:url(images/window-header/window-header-default-collapsed-right-sides.gif)"}.x-window-header-default-collapsed-bottom{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#3892d3}.x-window-header-default-collapsed-bottom-mc{background-color:#3892d3}.x-nbr .x-window-header-default-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-bottom-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-window-header-default-collapsed-bottom-tl{background-position:0 -10px}.x-window-header-default-collapsed-bottom-tr{background-position:right -15px}.x-window-header-default-collapsed-bottom-bl{background-position:0 -20px}.x-window-header-default-collapsed-bottom-br{background-position:right -25px}.x-window-header-default-collapsed-bottom-ml{background-position:0 top}.x-window-header-default-collapsed-bottom-mr{background-position:right top}.x-window-header-default-collapsed-bottom-tc{background-position:0 0}.x-window-header-default-collapsed-bottom-bc{background-position:0 -5px}.x-window-header-default-collapsed-bottom-tr,.x-window-header-default-collapsed-bottom-br,.x-window-header-default-collapsed-bottom-mr{padding-right:5px}.x-window-header-default-collapsed-bottom-tl,.x-window-header-default-collapsed-bottom-bl,.x-window-header-default-collapsed-bottom-ml{padding-left:5px}.x-window-header-default-collapsed-bottom-tc{height:5px}.x-window-header-default-collapsed-bottom-bc{height:5px}.x-window-header-default-collapsed-bottom-tl,.x-window-header-default-collapsed-bottom-bl,.x-window-header-default-collapsed-bottom-tr,.x-window-header-default-collapsed-bottom-br,.x-window-header-default-collapsed-bottom-tc,.x-window-header-default-collapsed-bottom-bc,.x-window-header-default-collapsed-bottom-ml,.x-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-corners.gif)}.x-window-header-default-collapsed-bottom-ml,.x-window-header-default-collapsed-bottom-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-bottom-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-bottom-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-bottom-bl{position:relative;right:0}.x-window-header-default-collapsed-bottom:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-bottom-corners.gif), sides:url(images/window-header/window-header-default-collapsed-bottom-sides.gif)"}.x-window-header-default-collapsed-left{-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#3892d3}.x-window-header-default-collapsed-left-mc{background-color:#3892d3}.x-nbr .x-window-header-default-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-window-header-default-collapsed-left-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-window-header-default-collapsed-left-tl{background-position:0 -10px}.x-window-header-default-collapsed-left-tr{background-position:right -15px}.x-window-header-default-collapsed-left-bl{background-position:0 -20px}.x-window-header-default-collapsed-left-br{background-position:right -25px}.x-window-header-default-collapsed-left-ml{background-position:0 top}.x-window-header-default-collapsed-left-mr{background-position:right top}.x-window-header-default-collapsed-left-tc{background-position:0 0}.x-window-header-default-collapsed-left-bc{background-position:0 -5px}.x-window-header-default-collapsed-left-tr,.x-window-header-default-collapsed-left-br,.x-window-header-default-collapsed-left-mr{padding-right:5px}.x-window-header-default-collapsed-left-tl,.x-window-header-default-collapsed-left-bl,.x-window-header-default-collapsed-left-ml{padding-left:5px}.x-window-header-default-collapsed-left-tc{height:5px}.x-window-header-default-collapsed-left-bc{height:5px}.x-window-header-default-collapsed-left-tl,.x-window-header-default-collapsed-left-bl,.x-window-header-default-collapsed-left-tr,.x-window-header-default-collapsed-left-br,.x-window-header-default-collapsed-left-tc,.x-window-header-default-collapsed-left-bc,.x-window-header-default-collapsed-left-ml,.x-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-corners.gif)}.x-window-header-default-collapsed-left-ml,.x-window-header-default-collapsed-left-mr{zoom:1;background-image:url(images/window-header/window-header-default-collapsed-left-sides.gif);background-repeat:repeat-y}.x-window-header-default-collapsed-left-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-window-header-default-collapsed-left-tl,.x-strict .x-ie7 .x-window-header-default-collapsed-left-bl{position:relative;right:0}.x-window-header-default-collapsed-left:after{display:none;content:"x-slicer:corners:url(images/window-header/window-header-default-collapsed-left-corners.gif), sides:url(images/window-header/window-header-default-collapsed-left-sides.gif)"}.x-window-header-default .x-window-header-icon{width:16px;height:16px;color:white;font-size:16px;line-height:16px;background-position:center center}.x-window-header-default .x-window-header-glyph{color:white;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-window-header-default .x-window-header-glyph{color:#9bc8e9}.x-window-header-default-horizontal .x-window-header-icon-before-title{margin:0 6px 0 0}.x-window-header-default-horizontal .x-window-header-icon-after-title{margin:0 0 0 6px}.x-window-header-default-vertical .x-window-header-icon-before-title{margin:0 0 6px 0}.x-window-header-default-vertical .x-window-header-icon-after-title{margin:6px 0 0 0}.x-window-header-default-horizontal .x-tool-after-title{margin:0 0 0 6px}.x-window-header-default-horizontal .x-tool-before-title{margin:0 6px 0 0}.x-window-header-default-vertical .x-tool-after-title{margin:6px 0 0 0}.x-window-header-default-vertical .x-tool-before-title{margin:0 0 6px 0}.x-window-header-default{border-width:5px!important}.x-nbr .x-window-default-collapsed .x-window-header{border-width:0!important}.x-window-default-resizable{overflow:visible}.x-window-default-resizable .x-window-handle-north-br{top:-5px}.x-window-default-resizable .x-window-handle-south-br{bottom:-5px}.x-window-default-resizable .x-window-handle-east-br{right:-5px}.x-window-default-resizable .x-window-handle-west-br{left:-5px}.x-window-default-resizable .x-window-handle-northwest-br{left:-5px;top:-5px}.x-window-default-resizable .x-window-handle-northeast-br{right:-5px;top:-5px}.x-window-default-resizable .x-window-handle-southeast-br{right:-5px;bottom:-5px}.x-window-default-resizable .x-window-handle-southwest-br{left:-5px;bottom:-5px}.x-window-default-outer-border-l{border-left-color:#3892d3!important;border-left-width:1px!important}.x-window-default-outer-border-b{border-bottom-color:#3892d3!important;border-bottom-width:1px!important}.x-window-default-outer-border-bl{border-bottom-color:#3892d3!important;border-bottom-width:1px!important;border-left-color:#3892d3!important;border-left-width:1px!important}.x-window-default-outer-border-r{border-right-color:#3892d3!important;border-right-width:1px!important}.x-window-default-outer-border-rl{border-right-color:#3892d3!important;border-right-width:1px!important;border-left-color:#3892d3!important;border-left-width:1px!important}.x-window-default-outer-border-rb{border-right-color:#3892d3!important;border-right-width:1px!important;border-bottom-color:#3892d3!important;border-bottom-width:1px!important}.x-window-default-outer-border-rbl{border-right-color:#3892d3!important;border-right-width:1px!important;border-bottom-color:#3892d3!important;border-bottom-width:1px!important;border-left-color:#3892d3!important;border-left-width:1px!important}.x-window-default-outer-border-t{border-top-color:#3892d3!important;border-top-width:1px!important}.x-window-default-outer-border-tl{border-top-color:#3892d3!important;border-top-width:1px!important;border-left-color:#3892d3!important;border-left-width:1px!important}.x-window-default-outer-border-tb{border-top-color:#3892d3!important;border-top-width:1px!important;border-bottom-color:#3892d3!important;border-bottom-width:1px!important}.x-window-default-outer-border-tbl{border-top-color:#3892d3!important;border-top-width:1px!important;border-bottom-color:#3892d3!important;border-bottom-width:1px!important;border-left-color:#3892d3!important;border-left-width:1px!important}.x-window-default-outer-border-tr{border-top-color:#3892d3!important;border-top-width:1px!important;border-right-color:#3892d3!important;border-right-width:1px!important}.x-window-default-outer-border-trl{border-top-color:#3892d3!important;border-top-width:1px!important;border-right-color:#3892d3!important;border-right-width:1px!important;border-left-color:#3892d3!important;border-left-width:1px!important}.x-window-default-outer-border-trb{border-top-color:#3892d3!important;border-top-width:1px!important;border-right-color:#3892d3!important;border-right-width:1px!important;border-bottom-color:#3892d3!important;border-bottom-width:1px!important}.x-window-default-outer-border-trbl{border-color:#3892d3!important;border-width:1px!important}.x-form-invalid-under{padding:2px 2px 2px 20px;color:#cf4c35;font:normal 13px helvetica,arial,verdana,sans-serif;line-height:16px;background:no-repeat 0 2px;background-image:url(images/form/exclamation.png)}div.x-lbl-top-err-icon{margin-bottom:4px}.x-form-invalid-icon{width:16px;height:16px;margin:0 5px;background-image:url(images/form/exclamation.png);background-repeat:no-repeat}.x-form-item-label{color:black;font:normal 13px/17px helvetica,arial,verdana,sans-serif;margin-top:4px}.x-autocontainer-form-item,.x-anchor-form-item,.x-vbox-form-item,.x-table-form-item{margin-bottom:5px}.x-ie6 .x-form-form-item td{border-top-width:0}.x-ie6 td.x-form-item-pad{height:5px}.x-form-field{color:black}.x-form-item,.x-form-field{font:normal 13px helvetica,arial,verdana,sans-serif}.x-form-type-text textarea.x-form-invalid-field,.x-form-type-text input.x-form-invalid-field,.x-form-type-password textarea.x-form-invalid-field,.x-form-type-password input.x-form-invalid-field,.x-form-type-number textarea.x-form-invalid-field,.x-form-type-number input.x-form-invalid-field,.x-form-type-email textarea.x-form-invalid-field,.x-form-type-email input.x-form-invalid-field,.x-form-type-search textarea.x-form-invalid-field,.x-form-type-search input.x-form-invalid-field,.x-form-type-tel textarea.x-form-invalid-field,.x-form-type-tel input.x-form-invalid-field{background-color:white;border-color:#cf4c35}.x-item-disabled .x-form-item-label,.x-item-disabled .x-form-field,.x-item-disabled .x-form-display-field,.x-item-disabled .x-form-cb-label,.x-item-disabled .x-form-trigger{filter:alpha(opacity=30);opacity:.3}.x-form-text{color:black;padding:4px 6px 3px 6px;background:white repeat-x 0 0;border-width:1px;border-style:solid;border-color:silver #d9d9d9 #d9d9d9;height:24px;line-height:15px}.x-content-box .x-form-text{height:15px}.x-form-focus{border-color:#3892d3}.x-form-empty-field,textarea.x-form-empty-field{color:gray}.x-quirks .x-ie .x-form-text,.x-ie7m .x-form-text{margin-top:-1px;margin-bottom:-1px}.x-form-textarea{line-height:normal;height:auto}.x-form-display-field-body{height:24px}.x-form-display-field{font:normal 13px/17px helvetica,arial,verdana,sans-serif;color:black;margin-top:4px}.x-message-box .x-window-body{background-color:white;border-width:0}.x-message-box-info,.x-message-box-warning,.x-message-box-question,.x-message-box-error{background-position:top left;background-repeat:no-repeat}.x-message-box-info{background-image:url(images/shared/icon-info.png)}.x-message-box-warning{background-image:url(images/shared/icon-warning.png)}.x-message-box-question{background-image:url(images/shared/icon-question.png)}.x-message-box-error{background-image:url(images/shared/icon-error.png)}.x-form-cb-wrap{height:24px}.x-form-cb{margin-top:5px}.x-form-checkbox{width:15px;height:15px;background:url(images/form/checkbox.png) no-repeat}.x-form-cb-checked .x-form-checkbox{background-position:0 -15px}.x-form-checkbox-focus{background-position:-15px 0}.x-form-cb-checked .x-form-checkbox-focus{background-position:-15px -15px}.x-form-cb-label{margin-top:4px;font:normal 13px/17px helvetica,arial,verdana,sans-serif}.x-form-cb-label-before{margin-right:4px}.x-form-cb-label-after{margin-left:4px}.x-form-checkboxgroup-body{padding:0 4px}.x-form-invalid .x-form-checkboxgroup-body{border:1px solid #cf4c35}.x-check-group-alt{background:#f5f5f5;border-top:1px dotted #f5f5f5;border-bottom:1px dotted #f5f5f5}.x-form-check-group-label{color:black;padding:2px;margin:0 30px 5px 0;border-width:0 0 1px 0;border-style:solid;border-color:black}.x-fieldset{border:1px solid #b5b8c8;padding:0 10px;margin:0 0 10px}.x-ie8m .x-fieldset,.x-quirks .x-ie .x-fieldset{padding-top:0}.x-ie8m .x-fieldset .x-fieldset-body,.x-quirks .x-ie .x-fieldset .x-fieldset-body{padding-top:0}.x-fieldset-header-checkbox{line-height:16px;margin:1px 3px 0 0}.x-fieldset-header{padding:0 3px 1px}.x-fieldset-header .x-tool{margin-top:1px;padding:0}.x-fieldset-header-text{font:12px/16px bold helvetica,arial,verdana,sans-serif;color:black;padding:1px 0}.x-fieldset-header-text-collapsible{cursor:pointer}.x-fieldset-with-title .x-fieldset-header-checkbox,.x-fieldset-with-title .x-tool{margin:1px 3px 0 0}.x-webkit .x-fieldset-header{-webkit-padding-start:3px;-webkit-padding-end:3px}.x-opera .x-fieldset-with-legend{margin-top:-1px}.x-opera.x-mac .x-fieldset-header-text{padding:2px 0 0}.x-strict .x-ie8 .x-fieldset-header{margin-bottom:-1px}.x-strict .x-ie8 .x-fieldset-header .x-tool,.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-text,.x-strict .x-ie8 .x-fieldset-header .x-fieldset-header-checkbox{position:relative;top:-1px}.x-quirks .x-ie .x-fieldset-header,.x-ie8m .x-fieldset-header{padding-left:1px;padding-right:1px}.x-fieldset-collapsed .x-fieldset-body{display:none}.x-fieldset-collapsed{padding-bottom:0!important;border-width:1px 1px 0 1px!important;border-left-color:transparent!important;border-right-color:transparent!important}.x-ie6 .x-fieldset-collapsed{border-width:1px 0 0 0!important;padding-bottom:0!important;margin-left:1px;margin-right:1px}.x-ie .x-fieldset-bwrap{zoom:1}.x-fieldset .x-tool-toggle{background-image:url(images/fieldset/collapse-tool.png);background-position:0 0}.x-fieldset .x-tool-over .x-tool-toggle{background-position:0 -15px}.x-fieldset-collapsed .x-tool-toggle{background-position:-15px 0}.x-fieldset-collapsed .x-tool-over .x-tool-toggle{background-position:-15px -15px}.x-ie .x-fieldset-noborder legend{position:relative;margin-bottom:23px}.x-ie .x-fieldset-noborder legend span{position:absolute;left:16px}.x-fieldset{overflow:hidden}.x-fieldset-bwrap{overflow:hidden;zoom:1}.x-fieldset-body{overflow:hidden}.x-form-radio{width:15px;height:15px;background:url(images/form/radio.png) no-repeat}.x-form-cb-checked .x-form-radio{background-position:0 -15px}.x-form-radio-focus{background-position:-15px 0}.x-form-cb-checked .x-form-radio-focus{background-position:-15px -15px}.x-form-trigger{background:url(images/form/trigger.png);width:22px}.x-trigger-cell{background-color:white;width:22px}.x-form-trigger-over{background-position:-22px 0}.x-form-trigger-wrap-focus .x-form-trigger{background-position:-66px 0}.x-form-trigger-wrap-focus .x-form-trigger-over{background-position:-88px 0}.x-form-trigger-click,.x-form-trigger-wrap-focus .x-form-trigger-click{background-position:-44px 0}.x-form-clear-trigger{background-image:url(images/form/clear-trigger.png)}.x-form-search-trigger{background-image:url(images/form/search-trigger.png)}.x-quirks .prefixie6 .x-form-trigger-input-cell{height:24px}.x-quirks .prefixie6 .x-field-toolbar .x-form-trigger-input-cell{height:24px}div.x-form-spinner-up,div.x-form-spinner-down{background-image:url(images/form/spinner.png);background-color:white;width:22px;height:11px}.x-form-spinner-down{background-position:0 -11px}.x-form-trigger-wrap-focus .x-form-spinner-down{background-position:-66px -11px}.x-form-trigger-wrap .x-form-spinner-down-over{background-position:-22px -11px}.x-form-trigger-wrap-focus .x-form-spinner-down-over{background-position:-88px -11px}.x-form-trigger-wrap .x-form-spinner-down-click{background-position:-44px -11px}.x-tbar-page-number{width:30px}.x-tbar-page-first{background-image:url(images/grid/page-first.png)}.x-tbar-page-prev{background-image:url(images/grid/page-prev.png)}.x-tbar-page-next{background-image:url(images/grid/page-next.png)}.x-tbar-page-last{background-image:url(images/grid/page-last.png)}.x-tbar-loading{background-image:url(images/grid/refresh.png)}.x-boundlist{border-width:1px;border-style:solid;border-color:#e1e1e1;background:white}.x-strict .x-ie7m .x-boundlist-list-ct{position:relative}.x-boundlist-item{padding:0 6px;line-height:22px;cursor:pointer;cursor:hand;position:relative;zoom:1;border-width:1px;border-style:dotted;border-color:white}.x-boundlist-selected{background:#c1ddf1;border-color:#c1ddf1}.x-boundlist-item-over{background:#d6e8f6;border-color:#d6e8f6}.x-boundlist-floating{border-top-width:0}.x-boundlist-above{border-top-width:1px;border-bottom-width:1px}.x-datepicker{border-width:1px;border-style:solid;border-color:#e1e1e1;background-color:white;width:212px}.x-datepicker-header{padding:4px 6px;text-align:center;background-image:none;background-color:#f5f5f5}.x-datepicker-arrow{width:12px;height:12px;top:9px;cursor:pointer;background-color:#f5f5f5;filter:alpha(opacity=70);opacity:.7}a.x-datepicker-arrow:hover{filter:alpha(opacity=100);opacity:1}.x-datepicker-next{right:6px;background-image:url(images/datepicker/arrow-right.png)}.x-datepicker-prev{left:6px;background-image:url(images/datepicker/arrow-left.png)}.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}.x-datepicker-month .x-btn-inner{color:#3892d3}.x-datepicker-month .x-btn-split-right{background-image:url(images/datepicker/month-arrow.png);padding-right:8px}.x-datepicker-column-header{width:30px;color:black;font:bold 13px helvetica,arial,verdana,sans-serif;text-align:right;background-image:none;background-color:white}.x-datepicker-column-header-inner{line-height:25px;padding:0 9px 0 0}.x-datepicker-cell{text-align:right;border-width:1px;border-style:solid;border-color:white}.x-datepicker-date{padding:0 7px 0 0;font:normal 13px helvetica,arial,verdana,sans-serif;color:black;cursor:pointer;line-height:23px}a.x-datepicker-date:hover{color:black;background-color:#eaf3fa}.x-datepicker-selected{border-style:solid;border-color:#3892d3}.x-datepicker-selected .x-datepicker-date{background-color:#d6e8f6;font-weight:bold}.x-datepicker-today{border-color:darkred;border-style:solid}.x-datepicker-prevday .x-datepicker-date,.x-datepicker-nextday .x-datepicker-date{color:#bfbfbf}.x-datepicker-disabled a.x-datepicker-date{background-color:#eee;cursor:default;color:gray}.x-datepicker-disabled a.x-datepicker-date:hover{background-color:#eee}.x-datepicker-footer,.x-monthpicker-buttons{padding:3px 0;background-image:none;background-color:#f5f5f5;text-align:center}.x-datepicker-footer .x-btn,.x-monthpicker-buttons .x-btn{margin:0 3px 0 2px}.x-monthpicker{width:212px;border-width:1px;border-style:solid;border-color:#e1e1e1;background-color:white}.x-monthpicker-months{border-width:0 1px 0 0;border-color:#e1e1e1;border-style:solid;width:105px}.x-monthpicker-months .x-monthpicker-item{width:52px}.x-monthpicker-years{width:105px}.x-monthpicker-years .x-monthpicker-item{width:52px}.x-monthpicker-item{margin:5px 0 5px;font:normal 13px helvetica,arial,verdana,sans-serif;text-align:center}.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}a.x-monthpicker-item-inner:hover{background-color:#eaf3fa}.x-monthpicker-selected{background-color:#d6e8f6;border-style:solid;border-color:#3892d3}.x-monthpicker-yearnav{height:34px}.x-monthpicker-yearnav-button-ct{width:52px}.x-monthpicker-yearnav-button{height:12px;width:12px;cursor:pointer;margin-top:11px;filter:alpha(opacity=70);opacity:.7;background-color:white}a.x-monthpicker-yearnav-button:hover{filter:alpha(opacity=100);opacity:1}.x-monthpicker-yearnav-next{background-image:url(images/datepicker/arrow-right.png);background-position:0 0}.x-monthpicker-yearnav-next-over{background-position:0 0}.x-monthpicker-yearnav-prev{background-image:url(images/datepicker/arrow-left.png);background-position:0 0}.x-monthpicker-yearnav-prev-over{background-position:0 0}.x-monthpicker-small .x-monthpicker-item{margin:2px 0 2px}.x-monthpicker-small .x-monthpicker-item-inner{margin:0 5px 0 5px}.x-monthpicker-small .x-monthpicker-yearnav{height:28px}.x-monthpicker-small .x-monthpicker-yearnav-button{margin-top:8px}.x-form-date-trigger{background-image:url(images/form/date-trigger.png)}.x-form-file-wrap .x-form-text{color:gray}.x-color-picker{width:192px;height:120px;background-color:white;border-color:white;border-width:0;border-style:solid}.x-color-picker-item{width:24px;height:24px;border-width:1px;border-color:white;border-style:solid;background-color:white;cursor:pointer;padding:2px}.x-content-box .x-color-picker-item{width:18px;height:18px}a.x-color-picker-item:hover{border-color:#8bb8f3;background-color:#e6e6e6}.x-color-picker-selected{border-color:#8bb8f3;background-color:#e6e6e6}.x-color-picker-item-inner{line-height:16px;border-color:#e1e1e1;border-width:1px;border-style:solid}.x-html-editor-tb .x-btn-text{background:transparent no-repeat;background-image:url(images/editor/tb-sprite.png)}.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)}.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)}.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)}.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)}.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)}.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)}.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)}.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)}.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)}.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)}.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)}.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)}.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)}.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)}.x-html-editor-tip .x-tip-bd .x-tip-bd-inner{padding:5px;padding-bottom:1px}.x-html-editor-tb .x-font-select{font-size:13px;font-family:inherit}.x-html-editor-wrap textarea{font:normal 13px helvetica,arial,verdana,sans-serif;background-color:white;resize:none}.x-grid-body{background:white;border-width:1px;border-style:solid;border-color:silver}.x-grid-empty{padding:10px;color:gray;background-color:white;font:normal 13px helvetica,arial,verdana,sans-serif}.x-grid-cell{color:null;font:normal 13px/15px helvetica,arial,verdana,sans-serif;background-color:white;border-color:#ededed;border-style:solid}.x-grid-row-alt .x-grid-td{background-color:#fafafa}.x-grid-row-before-over .x-grid-td{border-bottom-style:solid;border-bottom-color:#e2eff8}.x-grid-row-over .x-grid-td{border-bottom-style:solid;border-bottom-color:#e2eff8}.x-grid-row-before-selected .x-grid-td{border-bottom-style:solid;border-bottom-color:#c1ddf1}.x-grid-row-selected .x-grid-td{border-bottom-style:solid;border-bottom-color:#c1ddf1}.x-grid-row-before-focused .x-grid-td{border-bottom-style:solid;border-bottom-color:#e2eff8}.x-grid-row-focused .x-grid-td{background-color:#e2eff8}.x-grid-row-over .x-grid-td{background-color:#e2eff8}.x-grid-row-selected .x-grid-td{background-color:#c1ddf1}.x-grid-row-focused .x-grid-td{border-bottom-style:solid;border-bottom-color:#e2eff8}.x-grid-with-row-lines .x-grid-row-focused-first .x-grid-td{border-top:1px solid #e2eff8}.x-grid-row-selected .x-grid-row-summary .x-grid-td{border-bottom-color:#c1ddf1;border-top-width:0}.x-grid-row-focused .x-grid-row-summary .x-grid-td{border-bottom-color:#e2eff8;border-top-width:0}.x-grid-with-row-lines .x-grid-td{border-bottom-width:1px}.x-grid-with-row-lines .x-grid-table{border-top:1px solid white}.x-grid-with-row-lines .x-grid-table-over-first{border-top-style:solid;border-top-color:#e2eff8}.x-grid-with-row-lines .x-grid-table-selected-first{border-top-style:solid;border-top-color:#c1ddf1}.x-grid-with-row-lines .x-grid-table-focused-first{border-top-style:solid;border-top-color:#e2eff8}.x-grid-cell-inner{text-overflow:ellipsis;padding:5px 10px 4px 10px}.x-grid-cell-special{border-color:#ededed;border-style:solid;border-right-width:1px 0}.x-grid-dirty-cell{background:url(images/grid/dirty.png) no-repeat 0 0}.x-grid-row .x-grid-cell-selected{color:null;background-color:#c1ddf1}.x-grid-with-col-lines .x-grid-cell{border-right-width:1px}.x-grid-resize-marker{width:1px;background-color:#0f0f0f}.x-grid-drop-indicator{position:absolute;height:1px;line-height:0;background-color:#77bc71;overflow:visible;pointer-events:none}.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}.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}.x-ie6 .x-grid-drop-indicator-left{background-image:url(images/grid/dd-insert-arrow-right.png)}.x-ie6 .x-grid-drop-indicator-right{background-image:url(images/grid/dd-insert-arrow-left.png)}.col-move-top,.col-move-bottom{width:9px;height:9px}.col-move-top{background-image:url(images/grid/col-move-top.png)}.col-move-bottom{background-image:url(images/grid/col-move-bottom.png)}.x-grid-header-ct{border:1px solid #157fcc;border-bottom-color:#f5f5f5;background-color:#f5f5f5}.x-accordion-item .x-grid-header-ct{border-width:0 0 1px!important}.x-accordion-item .x-grid-header-ct-hidden{border:0!important}.x-grid-body{border-top-color:silver}.x-hmenu-sort-asc .x-menu-item-icon{background-image:url(images/grid/hmenu-asc.png)}.x-hmenu-sort-desc .x-menu-item-icon{background-image:url(images/grid/hmenu-desc.png)}.x-cols-icon .x-menu-item-icon{background-image:url(images/grid/columns.png)}.x-column-header{border-right:1px solid silver;color:#666;font:bold 13px/15px helvetica,arial,verdana,sans-serif;background-color:#f5f5f5}.x-group-sub-header{background:transparent;border-top:1px solid silver}.x-group-sub-header .x-column-header-inner{padding:6px 10px 7px 10px}.x-column-header-inner{padding:7px 10px 7px 10px;text-overflow:ellipsis}.x-column-header-over,.x-column-header-sort-ASC,.x-column-header-sort-DESC{background-image:none;background-color:#eef6fb}.x-column-header-open{background-color:#eef6fb}.x-column-header-open .x-column-header-trigger{background-color:#dfeaf2}.x-column-header-trigger{width:18px;cursor:pointer;background-color:transparent;background-position:center center}.x-column-header-align-right .x-column-header-text{margin-right:12px}.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}.x-column-header-sort-ASC .x-column-header-text{background-image:url(images/grid/sort_asc.png)}.x-column-header-sort-DESC .x-column-header-text{background-image:url(images/grid/sort_desc.png)}.x-grid-cell-inner-action-col{padding:4px 4px 4px 4px}.x-action-col-cell .x-item-disabled{filter:alpha(opacity=30);opacity:.3}.x-action-col-icon{height:16px;width:16px;cursor:pointer}.x-grid-cell-inner-checkcolumn{padding:5px 10px 4px 10px}.x-grid-checkcolumn{width:15px;height:15px;background:url(images/form/checkbox.png) 0 0 no-repeat}.x-item-disabled .x-grid-checkcolumn{filter:alpha(opacity=30);opacity:.3}.x-grid-checkcolumn-checked{background-position:0 -15px}.x-grid-cell-inner-row-numberer{padding:5px 5px 4px 3px}.x-grid-group-hd{border-width:0 0 1px 0;border-style:solid;border-color:silver;padding:8px 4px 8px 4px;background:#f5f5f5;cursor:pointer}.x-grid-group-hd-not-collapsible{cursor:default}.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}.x-grid-group-title{color:#666;font:bold 13px/15px helvetica,arial,verdana,sans-serif}.x-grid-group-hd-collapsed .x-grid-group-title{background-image:url(images/grid/group-expand.png)}.x-grid-group-collapsed .x-grid-group-title{background-image:url(images/grid/group-expand.png)}.x-group-by-icon{background-image:url(images/grid/group-by.png)}.x-show-groups-icon{background-image:url(images/grid/group-by.png)}.x-grid-rowbody{font:normal 13px/15px helvetica,arial,verdana,sans-serif;padding:5px 10px 5px 10px}.x-grid-rowwrap{border-color:#ededed;border-style:solid}.x-summary-bottom{border-bottom-color:#f5f5f5}.x-docked-summary{border-width:1px;border-color:#157fcc;border-style:solid}.x-docked-summary .x-grid-table{width:100%}.x-grid-row-summary .x-grid-cell,.x-grid-row-summary .x-grid-rowwrap,.x-grid-row-summary .x-grid-cell-rowbody{border-color:#ededed;background-color:transparent!important;border-top-width:0;font:normal 13px/15px helvetica,arial,verdana,sans-serif}.x-grid-with-row-lines .x-grid-table-summary{border:0}.x-grid-locked .x-grid-inner-locked{border-width:0 1px 0 0;border-style:solid}.x-grid-inner-locked .x-column-header-last,.x-grid-inner-locked .x-grid-cell-last{border-right-width:0!important}.x-hmenu-lock .x-menu-item-icon{background-image:url(images/grid/hmenu-lock.png)}.x-hmenu-unlock .x-menu-item-icon{background-image:url(images/grid/hmenu-unlock.png)}.x-grid-editor .x-form-text{font:normal 13px/15px helvetica,arial,verdana,sans-serif;padding:4px 9px 3px 9px}.x-gecko .x-grid-editor .x-form-text{padding-left:8px;padding-right:8px}.x-grid-editor .x-form-display-field-body{height:24px}.x-grid-editor .x-form-display-field{font:normal 13px/15px helvetica,arial,verdana,sans-serif;padding:5px 10px 4px 10px;text-overflow:ellipsis}.x-grid-editor .x-form-action-col-field{padding:4px 4px 4px 4px}.x-tree-cell-editor .x-form-text{padding-left:3px;padding-right:3px}.x-gecko .x-tree-cell-editor .x-form-text{padding-left:2px;padding-right:2px}.x-grid-row-editor .x-field{margin:0 3px 0 2px}.x-grid-row-editor .x-form-display-field{padding:5px 7px 4px 8px}.x-grid-row-editor .x-form-action-col-field{padding:4px 1px 4px 2px}.x-grid-row-editor .x-form-text{padding:4px 6px 3px 7px}.x-gecko .x-grid-row-editor .x-form-text{padding-left:6px;padding-right:5px}.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:#dfeaf2}.x-grid-with-col-lines .x-grid-row-editor .x-form-cb{margin-right:1px}.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:#dfeaf2}.x-grid-row-editor-buttons-default-bottom-mc{background-color:#dfeaf2}.x-nbr .x-grid-row-editor-buttons-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-grid-row-editor-buttons-default-bottom-frameInfo{font-family:th-0-0-5-5-0-1-1-1-5-5-5-5}.x-grid-row-editor-buttons-default-bottom-tl{background-position:0 -10px}.x-grid-row-editor-buttons-default-bottom-tr{background-position:right -15px}.x-grid-row-editor-buttons-default-bottom-bl{background-position:0 -20px}.x-grid-row-editor-buttons-default-bottom-br{background-position:right -25px}.x-grid-row-editor-buttons-default-bottom-ml{background-position:0 top}.x-grid-row-editor-buttons-default-bottom-mr{background-position:right top}.x-grid-row-editor-buttons-default-bottom-tc{background-position:0 0}.x-grid-row-editor-buttons-default-bottom-bc{background-position:0 -5px}.x-grid-row-editor-buttons-default-bottom-tr,.x-grid-row-editor-buttons-default-bottom-br,.x-grid-row-editor-buttons-default-bottom-mr{padding-right:5px}.x-grid-row-editor-buttons-default-bottom-tl,.x-grid-row-editor-buttons-default-bottom-bl,.x-grid-row-editor-buttons-default-bottom-ml{padding-left:5px}.x-grid-row-editor-buttons-default-bottom-tc{height:0}.x-grid-row-editor-buttons-default-bottom-bc{height:5px}.x-grid-row-editor-buttons-default-bottom-tl,.x-grid-row-editor-buttons-default-bottom-bl,.x-grid-row-editor-buttons-default-bottom-tr,.x-grid-row-editor-buttons-default-bottom-br,.x-grid-row-editor-buttons-default-bottom-tc,.x-grid-row-editor-buttons-default-bottom-bc,.x-grid-row-editor-buttons-default-bottom-ml,.x-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif)}.x-grid-row-editor-buttons-default-bottom-ml,.x-grid-row-editor-buttons-default-bottom-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif);background-repeat:repeat-y}.x-grid-row-editor-buttons-default-bottom-mc{padding:5px 1px 1px 1px}.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-tl,.x-strict .x-ie7 .x-grid-row-editor-buttons-default-bottom-bl{position:relative;right:0}.x-grid-row-editor-buttons-default-bottom:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif)"}.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:#dfeaf2}.x-grid-row-editor-buttons-default-top-mc{background-color:#dfeaf2}.x-nbr .x-grid-row-editor-buttons-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-grid-row-editor-buttons-default-top-frameInfo{font-family:th-5-5-0-0-1-1-0-1-5-5-5-5}.x-grid-row-editor-buttons-default-top-tl{background-position:0 -10px}.x-grid-row-editor-buttons-default-top-tr{background-position:right -15px}.x-grid-row-editor-buttons-default-top-bl{background-position:0 -20px}.x-grid-row-editor-buttons-default-top-br{background-position:right -25px}.x-grid-row-editor-buttons-default-top-ml{background-position:0 top}.x-grid-row-editor-buttons-default-top-mr{background-position:right top}.x-grid-row-editor-buttons-default-top-tc{background-position:0 0}.x-grid-row-editor-buttons-default-top-bc{background-position:0 -5px}.x-grid-row-editor-buttons-default-top-tr,.x-grid-row-editor-buttons-default-top-br,.x-grid-row-editor-buttons-default-top-mr{padding-right:5px}.x-grid-row-editor-buttons-default-top-tl,.x-grid-row-editor-buttons-default-top-bl,.x-grid-row-editor-buttons-default-top-ml{padding-left:5px}.x-grid-row-editor-buttons-default-top-tc{height:5px}.x-grid-row-editor-buttons-default-top-bc{height:0}.x-grid-row-editor-buttons-default-top-tl,.x-grid-row-editor-buttons-default-top-bl,.x-grid-row-editor-buttons-default-top-tr,.x-grid-row-editor-buttons-default-top-br,.x-grid-row-editor-buttons-default-top-tc,.x-grid-row-editor-buttons-default-top-bc,.x-grid-row-editor-buttons-default-top-ml,.x-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif)}.x-grid-row-editor-buttons-default-top-ml,.x-grid-row-editor-buttons-default-top-mr{zoom:1;background-image:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif);background-repeat:repeat-y}.x-grid-row-editor-buttons-default-top-mc{padding:1px 1px 5px 1px}.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-tl,.x-strict .x-ie7 .x-grid-row-editor-buttons-default-top-bl{position:relative;right:0}.x-grid-row-editor-buttons-default-top:after{display:none;content:"x-slicer:corners:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif), sides:url(images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif)"}.x-grid-row-editor-buttons-default-bottom{top:35px}.x-grid-row-editor-buttons-default-top{bottom:35px}.x-grid-row-editor-buttons{border-color:#e1e1e1}.x-row-editor-update-button{margin-right:3px}.x-row-editor-cancel-button{margin-left:2px}.x-grid-row-editor-errors .x-tip-body{padding:5px}.x-grid-row-editor-errors-item{list-style:disc;margin-left:15px}.x-grid-cell-inner-row-expander{padding:7px 6px 6px 6px}.x-grid-row-expander{width:11px;height:11px;cursor:pointer;background-image:url(images/grid/group-collapse.png)}.x-grid-row-collapsed .x-grid-row-expander{background-image:url(images/grid/group-expand.png)}.x-accordion-layout-ct{background-color:white;padding:5px 5px 0}.x-accordion-hd .x-panel-header-text-container{color:#666;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;text-transform:none}.x-accordion-item{margin:0 0 5px}.x-accordion-item .x-accordion-hd{background:#dfeaf2;border-top-color:white;padding:8px 10px}.x-accordion-item .x-accordion-hd-sibling-expanded{border-top-color:#157fcc}.x-accordion-item .x-accordion-hd-last-collapsed{border-bottom-color:#dfeaf2}.x-accordion-item .x-accordion-body{border-width:0}.x-accordion-hd .x-tool-collapse-top,.x-accordion-hd .x-tool-collapse-bottom{background-position:0 -272px}.x-accordion-hd .x-tool-expand-top,.x-accordion-hd .x-tool-expand-bottom{background-position:0 -256px}.x-accordion-hd .x-tool-img{background-image:url(images/tools/tool-sprites-dark.png);background-color:#dfeaf2}.x-collapse-el{cursor:pointer}.x-layout-split-left,.x-layout-split-right{top:50%;margin-top:-24px;width:8px;height:48px}.x-layout-split-top,.x-layout-split-bottom{left:50%;width:48px;height:8px;margin-left:-24px}.x-layout-split-left{background-image:url(images/util/splitter/mini-left.png)}.x-layout-split-right{background-image:url(images/util/splitter/mini-right.png)}.x-layout-split-top{background-image:url(images/util/splitter/mini-top.png)}.x-layout-split-bottom{background-image:url(images/util/splitter/mini-bottom.png)}.x-splitter-collapsed .x-layout-split-left{background-image:url(images/util/splitter/mini-right.png)}.x-splitter-collapsed .x-layout-split-right{background-image:url(images/util/splitter/mini-left.png)}.x-splitter-collapsed .x-layout-split-top{background-image:url(images/util/splitter/mini-bottom.png)}.x-splitter-collapsed .x-layout-split-bottom{background-image:url(images/util/splitter/mini-top.png)}.x-splitter-active{background-color:#b4b4b4;filter:alpha(opacity=80);opacity:.8}.x-splitter-active .x-collapse-el{filter:alpha(opacity=30);opacity:.3}.x-border-layout-ct{background-color:#3892d3}.x-menu{border-style:solid;border-width:1px;border-color:#e1e1e1}.x-menu-body{background:white;padding:0}.x-menu-icon-separator{left:22px;border-left:solid 1px #e1e1e1;background-color:white;width:1px}.x-menu-item{cursor:pointer}.x-menu-item-indent{margin-left:27px}.x-menu-item-active{background-image:none;background-color:#d6e8f6;border-color:#0079d2}.x-nlg .x-menu-item-active{background:#d6e8f6 repeat-x left top;background-image:url(images/menu/menu-item-active-bg.gif)}.x-menu-item-link{line-height:24px;padding:0 4px 0 27px;display:inline-block}.x-right-check-item-text{padding-right:22px}.x-menu-item-icon{width:16px;height:16px;top:5px;left:3px;background-position:center center}.x-menu-item-glyph{font-size:16px;line-height:16px;color:gray;opacity:.5}.x-ie8m .x-menu-item-glyph{color:#bfbfbf}.x-menu-item-icon-right{width:16px;height:16px;top:4px;right:3px;background-position:center center}.x-menu-item-text{font-size:13px;color:black;cursor:pointer;margin-right:16px}.x-menu-item-checked .x-menu-item-icon,.x-menu-item-checked .x-menu-item-icon-right{background-image:url(images/menu/checked.png)}.x-menu-item-checked .x-menu-group-icon{background-image:url(images/menu/group-checked.png)}.x-menu-item-unchecked .x-menu-item-icon,.x-menu-item-unchecked .x-menu-item-icon-right{background-image:url(images/menu/unchecked.png)}.x-menu-item-unchecked .x-menu-group-icon{background-image:none}.x-menu-item-separator{height:1px;border-top:solid 1px #e1e1e1;background-color:white;margin:2px 0;padding:0}.x-menu-item-arrow{width:12px;height:9px;top:8px;right:0;background-image:url(images/menu/menu-parent.png)}.x-menu-item-disabled{filter:alpha(opacity=50);opacity:.5}.x-content-box .x-menu-icon-separator{width:0}.x-content-box .x-menu-item-separator{height:0}.x-ie .x-menu-item-disabled .x-menu-item-icon{filter:alpha(opacity=50);opacity:.5}.x-ie .x-menu-item-disabled .x-menu-item-text{background-color:transparent}.x-menu-date-item{border-color:#99bbe8}.x-menu-item .x-form-item-label{font-size:13px;color:black}.x-menu-scroll-top{height:16px;background-image:url(images/menu/scroll-top.png)}.x-menu-scroll-bottom{height:16px;background-image:url(images/menu/scroll-bottom.png)}.x-menu-scroll-top,.x-menu-scroll-bottom{filter:alpha(opacity=50);opacity:.5;background-color:white}.x-menu-scroll-top-hover,.x-menu-scroll-bottom-hover{filter:alpha(opacity=60);opacity:.6}.x-menu-scroll-top-pressed,.x-menu-scroll-bottom-pressed{filter:alpha(opacity=70);opacity:.7}.x-menu-item-link:after{display:none;content:"x-slicer:bg:url(images/menu/menu-item-active-bg.gif)"}.x-tool{cursor:pointer}.x-tool-img{overflow:hidden;width:16px;height:16px;background-image:url(images/tools/tool-sprites.png);margin:0}.x-tool .x-tool-img{filter:alpha(opacity=50);opacity:.5}.x-tool-over .x-tool-img{filter:alpha(opacity=60);opacity:.6}.x-tool-pressed .x-tool-img{filter:alpha(opacity=70);opacity:.7}.x-tool-placeholder{visibility:hidden}.x-tool-close{background-position:0 0}.x-tool-minimize{background-position:0 -16px}.x-tool-maximize{background-position:0 -32px}.x-tool-restore{background-position:0 -48px}.x-tool-toggle{background-position:0 -64px}.x-panel-collapsed .x-tool-toggle{background-position:0 -80px}.x-tool-gear{background-position:0 -96px}.x-tool-prev{background-position:0 -112px}.x-tool-next{background-position:0 -128px}.x-tool-pin{background-position:0 -144px}.x-tool-unpin{background-position:0 -160px}.x-tool-right{background-position:0 -176px}.x-tool-left{background-position:0 -192px}.x-tool-down{background-position:0 -208px}.x-tool-up{background-position:0 -224px}.x-tool-refresh{background-position:0 -240px}.x-tool-plus{background-position:0 -256px}.x-tool-minus{background-position:0 -272px}.x-tool-search{background-position:0 -288px}.x-tool-save{background-position:0 -304px}.x-tool-help{background-position:0 -320px}.x-tool-print{background-position:0 -336px}.x-tool-expand{background-position:0 -352px}.x-tool-collapse{background-position:0 -368px}.x-tool-resize{background-position:0 -384px}.x-tool-move{background-position:0 -400px}.x-tool-expand-bottom,.x-tool-collapse-bottom{background-position:0 -208px}.x-tool-expand-top,.x-tool-collapse-top{background-position:0 -224px}.x-tool-expand-left,.x-tool-collapse-left{background-position:0 -192px}.x-tool-expand-right,.x-tool-collapse-right{background-position:0 -176px}.x-resizable-handle{position:absolute;z-index:100;font-size:1px;line-height:6px;overflow:hidden;zoom:1;filter:alpha(opacity=0);opacity:0;background-color:#fff;-webkit-border-radius:6px;-moz-border-radius:6px;-ms-border-radius:6px;-o-border-radius:6px;border-radius:6px}.x-collapsed .x-resizable-handle{display:none}.x-resizable-over .x-resizable-handle-north{cursor:n-resize}.x-resizable-over .x-resizable-handle-south{cursor:s-resize}.x-resizable-over .x-resizable-handle-east{cursor:e-resize}.x-resizable-over .x-resizable-handle-west{cursor:w-resize}.x-resizable-over .x-resizable-handle-southeast{cursor:se-resize}.x-resizable-over .x-resizable-handle-northwest{cursor:nw-resize}.x-resizable-over .x-resizable-handle-northeast{cursor:ne-resize}.x-resizable-over .x-resizable-handle-southwest{cursor:sw-resize}.x-resizable-handle-east{width:6px;height:100%;right:0;top:0}.x-resizable-handle-south{width:100%;height:6px;left:0;bottom:0}.x-resizable-handle-west{width:6px;height:100%;left:0;top:0}.x-resizable-handle-north{width:100%;height:6px;left:0;top:0}.x-resizable-handle-southeast{width:6px;height:6px;right:0;bottom:0;z-index:101}.x-resizable-handle-northwest{width:6px;height:6px;left:0;top:0;z-index:101}.x-resizable-handle-northeast{width:6px;height:6px;right:0;top:0;z-index:101}.x-resizable-handle-southwest{width:6px;height:6px;left:0;bottom:0;z-index:101}.x-ie .x-resizable-handle-east{margin-right:-1px}.x-ie .x-resizable-handle-south{margin-bottom:-1px}.x-resizable-pinned .x-resizable-handle,.x-resizable-over .x-resizable-handle{filter:alpha(opacity=100);opacity:1}.x-window .x-window-handle{filter:alpha(opacity=0);opacity:0}.x-window-collapsed .x-window-handle{display:none}.x-resizable-proxy{border:1px dashed #3b5a82;position:absolute;overflow:hidden;z-index:50000}.x-resizable-over .x-resizable-handle-east,.x-resizable-over .x-resizable-handle-west,.x-resizable-pinned .x-resizable-handle-east,.x-resizable-pinned .x-resizable-handle-west{background-image:url(images/sizer/e-handle.png)}.x-resizable-over .x-resizable-handle-south,.x-resizable-over .x-resizable-handle-north,.x-resizable-pinned .x-resizable-handle-south,.x-resizable-pinned .x-resizable-handle-north{background-image:url(images/sizer/s-handle.png)}.x-resizable-over .x-resizable-handle-southeast,.x-resizable-pinned .x-resizable-handle-southeast{background-position:top left;background-image:url(images/sizer/se-handle.png)}.x-resizable-over .x-resizable-handle-northwest,.x-resizable-pinned .x-resizable-handle-northwest{background-position:bottom right;background-image:url(images/sizer/nw-handle.png)}.x-resizable-over .x-resizable-handle-northeast,.x-resizable-pinned .x-resizable-handle-northeast{background-position:bottom left;background-image:url(images/sizer/ne-handle.png)}.x-resizable-over .x-resizable-handle-southwest,.x-resizable-pinned .x-resizable-handle-southwest{background-position:top right;background-image:url(images/sizer/sw-handle.png)}.x-slider-horz{padding-left:7px;background:no-repeat 0 -15px}.x-slider-horz .x-slider-end{padding-right:7px;background:no-repeat right -30px}.x-slider-horz .x-slider-inner{height:15px}.x-ie6 .x-form-item .x-slider-horz,.x-ie7 .x-form-item .x-slider-horz,.x-quirks .x-ie .x-form-item .x-slider-horz{margin-top:5px}.x-slider-horz .x-slider-thumb{width:15px;height:15px;margin-left:-7px;background-image:url(images/slider/slider-thumb.png)}.x-slider-horz .x-slider-thumb-over{background-position:-15px -15px}.x-slider-horz .x-slider-thumb-drag{background-position:-30px -30px}.x-slider-vert{padding-top:7px;background:no-repeat -30px 0}.x-slider-vert .x-slider-end{padding-bottom:7px;background:no-repeat -15px bottom;width:15px}.x-slider-vert .x-slider-inner{width:15px}.x-slider-vert .x-slider-thumb{width:15px;height:15px;margin-bottom:-7px;background-image:url(images/slider/slider-v-thumb.png)}.x-slider-vert .x-slider-thumb-over{background-position:-15px -15px}.x-slider-vert .x-slider-thumb-drag{background-position:-30px -30px}.x-slider-horz,.x-slider-horz .x-slider-end,.x-slider-horz .x-slider-inner{background-image:url(images/slider/slider-bg.png)}.x-slider-vert,.x-slider-vert .x-slider-end,.x-slider-vert .x-slider-inner{background-image:url(images/slider/slider-v-bg.png)}.x-tab-default-top{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:8px 12px 7px 12px;border-width:0;border-style:solid;background-color:#4b9cd7}.x-tab-default-top-mc{background-color:#4b9cd7}.x-nbr .x-tab-default-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tab-default-top-frameInfo{font-family:th-3-3-0-0-0-0-0-0-8-12-7-12}.x-tab-default-top-tl{background-position:0 -6px}.x-tab-default-top-tr{background-position:right -9px}.x-tab-default-top-bl{background-position:0 -12px}.x-tab-default-top-br{background-position:right -15px}.x-tab-default-top-ml{background-position:0 top}.x-tab-default-top-mr{background-position:right top}.x-tab-default-top-tc{background-position:0 0}.x-tab-default-top-bc{background-position:0 -3px}.x-tab-default-top-tr,.x-tab-default-top-br,.x-tab-default-top-mr{padding-right:3px}.x-tab-default-top-tl,.x-tab-default-top-bl,.x-tab-default-top-ml{padding-left:3px}.x-tab-default-top-tc{height:3px}.x-tab-default-top-bc{height:0}.x-tab-default-top-tl,.x-tab-default-top-bl,.x-tab-default-top-tr,.x-tab-default-top-br,.x-tab-default-top-tc,.x-tab-default-top-bc,.x-tab-default-top-ml,.x-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-top-ml,.x-tab-default-top-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif);background-repeat:repeat-y}.x-tab-default-top-mc{padding:5px 9px 7px 9px}.x-strict .x-ie7 .x-tab-default-top-tl,.x-strict .x-ie7 .x-tab-default-top-bl{position:relative;right:0}.x-tab-default-top:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x-tab-default-bottom{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0;-moz-border-radius-bottomright:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-bottomleft:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;padding:8px 12px 7px 12px;border-width:0;border-style:solid;background-color:#4b9cd7}.x-tab-default-bottom-mc{background-color:#4b9cd7}.x-nbr .x-tab-default-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tab-default-bottom-frameInfo{font-family:th-0-0-3-3-0-0-0-0-8-12-7-12}.x-tab-default-bottom-tl{background-position:0 -6px}.x-tab-default-bottom-tr{background-position:right -9px}.x-tab-default-bottom-bl{background-position:0 -12px}.x-tab-default-bottom-br{background-position:right -15px}.x-tab-default-bottom-ml{background-position:0 top}.x-tab-default-bottom-mr{background-position:right top}.x-tab-default-bottom-tc{background-position:0 0}.x-tab-default-bottom-bc{background-position:0 -3px}.x-tab-default-bottom-tr,.x-tab-default-bottom-br,.x-tab-default-bottom-mr{padding-right:3px}.x-tab-default-bottom-tl,.x-tab-default-bottom-bl,.x-tab-default-bottom-ml{padding-left:3px}.x-tab-default-bottom-tc{height:0}.x-tab-default-bottom-bc{height:3px}.x-tab-default-bottom-tl,.x-tab-default-bottom-bl,.x-tab-default-bottom-tr,.x-tab-default-bottom-br,.x-tab-default-bottom-tc,.x-tab-default-bottom-bc,.x-tab-default-bottom-ml,.x-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-corners.gif)}.x-tab-default-bottom-ml,.x-tab-default-bottom-mr{zoom:1;background-image:url(images/tab/tab-default-bottom-sides.gif);background-repeat:repeat-y}.x-tab-default-bottom-mc{padding:8px 9px 4px 9px}.x-strict .x-ie7 .x-tab-default-bottom-tl,.x-strict .x-ie7 .x-tab-default-bottom-bl{position:relative;right:0}.x-tab-default-bottom:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-bottom-corners.gif), sides:url(images/tab/tab-default-bottom-sides.gif)"}.x-tab-default-left{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:8px 12px 7px 12px;border-width:0;border-style:solid;background-color:#4b9cd7}.x-tab-default-left-mc{background-color:#4b9cd7}.x-nbr .x-tab-default-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tab-default-left-frameInfo{font-family:th-3-3-0-0-0-0-0-0-8-12-7-12}.x-tab-default-left-tl{background-position:0 -6px}.x-tab-default-left-tr{background-position:right -9px}.x-tab-default-left-bl{background-position:0 -12px}.x-tab-default-left-br{background-position:right -15px}.x-tab-default-left-ml{background-position:0 top}.x-tab-default-left-mr{background-position:right top}.x-tab-default-left-tc{background-position:0 0}.x-tab-default-left-bc{background-position:0 -3px}.x-tab-default-left-tr,.x-tab-default-left-br,.x-tab-default-left-mr{padding-right:3px}.x-tab-default-left-tl,.x-tab-default-left-bl,.x-tab-default-left-ml{padding-left:3px}.x-tab-default-left-tc{height:3px}.x-tab-default-left-bc{height:0}.x-tab-default-left-tl,.x-tab-default-left-bl,.x-tab-default-left-tr,.x-tab-default-left-br,.x-tab-default-left-tc,.x-tab-default-left-bc,.x-tab-default-left-ml,.x-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-left-ml,.x-tab-default-left-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif);background-repeat:repeat-y}.x-tab-default-left-mc{padding:5px 9px 7px 9px}.x-strict .x-ie7 .x-tab-default-left-tl,.x-strict .x-ie7 .x-tab-default-left-bl{position:relative;right:0}.x-tab-default-left:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x-tab-default-right{-moz-border-radius-topleft:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-topright:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-moz-border-radius-bottomright:0;-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;padding:8px 12px 7px 12px;border-width:0;border-style:solid;background-color:#4b9cd7}.x-tab-default-right-mc{background-color:#4b9cd7}.x-nbr .x-tab-default-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-tab-default-right-frameInfo{font-family:th-3-3-0-0-0-0-0-0-8-12-7-12}.x-tab-default-right-tl{background-position:0 -6px}.x-tab-default-right-tr{background-position:right -9px}.x-tab-default-right-bl{background-position:0 -12px}.x-tab-default-right-br{background-position:right -15px}.x-tab-default-right-ml{background-position:0 top}.x-tab-default-right-mr{background-position:right top}.x-tab-default-right-tc{background-position:0 0}.x-tab-default-right-bc{background-position:0 -3px}.x-tab-default-right-tr,.x-tab-default-right-br,.x-tab-default-right-mr{padding-right:3px}.x-tab-default-right-tl,.x-tab-default-right-bl,.x-tab-default-right-ml{padding-left:3px}.x-tab-default-right-tc{height:3px}.x-tab-default-right-bc{height:0}.x-tab-default-right-tl,.x-tab-default-right-bl,.x-tab-default-right-tr,.x-tab-default-right-br,.x-tab-default-right-tc,.x-tab-default-right-bc,.x-tab-default-right-ml,.x-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-corners.gif)}.x-tab-default-right-ml,.x-tab-default-right-mr{zoom:1;background-image:url(images/tab/tab-default-top-sides.gif);background-repeat:repeat-y}.x-tab-default-right-mc{padding:5px 9px 7px 9px}.x-strict .x-ie7 .x-tab-default-right-tl,.x-strict .x-ie7 .x-tab-default-right-bl{position:relative;right:0}.x-tab-default-right:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-corners.gif), sides:url(images/tab/tab-default-top-sides.gif)"}.x-tab-default{border-color:#157fcc;margin:0 1px 0 0;cursor:pointer}.x-tab-default .x-tab-inner{font-size:13px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;color:white;line-height:16px}.x-tab-default .x-tab-icon-el{width:16px;height:16px;line-height:16px;background-position:center center}.x-tab-default .x-tab-glyph{font-size:16px;color:white;opacity:.5}.x-ie8m .x-tab-default .x-tab-glyph{color:#a5cdeb}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default{padding-left:0}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-button{padding-left:12px}.x-strict .x-ie9 .x-tab-bar-vertical .x-tab-default .x-tab-icon-el{left:12px}.x-tab-default-icon .x-tab-inner{width:16px}.x-tab-default-left{margin:0 0 0 1px}.x-tab-default-top,.x-tab-default-left,.x-tab-default-right{border-bottom:0 solid #157fcc}.x-tab-default-bottom{border-top:0 solid #157fcc}.x-tab-default-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;transform:rotate(270deg);transform-origin:100% 0}.x-ie9m .x-tab-default-left{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.x-tab-default-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-tab-default-right{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1)}.x-tab-default-icon-text-left .x-tab-inner{padding-left:22px}.x-tab-default-over{background-color:#5fa7db}.x-tab-default-over .x-tab-glyph{color:white}.x-ie8m .x-tab-default-over .x-tab-glyph{color:#afd3ed}.x-tab-default-active{background-color:#add2ed}.x-tab-default-active .x-tab-inner{color:#157fcc}.x-tab-default-active .x-tab-glyph{color:#157fcc}.x-ie8m .x-tab-default-active .x-tab-glyph{color:#61a8dc}.x-tab-default-top-active,.x-tab-default-left-active,.x-tab-default-right-active{border-bottom:0 solid #add2ed}.x-tab-default-bottom-active{border-top:0 solid #add2ed}.x-tab-default-disabled{cursor:default}.x-tab-default-disabled .x-tab-inner{filter:alpha(opacity=30);opacity:.3}.x-tab-default-disabled .x-tab-icon-el{filter:alpha(opacity=50);opacity:.5}.x-tab-default-disabled .x-tab-glyph{color:white;opacity:.3;filter:none}.x-ie8m .x-tab-default-disabled .x-tab-glyph{color:#81b9e3}.x-tab-default-top-disabled,.x-tab-default-left-disabled,.x-tab-default-right-disabled{border-color:#157fcc #157fcc #157fcc}.x-tab-default-bottom-disabled{border-color:#157fcc #157fcc #157fcc #157fcc}.x-nbr .x-tab-default{background-image:none}.x-tab-default-top-over .x-frame-tl,.x-tab-default-top-over .x-frame-bl,.x-tab-default-top-over .x-frame-tr,.x-tab-default-top-over .x-frame-br,.x-tab-default-top-over .x-frame-tc,.x-tab-default-top-over .x-frame-bc,.x-tab-default-left-over .x-frame-tl,.x-tab-default-left-over .x-frame-bl,.x-tab-default-left-over .x-frame-tr,.x-tab-default-left-over .x-frame-br,.x-tab-default-left-over .x-frame-tc,.x-tab-default-left-over .x-frame-bc,.x-tab-default-right-over .x-frame-tl,.x-tab-default-right-over .x-frame-bl,.x-tab-default-right-over .x-frame-tr,.x-tab-default-right-over .x-frame-br,.x-tab-default-right-over .x-frame-tc,.x-tab-default-right-over .x-frame-bc{background-image:url(images/tab/tab-default-top-over-corners.gif)}.x-tab-default-top-over .x-frame-ml,.x-tab-default-top-over .x-frame-mr,.x-tab-default-left-over .x-frame-ml,.x-tab-default-left-over .x-frame-mr,.x-tab-default-right-over .x-frame-ml,.x-tab-default-right-over .x-frame-mr{background-image:url(images/tab/tab-default-top-over-sides.gif)}.x-tab-default-top-over .x-frame-mc,.x-tab-default-left-over .x-frame-mc,.x-tab-default-right-over .x-frame-mc{background-color:#5fa7db}.x-tab-default-bottom-over .x-frame-tl,.x-tab-default-bottom-over .x-frame-bl,.x-tab-default-bottom-over .x-frame-tr,.x-tab-default-bottom-over .x-frame-br,.x-tab-default-bottom-over .x-frame-tc,.x-tab-default-bottom-over .x-frame-bc{background-image:url(images/tab/tab-default-bottom-over-corners.gif)}.x-tab-default-bottom-over .x-frame-ml,.x-tab-default-bottom-over .x-frame-mr{background-image:url(images/tab/tab-default-bottom-over-sides.gif)}.x-tab-default-bottom-over .x-frame-mc{background-color:#5fa7db}.x-tab-default-top-active .x-frame-tl,.x-tab-default-top-active .x-frame-bl,.x-tab-default-top-active .x-frame-tr,.x-tab-default-top-active .x-frame-br,.x-tab-default-top-active .x-frame-tc,.x-tab-default-top-active .x-frame-bc,.x-tab-default-left-active .x-frame-tl,.x-tab-default-left-active .x-frame-bl,.x-tab-default-left-active .x-frame-tr,.x-tab-default-left-active .x-frame-br,.x-tab-default-left-active .x-frame-tc,.x-tab-default-left-active .x-frame-bc,.x-tab-default-right-active .x-frame-tl,.x-tab-default-right-active .x-frame-bl,.x-tab-default-right-active .x-frame-tr,.x-tab-default-right-active .x-frame-br,.x-tab-default-right-active .x-frame-tc,.x-tab-default-right-active .x-frame-bc{background-image:url(images/tab/tab-default-top-active-corners.gif)}.x-tab-default-top-active .x-frame-ml,.x-tab-default-top-active .x-frame-mr,.x-tab-default-left-active .x-frame-ml,.x-tab-default-left-active .x-frame-mr,.x-tab-default-right-active .x-frame-ml,.x-tab-default-right-active .x-frame-mr{background-image:url(images/tab/tab-default-top-active-sides.gif)}.x-tab-default-top-active .x-frame-mc,.x-tab-default-left-active .x-frame-mc,.x-tab-default-right-active .x-frame-mc{background-color:#add2ed}.x-tab-default-bottom-active .x-frame-tl,.x-tab-default-bottom-active .x-frame-bl,.x-tab-default-bottom-active .x-frame-tr,.x-tab-default-bottom-active .x-frame-br,.x-tab-default-bottom-active .x-frame-tc,.x-tab-default-bottom-active .x-frame-bc{background-image:url(images/tab/tab-default-bottom-active-corners.gif)}.x-tab-default-bottom-active .x-frame-ml,.x-tab-default-bottom-active .x-frame-mr{background-image:url(images/tab/tab-default-bottom-active-sides.gif)}.x-tab-default-bottom-active .x-frame-mc{background-color:#add2ed}.x-tab-default-top-disabled .x-frame-tl,.x-tab-default-top-disabled .x-frame-bl,.x-tab-default-top-disabled .x-frame-tr,.x-tab-default-top-disabled .x-frame-br,.x-tab-default-top-disabled .x-frame-tc,.x-tab-default-top-disabled .x-frame-bc,.x-tab-default-left-disabled .x-frame-tl,.x-tab-default-left-disabled .x-frame-bl,.x-tab-default-left-disabled .x-frame-tr,.x-tab-default-left-disabled .x-frame-br,.x-tab-default-left-disabled .x-frame-tc,.x-tab-default-left-disabled .x-frame-bc,.x-tab-default-right-disabled .x-frame-tl,.x-tab-default-right-disabled .x-frame-bl,.x-tab-default-right-disabled .x-frame-tr,.x-tab-default-right-disabled .x-frame-br,.x-tab-default-right-disabled .x-frame-tc,.x-tab-default-right-disabled .x-frame-bc{background-image:url(images/tab/tab-default-top-disabled-corners.gif)}.x-tab-default-top-disabled .x-frame-ml,.x-tab-default-top-disabled .x-frame-mr,.x-tab-default-left-disabled .x-frame-ml,.x-tab-default-left-disabled .x-frame-mr,.x-tab-default-right-disabled .x-frame-ml,.x-tab-default-right-disabled .x-frame-mr{background-image:url(images/tab/tab-default-top-disabled-sides.gif)}.x-tab-default-top-disabled .x-frame-mc,.x-tab-default-left-disabled .x-frame-mc,.x-tab-default-right-disabled .x-frame-mc{background-color:#4b9cd7}.x-tab-default-bottom-disabled .x-frame-tl,.x-tab-default-bottom-disabled .x-frame-bl,.x-tab-default-bottom-disabled .x-frame-tr,.x-tab-default-bottom-disabled .x-frame-br,.x-tab-default-bottom-disabled .x-frame-tc,.x-tab-default-bottom-disabled .x-frame-bc{background-image:url(images/tab/tab-default-bottom-disabled-corners.gif)}.x-tab-default-bottom-disabled .x-frame-ml,.x-tab-default-bottom-disabled .x-frame-mr{background-image:url(images/tab/tab-default-bottom-disabled-sides.gif)}.x-tab-default-bottom-disabled .x-frame-mc{background-color:#4b9cd7}.x-tab-default .x-tab-close-btn{width:12px;height:12px;background-image:url(images/tab/tab-default-close.png)}.x-tab-default .x-tab-close-btn-over{background-position:-12px 0}.x-tab-default .x-tab-close-btn{top:2px;right:2px}.x-tab-default-disabled .x-tab-close-btn{filter:alpha(opacity=30);opacity:.3;background-position:0 0}.x-tab-default-pressed .x-tab-close-btn{background-position:-24px 0}.x-tab-default-closable .x-tab-wrap{padding-right:15px}.x-tab-default-top-over:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-over-corners.gif), sides:url(images/tab/tab-default-top-over-sides.gif)"}.x-tab-default-bottom-over:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-bottom-over-corners.gif), sides:url(images/tab/tab-default-bottom-over-sides.gif)"}.x-tab-default-top-active:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-active-corners.gif), sides:url(images/tab/tab-default-top-active-sides.gif)"}.x-tab-default-bottom-active:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-bottom-active-corners.gif), sides:url(images/tab/tab-default-bottom-active-sides.gif)"}.x-tab-default-top-disabled:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-top-disabled-corners.gif), sides:url(images/tab/tab-default-top-disabled-sides.gif)"}.x-tab-default-bottom-disabled:after{display:none;content:"x-slicer:corners:url(images/tab/tab-default-bottom-disabled-corners.gif), sides:url(images/tab/tab-default-bottom-disabled-sides.gif)"}.x-tab-bar-default-top{padding:0}.x-tab-bar-default-bottom{padding:0}.x-tab-bar-default-left{padding:0}.x-tab-bar-default-right{padding:0}.x-tab-bar-default-horizontal{height:36px}.x-content-box .x-tab-bar-default-horizontal{height:36px}.x-tab-bar-default-vertical{width:36px}.x-content-box .x-tab-bar-default-vertical{width:36px}.x-tab-bar-body-default-top{padding-bottom:5px}.x-tab-bar-body-default-bottom{padding-top:5px}.x-tab-bar-body-default-left{padding-right:5px}.x-tab-bar-body-default-right{padding-left:5px}.x-tab-bar-strip-default{border-style:solid;border-color:#157fcc;background-color:#add2ed}.x-content-box .x-tab-bar-strip-default-horizontal{height:5px}.x-content-box .x-tab-bar-strip-default-vertical{width:5px}.x-tab-bar-strip-default-top{border-width:0;height:5px}.x-tab-bar-plain .x-tab-bar-strip-default-top{border-width:0}.x-tab-bar-strip-default-bottom{border-width:0;height:5px}.x-tab-bar-plain .x-tab-bar-strip-default-bottom{border-width:0}.x-tab-bar-strip-default-left{border-width:0;width:5px}.x-tab-bar-plain .x-tab-bar-strip-default-left{border-width:0}.x-tab-bar-strip-default-right{border-width:0;width:5px}.x-tab-bar-plain .x-tab-bar-strip-default-right{border-width:0}.x-tab-bar-default{background-color:#157fcc}.x-tab-bar-default .x-box-scroller{cursor:pointer;filter:alpha(opacity=50);opacity:.5;background-color:#157fcc}.x-tab-bar-default .x-box-scroller-plain .x-box-scroller{background-color:transparent}.x-ie8m .x-tab-bar-default .x-box-scroller-plain .x-box-scroller{background-color:#fff}.x-tab-bar-default .x-box-scroller-hover{filter:alpha(opacity=60);opacity:.6}.x-tab-bar-default .x-box-scroller-pressed{filter:alpha(opacity=70);opacity:.7}.x-tab-bar-default .x-tabbar-scroll-left,.x-tab-bar-default .x-tabbar-scroll-right{height:31px;width:24px}.x-tab-bar-default .x-tabbar-scroll-top,.x-tab-bar-default .x-tabbar-scroll-bottom{width:31px;height:24px}.x-tab-bar-default-bottom .x-box-scroller{margin-top:0}.x-tab-bar-default-right .x-box-scroller{margin-left:0}.x-tab-bar-default .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-scroll-left.png)}.x-tab-bar-default .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-scroll-right.png)}.x-tab-bar-default .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-scroll-top.png)}.x-tab-bar-default .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-scroll-bottom.png)}.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-left{background-image:url(images/tab-bar/default-plain-scroll-left.png)}.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-right{background-image:url(images/tab-bar/default-plain-scroll-right.png)}.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-top{background-image:url(images/tab-bar/default-plain-scroll-top.png)}.x-tab-bar-default .x-box-scroller-plain .x-tabbar-scroll-bottom{background-image:url(images/tab-bar/default-plain-scroll-bottom.png)}.x-tab-bar-default .x-box-scroller-disabled{filter:alpha(opacity=25);opacity:.25;cursor:default}.x-tab-bar-default-top:after{display:none;content:"x-slicer:stretch:bottom"}.x-tab-bar-default-bottom:after{display:none;content:"x-slicer:stretch:top"}.x-tab-bar-default-left:after{display:none;content:"x-slicer:stretch:right"}.x-tab-bar-default-right:after{display:none;content:"x-slicer:stretch:left"}.x-tab-bar-plain{border-width:0;padding:0;height:36px}.x-column-header-checkbox{border-color:#f5f5f5}.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}.x-column-header-checkbox .x-column-header-inner{padding:7px 4px 7px 4px}.x-grid-cell-row-checker .x-grid-cell-inner{padding:5px 4px 4px 4px}.x-grid-hd-checker-on .x-column-header-text,.x-grid-row-selected .x-grid-row-checker,.x-grid-row-checked .x-grid-row-checker{background-position:0 -15px}.x-tree-expander{cursor:pointer}.x-tree-arrows .x-tree-expander{background-image:url(images/tree/arrows.png)}.x-tree-arrows .x-tree-expander-over .x-tree-expander{background-position:-32px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander{background-position:-16px center}.x-tree-arrows .x-grid-tree-node-expanded .x-tree-expander-over .x-tree-expander{background-position:-48px center}.x-tree-lines .x-tree-elbow{background-image:url(images/tree/elbow.png)}.x-tree-lines .x-tree-elbow-end{background-image:url(images/tree/elbow-end.png)}.x-tree-lines .x-tree-elbow-plus{background-image:url(images/tree/elbow-plus.png)}.x-tree-lines .x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-plus.png)}.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-plus{background-image:url(images/tree/elbow-minus.png)}.x-tree-lines .x-grid-tree-node-expanded .x-tree-elbow-end-plus{background-image:url(images/tree/elbow-end-minus.png)}.x-tree-lines .x-tree-elbow-line{background-image:url(images/tree/elbow-line.png)}.x-tree-no-row-lines .x-tree-expander{background-image:url(images/tree/elbow-plus-nl.png)}.x-tree-no-row-lines .x-grid-tree-node-expanded .x-tree-expander{background-image:url(images/tree/elbow-minus-nl.png)}.x-tree-icon{width:16px;height:24px}.x-tree-elbow-img{width:18px;height:24px;margin-right:2px}.x-tree-icon,.x-tree-elbow-img,.x-tree-checkbox{margin-top:-5px;margin-bottom:-4px}.x-tree-icon-leaf{background-image:url(images/tree/leaf.png)}.x-tree-icon-parent{background-image:url(images/tree/folder.png)}.x-grid-tree-node-expanded .x-tree-icon-parent{background-image:url(images/tree/folder-open.png)}.x-tree-checkbox{margin-right:4px;top:5px;width:15px;height:15px;background-image:url(images/form/checkbox.png)}.x-tree-checkbox-checked{background-position:0 -15px}.x-grid-tree-loading .x-tree-icon{background-image:url(images/tree/loading.png)}.x-grid-cell-inner-treecolumn{font-size:1px;line-height:0}.x-tree-node-text{font-size:13px;line-height:15px;padding-left:4px}.x-grid-cell-inner-treecolumn{padding:5px 10px 4px 6px}.x-tree-drop-ok-append .x-dd-drop-icon{background-image:url(images/tree/drop-append.png)}.x-tree-drop-ok-above .x-dd-drop-icon{background-image:url(images/tree/drop-above.png)}.x-tree-drop-ok-below .x-dd-drop-icon{background-image:url(images/tree/drop-below.png)}.x-tree-drop-ok-between .x-dd-drop-icon{background-image:url(images/tree/drop-between.png)}.x-tree-ddindicator{height:1px;border-width:1px 0 0;border-style:dotted;border-color:green}body{background-color:#f5f5f5}.x-btn-plain-toolbar-small{border-color:transparent}.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-image:none;background-color:transparent}.x-btn-plain-toolbar-small-mc{background-image:url(images/btn/btn-plain-toolbar-small-fbg.gif);background-position:0 top;background-color:transparent}.x-nlg .x-btn-plain-toolbar-small{background-image:url(images/btn/btn-plain-toolbar-small-bg.gif);background-position:0 top}.x-nbr .x-btn-plain-toolbar-small{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-plain-toolbar-small-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-plain-toolbar-small-tl{background-position:0 -6px}.x-btn-plain-toolbar-small-tr{background-position:right -9px}.x-btn-plain-toolbar-small-bl{background-position:0 -12px}.x-btn-plain-toolbar-small-br{background-position:right -15px}.x-btn-plain-toolbar-small-ml{background-position:0 top}.x-btn-plain-toolbar-small-mr{background-position:right top}.x-btn-plain-toolbar-small-tc{background-position:0 0}.x-btn-plain-toolbar-small-bc{background-position:0 -3px}.x-btn-plain-toolbar-small-tr,.x-btn-plain-toolbar-small-br,.x-btn-plain-toolbar-small-mr{padding-right:3px}.x-btn-plain-toolbar-small-tl,.x-btn-plain-toolbar-small-bl,.x-btn-plain-toolbar-small-ml{padding-left:3px}.x-btn-plain-toolbar-small-tc{height:3px}.x-btn-plain-toolbar-small-bc{height:3px}.x-btn-plain-toolbar-small-tl,.x-btn-plain-toolbar-small-bl,.x-btn-plain-toolbar-small-tr,.x-btn-plain-toolbar-small-br,.x-btn-plain-toolbar-small-tc,.x-btn-plain-toolbar-small-bc,.x-btn-plain-toolbar-small-ml,.x-btn-plain-toolbar-small-mr{zoom:1}.x-btn-plain-toolbar-small-ml,.x-btn-plain-toolbar-small-mr{zoom:1}.x-btn-plain-toolbar-small-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-plain-toolbar-small-tl,.x-strict .x-ie7 .x-btn-plain-toolbar-small-bl{position:relative;right:0}.x-btn-plain-toolbar-small:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-plain-toolbar-small-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-bg.gif)"}.x-btn-plain-toolbar-small .x-btn-inner{font-size:12px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;color:#666;padding:0 5px}.x-btn-plain-toolbar-small .x-btn-arrow{background-image:url(images/button/plain-toolbar-small-arrow.png)}.x-btn-plain-toolbar-small .x-btn-arrow-right{padding-right:21px}.x-btn-plain-toolbar-small .x-btn-arrow-bottom{padding-bottom:18px}.x-btn-plain-toolbar-small .x-btn-glyph{font-size:16px;line-height:16px;color:#666;opacity:.5}.x-ie8m .x-btn-plain-toolbar-small .x-btn-glyph{color:#b2b2b2}.x-btn-plain-toolbar-small-disabled{background-image:none;background-color:transparent}.x-btn-plain-toolbar-small-icon .x-btn-button,.x-btn-plain-toolbar-small-noicon .x-btn-button{height:16px}.x-btn-plain-toolbar-small-icon .x-btn-inner,.x-btn-plain-toolbar-small-noicon .x-btn-inner{line-height:16px}.x-btn-plain-toolbar-small-icon .x-btn-arrow-right .x-btn-inner,.x-btn-plain-toolbar-small-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-plain-toolbar-small-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-plain-toolbar-small-icon .x-btn-inner{width:16px;padding:0}.x-btn-plain-toolbar-small-icon .x-btn-icon-el{width:16px;height:16px}.x-btn-plain-toolbar-small-icon-text-left .x-btn-button{height:16px}.x-btn-plain-toolbar-small-icon-text-left .x-btn-inner{line-height:16px;padding-left:21px}.x-btn-plain-toolbar-small-icon-text-left .x-btn-icon-el{width:16px;right:auto}.x-ie6 .x-btn-plain-toolbar-small-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-plain-toolbar-small-icon-text-left .x-btn-icon-el{height:16px}.x-btn-plain-toolbar-small-icon-text-right .x-btn-button{height:16px}.x-btn-plain-toolbar-small-icon-text-right .x-btn-inner{line-height:16px;padding-right:21px}.x-btn-plain-toolbar-small-icon-text-right .x-btn-icon-el{width:16px;left:auto}.x-ie6 .x-btn-plain-toolbar-small-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-plain-toolbar-small-icon-text-right .x-btn-icon-el{height:16px}.x-btn-plain-toolbar-small-icon-text-top .x-btn-inner{padding-top:21px}.x-btn-plain-toolbar-small-icon-text-top .x-btn-icon-el{height:16px;bottom:auto}.x-ie6 .x-btn-plain-toolbar-small-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-plain-toolbar-small-icon-text-top .x-btn-icon-el{width:100%}.x-btn-plain-toolbar-small-icon-text-bottom .x-btn-inner{padding-bottom:21px}.x-btn-plain-toolbar-small-icon-text-bottom .x-btn-icon-el{height:16px;top:auto}.x-ie6 .x-btn-plain-toolbar-small-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-plain-toolbar-small-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-plain-toolbar-small-over{border-color:#e1e1e1;background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-plain-toolbar-small-focus{border-color:#e1e1e1;background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-plain-toolbar-small-menu-active,.x-btn-plain-toolbar-small-pressed{border-color:#e1e1e1;background-image:none;background-color:#e1e1e1;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e1e1e1),color-stop(50%,#d5d5d5),color-stop(51%,#e1e1e1),color-stop(100%,#e4e4e4));background-image:-webkit-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-moz-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-o-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4)}.x-btn-plain-toolbar-small-over .x-frame-tl,.x-btn-plain-toolbar-small-over .x-frame-bl,.x-btn-plain-toolbar-small-over .x-frame-tr,.x-btn-plain-toolbar-small-over .x-frame-br,.x-btn-plain-toolbar-small-over .x-frame-tc,.x-btn-plain-toolbar-small-over .x-frame-bc{background-image:url(images/btn/btn-plain-toolbar-small-over-corners.gif)}.x-btn-plain-toolbar-small-over .x-frame-ml,.x-btn-plain-toolbar-small-over .x-frame-mr{background-image:url(images/btn/btn-plain-toolbar-small-over-sides.gif)}.x-btn-plain-toolbar-small-over .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-plain-toolbar-small-over-fbg.gif)}.x-btn-plain-toolbar-small-focus .x-frame-tl,.x-btn-plain-toolbar-small-focus .x-frame-bl,.x-btn-plain-toolbar-small-focus .x-frame-tr,.x-btn-plain-toolbar-small-focus .x-frame-br,.x-btn-plain-toolbar-small-focus .x-frame-tc,.x-btn-plain-toolbar-small-focus .x-frame-bc{background-image:url(images/btn/btn-plain-toolbar-small-focus-corners.gif)}.x-btn-plain-toolbar-small-focus .x-frame-ml,.x-btn-plain-toolbar-small-focus .x-frame-mr{background-image:url(images/btn/btn-plain-toolbar-small-focus-sides.gif)}.x-btn-plain-toolbar-small-focus .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-plain-toolbar-small-focus-fbg.gif)}.x-btn-plain-toolbar-small-menu-active .x-frame-tl,.x-btn-plain-toolbar-small-menu-active .x-frame-bl,.x-btn-plain-toolbar-small-menu-active .x-frame-tr,.x-btn-plain-toolbar-small-menu-active .x-frame-br,.x-btn-plain-toolbar-small-menu-active .x-frame-tc,.x-btn-plain-toolbar-small-menu-active .x-frame-bc,.x-btn-plain-toolbar-small-pressed .x-frame-tl,.x-btn-plain-toolbar-small-pressed .x-frame-bl,.x-btn-plain-toolbar-small-pressed .x-frame-tr,.x-btn-plain-toolbar-small-pressed .x-frame-br,.x-btn-plain-toolbar-small-pressed .x-frame-tc,.x-btn-plain-toolbar-small-pressed .x-frame-bc{background-image:url(images/btn/btn-plain-toolbar-small-pressed-corners.gif)}.x-btn-plain-toolbar-small-menu-active .x-frame-ml,.x-btn-plain-toolbar-small-menu-active .x-frame-mr,.x-btn-plain-toolbar-small-pressed .x-frame-ml,.x-btn-plain-toolbar-small-pressed .x-frame-mr{background-image:url(images/btn/btn-plain-toolbar-small-pressed-sides.gif)}.x-btn-plain-toolbar-small-menu-active .x-frame-mc,.x-btn-plain-toolbar-small-pressed .x-frame-mc{background-color:#e1e1e1;background-image:url(images/btn/btn-plain-toolbar-small-pressed-fbg.gif)}.x-btn-plain-toolbar-small-disabled .x-frame-tl,.x-btn-plain-toolbar-small-disabled .x-frame-bl,.x-btn-plain-toolbar-small-disabled .x-frame-tr,.x-btn-plain-toolbar-small-disabled .x-frame-br,.x-btn-plain-toolbar-small-disabled .x-frame-tc,.x-btn-plain-toolbar-small-disabled .x-frame-bc{background-image:url(images/btn/btn-plain-toolbar-small-disabled-corners.gif)}.x-btn-plain-toolbar-small-disabled .x-frame-ml,.x-btn-plain-toolbar-small-disabled .x-frame-mr{background-image:url(images/btn/btn-plain-toolbar-small-disabled-sides.gif)}.x-btn-plain-toolbar-small-disabled .x-frame-mc{background-color:transparent;background-image:url(images/btn/btn-plain-toolbar-small-disabled-fbg.gif)}.x-nlg .x-btn-plain-toolbar-small-over{background-image:url(images/btn/btn-plain-toolbar-small-over-bg.gif)}.x-nlg .x-btn-plain-toolbar-small-focus{background-image:url(images/btn/btn-plain-toolbar-small-focus-bg.gif)}.x-nlg .x-btn-plain-toolbar-small-menu-active,.x-nlg .x-btn-plain-toolbar-small-pressed{background-image:url(images/btn/btn-plain-toolbar-small-pressed-bg.gif)}.x-nlg .x-btn-plain-toolbar-small-disabled{background-image:url(images/btn/btn-plain-toolbar-small-disabled-bg.gif)}.x-nbr .x-btn-plain-toolbar-small{background-image:none}.x-btn-plain-toolbar-small .x-btn-split-right{background-image:url(images/button/plain-toolbar-small-s-arrow.png);padding-right:23px}.x-btn-plain-toolbar-small .x-btn-split-bottom{background-image:url(images/button/plain-toolbar-small-s-arrow-b.png);padding-bottom:20px}.x-btn-plain-toolbar-small-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-plain-toolbar-small-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-over-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-over-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-over-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-over-bg.gif)"}.x-btn-plain-toolbar-small-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-focus-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-focus-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-focus-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-focus-bg.gif)"}.x-btn-plain-toolbar-small-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-pressed-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-pressed-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-pressed-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-pressed-bg.gif)"}.x-btn-plain-toolbar-small-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-small-disabled-corners.gif), sides:url(images/btn/btn-plain-toolbar-small-disabled-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-small-disabled-fbg.gif), bg:url(images/btn/btn-plain-toolbar-small-disabled-bg.gif)"}.x-btn-plain-toolbar-medium{border-color:transparent}.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-image:none;background-color:transparent}.x-btn-plain-toolbar-medium-mc{background-image:url(images/btn/btn-plain-toolbar-medium-fbg.gif);background-position:0 top;background-color:transparent}.x-nlg .x-btn-plain-toolbar-medium{background-image:url(images/btn/btn-plain-toolbar-medium-bg.gif);background-position:0 top}.x-nbr .x-btn-plain-toolbar-medium{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-plain-toolbar-medium-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-plain-toolbar-medium-tl{background-position:0 -6px}.x-btn-plain-toolbar-medium-tr{background-position:right -9px}.x-btn-plain-toolbar-medium-bl{background-position:0 -12px}.x-btn-plain-toolbar-medium-br{background-position:right -15px}.x-btn-plain-toolbar-medium-ml{background-position:0 top}.x-btn-plain-toolbar-medium-mr{background-position:right top}.x-btn-plain-toolbar-medium-tc{background-position:0 0}.x-btn-plain-toolbar-medium-bc{background-position:0 -3px}.x-btn-plain-toolbar-medium-tr,.x-btn-plain-toolbar-medium-br,.x-btn-plain-toolbar-medium-mr{padding-right:3px}.x-btn-plain-toolbar-medium-tl,.x-btn-plain-toolbar-medium-bl,.x-btn-plain-toolbar-medium-ml{padding-left:3px}.x-btn-plain-toolbar-medium-tc{height:3px}.x-btn-plain-toolbar-medium-bc{height:3px}.x-btn-plain-toolbar-medium-tl,.x-btn-plain-toolbar-medium-bl,.x-btn-plain-toolbar-medium-tr,.x-btn-plain-toolbar-medium-br,.x-btn-plain-toolbar-medium-tc,.x-btn-plain-toolbar-medium-bc,.x-btn-plain-toolbar-medium-ml,.x-btn-plain-toolbar-medium-mr{zoom:1}.x-btn-plain-toolbar-medium-ml,.x-btn-plain-toolbar-medium-mr{zoom:1}.x-btn-plain-toolbar-medium-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-plain-toolbar-medium-tl,.x-strict .x-ie7 .x-btn-plain-toolbar-medium-bl{position:relative;right:0}.x-btn-plain-toolbar-medium:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-plain-toolbar-medium-fbg.gif), bg:url(images/btn/btn-plain-toolbar-medium-bg.gif)"}.x-btn-plain-toolbar-medium .x-btn-inner{font-size:14px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;color:#666;padding:0 8px}.x-btn-plain-toolbar-medium .x-btn-arrow{background-image:url(images/button/plain-toolbar-medium-arrow.png)}.x-btn-plain-toolbar-medium .x-btn-arrow-right{padding-right:30px}.x-btn-plain-toolbar-medium .x-btn-arrow-bottom{padding-bottom:26px}.x-btn-plain-toolbar-medium .x-btn-glyph{font-size:24px;line-height:24px;color:#666;opacity:.5}.x-ie8m .x-btn-plain-toolbar-medium .x-btn-glyph{color:#b2b2b2}.x-btn-plain-toolbar-medium-disabled{background-image:none;background-color:transparent}.x-btn-plain-toolbar-medium-icon .x-btn-button,.x-btn-plain-toolbar-medium-noicon .x-btn-button{height:24px}.x-btn-plain-toolbar-medium-icon .x-btn-inner,.x-btn-plain-toolbar-medium-noicon .x-btn-inner{line-height:24px}.x-btn-plain-toolbar-medium-icon .x-btn-arrow-right .x-btn-inner,.x-btn-plain-toolbar-medium-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-plain-toolbar-medium-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-plain-toolbar-medium-icon .x-btn-inner{width:24px;padding:0}.x-btn-plain-toolbar-medium-icon .x-btn-icon-el{width:24px;height:24px}.x-btn-plain-toolbar-medium-icon-text-left .x-btn-button{height:24px}.x-btn-plain-toolbar-medium-icon-text-left .x-btn-inner{line-height:24px;padding-left:29px}.x-btn-plain-toolbar-medium-icon-text-left .x-btn-icon-el{width:24px;right:auto}.x-ie6 .x-btn-plain-toolbar-medium-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-plain-toolbar-medium-icon-text-left .x-btn-icon-el{height:24px}.x-btn-plain-toolbar-medium-icon-text-right .x-btn-button{height:24px}.x-btn-plain-toolbar-medium-icon-text-right .x-btn-inner{line-height:24px;padding-right:29px}.x-btn-plain-toolbar-medium-icon-text-right .x-btn-icon-el{width:24px;left:auto}.x-ie6 .x-btn-plain-toolbar-medium-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-plain-toolbar-medium-icon-text-right .x-btn-icon-el{height:24px}.x-btn-plain-toolbar-medium-icon-text-top .x-btn-inner{padding-top:29px}.x-btn-plain-toolbar-medium-icon-text-top .x-btn-icon-el{height:24px;bottom:auto}.x-ie6 .x-btn-plain-toolbar-medium-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-plain-toolbar-medium-icon-text-top .x-btn-icon-el{width:100%}.x-btn-plain-toolbar-medium-icon-text-bottom .x-btn-inner{padding-bottom:29px}.x-btn-plain-toolbar-medium-icon-text-bottom .x-btn-icon-el{height:24px;top:auto}.x-ie6 .x-btn-plain-toolbar-medium-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-plain-toolbar-medium-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-plain-toolbar-medium-over{border-color:#e1e1e1;background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-plain-toolbar-medium-focus{border-color:#e1e1e1;background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-plain-toolbar-medium-menu-active,.x-btn-plain-toolbar-medium-pressed{border-color:#e1e1e1;background-image:none;background-color:#e1e1e1;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e1e1e1),color-stop(50%,#d5d5d5),color-stop(51%,#e1e1e1),color-stop(100%,#e4e4e4));background-image:-webkit-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-moz-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-o-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4)}.x-btn-plain-toolbar-medium-over .x-frame-tl,.x-btn-plain-toolbar-medium-over .x-frame-bl,.x-btn-plain-toolbar-medium-over .x-frame-tr,.x-btn-plain-toolbar-medium-over .x-frame-br,.x-btn-plain-toolbar-medium-over .x-frame-tc,.x-btn-plain-toolbar-medium-over .x-frame-bc{background-image:url(images/btn/btn-plain-toolbar-medium-over-corners.gif)}.x-btn-plain-toolbar-medium-over .x-frame-ml,.x-btn-plain-toolbar-medium-over .x-frame-mr{background-image:url(images/btn/btn-plain-toolbar-medium-over-sides.gif)}.x-btn-plain-toolbar-medium-over .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-plain-toolbar-medium-over-fbg.gif)}.x-btn-plain-toolbar-medium-focus .x-frame-tl,.x-btn-plain-toolbar-medium-focus .x-frame-bl,.x-btn-plain-toolbar-medium-focus .x-frame-tr,.x-btn-plain-toolbar-medium-focus .x-frame-br,.x-btn-plain-toolbar-medium-focus .x-frame-tc,.x-btn-plain-toolbar-medium-focus .x-frame-bc{background-image:url(images/btn/btn-plain-toolbar-medium-focus-corners.gif)}.x-btn-plain-toolbar-medium-focus .x-frame-ml,.x-btn-plain-toolbar-medium-focus .x-frame-mr{background-image:url(images/btn/btn-plain-toolbar-medium-focus-sides.gif)}.x-btn-plain-toolbar-medium-focus .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-plain-toolbar-medium-focus-fbg.gif)}.x-btn-plain-toolbar-medium-menu-active .x-frame-tl,.x-btn-plain-toolbar-medium-menu-active .x-frame-bl,.x-btn-plain-toolbar-medium-menu-active .x-frame-tr,.x-btn-plain-toolbar-medium-menu-active .x-frame-br,.x-btn-plain-toolbar-medium-menu-active .x-frame-tc,.x-btn-plain-toolbar-medium-menu-active .x-frame-bc,.x-btn-plain-toolbar-medium-pressed .x-frame-tl,.x-btn-plain-toolbar-medium-pressed .x-frame-bl,.x-btn-plain-toolbar-medium-pressed .x-frame-tr,.x-btn-plain-toolbar-medium-pressed .x-frame-br,.x-btn-plain-toolbar-medium-pressed .x-frame-tc,.x-btn-plain-toolbar-medium-pressed .x-frame-bc{background-image:url(images/btn/btn-plain-toolbar-medium-pressed-corners.gif)}.x-btn-plain-toolbar-medium-menu-active .x-frame-ml,.x-btn-plain-toolbar-medium-menu-active .x-frame-mr,.x-btn-plain-toolbar-medium-pressed .x-frame-ml,.x-btn-plain-toolbar-medium-pressed .x-frame-mr{background-image:url(images/btn/btn-plain-toolbar-medium-pressed-sides.gif)}.x-btn-plain-toolbar-medium-menu-active .x-frame-mc,.x-btn-plain-toolbar-medium-pressed .x-frame-mc{background-color:#e1e1e1;background-image:url(images/btn/btn-plain-toolbar-medium-pressed-fbg.gif)}.x-btn-plain-toolbar-medium-disabled .x-frame-tl,.x-btn-plain-toolbar-medium-disabled .x-frame-bl,.x-btn-plain-toolbar-medium-disabled .x-frame-tr,.x-btn-plain-toolbar-medium-disabled .x-frame-br,.x-btn-plain-toolbar-medium-disabled .x-frame-tc,.x-btn-plain-toolbar-medium-disabled .x-frame-bc{background-image:url(images/btn/btn-plain-toolbar-medium-disabled-corners.gif)}.x-btn-plain-toolbar-medium-disabled .x-frame-ml,.x-btn-plain-toolbar-medium-disabled .x-frame-mr{background-image:url(images/btn/btn-plain-toolbar-medium-disabled-sides.gif)}.x-btn-plain-toolbar-medium-disabled .x-frame-mc{background-color:transparent;background-image:url(images/btn/btn-plain-toolbar-medium-disabled-fbg.gif)}.x-nlg .x-btn-plain-toolbar-medium-over{background-image:url(images/btn/btn-plain-toolbar-medium-over-bg.gif)}.x-nlg .x-btn-plain-toolbar-medium-focus{background-image:url(images/btn/btn-plain-toolbar-medium-focus-bg.gif)}.x-nlg .x-btn-plain-toolbar-medium-menu-active,.x-nlg .x-btn-plain-toolbar-medium-pressed{background-image:url(images/btn/btn-plain-toolbar-medium-pressed-bg.gif)}.x-nlg .x-btn-plain-toolbar-medium-disabled{background-image:url(images/btn/btn-plain-toolbar-medium-disabled-bg.gif)}.x-nbr .x-btn-plain-toolbar-medium{background-image:none}.x-btn-plain-toolbar-medium .x-btn-split-right{background-image:url(images/button/plain-toolbar-medium-s-arrow.png);padding-right:32px}.x-btn-plain-toolbar-medium .x-btn-split-bottom{background-image:url(images/button/plain-toolbar-medium-s-arrow-b.png);padding-bottom:28px}.x-btn-plain-toolbar-medium-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-plain-toolbar-medium-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-medium-over-corners.gif), sides:url(images/btn/btn-plain-toolbar-medium-over-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-medium-over-fbg.gif), bg:url(images/btn/btn-plain-toolbar-medium-over-bg.gif)"}.x-btn-plain-toolbar-medium-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-medium-focus-corners.gif), sides:url(images/btn/btn-plain-toolbar-medium-focus-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-medium-focus-fbg.gif), bg:url(images/btn/btn-plain-toolbar-medium-focus-bg.gif)"}.x-btn-plain-toolbar-medium-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-medium-pressed-corners.gif), sides:url(images/btn/btn-plain-toolbar-medium-pressed-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-medium-pressed-fbg.gif), bg:url(images/btn/btn-plain-toolbar-medium-pressed-bg.gif)"}.x-btn-plain-toolbar-medium-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-medium-disabled-corners.gif), sides:url(images/btn/btn-plain-toolbar-medium-disabled-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-medium-disabled-fbg.gif), bg:url(images/btn/btn-plain-toolbar-medium-disabled-bg.gif)"}.x-btn-plain-toolbar-large{border-color:transparent}.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-image:none;background-color:transparent}.x-btn-plain-toolbar-large-mc{background-image:url(images/btn/btn-plain-toolbar-large-fbg.gif);background-position:0 top;background-color:transparent}.x-nlg .x-btn-plain-toolbar-large{background-image:url(images/btn/btn-plain-toolbar-large-bg.gif);background-position:0 top}.x-nbr .x-btn-plain-toolbar-large{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent;background-image:none}body.x-nbr .x-btn-plain-toolbar-large-frameInfo{font-family:th-3-3-3-3-1-1-1-1-3-3-3-3}.x-btn-plain-toolbar-large-tl{background-position:0 -6px}.x-btn-plain-toolbar-large-tr{background-position:right -9px}.x-btn-plain-toolbar-large-bl{background-position:0 -12px}.x-btn-plain-toolbar-large-br{background-position:right -15px}.x-btn-plain-toolbar-large-ml{background-position:0 top}.x-btn-plain-toolbar-large-mr{background-position:right top}.x-btn-plain-toolbar-large-tc{background-position:0 0}.x-btn-plain-toolbar-large-bc{background-position:0 -3px}.x-btn-plain-toolbar-large-tr,.x-btn-plain-toolbar-large-br,.x-btn-plain-toolbar-large-mr{padding-right:3px}.x-btn-plain-toolbar-large-tl,.x-btn-plain-toolbar-large-bl,.x-btn-plain-toolbar-large-ml{padding-left:3px}.x-btn-plain-toolbar-large-tc{height:3px}.x-btn-plain-toolbar-large-bc{height:3px}.x-btn-plain-toolbar-large-tl,.x-btn-plain-toolbar-large-bl,.x-btn-plain-toolbar-large-tr,.x-btn-plain-toolbar-large-br,.x-btn-plain-toolbar-large-tc,.x-btn-plain-toolbar-large-bc,.x-btn-plain-toolbar-large-ml,.x-btn-plain-toolbar-large-mr{zoom:1}.x-btn-plain-toolbar-large-ml,.x-btn-plain-toolbar-large-mr{zoom:1}.x-btn-plain-toolbar-large-mc{padding:1px 1px 1px 1px}.x-strict .x-ie7 .x-btn-plain-toolbar-large-tl,.x-strict .x-ie7 .x-btn-plain-toolbar-large-bl{position:relative;right:0}.x-btn-plain-toolbar-large:after{display:none;content:"x-slicer:stretch:bottom, frame-bg:url(images/btn/btn-plain-toolbar-large-fbg.gif), bg:url(images/btn/btn-plain-toolbar-large-bg.gif)"}.x-btn-plain-toolbar-large .x-btn-inner{font-size:16px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;color:#666;padding:0 10px}.x-btn-plain-toolbar-large .x-btn-arrow{background-image:url(images/button/plain-toolbar-large-arrow.png)}.x-btn-plain-toolbar-large .x-btn-arrow-right{padding-right:36px}.x-btn-plain-toolbar-large .x-btn-arrow-bottom{padding-bottom:32px}.x-btn-plain-toolbar-large .x-btn-glyph{font-size:32px;line-height:32px;color:#666;opacity:.5}.x-ie8m .x-btn-plain-toolbar-large .x-btn-glyph{color:#b2b2b2}.x-btn-plain-toolbar-large-disabled{background-image:none;background-color:transparent}.x-btn-plain-toolbar-large-icon .x-btn-button,.x-btn-plain-toolbar-large-noicon .x-btn-button{height:32px}.x-btn-plain-toolbar-large-icon .x-btn-inner,.x-btn-plain-toolbar-large-noicon .x-btn-inner{line-height:32px}.x-btn-plain-toolbar-large-icon .x-btn-arrow-right .x-btn-inner,.x-btn-plain-toolbar-large-noicon .x-btn-arrow-right .x-btn-inner,.x-btn-plain-toolbar-large-icon-text-left .x-btn-arrow-right .x-btn-inner{padding-right:0}.x-btn-plain-toolbar-large-icon .x-btn-inner{width:32px;padding:0}.x-btn-plain-toolbar-large-icon .x-btn-icon-el{width:32px;height:32px}.x-btn-plain-toolbar-large-icon-text-left .x-btn-button{height:32px}.x-btn-plain-toolbar-large-icon-text-left .x-btn-inner{line-height:32px;padding-left:37px}.x-btn-plain-toolbar-large-icon-text-left .x-btn-icon-el{width:32px;right:auto}.x-ie6 .x-btn-plain-toolbar-large-icon-text-left .x-btn-icon-el,.x-quirks .x-btn-plain-toolbar-large-icon-text-left .x-btn-icon-el{height:32px}.x-btn-plain-toolbar-large-icon-text-right .x-btn-button{height:32px}.x-btn-plain-toolbar-large-icon-text-right .x-btn-inner{line-height:32px;padding-right:37px}.x-btn-plain-toolbar-large-icon-text-right .x-btn-icon-el{width:32px;left:auto}.x-ie6 .x-btn-plain-toolbar-large-icon-text-right .x-btn-icon-el,.x-quirks .x-btn-plain-toolbar-large-icon-text-right .x-btn-icon-el{height:32px}.x-btn-plain-toolbar-large-icon-text-top .x-btn-inner{padding-top:37px}.x-btn-plain-toolbar-large-icon-text-top .x-btn-icon-el{height:32px;bottom:auto}.x-ie6 .x-btn-plain-toolbar-large-icon-text-top .x-btn-icon-el,.x-quirks .x-ie .x-btn-plain-toolbar-large-icon-text-top .x-btn-icon-el{width:100%}.x-btn-plain-toolbar-large-icon-text-bottom .x-btn-inner{padding-bottom:37px}.x-btn-plain-toolbar-large-icon-text-bottom .x-btn-icon-el{height:32px;top:auto}.x-ie6 .x-btn-plain-toolbar-large-icon-text-bottom .x-btn-icon-el,.x-quirks .x-ie .x-btn-plain-toolbar-large-icon-text-bottom .x-btn-icon-el{width:100%}.x-btn-plain-toolbar-large-over{border-color:#e1e1e1;background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-plain-toolbar-large-focus{border-color:#e1e1e1;background-image:none;background-color:#ebebeb;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#ededed),color-stop(50%,#ebebeb),color-stop(51%,#dfdfdf),color-stop(100%,#ebebeb));background-image:-webkit-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-moz-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:-o-linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb);background-image:linear-gradient(top,#ededed,#ebebeb 50%,#dfdfdf 51%,#ebebeb)}.x-btn-plain-toolbar-large-menu-active,.x-btn-plain-toolbar-large-pressed{border-color:#e1e1e1;background-image:none;background-color:#e1e1e1;background-image:-webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#e1e1e1),color-stop(50%,#d5d5d5),color-stop(51%,#e1e1e1),color-stop(100%,#e4e4e4));background-image:-webkit-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-moz-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:-o-linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4);background-image:linear-gradient(top,#e1e1e1,#d5d5d5 50%,#e1e1e1 51%,#e4e4e4)}.x-btn-plain-toolbar-large-over .x-frame-tl,.x-btn-plain-toolbar-large-over .x-frame-bl,.x-btn-plain-toolbar-large-over .x-frame-tr,.x-btn-plain-toolbar-large-over .x-frame-br,.x-btn-plain-toolbar-large-over .x-frame-tc,.x-btn-plain-toolbar-large-over .x-frame-bc{background-image:url(images/btn/btn-plain-toolbar-large-over-corners.gif)}.x-btn-plain-toolbar-large-over .x-frame-ml,.x-btn-plain-toolbar-large-over .x-frame-mr{background-image:url(images/btn/btn-plain-toolbar-large-over-sides.gif)}.x-btn-plain-toolbar-large-over .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-plain-toolbar-large-over-fbg.gif)}.x-btn-plain-toolbar-large-focus .x-frame-tl,.x-btn-plain-toolbar-large-focus .x-frame-bl,.x-btn-plain-toolbar-large-focus .x-frame-tr,.x-btn-plain-toolbar-large-focus .x-frame-br,.x-btn-plain-toolbar-large-focus .x-frame-tc,.x-btn-plain-toolbar-large-focus .x-frame-bc{background-image:url(images/btn/btn-plain-toolbar-large-focus-corners.gif)}.x-btn-plain-toolbar-large-focus .x-frame-ml,.x-btn-plain-toolbar-large-focus .x-frame-mr{background-image:url(images/btn/btn-plain-toolbar-large-focus-sides.gif)}.x-btn-plain-toolbar-large-focus .x-frame-mc{background-color:#ebebeb;background-image:url(images/btn/btn-plain-toolbar-large-focus-fbg.gif)}.x-btn-plain-toolbar-large-menu-active .x-frame-tl,.x-btn-plain-toolbar-large-menu-active .x-frame-bl,.x-btn-plain-toolbar-large-menu-active .x-frame-tr,.x-btn-plain-toolbar-large-menu-active .x-frame-br,.x-btn-plain-toolbar-large-menu-active .x-frame-tc,.x-btn-plain-toolbar-large-menu-active .x-frame-bc,.x-btn-plain-toolbar-large-pressed .x-frame-tl,.x-btn-plain-toolbar-large-pressed .x-frame-bl,.x-btn-plain-toolbar-large-pressed .x-frame-tr,.x-btn-plain-toolbar-large-pressed .x-frame-br,.x-btn-plain-toolbar-large-pressed .x-frame-tc,.x-btn-plain-toolbar-large-pressed .x-frame-bc{background-image:url(images/btn/btn-plain-toolbar-large-pressed-corners.gif)}.x-btn-plain-toolbar-large-menu-active .x-frame-ml,.x-btn-plain-toolbar-large-menu-active .x-frame-mr,.x-btn-plain-toolbar-large-pressed .x-frame-ml,.x-btn-plain-toolbar-large-pressed .x-frame-mr{background-image:url(images/btn/btn-plain-toolbar-large-pressed-sides.gif)}.x-btn-plain-toolbar-large-menu-active .x-frame-mc,.x-btn-plain-toolbar-large-pressed .x-frame-mc{background-color:#e1e1e1;background-image:url(images/btn/btn-plain-toolbar-large-pressed-fbg.gif)}.x-btn-plain-toolbar-large-disabled .x-frame-tl,.x-btn-plain-toolbar-large-disabled .x-frame-bl,.x-btn-plain-toolbar-large-disabled .x-frame-tr,.x-btn-plain-toolbar-large-disabled .x-frame-br,.x-btn-plain-toolbar-large-disabled .x-frame-tc,.x-btn-plain-toolbar-large-disabled .x-frame-bc{background-image:url(images/btn/btn-plain-toolbar-large-disabled-corners.gif)}.x-btn-plain-toolbar-large-disabled .x-frame-ml,.x-btn-plain-toolbar-large-disabled .x-frame-mr{background-image:url(images/btn/btn-plain-toolbar-large-disabled-sides.gif)}.x-btn-plain-toolbar-large-disabled .x-frame-mc{background-color:transparent;background-image:url(images/btn/btn-plain-toolbar-large-disabled-fbg.gif)}.x-nlg .x-btn-plain-toolbar-large-over{background-image:url(images/btn/btn-plain-toolbar-large-over-bg.gif)}.x-nlg .x-btn-plain-toolbar-large-focus{background-image:url(images/btn/btn-plain-toolbar-large-focus-bg.gif)}.x-nlg .x-btn-plain-toolbar-large-menu-active,.x-nlg .x-btn-plain-toolbar-large-pressed{background-image:url(images/btn/btn-plain-toolbar-large-pressed-bg.gif)}.x-nlg .x-btn-plain-toolbar-large-disabled{background-image:url(images/btn/btn-plain-toolbar-large-disabled-bg.gif)}.x-nbr .x-btn-plain-toolbar-large{background-image:none}.x-btn-plain-toolbar-large .x-btn-split-right{background-image:url(images/button/plain-toolbar-large-s-arrow.png);padding-right:38px}.x-btn-plain-toolbar-large .x-btn-split-bottom{background-image:url(images/button/plain-toolbar-large-s-arrow-b.png);padding-bottom:34px}.x-btn-plain-toolbar-large-disabled{filter:alpha(opacity=50);opacity:.5}.x-btn-plain-toolbar-large-over:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-large-over-corners.gif), sides:url(images/btn/btn-plain-toolbar-large-over-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-large-over-fbg.gif), bg:url(images/btn/btn-plain-toolbar-large-over-bg.gif)"}.x-btn-plain-toolbar-large-focus:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-large-focus-corners.gif), sides:url(images/btn/btn-plain-toolbar-large-focus-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-large-focus-fbg.gif), bg:url(images/btn/btn-plain-toolbar-large-focus-bg.gif)"}.x-btn-plain-toolbar-large-pressed:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-large-pressed-corners.gif), sides:url(images/btn/btn-plain-toolbar-large-pressed-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-large-pressed-fbg.gif), bg:url(images/btn/btn-plain-toolbar-large-pressed-bg.gif)"}.x-btn-plain-toolbar-large-disabled:after{display:none;content:"x-slicer:stretch:bottom, corners:url(images/btn/btn-plain-toolbar-large-disabled-corners.gif), sides:url(images/btn/btn-plain-toolbar-large-disabled-sides.gif), frame-bg:url(images/btn/btn-plain-toolbar-large-disabled-fbg.gif), bg:url(images/btn/btn-plain-toolbar-large-disabled-bg.gif)"}.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}.x-strict .x-ie8 .x-btn-plain-toolbar-small-disabled .x-btn-icon-el,.x-strict .x-ie8 .x-btn-plain-toolbar-medium-disabled .x-btn-icon-el,.x-strict .x-ie8 .x-btn-plain-toolbar-large-disabled .x-btn-icon-el{filter:alpha(opacity=50);opacity:.5}.x-toolbar-default .x-toolbar-scroll-left{margin-right:4px}.x-toolbar-default .x-toolbar-scroll-right{margin-left:4px}.x-toolbar-default .x-toolbar-scroll-left,.x-toolbar-default .x-toolbar-scroll-right{filter:alpha(opacity=60);opacity:.6}.x-toolbar-default .x-toolbar-scroll-left-hover,.x-toolbar-default .x-toolbar-scroll-right-hover{background-position:0 0;filter:alpha(opacity=80);opacity:.8}.x-toolbar-default .x-toolbar-scroll-left-pressed,.x-toolbar-default .x-toolbar-scroll-right-pressed{background-position:0 0;filter:alpha(opacity=100);opacity:1}.x-toolbar-default .x-box-scroller-disabled{filter:alpha(opacity=25);opacity:.25}.x-toolbar-default .x-box-scroller{background-color:white}.x-toolbar-scroller{padding:6px 4px 6px 4px}.x-toolbar-vertical-scroller{padding:3px 8px 3px 8px}.x-panel-light{border-color:#157fcc;padding:0}.x-panel-header-light{font-size:13px;border:1px solid #157fcc}.x-panel-header-light .x-tool-img{background-image:url(images/tools/tool-sprites-dark.png);background-color:#dfeaf2}.x-panel-header-light-horizontal{padding:9px 9px 10px 9px}.x-panel-header-light-horizontal-noborder{padding:10px 10px 10px 10px}.x-panel-header-light-vertical{padding:9px 9px 9px 10px}.x-panel-header-light-vertical-noborder{padding:10px 10px 10px 10px}.x-panel-header-text-container-light{color:#666;font-size:13px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;line-height:15px;padding:1px 0 0;text-transform:none}.x-panel-body-light{background:white;border-color:#157fcc;color:black;font-size:13px;font-size:normal;border-width:1px;border-style:solid}.x-panel-header-light{background-image:none;background-color:#dfeaf2}.x-panel-header-light-vertical{background-image:none;background-color:#dfeaf2}.x-panel .x-panel-header-light-collapsed-border-top{border-bottom-width:1px!important}.x-panel .x-panel-header-light-collapsed-border-right{border-left-width:1px!important}.x-panel .x-panel-header-light-collapsed-border-bottom{border-top-width:1px!important}.x-panel .x-panel-header-light-collapsed-border-left{border-right-width:1px!important}.x-panel-header-light-top:after{display:none;content:"x-slicer:stretch:bottom"}.x-panel-header-light-bottom:after{display:none;content:"x-slicer:stretch:bottom"}.x-panel-header-light-left:after{display:none;content:"x-slicer:stretch:left"}.x-panel-header-light-right:after{display:none;content:"x-slicer:stretch:left"}.x-panel-header-light-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-light-vertical .x-panel-header-text-container{background-color:#dfeaf2;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#dfeaf2)}.x-panel-header-light .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-light .x-panel-header-glyph{color:white;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-light .x-panel-header-glyph{color:#eff4f8}.x-panel-header-light-horizontal .x-panel-header-icon-before-title{margin:0 6px 0 0}.x-panel-header-light-horizontal .x-panel-header-icon-after-title{margin:0 0 0 6px}.x-panel-header-light-vertical .x-panel-header-icon-before-title{margin:0 0 6px 0}.x-panel-header-light-vertical .x-panel-header-icon-after-title{margin:6px 0 0 0}.x-panel-header-light-horizontal .x-tool-after-title{margin:0 0 0 6px}.x-panel-header-light-horizontal .x-tool-before-title{margin:0 6px 0 0}.x-panel-header-light-vertical .x-tool-after-title{margin:6px 0 0 0}.x-panel-header-light-vertical .x-tool-before-title{margin:0 0 6px 0}.x-panel-light-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-panel-light-outer-border-l{border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-outer-border-b{border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-light-outer-border-bl{border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-outer-border-r{border-right-color:#157fcc!important;border-right-width:1px!important}.x-panel-light-outer-border-rl{border-right-color:#157fcc!important;border-right-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-outer-border-rb{border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-light-outer-border-rbl{border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-outer-border-t{border-top-color:#157fcc!important;border-top-width:1px!important}.x-panel-light-outer-border-tl{border-top-color:#157fcc!important;border-top-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-outer-border-tb{border-top-color:#157fcc!important;border-top-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-light-outer-border-tbl{border-top-color:#157fcc!important;border-top-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-outer-border-tr{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important}.x-panel-light-outer-border-trl{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-outer-border-trb{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-light-outer-border-trbl{border-color:#157fcc!important;border-width:1px!important}.x-panel-light-framed{border-color:#dfeaf2;padding:0}.x-panel-header-light-framed{font-size:13px;border:5px solid #dfeaf2}.x-panel-header-light-framed .x-tool-img{background-image:url(images/tools/tool-sprites-dark.png);background-color:#dfeaf2}.x-panel-header-light-framed-horizontal{padding:5px}.x-panel-header-light-framed-horizontal-noborder{padding:10px 10px 5px 10px}.x-panel-header-light-framed-vertical{padding:5px 5px 5px 5px}.x-panel-header-light-framed-vertical-noborder{padding:10px 10px 10px 5px}.x-panel-header-text-container-light-framed{color:#666;font-size:13px;font-weight:bold;font-family:helvetica,arial,verdana,sans-serif;line-height:15px;padding:1px 0 0;text-transform:none}.x-panel-body-light-framed{background:white;border-color:#dfeaf2;color:black;font-size:13px;font-size:normal;border-width:1px;border-style:solid}.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;border-width:5px;border-style:solid;background-color:white}.x-panel-light-framed-mc{background-color:white}.x-nbr .x-panel-light-framed{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-light-framed-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-0-0-0-0}.x-panel-light-framed-tl{background-position:0 -10px}.x-panel-light-framed-tr{background-position:right -15px}.x-panel-light-framed-bl{background-position:0 -20px}.x-panel-light-framed-br{background-position:right -25px}.x-panel-light-framed-ml{background-position:0 top}.x-panel-light-framed-mr{background-position:right top}.x-panel-light-framed-tc{background-position:0 0}.x-panel-light-framed-bc{background-position:0 -5px}.x-panel-light-framed-tr,.x-panel-light-framed-br,.x-panel-light-framed-mr{padding-right:5px}.x-panel-light-framed-tl,.x-panel-light-framed-bl,.x-panel-light-framed-ml{padding-left:5px}.x-panel-light-framed-tc{height:5px}.x-panel-light-framed-bc{height:5px}.x-panel-light-framed-tl,.x-panel-light-framed-bl,.x-panel-light-framed-tr,.x-panel-light-framed-br,.x-panel-light-framed-tc,.x-panel-light-framed-bc,.x-panel-light-framed-ml,.x-panel-light-framed-mr{zoom:1;background-image:url(images/panel/panel-light-framed-corners.gif)}.x-panel-light-framed-ml,.x-panel-light-framed-mr{zoom:1;background-image:url(images/panel/panel-light-framed-sides.gif);background-repeat:repeat-y}.x-panel-light-framed-mc{padding:0}.x-strict .x-ie7 .x-panel-light-framed-tl,.x-strict .x-ie7 .x-panel-light-framed-bl{position:relative;right:0}.x-panel-light-framed:after{display:none;content:"x-slicer:corners:url(images/panel/panel-light-framed-corners.gif), sides:url(images/panel/panel-light-framed-sides.gif)"}.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:5px 5px 5px 5px;border-width:5px 5px 0 5px;border-style:solid;background-color:#dfeaf2}.x-panel-header-light-framed-top-mc{background-color:#dfeaf2}.x-nbr .x-panel-header-light-framed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-light-framed-top-frameInfo{font-family:dh-4-4-0-0-5-5-0-5-5-5-5-5}.x-panel-header-light-framed-top-tl{background-position:0 -10px}.x-panel-header-light-framed-top-tr{background-position:right -15px}.x-panel-header-light-framed-top-bl{background-position:0 -20px}.x-panel-header-light-framed-top-br{background-position:right -25px}.x-panel-header-light-framed-top-ml{background-position:0 top}.x-panel-header-light-framed-top-mr{background-position:right top}.x-panel-header-light-framed-top-tc{background-position:0 0}.x-panel-header-light-framed-top-bc{background-position:0 -5px}.x-panel-header-light-framed-top-tr,.x-panel-header-light-framed-top-br,.x-panel-header-light-framed-top-mr{padding-right:5px}.x-panel-header-light-framed-top-tl,.x-panel-header-light-framed-top-bl,.x-panel-header-light-framed-top-ml{padding-left:5px}.x-panel-header-light-framed-top-tc{height:5px}.x-panel-header-light-framed-top-bc{height:0}.x-panel-header-light-framed-top-tl,.x-panel-header-light-framed-top-bl,.x-panel-header-light-framed-top-tr,.x-panel-header-light-framed-top-br,.x-panel-header-light-framed-top-tc,.x-panel-header-light-framed-top-bc,.x-panel-header-light-framed-top-ml,.x-panel-header-light-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-top-corners.gif)}.x-panel-header-light-framed-top-ml,.x-panel-header-light-framed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-top-sides.gif);background-repeat:repeat-y}.x-panel-header-light-framed-top-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-light-framed-top-tl,.x-strict .x-ie7 .x-panel-header-light-framed-top-bl{position:relative;right:0}.x-panel-header-light-framed-top:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-light-framed-top-corners.gif), sides:url(images/panel-header/panel-header-light-framed-top-sides.gif)"}.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:5px 5px 5px 5px;border-width:5px 5px 5px 0;border-style:solid;background-color:#dfeaf2}.x-panel-header-light-framed-right-mc{background-color:#dfeaf2}.x-nbr .x-panel-header-light-framed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-light-framed-right-frameInfo{font-family:dh-0-4-4-0-5-5-5-0-5-5-5-5}.x-panel-header-light-framed-right-tl{background-position:0 -10px}.x-panel-header-light-framed-right-tr{background-position:right -15px}.x-panel-header-light-framed-right-bl{background-position:0 -20px}.x-panel-header-light-framed-right-br{background-position:right -25px}.x-panel-header-light-framed-right-ml{background-position:0 right}.x-panel-header-light-framed-right-mr{background-position:right right}.x-panel-header-light-framed-right-tc{background-position:0 0}.x-panel-header-light-framed-right-bc{background-position:0 -5px}.x-panel-header-light-framed-right-tr,.x-panel-header-light-framed-right-br,.x-panel-header-light-framed-right-mr{padding-right:5px}.x-panel-header-light-framed-right-tl,.x-panel-header-light-framed-right-bl,.x-panel-header-light-framed-right-ml{padding-left:0}.x-panel-header-light-framed-right-tc{height:5px}.x-panel-header-light-framed-right-bc{height:5px}.x-panel-header-light-framed-right-tl,.x-panel-header-light-framed-right-bl,.x-panel-header-light-framed-right-tr,.x-panel-header-light-framed-right-br,.x-panel-header-light-framed-right-tc,.x-panel-header-light-framed-right-bc,.x-panel-header-light-framed-right-ml,.x-panel-header-light-framed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-right-corners.gif)}.x-panel-header-light-framed-right-ml,.x-panel-header-light-framed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-right-sides.gif);background-repeat:repeat-y}.x-panel-header-light-framed-right-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-light-framed-right-tl,.x-strict .x-ie7 .x-panel-header-light-framed-right-bl{position:relative;right:0}.x-panel-header-light-framed-right:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-light-framed-right-corners.gif), sides:url(images/panel-header/panel-header-light-framed-right-sides.gif)"}.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:5px 5px 5px 5px;border-width:0 5px 5px 5px;border-style:solid;background-color:#dfeaf2}.x-panel-header-light-framed-bottom-mc{background-color:#dfeaf2}.x-nbr .x-panel-header-light-framed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-light-framed-bottom-frameInfo{font-family:dh-0-0-4-4-0-5-5-5-5-5-5-5}.x-panel-header-light-framed-bottom-tl{background-position:0 -10px}.x-panel-header-light-framed-bottom-tr{background-position:right -15px}.x-panel-header-light-framed-bottom-bl{background-position:0 -20px}.x-panel-header-light-framed-bottom-br{background-position:right -25px}.x-panel-header-light-framed-bottom-ml{background-position:0 bottom}.x-panel-header-light-framed-bottom-mr{background-position:right bottom}.x-panel-header-light-framed-bottom-tc{background-position:0 0}.x-panel-header-light-framed-bottom-bc{background-position:0 -5px}.x-panel-header-light-framed-bottom-tr,.x-panel-header-light-framed-bottom-br,.x-panel-header-light-framed-bottom-mr{padding-right:5px}.x-panel-header-light-framed-bottom-tl,.x-panel-header-light-framed-bottom-bl,.x-panel-header-light-framed-bottom-ml{padding-left:5px}.x-panel-header-light-framed-bottom-tc{height:0}.x-panel-header-light-framed-bottom-bc{height:5px}.x-panel-header-light-framed-bottom-tl,.x-panel-header-light-framed-bottom-bl,.x-panel-header-light-framed-bottom-tr,.x-panel-header-light-framed-bottom-br,.x-panel-header-light-framed-bottom-tc,.x-panel-header-light-framed-bottom-bc,.x-panel-header-light-framed-bottom-ml,.x-panel-header-light-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-bottom-corners.gif)}.x-panel-header-light-framed-bottom-ml,.x-panel-header-light-framed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-bottom-sides.gif);background-repeat:repeat-y}.x-panel-header-light-framed-bottom-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-light-framed-bottom-tl,.x-strict .x-ie7 .x-panel-header-light-framed-bottom-bl{position:relative;right:0}.x-panel-header-light-framed-bottom:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-light-framed-bottom-corners.gif), sides:url(images/panel-header/panel-header-light-framed-bottom-sides.gif)"}.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:5px 5px 5px 5px;border-width:5px 0 5px 5px;border-style:solid;background-color:#dfeaf2}.x-panel-header-light-framed-left-mc{background-color:#dfeaf2}.x-nbr .x-panel-header-light-framed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-light-framed-left-frameInfo{font-family:dh-4-0-0-4-5-0-5-5-5-5-5-5}.x-panel-header-light-framed-left-tl{background-position:0 -10px}.x-panel-header-light-framed-left-tr{background-position:right -15px}.x-panel-header-light-framed-left-bl{background-position:0 -20px}.x-panel-header-light-framed-left-br{background-position:right -25px}.x-panel-header-light-framed-left-ml{background-position:0 left}.x-panel-header-light-framed-left-mr{background-position:right left}.x-panel-header-light-framed-left-tc{background-position:0 0}.x-panel-header-light-framed-left-bc{background-position:0 -5px}.x-panel-header-light-framed-left-tr,.x-panel-header-light-framed-left-br,.x-panel-header-light-framed-left-mr{padding-right:0}.x-panel-header-light-framed-left-tl,.x-panel-header-light-framed-left-bl,.x-panel-header-light-framed-left-ml{padding-left:5px}.x-panel-header-light-framed-left-tc{height:5px}.x-panel-header-light-framed-left-bc{height:5px}.x-panel-header-light-framed-left-tl,.x-panel-header-light-framed-left-bl,.x-panel-header-light-framed-left-tr,.x-panel-header-light-framed-left-br,.x-panel-header-light-framed-left-tc,.x-panel-header-light-framed-left-bc,.x-panel-header-light-framed-left-ml,.x-panel-header-light-framed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-left-corners.gif)}.x-panel-header-light-framed-left-ml,.x-panel-header-light-framed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-left-sides.gif);background-repeat:repeat-y}.x-panel-header-light-framed-left-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-light-framed-left-tl,.x-strict .x-ie7 .x-panel-header-light-framed-left-bl{position:relative;right:0}.x-panel-header-light-framed-left:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-light-framed-left-corners.gif), sides:url(images/panel-header/panel-header-light-framed-left-sides.gif)"}.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:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#dfeaf2}.x-panel-header-light-framed-collapsed-top-mc{background-color:#dfeaf2}.x-nbr .x-panel-header-light-framed-collapsed-top{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-light-framed-collapsed-top-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-panel-header-light-framed-collapsed-top-tl{background-position:0 -10px}.x-panel-header-light-framed-collapsed-top-tr{background-position:right -15px}.x-panel-header-light-framed-collapsed-top-bl{background-position:0 -20px}.x-panel-header-light-framed-collapsed-top-br{background-position:right -25px}.x-panel-header-light-framed-collapsed-top-ml{background-position:0 top}.x-panel-header-light-framed-collapsed-top-mr{background-position:right top}.x-panel-header-light-framed-collapsed-top-tc{background-position:0 0}.x-panel-header-light-framed-collapsed-top-bc{background-position:0 -5px}.x-panel-header-light-framed-collapsed-top-tr,.x-panel-header-light-framed-collapsed-top-br,.x-panel-header-light-framed-collapsed-top-mr{padding-right:5px}.x-panel-header-light-framed-collapsed-top-tl,.x-panel-header-light-framed-collapsed-top-bl,.x-panel-header-light-framed-collapsed-top-ml{padding-left:5px}.x-panel-header-light-framed-collapsed-top-tc{height:5px}.x-panel-header-light-framed-collapsed-top-bc{height:5px}.x-panel-header-light-framed-collapsed-top-tl,.x-panel-header-light-framed-collapsed-top-bl,.x-panel-header-light-framed-collapsed-top-tr,.x-panel-header-light-framed-collapsed-top-br,.x-panel-header-light-framed-collapsed-top-tc,.x-panel-header-light-framed-collapsed-top-bc,.x-panel-header-light-framed-collapsed-top-ml,.x-panel-header-light-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-collapsed-top-corners.gif)}.x-panel-header-light-framed-collapsed-top-ml,.x-panel-header-light-framed-collapsed-top-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-collapsed-top-sides.gif);background-repeat:repeat-y}.x-panel-header-light-framed-collapsed-top-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-top-tl,.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-top-bl{position:relative;right:0}.x-panel-header-light-framed-collapsed-top:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-top-corners.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-top-sides.gif)"}.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:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#dfeaf2}.x-panel-header-light-framed-collapsed-right-mc{background-color:#dfeaf2}.x-nbr .x-panel-header-light-framed-collapsed-right{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-light-framed-collapsed-right-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-panel-header-light-framed-collapsed-right-tl{background-position:0 -10px}.x-panel-header-light-framed-collapsed-right-tr{background-position:right -15px}.x-panel-header-light-framed-collapsed-right-bl{background-position:0 -20px}.x-panel-header-light-framed-collapsed-right-br{background-position:right -25px}.x-panel-header-light-framed-collapsed-right-ml{background-position:0 right}.x-panel-header-light-framed-collapsed-right-mr{background-position:right right}.x-panel-header-light-framed-collapsed-right-tc{background-position:0 0}.x-panel-header-light-framed-collapsed-right-bc{background-position:0 -5px}.x-panel-header-light-framed-collapsed-right-tr,.x-panel-header-light-framed-collapsed-right-br,.x-panel-header-light-framed-collapsed-right-mr{padding-right:5px}.x-panel-header-light-framed-collapsed-right-tl,.x-panel-header-light-framed-collapsed-right-bl,.x-panel-header-light-framed-collapsed-right-ml{padding-left:5px}.x-panel-header-light-framed-collapsed-right-tc{height:5px}.x-panel-header-light-framed-collapsed-right-bc{height:5px}.x-panel-header-light-framed-collapsed-right-tl,.x-panel-header-light-framed-collapsed-right-bl,.x-panel-header-light-framed-collapsed-right-tr,.x-panel-header-light-framed-collapsed-right-br,.x-panel-header-light-framed-collapsed-right-tc,.x-panel-header-light-framed-collapsed-right-bc,.x-panel-header-light-framed-collapsed-right-ml,.x-panel-header-light-framed-collapsed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-collapsed-right-corners.gif)}.x-panel-header-light-framed-collapsed-right-ml,.x-panel-header-light-framed-collapsed-right-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-collapsed-right-sides.gif);background-repeat:repeat-y}.x-panel-header-light-framed-collapsed-right-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-right-tl,.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-right-bl{position:relative;right:0}.x-panel-header-light-framed-collapsed-right:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-right-corners.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-right-sides.gif)"}.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:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#dfeaf2}.x-panel-header-light-framed-collapsed-bottom-mc{background-color:#dfeaf2}.x-nbr .x-panel-header-light-framed-collapsed-bottom{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-light-framed-collapsed-bottom-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-panel-header-light-framed-collapsed-bottom-tl{background-position:0 -10px}.x-panel-header-light-framed-collapsed-bottom-tr{background-position:right -15px}.x-panel-header-light-framed-collapsed-bottom-bl{background-position:0 -20px}.x-panel-header-light-framed-collapsed-bottom-br{background-position:right -25px}.x-panel-header-light-framed-collapsed-bottom-ml{background-position:0 bottom}.x-panel-header-light-framed-collapsed-bottom-mr{background-position:right bottom}.x-panel-header-light-framed-collapsed-bottom-tc{background-position:0 0}.x-panel-header-light-framed-collapsed-bottom-bc{background-position:0 -5px}.x-panel-header-light-framed-collapsed-bottom-tr,.x-panel-header-light-framed-collapsed-bottom-br,.x-panel-header-light-framed-collapsed-bottom-mr{padding-right:5px}.x-panel-header-light-framed-collapsed-bottom-tl,.x-panel-header-light-framed-collapsed-bottom-bl,.x-panel-header-light-framed-collapsed-bottom-ml{padding-left:5px}.x-panel-header-light-framed-collapsed-bottom-tc{height:5px}.x-panel-header-light-framed-collapsed-bottom-bc{height:5px}.x-panel-header-light-framed-collapsed-bottom-tl,.x-panel-header-light-framed-collapsed-bottom-bl,.x-panel-header-light-framed-collapsed-bottom-tr,.x-panel-header-light-framed-collapsed-bottom-br,.x-panel-header-light-framed-collapsed-bottom-tc,.x-panel-header-light-framed-collapsed-bottom-bc,.x-panel-header-light-framed-collapsed-bottom-ml,.x-panel-header-light-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-collapsed-bottom-corners.gif)}.x-panel-header-light-framed-collapsed-bottom-ml,.x-panel-header-light-framed-collapsed-bottom-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-collapsed-bottom-sides.gif);background-repeat:repeat-y}.x-panel-header-light-framed-collapsed-bottom-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-bottom-tl,.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-bottom-bl{position:relative;right:0}.x-panel-header-light-framed-collapsed-bottom:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-bottom-corners.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-bottom-sides.gif)"}.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:5px 5px 5px 5px;border-width:5px;border-style:solid;background-color:#dfeaf2}.x-panel-header-light-framed-collapsed-left-mc{background-color:#dfeaf2}.x-nbr .x-panel-header-light-framed-collapsed-left{padding:0!important;border-width:0!important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0;background-color:transparent}body.x-nbr .x-panel-header-light-framed-collapsed-left-frameInfo{font-family:dh-4-4-4-4-5-5-5-5-5-5-5-5}.x-panel-header-light-framed-collapsed-left-tl{background-position:0 -10px}.x-panel-header-light-framed-collapsed-left-tr{background-position:right -15px}.x-panel-header-light-framed-collapsed-left-bl{background-position:0 -20px}.x-panel-header-light-framed-collapsed-left-br{background-position:right -25px}.x-panel-header-light-framed-collapsed-left-ml{background-position:0 left}.x-panel-header-light-framed-collapsed-left-mr{background-position:right left}.x-panel-header-light-framed-collapsed-left-tc{background-position:0 0}.x-panel-header-light-framed-collapsed-left-bc{background-position:0 -5px}.x-panel-header-light-framed-collapsed-left-tr,.x-panel-header-light-framed-collapsed-left-br,.x-panel-header-light-framed-collapsed-left-mr{padding-right:5px}.x-panel-header-light-framed-collapsed-left-tl,.x-panel-header-light-framed-collapsed-left-bl,.x-panel-header-light-framed-collapsed-left-ml{padding-left:5px}.x-panel-header-light-framed-collapsed-left-tc{height:5px}.x-panel-header-light-framed-collapsed-left-bc{height:5px}.x-panel-header-light-framed-collapsed-left-tl,.x-panel-header-light-framed-collapsed-left-bl,.x-panel-header-light-framed-collapsed-left-tr,.x-panel-header-light-framed-collapsed-left-br,.x-panel-header-light-framed-collapsed-left-tc,.x-panel-header-light-framed-collapsed-left-bc,.x-panel-header-light-framed-collapsed-left-ml,.x-panel-header-light-framed-collapsed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-collapsed-left-corners.gif)}.x-panel-header-light-framed-collapsed-left-ml,.x-panel-header-light-framed-collapsed-left-mr{zoom:1;background-image:url(images/panel-header/panel-header-light-framed-collapsed-left-sides.gif);background-repeat:repeat-y}.x-panel-header-light-framed-collapsed-left-mc{padding:5px 5px 5px 5px}.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-left-tl,.x-strict .x-ie7 .x-panel-header-light-framed-collapsed-left-bl{position:relative;right:0}.x-panel-header-light-framed-collapsed-left:after{display:none;content:"x-slicer:corners:url(images/panel-header/panel-header-light-framed-collapsed-left-corners.gif), sides:url(images/panel-header/panel-header-light-framed-collapsed-left-sides.gif)"}.x-panel .x-panel-header-light-framed-top{border-bottom-width:5px!important}.x-panel .x-panel-header-light-framed-right{border-left-width:5px!important}.x-panel .x-panel-header-light-framed-bottom{border-top-width:5px!important}.x-panel .x-panel-header-light-framed-left{border-right-width:5px!important}.x-nbr .x-panel-header-light-framed-collapsed-top{border-bottom-width:0!important}.x-nbr .x-panel-header-light-framed-collapsed-right{border-left-width:0!important}.x-nbr .x-panel-header-light-framed-collapsed-bottom{border-top-width:0!important}.x-nbr .x-panel-header-light-framed-collapsed-left{border-right-width:0!important}.x-panel-header-light-framed-vertical .x-panel-header-text-container{-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;transform:rotate(90deg);transform-origin:0 0}.x-ie9m .x-panel-header-light-framed-vertical .x-panel-header-text-container{background-color:#dfeaf2;filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1),progid:DXImageTransform.Microsoft.Chroma(color=#dfeaf2)}.x-panel-header-light-framed .x-panel-header-icon{width:16px;height:16px;background-position:center center}.x-panel-header-light-framed .x-panel-header-glyph{color:white;font-size:16px;line-height:16px;opacity:.5}.x-ie8m .x-panel-header-light-framed .x-panel-header-glyph{color:#eff4f8}.x-panel-header-light-framed-horizontal .x-panel-header-icon-before-title{margin:0 6px 0 0}.x-panel-header-light-framed-horizontal .x-panel-header-icon-after-title{margin:0 0 0 6px}.x-panel-header-light-framed-vertical .x-panel-header-icon-before-title{margin:0 0 6px 0}.x-panel-header-light-framed-vertical .x-panel-header-icon-after-title{margin:6px 0 0 0}.x-panel-header-light-framed-horizontal .x-tool-after-title{margin:0 0 0 6px}.x-panel-header-light-framed-horizontal .x-tool-before-title{margin:0 6px 0 0}.x-panel-header-light-framed-vertical .x-tool-after-title{margin:6px 0 0 0}.x-panel-header-light-framed-vertical .x-tool-before-title{margin:0 0 6px 0}.x-panel-light-framed-resizable{overflow:visible}.x-panel-light-framed-resizable .x-panel-handle{filter:alpha(opacity=0);opacity:0}.x-panel-light-framed-resizable .x-panel-handle-north-br{top:-5px}.x-panel-light-framed-resizable .x-panel-handle-south-br{bottom:-5px}.x-panel-light-framed-resizable .x-panel-handle-east-br{right:-5px}.x-panel-light-framed-resizable .x-panel-handle-west-br{left:-5px}.x-panel-light-framed-resizable .x-panel-handle-northwest-br{left:-5px;top:-5px}.x-panel-light-framed-resizable .x-panel-handle-northeast-br{right:-5px;top:-5px}.x-panel-light-framed-resizable .x-panel-handle-southeast-br{right:-5px;bottom:-5px}.x-panel-light-framed-resizable .x-panel-handle-southwest-br{left:-5px;bottom:-5px}.x-panel-light-framed-outer-border-l{border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-framed-outer-border-b{border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-light-framed-outer-border-bl{border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-framed-outer-border-r{border-right-color:#157fcc!important;border-right-width:1px!important}.x-panel-light-framed-outer-border-rl{border-right-color:#157fcc!important;border-right-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-framed-outer-border-rb{border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-light-framed-outer-border-rbl{border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-framed-outer-border-t{border-top-color:#157fcc!important;border-top-width:1px!important}.x-panel-light-framed-outer-border-tl{border-top-color:#157fcc!important;border-top-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-framed-outer-border-tb{border-top-color:#157fcc!important;border-top-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-light-framed-outer-border-tbl{border-top-color:#157fcc!important;border-top-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-framed-outer-border-tr{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important}.x-panel-light-framed-outer-border-trl{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important;border-left-color:#157fcc!important;border-left-width:1px!important}.x-panel-light-framed-outer-border-trb{border-top-color:#157fcc!important;border-top-width:1px!important;border-right-color:#157fcc!important;border-right-width:1px!important;border-bottom-color:#157fcc!important;border-bottom-width:1px!important}.x-panel-light-framed-outer-border-trbl{border-color:#157fcc!important;border-width:1px!important}.x-form-trigger{height:22px}.x-form-trigger-wrap{border:1px solid;border-color:silver #d9d9d9 #d9d9d9}.x-form-trigger-wrap .x-form-text{border-width:0;height:22px}.x-content-box .x-form-trigger-wrap .x-form-text{height:15px}.x-form-trigger-wrap-focus .x-form-trigger-wrap{border-color:#3892d3}.x-form-invalid .x-form-trigger-wrap{border-color:#cf4c35}.x-form-file-wrap .x-form-trigger-wrap{border:0}.x-form-file-wrap .x-form-trigger-wrap .x-form-text{border:1px solid;border-color:silver #d9d9d9 #d9d9d9;height:24px}.x-content-box .x-form-file-wrap .x-form-trigger-wrap .x-form-text{height:15px}.x-html-editor-container{border:1px solid;border-color:silver #d9d9d9 #d9d9d9}.x-grid-header-ct{border:1px solid silver}.x-column-header-trigger{background-image:url(images/grid/hd-pop.png);border-left:1px solid silver}.x-column-header-last{border-right:0}.x-column-header-last .x-column-header-over .x-column-header-trigger{border-right:1px solid silver}.x-column-header-last{border-right:0 none}.x-accordion-hd .x-tool-img{background-image:url(images/tools/tool-sprites-dark.png)}.x-accordion-item .x-accordion-hd-over{background-color:#e6f1f9}.x-resizable-handle{background-color:#157fcc;background-repeat:no-repeat}.x-resizable-over .x-resizable-handle-east,.x-resizable-over .x-resizable-handle-west,.x-resizable-pinned .x-resizable-handle-east,.x-resizable-pinned .x-resizable-handle-west{background-position:center}.x-resizable-over .x-resizable-handle-south,.x-resizable-over .x-resizable-handle-north,.x-resizable-pinned .x-resizable-handle-south,.x-resizable-pinned .x-resizable-handle-north{background-position:center}.x-resizable-over .x-resizable-handle-southeast,.x-resizable-pinned .x-resizable-handle-southeast{background-position:-2px -2px}.x-resizable-over .x-resizable-handle-northwest,.x-resizable-pinned .x-resizable-handle-northwest{background-position:2px 2px}.x-resizable-over .x-resizable-handle-northeast,.x-resizable-pinned .x-resizable-handle-northeast{background-position:-2px 2px}.x-resizable-over .x-resizable-handle-southwest,.x-resizable-pinned .x-resizable-handle-southwest{background-position:2px -2px} \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn-group/btn-group-default-framed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn-group/btn-group-default-framed-corners.gif new file mode 100644 index 0000000..ca4889a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn-group/btn-group-default-framed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn-group/btn-group-default-framed-notitle-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn-group/btn-group-default-framed-notitle-corners.gif new file mode 100644 index 0000000..ca4889a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn-group/btn-group-default-framed-notitle-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn-group/btn-group-default-framed-notitle-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn-group/btn-group-default-framed-notitle-sides.gif new file mode 100644 index 0000000..897cd3b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn-group/btn-group-default-framed-notitle-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn-group/btn-group-default-framed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn-group/btn-group-default-framed-sides.gif new file mode 100644 index 0000000..41e6802 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn-group/btn-group-default-framed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-bg.gif new file mode 100644 index 0000000..9a96af0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-corners.gif new file mode 100644 index 0000000..9a9ff6e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-disabled-bg.gif new file mode 100644 index 0000000..9a96af0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-disabled-corners.gif new file mode 100644 index 0000000..a6e2d6b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-disabled-fbg.gif new file mode 100644 index 0000000..02da23e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-disabled-sides.gif new file mode 100644 index 0000000..ac6747a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-fbg.gif new file mode 100644 index 0000000..02da23e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-focus-bg.gif new file mode 100644 index 0000000..fc86cde Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-focus-corners.gif new file mode 100644 index 0000000..e360dea Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-focus-fbg.gif new file mode 100644 index 0000000..f6b43fa Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-focus-sides.gif new file mode 100644 index 0000000..434bf10 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-over-bg.gif new file mode 100644 index 0000000..fc86cde Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-over-corners.gif new file mode 100644 index 0000000..e360dea Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-over-fbg.gif new file mode 100644 index 0000000..f6b43fa Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-over-sides.gif new file mode 100644 index 0000000..434bf10 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-pressed-bg.gif new file mode 100644 index 0000000..dbc9ab6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-pressed-corners.gif new file mode 100644 index 0000000..876309d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-pressed-fbg.gif new file mode 100644 index 0000000..0b6e990 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-pressed-sides.gif new file mode 100644 index 0000000..ed032e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-sides.gif new file mode 100644 index 0000000..2335678 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-large-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-bg.gif new file mode 100644 index 0000000..a378e4c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-corners.gif new file mode 100644 index 0000000..8a9e0c9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-disabled-bg.gif new file mode 100644 index 0000000..a378e4c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-disabled-corners.gif new file mode 100644 index 0000000..54ec11e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-disabled-fbg.gif new file mode 100644 index 0000000..c162017 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-disabled-sides.gif new file mode 100644 index 0000000..d4e1610 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-fbg.gif new file mode 100644 index 0000000..c162017 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-focus-bg.gif new file mode 100644 index 0000000..5957b5f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-focus-corners.gif new file mode 100644 index 0000000..1c1227b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-focus-fbg.gif new file mode 100644 index 0000000..dada571 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-focus-sides.gif new file mode 100644 index 0000000..0791664 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-over-bg.gif new file mode 100644 index 0000000..5957b5f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-over-corners.gif new file mode 100644 index 0000000..1c1227b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-over-fbg.gif new file mode 100644 index 0000000..dada571 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-over-sides.gif new file mode 100644 index 0000000..0791664 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-pressed-bg.gif new file mode 100644 index 0000000..a72537c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-pressed-corners.gif new file mode 100644 index 0000000..82e9aed Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-pressed-fbg.gif new file mode 100644 index 0000000..12d7736 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-pressed-sides.gif new file mode 100644 index 0000000..ddb7644 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-sides.gif new file mode 100644 index 0000000..1f11696 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-medium-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-bg.gif new file mode 100644 index 0000000..3e1fee3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-corners.gif new file mode 100644 index 0000000..8ea1123 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-disabled-bg.gif new file mode 100644 index 0000000..3e1fee3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-disabled-corners.gif new file mode 100644 index 0000000..5a8dc21 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-disabled-fbg.gif new file mode 100644 index 0000000..4e8d6ad Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-disabled-sides.gif new file mode 100644 index 0000000..dfe47a7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-fbg.gif new file mode 100644 index 0000000..4e8d6ad Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-focus-bg.gif new file mode 100644 index 0000000..cd401c0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-focus-corners.gif new file mode 100644 index 0000000..68b693b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-focus-fbg.gif new file mode 100644 index 0000000..d708d52 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-focus-sides.gif new file mode 100644 index 0000000..43b3c76 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-over-bg.gif new file mode 100644 index 0000000..cd401c0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-over-corners.gif new file mode 100644 index 0000000..37973c0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-over-fbg.gif new file mode 100644 index 0000000..d708d52 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-over-sides.gif new file mode 100644 index 0000000..43b3c76 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-pressed-bg.gif new file mode 100644 index 0000000..edb183e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-pressed-corners.gif new file mode 100644 index 0000000..e6a4d42 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-pressed-fbg.gif new file mode 100644 index 0000000..f51c3ed Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-pressed-sides.gif new file mode 100644 index 0000000..c6009b2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-sides.gif new file mode 100644 index 0000000..df7e41d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-small-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-bg.gif new file mode 100644 index 0000000..08665f0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-corners.gif new file mode 100644 index 0000000..6e6dd29 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-disabled-bg.gif new file mode 100644 index 0000000..08665f0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-disabled-corners.gif new file mode 100644 index 0000000..6e6dd29 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-disabled-fbg.gif new file mode 100644 index 0000000..fe34b62 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-disabled-sides.gif new file mode 100644 index 0000000..29f443b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-fbg.gif new file mode 100644 index 0000000..fe34b62 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-focus-bg.gif new file mode 100644 index 0000000..39a96cd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-focus-corners.gif new file mode 100644 index 0000000..0d7210c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-focus-fbg.gif new file mode 100644 index 0000000..577568f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-focus-sides.gif new file mode 100644 index 0000000..57ead3d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-over-bg.gif new file mode 100644 index 0000000..39a96cd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-over-corners.gif new file mode 100644 index 0000000..0d7210c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-over-fbg.gif new file mode 100644 index 0000000..577568f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-over-sides.gif new file mode 100644 index 0000000..57ead3d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-pressed-bg.gif new file mode 100644 index 0000000..620098d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-pressed-corners.gif new file mode 100644 index 0000000..45deae7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-pressed-fbg.gif new file mode 100644 index 0000000..badff7d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-pressed-sides.gif new file mode 100644 index 0000000..c8ee38d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-sides.gif new file mode 100644 index 0000000..29f443b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-large-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-bg.gif new file mode 100644 index 0000000..7015f11 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-corners.gif new file mode 100644 index 0000000..c4152af Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-disabled-bg.gif new file mode 100644 index 0000000..7015f11 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-disabled-corners.gif new file mode 100644 index 0000000..d0c424b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-disabled-fbg.gif new file mode 100644 index 0000000..804354b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-disabled-sides.gif new file mode 100644 index 0000000..efeaf83 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-fbg.gif new file mode 100644 index 0000000..804354b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-focus-bg.gif new file mode 100644 index 0000000..05a3417 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-focus-corners.gif new file mode 100644 index 0000000..ada0a05 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-focus-fbg.gif new file mode 100644 index 0000000..3aae975 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-focus-sides.gif new file mode 100644 index 0000000..ef4597d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-over-bg.gif new file mode 100644 index 0000000..05a3417 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-over-corners.gif new file mode 100644 index 0000000..ada0a05 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-over-fbg.gif new file mode 100644 index 0000000..3aae975 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-over-sides.gif new file mode 100644 index 0000000..ef4597d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-pressed-bg.gif new file mode 100644 index 0000000..4854098 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-pressed-corners.gif new file mode 100644 index 0000000..1b1d311 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-pressed-fbg.gif new file mode 100644 index 0000000..c5d4e67 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-pressed-sides.gif new file mode 100644 index 0000000..ace88e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-sides.gif new file mode 100644 index 0000000..efeaf83 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-medium-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-bg.gif new file mode 100644 index 0000000..4f97a13 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-corners.gif new file mode 100644 index 0000000..c4152af Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-disabled-bg.gif new file mode 100644 index 0000000..4f97a13 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-disabled-corners.gif new file mode 100644 index 0000000..c4152af Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-disabled-fbg.gif new file mode 100644 index 0000000..b362e82 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-disabled-sides.gif new file mode 100644 index 0000000..97109aa Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-fbg.gif new file mode 100644 index 0000000..b362e82 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-focus-bg.gif new file mode 100644 index 0000000..807f687 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-focus-corners.gif new file mode 100644 index 0000000..ada0a05 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-focus-fbg.gif new file mode 100644 index 0000000..108a3dd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-focus-sides.gif new file mode 100644 index 0000000..9b85341 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-over-bg.gif new file mode 100644 index 0000000..807f687 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-over-corners.gif new file mode 100644 index 0000000..ada0a05 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-over-fbg.gif new file mode 100644 index 0000000..108a3dd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-over-sides.gif new file mode 100644 index 0000000..9b85341 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-pressed-bg.gif new file mode 100644 index 0000000..35a6c84 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-pressed-corners.gif new file mode 100644 index 0000000..1b1d311 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-pressed-fbg.gif new file mode 100644 index 0000000..ed016e1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-pressed-sides.gif new file mode 100644 index 0000000..d6ad46d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-sides.gif new file mode 100644 index 0000000..97109aa Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-default-toolbar-small-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-bg.gif new file mode 100644 index 0000000..48a5a75 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-disabled-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-disabled-bg.gif new file mode 100644 index 0000000..48a5a75 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-disabled-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-disabled-corners.gif new file mode 100644 index 0000000..9a560e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-disabled-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-disabled-fbg.gif new file mode 100644 index 0000000..48a5a75 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-disabled-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-disabled-sides.gif new file mode 100644 index 0000000..71f65be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-fbg.gif new file mode 100644 index 0000000..48a5a75 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-focus-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-focus-bg.gif new file mode 100644 index 0000000..807f687 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-focus-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-focus-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-focus-corners.gif new file mode 100644 index 0000000..ae8a05c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-focus-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-focus-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-focus-fbg.gif new file mode 100644 index 0000000..108a3dd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-focus-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-focus-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-focus-sides.gif new file mode 100644 index 0000000..9b85341 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-focus-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-over-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-over-bg.gif new file mode 100644 index 0000000..807f687 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-over-corners.gif new file mode 100644 index 0000000..ae8a05c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-over-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-over-fbg.gif new file mode 100644 index 0000000..108a3dd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-over-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-over-sides.gif new file mode 100644 index 0000000..9b85341 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-pressed-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-pressed-bg.gif new file mode 100644 index 0000000..35a6c84 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-pressed-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-pressed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-pressed-corners.gif new file mode 100644 index 0000000..16377f9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-pressed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-pressed-fbg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-pressed-fbg.gif new file mode 100644 index 0000000..ed016e1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-pressed-fbg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-pressed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-pressed-sides.gif new file mode 100644 index 0000000..d6ad46d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/btn/btn-plain-toolbar-small-pressed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-large-arrow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-large-arrow-rtl.png new file mode 100644 index 0000000..76beeab Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-large-arrow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-large-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-large-arrow.png new file mode 100644 index 0000000..32674e4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-large-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-large-s-arrow-b-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-large-s-arrow-b-rtl.png new file mode 100644 index 0000000..79677a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-large-s-arrow-b-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-large-s-arrow-b.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-large-s-arrow-b.png new file mode 100644 index 0000000..9f3928a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-large-s-arrow-b.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-large-s-arrow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-large-s-arrow-rtl.png new file mode 100644 index 0000000..7985050 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-large-s-arrow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-large-s-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-large-s-arrow.png new file mode 100644 index 0000000..06ad27b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-large-s-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-medium-arrow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-medium-arrow-rtl.png new file mode 100644 index 0000000..d54d3a0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-medium-arrow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-medium-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-medium-arrow.png new file mode 100644 index 0000000..e565db4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-medium-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-medium-s-arrow-b-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-medium-s-arrow-b-rtl.png new file mode 100644 index 0000000..f2fb53b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-medium-s-arrow-b-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-medium-s-arrow-b.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-medium-s-arrow-b.png new file mode 100644 index 0000000..ee39ae2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-medium-s-arrow-b.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-medium-s-arrow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-medium-s-arrow-rtl.png new file mode 100644 index 0000000..fb11140 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-medium-s-arrow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-medium-s-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-medium-s-arrow.png new file mode 100644 index 0000000..c1d1875 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-medium-s-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-small-arrow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-small-arrow-rtl.png new file mode 100644 index 0000000..3538445 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-small-arrow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-small-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-small-arrow.png new file mode 100644 index 0000000..17a9beb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-small-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-small-s-arrow-b-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-small-s-arrow-b-rtl.png new file mode 100644 index 0000000..2f8b2e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-small-s-arrow-b-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-small-s-arrow-b.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-small-s-arrow-b.png new file mode 100644 index 0000000..afd13fb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-small-s-arrow-b.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-small-s-arrow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-small-s-arrow-rtl.png new file mode 100644 index 0000000..f59b792 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-small-s-arrow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-small-s-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-small-s-arrow.png new file mode 100644 index 0000000..eaffbdc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-small-s-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-large-arrow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-large-arrow-rtl.png new file mode 100644 index 0000000..d8f0151 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-large-arrow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-large-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-large-arrow.png new file mode 100644 index 0000000..31fc36e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-large-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-large-s-arrow-b-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-large-s-arrow-b-rtl.png new file mode 100644 index 0000000..379d2d9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-large-s-arrow-b-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-large-s-arrow-b.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-large-s-arrow-b.png new file mode 100644 index 0000000..dcfe8ea Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-large-s-arrow-b.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-large-s-arrow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-large-s-arrow-rtl.png new file mode 100644 index 0000000..612a6b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-large-s-arrow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-large-s-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-large-s-arrow.png new file mode 100644 index 0000000..731b207 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-large-s-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-medium-arrow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-medium-arrow-rtl.png new file mode 100644 index 0000000..1648e51 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-medium-arrow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-medium-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-medium-arrow.png new file mode 100644 index 0000000..65fdd03 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-medium-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-medium-s-arrow-b-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-medium-s-arrow-b-rtl.png new file mode 100644 index 0000000..8d2232b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-medium-s-arrow-b-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-medium-s-arrow-b.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-medium-s-arrow-b.png new file mode 100644 index 0000000..2489479 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-medium-s-arrow-b.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-medium-s-arrow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-medium-s-arrow-rtl.png new file mode 100644 index 0000000..c81c5f2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-medium-s-arrow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-medium-s-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-medium-s-arrow.png new file mode 100644 index 0000000..0a6857a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-medium-s-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-small-arrow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-small-arrow-rtl.png new file mode 100644 index 0000000..8919138 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-small-arrow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-small-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-small-arrow.png new file mode 100644 index 0000000..b56c2a6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-small-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-small-s-arrow-b-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-small-s-arrow-b-rtl.png new file mode 100644 index 0000000..1142351 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-small-s-arrow-b-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-small-s-arrow-b.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-small-s-arrow-b.png new file mode 100644 index 0000000..bb1b08e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-small-s-arrow-b.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-small-s-arrow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-small-s-arrow-rtl.png new file mode 100644 index 0000000..9e9e16b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-small-s-arrow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-small-s-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-small-s-arrow.png new file mode 100644 index 0000000..9a72857 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/default-toolbar-small-s-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-large-arrow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-large-arrow-rtl.png new file mode 100644 index 0000000..d8f0151 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-large-arrow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-large-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-large-arrow.png new file mode 100644 index 0000000..31fc36e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-large-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-large-s-arrow-b-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-large-s-arrow-b-rtl.png new file mode 100644 index 0000000..379d2d9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-large-s-arrow-b-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-large-s-arrow-b.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-large-s-arrow-b.png new file mode 100644 index 0000000..dcfe8ea Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-large-s-arrow-b.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-large-s-arrow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-large-s-arrow-rtl.png new file mode 100644 index 0000000..612a6b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-large-s-arrow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-large-s-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-large-s-arrow.png new file mode 100644 index 0000000..731b207 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-large-s-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-medium-arrow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-medium-arrow-rtl.png new file mode 100644 index 0000000..1648e51 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-medium-arrow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-medium-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-medium-arrow.png new file mode 100644 index 0000000..65fdd03 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-medium-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-medium-s-arrow-b-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-medium-s-arrow-b-rtl.png new file mode 100644 index 0000000..8d2232b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-medium-s-arrow-b-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-medium-s-arrow-b.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-medium-s-arrow-b.png new file mode 100644 index 0000000..2489479 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-medium-s-arrow-b.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-medium-s-arrow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-medium-s-arrow-rtl.png new file mode 100644 index 0000000..c81c5f2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-medium-s-arrow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-medium-s-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-medium-s-arrow.png new file mode 100644 index 0000000..0a6857a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-medium-s-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-small-arrow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-small-arrow-rtl.png new file mode 100644 index 0000000..8919138 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-small-arrow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-small-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-small-arrow.png new file mode 100644 index 0000000..b56c2a6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-small-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-small-s-arrow-b-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-small-s-arrow-b-rtl.png new file mode 100644 index 0000000..1142351 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-small-s-arrow-b-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-small-s-arrow-b.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-small-s-arrow-b.png new file mode 100644 index 0000000..bb1b08e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-small-s-arrow-b.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-small-s-arrow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-small-s-arrow-rtl.png new file mode 100644 index 0000000..9e9e16b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-small-s-arrow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-small-s-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-small-s-arrow.png new file mode 100644 index 0000000..9a72857 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/button/plain-toolbar-small-s-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/datepicker/arrow-left.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/datepicker/arrow-left.png new file mode 100644 index 0000000..fc09f9a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/datepicker/arrow-left.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/datepicker/arrow-right.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/datepicker/arrow-right.png new file mode 100644 index 0000000..a22b876 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/datepicker/arrow-right.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/datepicker/month-arrow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/datepicker/month-arrow.png new file mode 100644 index 0000000..f0b572f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/datepicker/month-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/dd/drop-add.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/dd/drop-add.png new file mode 100644 index 0000000..a7b8f28 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/dd/drop-add.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/dd/drop-no.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/dd/drop-no.png new file mode 100644 index 0000000..02e219a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/dd/drop-no.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/dd/drop-yes.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/dd/drop-yes.png new file mode 100644 index 0000000..a7b8f28 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/dd/drop-yes.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/editor/tb-sprite.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/editor/tb-sprite.png new file mode 100644 index 0000000..9886118 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/editor/tb-sprite.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/fieldset/collapse-tool.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/fieldset/collapse-tool.png new file mode 100644 index 0000000..97eb83f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/fieldset/collapse-tool.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/checkbox.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/checkbox.png new file mode 100644 index 0000000..fc2709c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/checkbox.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/clear-trigger-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/clear-trigger-rtl.png new file mode 100644 index 0000000..73e1dbe Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/clear-trigger-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/clear-trigger.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/clear-trigger.png new file mode 100644 index 0000000..73e1dbe Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/clear-trigger.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/date-trigger-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/date-trigger-rtl.png new file mode 100644 index 0000000..9489493 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/date-trigger-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/date-trigger.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/date-trigger.png new file mode 100644 index 0000000..9489493 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/date-trigger.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/exclamation.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/exclamation.png new file mode 100644 index 0000000..3e6e3d0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/exclamation.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/radio.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/radio.png new file mode 100644 index 0000000..86644bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/radio.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/search-trigger-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/search-trigger-rtl.png new file mode 100644 index 0000000..15e15f5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/search-trigger-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/search-trigger.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/search-trigger.png new file mode 100644 index 0000000..15e15f5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/search-trigger.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/spinner-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/spinner-rtl.png new file mode 100644 index 0000000..28d140f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/spinner-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/spinner.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/spinner.png new file mode 100644 index 0000000..28d140f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/spinner.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/trigger-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/trigger-rtl.png new file mode 100644 index 0000000..b4e2d5c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/trigger-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/trigger.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/trigger.png new file mode 100644 index 0000000..b4e2d5c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/form/trigger.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif new file mode 100644 index 0000000..c662c0d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif new file mode 100644 index 0000000..13f5c29 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid-row-editor-buttons/grid-row-editor-buttons-default-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif new file mode 100644 index 0000000..ffc713e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif new file mode 100644 index 0000000..13f5c29 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid-row-editor-buttons/grid-row-editor-buttons-default-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/col-move-bottom.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/col-move-bottom.png new file mode 100644 index 0000000..9782219 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/col-move-bottom.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/col-move-top.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/col-move-top.png new file mode 100644 index 0000000..6e28535 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/col-move-top.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/columns.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/columns.png new file mode 100644 index 0000000..70a5c87 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/columns.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/dd-insert-arrow-left.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/dd-insert-arrow-left.png new file mode 100644 index 0000000..e8177d0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/dd-insert-arrow-left.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/dd-insert-arrow-right.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/dd-insert-arrow-right.png new file mode 100644 index 0000000..d610f9d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/dd-insert-arrow-right.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/dirty-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/dirty-rtl.png new file mode 100644 index 0000000..5f84122 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/dirty-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/dirty.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/dirty.png new file mode 100644 index 0000000..fc06fdd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/dirty.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/drop-no.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/drop-no.png new file mode 100644 index 0000000..02e219a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/drop-no.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/drop-yes.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/drop-yes.png new file mode 100644 index 0000000..a7b8f28 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/drop-yes.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/group-by.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/group-by.png new file mode 100644 index 0000000..8508ade Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/group-by.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/group-collapse.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/group-collapse.png new file mode 100644 index 0000000..49fcc4f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/group-collapse.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/group-expand-sprite.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/group-expand-sprite.png new file mode 100644 index 0000000..57cf2d2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/group-expand-sprite.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/group-expand.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/group-expand.png new file mode 100644 index 0000000..d65a7df Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/group-expand.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/hd-pop.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/hd-pop.png new file mode 100644 index 0000000..3ad96ef Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/hd-pop.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/hmenu-asc.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/hmenu-asc.png new file mode 100644 index 0000000..a206d35 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/hmenu-asc.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/hmenu-desc.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/hmenu-desc.png new file mode 100644 index 0000000..55a714e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/hmenu-desc.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/hmenu-lock.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/hmenu-lock.png new file mode 100644 index 0000000..b293e10 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/hmenu-lock.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/hmenu-unlock.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/hmenu-unlock.png new file mode 100644 index 0000000..e9e9df5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/hmenu-unlock.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/loading.gif new file mode 100644 index 0000000..81b0f12 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/page-first.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/page-first.png new file mode 100644 index 0000000..7691f32 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/page-first.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/page-last.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/page-last.png new file mode 100644 index 0000000..49b13d7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/page-last.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/page-next.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/page-next.png new file mode 100644 index 0000000..c3e72ba Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/page-next.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/page-prev.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/page-prev.png new file mode 100644 index 0000000..cace90b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/page-prev.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/pick-button.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/pick-button.png new file mode 100644 index 0000000..acaface Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/pick-button.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/refresh.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/refresh.png new file mode 100644 index 0000000..5320ddd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/refresh.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/sort_asc.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/sort_asc.png new file mode 100644 index 0000000..a206d35 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/sort_asc.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/sort_desc.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/sort_desc.png new file mode 100644 index 0000000..55a714e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/grid/sort_desc.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/loadmask/loading.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/loadmask/loading.gif new file mode 100644 index 0000000..8471b4f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/loadmask/loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/checked.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/checked.png new file mode 100644 index 0000000..4f5157d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/checked.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/group-checked.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/group-checked.png new file mode 100644 index 0000000..a9f0b80 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/group-checked.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/menu-item-active-bg.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/menu-item-active-bg.gif new file mode 100644 index 0000000..4ccf5af Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/menu-item-active-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/menu-parent-left.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/menu-parent-left.png new file mode 100644 index 0000000..d457564 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/menu-parent-left.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/menu-parent.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/menu-parent.png new file mode 100644 index 0000000..2d2331e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/menu-parent.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/scroll-bottom.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/scroll-bottom.png new file mode 100644 index 0000000..d89a459 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/scroll-bottom.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/scroll-top.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/scroll-top.png new file mode 100644 index 0000000..bbbf4af Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/scroll-top.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/unchecked.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/unchecked.png new file mode 100644 index 0000000..bce8817 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/menu/unchecked.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-bottom-corners.gif new file mode 100644 index 0000000..c70178e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-bottom-sides.gif new file mode 100644 index 0000000..04ae2be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif new file mode 100644 index 0000000..41022fd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif new file mode 100644 index 0000000..04ae2be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif new file mode 100644 index 0000000..db29ab9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-left-corners.gif new file mode 100644 index 0000000..41022fd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-left-sides.gif new file mode 100644 index 0000000..d5a75a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif new file mode 100644 index 0000000..db29ab9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-right-corners.gif new file mode 100644 index 0000000..41022fd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-right-sides.gif new file mode 100644 index 0000000..d5a75a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-top-corners.gif new file mode 100644 index 0000000..41022fd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-top-sides.gif new file mode 100644 index 0000000..04ae2be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-collapsed-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-left-corners-rtl.gif new file mode 100644 index 0000000..ca19537 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-left-corners.gif new file mode 100644 index 0000000..556dde5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-left-sides.gif new file mode 100644 index 0000000..d5a75a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-right-corners-rtl.gif new file mode 100644 index 0000000..e3f86b8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-right-corners.gif new file mode 100644 index 0000000..f720c5d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-right-sides.gif new file mode 100644 index 0000000..d5a75a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-top-corners.gif new file mode 100644 index 0000000..2d33c40 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-top-sides.gif new file mode 100644 index 0000000..04ae2be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-default-framed-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-bottom-corners.gif new file mode 100644 index 0000000..2f74ad8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-bottom-sides.gif new file mode 100644 index 0000000..70e7594 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-bottom-corners.gif new file mode 100644 index 0000000..408d7ee Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-bottom-sides.gif new file mode 100644 index 0000000..70e7594 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-left-corners-rtl.gif new file mode 100644 index 0000000..09e0c17 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-left-corners.gif new file mode 100644 index 0000000..408d7ee Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-left-sides.gif new file mode 100644 index 0000000..bbda1fe Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-right-corners-rtl.gif new file mode 100644 index 0000000..f932d8b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-right-corners.gif new file mode 100644 index 0000000..2561c6b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-right-sides.gif new file mode 100644 index 0000000..bbda1fe Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-top-corners.gif new file mode 100644 index 0000000..408d7ee Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-top-sides.gif new file mode 100644 index 0000000..70e7594 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-collapsed-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-left-corners-rtl.gif new file mode 100644 index 0000000..62b8b9e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-left-corners.gif new file mode 100644 index 0000000..ba8eeb1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-left-sides.gif new file mode 100644 index 0000000..bbda1fe Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-right-corners-rtl.gif new file mode 100644 index 0000000..4089f26 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-right-corners.gif new file mode 100644 index 0000000..083a1f0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-right-sides.gif new file mode 100644 index 0000000..bbda1fe Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-top-corners.gif new file mode 100644 index 0000000..25fe657 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-top-sides.gif new file mode 100644 index 0000000..70e7594 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel-header/panel-header-light-framed-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel/panel-default-framed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel/panel-default-framed-corners.gif new file mode 100644 index 0000000..ba182e7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel/panel-default-framed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel/panel-default-framed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel/panel-default-framed-sides.gif new file mode 100644 index 0000000..869eed9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel/panel-default-framed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel/panel-light-framed-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel/panel-light-framed-corners.gif new file mode 100644 index 0000000..408d7ee Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel/panel-light-framed-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel/panel-light-framed-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel/panel-light-framed-sides.gif new file mode 100644 index 0000000..12bed48 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/panel/panel-light-framed-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/shared/icon-error.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/shared/icon-error.png new file mode 100644 index 0000000..458c098 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/shared/icon-error.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/shared/icon-info.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/shared/icon-info.png new file mode 100644 index 0000000..8704641 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/shared/icon-info.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/shared/icon-question.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/shared/icon-question.png new file mode 100644 index 0000000..cac922e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/shared/icon-question.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/shared/icon-warning.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/shared/icon-warning.png new file mode 100644 index 0000000..042ca05 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/shared/icon-warning.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/sizer/e-handle.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/sizer/e-handle.png new file mode 100644 index 0000000..2fe5cb1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/sizer/e-handle.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/sizer/ne-handle.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/sizer/ne-handle.png new file mode 100644 index 0000000..8d8eb63 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/sizer/ne-handle.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/sizer/nw-handle.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/sizer/nw-handle.png new file mode 100644 index 0000000..9835bea Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/sizer/nw-handle.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/sizer/s-handle.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/sizer/s-handle.png new file mode 100644 index 0000000..06f914e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/sizer/s-handle.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/sizer/se-handle.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/sizer/se-handle.png new file mode 100644 index 0000000..5a2c695 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/sizer/se-handle.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/sizer/sw-handle.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/sizer/sw-handle.png new file mode 100644 index 0000000..7f68f40 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/sizer/sw-handle.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/slider/slider-bg.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/slider/slider-bg.png new file mode 100644 index 0000000..1ade292 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/slider/slider-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/slider/slider-thumb.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/slider/slider-thumb.png new file mode 100644 index 0000000..f920313 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/slider/slider-thumb.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/slider/slider-v-bg.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/slider/slider-v-bg.png new file mode 100644 index 0000000..c24663e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/slider/slider-v-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/slider/slider-v-thumb.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/slider/slider-v-thumb.png new file mode 100644 index 0000000..f920313 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/slider/slider-v-thumb.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-plain-scroll-bottom.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-plain-scroll-bottom.png new file mode 100644 index 0000000..813a4d5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-plain-scroll-bottom.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-plain-scroll-left.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-plain-scroll-left.png new file mode 100644 index 0000000..9120ea4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-plain-scroll-left.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-plain-scroll-right.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-plain-scroll-right.png new file mode 100644 index 0000000..67fd5a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-plain-scroll-right.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-plain-scroll-top.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-plain-scroll-top.png new file mode 100644 index 0000000..01ad4ee Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-plain-scroll-top.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-scroll-bottom.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-scroll-bottom.png new file mode 100644 index 0000000..ffff826 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-scroll-bottom.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-scroll-left.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-scroll-left.png new file mode 100644 index 0000000..2c35294 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-scroll-left.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-scroll-right.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-scroll-right.png new file mode 100644 index 0000000..82dfe01 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-scroll-right.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-scroll-top.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-scroll-top.png new file mode 100644 index 0000000..b2fabfc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab-bar/default-scroll-top.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-active-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-active-corners.gif new file mode 100644 index 0000000..e0723a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-active-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-active-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-active-sides.gif new file mode 100644 index 0000000..92c8579 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-active-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-corners.gif new file mode 100644 index 0000000..77c8dbd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-disabled-corners.gif new file mode 100644 index 0000000..77c8dbd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-disabled-sides.gif new file mode 100644 index 0000000..a61d840 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-over-corners.gif new file mode 100644 index 0000000..69aadbc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-over-sides.gif new file mode 100644 index 0000000..15de0ea Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-sides.gif new file mode 100644 index 0000000..a61d840 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-close.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-close.png new file mode 100644 index 0000000..46cc89f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-close.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-active-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-active-corners.gif new file mode 100644 index 0000000..1ccadce Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-active-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-active-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-active-sides.gif new file mode 100644 index 0000000..92c8579 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-active-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-corners.gif new file mode 100644 index 0000000..7bda1e6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-disabled-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-disabled-corners.gif new file mode 100644 index 0000000..66c930e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-disabled-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-disabled-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-disabled-sides.gif new file mode 100644 index 0000000..a61d840 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-disabled-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-over-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-over-corners.gif new file mode 100644 index 0000000..8ad4b16 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-over-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-over-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-over-sides.gif new file mode 100644 index 0000000..15de0ea Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-over-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-sides.gif new file mode 100644 index 0000000..a61d840 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tab/tab-default-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tip/tip-default-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tip/tip-default-corners.gif new file mode 100644 index 0000000..1b37201 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tip/tip-default-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tip/tip-default-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tip/tip-default-sides.gif new file mode 100644 index 0000000..1add4b7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tip/tip-default-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tip/tip-form-invalid-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tip/tip-form-invalid-corners.gif new file mode 100644 index 0000000..1b37201 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tip/tip-form-invalid-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tip/tip-form-invalid-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tip/tip-form-invalid-sides.gif new file mode 100644 index 0000000..1add4b7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tip/tip-form-invalid-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/toolbar/more.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/toolbar/more.png new file mode 100644 index 0000000..b6756e6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/toolbar/more.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/toolbar/scroll-left.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/toolbar/scroll-left.png new file mode 100644 index 0000000..5ff969e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/toolbar/scroll-left.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/toolbar/scroll-right.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/toolbar/scroll-right.png new file mode 100644 index 0000000..6fed21a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/toolbar/scroll-right.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tools/tool-sprites-dark.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tools/tool-sprites-dark.png new file mode 100644 index 0000000..d617c45 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tools/tool-sprites-dark.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tools/tool-sprites.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tools/tool-sprites.png new file mode 100644 index 0000000..17fbc0f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tools/tool-sprites.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/arrows-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/arrows-rtl.png new file mode 100644 index 0000000..d0777e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/arrows-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/arrows.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/arrows.png new file mode 100644 index 0000000..3f33225 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/arrows.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-above.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-above.png new file mode 100644 index 0000000..5782531 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-above.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-add.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-add.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-add.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-append.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-append.png new file mode 100644 index 0000000..5782531 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-append.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-below.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-below.png new file mode 100644 index 0000000..5782531 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-below.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-between.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-between.png new file mode 100644 index 0000000..5782531 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-between.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-no.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-no.gif new file mode 100644 index 0000000..9d9c6a9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-over.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-over.gif new file mode 100644 index 0000000..30d1ca7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-under.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-under.gif new file mode 100644 index 0000000..85f66b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-under.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-yes.gif new file mode 100644 index 0000000..8aacb30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-end-minus-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-end-minus-rtl.png new file mode 100644 index 0000000..3fbf4d4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-end-minus-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-end-minus.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-end-minus.png new file mode 100644 index 0000000..b39a71d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-end-minus.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-end-plus-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-end-plus-rtl.png new file mode 100644 index 0000000..bea9892 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-end-plus-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-end-plus.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-end-plus.png new file mode 100644 index 0000000..630438f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-end-plus.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-end-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-end-rtl.png new file mode 100644 index 0000000..1d0821b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-end-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-end.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-end.png new file mode 100644 index 0000000..2eb0ed0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-end.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-line-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-line-rtl.png new file mode 100644 index 0000000..e26b768 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-line-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-line.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-line.png new file mode 100644 index 0000000..ac37424 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-line.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-minus-nl-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-minus-nl-rtl.png new file mode 100644 index 0000000..1008a54 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-minus-nl-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-minus-nl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-minus-nl.png new file mode 100644 index 0000000..f2a805d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-minus-nl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-minus-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-minus-rtl.png new file mode 100644 index 0000000..cefb704 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-minus-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-minus.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-minus.png new file mode 100644 index 0000000..a256b48 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-minus.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-plus-nl-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-plus-nl-rtl.png new file mode 100644 index 0000000..e1e6ece Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-plus-nl-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-plus-nl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-plus-nl.png new file mode 100644 index 0000000..3a401ea Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-plus-nl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-plus-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-plus-rtl.png new file mode 100644 index 0000000..487f27a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-plus-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-plus.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-plus.png new file mode 100644 index 0000000..03e202a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-plus.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-rtl.png new file mode 100644 index 0000000..166e163 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow.png new file mode 100644 index 0000000..4bf9ae5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/elbow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/folder-open-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/folder-open-rtl.png new file mode 100644 index 0000000..bb896d8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/folder-open-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/folder-open.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/folder-open.png new file mode 100644 index 0000000..50397da Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/folder-open.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/folder-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/folder-rtl.png new file mode 100644 index 0000000..6901879 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/folder-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/folder.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/folder.png new file mode 100644 index 0000000..4b02054 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/folder.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/leaf-rtl.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/leaf-rtl.png new file mode 100644 index 0000000..b2e6f6e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/leaf-rtl.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/leaf.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/leaf.png new file mode 100644 index 0000000..6acb635 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/leaf.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/loading.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/loading.png new file mode 100644 index 0000000..81b0f12 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/tree/loading.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/util/splitter/mini-bottom.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/util/splitter/mini-bottom.png new file mode 100644 index 0000000..241209e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/util/splitter/mini-bottom.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/util/splitter/mini-left.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/util/splitter/mini-left.png new file mode 100644 index 0000000..1c40b78 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/util/splitter/mini-left.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/util/splitter/mini-right.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/util/splitter/mini-right.png new file mode 100644 index 0000000..505c329 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/util/splitter/mini-right.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/util/splitter/mini-top.png b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/util/splitter/mini-top.png new file mode 100644 index 0000000..4a378a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/util/splitter/mini-top.png differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-bottom-corners.gif new file mode 100644 index 0000000..920616c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-bottom-sides.gif new file mode 100644 index 0000000..edd9bc6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-bottom-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-bottom-corners.gif new file mode 100644 index 0000000..13f2ab8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-bottom-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-bottom-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-bottom-sides.gif new file mode 100644 index 0000000..edd9bc6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-bottom-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-left-corners-rtl.gif new file mode 100644 index 0000000..b9f3b33 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-left-corners.gif new file mode 100644 index 0000000..13f2ab8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-left-sides.gif new file mode 100644 index 0000000..b243204 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-right-corners-rtl.gif new file mode 100644 index 0000000..cfb3483 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-right-corners.gif new file mode 100644 index 0000000..5ea4188 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-right-sides.gif new file mode 100644 index 0000000..b243204 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-top-corners.gif new file mode 100644 index 0000000..13f2ab8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-top-sides.gif new file mode 100644 index 0000000..edd9bc6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-collapsed-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-left-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-left-corners-rtl.gif new file mode 100644 index 0000000..876bb6f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-left-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-left-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-left-corners.gif new file mode 100644 index 0000000..104dcb6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-left-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-left-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-left-sides.gif new file mode 100644 index 0000000..b243204 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-left-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-right-corners-rtl.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-right-corners-rtl.gif new file mode 100644 index 0000000..7c19cb2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-right-corners-rtl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-right-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-right-corners.gif new file mode 100644 index 0000000..8dcdd33 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-right-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-right-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-right-sides.gif new file mode 100644 index 0000000..b243204 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-right-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-top-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-top-corners.gif new file mode 100644 index 0000000..ec77a67 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-top-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-top-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-top-sides.gif new file mode 100644 index 0000000..edd9bc6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window-header/window-header-default-top-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window/window-default-corners.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window/window-default-corners.gif new file mode 100644 index 0000000..3213b0d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window/window-default-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window/window-default-sides.gif b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window/window-default-sides.gif new file mode 100644 index 0000000..b243204 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/ext-theme-neptune/images/window/window-default-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/boundlist/trigger-arrow.png b/extjs-django/marvel/static/extjs/resources/themes/images/access/boundlist/trigger-arrow.png new file mode 100644 index 0000000..11daac3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/boundlist/trigger-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/box/corners-blue.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/box/corners-blue.gif new file mode 100644 index 0000000..fa419b5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/box/corners-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/box/corners.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/box/corners.gif new file mode 100644 index 0000000..8aa8cae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/box/corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/box/l-blue.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/box/l-blue.gif new file mode 100644 index 0000000..5ed7f00 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/box/l-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/box/l.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/box/l.gif new file mode 100644 index 0000000..0160f97 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/box/l.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/box/r-blue.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/box/r-blue.gif new file mode 100644 index 0000000..3ea5cae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/box/r-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/box/r.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/box/r.gif new file mode 100644 index 0000000..34237f6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/box/r.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/box/tb-blue.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/box/tb-blue.gif new file mode 100644 index 0000000..4b1382c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/box/tb-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/box/tb.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/box/tb.gif new file mode 100644 index 0000000..435889b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/box/tb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/button/arrow.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/arrow.gif new file mode 100644 index 0000000..087b450 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/arrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/button/btn.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/btn.gif new file mode 100644 index 0000000..3e705ba Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/button/group-cs.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/group-cs.gif new file mode 100644 index 0000000..aaf0d46 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/group-cs.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/button/group-lr.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/group-lr.gif new file mode 100644 index 0000000..374ea75 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/group-lr.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/button/group-tb.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/group-tb.gif new file mode 100644 index 0000000..50a9972 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/group-tb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow-b-noline.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow-b-noline.gif new file mode 100644 index 0000000..644e9f3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow-b-noline.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow-b.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow-b.gif new file mode 100644 index 0000000..ba55d0a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow-b.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow-bo.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow-bo.gif new file mode 100644 index 0000000..c672b60 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow-bo.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow-light.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow-light.gif new file mode 100644 index 0000000..08783c9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow-light.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow-noline.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow-noline.gif new file mode 100644 index 0000000..f3cd351 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow-noline.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow-o.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow-o.gif new file mode 100644 index 0000000..4bdafd0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow-o.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow.gif new file mode 100644 index 0000000..a77be7f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/button/s-arrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/datepicker/datepicker-footer-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/datepicker/datepicker-footer-bg.gif new file mode 100644 index 0000000..7a2f569 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/datepicker/datepicker-footer-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/datepicker/datepicker-header-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/datepicker/datepicker-header-bg.gif new file mode 100644 index 0000000..f6353ad Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/datepicker/datepicker-header-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/dd/drop-add.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/dd/drop-add.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/dd/drop-add.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/dd/drop-between.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/dd/drop-between.gif new file mode 100644 index 0000000..5c6c09d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/dd/drop-between.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/dd/drop-no.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/dd/drop-no.gif new file mode 100644 index 0000000..9d9c6a9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/dd/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/dd/drop-over.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/dd/drop-over.gif new file mode 100644 index 0000000..30d1ca7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/dd/drop-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/dd/drop-under.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/dd/drop-under.gif new file mode 100644 index 0000000..85f66b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/dd/drop-under.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/dd/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/dd/drop-yes.gif new file mode 100644 index 0000000..8aacb30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/dd/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/editor/tb-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/editor/tb-sprite.gif new file mode 100644 index 0000000..bd4011d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/editor/tb-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/form/checkbox.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/checkbox.gif new file mode 100644 index 0000000..baf44f9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/checkbox.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/form/checkbox_.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/checkbox_.gif new file mode 100644 index 0000000..835b346 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/checkbox_.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/form/clear-trigger.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/clear-trigger.gif new file mode 100644 index 0000000..9bfd184 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/clear-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/form/date-trigger.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/date-trigger.gif new file mode 100644 index 0000000..048506d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/date-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/form/error-tip-corners.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/error-tip-corners.gif new file mode 100644 index 0000000..6ea4c38 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/error-tip-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/form/exclamation.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/exclamation.gif new file mode 100644 index 0000000..daa88b8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/exclamation.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/form/radio.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/radio.gif new file mode 100644 index 0000000..1d7fd15 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/radio.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/form/radio_.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/radio_.gif new file mode 100644 index 0000000..36bb91d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/radio_.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/form/search-trigger.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/search-trigger.gif new file mode 100644 index 0000000..ab8b3b4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/search-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/form/spinner-small.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/spinner-small.gif new file mode 100644 index 0000000..c0944f9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/spinner-small.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/form/spinner.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/spinner.gif new file mode 100644 index 0000000..c0944f9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/spinner.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/form/spinner_.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/spinner_.gif new file mode 100644 index 0000000..f8c5ab5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/spinner_.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/form/text-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/text-bg.gif new file mode 100644 index 0000000..4ce90bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/text-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/form/trigger-tpl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/trigger-tpl.gif new file mode 100644 index 0000000..2574ead Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/trigger-tpl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/form/trigger.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/trigger.gif new file mode 100644 index 0000000..bd25572 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/form/trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/arrow-left-white.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/arrow-left-white.gif new file mode 100644 index 0000000..63088f5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/arrow-left-white.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/arrow-right-white.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/arrow-right-white.gif new file mode 100644 index 0000000..e9e0678 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/arrow-right-white.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/cell-special-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/cell-special-bg.gif new file mode 100644 index 0000000..d76ffbc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/cell-special-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/cell-special-selected-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/cell-special-selected-bg.gif new file mode 100644 index 0000000..291a404 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/cell-special-selected-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/checked.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/checked.gif new file mode 100644 index 0000000..fad5893 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/checked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/col-move-bottom.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/col-move-bottom.gif new file mode 100644 index 0000000..cc1e473 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/col-move-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/col-move-top.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/col-move-top.gif new file mode 100644 index 0000000..58ff32c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/col-move-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/column-header-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/column-header-bg.gif new file mode 100644 index 0000000..707f6f1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/column-header-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/column-header-over-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/column-header-over-bg.gif new file mode 100644 index 0000000..8c66304 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/column-header-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/columns.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/columns.gif new file mode 100644 index 0000000..2d3a823 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/columns.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/dd-insert-arrow-left.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/dd-insert-arrow-left.gif new file mode 100644 index 0000000..5d923b2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/dd-insert-arrow-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/dd-insert-arrow-left.png b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/dd-insert-arrow-left.png new file mode 100644 index 0000000..5dc6967 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/dd-insert-arrow-left.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/dd-insert-arrow-right.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/dd-insert-arrow-right.gif new file mode 100644 index 0000000..8d154db Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/dd-insert-arrow-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/dd-insert-arrow-right.png b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/dd-insert-arrow-right.png new file mode 100644 index 0000000..b1a1819 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/dd-insert-arrow-right.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/dirty.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/dirty.gif new file mode 100644 index 0000000..d524ee5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/dirty.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/done.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/done.gif new file mode 100644 index 0000000..a937cb2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/done.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/drop-no.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/drop-no.gif new file mode 100644 index 0000000..31a332b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/drop-yes.gif new file mode 100644 index 0000000..926010e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/footer-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/footer-bg.gif new file mode 100644 index 0000000..126120f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/footer-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid-blue-hd.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid-blue-hd.gif new file mode 100644 index 0000000..862094e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid-blue-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid-blue-split.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid-blue-split.gif new file mode 100644 index 0000000..1b0bae3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid-blue-split.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid-hrow.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid-hrow.gif new file mode 100644 index 0000000..6374104 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid-hrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid-loading.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid-loading.gif new file mode 100644 index 0000000..d112c54 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid-split.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid-split.gif new file mode 100644 index 0000000..c76a16e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid-split.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid-vista-hd.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid-vista-hd.gif new file mode 100644 index 0000000..d097263 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid-vista-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid3-hd-btn.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid3-hd-btn.gif new file mode 100644 index 0000000..9ecd650 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid3-hd-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid3-hrow-over.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid3-hrow-over.gif new file mode 100644 index 0000000..0405f6c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid3-hrow-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid3-hrow.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid3-hrow.gif new file mode 100644 index 0000000..509737a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid3-hrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid3-special-col-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid3-special-col-bg.gif new file mode 100644 index 0000000..8ec57f5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid3-special-col-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid3-special-col-sel-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid3-special-col-sel-bg.gif new file mode 100644 index 0000000..93a9ca6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/grid3-special-col-sel-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/group-by.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/group-by.gif new file mode 100644 index 0000000..d6075bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/group-by.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/group-collapse.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/group-collapse.gif new file mode 100644 index 0000000..9bd255e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/group-collapse.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/group-expand-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/group-expand-sprite.gif new file mode 100644 index 0000000..f230489 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/group-expand-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/group-expand.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/group-expand.gif new file mode 100644 index 0000000..fd22e6b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/group-expand.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hd-pop.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hd-pop.gif new file mode 100644 index 0000000..eb8ba79 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hd-pop.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hmenu-asc.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hmenu-asc.gif new file mode 100644 index 0000000..8917e0e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hmenu-asc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hmenu-desc.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hmenu-desc.gif new file mode 100644 index 0000000..f26b7c2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hmenu-desc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hmenu-lock.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hmenu-lock.gif new file mode 100644 index 0000000..1596126 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hmenu-lock.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hmenu-lock.png b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hmenu-lock.png new file mode 100644 index 0000000..8b81e7f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hmenu-lock.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hmenu-unlock.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hmenu-unlock.gif new file mode 100644 index 0000000..af59cf9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hmenu-unlock.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hmenu-unlock.png b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hmenu-unlock.png new file mode 100644 index 0000000..9dd5df3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/hmenu-unlock.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/invalid_line.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/invalid_line.gif new file mode 100644 index 0000000..025cffc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/invalid_line.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/loading.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/loading.gif new file mode 100644 index 0000000..e846e1d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/mso-hd.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/mso-hd.gif new file mode 100644 index 0000000..669f3cf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/mso-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/nowait.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/nowait.gif new file mode 100644 index 0000000..4c5862c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/nowait.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-first-disabled.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-first-disabled.gif new file mode 100644 index 0000000..e4df7a7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-first-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-first.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-first.gif new file mode 100644 index 0000000..aa0a822 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-first.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-last-disabled.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-last-disabled.gif new file mode 100644 index 0000000..67fee75 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-last-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-last.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-last.gif new file mode 100644 index 0000000..e0cf111 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-last.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-next-disabled.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-next-disabled.gif new file mode 100644 index 0000000..e3e8e87 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-next-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-next.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-next.gif new file mode 100644 index 0000000..69899c0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-next.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-prev-disabled.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-prev-disabled.gif new file mode 100644 index 0000000..0f94bf7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-prev-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-prev.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-prev.gif new file mode 100644 index 0000000..289b126 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/page-prev.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/pick-button.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/pick-button.gif new file mode 100644 index 0000000..6957924 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/pick-button.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/property-cell-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/property-cell-bg.gif new file mode 100644 index 0000000..ab0a1cb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/property-cell-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/refresh-disabled.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/refresh-disabled.gif new file mode 100644 index 0000000..607800b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/refresh-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/refresh.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/refresh.gif new file mode 100644 index 0000000..8435d1e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/refresh.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/row-check-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/row-check-sprite.gif new file mode 100644 index 0000000..6101164 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/row-check-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/row-expand-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/row-expand-sprite.gif new file mode 100644 index 0000000..6f4d874 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/row-expand-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/row-over.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/row-over.gif new file mode 100644 index 0000000..b288e38 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/row-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/row-sel.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/row-sel.gif new file mode 100644 index 0000000..98209e6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/row-sel.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/sort-hd.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/sort-hd.gif new file mode 100644 index 0000000..681628f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/sort-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/sort_asc.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/sort_asc.gif new file mode 100644 index 0000000..371f5e4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/sort_asc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/sort_desc.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/sort_desc.gif new file mode 100644 index 0000000..000e363 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/sort_desc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/unchecked.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/unchecked.gif new file mode 100644 index 0000000..43823e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/unchecked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/wait.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/wait.gif new file mode 100644 index 0000000..471c1a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/grid/wait.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/layout/mini-bottom.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/layout/mini-bottom.gif new file mode 100644 index 0000000..c18f9e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/layout/mini-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/layout/mini-left.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/layout/mini-left.gif new file mode 100644 index 0000000..99f7993 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/layout/mini-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/layout/mini-right.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/layout/mini-right.gif new file mode 100644 index 0000000..5b13c5a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/layout/mini-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/layout/mini-top.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/layout/mini-top.gif new file mode 100644 index 0000000..a4ca2bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/layout/mini-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/checked.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/checked.gif new file mode 100644 index 0000000..fad5893 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/checked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/group-checked.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/group-checked.gif new file mode 100644 index 0000000..d8b08f5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/group-checked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/item-over.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/item-over.gif new file mode 100644 index 0000000..0167839 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/item-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/menu-item-active-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/menu-item-active-bg.gif new file mode 100644 index 0000000..bd6c83b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/menu-item-active-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/menu-item-active-corners.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/menu-item-active-corners.gif new file mode 100644 index 0000000..0df1469 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/menu-item-active-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/menu-item-active-sides.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/menu-item-active-sides.gif new file mode 100644 index 0000000..1894f23 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/menu-item-active-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/menu-parent.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/menu-parent.gif new file mode 100644 index 0000000..49286cd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/menu-parent.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/menu.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/menu.gif new file mode 100644 index 0000000..9bb3960 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/menu.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/unchecked.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/unchecked.gif new file mode 100644 index 0000000..43823e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/menu/unchecked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/panel-header/panel-header-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel-header/panel-header-bg.gif new file mode 100644 index 0000000..30b7e77 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel-header/panel-header-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/corners-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/corners-sprite.gif new file mode 100644 index 0000000..43e2862 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/corners-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/left-right.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/left-right.gif new file mode 100644 index 0000000..51850b7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/left-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/light-hd.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/light-hd.gif new file mode 100644 index 0000000..660bedb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/light-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/tool-sprite-tpl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/tool-sprite-tpl.gif new file mode 100644 index 0000000..e647867 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/tool-sprite-tpl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/tool-sprites.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/tool-sprites.gif new file mode 100644 index 0000000..a3ffe58 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/tool-sprites.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/tools-sprites-trans.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/tools-sprites-trans.gif new file mode 100644 index 0000000..ead931e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/tools-sprites-trans.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/top-bottom.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/top-bottom.gif new file mode 100644 index 0000000..6b2649d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/top-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/white-corners-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/white-corners-sprite.gif new file mode 100644 index 0000000..22d4bba Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/white-corners-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/white-left-right.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/white-left-right.gif new file mode 100644 index 0000000..51850b7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/white-left-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/white-top-bottom.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/white-top-bottom.gif new file mode 100644 index 0000000..08f8fae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/panel/white-top-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/progress/progress-default-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/progress/progress-default-bg.gif new file mode 100644 index 0000000..ade77c1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/progress/progress-default-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/qtip/close.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/qtip/close.gif new file mode 100644 index 0000000..69ab915 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/qtip/close.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/qtip/tip-anchor-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/qtip/tip-anchor-sprite.gif new file mode 100644 index 0000000..f46d31d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/qtip/tip-anchor-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/qtip/tip-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/qtip/tip-sprite.gif new file mode 100644 index 0000000..9f6a629 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/qtip/tip-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/blue-loading.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/blue-loading.gif new file mode 100644 index 0000000..3bbf639 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/blue-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/glass-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/glass-bg.gif new file mode 100644 index 0000000..ed3c886 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/glass-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/hd-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/hd-sprite.gif new file mode 100644 index 0000000..446be92 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/hd-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/icon-error.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/icon-error.gif new file mode 100644 index 0000000..397b655 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/icon-error.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/icon-info.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/icon-info.gif new file mode 100644 index 0000000..58281c3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/icon-info.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/icon-question.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/icon-question.gif new file mode 100644 index 0000000..08abd82 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/icon-question.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/icon-warning.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/icon-warning.gif new file mode 100644 index 0000000..27ff98b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/icon-warning.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/large-loading.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/large-loading.gif new file mode 100644 index 0000000..b36b555 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/large-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/left-btn.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/left-btn.gif new file mode 100644 index 0000000..0622439 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/left-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/right-btn.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/right-btn.gif new file mode 100644 index 0000000..5e3215d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/shared/right-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/e-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/e-handle-dark.gif new file mode 100644 index 0000000..70aad3f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/e-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/e-handle.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/e-handle.gif new file mode 100644 index 0000000..52c045e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/e-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/ne-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/ne-handle-dark.gif new file mode 100644 index 0000000..3a30ca2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/ne-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/ne-handle.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/ne-handle.gif new file mode 100644 index 0000000..e48f9f9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/ne-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/nw-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/nw-handle-dark.gif new file mode 100644 index 0000000..5ea8b51 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/nw-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/nw-handle.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/nw-handle.gif new file mode 100644 index 0000000..65d5cc2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/nw-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/s-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/s-handle-dark.gif new file mode 100644 index 0000000..421b534 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/s-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/s-handle.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/s-handle.gif new file mode 100644 index 0000000..2b635de Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/s-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/se-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/se-handle-dark.gif new file mode 100644 index 0000000..881a5c4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/se-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/se-handle.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/se-handle.gif new file mode 100644 index 0000000..5f1e3b8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/se-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/square.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/square.gif new file mode 100644 index 0000000..4dc5a2d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/square.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/sw-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/sw-handle-dark.gif new file mode 100644 index 0000000..030d8f8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/sw-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/sw-handle.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/sw-handle.gif new file mode 100644 index 0000000..79bcb84 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/sizer/sw-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-bg.gif new file mode 100644 index 0000000..50b7624 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-bg.png b/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-bg.png new file mode 100644 index 0000000..d213754 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-thumb.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-thumb.gif new file mode 100644 index 0000000..d7dadda Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-thumb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-thumb.png b/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-thumb.png new file mode 100644 index 0000000..4991a74 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-thumb.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-v-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-v-bg.gif new file mode 100644 index 0000000..70b70ad Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-v-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-v-bg.png b/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-v-bg.png new file mode 100644 index 0000000..f1221c4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-v-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-v-thumb.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-v-thumb.gif new file mode 100644 index 0000000..7478fad Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-v-thumb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-v-thumb.png b/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-v-thumb.png new file mode 100644 index 0000000..e0c0e27 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/slider/slider-v-thumb.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/spinner.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/spinner.gif new file mode 100644 index 0000000..f764d31 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/spinner.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tab-bar/scroll-left.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tab-bar/scroll-left.gif new file mode 100644 index 0000000..71a2e88 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tab-bar/scroll-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tab-bar/scroll-right.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tab-bar/scroll-right.gif new file mode 100644 index 0000000..8f3d659 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tab-bar/scroll-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tab-bar/tab-bar-default-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tab-bar/tab-bar-default-bg.gif new file mode 100644 index 0000000..37e3369 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tab-bar/tab-bar-default-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-btm-inactive-left-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-btm-inactive-left-bg.gif new file mode 100644 index 0000000..687af2b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-btm-inactive-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-btm-inactive-right-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-btm-inactive-right-bg.gif new file mode 100644 index 0000000..3c1b3eb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-btm-inactive-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-btm-left-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-btm-left-bg.gif new file mode 100644 index 0000000..e5f827a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-btm-left-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-btm-right-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-btm-right-bg.gif new file mode 100644 index 0000000..2551f4c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-btm-right-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-close.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-close.gif new file mode 100644 index 0000000..ef9a7c2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-close.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-strip-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-strip-bg.gif new file mode 100644 index 0000000..fc1fdcd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-strip-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-strip-btm-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-strip-btm-bg.gif new file mode 100644 index 0000000..a151553 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tab-strip-btm-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tabs-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tabs-sprite.gif new file mode 100644 index 0000000..8194001 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tabs/tabs-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tip/tip-corners.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tip/tip-corners.gif new file mode 100644 index 0000000..dd2901c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tip/tip-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tip/tip-corners.png b/extjs-django/marvel/static/extjs/resources/themes/images/access/tip/tip-corners.png new file mode 100644 index 0000000..4454e54 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tip/tip-corners.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tip/tip-sides.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tip/tip-sides.gif new file mode 100644 index 0000000..27360d6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tip/tip-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tip/tip-sides.png b/extjs-django/marvel/static/extjs/resources/themes/images/access/tip/tip-sides.png new file mode 100644 index 0000000..dc4b87d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tip/tip-sides.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/bg.gif new file mode 100644 index 0000000..b67a54e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/btn-arrow-light.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/btn-arrow-light.gif new file mode 100644 index 0000000..b0e24b5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/btn-arrow-light.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/btn-arrow.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/btn-arrow.gif new file mode 100644 index 0000000..8acb460 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/btn-arrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/btn-over-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/btn-over-bg.gif new file mode 100644 index 0000000..ee2dd98 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/btn-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/gray-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/gray-bg.gif new file mode 100644 index 0000000..bd49438 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/gray-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/more.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/more.gif new file mode 100644 index 0000000..4f01020 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/more.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/s-arrow-bo.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/s-arrow-bo.gif new file mode 100644 index 0000000..1505edd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/s-arrow-bo.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/scroll-left.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/scroll-left.gif new file mode 100644 index 0000000..71a2e88 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/scroll-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/scroll-right.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/scroll-right.gif new file mode 100644 index 0000000..8f3d659 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/scroll-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/tb-btn-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/tb-btn-sprite.gif new file mode 100644 index 0000000..19bbef3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/tb-btn-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/tb-xl-btn-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/tb-xl-btn-sprite.gif new file mode 100644 index 0000000..1bc0420 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/tb-xl-btn-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/tb-xl-sep.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/tb-xl-sep.gif new file mode 100644 index 0000000..30555ee Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/tb-xl-sep.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/toolbar-default-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/toolbar-default-bg.gif new file mode 100644 index 0000000..57b73f0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/toolbar/toolbar-default-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tools/tool-sprite-tpl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tools/tool-sprite-tpl.gif new file mode 100644 index 0000000..e647867 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tools/tool-sprite-tpl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tools/tool-sprites.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tools/tool-sprites.gif new file mode 100644 index 0000000..a3ffe58 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tools/tool-sprites.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tools/tools-sprites-trans.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tools/tools-sprites-trans.gif new file mode 100644 index 0000000..ead931e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tools/tools-sprites-trans.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/arrows.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/arrows.gif new file mode 100644 index 0000000..04ec10d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/arrows.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-above.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-above.gif new file mode 100644 index 0000000..30d1ca7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-above.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-add.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-add.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-add.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-append.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-append.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-append.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-below.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-below.gif new file mode 100644 index 0000000..85f66b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-below.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-between.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-between.gif new file mode 100644 index 0000000..5c6c09d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-between.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-no.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-no.gif new file mode 100644 index 0000000..9d9c6a9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-over.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-over.gif new file mode 100644 index 0000000..30d1ca7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-under.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-under.gif new file mode 100644 index 0000000..85f66b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-under.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-yes.gif new file mode 100644 index 0000000..8aacb30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-end-minus-nl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-end-minus-nl.gif new file mode 100644 index 0000000..553682f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-end-minus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-end-minus.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-end-minus.gif new file mode 100644 index 0000000..4c82874 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-end-minus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-end-plus-nl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-end-plus-nl.gif new file mode 100644 index 0000000..d41557c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-end-plus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-end-plus.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-end-plus.gif new file mode 100644 index 0000000..3926368 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-end-plus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-end.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-end.gif new file mode 100644 index 0000000..25ae338 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-end.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-line.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-line.gif new file mode 100644 index 0000000..80e13b5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-line.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-minus-nl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-minus-nl.gif new file mode 100644 index 0000000..553682f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-minus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-minus.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-minus.gif new file mode 100644 index 0000000..fd3782c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-minus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-plus-nl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-plus-nl.gif new file mode 100644 index 0000000..d41557c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-plus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-plus.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-plus.gif new file mode 100644 index 0000000..9f05657 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow-plus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow.gif new file mode 100644 index 0000000..0a13825 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/elbow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/folder-open.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/folder-open.gif new file mode 100644 index 0000000..076627f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/folder-open.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/folder.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/folder.gif new file mode 100644 index 0000000..ab21711 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/folder.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/leaf.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/leaf.gif new file mode 100644 index 0000000..445769d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/leaf.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/loading.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/loading.gif new file mode 100644 index 0000000..e846e1d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/s.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/s.gif new file mode 100644 index 0000000..1d11fa9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/tree/s.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/util/splitter/mini-bottom.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/util/splitter/mini-bottom.gif new file mode 100644 index 0000000..c18f9e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/util/splitter/mini-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/util/splitter/mini-left.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/util/splitter/mini-left.gif new file mode 100644 index 0000000..99f7993 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/util/splitter/mini-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/util/splitter/mini-right.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/util/splitter/mini-right.gif new file mode 100644 index 0000000..5b13c5a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/util/splitter/mini-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/util/splitter/mini-top.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/util/splitter/mini-top.gif new file mode 100644 index 0000000..a4ca2bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/util/splitter/mini-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/window/icon-error.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/window/icon-error.gif new file mode 100644 index 0000000..05c713c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/window/icon-error.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/window/icon-info.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/window/icon-info.gif new file mode 100644 index 0000000..adc0613 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/window/icon-info.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/window/icon-question.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/window/icon-question.gif new file mode 100644 index 0000000..9b31a94 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/window/icon-question.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/window/icon-warning.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/window/icon-warning.gif new file mode 100644 index 0000000..0d89077 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/window/icon-warning.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/window/window-corners.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/window/window-corners.gif new file mode 100644 index 0000000..82d456b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/window/window-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/window/window-default-corners.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/window/window-default-corners.gif new file mode 100644 index 0000000..a8998ec Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/window/window-default-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/window/window-default-sides.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/window/window-default-sides.gif new file mode 100644 index 0000000..eff9537 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/window/window-default-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/access/window/window-sides.gif b/extjs-django/marvel/static/extjs/resources/themes/images/access/window/window-sides.gif new file mode 100644 index 0000000..43af359 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/access/window/window-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/boundlist/trigger-arrow.png b/extjs-django/marvel/static/extjs/resources/themes/images/default/boundlist/trigger-arrow.png new file mode 100644 index 0000000..11daac3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/boundlist/trigger-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/box/corners-blue.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/box/corners-blue.gif new file mode 100644 index 0000000..fa419b5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/box/corners-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/box/corners.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/box/corners.gif new file mode 100644 index 0000000..8aa8cae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/box/corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/box/l-blue.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/box/l-blue.gif new file mode 100644 index 0000000..5ed7f00 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/box/l-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/box/l.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/box/l.gif new file mode 100644 index 0000000..0160f97 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/box/l.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/box/r-blue.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/box/r-blue.gif new file mode 100644 index 0000000..3ea5cae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/box/r-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/box/r.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/box/r.gif new file mode 100644 index 0000000..34237f6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/box/r.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/box/tb-blue.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/box/tb-blue.gif new file mode 100644 index 0000000..562fecc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/box/tb-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/box/tb.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/box/tb.gif new file mode 100644 index 0000000..435889b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/box/tb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/button/arrow.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/arrow.gif new file mode 100644 index 0000000..3ab4f71 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/arrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/button/btn.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/btn.gif new file mode 100644 index 0000000..06b404d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/button/group-cs.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/group-cs.gif new file mode 100644 index 0000000..3d1dca8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/group-cs.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/button/group-lr.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/group-lr.gif new file mode 100644 index 0000000..7c549f9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/group-lr.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/button/group-tb.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/group-tb.gif new file mode 100644 index 0000000..adeb0a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/group-tb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow-b-noline.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow-b-noline.gif new file mode 100644 index 0000000..a4220ee Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow-b-noline.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow-b.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow-b.gif new file mode 100644 index 0000000..84b6470 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow-b.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow-bo.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow-bo.gif new file mode 100644 index 0000000..548700b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow-bo.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow-light.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow-light.gif new file mode 100644 index 0000000..08783c9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow-light.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow-noline.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow-noline.gif new file mode 100644 index 0000000..0953eab Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow-noline.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow-o.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow-o.gif new file mode 100644 index 0000000..89c70f3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow-o.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow.gif new file mode 100644 index 0000000..8940774 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/button/s-arrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/datepicker/datepicker-footer-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/datepicker/datepicker-footer-bg.gif new file mode 100644 index 0000000..1152ee3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/datepicker/datepicker-footer-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/datepicker/datepicker-footer-bg.png b/extjs-django/marvel/static/extjs/resources/themes/images/default/datepicker/datepicker-footer-bg.png new file mode 100644 index 0000000..c062d0d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/datepicker/datepicker-footer-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/datepicker/datepicker-header-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/datepicker/datepicker-header-bg.gif new file mode 100644 index 0000000..ee316fb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/datepicker/datepicker-header-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/datepicker/datepicker-header-bg.png b/extjs-django/marvel/static/extjs/resources/themes/images/default/datepicker/datepicker-header-bg.png new file mode 100644 index 0000000..45d74d7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/datepicker/datepicker-header-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/dd/drop-add.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/dd/drop-add.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/dd/drop-add.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/dd/drop-no.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/dd/drop-no.gif new file mode 100644 index 0000000..08d0833 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/dd/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/dd/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/dd/drop-yes.gif new file mode 100644 index 0000000..8aacb30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/dd/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/editor/tb-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/editor/tb-sprite.gif new file mode 100644 index 0000000..fb70577 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/editor/tb-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/form/checkbox.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/checkbox.gif new file mode 100644 index 0000000..835b346 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/checkbox.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/form/clear-trigger.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/clear-trigger.gif new file mode 100644 index 0000000..da78d45 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/clear-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/form/date-trigger.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/date-trigger.gif new file mode 100644 index 0000000..25ef7b3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/date-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/form/error-tip-corners.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/error-tip-corners.gif new file mode 100644 index 0000000..6ea4c38 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/error-tip-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/form/exclamation.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/exclamation.gif new file mode 100644 index 0000000..ea31a30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/exclamation.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/form/radio.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/radio.gif new file mode 100644 index 0000000..36bb91d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/radio.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/form/search-trigger.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/search-trigger.gif new file mode 100644 index 0000000..db8802b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/search-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/form/spinner-small.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/spinner-small.gif new file mode 100644 index 0000000..e70f8d8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/spinner-small.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/form/spinner.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/spinner.gif new file mode 100644 index 0000000..1e323bf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/spinner.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/form/text-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/text-bg.gif new file mode 100644 index 0000000..4179607 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/text-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/form/trigger-square.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/trigger-square.gif new file mode 100644 index 0000000..3004ec5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/trigger-square.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/form/trigger-tpl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/trigger-tpl.gif new file mode 100644 index 0000000..e3701a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/trigger-tpl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/form/trigger.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/trigger.gif new file mode 100644 index 0000000..f6cba37 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/form/trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/arrow-left-white.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/arrow-left-white.gif new file mode 100644 index 0000000..63088f5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/arrow-left-white.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/arrow-right-white.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/arrow-right-white.gif new file mode 100644 index 0000000..e9e0678 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/arrow-right-white.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/cell-special-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/cell-special-bg.gif new file mode 100644 index 0000000..d76ffbc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/cell-special-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/cell-special-bg.png b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/cell-special-bg.png new file mode 100644 index 0000000..0bcc236 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/cell-special-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/cell-special-selected-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/cell-special-selected-bg.gif new file mode 100644 index 0000000..f1da867 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/cell-special-selected-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/cell-special-selected-bg.png b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/cell-special-selected-bg.png new file mode 100644 index 0000000..500c3bd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/cell-special-selected-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/checked.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/checked.gif new file mode 100644 index 0000000..fad5893 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/checked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/col-move-bottom.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/col-move-bottom.gif new file mode 100644 index 0000000..cc1e473 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/col-move-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/col-move-top.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/col-move-top.gif new file mode 100644 index 0000000..58ff32c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/col-move-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/column-header-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/column-header-bg.gif new file mode 100644 index 0000000..5895dba Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/column-header-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/column-header-bg.png b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/column-header-bg.png new file mode 100644 index 0000000..b181a47 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/column-header-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/column-header-over-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/column-header-over-bg.gif new file mode 100644 index 0000000..54c1294 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/column-header-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/column-header-over-bg.png b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/column-header-over-bg.png new file mode 100644 index 0000000..3f20649 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/column-header-over-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/columns.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/columns.gif new file mode 100644 index 0000000..2d3a823 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/columns.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/dd-insert-arrow-left.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/dd-insert-arrow-left.gif new file mode 100644 index 0000000..5d923b2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/dd-insert-arrow-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/dd-insert-arrow-left.png b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/dd-insert-arrow-left.png new file mode 100644 index 0000000..5dc6967 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/dd-insert-arrow-left.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/dd-insert-arrow-right.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/dd-insert-arrow-right.gif new file mode 100644 index 0000000..8d154db Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/dd-insert-arrow-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/dd-insert-arrow-right.png b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/dd-insert-arrow-right.png new file mode 100644 index 0000000..b1a1819 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/dd-insert-arrow-right.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/dirty.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/dirty.gif new file mode 100644 index 0000000..4f217a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/dirty.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/done.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/done.gif new file mode 100644 index 0000000..a937cb2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/done.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/drop-no.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/drop-no.gif new file mode 100644 index 0000000..31a332b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/drop-yes.gif new file mode 100644 index 0000000..926010e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/footer-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/footer-bg.gif new file mode 100644 index 0000000..126120f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/footer-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid-blue-hd.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid-blue-hd.gif new file mode 100644 index 0000000..862094e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid-blue-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid-blue-split.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid-blue-split.gif new file mode 100644 index 0000000..5286f58 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid-blue-split.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid-hrow.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid-hrow.gif new file mode 100644 index 0000000..6374104 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid-hrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid-loading.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid-loading.gif new file mode 100644 index 0000000..d112c54 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid-split.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid-split.gif new file mode 100644 index 0000000..c76a16e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid-split.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid-vista-hd.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid-vista-hd.gif new file mode 100644 index 0000000..d097263 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid-vista-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid3-hd-btn.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid3-hd-btn.gif new file mode 100644 index 0000000..2112607 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid3-hd-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid3-hrow-over.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid3-hrow-over.gif new file mode 100644 index 0000000..f9c07af Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid3-hrow-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid3-hrow.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid3-hrow.gif new file mode 100644 index 0000000..8d459a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid3-hrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid3-rowheader.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid3-rowheader.gif new file mode 100644 index 0000000..2799b45 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/grid3-rowheader.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/group-by.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/group-by.gif new file mode 100644 index 0000000..d6075bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/group-by.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/group-collapse.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/group-collapse.gif new file mode 100644 index 0000000..495bb05 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/group-collapse.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/group-expand-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/group-expand-sprite.gif new file mode 100644 index 0000000..9c1653b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/group-expand-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/group-expand.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/group-expand.gif new file mode 100644 index 0000000..a33ac30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/group-expand.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hd-pop.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hd-pop.gif new file mode 100644 index 0000000..eb8ba79 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hd-pop.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hmenu-asc.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hmenu-asc.gif new file mode 100644 index 0000000..8917e0e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hmenu-asc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hmenu-desc.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hmenu-desc.gif new file mode 100644 index 0000000..f26b7c2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hmenu-desc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hmenu-lock.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hmenu-lock.gif new file mode 100644 index 0000000..1596126 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hmenu-lock.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hmenu-lock.png b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hmenu-lock.png new file mode 100644 index 0000000..8b81e7f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hmenu-lock.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hmenu-unlock.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hmenu-unlock.gif new file mode 100644 index 0000000..af59cf9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hmenu-unlock.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hmenu-unlock.png b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hmenu-unlock.png new file mode 100644 index 0000000..9dd5df3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/hmenu-unlock.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/invalid_line.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/invalid_line.gif new file mode 100644 index 0000000..fb7e0f3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/invalid_line.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/loading.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/loading.gif new file mode 100644 index 0000000..e846e1d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/mso-hd.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/mso-hd.gif new file mode 100644 index 0000000..669f3cf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/mso-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/nowait.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/nowait.gif new file mode 100644 index 0000000..4c5862c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/nowait.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-first-disabled.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-first-disabled.gif new file mode 100644 index 0000000..1e02c41 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-first-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-first.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-first.gif new file mode 100644 index 0000000..d84f41a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-first.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-last-disabled.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-last-disabled.gif new file mode 100644 index 0000000..8697067 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-last-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-last.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-last.gif new file mode 100644 index 0000000..3df5c2b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-last.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-next-disabled.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-next-disabled.gif new file mode 100644 index 0000000..90a7756 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-next-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-next.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-next.gif new file mode 100644 index 0000000..9601635 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-next.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-prev-disabled.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-prev-disabled.gif new file mode 100644 index 0000000..37154d6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-prev-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-prev.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-prev.gif new file mode 100644 index 0000000..eb70cf8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/page-prev.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/pick-button.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/pick-button.gif new file mode 100644 index 0000000..6957924 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/pick-button.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/property-cell-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/property-cell-bg.gif new file mode 100644 index 0000000..7890cf9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/property-cell-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/property-cell-selected-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/property-cell-selected-bg.gif new file mode 100644 index 0000000..1dfe9a6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/property-cell-selected-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/refresh-disabled.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/refresh-disabled.gif new file mode 100644 index 0000000..607800b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/refresh-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/refresh.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/refresh.gif new file mode 100644 index 0000000..110f684 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/refresh.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/row-check-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/row-check-sprite.gif new file mode 100644 index 0000000..6101164 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/row-check-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/row-expand-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/row-expand-sprite.gif new file mode 100644 index 0000000..6f4d874 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/row-expand-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/row-over.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/row-over.gif new file mode 100644 index 0000000..b288e38 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/row-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/row-sel.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/row-sel.gif new file mode 100644 index 0000000..98209e6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/row-sel.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/sort-hd.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/sort-hd.gif new file mode 100644 index 0000000..45e545f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/sort-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/sort_asc.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/sort_asc.gif new file mode 100644 index 0000000..67a2a4c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/sort_asc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/sort_desc.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/sort_desc.gif new file mode 100644 index 0000000..34db47c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/sort_desc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/unchecked.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/unchecked.gif new file mode 100644 index 0000000..43823e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/unchecked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/wait.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/wait.gif new file mode 100644 index 0000000..471c1a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/grid/wait.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/layout/mini-bottom.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/layout/mini-bottom.gif new file mode 100644 index 0000000..c18f9e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/layout/mini-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/layout/mini-left.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/layout/mini-left.gif new file mode 100644 index 0000000..99f7993 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/layout/mini-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/layout/mini-right.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/layout/mini-right.gif new file mode 100644 index 0000000..5b13c5a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/layout/mini-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/layout/mini-top.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/layout/mini-top.gif new file mode 100644 index 0000000..a4ca2bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/layout/mini-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/checked.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/checked.gif new file mode 100644 index 0000000..fad5893 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/checked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/group-checked.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/group-checked.gif new file mode 100644 index 0000000..d30b3e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/group-checked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/item-over.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/item-over.gif new file mode 100644 index 0000000..da1f289 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/item-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/menu-item-active-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/menu-item-active-bg.gif new file mode 100644 index 0000000..afb0225 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/menu-item-active-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/menu-item-active-corners.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/menu-item-active-corners.gif new file mode 100644 index 0000000..bac40a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/menu-item-active-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/menu-item-active-sides.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/menu-item-active-sides.gif new file mode 100644 index 0000000..becc1a5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/menu-item-active-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/menu-parent.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/menu-parent.gif new file mode 100644 index 0000000..1e37562 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/menu-parent.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/menu.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/menu.gif new file mode 100644 index 0000000..30a2c4b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/menu.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/unchecked.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/unchecked.gif new file mode 100644 index 0000000..43823e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/menu/unchecked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/progress/progress-default-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/progress/progress-default-bg.gif new file mode 100644 index 0000000..a19c88c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/progress/progress-default-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/blue-loading.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/blue-loading.gif new file mode 100644 index 0000000..3bbf639 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/blue-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/calendar.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/calendar.gif new file mode 100644 index 0000000..133cf23 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/calendar.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/glass-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/glass-bg.gif new file mode 100644 index 0000000..26fbbae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/glass-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/hd-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/hd-sprite.gif new file mode 100644 index 0000000..42da1ea Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/hd-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/icon-error.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/icon-error.gif new file mode 100644 index 0000000..397b655 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/icon-error.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/icon-info.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/icon-info.gif new file mode 100644 index 0000000..58281c3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/icon-info.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/icon-question.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/icon-question.gif new file mode 100644 index 0000000..08abd82 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/icon-question.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/icon-warning.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/icon-warning.gif new file mode 100644 index 0000000..27ff98b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/icon-warning.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/large-loading.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/large-loading.gif new file mode 100644 index 0000000..b36b555 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/large-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/left-btn.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/left-btn.gif new file mode 100644 index 0000000..a0ddd9e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/left-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/loading-balls.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/loading-balls.gif new file mode 100644 index 0000000..9ce214b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/loading-balls.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/right-btn.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/right-btn.gif new file mode 100644 index 0000000..dee63e2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/right-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/shadow-c.png b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/shadow-c.png new file mode 100644 index 0000000..d435f80 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/shadow-c.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/shadow-lr.png b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/shadow-lr.png new file mode 100644 index 0000000..bb88b6f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/shadow-lr.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/shadow.png b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/shadow.png new file mode 100644 index 0000000..75c0eba Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/shadow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/warning.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/warning.gif new file mode 100644 index 0000000..806d4bc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/shared/warning.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/e-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/e-handle-dark.gif new file mode 100644 index 0000000..b5486c1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/e-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/e-handle.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/e-handle.gif new file mode 100644 index 0000000..00ba835 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/e-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/ne-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/ne-handle-dark.gif new file mode 100644 index 0000000..04e5ecf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/ne-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/ne-handle.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/ne-handle.gif new file mode 100644 index 0000000..09405c7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/ne-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/nw-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/nw-handle-dark.gif new file mode 100644 index 0000000..6e49d69 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/nw-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/nw-handle.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/nw-handle.gif new file mode 100644 index 0000000..2fcea8a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/nw-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/s-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/s-handle-dark.gif new file mode 100644 index 0000000..4eb5f0f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/s-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/s-handle.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/s-handle.gif new file mode 100644 index 0000000..bf069c2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/s-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/se-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/se-handle-dark.gif new file mode 100644 index 0000000..c4c1087 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/se-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/se-handle.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/se-handle.gif new file mode 100644 index 0000000..972055e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/se-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/square.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/square.gif new file mode 100644 index 0000000..14ce6f7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/square.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/sw-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/sw-handle-dark.gif new file mode 100644 index 0000000..77224b0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/sw-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/sw-handle.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/sw-handle.gif new file mode 100644 index 0000000..3ca0ed9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/sizer/sw-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-bg.gif new file mode 100644 index 0000000..fbf3ba8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-bg.png b/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-bg.png new file mode 100644 index 0000000..b3eaf52 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-thumb.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-thumb.gif new file mode 100644 index 0000000..5ba1dfb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-thumb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-thumb.png b/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-thumb.png new file mode 100644 index 0000000..cd654a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-thumb.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-v-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-v-bg.gif new file mode 100644 index 0000000..0cf8c4b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-v-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-v-bg.png b/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-v-bg.png new file mode 100644 index 0000000..121450c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-v-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-v-thumb.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-v-thumb.gif new file mode 100644 index 0000000..58afe96 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-v-thumb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-v-thumb.png b/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-v-thumb.png new file mode 100644 index 0000000..7b3d725 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/slider/slider-v-thumb.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tab-bar/scroll-left.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tab-bar/scroll-left.gif new file mode 100644 index 0000000..afa125b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tab-bar/scroll-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tab-bar/scroll-right.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tab-bar/scroll-right.gif new file mode 100644 index 0000000..20460f2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tab-bar/scroll-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tab-bar/tab-bar-default-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tab-bar/tab-bar-default-bg.gif new file mode 100644 index 0000000..5b01cf9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tab-bar/tab-bar-default-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tip/tip-corners.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tip/tip-corners.gif new file mode 100644 index 0000000..e26ea6e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tip/tip-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tip/tip-sides.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tip/tip-sides.gif new file mode 100644 index 0000000..cf4c2f6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tip/tip-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/toolbar/more.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/toolbar/more.gif new file mode 100644 index 0000000..02c2509 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/toolbar/more.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/toolbar/scroll-left.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/toolbar/scroll-left.gif new file mode 100644 index 0000000..2db8cf5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/toolbar/scroll-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/toolbar/scroll-right.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/toolbar/scroll-right.gif new file mode 100644 index 0000000..5d5a7ab Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/toolbar/scroll-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/toolbar/toolbar-default-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/toolbar/toolbar-default-bg.gif new file mode 100644 index 0000000..22e3302 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/toolbar/toolbar-default-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tools/tool-sprite-tpl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tools/tool-sprite-tpl.gif new file mode 100644 index 0000000..e647867 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tools/tool-sprite-tpl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tools/tool-sprites.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tools/tool-sprites.gif new file mode 100644 index 0000000..2b6b809 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tools/tool-sprites.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tools/tools-sprites-trans.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tools/tools-sprites-trans.gif new file mode 100644 index 0000000..ead931e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tools/tools-sprites-trans.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/arrows.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/arrows.gif new file mode 100644 index 0000000..1dcb810 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/arrows.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-above.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-above.gif new file mode 100644 index 0000000..30d1ca7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-above.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-add.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-add.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-add.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-append.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-append.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-append.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-below.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-below.gif new file mode 100644 index 0000000..85f66b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-below.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-between.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-between.gif new file mode 100644 index 0000000..5c6c09d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-between.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-no.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-no.gif new file mode 100644 index 0000000..9d9c6a9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-over.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-over.gif new file mode 100644 index 0000000..30d1ca7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-under.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-under.gif new file mode 100644 index 0000000..85f66b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-under.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-yes.gif new file mode 100644 index 0000000..8aacb30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-end-minus-nl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-end-minus-nl.gif new file mode 100644 index 0000000..f50bd40 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-end-minus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-end-minus.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-end-minus.gif new file mode 100644 index 0000000..55d8a0f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-end-minus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-end-plus-nl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-end-plus-nl.gif new file mode 100644 index 0000000..96f8d72 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-end-plus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-end-plus.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-end-plus.gif new file mode 100644 index 0000000..a5c62fa Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-end-plus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-end.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-end.gif new file mode 100644 index 0000000..406a88d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-end.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-line.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-line.gif new file mode 100644 index 0000000..e25ed03 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-line.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-minus-nl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-minus-nl.gif new file mode 100644 index 0000000..f50bd40 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-minus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-minus.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-minus.gif new file mode 100644 index 0000000..a728796 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-minus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-plus-nl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-plus-nl.gif new file mode 100644 index 0000000..96f8d72 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-plus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-plus.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-plus.gif new file mode 100644 index 0000000..ae41983 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow-plus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow.gif new file mode 100644 index 0000000..201c413 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/elbow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/folder-open.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/folder-open.gif new file mode 100644 index 0000000..361e1be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/folder-open.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/folder.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/folder.gif new file mode 100644 index 0000000..b2fd81a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/folder.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/leaf.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/leaf.gif new file mode 100644 index 0000000..445769d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/leaf.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/loading.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/loading.gif new file mode 100644 index 0000000..e846e1d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/s.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/s.gif new file mode 100644 index 0000000..1d11fa9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/tree/s.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/util/splitter/mini-bottom.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/util/splitter/mini-bottom.gif new file mode 100644 index 0000000..c18f9e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/util/splitter/mini-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/util/splitter/mini-left.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/util/splitter/mini-left.gif new file mode 100644 index 0000000..99f7993 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/util/splitter/mini-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/util/splitter/mini-right.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/util/splitter/mini-right.gif new file mode 100644 index 0000000..5b13c5a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/util/splitter/mini-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/default/util/splitter/mini-top.gif b/extjs-django/marvel/static/extjs/resources/themes/images/default/util/splitter/mini-top.gif new file mode 100644 index 0000000..a4ca2bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/default/util/splitter/mini-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/boundlist/trigger-arrow.png b/extjs-django/marvel/static/extjs/resources/themes/images/gray/boundlist/trigger-arrow.png new file mode 100644 index 0000000..11daac3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/boundlist/trigger-arrow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/corners-blue.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/corners-blue.gif new file mode 100644 index 0000000..fa419b5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/corners-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/corners.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/corners.gif new file mode 100644 index 0000000..8aa8cae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/l-blue.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/l-blue.gif new file mode 100644 index 0000000..5ed7f00 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/l-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/l.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/l.gif new file mode 100644 index 0000000..0160f97 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/l.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/r-blue.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/r-blue.gif new file mode 100644 index 0000000..3ea5cae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/r-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/r.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/r.gif new file mode 100644 index 0000000..34237f6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/r.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/tb-blue.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/tb-blue.gif new file mode 100644 index 0000000..562fecc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/tb-blue.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/tb.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/tb.gif new file mode 100644 index 0000000..435889b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/box/tb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/arrow.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/arrow.gif new file mode 100644 index 0000000..3ab4f71 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/arrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/btn-arrow.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/btn-arrow.gif new file mode 100644 index 0000000..f90d5df Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/btn-arrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/btn-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/btn-sprite.gif new file mode 100644 index 0000000..834ff97 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/btn-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/btn.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/btn.gif new file mode 100644 index 0000000..96ea61a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/group-cs.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/group-cs.gif new file mode 100644 index 0000000..7059e2b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/group-cs.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/group-lr.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/group-lr.gif new file mode 100644 index 0000000..3f41fbd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/group-lr.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/group-tb.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/group-tb.gif new file mode 100644 index 0000000..c5ea8ca Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/group-tb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow-b-noline.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow-b-noline.gif new file mode 100644 index 0000000..a4220ee Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow-b-noline.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow-b.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow-b.gif new file mode 100644 index 0000000..84b6470 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow-b.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow-bo.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow-bo.gif new file mode 100644 index 0000000..52a05ca Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow-bo.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow-light.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow-light.gif new file mode 100644 index 0000000..08783c9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow-light.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow-noline.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow-noline.gif new file mode 100644 index 0000000..0953eab Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow-noline.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow-o.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow-o.gif new file mode 100644 index 0000000..52a5141 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow-o.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow.gif new file mode 100644 index 0000000..8940774 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/button/s-arrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/datepicker/datepicker-footer-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/datepicker/datepicker-footer-bg.gif new file mode 100644 index 0000000..e4993a2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/datepicker/datepicker-footer-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/datepicker/datepicker-footer-bg.png b/extjs-django/marvel/static/extjs/resources/themes/images/gray/datepicker/datepicker-footer-bg.png new file mode 100644 index 0000000..c062d0d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/datepicker/datepicker-footer-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/datepicker/datepicker-header-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/datepicker/datepicker-header-bg.gif new file mode 100644 index 0000000..2427815 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/datepicker/datepicker-header-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/datepicker/datepicker-header-bg.png b/extjs-django/marvel/static/extjs/resources/themes/images/gray/datepicker/datepicker-header-bg.png new file mode 100644 index 0000000..45d74d7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/datepicker/datepicker-header-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/dd/drop-add.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/dd/drop-add.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/dd/drop-add.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/dd/drop-no.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/dd/drop-no.gif new file mode 100644 index 0000000..08d0833 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/dd/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/dd/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/dd/drop-yes.gif new file mode 100644 index 0000000..8aacb30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/dd/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/editor/tb-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/editor/tb-sprite.gif new file mode 100644 index 0000000..fb70577 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/editor/tb-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/checkbox.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/checkbox.gif new file mode 100644 index 0000000..835b346 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/checkbox.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/clear-trigger.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/clear-trigger.gif new file mode 100644 index 0000000..be3ff58 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/clear-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/date-trigger.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/date-trigger.gif new file mode 100644 index 0000000..e0537cb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/date-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/error-tip-corners.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/error-tip-corners.gif new file mode 100644 index 0000000..6ea4c38 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/error-tip-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/exclamation.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/exclamation.gif new file mode 100644 index 0000000..ea31a30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/exclamation.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/radio.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/radio.gif new file mode 100644 index 0000000..36bb91d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/radio.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/search-trigger.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/search-trigger.gif new file mode 100644 index 0000000..0cc4f59 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/search-trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/spinner-small.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/spinner-small.gif new file mode 100644 index 0000000..e70f8d8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/spinner-small.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/spinner.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/spinner.gif new file mode 100644 index 0000000..1e323bf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/spinner.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/text-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/text-bg.gif new file mode 100644 index 0000000..4179607 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/text-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/trigger-square.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/trigger-square.gif new file mode 100644 index 0000000..7a0f585 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/trigger-square.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/trigger-tpl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/trigger-tpl.gif new file mode 100644 index 0000000..e3701a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/trigger-tpl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/trigger.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/trigger.gif new file mode 100644 index 0000000..b563474 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/form/trigger.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/arrow-left-white.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/arrow-left-white.gif new file mode 100644 index 0000000..63088f5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/arrow-left-white.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/arrow-right-white.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/arrow-right-white.gif new file mode 100644 index 0000000..e9e0678 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/arrow-right-white.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/cell-special-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/cell-special-bg.gif new file mode 100644 index 0000000..d76ffbc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/cell-special-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/cell-special-bg.png b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/cell-special-bg.png new file mode 100644 index 0000000..0bcc236 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/cell-special-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/cell-special-selected-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/cell-special-selected-bg.gif new file mode 100644 index 0000000..f1da867 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/cell-special-selected-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/cell-special-selected-bg.png b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/cell-special-selected-bg.png new file mode 100644 index 0000000..500c3bd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/cell-special-selected-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/checked.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/checked.gif new file mode 100644 index 0000000..fad5893 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/checked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/col-move-bottom.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/col-move-bottom.gif new file mode 100644 index 0000000..c525f7e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/col-move-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/col-move-top.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/col-move-top.gif new file mode 100644 index 0000000..ccc92b6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/col-move-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/column-header-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/column-header-bg.gif new file mode 100644 index 0000000..5895dba Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/column-header-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/column-header-bg.png b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/column-header-bg.png new file mode 100644 index 0000000..b181a47 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/column-header-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/column-header-over-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/column-header-over-bg.gif new file mode 100644 index 0000000..9a60738 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/column-header-over-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/column-header-over-bg.png b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/column-header-over-bg.png new file mode 100644 index 0000000..3f20649 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/column-header-over-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/columns.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/columns.gif new file mode 100644 index 0000000..2d3a823 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/columns.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/dd-insert-arrow-left.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/dd-insert-arrow-left.gif new file mode 100644 index 0000000..5d923b2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/dd-insert-arrow-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/dd-insert-arrow-left.png b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/dd-insert-arrow-left.png new file mode 100644 index 0000000..5dc6967 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/dd-insert-arrow-left.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/dd-insert-arrow-right.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/dd-insert-arrow-right.gif new file mode 100644 index 0000000..8d154db Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/dd-insert-arrow-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/dd-insert-arrow-right.png b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/dd-insert-arrow-right.png new file mode 100644 index 0000000..b1a1819 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/dd-insert-arrow-right.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/dirty.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/dirty.gif new file mode 100644 index 0000000..4f217a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/dirty.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/done.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/done.gif new file mode 100644 index 0000000..a937cb2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/done.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/drop-no.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/drop-no.gif new file mode 100644 index 0000000..31a332b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/drop-yes.gif new file mode 100644 index 0000000..926010e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/footer-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/footer-bg.gif new file mode 100644 index 0000000..126120f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/footer-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid-blue-hd.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid-blue-hd.gif new file mode 100644 index 0000000..862094e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid-blue-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid-blue-split.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid-blue-split.gif new file mode 100644 index 0000000..5286f58 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid-blue-split.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid-hrow.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid-hrow.gif new file mode 100644 index 0000000..6374104 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid-hrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid-loading.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid-loading.gif new file mode 100644 index 0000000..d112c54 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid-split.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid-split.gif new file mode 100644 index 0000000..c76a16e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid-split.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid-vista-hd.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid-vista-hd.gif new file mode 100644 index 0000000..d097263 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid-vista-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid3-hd-btn.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid3-hd-btn.gif new file mode 100644 index 0000000..daf1ef2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid3-hd-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid3-hrow-over.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid3-hrow-over.gif new file mode 100644 index 0000000..f9c07af Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid3-hrow-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid3-hrow.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid3-hrow.gif new file mode 100644 index 0000000..8d459a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid3-hrow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid3-rowheader.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid3-rowheader.gif new file mode 100644 index 0000000..2799b45 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/grid3-rowheader.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/group-by.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/group-by.gif new file mode 100644 index 0000000..d6075bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/group-by.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/group-collapse.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/group-collapse.gif new file mode 100644 index 0000000..c9ad30d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/group-collapse.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/group-expand-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/group-expand-sprite.gif new file mode 100644 index 0000000..d24891d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/group-expand-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/group-expand.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/group-expand.gif new file mode 100644 index 0000000..663b5c8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/group-expand.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hd-pop.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hd-pop.gif new file mode 100644 index 0000000..eb8ba79 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hd-pop.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hmenu-asc.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hmenu-asc.gif new file mode 100644 index 0000000..8917e0e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hmenu-asc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hmenu-desc.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hmenu-desc.gif new file mode 100644 index 0000000..f26b7c2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hmenu-desc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hmenu-lock.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hmenu-lock.gif new file mode 100644 index 0000000..1596126 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hmenu-lock.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hmenu-lock.png b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hmenu-lock.png new file mode 100644 index 0000000..8b81e7f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hmenu-lock.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hmenu-unlock.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hmenu-unlock.gif new file mode 100644 index 0000000..af59cf9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hmenu-unlock.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hmenu-unlock.png b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hmenu-unlock.png new file mode 100644 index 0000000..9dd5df3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/hmenu-unlock.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/invalid_line.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/invalid_line.gif new file mode 100644 index 0000000..fb7e0f3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/invalid_line.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/loading.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/loading.gif new file mode 100644 index 0000000..e846e1d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/mso-hd.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/mso-hd.gif new file mode 100644 index 0000000..669f3cf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/mso-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/nowait.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/nowait.gif new file mode 100644 index 0000000..4c5862c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/nowait.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-first-disabled.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-first-disabled.gif new file mode 100644 index 0000000..1e02c41 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-first-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-first.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-first.gif new file mode 100644 index 0000000..60be4bc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-first.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-last-disabled.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-last-disabled.gif new file mode 100644 index 0000000..8697067 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-last-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-last.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-last.gif new file mode 100644 index 0000000..beb4a83 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-last.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-next-disabled.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-next-disabled.gif new file mode 100644 index 0000000..90a7756 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-next-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-next.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-next.gif new file mode 100644 index 0000000..97db1c2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-next.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-prev-disabled.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-prev-disabled.gif new file mode 100644 index 0000000..37154d6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-prev-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-prev.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-prev.gif new file mode 100644 index 0000000..d07e61c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/page-prev.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/pick-button.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/pick-button.gif new file mode 100644 index 0000000..6957924 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/pick-button.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/property-cell-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/property-cell-bg.gif new file mode 100644 index 0000000..7890cf9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/property-cell-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/property-cell-selected-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/property-cell-selected-bg.gif new file mode 100644 index 0000000..1dfe9a6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/property-cell-selected-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/refresh-disabled.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/refresh-disabled.gif new file mode 100644 index 0000000..607800b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/refresh-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/refresh.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/refresh.gif new file mode 100644 index 0000000..868b2dc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/refresh.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/row-check-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/row-check-sprite.gif new file mode 100644 index 0000000..6101164 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/row-check-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/row-expand-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/row-expand-sprite.gif new file mode 100644 index 0000000..09c00a6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/row-expand-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/row-over.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/row-over.gif new file mode 100644 index 0000000..b288e38 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/row-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/row-sel.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/row-sel.gif new file mode 100644 index 0000000..98209e6 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/row-sel.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/sort-hd.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/sort-hd.gif new file mode 100644 index 0000000..4cf483d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/sort-hd.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/sort_asc.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/sort_asc.gif new file mode 100644 index 0000000..7e562e2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/sort_asc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/sort_desc.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/sort_desc.gif new file mode 100644 index 0000000..9b7a871 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/sort_desc.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/unchecked.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/unchecked.gif new file mode 100644 index 0000000..43823e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/unchecked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/wait.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/wait.gif new file mode 100644 index 0000000..471c1a4 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/grid/wait.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/layout/mini-bottom.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/layout/mini-bottom.gif new file mode 100644 index 0000000..c18f9e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/layout/mini-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/layout/mini-left.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/layout/mini-left.gif new file mode 100644 index 0000000..99f7993 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/layout/mini-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/layout/mini-right.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/layout/mini-right.gif new file mode 100644 index 0000000..5b13c5a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/layout/mini-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/layout/mini-top.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/layout/mini-top.gif new file mode 100644 index 0000000..a4ca2bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/layout/mini-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/checked.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/checked.gif new file mode 100644 index 0000000..fad5893 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/checked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/group-checked.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/group-checked.gif new file mode 100644 index 0000000..c882488 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/group-checked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/item-over-disabled.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/item-over-disabled.gif new file mode 100644 index 0000000..97d5ffa Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/item-over-disabled.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/item-over.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/item-over.gif new file mode 100644 index 0000000..e0dc5f7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/item-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/menu-item-active-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/menu-item-active-bg.gif new file mode 100644 index 0000000..2edcaf8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/menu-item-active-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/menu-item-active-corners.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/menu-item-active-corners.gif new file mode 100644 index 0000000..45041a8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/menu-item-active-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/menu-item-active-sides.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/menu-item-active-sides.gif new file mode 100644 index 0000000..2f14a8c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/menu-item-active-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/menu-parent.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/menu-parent.gif new file mode 100644 index 0000000..5461a8b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/menu-parent.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/menu.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/menu.gif new file mode 100644 index 0000000..30a2c4b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/menu.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/unchecked.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/unchecked.gif new file mode 100644 index 0000000..43823e5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/menu/unchecked.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/progress/progress-default-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/progress/progress-default-bg.gif new file mode 100644 index 0000000..b29379d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/progress/progress-default-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/blue-loading.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/blue-loading.gif new file mode 100644 index 0000000..3bbf639 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/blue-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/calendar.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/calendar.gif new file mode 100644 index 0000000..133cf23 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/calendar.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/glass-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/glass-bg.gif new file mode 100644 index 0000000..26fbbae Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/glass-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/hd-sprite.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/hd-sprite.gif new file mode 100644 index 0000000..42da1ea Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/hd-sprite.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/icon-error.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/icon-error.gif new file mode 100644 index 0000000..397b655 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/icon-error.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/icon-info.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/icon-info.gif new file mode 100644 index 0000000..58281c3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/icon-info.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/icon-question.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/icon-question.gif new file mode 100644 index 0000000..08abd82 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/icon-question.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/icon-warning.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/icon-warning.gif new file mode 100644 index 0000000..27ff98b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/icon-warning.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/large-loading.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/large-loading.gif new file mode 100644 index 0000000..b36b555 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/large-loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/left-btn.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/left-btn.gif new file mode 100644 index 0000000..3301054 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/left-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/loading-balls.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/loading-balls.gif new file mode 100644 index 0000000..9ce214b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/loading-balls.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/right-btn.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/right-btn.gif new file mode 100644 index 0000000..c529110 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/right-btn.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/shadow-c.png b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/shadow-c.png new file mode 100644 index 0000000..d435f80 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/shadow-c.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/shadow-lr.png b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/shadow-lr.png new file mode 100644 index 0000000..bb88b6f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/shadow-lr.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/shadow.png b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/shadow.png new file mode 100644 index 0000000..75c0eba Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/shadow.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/warning.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/warning.gif new file mode 100644 index 0000000..806d4bc Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/shared/warning.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/e-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/e-handle-dark.gif new file mode 100644 index 0000000..b5486c1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/e-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/e-handle.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/e-handle.gif new file mode 100644 index 0000000..a8ed0ed Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/e-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/ne-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/ne-handle-dark.gif new file mode 100644 index 0000000..04e5ecf Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/ne-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/ne-handle.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/ne-handle.gif new file mode 100644 index 0000000..6f7b0c2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/ne-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/nw-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/nw-handle-dark.gif new file mode 100644 index 0000000..6e49d69 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/nw-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/nw-handle.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/nw-handle.gif new file mode 100644 index 0000000..92ad82c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/nw-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/s-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/s-handle-dark.gif new file mode 100644 index 0000000..4eb5f0f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/s-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/s-handle.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/s-handle.gif new file mode 100644 index 0000000..d7eeae2 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/s-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/se-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/se-handle-dark.gif new file mode 100644 index 0000000..c4c1087 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/se-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/se-handle.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/se-handle.gif new file mode 100644 index 0000000..f011a3b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/se-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/square.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/square.gif new file mode 100644 index 0000000..7751d5e Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/square.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/sw-handle-dark.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/sw-handle-dark.gif new file mode 100644 index 0000000..77224b0 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/sw-handle-dark.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/sw-handle.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/sw-handle.gif new file mode 100644 index 0000000..aa903dd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/sizer/sw-handle.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-bg.gif new file mode 100644 index 0000000..fbf3ba8 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-bg.png b/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-bg.png new file mode 100644 index 0000000..b3eaf52 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-thumb.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-thumb.gif new file mode 100644 index 0000000..5ba1dfb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-thumb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-thumb.png b/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-thumb.png new file mode 100644 index 0000000..4bf01be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-thumb.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-v-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-v-bg.gif new file mode 100644 index 0000000..0cf8c4b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-v-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-v-bg.png b/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-v-bg.png new file mode 100644 index 0000000..121450c Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-v-bg.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-v-thumb.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-v-thumb.gif new file mode 100644 index 0000000..58afe96 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-v-thumb.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-v-thumb.png b/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-v-thumb.png new file mode 100644 index 0000000..6b3eeb7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/slider/slider-v-thumb.png differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tab-bar/scroll-left.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tab-bar/scroll-left.gif new file mode 100644 index 0000000..bbb3e3d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tab-bar/scroll-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tab-bar/scroll-right.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tab-bar/scroll-right.gif new file mode 100644 index 0000000..feb6a76 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tab-bar/scroll-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tab-bar/tab-bar-default-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tab-bar/tab-bar-default-bg.gif new file mode 100644 index 0000000..d6b8688 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tab-bar/tab-bar-default-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tab/tab-default-close.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tab/tab-default-close.gif new file mode 100644 index 0000000..98d5da9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tab/tab-default-close.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tip/tip-corners.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tip/tip-corners.gif new file mode 100644 index 0000000..b9000bd Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tip/tip-corners.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tip/tip-sides.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tip/tip-sides.gif new file mode 100644 index 0000000..48ad83d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tip/tip-sides.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/toolbar/more.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/toolbar/more.gif new file mode 100644 index 0000000..02c2509 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/toolbar/more.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/toolbar/scroll-left.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/toolbar/scroll-left.gif new file mode 100644 index 0000000..2db8cf5 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/toolbar/scroll-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/toolbar/scroll-right.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/toolbar/scroll-right.gif new file mode 100644 index 0000000..5d5a7ab Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/toolbar/scroll-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/toolbar/toolbar-default-bg.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/toolbar/toolbar-default-bg.gif new file mode 100644 index 0000000..cd96024 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/toolbar/toolbar-default-bg.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tools/tool-sprite-tpl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tools/tool-sprite-tpl.gif new file mode 100644 index 0000000..18277a3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tools/tool-sprite-tpl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tools/tool-sprites.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tools/tool-sprites.gif new file mode 100644 index 0000000..36b6b67 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tools/tool-sprites.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tools/tools-sprites-trans.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tools/tools-sprites-trans.gif new file mode 100644 index 0000000..b6d7ba3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tools/tools-sprites-trans.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/arrows.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/arrows.gif new file mode 100644 index 0000000..1dcb810 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/arrows.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-above.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-above.gif new file mode 100644 index 0000000..30d1ca7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-above.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-add.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-add.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-add.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-append.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-append.gif new file mode 100644 index 0000000..b22cd14 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-append.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-below.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-below.gif new file mode 100644 index 0000000..85f66b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-below.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-between.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-between.gif new file mode 100644 index 0000000..5c6c09d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-between.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-no.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-no.gif new file mode 100644 index 0000000..9d9c6a9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-no.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-over.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-over.gif new file mode 100644 index 0000000..30d1ca7 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-over.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-under.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-under.gif new file mode 100644 index 0000000..85f66b1 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-under.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-yes.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-yes.gif new file mode 100644 index 0000000..8aacb30 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/drop-yes.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-end-minus-nl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-end-minus-nl.gif new file mode 100644 index 0000000..f50bd40 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-end-minus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-end-minus.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-end-minus.gif new file mode 100644 index 0000000..55d8a0f Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-end-minus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-end-plus-nl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-end-plus-nl.gif new file mode 100644 index 0000000..96f8d72 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-end-plus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-end-plus.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-end-plus.gif new file mode 100644 index 0000000..a5c62fa Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-end-plus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-end.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-end.gif new file mode 100644 index 0000000..406a88d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-end.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-line.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-line.gif new file mode 100644 index 0000000..e25ed03 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-line.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-minus-nl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-minus-nl.gif new file mode 100644 index 0000000..f50bd40 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-minus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-minus.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-minus.gif new file mode 100644 index 0000000..a728796 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-minus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-plus-nl.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-plus-nl.gif new file mode 100644 index 0000000..96f8d72 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-plus-nl.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-plus.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-plus.gif new file mode 100644 index 0000000..ae41983 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow-plus.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow.gif new file mode 100644 index 0000000..201c413 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/elbow.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/folder-open.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/folder-open.gif new file mode 100644 index 0000000..361e1be Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/folder-open.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/folder.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/folder.gif new file mode 100644 index 0000000..b2fd81a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/folder.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/leaf.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/leaf.gif new file mode 100644 index 0000000..445769d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/leaf.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/loading.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/loading.gif new file mode 100644 index 0000000..e846e1d Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/loading.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/s.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/s.gif new file mode 100644 index 0000000..1d11fa9 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/tree/s.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/util/splitter/mini-bottom.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/util/splitter/mini-bottom.gif new file mode 100644 index 0000000..c18f9e3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/util/splitter/mini-bottom.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/util/splitter/mini-left.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/util/splitter/mini-left.gif new file mode 100644 index 0000000..99f7993 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/util/splitter/mini-left.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/util/splitter/mini-right.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/util/splitter/mini-right.gif new file mode 100644 index 0000000..5b13c5a Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/util/splitter/mini-right.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/util/splitter/mini-top.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/util/splitter/mini-top.gif new file mode 100644 index 0000000..a4ca2bb Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/util/splitter/mini-top.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/window/icon-error.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/window/icon-error.gif new file mode 100644 index 0000000..397b655 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/window/icon-error.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/window/icon-info.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/window/icon-info.gif new file mode 100644 index 0000000..58281c3 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/window/icon-info.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/window/icon-question.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/window/icon-question.gif new file mode 100644 index 0000000..08abd82 Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/window/icon-question.gif differ diff --git a/extjs-django/marvel/static/extjs/resources/themes/images/gray/window/icon-warning.gif b/extjs-django/marvel/static/extjs/resources/themes/images/gray/window/icon-warning.gif new file mode 100644 index 0000000..27ff98b Binary files /dev/null and b/extjs-django/marvel/static/extjs/resources/themes/images/gray/window/icon-warning.gif differ diff --git a/extjs-django/marvel/static/extjs/src/AbstractComponent.js b/extjs-django/marvel/static/extjs/src/AbstractComponent.js new file mode 100644 index 0000000..b63fc4a --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/AbstractComponent.js @@ -0,0 +1,4071 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ + +/** + * An abstract base class which provides shared methods for Components across the Sencha product line. + * + * Please refer to sub class's documentation. + * @private + */ +Ext.define('Ext.AbstractComponent', { + + /* Begin Definitions */ + requires: [ + 'Ext.ComponentQuery', + 'Ext.ComponentManager', + 'Ext.util.ProtoElement', + 'Ext.dom.CompositeElement', + 'Ext.PluginManager' + ], + + mixins: { + positionable: 'Ext.util.Positionable', + observable: 'Ext.util.Observable', + animate: 'Ext.util.Animate', + elementCt: 'Ext.util.ElementContainer', + renderable: 'Ext.util.Renderable', + state: 'Ext.state.Stateful' + }, + + // The "uses" property specifies class which are used in an instantiated AbstractComponent. + // They do *not* have to be loaded before this class may be defined - that is what "requires" is for. + uses: [ + 'Ext.PluginManager', + 'Ext.Element', + 'Ext.DomHelper', + 'Ext.XTemplate', + 'Ext.ComponentLoader', + 'Ext.EventManager', + 'Ext.layout.Context', + 'Ext.layout.Layout', + 'Ext.layout.component.Auto', + 'Ext.LoadMask', + 'Ext.ZIndexManager' + ], + + statics: { + AUTO_ID: 1000, + + pendingLayouts: null, + + layoutSuspendCount: 0, + + /** + * Cancels layout of a component. + * @param {Ext.Component} comp + */ + cancelLayout: function(comp, isDestroying) { + var context = this.runningLayoutContext || this.pendingLayouts; + + if (context) { + context.cancelComponent(comp, false, isDestroying); + } + }, + + /** + * Performs all pending layouts that were scheduled while + * {@link Ext.AbstractComponent#suspendLayouts suspendLayouts} was in effect. + * @static + */ + flushLayouts: function () { + var me = this, + context = me.pendingLayouts; + + if (context && context.invalidQueue.length) { + me.pendingLayouts = null; + me.runningLayoutContext = context; + + Ext.override(context, { + runComplete: function () { + // we need to release the layout queue before running any of the + // finishedLayout calls because they call afterComponentLayout + // which can re-enter by calling doLayout/doComponentLayout. + me.runningLayoutContext = null; + + var result = this.callParent(); // not "me" here! + if (Ext.globalEvents.hasListeners.afterlayout) { + Ext.globalEvents.fireEvent('afterlayout'); + } + return result; + } + }); + + context.run(); + } + }, + + /** + * Resumes layout activity in the whole framework. + * + * {@link Ext#suspendLayouts} is alias of {@link Ext.AbstractComponent#suspendLayouts}. + * + * @param {Boolean} [flush=false] `true` to perform all the pending layouts. This can also be + * achieved by calling {@link Ext.AbstractComponent#flushLayouts flushLayouts} directly. + * @static + */ + resumeLayouts: function (flush) { + if (this.layoutSuspendCount && ! --this.layoutSuspendCount) { + if (flush) { + this.flushLayouts(); + } + if (Ext.globalEvents.hasListeners.resumelayouts) { + Ext.globalEvents.fireEvent('resumelayouts'); + } + } + }, + + /** + * Stops layouts from happening in the whole framework. + * + * It's useful to suspend the layout activity while updating multiple components and + * containers: + * + * Ext.suspendLayouts(); + * // batch of updates... + * Ext.resumeLayouts(true); + * + * {@link Ext#suspendLayouts} is alias of {@link Ext.AbstractComponent#suspendLayouts}. + * + * See also {@link Ext#batchLayouts} for more abstract way of doing this. + * + * @static + */ + suspendLayouts: function () { + ++this.layoutSuspendCount; + }, + + /** + * Updates layout of a component. + * + * @param {Ext.Component} comp The component to update. + * @param {Boolean} [defer=false] `true` to just queue the layout if this component. + * @static + */ + updateLayout: function (comp, defer) { + var me = this, + running = me.runningLayoutContext, + pending; + + if (running) { + running.queueInvalidate(comp); + } else { + pending = me.pendingLayouts || (me.pendingLayouts = new Ext.layout.Context()); + pending.queueInvalidate(comp); + + if (!defer && !me.layoutSuspendCount && !comp.isLayoutSuspended()) { + me.flushLayouts(); + } + } + } + }, + + /* End Definitions */ + + /** + * @property {Boolean} isComponent + * `true` in this class to identify an object as an instantiated Component, or subclass thereof. + */ + isComponent: true, + + /** + * @private + */ + getAutoId: function() { + this.autoGenId = true; + return ++Ext.AbstractComponent.AUTO_ID; + }, + + deferLayouts: false, + + /** + * @cfg {String} id + * The **unique id of this component instance.** + * + * It should not be necessary to use this configuration except for singleton objects in your application. Components + * created with an `id` may be accessed globally using {@link Ext#getCmp Ext.getCmp}. + * + * Instead of using assigned ids, use the {@link #itemId} config, and {@link Ext.ComponentQuery ComponentQuery} + * which provides selector-based searching for Sencha Components analogous to DOM querying. The {@link + * Ext.container.Container Container} class contains {@link Ext.container.Container#down shortcut methods} to query + * its descendant Components by selector. + * + * Note that this `id` will also be used as the element id for the containing HTML element that is rendered to the + * page for this component. This allows you to write id-based CSS rules to style the specific instance of this + * component uniquely, and also to select sub-elements using this component's `id` as the parent. + * + * **Note:** To avoid complications imposed by a unique `id` also see `{@link #itemId}`. + * + * **Note:** To access the container of a Component see `{@link #ownerCt}`. + * + * Defaults to an {@link #getId auto-assigned id}. + * + * @since 1.1.0 + */ + + /** + * @property {Boolean} autoGenId + * `true` indicates an `id` was auto-generated rather than provided by configuration. + * @private + */ + autoGenId: false, + + /** + * @cfg {String} itemId + * An `itemId` can be used as an alternative way to get a reference to a component when no object reference is + * available. Instead of using an `{@link #id}` with {@link Ext}.{@link Ext#getCmp getCmp}, use `itemId` with + * {@link Ext.container.Container}.{@link Ext.container.Container#getComponent getComponent} which will retrieve + * `itemId`'s or {@link #id}'s. Since `itemId`'s are an index to the container's internal MixedCollection, the + * `itemId` is scoped locally to the container -- avoiding potential conflicts with {@link Ext.ComponentManager} + * which requires a **unique** `{@link #id}`. + * + * var c = new Ext.panel.Panel({ // + * {@link Ext.Component#height height}: 300, + * {@link #renderTo}: document.body, + * {@link Ext.container.Container#layout layout}: 'auto', + * {@link Ext.container.Container#cfg-items items}: [ + * { + * itemId: 'p1', + * {@link Ext.panel.Panel#title title}: 'Panel 1', + * {@link Ext.Component#height height}: 150 + * }, + * { + * itemId: 'p2', + * {@link Ext.panel.Panel#title title}: 'Panel 2', + * {@link Ext.Component#height height}: 150 + * } + * ] + * }) + * p1 = c.{@link Ext.container.Container#getComponent getComponent}('p1'); // not the same as {@link Ext#getCmp Ext.getCmp()} + * p2 = p1.{@link #ownerCt}.{@link Ext.container.Container#getComponent getComponent}('p2'); // reference via a sibling + * + * Also see {@link #id}, `{@link Ext.container.Container#query}`, `{@link Ext.container.Container#down}` and + * `{@link Ext.container.Container#child}`. + * + * **Note**: to access the container of an item see {@link #ownerCt}. + * + * @since 3.4.0 + */ + + /** + * @property {Ext.Container} ownerCt + * This Component's owner {@link Ext.container.Container Container} (is set automatically + * when this Component is added to a Container). + * + * *Important.* This is not a universal upwards navigation pointer. It indicates the Container which owns and manages + * this Component if any. There are other similar relationships such as the {@link Ext.button.Button button} which activates a {@link Ext.button.Button#cfg-menu menu}, or the + * {@link Ext.menu.Item menu item} which activated a {@link Ext.menu.Item#cfg-menu submenu}, or the + * {@link Ext.grid.column.Column column header} which activated the column menu. + * + * These differences are abstracted away by the {@link #up} method. + * + * **Note**: to access items within the Container see {@link #itemId}. + * @readonly + * @since 2.3.0 + */ + + /** + * @cfg {String/Object} autoEl + * A tag name or {@link Ext.DomHelper DomHelper} spec used to create the {@link #getEl Element} which will + * encapsulate this Component. + * + * You do not normally need to specify this. For the base classes {@link Ext.Component} and + * {@link Ext.container.Container}, this defaults to **'div'**. The more complex Sencha classes use a more + * complex DOM structure specified by their own {@link #renderTpl}s. + * + * This is intended to allow the developer to create application-specific utility Components encapsulated by + * different DOM elements. Example usage: + * + * { + * xtype: 'component', + * autoEl: { + * tag: 'img', + * src: 'http://www.example.com/example.jpg' + * } + * }, { + * xtype: 'component', + * autoEl: { + * tag: 'blockquote', + * html: 'autoEl is cool!' + * } + * }, { + * xtype: 'container', + * autoEl: 'ul', + * cls: 'ux-unordered-list', + * items: { + * xtype: 'component', + * autoEl: 'li', + * html: 'First list item' + * } + * } + * + * @since 2.3.0 + */ + + /** + * @cfg {Ext.XTemplate/String/String[]} renderTpl + * An {@link Ext.XTemplate XTemplate} used to create the internal structure inside this Component's encapsulating + * {@link #getEl Element}. + * + * You do not normally need to specify this. For the base classes {@link Ext.Component} and + * {@link Ext.container.Container}, this defaults to **`null`** which means that they will be initially rendered + * with no internal structure; they render their {@link #getEl Element} empty. The more specialized Ext JS and Sencha Touch + * classes which use a more complex DOM structure, provide their own template definitions. + * + * This is intended to allow the developer to create application-specific utility Components with customized + * internal structure. + * + * Upon rendering, any created child elements may be automatically imported into object properties using the + * {@link #renderSelectors} and {@link #cfg-childEls} options. + * @protected + */ + renderTpl: '{%this.renderContent(out,values)%}', + + /** + * @cfg {Object} renderData + * + * The data used by {@link #renderTpl} in addition to the following property values of the component: + * + * - id + * - ui + * - uiCls + * - baseCls + * - componentCls + * - frame + * + * See {@link #renderSelectors} and {@link #cfg-childEls} for usage examples. + */ + + /** + * @cfg {Object} renderSelectors + * An object containing properties specifying {@link Ext.DomQuery DomQuery} selectors which identify child elements + * created by the render process. + * + * After the Component's internal structure is rendered according to the {@link #renderTpl}, this object is iterated through, + * and the found Elements are added as properties to the Component using the `renderSelector` property name. + * + * For example, a Component which renders a title and description into its element: + * + * Ext.create('Ext.Component', { + * renderTo: Ext.getBody(), + * renderTpl: [ + * '

    {title}

    ', + * '

    {desc}

    ' + * ], + * renderData: { + * title: "Error", + * desc: "Something went wrong" + * }, + * renderSelectors: { + * titleEl: 'h1.title', + * descEl: 'p' + * }, + * listeners: { + * afterrender: function(cmp){ + * // After rendering the component will have a titleEl and descEl properties + * cmp.titleEl.setStyle({color: "red"}); + * } + * } + * }); + * + * For a faster, but less flexible, alternative that achieves the same end result (properties for child elements on the + * Component after render), see {@link #cfg-childEls} and {@link #addChildEls}. + */ + + /** + * @cfg {Object[]} childEls + * An array describing the child elements of the Component. Each member of the array + * is an object with these properties: + * + * - `name` - The property name on the Component for the child element. + * - `itemId` - The id to combine with the Component's id that is the id of the child element. + * - `id` - The id of the child element. + * + * If the array member is a string, it is equivalent to `{ name: m, itemId: m }`. + * + * For example, a Component which renders a title and body text: + * + * @example + * Ext.create('Ext.Component', { + * renderTo: Ext.getBody(), + * renderTpl: [ + * '

    {title}

    ', + * '

    {msg}

    ', + * ], + * renderData: { + * title: "Error", + * msg: "Something went wrong" + * }, + * childEls: ["title"], + * listeners: { + * afterrender: function(cmp){ + * // After rendering the component will have a title property + * cmp.title.setStyle({color: "red"}); + * } + * } + * }); + * + * A more flexible, but somewhat slower, approach is {@link #renderSelectors}. + */ + + /** + * @cfg {String/HTMLElement/Ext.Element} renderTo + * Specify the `id` of the element, a DOM element or an existing Element that this component will be rendered into. + * + * **Notes:** + * + * Do *not* use this option if the Component is to be a child item of a {@link Ext.container.Container Container}. + * It is the responsibility of the {@link Ext.container.Container Container}'s + * {@link Ext.container.Container#layout layout manager} to render and manage its child items. + * + * When using this config, a call to `render()` is not required. + * + * See also: {@link #method-render}. + * + * @since 2.3.0 + */ + + /** + * @cfg {Boolean} frame + * Specify as `true` to have the Component inject framing elements within the Component at render time to provide a + * graphical rounded frame around the Component content. + * + * This is only necessary when running on outdated, or non standard-compliant browsers such as Microsoft's Internet + * Explorer prior to version 9 which do not support rounded corners natively. + * + * The extra space taken up by this framing is available from the read only property {@link #frameSize}. + */ + + /** + * @property {Object} frameSize + * @readonly + * Indicates the width of any framing elements which were added within the encapsulating + * element to provide graphical, rounded borders. See the {@link #frame} config. This + * property is `null` if the component is not framed. + * + * This is an object containing the frame width in pixels for all four sides of the + * Component containing the following properties: + * + * @property {Number} [frameSize.top=0] The width of the top framing element in pixels. + * @property {Number} [frameSize.right=0] The width of the right framing element in pixels. + * @property {Number} [frameSize.bottom=0] The width of the bottom framing element in pixels. + * @property {Number} [frameSize.left=0] The width of the left framing element in pixels. + * @property {Number} [frameSize.width=0] The total width of the left and right framing elements in pixels. + * @property {Number} [frameSize.height=0] The total height of the top and right bottom elements in pixels. + */ + frameSize: null, + + /** + * @cfg {String/Object} componentLayout + * The sizing and positioning of a Component's internal Elements is the responsibility of the Component's layout + * manager which sizes a Component's internal structure in response to the Component being sized. + * + * Generally, developers will not use this configuration as all provided Components which need their internal + * elements sizing (Such as {@link Ext.form.field.Base input fields}) come with their own componentLayout managers. + * + * The {@link Ext.layout.container.Auto default layout manager} will be used on instances of the base Ext.Component + * class which simply sizes the Component's encapsulating element to the height and width specified in the + * {@link #setSize} method. + */ + + /** + * @cfg {Ext.XTemplate/Ext.Template/String/String[]} tpl + * An {@link Ext.Template}, {@link Ext.XTemplate} or an array of strings to form an Ext.XTemplate. Used in + * conjunction with the `{@link #data}` and `{@link #tplWriteMode}` configurations. + * + * @since 3.4.0 + */ + + /** + * @cfg {Object} data + * The initial set of data to apply to the `{@link #tpl}` to update the content area of the Component. + * + * @since 3.4.0 + */ + + /** + * @cfg {Ext.enums.Widget} xtype + * This property provides a shorter alternative to creating objects than using a full + * class name. Using `xtype` is the most common way to define component instances, + * especially in a container. For example, the items in a form containing text fields + * could be created explicitly like so: + * + * items: [ + * Ext.create('Ext.form.field.Text', { + * fieldLabel: 'Foo' + * }), + * Ext.create('Ext.form.field.Text', { + * fieldLabel: 'Bar' + * }), + * Ext.create('Ext.form.field.Number', { + * fieldLabel: 'Num' + * }) + * ] + * + * But by using `xtype`, the above becomes: + * + * items: [ + * { + * xtype: 'textfield', + * fieldLabel: 'Foo' + * }, + * { + * xtype: 'textfield', + * fieldLabel: 'Bar' + * }, + * { + * xtype: 'numberfield', + * fieldLabel: 'Num' + * } + * ] + * + * When the `xtype` is common to many items, {@link Ext.container.AbstractContainer#defaultType} + * is another way to specify the `xtype` for all items that don't have an explicit `xtype`: + * + * defaultType: 'textfield', + * items: [ + * { fieldLabel: 'Foo' }, + * { fieldLabel: 'Bar' }, + * { fieldLabel: 'Num', xtype: 'numberfield' } + * ] + * + * Each member of the `items` array is now just a "configuration object". These objects + * are used to create and configure component instances. A configuration object can be + * manually used to instantiate a component using {@link Ext#widget}: + * + * var text1 = Ext.create('Ext.form.field.Text', { + * fieldLabel: 'Foo' + * }); + * + * // or alternatively: + * + * var text1 = Ext.widget({ + * xtype: 'textfield', + * fieldLabel: 'Foo' + * }); + * + * This conversion of configuration objects into instantiated components is done when + * a container is created as part of its {Ext.container.AbstractContainer#initComponent} + * process. As part of the same process, the `items` array is converted from its raw + * array form into a {@link Ext.util.MixedCollection} instance. + * + * You can define your own `xtype` on a custom {@link Ext.Component component} by specifying + * the `xtype` property in {@link Ext#define}. For example: + * + * Ext.define('MyApp.PressMeButton', { + * extend: 'Ext.button.Button', + * xtype: 'pressmebutton', + * text: 'Press Me' + * }); + * + * Care should be taken when naming an `xtype` in a custom component because there is + * a single, shared scope for all xtypes. Third part components should consider using + * a prefix to avoid collisions. + * + * Ext.define('Foo.form.CoolButton', { + * extend: 'Ext.button.Button', + * xtype: 'ux-coolbutton', + * text: 'Cool!' + * }); + * + * See {@link Ext.enums.Widget} for list of all available xtypes. + * + * @since 2.3.0 + */ + + /** + * @cfg {String} tplWriteMode + * The Ext.(X)Template method to use when updating the content area of the Component. + * See `{@link Ext.XTemplate#overwrite}` for information on default mode. + * + * @since 3.4.0 + */ + tplWriteMode: 'overwrite', + + /** + * @cfg {String} [baseCls='x-component'] + * The base CSS class to apply to this component's element. This will also be prepended to elements within this + * component like Panel's body will get a class `x-panel-body`. This means that if you create a subclass of Panel, and + * you want it to get all the Panels styling for the element and the body, you leave the `baseCls` `x-panel` and use + * `componentCls` to add specific styling for this component. + */ + baseCls: Ext.baseCSSPrefix + 'component', + + /** + * @cfg {String} componentCls + * CSS Class to be added to a components root level element to give distinction to it via styling. + */ + + /** + * @cfg {String} [cls=''] + * An optional extra CSS class that will be added to this component's Element. This can be useful + * for adding customized styles to the component or any of its children using standard CSS rules. + * + * @since 1.1.0 + */ + + /** + * @cfg {String} [overCls=''] + * An optional extra CSS class that will be added to this component's Element when the mouse moves over the Element, + * and removed when the mouse moves out. This can be useful for adding customized 'active' or 'hover' styles to the + * component or any of its children using standard CSS rules. + * + * @since 2.3.0 + */ + + /** + * @cfg {String} [disabledCls='x-item-disabled'] + * CSS class to add when the Component is disabled. + */ + disabledCls: Ext.baseCSSPrefix + 'item-disabled', + + /** + * @cfg {String} ui + * A UI style for a component. + */ + ui: 'default', + + /** + * @cfg {String[]} uiCls + * An array of of `classNames` which are currently applied to this component. + * @private + */ + uiCls: [], + + /** + * @cfg {String/Object} style + * A custom style specification to be applied to this component's Element. Should be a valid argument to + * {@link Ext.Element#applyStyles}. + * + * new Ext.panel.Panel({ + * title: 'Some Title', + * renderTo: Ext.getBody(), + * width: 400, height: 300, + * layout: 'form', + * items: [{ + * xtype: 'textarea', + * style: { + * width: '95%', + * marginBottom: '10px' + * } + * }, + * new Ext.button.Button({ + * text: 'Send', + * minWidth: '100', + * style: { + * marginBottom: '10px' + * } + * }) + * ] + * }); + * + * @since 1.1.0 + */ + + /** + * @cfg {Number} width + * The width of this component in pixels. + */ + + /** + * @cfg {Number} height + * The height of this component in pixels. + */ + + /** + * @cfg {Number/String/Boolean} border + * Specifies the border size for this component. The border can be a single numeric value to apply to all sides or it can + * be a CSS style specification for each style, for example: '10 5 3 10' (top, right, bottom, left). + * + * For components that have no border by default, setting this won't make the border appear by itself. + * You also need to specify border color and style: + * + * border: 5, + * style: { + * borderColor: 'red', + * borderStyle: 'solid' + * } + * + * To turn off the border, use `border: false`. + */ + + /** + * @cfg {Number/String} padding + * Specifies the padding for this component. The padding can be a single numeric value to apply to all sides or it + * can be a CSS style specification for each style, for example: '10 5 3 10' (top, right, bottom, left). + */ + + /** + * @cfg {Number/String} margin + * Specifies the margin for this component. The margin can be a single numeric value to apply to all sides or it can + * be a CSS style specification for each style, for example: '10 5 3 10' (top, right, bottom, left). + */ + + /** + * @cfg {Boolean} hidden + * `true` to hide the component. + * @since 2.3.0 + */ + hidden: false, + + /** + * @cfg {Boolean} disabled + * `true` to disable the component. + * @since 2.3.0 + */ + disabled: false, + + /** + * @cfg {Boolean} [draggable=false] + * Allows the component to be dragged. + */ + + /** + * @property {Boolean} draggable + * Indicates whether or not the component can be dragged. + * @readonly + */ + draggable: false, + + /** + * @cfg {Boolean} floating + * Create the Component as a floating and use absolute positioning. + * + * The z-index of floating Components is handled by a ZIndexManager. If you simply render a floating Component into the DOM, it will be managed + * by the global {@link Ext.WindowManager WindowManager}. + * + * If you include a floating Component as a child item of a Container, then upon render, Ext JS will seek an ancestor floating Component to house a new + * ZIndexManager instance to manage its descendant floaters. If no floating ancestor can be found, the global WindowManager will be used. + * + * When a floating Component which has a ZindexManager managing descendant floaters is destroyed, those descendant floaters will also be destroyed. + */ + floating: false, + + /** + * @cfg {String} hideMode + * A String which specifies how this Component's encapsulating DOM element will be hidden. Values may be: + * + * - `'display'` : The Component will be hidden using the `display: none` style. + * - `'visibility'` : The Component will be hidden using the `visibility: hidden` style. + * - `'offsets'` : The Component will be hidden by absolutely positioning it out of the visible area of the document. + * This is useful when a hidden Component must maintain measurable dimensions. Hiding using `display` results in a + * Component having zero dimensions. + * + * @since 1.1.0 + */ + hideMode: 'display', + + /** + * @cfg {String} contentEl + * Specify an existing HTML element, or the `id` of an existing HTML element to use as the content for this component. + * + * This config option is used to take an existing HTML element and place it in the layout element of a new component + * (it simply moves the specified DOM element _after the Component is rendered_ to use as the content. + * + * **Notes:** + * + * The specified HTML element is appended to the layout element of the component _after any configured + * {@link #html HTML} has been inserted_, and so the document will not contain this element at the time + * the {@link #event-render} event is fired. + * + * The specified HTML element used will not participate in any **`{@link Ext.container.Container#layout layout}`** + * scheme that the Component may use. It is just HTML. Layouts operate on child + * **`{@link Ext.container.Container#cfg-items items}`**. + * + * Add either the `x-hidden` or the `x-hide-display` CSS class to prevent a brief flicker of the content before it + * is rendered to the panel. + * + * @since 3.4.0 + */ + + /** + * @cfg {String/Object} [html=''] + * An HTML fragment, or a {@link Ext.DomHelper DomHelper} specification to use as the layout element content. + * The HTML content is added after the component is rendered, so the document will not contain this HTML at the time + * the {@link #event-render} event is fired. This content is inserted into the body _before_ any configured {@link #contentEl} + * is appended. + * + * @since 3.4.0 + */ + + /** + * @cfg {Number} minHeight + * The minimum value in pixels which this Component will set its height to. + * + * **Warning:** This will override any size management applied by layout managers. + */ + /** + * @cfg {Number} minWidth + * The minimum value in pixels which this Component will set its width to. + * + * **Warning:** This will override any size management applied by layout managers. + */ + /** + * @cfg {Number} maxHeight + * The maximum value in pixels which this Component will set its height to. + * + * **Warning:** This will override any size management applied by layout managers. + */ + /** + * @cfg {Number} maxWidth + * The maximum value in pixels which this Component will set its width to. + * + * **Warning:** This will override any size management applied by layout managers. + */ + + /** + * @cfg {Ext.ComponentLoader/Object} loader + * A configuration object or an instance of a {@link Ext.ComponentLoader} to load remote content + * for this Component. + * + * Ext.create('Ext.Component', { + * loader: { + * url: 'content.html', + * autoLoad: true + * }, + * renderTo: Ext.getBody() + * }); + */ + + /** + * @cfg {Ext.ComponentLoader/Object/String/Boolean} autoLoad + * An alias for {@link #loader} config which also allows to specify just a string which will be + * used as the url that's automatically loaded: + * + * Ext.create('Ext.Component', { + * autoLoad: 'content.html', + * renderTo: Ext.getBody() + * }); + * + * The above is the same as: + * + * Ext.create('Ext.Component', { + * loader: { + * url: 'content.html', + * autoLoad: true + * }, + * renderTo: Ext.getBody() + * }); + * + * Don't use it together with {@link #loader} config. + * + * @deprecated 4.1.1 Use {@link #loader} config instead. + */ + + /** + * @cfg {Boolean} autoShow + * `true` to automatically show the component upon creation. This config option may only be used for + * {@link #floating} components or components that use {@link #autoRender}. + * + * @since 2.3.0 + */ + autoShow: false, + + /** + * @cfg {Boolean/String/HTMLElement/Ext.Element} autoRender + * This config is intended mainly for non-{@link #cfg-floating} Components which may or may not be shown. Instead of using + * {@link #renderTo} in the configuration, and rendering upon construction, this allows a Component to render itself + * upon first _{@link Ext.Component#method-show show}_. If {@link #cfg-floating} is `true`, the value of this config is omitted as if it is `true`. + * + * Specify as `true` to have this Component render to the document body upon first show. + * + * Specify as an element, or the ID of an element to have this Component render to a specific element upon first + * show. + */ + autoRender: false, + + // @private + allowDomMove: true, + + /** + * @cfg {Ext.AbstractPlugin[]/Ext.AbstractPlugin/Object[]/Object/Ext.enums.Plugin[]/Ext.enums.Plugin} plugins + * An array of plugins to be added to this component. Can also be just a single plugin instead of array. + * + * Plugins provide custom functionality for a component. The only requirement for + * a valid plugin is that it contain an `init` method that accepts a reference of type Ext.Component. When a component + * is created, if any plugins are available, the component will call the init method on each plugin, passing a + * reference to itself. Each plugin can then call methods or respond to events on the component as needed to provide + * its functionality. + * + * Plugins can be added to component by either directly referencing the plugin instance: + * + * plugins: [Ext.create('Ext.grid.plugin.CellEditing', {clicksToEdit: 1})], + * + * By using config object with ptype: + * + * plugins: [{ptype: 'cellediting', clicksToEdit: 1}], + * + * Or with just a ptype: + * + * plugins: ['cellediting', 'gridviewdragdrop'], + * + * See {@link Ext.enums.Plugin} for list of all ptypes. + * + * @since 2.3.0 + */ + + /** + * @property {Boolean} rendered + * Indicates whether or not the component has been rendered. + * @readonly + * @since 1.1.0 + */ + rendered: false, + + /** + * @property {Number} componentLayoutCounter + * @private + * The number of component layout calls made on this object. + */ + componentLayoutCounter: 0, + + /** + * @cfg {Boolean/Number} [shrinkWrap=2] + * + * If this property is a number, it is interpreted as follows: + * + * - 0: Neither width nor height depend on content. This is equivalent to `false`. + * - 1: Width depends on content (shrink wraps), but height does not. + * - 2: Height depends on content (shrink wraps), but width does not. The default. + * - 3: Both width and height depend on content (shrink wrap). This is equivalent to `true`. + * + * In CSS terms, shrink-wrap width is analogous to an inline-block element as opposed + * to a block-level element. Some container layouts always shrink-wrap their children, + * effectively ignoring this property (e.g., {@link Ext.layout.container.HBox}, + * {@link Ext.layout.container.VBox}, {@link Ext.layout.component.Dock}). + */ + shrinkWrap: 2, + + weight: 0, + + /** + * @property {Boolean} maskOnDisable + * This is an internal flag that you use when creating custom components. By default this is set to `true` which means + * that every component gets a mask when it's disabled. Components like FieldContainer, FieldSet, Field, Button, Tab + * override this property to `false` since they want to implement custom disable logic. + */ + maskOnDisable: true, + + /** + * @property {Boolean} [_isLayoutRoot=false] + * Setting this property to `true` causes the {@link #isLayoutRoot} method to return + * `true` and stop the search for the top-most component for a layout. + * @protected + */ + _isLayoutRoot: false, + + /** + * @property {String} [contentPaddingProperty='padding'] + * The name of the padding property that is used by the layout to manage + * padding. See {@link Ext.layout.container.Auto#managePadding managePadding} + */ + contentPaddingProperty: 'padding', + + horizontalPosProp: 'left', + + // private + borderBoxCls: Ext.baseCSSPrefix + 'border-box', + + /** + * Creates new Component. + * @param {Object} config (optional) Config object. + */ + constructor : function(config) { + var me = this, + i, len, xhooks; + + if (config) { + Ext.apply(me, config); + + xhooks = me.xhooks; + if (xhooks) { + delete me.xhooks; + Ext.override(me, xhooks); + } + } else { + config = {}; + } + + me.initialConfig = config; + + me.mixins.elementCt.constructor.call(me); + + me.addEvents( + /** + * @event beforeactivate + * Fires before a Component has been visually activated. Returning `false` from an event listener can prevent + * the activate from occurring. + * @param {Ext.Component} this + */ + 'beforeactivate', + /** + * @event activate + * Fires after a Component has been visually activated. + * @param {Ext.Component} this + */ + 'activate', + /** + * @event beforedeactivate + * Fires before a Component has been visually deactivated. Returning `false` from an event listener can + * prevent the deactivate from occurring. + * @param {Ext.Component} this + */ + 'beforedeactivate', + /** + * @event deactivate + * Fires after a Component has been visually deactivated. + * @param {Ext.Component} this + */ + 'deactivate', + /** + * @event added + * Fires after a Component had been added to a Container. + * @param {Ext.Component} this + * @param {Ext.container.Container} container Parent Container + * @param {Number} pos position of Component + * @since 3.4.0 + */ + 'added', + /** + * @event disable + * Fires after the component is disabled. + * @param {Ext.Component} this + * @since 1.1.0 + */ + 'disable', + /** + * @event enable + * Fires after the component is enabled. + * @param {Ext.Component} this + * @since 1.1.0 + */ + 'enable', + /** + * @event beforeshow + * Fires before the component is shown when calling the {@link Ext.Component#method-show show} method. Return `false` from an event + * handler to stop the show. + * @param {Ext.Component} this + * @since 1.1.0 + */ + 'beforeshow', + /** + * @event show + * Fires after the component is shown when calling the {@link Ext.Component#method-show show} method. + * @param {Ext.Component} this + * @since 1.1.0 + */ + 'show', + /** + * @event beforehide + * Fires before the component is hidden when calling the {@link Ext.Component#method-hide hide} method. Return `false` from an event + * handler to stop the hide. + * @param {Ext.Component} this + * @since 1.1.0 + */ + 'beforehide', + /** + * @event hide + * Fires after the component is hidden. Fires after the component is hidden when calling the {@link Ext.Component#method-hide hide} + * method. + * @param {Ext.Component} this + * @since 1.1.0 + */ + 'hide', + /** + * @event removed + * Fires when a component is removed from an Ext.container.Container + * @param {Ext.Component} this + * @param {Ext.container.Container} ownerCt Container which holds the component + * @since 3.4.0 + */ + 'removed', + /** + * @event beforerender + * Fires before the component is {@link #rendered}. Return `false` from an event handler to stop the + * {@link #method-render}. + * @param {Ext.Component} this + * @since 1.1.0 + */ + 'beforerender', + /** + * @event render + * Fires after the component markup is {@link #rendered}. + * @param {Ext.Component} this + * @since 1.1.0 + */ + 'render', + /** + * @event afterrender + * Fires after the component rendering is finished. + * + * The `afterrender` event is fired after this Component has been {@link #rendered}, been postprocessed by any + * `afterRender` method defined for the Component. + * @param {Ext.Component} this + * @since 3.4.0 + */ + 'afterrender', + /** + * @event boxready + * Fires *one time* - after the component has been laid out for the first time at its initial size. + * @param {Ext.Component} this + * @param {Number} width The initial width. + * @param {Number} height The initial height. + */ + 'boxready', + /** + * @event beforedestroy + * Fires before the component is {@link #method-destroy}ed. Return `false` from an event handler to stop the + * {@link #method-destroy}. + * @param {Ext.Component} this + * @since 1.1.0 + */ + 'beforedestroy', + /** + * @event destroy + * Fires after the component is {@link #method-destroy}ed. + * @param {Ext.Component} this + * @since 1.1.0 + */ + 'destroy', + /** + * @event resize + * Fires after the component is resized. Note that this does *not* fire when the component is first laid out at its initial + * size. To hook that point in the life cycle, use the {@link #boxready} event. + * @param {Ext.Component} this + * @param {Number} width The new width that was set. + * @param {Number} height The new height that was set. + * @param {Number} oldWidth The previous width. + * @param {Number} oldHeight The previous height. + */ + 'resize', + /** + * @event move + * Fires after the component is moved. + * @param {Ext.Component} this + * @param {Number} x The new x position. + * @param {Number} y The new y position. + */ + 'move', + /** + * @event focus + * Fires when this Component receives focus. + * @param {Ext.Component} this + * @param {Ext.EventObject} The focus event. + */ + 'focus', + /** + * @event blur + * Fires when this Component loses focus. + * @param {Ext.Component} this + * @param {Ext.EventObject} The blur event. + */ + 'blur' + ); + + me.getId(); + + me.setupProtoEl(); + + // initComponent, beforeRender, or event handlers may have set the style or `cls` property since the `protoEl` was set up + // so we must apply styles and classes here too. + if (me.cls) { + me.initialCls = me.cls; + me.protoEl.addCls(me.cls); + } + if (me.style) { + me.initialStyle = me.style; + me.protoEl.setStyle(me.style); + } + + me.renderData = me.renderData || {}; + me.renderSelectors = me.renderSelectors || {}; + + if (me.plugins) { + me.plugins = me.constructPlugins(); + } + + // we need this before we call initComponent + if (!me.hasListeners) { + me.hasListeners = new me.HasListeners(); + } + + me.initComponent(); + + // ititComponent gets a chance to change the id property before registering + Ext.ComponentManager.register(me); + + // Don't pass the config so that it is not applied to 'this' again + me.mixins.observable.constructor.call(me); + me.mixins.state.constructor.call(me, config); + + // Save state on resize. + this.addStateEvents('resize'); + + // Move this into Observable? + if (me.plugins) { + for (i = 0, len = me.plugins.length; i < len; i++) { + me.plugins[i] = me.initPlugin(me.plugins[i]); + } + } + + me.loader = me.getLoader(); + + if (me.renderTo) { + me.render(me.renderTo); + // EXTJSIV-1935 - should be a way to do afterShow or something, but that + // won't work. Likewise, rendering hidden and then showing (w/autoShow) has + // implications to afterRender so we cannot do that. + } + + // Auto show only works unilaterally on *uncontained* Components. + // If contained, then it is the Container's responsibility to do the showing at next layout time. + if (me.autoShow && !me.isContained) { + me.show(); + } + + // + if (Ext.isDefined(me.disabledClass)) { + if (Ext.isDefined(Ext.global.console)) { + Ext.global.console.warn('Ext.Component: disabledClass has been deprecated. Please use disabledCls.'); + } + me.disabledCls = me.disabledClass; + delete me.disabledClass; + } + // + }, + + initComponent: function () { + // This is called again here to allow derived classes to add plugin configs to the + // plugins array before calling down to this, the base initComponent. + this.plugins = this.constructPlugins(); + + // this will properly (ignore or) constrain the configured width/height to their + // min/max values for consistency. + this.setSize(this.width, this.height); + }, + + /** + * The supplied default state gathering method for the AbstractComponent class. + * + * This method returns dimension settings such as `flex`, `anchor`, `width` and `height` along with `collapsed` + * state. + * + * Subclasses which implement more complex state should call the superclass's implementation, and apply their state + * to the result if this basic state is to be saved. + * + * Note that Component state will only be saved if the Component has a {@link #stateId} and there as a StateProvider + * configured for the document. + * + * @return {Object} + */ + getState: function() { + var me = this, + state = null, + sizeModel = me.getSizeModel(); + + if (sizeModel.width.configured) { + state = me.addPropertyToState(state, 'width'); + } + if (sizeModel.height.configured) { + state = me.addPropertyToState(state, 'height'); + } + + return state; + }, + + /** + * Save a property to the given state object if it is not its default or configured + * value. + * + * @param {Object} state The state object. + * @param {String} propName The name of the property on this object to save. + * @param {String} [value] The value of the state property (defaults to `this[propName]`). + * @return {Boolean} The state object or a new object if state was `null` and the property + * was saved. + * @protected + */ + addPropertyToState: function (state, propName, value) { + var me = this, + len = arguments.length; + + // If the property is inherited, it is a default and we don't want to save it to + // the state, however if we explicitly specify a value, always save it + if (len == 3 || me.hasOwnProperty(propName)) { + if (len < 3) { + value = me[propName]; + } + + // If the property has the same value as was initially configured, again, we + // don't want to save it. + if (value !== me.initialConfig[propName]) { + (state || (state = {}))[propName] = value; + } + } + + return state; + }, + + show: Ext.emptyFn, + + animate: function(animObj) { + var me = this, + hasToWidth, + hasToHeight, + toHeight, + toWidth, + to, + clearWidth, + clearHeight, + curWidth, w, curHeight, h, isExpanding, + wasConstrained, + wasConstrainedHeader, + passedCallback, + oldOverflow; + + animObj = animObj || {}; + to = animObj.to || {}; + + if (Ext.fx.Manager.hasFxBlock(me.id)) { + return me; + } + + hasToWidth = Ext.isDefined(to.width); + if (hasToWidth) { + toWidth = Ext.Number.constrain(to.width, me.minWidth, me.maxWidth); + } + + hasToHeight = Ext.isDefined(to.height); + if (hasToHeight) { + toHeight = Ext.Number.constrain(to.height, me.minHeight, me.maxHeight); + } + + // Special processing for animating Component dimensions. + if (!animObj.dynamic && (hasToWidth || hasToHeight)) { + curWidth = (animObj.from ? animObj.from.width : undefined) || me.getWidth(); + w = curWidth; + curHeight = (animObj.from ? animObj.from.height : undefined) || me.getHeight(); + h = curHeight; + isExpanding = false; + + if (hasToHeight && toHeight > curHeight) { + h = toHeight; + isExpanding = true; + } + if (hasToWidth && toWidth > curWidth) { + w = toWidth; + isExpanding = true; + } + + // During animated sizing, overflow has to be hidden to clip expanded content + if (hasToHeight || hasToWidth) { + oldOverflow = me.el.getStyle('overtflow'); + if (oldOverflow !== 'hidden') { + me.el.setStyle('overflow', 'hidden'); + } + } + + // If any dimensions are being increased, we must resize the internal structure + // of the Component, but then clip it by sizing its encapsulating element back to original dimensions. + // The animation will then progressively reveal the larger content. + if (isExpanding) { + clearWidth = !Ext.isNumber(me.width); + clearHeight = !Ext.isNumber(me.height); + + // Lay out this component at the new, larger size to get the internals correctly laid out. + // Then size the encapsulating **Element** back down to size. + // We will then just animate the element to reveal the correctly laid out content. + me.setSize(w, h); + me.el.setSize(curWidth, curHeight); + + if (clearWidth) { + delete me.width; + } + if (clearHeight) { + delete me.height; + } + } + if (hasToWidth) { + to.width = toWidth; + } + + if (hasToHeight) { + to.height = toHeight; + } + } + + // No constraining during the animate - the "to" size has already been calculated with respect to all settings. + // Arrange to reinstate any constraining after the animation has completed + wasConstrained = me.constrain; + wasConstrainedHeader = me.constrainHeader; + if (wasConstrained || wasConstrainedHeader) { + me.constrain = me.constrainHeader = false; + passedCallback = animObj.callback; + animObj.callback = function() { + me.constrain = wasConstrained; + me.constrainHeader = wasConstrainedHeader; + // Call the original callback if any + if (passedCallback) { + passedCallback.call(animObj.scope||me, arguments); + } + if (oldOverflow !== 'hidden') { + me.el.setStyle('overflow', oldOverflow); + } + }; + } + return me.mixins.animate.animate.apply(me, arguments); + }, + + setHiddenState: function(hidden){ + var hierarchyState = this.getHierarchyState(); + + this.hidden = hidden; + if (hidden) { + hierarchyState.hidden = true; + } else { + delete hierarchyState.hidden; + } + }, + + onHide: function() { + // Only lay out if there is an owning layout which might be affected by the hide + if (this.ownerLayout) { + this.updateLayout({ isRoot: false }); + } + }, + + onShow : function() { + this.updateLayout({ isRoot: false }); + }, + + /** + * @private + * @param {String/Object} ptype string or config object containing a ptype property. + * + * Constructs a plugin according to the passed config object/ptype string. + * + * Ensures that the constructed plugin always has a `cmp` reference back to this component. + * The setting up of this is done in PluginManager. The PluginManager ensures that a reference to this + * component is passed to the constructor. It also ensures that the plugin's `setCmp` method (if any) is called. + */ + constructPlugin: function(plugin) { + var me = this; + + // ptype only, pass as the defultType + if (typeof plugin == 'string') { + plugin = Ext.PluginManager.create({}, plugin, me); + } + // Object (either config with ptype or an instantiated plugin) + else { + plugin = Ext.PluginManager.create(plugin, null, me); + } + return plugin; + }, + + /** + * @private + * Returns an array of fully constructed plugin instances. This converts any configs into their + * appropriate instances. + * + * It does not mutate the plugins array. It creates a new array. + */ + constructPlugins: function() { + var me = this, + plugins = me.plugins, + result, i, len; + + if (plugins) { + result = []; + if (!Ext.isArray(plugins)) { + plugins = [ plugins ]; + } + for (i = 0, len = plugins.length; i < len; i++) { + // this just returns already-constructed plugin instances... + result[i] = me.constructPlugin(plugins[i]); + } + } + + me.pluginsInitialized = true; + return result; + }, + + // @private + initPlugin : function(plugin) { + plugin.init(this); + + return plugin; + }, + + // @private + // Adds a plugin. May be called at any time in the component's lifecycle. + addPlugin: function(plugin) { + var me = this; + + plugin = me.constructPlugin(plugin); + if (me.plugins) { + me.plugins.push(plugin); + } else { + me.plugins = [ plugin ]; + } + if (me.pluginsInitialized) { + me.initPlugin(plugin); + } + return plugin; + }, + + removePlugin: function(plugin) { + Ext.Array.remove(this.plugins, plugin); + plugin.destroy(); + }, + + /** + * Retrieves plugin from this component's collection by its `ptype`. + * @param {String} ptype The Plugin's ptype as specified by the class's `alias` configuration. + * @return {Ext.AbstractPlugin} plugin instance. + */ + findPlugin: function(ptype) { + var i, + plugins = this.plugins, + ln = plugins && plugins.length; + for (i = 0; i < ln; i++) { + if (plugins[i].ptype === ptype) { + return plugins[i]; + } + } + }, + + /** + * Retrieves a plugin from this component's collection by its `pluginId`. + * @param {String} pluginId + * @return {Ext.AbstractPlugin} plugin instance. + */ + getPlugin: function(pluginId) { + var i, + plugins = this.plugins, + ln = plugins && plugins.length; + for (i = 0; i < ln; i++) { + if (plugins[i].pluginId === pluginId) { + return plugins[i]; + } + } + }, + + /** + * Occurs before componentLayout is run. In previous releases, this method could + * return `false` to prevent its layout but that is not supported in Ext JS 4.1 or + * higher. This method is simply a notification of the impending layout to give the + * component a chance to adjust the DOM. Ideally, DOM reads should be avoided at this + * time to reduce expensive document reflows. + * + * @template + * @protected + */ + beforeLayout: Ext.emptyFn, + + /** + * @private + * Injected as an override by Ext.Aria.initialize + */ + updateAria: Ext.emptyFn, + + /** + * Called by Component#doAutoRender + * + * Register a Container configured `floating: true` with this Component's {@link Ext.ZIndexManager ZIndexManager}. + * + * Components added in this way will not participate in any layout, but will be rendered + * upon first show in the way that {@link Ext.window.Window Window}s are. + */ + registerFloatingItem: function(cmp) { + var me = this; + if (!me.floatingDescendants) { + me.floatingDescendants = new Ext.ZIndexManager(me); + } + me.floatingDescendants.register(cmp); + }, + + unregisterFloatingItem: function(cmp) { + var me = this; + if (me.floatingDescendants) { + me.floatingDescendants.unregister(cmp); + } + }, + + layoutSuspendCount: 0, + + suspendLayouts: function () { + var me = this; + if (!me.rendered) { + return; + } + if (++me.layoutSuspendCount == 1) { + me.suspendLayout = true; + } + }, + + resumeLayouts: function (flushOptions) { + var me = this; + if (!me.rendered) { + return; + } + if (! --me.layoutSuspendCount) { + me.suspendLayout = false; + if (flushOptions && !me.isLayoutSuspended()) { + me.updateLayout(flushOptions); + } + } + }, + + setupProtoEl: function() { + var cls = this.initCls(); + + this.protoEl = new Ext.util.ProtoElement({ + cls: cls.join(' ') // in case any of the parts have multiple classes + }); + }, + + initCls: function() { + var me = this, + cls = [ me.baseCls, me.getComponentLayout().targetCls ]; + + // + if (Ext.isDefined(me.cmpCls)) { + if (Ext.isDefined(Ext.global.console)) { + Ext.global.console.warn('Ext.Component: cmpCls has been deprecated. Please use componentCls.'); + } + me.componentCls = me.cmpCls; + delete me.cmpCls; + } + // + + if (me.componentCls) { + cls.push(me.componentCls); + } else { + me.componentCls = me.baseCls; + } + + return cls; + }, + + /** + * Sets the UI for the component. This will remove any existing UIs on the component. It will also loop through any + * `uiCls` set on the component and rename them so they include the new UI. + * @param {String} ui The new UI for the component. + */ + setUI: function(ui) { + var me = this, + uiCls = me.uiCls, + activeUI = me.activeUI, + classes; + + if (ui === activeUI) { + // The ui hasn't changed + return; + } + + // activeUI will only be set if setUI has been called before. If it hasn't there's no need to remove anything + if (activeUI) { + classes = me.removeClsWithUI(uiCls, true); + + if (classes.length) { + me.removeCls(classes); + } + + // Remove the UI from the element + me.removeUIFromElement(); + } + else { + // We need uiCls to be empty otherwise our call to addClsWithUI won't do anything + me.uiCls = []; + } + + // Set the UI + me.ui = ui; + + // After the first call to setUI the values ui and activeUI should track each other but initially we need some + // way to tell whether the ui has really been set. + me.activeUI = ui; + + // Add the new UI to the element + me.addUIToElement(); + + classes = me.addClsWithUI(uiCls, true); + + if (classes.length) { + me.addCls(classes); + } + + // Changing the ui can lead to significant changes to a component's appearance, so the layout needs to be + // updated. Internally most calls to setUI are pre-render. Buttons are a notable exception as setScale changes + // the ui and often requires the layout to be updated. + if (me.rendered) { + me.updateLayout(); + } + }, + + /** + * Adds a `cls` to the `uiCls` array, which will also call {@link #addUIClsToElement} and adds to all elements of this + * component. + * @param {String/String[]} classes A string or an array of strings to add to the `uiCls`. + * @param {Object} skip (Boolean) skip `true` to skip adding it to the class and do it later (via the return). + */ + addClsWithUI: function(classes, skip) { + var me = this, + clsArray = [], + i = 0, + uiCls = me.uiCls = Ext.Array.clone(me.uiCls), + activeUI = me.activeUI, + length, + cls; + + if (typeof classes === "string") { + classes = (classes.indexOf(' ') < 0) ? [classes] : Ext.String.splitWords(classes); + } + + length = classes.length; + + for (; i < length; i++) { + cls = classes[i]; + + if (cls && !me.hasUICls(cls)) { + uiCls.push(cls); + + // We can skip this bit if there isn't an activeUI because we'll be called again from setUI + if (activeUI) { + clsArray = clsArray.concat(me.addUIClsToElement(cls)); + } + } + } + + if (skip !== true && activeUI) { + me.addCls(clsArray); + } + + return clsArray; + }, + + /** + * Removes a `cls` to the `uiCls` array, which will also call {@link #removeUIClsFromElement} and removes it from all + * elements of this component. + * @param {String/String[]} cls A string or an array of strings to remove to the `uiCls`. + */ + removeClsWithUI: function(classes, skip) { + var me = this, + clsArray = [], + i = 0, + extArray = Ext.Array, + remove = extArray.remove, + uiCls = me.uiCls = extArray.clone(me.uiCls), + activeUI = me.activeUI, + length, cls; + + if (typeof classes === "string") { + classes = (classes.indexOf(' ') < 0) ? [classes] : Ext.String.splitWords(classes); + } + + length = classes.length; + + for (i = 0; i < length; i++) { + cls = classes[i]; + + if (cls && me.hasUICls(cls)) { + remove(uiCls, cls); + + //If there's no activeUI then there's nothing to remove + if (activeUI) { + clsArray = clsArray.concat(me.removeUIClsFromElement(cls)); + } + } + } + + if (skip !== true && activeUI) { + me.removeCls(clsArray); + } + + return clsArray; + }, + + /** + * Checks if there is currently a specified `uiCls`. + * @param {String} cls The `cls` to check. + */ + hasUICls: function(cls) { + var me = this, + uiCls = me.uiCls || []; + + return Ext.Array.contains(uiCls, cls); + }, + + frameElementsArray: ['tl', 'tc', 'tr', 'ml', 'mc', 'mr', 'bl', 'bc', 'br'], + + /** + * Method which adds a specified UI + `uiCls` to the components element. Can be overridden to remove the UI from more + * than just the components element. + * @param {String} ui The UI to remove from the element. + */ + addUIClsToElement: function(cls) { + var me = this, + baseClsUi = me.baseCls + '-' + me.ui + '-' + cls, + result = [Ext.baseCSSPrefix + cls, me.baseCls + '-' + cls, baseClsUi], + frameElementsArray, frameElementsLength, i, el, frameElement; + + if (me.rendered && me.frame && !Ext.supports.CSS3BorderRadius) { + // define each element of the frame + frameElementsArray = me.frameElementsArray; + frameElementsLength = frameElementsArray.length; + + // loop through each of them, and if they are defined add the ui + for (i = 0; i < frameElementsLength; i++) { + frameElement = frameElementsArray[i]; + el = me['frame' + frameElement.toUpperCase()]; + + if (el) { + el.addCls(baseClsUi + '-' + frameElement); + } + } + } + + return result; + }, + + /** + * Method which removes a specified UI + `uiCls` from the components element. The `cls` which is added to the element + * will be: `this.baseCls + '-' + ui`. + * @param {String} ui The UI to add to the element. + */ + removeUIClsFromElement: function(cls) { + var me = this, + baseClsUi = me.baseCls + '-' + me.ui + '-' + cls, + result = [Ext.baseCSSPrefix + cls, me.baseCls + '-' + cls, baseClsUi], + frameElementsArray, frameElementsLength, i, el, frameElement; + + if (me.rendered && me.frame && !Ext.supports.CSS3BorderRadius) { + // define each element of the frame + frameElementsArray = me.frameElementsArray; + frameElementsLength = frameElementsArray.length; + + // loop through each of them, and if they are defined add the ui + for (i = 0; i < frameElementsLength; i++) { + frameElement = frameElementsArray[i]; + el = me['frame' + frameElement.toUpperCase()]; + + if (el) { + el.removeCls(baseClsUi + '-' + frameElement); + } + } + } + + return result; + }, + + /** + * Method which adds a specified UI to the components element. + * @private + */ + addUIToElement: function() { + var me = this, + baseClsUI = me.baseCls + '-' + me.ui, + frameElementsArray, frameElementsLength, i, el, frameElement; + + me.addCls(baseClsUI); + + if (me.rendered && me.frame && !Ext.supports.CSS3BorderRadius) { + // define each element of the frame + frameElementsArray = me.frameElementsArray; + frameElementsLength = frameElementsArray.length; + + // loop through each of them, and if they are defined add the ui + for (i = 0; i < frameElementsLength; i++) { + frameElement = frameElementsArray[i]; + el = me['frame' + frameElement.toUpperCase()]; + + if (el) { + el.addCls(baseClsUI + '-' + frameElement); + } + } + } + }, + + /** + * Method which removes a specified UI from the components element. + * @private + */ + removeUIFromElement: function() { + var me = this, + baseClsUI = me.baseCls + '-' + me.ui, + frameElementsArray, frameElementsLength, i, el, frameElement; + + me.removeCls(baseClsUI); + + if (me.rendered && me.frame && !Ext.supports.CSS3BorderRadius) { + // define each element of the frame + frameElementsArray = me.frameElementsArray; + frameElementsLength = frameElementsArray.length; + + for (i = 0; i < frameElementsLength; i++) { + frameElement = frameElementsArray[i]; + el = me['frame' + frameElement.toUpperCase()]; + + if (el) { + el.removeCls(baseClsUI + '-' + frameElement); + } + } + } + }, + + /** + * @private + */ + getTpl: function(name) { + return Ext.XTemplate.getTpl(this, name); + }, + + /** + * Applies padding, margin, border, top, left, height, and width configs to the + * appropriate elements. + * @private + */ + initStyles: function(targetEl) { + var me = this, + Element = Ext.Element, + margin = me.margin, + border = me.border, + cls = me.cls, + style = me.style, + x = me.x, + y = me.y, + width, height; + + me.initPadding(targetEl); + + if (margin != null) { + targetEl.setStyle('margin', this.unitizeBox((margin === true) ? 5 : margin)); + } + + if (border != null) { + me.setBorder(border, targetEl); + } + + // initComponent, beforeRender, or event handlers may have set the style or cls property since the protoEl was set up + // so we must apply styles and classes here too. + if (cls && cls != me.initialCls) { + targetEl.addCls(cls); + me.cls = me.initialCls = null; + } + if (style && style != me.initialStyle) { + targetEl.setStyle(style); + me.style = me.initialStyle = null; + } + + if (x != null) { + targetEl.setStyle(me.horizontalPosProp, (typeof x == 'number') ? (x + 'px') : x); + } + if (y != null) { + targetEl.setStyle('top', (typeof y == 'number') ? (y + 'px') : y); + } + + if (Ext.isBorderBox && (!me.ownerCt || me.floating)) { + targetEl.addCls(me.borderBoxCls); + } + + // Framed components need their width/height to apply to the frame, which is + // best handled in layout at present. + if (!me.getFrameInfo()) { + width = me.width; + height = me.height; + + // If we're using the content box model, we also cannot assign numeric initial sizes since we do not know the border widths to subtract + if (width != null) { + if (typeof width === 'number') { + if (Ext.isBorderBox) { + targetEl.setStyle('width', width + 'px'); + } + } else { + targetEl.setStyle('width', width); + } + } + if (height != null) { + if (typeof height === 'number') { + if (Ext.isBorderBox) { + targetEl.setStyle('height', height + 'px'); + } + } else { + targetEl.setStyle('height', height); + } + } + } + }, + + /** + * Initializes padding by applying it to the target element, or if the layout manages + * padding ensures that the padding on the target element is "0". + * @private + */ + initPadding: function(targetEl) { + var me = this, + padding = me.padding; + + if (padding != null) { + if (me.layout && me.layout.managePadding && me.contentPaddingProperty === 'padding') { + // If the container layout manages padding, the layout will apply the + // padding to an inner element rather than the target element. The + // assumed intent is for the configured padding to override any padding + // that is applied to the target element via stylesheet rules. It is + // therefore necessary to set the target element's padding to "0". + targetEl.setStyle('padding', 0); + } else { + // Convert the padding, margin and border properties from a space seperated string + // into a proper style string + targetEl.setStyle('padding', this.unitizeBox((padding === true) ? 5 : padding)); + } + } + }, + + parseBox: function(box) { + return Ext.dom.Element.parseBox(box); + }, + + unitizeBox: function(box) { + return Ext.dom.Element.unitizeBox(box); + }, + + /** + * Sets the margin on the target element. + * @param {Number/String} margin The margin to set. See the {@link #margin} config. + */ + setMargin: function(margin, /* private */ preventLayout) { + var me = this; + + if (me.rendered) { + if (!margin && margin !== 0) { + margin = ''; + } else { + if (margin === true) { + margin = 5; + } + margin = this.unitizeBox(margin); + } + me.getTargetEl().setStyle('margin', margin); + if (!preventLayout) { + me.updateLayout(); + } + } else { + me.margin = margin; + } + }, + + /** + * Initialize any events on this component + * @protected + */ + initEvents : function() { + var me = this, + afterRenderEvents = me.afterRenderEvents, + afterRenderEvent, el, property, index, len; + + if (afterRenderEvents) { + for (property in afterRenderEvents) { + el = me[property]; + + if (el && el.on) { + afterRenderEvent = afterRenderEvents[property]; + + for (index = 0, len = afterRenderEvent.length ; index < len ; ++index) { + me.mon(el, afterRenderEvent[index]); + } + } + } + } + + // This will add focus/blur listeners to the getFocusEl() element if that is naturally focusable. + // If *not* naturally focusable, then the FocusManager must be enabled to get it to listen for focus so that + // the FocusManager can track and highlight focus. + me.addFocusListener(); + }, + + /** + * @private + * Sets up the focus listener on this Component's {@link #getFocusEl focusEl} if it has one. + * + * Form Components which must implicitly participate in tabbing order usually have a naturally focusable + * element as their {@link #getFocusEl focusEl}, and it is the DOM event of that receiving focus which drives + * the Component's `onFocus` handling, and the DOM event of it being blurred which drives the `onBlur` handling. + * + * If the {@link #getFocusEl focusEl} is **not** naturally focusable, then the listeners are only added + * if the {@link Ext.FocusManager FocusManager} is enabled. + */ + addFocusListener: function() { + var me = this, + focusEl = me.getFocusEl(), + needsTabIndex; + + // All Containers may be focusable, not only "form" type elements, but also + // Panels, Toolbars, Windows etc. + // Usually, the
    element they will return as their focusEl will not be able to receive focus + // However, if the FocusManager is invoked, its non-default navigation handlers (invoked when + // tabbing/arrowing off of certain Components) may explicitly focus a Panel or Container or FieldSet etc. + // Add listeners to the focus and blur events on the focus element + + // If this Component returns a focusEl, we might need to add a focus listener to it. + if (focusEl) { + // getFocusEl might return a Component if a Container wishes to delegate focus to a descendant. + // Window can do this via its defaultFocus configuration which can reference a Button. + if (focusEl.isComponent) { + return focusEl.addFocusListener(); + } + + // If the focusEl is naturally focusable, then we always need a focus listener to drive the Component's + // onFocus handling. + // If *not* naturally focusable, then we only need the focus listener if the FocusManager is enabled. + needsTabIndex = focusEl.needsTabIndex(); + if (!me.focusListenerAdded && (!needsTabIndex || Ext.FocusManager.enabled)) { + if (needsTabIndex) { + focusEl.dom.tabIndex = -1; + } + focusEl.on({ + focus: me.onFocus, + blur: me.onBlur, + scope: me + }); + me.focusListenerAdded = true; + } + } + }, + + /** + * @private + * Returns the focus holder element associated with this Component. At the Component base class level, this function returns `undefined`. + * + * Subclasses which use embedded focusable elements (such as Window, Field and Button) should override this + * for use by the {@link Ext.Component#method-focus focus} method. + * + * Containers which need to participate in the {@link Ext.FocusManager FocusManager}'s navigation and Container focusing scheme also + * need to return a `focusEl`, although focus is only listened for in this case if the {@link Ext.FocusManager FocusManager} is {@link Ext.FocusManager#method-enable enable}d. + * + * @returns {undefined} `undefined` because raw Components cannot by default hold focus. + */ + getFocusEl: Ext.emptyFn, + + isFocusable: function() { + var me = this, + focusEl; + if ((me.focusable !== false) && (focusEl = me.getFocusEl()) && me.rendered && !me.destroying && !me.isDestroyed && !me.disabled && me.isVisible(true)) { + + // getFocusEl might return a Component if a Container wishes to delegate focus to a descendant. + // Window can do this via its defaultFocus configuration which can reference a Button. + // Both Component and Element implement isFocusable, so always ask that. + return focusEl.isFocusable(true); + } + }, + + /** + * Template method to do any pre-focus processing. + * @protected + * @param {Ext.EventObject} e The event object + */ + beforeFocus: Ext.emptyFn, + + // private + onFocus: function(e) { + var me = this, + focusCls = me.focusCls, + focusEl = me.getFocusEl(); + + if (!me.disabled) { + me.beforeFocus(e); + if (focusCls && focusEl) { + focusEl.addCls(me.addClsWithUI(focusCls, true)); + } + if (!me.hasFocus) { + me.hasFocus = true; + me.fireEvent('focus', me, e); + } + } + }, + + /** + * Template method to do any pre-blur processing. + * @protected + * @param {Ext.EventObject} e The event object + */ + beforeBlur : Ext.emptyFn, + + // private + onBlur : function(e) { + var me = this, + focusCls = me.focusCls, + focusEl = me.getFocusEl(); + + if (me.destroying) { + return; + } + + me.beforeBlur(e); + if (focusCls && focusEl) { + focusEl.removeCls(me.removeClsWithUI(focusCls, true)); + } + if (me.validateOnBlur) { + me.validate(); + } + me.hasFocus = false; + me.fireEvent('blur', me, e); + me.postBlur(e); + }, + + /** + * Template method to do any post-blur processing. + * @protected + * @param {Ext.EventObject} e The event object + */ + postBlur : Ext.emptyFn, + + /** + * Tests whether this Component matches the selector string. + * @param {String} selector The selector string to test against. + * @return {Boolean} `true` if this Component matches the selector. + */ + is: function(selector) { + return Ext.ComponentQuery.is(this, selector); + }, + + /** + * Navigates up the ownership hierarchy searching for an ancestor Container which matches any passed simple selector or component. + * + * *Important.* There is not a universal upwards navigation pointer. There are several upwards relationships + * such as the {@link Ext.button.Button button} which activates a {@link Ext.button.Button#cfg-menu menu}, or the + * {@link Ext.menu.Item menu item} which activated a {@link Ext.menu.Item#cfg-menu submenu}, or the + * {@link Ext.grid.column.Column column header} which activated the column menu. + * + * These differences are abstracted away by this method. + * + * Example: + * + * var owningTabPanel = grid.up('tabpanel'); + * + * @param {String/Ext.Component} [selector] The simple selector component or actual component to test. If not passed the immediate owner/activater is returned. + * @param {String/Number/Ext.Component} [limit] This may be a selector upon which to stop the upward scan, or a limit of teh number of steps, or Component reference to stop on. + * @return {Ext.container.Container} The matching ancestor Container (or `undefined` if no match was found). + */ + up: function (selector, limit) { + var result = this.getRefOwner(), + limitSelector = typeof limit === 'string', + limitCount = typeof limit === 'number', + limitComponent = limit && limit.isComponent, + steps = 0; + + if (selector) { + for (; result; result = result.getRefOwner()) { + steps++; + if (selector.isComponent) { + if (result === selector) { + return result; + } + } else { + if (Ext.ComponentQuery.is(result, selector)) { + return result; + } + } + + // Stop when we hit the limit selector + if (limitSelector && result.is(limit)) { + return; + } + if (limitCount && steps === limit) { + return; + } + if (limitComponent && result === limit) { + return; + } + } + } + return result; + }, + + /** + * Returns the next sibling of this Component. + * + * Optionally selects the next sibling which matches the passed {@link Ext.ComponentQuery ComponentQuery} selector. + * + * May also be referred to as **`next()`** + * + * Note that this is limited to siblings, and if no siblings of the item match, `null` is returned. Contrast with + * {@link #nextNode} + * @param {String} [selector] A {@link Ext.ComponentQuery ComponentQuery} selector to filter the following items. + * @return {Ext.Component} The next sibling (or the next sibling which matches the selector). + * Returns `null` if there is no matching sibling. + */ + nextSibling: function(selector) { + var o = this.ownerCt, it, last, idx, c; + if (o) { + it = o.items; + idx = it.indexOf(this) + 1; + if (idx) { + if (selector) { + for (last = it.getCount(); idx < last; idx++) { + if ((c = it.getAt(idx)).is(selector)) { + return c; + } + } + } else { + if (idx < it.getCount()) { + return it.getAt(idx); + } + } + } + } + return null; + }, + + /** + * Returns the previous sibling of this Component. + * + * Optionally selects the previous sibling which matches the passed {@link Ext.ComponentQuery ComponentQuery} + * selector. + * + * May also be referred to as **`prev()`** + * + * Note that this is limited to siblings, and if no siblings of the item match, `null` is returned. Contrast with + * {@link #previousNode} + * @param {String} [selector] A {@link Ext.ComponentQuery ComponentQuery} selector to filter the preceding items. + * @return {Ext.Component} The previous sibling (or the previous sibling which matches the selector). + * Returns `null` if there is no matching sibling. + */ + previousSibling: function(selector) { + var o = this.ownerCt, it, idx, c; + if (o) { + it = o.items; + idx = it.indexOf(this); + if (idx != -1) { + if (selector) { + for (--idx; idx >= 0; idx--) { + if ((c = it.getAt(idx)).is(selector)) { + return c; + } + } + } else { + if (idx) { + return it.getAt(--idx); + } + } + } + } + return null; + }, + + /** + * Returns the previous node in the Component tree in tree traversal order. + * + * Note that this is not limited to siblings, and if invoked upon a node with no matching siblings, will walk the + * tree in reverse order to attempt to find a match. Contrast with {@link #previousSibling}. + * @param {String} [selector] A {@link Ext.ComponentQuery ComponentQuery} selector to filter the preceding nodes. + * @return {Ext.Component} The previous node (or the previous node which matches the selector). + * Returns `null` if there is no matching node. + */ + previousNode: function(selector, /* private */ includeSelf) { + var node = this, + ownerCt = node.ownerCt, + result, + it, i, sib; + + // If asked to include self, test me + if (includeSelf && node.is(selector)) { + return node; + } + + if (ownerCt) { + for (it = ownerCt.items.items, i = Ext.Array.indexOf(it, node) - 1; i > -1; i--) { + sib = it[i]; + if (sib.query) { + result = sib.query(selector); + result = result[result.length - 1]; + if (result) { + return result; + } + } + if (sib.is(selector)) { + return sib; + } + } + return ownerCt.previousNode(selector, true); + } + return null; + }, + + /** + * Returns the next node in the Component tree in tree traversal order. + * + * Note that this is not limited to siblings, and if invoked upon a node with no matching siblings, will walk the + * tree to attempt to find a match. Contrast with {@link #nextSibling}. + * @param {String} [selector] A {@link Ext.ComponentQuery ComponentQuery} selector to filter the following nodes. + * @return {Ext.Component} The next node (or the next node which matches the selector). + * Returns `null` if there is no matching node. + */ + nextNode: function(selector, /* private */ includeSelf) { + var node = this, + ownerCt = node.ownerCt, + result, + it, len, i, sib; + + // If asked to include self, test me + if (includeSelf && node.is(selector)) { + return node; + } + + if (ownerCt) { + for (it = ownerCt.items.items, i = Ext.Array.indexOf(it, node) + 1, len = it.length; i < len; i++) { + sib = it[i]; + if (sib.is(selector)) { + return sib; + } + if (sib.down) { + result = sib.down(selector); + if (result) { + return result; + } + } + } + return ownerCt.nextNode(selector); + } + return null; + }, + + /** + * Retrieves the `id` of this component. Will auto-generate an `id` if one has not already been set. + * @return {String} + */ + getId : function() { + return this.id || (this.id = 'ext-comp-' + (this.getAutoId())); + }, + + /** + * Returns the value of {@link #itemId} assigned to this component, or when that + * is not set, returns the value of {@link #id}. + * @return {String} + */ + getItemId : function() { + return this.itemId || this.id; + }, + + /** + * Retrieves the top level element representing this component. + * @return {Ext.dom.Element} + * @since 1.1.0 + */ + getEl : function() { + return this.el; + }, + + /** + * This is used to determine where to insert the 'html', 'contentEl' and 'items' in this component. + * @private + */ + getTargetEl: function() { + return this.frameBody || this.el; + }, + + /** + * Get an el for overflowing, defaults to the target el + * @private + */ + getOverflowEl: function(){ + return this.getTargetEl(); + }, + + /** + * @private + * Returns the CSS style object which will set the Component's scroll styles. This must be applied + * to the {@link #getTargetEl target element}. + */ + getOverflowStyle: function() { + var me = this, + result = null, + ox, oy, + overflowStyle; + + // Note to maintainer. To save on waves of testing, setting and defaulting, the code below + // rolls assignent statements into conditional test value expressiona and property object initializers. + // This avoids sprawling code. Maintain with care. + if (typeof me.autoScroll === 'boolean') { + result = { + overflow: overflowStyle = me.autoScroll ? 'auto' : '' + }; + me.scrollFlags = { + overflowX: overflowStyle, + overflowY: overflowStyle, + x: true, + y: true, + both: true + }; + } else { + ox = me.overflowX; + oy = me.overflowY; + if (ox !== undefined || oy !== undefined) { + result = { + 'overflowX': ox = ox || '', + 'overflowY': oy = oy || '' + }; + + /** + * @member Ext.Component + * @property {Object} scrollFlags + * An object property which provides unified information as to which dimensions are scrollable based upon + * the {@link #autoScroll}, {@link #overflowX} and {@link #overflowY} settings (And for *views* of trees and grids, the owning panel's {@link Ext.panel.Table#scroll scroll} setting). + * + * Note that if you set overflow styles using the {@link #style} config or {@link Ext.panel.Panel#bodyStyle bodyStyle} config, this object does not include that information; + * it is best to use {@link #autoScroll}, {@link #overflowX} and {@link #overflowY} if you need to access these flags. + * + * This object has the following properties: + * @property {Boolean} scrollFlags.x `true` if this Component is scrollable horizontally - style setting may be `'auto'` or `'scroll'`. + * @property {Boolean} scrollFlags.y `true` if this Component is scrollable vertically - style setting may be `'auto'` or `'scroll'`. + * @property {Boolean} scrollFlags.both `true` if this Component is scrollable both horizontally and vertically. + * @property {String} scrollFlags.overflowX The `overflow-x` style setting, `'auto'` or `'scroll'` or `''`. + * @property {String} scrollFlags.overflowY The `overflow-y` style setting, `'auto'` or `'scroll'` or `''`. + * @readonly + */ + me.scrollFlags = { + overflowX: ox, + overflowY: oy, + x: ox = (ox === 'auto' || ox === 'scroll'), + y: oy = (oy === 'auto' || oy === 'scroll'), + both: ox && oy + }; + } else { + me.scrollFlags = { + overflowX: '', + overflowY: '', + x: false, + y: false, + both: false + }; + } + } + + // The scrollable container element must be non-statically positioned or IE6/7 will make + // positioned children stay in place rather than scrolling with the rest of the content + if (result && Ext.isIE7m) { + result.position = 'relative'; + } + + return result; + }, + + /** + * Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended + * from the xtype (default) or whether it is directly of the xtype specified (`shallow = true`). + * + * **If using your own subclasses, be aware that a Component must register its own xtype to participate in + * determination of inherited xtypes.** + * + * For a list of all available xtypes, see the {@link Ext.Component} header. + * + * Example usage: + * + * @example + * var t = new Ext.form.field.Text(); + * var isText = t.isXType('textfield'); // true + * var isBoxSubclass = t.isXType('field'); // true, descended from Ext.form.field.Base + * var isBoxInstance = t.isXType('field', true); // false, not a direct Ext.form.field.Base instance + * + * @param {String} xtype The xtype to check for this Component + * @param {Boolean} [shallow=false] `true` to check whether this Component is directly of the specified xtype, `false` to + * check whether this Component is descended from the xtype. + * @return {Boolean} `true` if this component descends from the specified xtype, `false` otherwise. + * + * @since 2.3.0 + */ + isXType: function(xtype, shallow) { + if (shallow) { + return this.xtype === xtype; + } + else { + return this.xtypesMap[xtype]; + } + }, + + /** + * Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all available xtypes, see the + * {@link Ext.Component} header. + * + * **If using your own subclasses, be aware that a Component must register its own xtype to participate in + * determination of inherited xtypes.** + * + * Example usage: + * + * @example + * var t = new Ext.form.field.Text(); + * alert(t.getXTypes()); // alerts 'component/field/textfield' + * + * @return {String} The xtype hierarchy string + * + * @since 2.3.0 + */ + getXTypes: function() { + var self = this.self, + xtypes, parentPrototype, parentXtypes; + + if (!self.xtypes) { + xtypes = []; + parentPrototype = this; + + while (parentPrototype) { + parentXtypes = parentPrototype.xtypes; + + if (parentXtypes !== undefined) { + xtypes.unshift.apply(xtypes, parentXtypes); + } + + parentPrototype = parentPrototype.superclass; + } + + self.xtypeChain = xtypes; + self.xtypes = xtypes.join('/'); + } + + return self.xtypes; + }, + + /** + * Update the content area of a component. + * @param {String/Object} htmlOrData If this component has been configured with a template via the tpl config then + * it will use this argument as data to populate the template. If this component was not configured with a template, + * the components content area will be updated via Ext.Element update. + * @param {Boolean} [loadScripts=false] Only legitimate when using the `html` configuration. + * @param {Function} [callback] Only legitimate when using the `html` configuration. Callback to execute when + * scripts have finished loading. + * + * @since 3.4.0 + */ + update : function(htmlOrData, loadScripts, cb) { + var me = this, + isData = (me.tpl && !Ext.isString(htmlOrData)), + el; + + if (isData) { + me.data = htmlOrData; + } else { + me.html = Ext.isObject(htmlOrData) ? Ext.DomHelper.markup(htmlOrData) : htmlOrData; + } + + if (me.rendered) { + el = me.isContainer ? me.layout.getRenderTarget() : me.getTargetEl(); + if (isData) { + me.tpl[me.tplWriteMode](el, htmlOrData || {}); + } else { + el.update(me.html, loadScripts, cb); + } + me.updateLayout(); + } + + }, + + /** + * Convenience function to hide or show this component by Boolean. + * @param {Boolean} visible `true` to show, `false` to hide. + * @return {Ext.Component} this + * @since 1.1.0 + */ + setVisible : function(visible) { + return this[visible ? 'show': 'hide'](); + }, + + /** + * Returns `true` if this component is visible. + * + * @param {Boolean} [deep=false] Pass `true` to interrogate the visibility status of all parent Containers to + * determine whether this Component is truly visible to the user. + * + * Generally, to determine whether a Component is hidden, the no argument form is needed. For example when creating + * dynamically laid out UIs in a hidden Container before showing them. + * + * @return {Boolean} `true` if this component is visible, `false` otherwise. + * + * @since 1.1.0 + */ + isVisible: function(deep) { + var me = this, + hidden; + + if (me.hidden || !me.rendered || me.isDestroyed) { + hidden = true; + } else if (deep) { + hidden = me.isHierarchicallyHidden(); + } + + return !hidden; + }, + + isHierarchicallyHidden: function() { + var child = this, + hidden = false, + parent, parentHierarchyState; + + // It is possible for some components to be immune to collapse meaning the immune + // component remains visible when its direct parent is collapsed, e.g. panel header. + // Because of this, we must walk up the component hierarchy to determine the true + // visible state of the component. + for (; (parent = child.ownerCt || child.floatParent); child = parent) { + parentHierarchyState = parent.getHierarchyState(); + if (parentHierarchyState.hidden) { + hidden = true; + break; + } + if (child.getHierarchyState().collapseImmune) { + // The child or one of its ancestors is immune to collapse. + if (parent.collapsed && !child.collapseImmune) { + // If the child's direct parent is collapsed, and the child + // itself does not have collapse immunity we know that + // the child is not visible. + hidden = true; + break; + } + } else { + // We have ascended the tree to a point where collapse immunity + // is not in play. This means if any anscestor above this point + // is collapsed, then the component is not visible. + hidden = !!parentHierarchyState.collapsed; + break; + } + } + + return hidden; + }, + + onBoxReady: function(width, height) { + var me = this; + + if (me.disableOnBoxReady) { + me.onDisable(); + } else if (me.enableOnBoxReady) { + me.onEnable(); + } + if (me.resizable) { + me.initResizable(me.resizable); + } + + // Draggability must be initialized after resizability + // Because if we have to be wrapped, the resizer wrapper must be dragged as a pseudo-Component + if (me.draggable) { + me.initDraggable(); + } + + if (me.hasListeners.boxready) { + me.fireEvent('boxready', me, width, height); + } + }, + + /** + * Enable the component + * @param {Boolean} [silent=false] Passing `true` will suppress the `enable` event from being fired. + * @since 1.1.0 + */ + enable: function(silent) { + var me = this; + + delete me.disableOnBoxReady; + me.removeCls(me.disabledCls); + if (me.rendered) { + me.onEnable(); + } else { + me.enableOnBoxReady = true; + } + + me.disabled = false; + delete me.resetDisable; + + if (silent !== true) { + me.fireEvent('enable', me); + } + + return me; + }, + + /** + * Disable the component. + * @param {Boolean} [silent=false] Passing `true` will suppress the `disable` event from being fired. + * @since 1.1.0 + */ + disable: function(silent) { + var me = this; + + delete me.enableOnBoxReady; + me.addCls(me.disabledCls); + if (me.rendered) { + me.onDisable(); + } else { + me.disableOnBoxReady = true; + } + + me.disabled = true; + + if (silent !== true) { + delete me.resetDisable; + me.fireEvent('disable', me); + } + + return me; + }, + + /** + * Allows addition of behavior to the enable operation. + * After calling the superclass's `onEnable`, the Component will be enabled. + * + * @template + * @protected + */ + onEnable: function() { + if (this.maskOnDisable) { + this.el.dom.disabled = false; + this.unmask(); + } + }, + + /** + * Allows addition of behavior to the disable operation. + * After calling the superclass's `onDisable`, the Component will be disabled. + * + * @template + * @protected + */ + onDisable : function() { + var me = this, + focusCls = me.focusCls, + focusEl = me.getFocusEl(); + + if (focusCls && focusEl) { + focusEl.removeCls(me.removeClsWithUI(focusCls, true)); + } + + if (me.maskOnDisable) { + me.el.dom.disabled = true; + me.mask(); + } + }, + + mask: function() { + var box = this.lastBox, + target = this.getMaskTarget(), + args = []; + + // Pass it the height of our element if we know it. + if (box) { + args[2] = box.height; + } + target.mask.apply(target, args); + }, + + unmask: function() { + this.getMaskTarget().unmask(); + }, + + getMaskTarget: function(){ + return this.el; + }, + + /** + * Method to determine whether this Component is currently disabled. + * @return {Boolean} the disabled state of this Component. + */ + isDisabled : function() { + return this.disabled; + }, + + /** + * Enable or disable the component. + * @param {Boolean} disabled `true` to disable. + */ + setDisabled : function(disabled) { + return this[disabled ? 'disable': 'enable'](); + }, + + /** + * Method to determine whether this Component is currently set to hidden. + * @return {Boolean} the hidden state of this Component. + */ + isHidden : function() { + return this.hidden; + }, + + /** + * Adds a CSS class to the top level element representing this component. + * @param {String/String[]} cls The CSS class name to add. + * @return {Ext.Component} Returns the Component to allow method chaining. + */ + addCls : function(cls) { + var me = this, + el = me.rendered ? me.el : me.protoEl; + + el.addCls.apply(el, arguments); + return me; + }, + + /** + * @inheritdoc Ext.AbstractComponent#addCls + * @deprecated 4.1 Use {@link #addCls} instead. + * @since 2.3.0 + */ + addClass : function() { + return this.addCls.apply(this, arguments); + }, + + /** + * Checks if the specified CSS class exists on this element's DOM node. + * @param {String} className The CSS class to check for. + * @return {Boolean} `true` if the class exists, else `false`. + * @method + */ + hasCls: function (cls) { + var me = this, + el = me.rendered ? me.el : me.protoEl; + + return el.hasCls.apply(el, arguments); + }, + + /** + * Removes a CSS class from the top level element representing this component. + * @param {String/String[]} cls The CSS class name to remove. + * @returns {Ext.Component} Returns the Component to allow method chaining. + */ + removeCls : function(cls) { + var me = this, + el = me.rendered ? me.el : me.protoEl; + + el.removeCls.apply(el, arguments); + return me; + }, + + // + // @since 2.3.0 + removeClass : function() { + if (Ext.isDefined(Ext.global.console)) { + Ext.global.console.warn('Ext.Component: removeClass has been deprecated. Please use removeCls.'); + } + return this.removeCls.apply(this, arguments); + }, + // + + addOverCls: function() { + var me = this; + if (!me.disabled) { + me.el.addCls(me.overCls); + } + }, + + removeOverCls: function() { + this.el.removeCls(this.overCls); + }, + + addListener : function(element, listeners, scope, options) { + var me = this, + fn, + option; + + if (Ext.isString(element) && (Ext.isObject(listeners) || options && options.element)) { + if (options.element) { + fn = listeners; + + listeners = {}; + listeners[element] = fn; + element = options.element; + if (scope) { + listeners.scope = scope; + } + + for (option in options) { + if (options.hasOwnProperty(option)) { + if (me.eventOptionsRe.test(option)) { + listeners[option] = options[option]; + } + } + } + } + + // At this point we have a variable called element, + // and a listeners object that can be passed to on + if (me[element] && me[element].on) { + me.mon(me[element], listeners); + } else { + me.afterRenderEvents = me.afterRenderEvents || {}; + if (!me.afterRenderEvents[element]) { + me.afterRenderEvents[element] = []; + } + me.afterRenderEvents[element].push(listeners); + } + return; + } + + return me.mixins.observable.addListener.apply(me, arguments); + }, + + // inherit docs + removeManagedListenerItem: function(isClear, managedListener, item, ename, fn, scope){ + var me = this, + element = managedListener.options ? managedListener.options.element : null; + + if (element) { + element = me[element]; + if (element && element.un) { + if (isClear || (managedListener.item === item && managedListener.ename === ename && (!fn || managedListener.fn === fn) && (!scope || managedListener.scope === scope))) { + element.un(managedListener.ename, managedListener.fn, managedListener.scope); + if (!isClear) { + Ext.Array.remove(me.managedListeners, managedListener); + } + } + } + } else { + return me.mixins.observable.removeManagedListenerItem.apply(me, arguments); + } + }, + + /** + * Provides the link for Observable's `fireEvent` method to bubble up the ownership hierarchy. + * @return {Ext.container.Container} the Container which owns this Component. + * @since 3.4.0 + */ + getBubbleTarget : function() { + return this.ownerCt; + }, + + /** + * Method to determine whether this Component is floating. + * @return {Boolean} the floating state of this component. + */ + isFloating : function() { + return this.floating; + }, + + /** + * Method to determine whether this Component is draggable. + * @return {Boolean} the draggable state of this component. + */ + isDraggable : function() { + return !!this.draggable; + }, + + /** + * Method to determine whether this Component is droppable. + * @return {Boolean} the droppable state of this component. + */ + isDroppable : function() { + return !!this.droppable; + }, + + /** + * Method to manage awareness of when components are added to their + * respective Container, firing an #added event. References are + * established at add time rather than at render time. + * + * Allows addition of behavior when a Component is added to a + * Container. At this stage, the Component is in the parent + * Container's collection of child items. After calling the + * superclass's `onAdded`, the `ownerCt` reference will be present, + * and if configured with a ref, the `refOwner` will be set. + * + * @param {Ext.container.Container} container Container which holds the component. + * @param {Number} pos Position at which the component was added. + * + * @template + * @protected + * @since 3.4.0 + */ + onAdded : function(container, pos) { + var me = this; + + me.ownerCt = container; + + if (me.hierarchyState) { + // if component has a hierarchyState at this point we set an invalid flag in the + // hierarchy state so that descendants of this component know to re-initialize + // their hierarchyState the next time it is requested (see getHierarchyState()) + me.hierarchyState.invalid = true; + // We can now delete the old hierarchyState since it is invalid. IMPORTANT: + // the descendants are still linked to the old hierarchy state via the + // prototype chain, and their heirarchyState property will be synced up + // the next time their getHierarchyState() method is called. For this reason + // hierarchyState should always be accessed using getHierarchyState() + delete me.hierarchyState; + } + + if (me.hasListeners.added) { + me.fireEvent('added', me, container, pos); + } + }, + + /** + * Method to manage awareness of when components are removed from their + * respective Container, firing a #removed event. References are properly + * cleaned up after removing a component from its owning container. + * + * Allows addition of behavior when a Component is removed from + * its parent Container. At this stage, the Component has been + * removed from its parent Container's collection of child items, + * but has not been destroyed (It will be destroyed if the parent + * Container's `autoDestroy` is `true`, or if the remove call was + * passed a truthy second parameter). After calling the + * superclass's `onRemoved`, the `ownerCt` and the `refOwner` will not + * be present. + * @param {Boolean} destroying Will be passed as `true` if the Container performing the remove operation will delete this + * Component upon remove. + * + * @template + * @protected + * @since 3.4.0 + */ + onRemoved : function(destroying) { + var me = this; + if (me.hasListeners.removed) { + me.fireEvent('removed', me, me.ownerCt); + } + delete me.ownerCt; + delete me.ownerLayout; + }, + + /** + * Invoked before the Component is destroyed. + * + * @method + * @template + * @protected + */ + beforeDestroy : Ext.emptyFn, + + /** + * Allows addition of behavior to the resize operation. + * + * Called when Ext.resizer.Resizer#drag event is fired. + * + * @method + * @template + * @protected + */ + onResize: function(width, height, oldWidth, oldHeight) { + var me = this; + + // constrain is a config on Floating + if (me.floating && me.constrain) { + me.doConstrain(); + } + if (me.hasListeners.resize) { + me.fireEvent('resize', me, width, height, oldWidth, oldHeight); + } + }, + + /** + * Sets the width and height of this Component. This method fires the {@link #resize} event. This method can accept + * either width and height as separate arguments, or you can pass a size object like `{width:10, height:20}`. + * + * @param {Number/String/Object} width The new width to set. This may be one of: + * + * - A Number specifying the new width in the {@link #getEl Element}'s {@link Ext.Element#defaultUnit}s (by default, pixels). + * - A String used to set the CSS width style. + * - A size object in the format `{width: widthValue, height: heightValue}`. + * - `undefined` to leave the width unchanged. + * + * @param {Number/String} height The new height to set (not required if a size object is passed as the first arg). + * This may be one of: + * + * - A Number specifying the new height in the {@link #getEl Element}'s {@link Ext.Element#defaultUnit}s (by default, pixels). + * - A String used to set the CSS height style. Animation may **not** be used. + * - `undefined` to leave the height unchanged. + * + * @return {Ext.Component} this + */ + setSize : function(width, height) { + var me = this; + + // support for standard size objects + if (width && typeof width == 'object') { + height = width.height; + width = width.width; + } + + // Constrain within configured maxima + if (typeof width == 'number') { + me.width = Ext.Number.constrain(width, me.minWidth, me.maxWidth); + } else if (width === null) { + delete me.width; + } + + if (typeof height == 'number') { + me.height = Ext.Number.constrain(height, me.minHeight, me.maxHeight); + } else if (height === null) { + delete me.height; + } + + // If not rendered, all we need to is set the properties. + // The initial layout will set the size + if (me.rendered && me.isVisible()) { + + // If we are changing size, then we are not the root. + me.updateLayout({ + isRoot: false + }); + } + + return me; + }, + + /** + * Determines whether this Component is the root of a layout. This returns `true` if + * this component can run its layout without assistance from or impact on its owner. + * If this component cannot run its layout given these restrictions, `false` is returned + * and its owner will be considered as the next candidate for the layout root. + * + * Setting the {@link #_isLayoutRoot} property to `true` causes this method to always + * return `true`. This may be useful when updating a layout of a Container which shrink + * wraps content, and you know that it will not change size, and so can safely be the + * topmost participant in the layout run. + * @protected + */ + isLayoutRoot: function() { + var me = this, + ownerLayout = me.ownerLayout; + + // Return true if we have been explicitly flagged as the layout root, or if we are floating. + // Sometimes floating Components get an ownerCt ref injected into them which is *not* a true ownerCt, merely + // an upward link for reference purposes. For example a grid column menu is linked to the + // owning header via an ownerCt reference. + if (!ownerLayout || me._isLayoutRoot || me.floating) { + return true; + } + + return ownerLayout.isItemLayoutRoot(me); + }, + + /** + * Returns `true` if layout is suspended for this component. This can come from direct + * suspension of this component's layout activity ({@link Ext.Container#suspendLayout}) or if one + * of this component's containers is suspended. + * + * @return {Boolean} `true` layout of this component is suspended. + */ + isLayoutSuspended: function () { + var comp = this, + ownerLayout; + + while (comp) { + if (comp.layoutSuspendCount || comp.suspendLayout) { + return true; + } + + ownerLayout = comp.ownerLayout; + if (!ownerLayout) { + break; + } + + // TODO - what about suspending a Layout instance? + + // this works better than ownerCt since ownerLayout means "is managed by" in + // the proper sense... some floating components have ownerCt but won't have an + // ownerLayout + comp = ownerLayout.owner; + } + + return false; + }, + + /** + * Updates this component's layout. If this update affects this components {@link #ownerCt}, + * that component's `updateLayout` method will be called to perform the layout instead. + * Otherwise, just this component (and its child items) will layout. + * + * @param {Object} [options] An object with layout options. + * @param {Boolean} options.defer `true` if this layout should be deferred. + * @param {Boolean} options.isRoot `true` if this layout should be the root of the layout. + */ + updateLayout: function (options) { + var me = this, + defer, + lastBox = me.lastBox, + isRoot = options && options.isRoot; + + if (lastBox) { + // remember that this component's last layout result is invalid and must be + // recalculated + lastBox.invalid = true; + } + + if (!me.rendered || me.layoutSuspendCount || me.suspendLayout) { + return; + } + + if (me.hidden) { + Ext.AbstractComponent.cancelLayout(me); + } else if (typeof isRoot != 'boolean') { + isRoot = me.isLayoutRoot(); + } + + // if we aren't the root, see if our ownerLayout will handle it... + if (isRoot || !me.ownerLayout || !me.ownerLayout.onContentChange(me)) { + // either we are the root or our ownerLayout doesn't care + if (!me.isLayoutSuspended()) { + // we aren't suspended (knew that), but neither is any of our ownerCt's... + defer = (options && options.hasOwnProperty('defer')) ? options.defer : me.deferLayouts; + Ext.AbstractComponent.updateLayout(me, defer); + } + } + }, + + /** + * Returns an object that describes how this component's width and height are managed. + * All of these objects are shared and should not be modified. + * + * @return {Object} The size model for this component. + * @return {Ext.layout.SizeModel} return.width The {@link Ext.layout.SizeModel size model} + * for the width. + * @return {Ext.layout.SizeModel} return.height The {@link Ext.layout.SizeModel size model} + * for the height. + */ + getSizeModel: function (ownerCtSizeModel) { + var me = this, + models = Ext.layout.SizeModel, + ownerContext = me.componentLayout.ownerContext, + width = me.width, + height = me.height, + typeofWidth, typeofHeight, + hasPixelWidth, hasPixelHeight, + heightModel, ownerLayout, policy, shrinkWrap, topLevel, widthModel; + + if (ownerContext) { + // If we are in the middle of a running layout, always report the current, + // dynamic size model rather than recompute it. This is not (only) a time + // saving thing, but a correctness thing since we cannot get the right answer + // otherwise. + widthModel = ownerContext.widthModel; + heightModel = ownerContext.heightModel; + } + + if (!widthModel || !heightModel) { + hasPixelWidth = ((typeofWidth = typeof width) == 'number'); + hasPixelHeight = ((typeofHeight = typeof height) == 'number'); + topLevel = me.floating || !(ownerLayout = me.ownerLayout); + + // Floating or no owner layout, e.g. rendered using renderTo + if (topLevel) { + policy = Ext.layout.Layout.prototype.autoSizePolicy; + shrinkWrap = me.floating ? 3 : me.shrinkWrap; + + if (hasPixelWidth) { + widthModel = models.configured; + } + + if (hasPixelHeight) { + heightModel = models.configured; + } + } else { + policy = ownerLayout.getItemSizePolicy(me, ownerCtSizeModel); + shrinkWrap = ownerLayout.isItemShrinkWrap(me); + } + + if (ownerContext) { + ownerContext.ownerSizePolicy = policy; + } + + shrinkWrap = (shrinkWrap === true) ? 3 : (shrinkWrap || 0); // false->0, true->3 + + // Now that we have shrinkWrap as a 0-3 value, we need to turn off shrinkWrap + // bits for any dimension that has a configured size not in pixels. These must + // be read from the DOM. + // + if (topLevel && shrinkWrap) { + if (width && typeofWidth == 'string') { + shrinkWrap &= 2; // percentage, "30em" or whatever - not width shrinkWrap + } + if (height && typeofHeight == 'string') { + shrinkWrap &= 1; // percentage, "30em" or whatever - not height shrinkWrap + } + } + + if (shrinkWrap !== 3) { + if (!ownerCtSizeModel) { + ownerCtSizeModel = me.ownerCt && me.ownerCt.getSizeModel(); + } + + if (ownerCtSizeModel) { + shrinkWrap |= (ownerCtSizeModel.width.shrinkWrap ? 1 : 0) | (ownerCtSizeModel.height.shrinkWrap ? 2 : 0); + } + } + + if (!widthModel) { + if (!policy.setsWidth) { + if (hasPixelWidth) { + widthModel = models.configured; + } else { + widthModel = (shrinkWrap & 1) ? models.shrinkWrap : models.natural; + } + } else if (policy.readsWidth) { + if (hasPixelWidth) { + widthModel = models.calculatedFromConfigured; + } else { + widthModel = (shrinkWrap & 1) ? models.calculatedFromShrinkWrap : + models.calculatedFromNatural; + } + } else { + widthModel = models.calculated; + } + } + + if (!heightModel) { + if (!policy.setsHeight) { + if (hasPixelHeight) { + heightModel = models.configured; + } else { + heightModel = (shrinkWrap & 2) ? models.shrinkWrap : models.natural; + } + } else if (policy.readsHeight) { + if (hasPixelHeight) { + heightModel = models.calculatedFromConfigured; + } else { + heightModel = (shrinkWrap & 2) ? models.calculatedFromShrinkWrap : + models.calculatedFromNatural; + } + } else { + heightModel = models.calculated; + } + } + } + + // We return one of the cached objects with the proper "width" and "height" as the + // sizeModels we have determined. + return widthModel.pairsByHeightOrdinal[heightModel.ordinal]; + }, + + isDescendant: function(ancestor) { + if (ancestor.isContainer) { + for (var c = this.ownerCt; c; c = c.ownerCt) { + if (c === ancestor) { + return true; + } + } + } + return false; + }, + + /** + * This method needs to be called whenever you change something on this component that requires the Component's + * layout to be recalculated. + * @return {Ext.container.Container} this + */ + doComponentLayout : function() { + this.updateLayout(); + return this; + }, + + /** + * Forces this component to redo its componentLayout. + * @deprecated 4.1.0 Use {@link #updateLayout} instead. + */ + forceComponentLayout: function () { + this.updateLayout(); + }, + + // @private + setComponentLayout : function(layout) { + var currentLayout = this.componentLayout; + if (currentLayout && currentLayout.isLayout && currentLayout != layout) { + currentLayout.setOwner(null); + } + this.componentLayout = layout; + layout.setOwner(this); + }, + + getComponentLayout : function() { + var me = this; + + if (!me.componentLayout || !me.componentLayout.isLayout) { + me.setComponentLayout(Ext.layout.Layout.create(me.componentLayout, 'autocomponent')); + } + return me.componentLayout; + }, + + /** + * Called by the layout system after the Component has been laid out. + * + * @param {Number} width The width that was set + * @param {Number} height The height that was set + * @param {Number/undefined} oldWidth The old width, or `undefined` if this was the initial layout. + * @param {Number/undefined} oldHeight The old height, or `undefined` if this was the initial layout. + * + * @template + * @protected + */ + afterComponentLayout: function(width, height, oldWidth, oldHeight) { + var me = this; + + if (++me.componentLayoutCounter === 1) { + me.afterFirstLayout(width, height); + } + + if (width !== oldWidth || height !== oldHeight) { + me.onResize(width, height, oldWidth, oldHeight); + } + }, + + /** + * Occurs before `componentLayout` is run. Returning `false` from this method will prevent the `componentLayout` from + * being executed. + * + * @param {Number} adjWidth The box-adjusted width that was set. + * @param {Number} adjHeight The box-adjusted height that was set. + * + * @template + * @protected + */ + beforeComponentLayout: function(width, height) { + return true; + }, + + /** + * @member Ext.Component + * Sets the left and top of the component. To set the page XY position instead, use {@link Ext.Component#setPagePosition setPagePosition}. This + * method fires the {@link #event-move} event. + * @param {Number/Number[]/Object} x The new left, an array of `[x,y]`, or animation config object containing `x` and `y` properties. + * @param {Number} [y] The new top. + * @param {Boolean/Object} [animate] If `true`, the Component is _animated_ into its new position. You may also pass an + * animation configuration. + * @return {Ext.Component} this + */ + setPosition: function(x, y, animate) { + var me = this, + pos = me.beforeSetPosition.apply(me, arguments); + + if (pos && me.rendered) { + x = pos.x; + y = pos.y; + + if (animate) { + // Proceed only if the new position is different from the current + // one. We only do these DOM reads in the animate case as we don't + // want to incur the penalty of read/write on every call to setPosition + if (x !== me.getLocalX() || y !== me.getLocalY()) { + me.stopAnimation(); + me.animate(Ext.apply({ + duration: 1000, + listeners: { + afteranimate: Ext.Function.bind(me.afterSetPosition, me, [x, y]) + }, + to: { + x: x, + y: y + } + }, animate)); + } + } else { + me.setLocalXY(x, y); + me.afterSetPosition(x, y); + } + } + return me; + }, + + /** + * @private Template method called before a Component is positioned. + * + * Ensures that the position is adjusted so that the Component is constrained if so configured. + */ + beforeSetPosition: function (x, y, animate) { + var pos, x0; + + // Decode members of x if x is an array or an object. + // If it is numeric (including zero), we need do nothing. + if (x) { + // Position in first argument as an array of [x, y] + if (Ext.isNumber(x0 = x[0])) { + animate = y; + y = x[1]; + x = x0; + } + // Position in first argument as object w/ x & y properties + else if ((x0 = x.x) !== undefined) { + animate = y; + y = x.y; + x = x0; + } + } + + if (this.constrain || this.constrainHeader) { + pos = this.calculateConstrainedPosition(null, [x, y], true); + if (pos) { + x = pos[0]; + y = pos[1]; + } + } + + // Set up the return info and store the position in this object + pos = { + x : this.x = x, + y : this.y = y, + anim: animate, + hasX: x !== undefined, + hasY: y !== undefined + }; + + return (pos.hasX || pos.hasY) ? pos : null; + }, + + /** + * Template method called after a Component has been positioned. + * + * @param {Number} x + * @param {Number} y + * + * @template + * @protected + */ + afterSetPosition: function(x, y) { + var me = this; + me.onPosition(x, y); + if (me.hasListeners.move) { + me.fireEvent('move', me, x, y); + } + }, + + /** + * Called after the component is moved, this method is empty by default but can be implemented by any + * subclass that needs to perform custom logic after a move occurs. + * + * @param {Number} x The new x position. + * @param {Number} y The new y position. + * + * @template + * @protected + */ + onPosition: Ext.emptyFn, + + /** + * Sets the width of the component. This method fires the {@link #resize} event. + * + * @param {Number} width The new width to setThis may be one of: + * + * - A Number specifying the new width in the {@link #getEl Element}'s {@link Ext.Element#defaultUnit}s (by default, pixels). + * - A String used to set the CSS width style. + * + * @return {Ext.Component} this + */ + setWidth : function(width) { + return this.setSize(width); + }, + + /** + * Sets the height of the component. This method fires the {@link #resize} event. + * + * @param {Number} height The new height to set. This may be one of: + * + * - A Number specifying the new height in the {@link #getEl Element}'s {@link Ext.Element#defaultUnit}s (by default, pixels). + * - A String used to set the CSS height style. + * - _undefined_ to leave the height unchanged. + * + * @return {Ext.Component} this + */ + setHeight : function(height) { + return this.setSize(undefined, height); + }, + + /** + * Gets the current size of the component's underlying element. + * @return {Object} An object containing the element's size `{width: (element width), height: (element height)}` + */ + getSize : function() { + return this.el.getSize(); + }, + + /** + * Gets the current width of the component's underlying element. + * @return {Number} + */ + getWidth : function() { + return this.el.getWidth(); + }, + + /** + * Gets the current height of the component's underlying element. + * @return {Number} + */ + getHeight : function() { + return this.el.getHeight(); + }, + + /** + * Gets the {@link Ext.ComponentLoader} for this Component. + * @return {Ext.ComponentLoader} The loader instance, null if it doesn't exist. + */ + getLoader: function(){ + var me = this, + autoLoad = me.autoLoad ? (Ext.isObject(me.autoLoad) ? me.autoLoad : {url: me.autoLoad}) : null, + loader = me.loader || autoLoad; + + if (loader) { + if (!loader.isLoader) { + me.loader = new Ext.ComponentLoader(Ext.apply({ + target: me, + autoLoad: autoLoad + }, loader)); + } else { + loader.setTarget(me); + } + return me.loader; + + } + return null; + }, + + /** + * Sets the dock position of this component in its parent panel. Note that this only has effect if this item is part + * of the `dockedItems` collection of a parent that has a DockLayout (note that any Panel has a DockLayout by default) + * @param {Object} dock The dock position. + * @param {Boolean} [layoutParent=false] `true` to re-layout parent. + * @return {Ext.Component} this + */ + setDocked : function(dock, layoutParent) { + var me = this; + + me.dock = dock; + if (layoutParent && me.ownerCt && me.rendered) { + me.ownerCt.updateLayout(); + } + return me; + }, + + /** + * + * @param {String/Number} border The border, see {@link #border}. If a falsey value is passed + * the border will be removed. + */ + setBorder: function(border, /* private */ targetEl) { + var me = this, + initial = !!targetEl; + + if (me.rendered || initial) { + if (!initial) { + targetEl = me.el; + } + + if (!border) { + border = 0; + } else if (border === true) { + border = '1px'; + } else { + border = this.unitizeBox(border); + } + targetEl.setStyle('border-width', border); + if (!initial) { + me.updateLayout(); + } + } + me.border = border; + }, + + onDestroy : function() { + var me = this; + + if (me.monitorResize && Ext.EventManager.resizeEvent) { + Ext.EventManager.resizeEvent.removeListener(me.setSize, me); + } + + // Destroying the floatingItems ZIndexManager will also destroy descendant floating Components + Ext.destroy( + me.componentLayout, + me.loadMask, + me.floatingDescendants + ); + }, + + /** + * Destroys the Component. + * @since 1.1.0 + */ + destroy : function() { + var me = this, + selectors = me.renderSelectors, + selector, + el; + + if (!me.isDestroyed) { + if (!me.hasListeners.beforedestroy || me.fireEvent('beforedestroy', me) !== false) { + me.destroying = true; + me.beforeDestroy(); + + if (me.floating) { + delete me.floatParent; + // A zIndexManager is stamped into a *floating* Component when it is added to a Container. + // If it has no zIndexManager at render time, it is assigned to the global Ext.WindowManager instance. + if (me.zIndexManager) { + me.zIndexManager.unregister(me); + } + } else if (me.ownerCt && me.ownerCt.remove) { + me.ownerCt.remove(me, false); + } + + me.stopAnimation(); + me.onDestroy(); + + // Attempt to destroy all plugins + Ext.destroy(me.plugins); + + if (me.hasListeners.destroy) { + me.fireEvent('destroy', me); + } + Ext.ComponentManager.unregister(me); + + me.mixins.state.destroy.call(me); + + me.clearListeners(); + // make sure we clean up the element references after removing all events + if (me.rendered) { + if (!me.preserveElOnDestroy) { + me.el.remove(); + } + me.mixins.elementCt.destroy.call(me); // removes childEls + if (selectors) { + for (selector in selectors) { + if (selectors.hasOwnProperty(selector)) { + el = me[selector]; + if (el) { // in case any other code may have already removed it + delete me[selector]; + el.remove(); + } + } + } + } + + delete me.el; + delete me.frameBody; + delete me.rendered; + } + + me.destroying = false; + me.isDestroyed = true; + } + } + }, + + /** + * Determines whether this component is the descendant of a particular container. + * @param {Ext.Container} container + * @return {Boolean} `true` if the component is the descendant of a particular container, otherwise `false`. + */ + isDescendantOf: function(container) { + return !!this.findParentBy(function(p){ + return p === container; + }); + }, + + /** + * A component's hierarchyState is used to keep track of aspects of a component's + * state that affect its descendants hierarchically like "collapsed" and "hidden". + * For example, if this.hierarchyState.hidden == true, it means that either this + * component, or one of its ancestors is hidden. + * + * Hierarchical state management is implemented by chaining each component's + * hierarchyState property to its parent container's hierarchyState property via the + * prototype. The result is such that if a component's hierarchyState does not have + * it's own property, it inherits the property from the nearest ancestor that does. + * + * To set a hierarchical "hidden" value: + * + * this.getHierarchyState().hidden = true; + * + * It is important to remember when unsetting hierarchyState properties to delete + * them instead of just setting them to a falsy value. This ensures that the + * hierarchyState returns to a state of inheriting the value instead of overriding it + * To unset the hierarchical "hidden" value: + * + * delete this.getHierarchyState().hidden; + * + * IMPORTANT! ALWAYS access hierarchyState using this method, not by accessing + * this.hierarchyState directly. The hierarchyState property does not exist until + * the first time getHierarchyState() is called. At that point getHierarchyState() + * walks up the component tree to establish the hierarchyState prototype chain. + * Additionally the hierarchyState property should NOT be relied upon even after + * the initial call to getHierarchyState() because it is possible for the + * hierarchyState to be invalidated. Invalidation typically happens when a component + * is moved to a new container. In such a case the hierarchy state remains invalid + * until the next time getHierarchyState() is called on the component or one of its + * descendants. + * + * @private + */ + getHierarchyState: function (inner) { + var me = this, + hierarchyState = (inner && me.hierarchyStateInner) || me.hierarchyState, + ownerCt = me.ownerCt, + parent, layout, hierarchyStateInner, getInner; + + if (!hierarchyState || hierarchyState.invalid) { + // Use upward navigational link, not ownerCt. + // 99% of the time, this will use ownerCt/floatParent. + // Certain floating components do not have an ownerCt, but they are still linked + // into a navigational hierarchy. The getRefOwner method normalizes these differences. + parent = me.getRefOwner(); + + if (ownerCt) { + // This will only be true if the item is a "child" of its owning container + // For example, a docked item will not get the inner hierarchy state + getInner = me.ownerLayout === ownerCt.layout; + } + + me.hierarchyState = hierarchyState = + // chain this component's hierarchyState to that of its parent. If it + // doesn't have a parent, then chain to the rootHierarchyState. This is + // done so that when there is a viewport, all component's will inherit + // from its hierarchyState, even components that are not descendants of + // the viewport. + Ext.Object.chain(parent ? parent.getHierarchyState(getInner) + : Ext.rootHierarchyState); + + me.initHierarchyState(hierarchyState); + if ((layout = me.componentLayout).initHierarchyState) { + layout.initHierarchyState(hierarchyState); + } + + if (me.isContainer) { + me.hierarchyStateInner = hierarchyStateInner = Ext.Object.chain(hierarchyState); + + layout = me.layout; + if (layout && layout.initHierarchyState) { + layout.initHierarchyState(hierarchyStateInner, hierarchyState); + } + if (inner) { + hierarchyState = hierarchyStateInner; + } + } + } + + return hierarchyState; + }, + + /** + * Called by {@link #getHierarchyState} to initialize the hierarchyState the first + * time it is requested. + * @private + */ + initHierarchyState: function(hierarchyState) { + var me = this; + + if (me.collapsed) { + hierarchyState.collapsed = true; + } + if (me.hidden) { + hierarchyState.hidden = true; + } + if (me.collapseImmune) { + hierarchyState.collapseImmune = true; + } + }, + + // ********************************************************************************** + // Begin Positionable methods + // ********************************************************************************** + + getAnchorToXY: function(el, anchor, local, mySize) { + return el.getAnchorXY(anchor, local, mySize); + }, + + getBorderPadding: function() { + return this.el.getBorderPadding(); + }, + + getLocalX: function() { + return this.el.getLocalX(); + }, + + getLocalXY: function() { + return this.el.getLocalXY(); + }, + + getLocalY: function() { + return this.el.getLocalY(); + }, + + getX: function() { + return this.el.getX(); + }, + + getXY: function() { + return this.el.getXY(); + }, + + getY: function() { + return this.el.getY(); + }, + + setLocalX: function(x) { + this.el.setLocalX(x); + }, + + setLocalXY: function(x, y) { + this.el.setLocalXY(x, y); + }, + + setLocalY: function(y) { + this.el.setLocalY(y); + }, + + setX: function(x, animate) { + this.el.setX(x, animate); + }, + + setXY: function(xy, animate) { + this.el.setXY(xy, animate); + }, + + setY: function(y, animate) { + this.el.setY(y, animate); + } + + // ********************************************************************************** + // End Positionable methods + // ********************************************************************************** +}, function() { + var AbstractComponent = this; + + AbstractComponent.createAlias({ + on: 'addListener', + prev: 'previousSibling', + next: 'nextSibling' + }); + + /** + * @inheritdoc Ext.AbstractComponent#resumeLayouts + * @member Ext + */ + Ext.resumeLayouts = function (flush) { + AbstractComponent.resumeLayouts(flush); + }; + + /** + * @inheritdoc Ext.AbstractComponent#suspendLayouts + * @member Ext + */ + Ext.suspendLayouts = function () { + AbstractComponent.suspendLayouts(); + }; + + /** + * Utility wrapper that suspends layouts of all components for the duration of a given function. + * @param {Function} fn The function to execute. + * @param {Object} [scope] The scope (`this` reference) in which the specified function is executed. + * @member Ext + */ + Ext.batchLayouts = function(fn, scope) { + AbstractComponent.suspendLayouts(); + // Invoke the function + fn.call(scope); + AbstractComponent.resumeLayouts(true); + }; +}); diff --git a/extjs-django/marvel/static/extjs/src/AbstractManager.js b/extjs-django/marvel/static/extjs/src/AbstractManager.js new file mode 100644 index 0000000..3b45920 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/AbstractManager.js @@ -0,0 +1,166 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * Base Manager class + */ +Ext.define('Ext.AbstractManager', { + + /* Begin Definitions */ + + requires: ['Ext.util.HashMap'], + + /* End Definitions */ + + typeName: 'type', + + constructor: function(config) { + Ext.apply(this, config || {}); + + /** + * @property {Ext.util.HashMap} all + * Contains all of the items currently managed + */ + this.all = new Ext.util.HashMap(); + + this.types = {}; + }, + + /** + * Returns an item by id. + * For additional details see {@link Ext.util.HashMap#get}. + * @param {String} id The id of the item + * @return {Object} The item, undefined if not found. + */ + get : function(id) { + return this.all.get(id); + }, + + /** + * Registers an item to be managed + * @param {Object} item The item to register + */ + register: function(item) { + // + var all = this.all, + key = all.getKey(item); + + if (all.containsKey(key)) { + Ext.Error.raise('Registering duplicate id "' + key + '" with this manager'); + } + // + this.all.add(item); + }, + + /** + * Unregisters an item by removing it from this manager + * @param {Object} item The item to unregister + */ + unregister: function(item) { + this.all.remove(item); + }, + + /** + * Registers a new item constructor, keyed by a type key. + * @param {String} type The mnemonic string by which the class may be looked up. + * @param {Function} cls The new instance class. + */ + registerType : function(type, cls) { + this.types[type] = cls; + cls[this.typeName] = type; + }, + + /** + * Checks if an item type is registered. + * @param {String} type The mnemonic string by which the class may be looked up + * @return {Boolean} Whether the type is registered. + */ + isRegistered : function(type){ + return this.types[type] !== undefined; + }, + + /** + * Creates and returns an instance of whatever this manager manages, based on the supplied type and + * config object. + * @param {Object} config The config object + * @param {String} defaultType If no type is discovered in the config object, we fall back to this type + * @return {Object} The instance of whatever this manager is managing + */ + create: function(config, defaultType) { + var type = config[this.typeName] || config.type || defaultType, + Constructor = this.types[type]; + + // + if (Constructor === undefined) { + Ext.Error.raise("The '" + type + "' type has not been registered with this manager"); + } + // + + return new Constructor(config); + }, + + /** + * Registers a function that will be called when an item with the specified id is added to the manager. + * This will happen on instantiation. + * @param {String} id The item id + * @param {Function} fn The callback function. Called with a single parameter, the item. + * @param {Object} scope The scope (this reference) in which the callback is executed. + * Defaults to the item. + */ + onAvailable : function(id, fn, scope){ + var all = this.all, + item, + callback; + + if (all.containsKey(id)) { + item = all.get(id); + fn.call(scope || item, item); + } else { + callback = function(map, key, item){ + if (key == id) { + fn.call(scope || item, item); + all.un('add', callback); + } + }; + all.on('add', callback); + } + }, + + /** + * Executes the specified function once for each item in the collection. + * @param {Function} fn The function to execute. + * @param {String} fn.key The key of the item + * @param {Number} fn.value The value of the item + * @param {Number} fn.length The total number of items in the collection + * @param {Boolean} fn.return False to cease iteration. + * @param {Object} scope The scope to execute in. Defaults to `this`. + */ + each: function(fn, scope){ + this.all.each(fn, scope || this); + }, + + /** + * Gets the number of items in the collection. + * @return {Number} The number of items in the collection. + */ + getCount: function(){ + return this.all.getCount(); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/AbstractPlugin.js b/extjs-django/marvel/static/extjs/src/AbstractPlugin.js new file mode 100644 index 0000000..6f2aec8 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/AbstractPlugin.js @@ -0,0 +1,149 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * The AbstractPlugin class is the base class from which user-implemented plugins should inherit. + * + * This class defines the essential API of plugins as used by Components by defining the following methods: + * + * - `init` : The plugin initialization method which the owning Component calls at Component initialization time. + * + * The Component passes itself as the sole parameter. + * + * Subclasses should set up bidirectional links between the plugin and its client Component here. + * + * - `destroy` : The plugin cleanup method which the owning Component calls at Component destruction time. + * + * Use this method to break links between the plugin and the Component and to free any allocated resources. + * + * - `enable` : The base implementation just sets the plugin's `disabled` flag to `false` + * + * - `disable` : The base implementation just sets the plugin's `disabled` flag to `true` + */ +Ext.define('Ext.AbstractPlugin', { + disabled: false, + + /** + * @property {Boolean} isPlugin + * `true` in this class to identify an object as an instantiated Plugin, or subclass thereof. + */ + isPlugin: true, + + /** + * Instantiates the plugin. + * @param {Object} [config] Configuration object. + */ + constructor: function(config) { + this.pluginConfig = config; + Ext.apply(this, config); + }, + + /** + * Creates clone of the plugin. + * @param {Object} [overrideCfg] Additional config for the derived plugin. + */ + clonePlugin: function(overrideCfg) { + return new this.self(Ext.apply({}, overrideCfg, this.pluginConfig)); + }, + + /** + * Sets the component to which this plugin is attached. + * @param {Ext.Component} cmp Owner component. + */ + setCmp: function(cmp) { + this.cmp = cmp; + }, + + /** + * Returns the component to which this plugin is attached. + * @return {Ext.Component} Owner component. + */ + getCmp: function() { + return this.cmp; + }, + + /** + * @cfg {String} pluginId + * A name for the plugin that can be set at creation time to then retrieve the plugin + * through {@link Ext.AbstractComponent#getPlugin getPlugin} method. For example: + * + * var grid = Ext.create('Ext.grid.Panel', { + * plugins: [{ + * ptype: 'cellediting', + * clicksToEdit: 2, + * pluginId: 'cellplugin' + * }] + * }); + * + * // later on: + * var plugin = grid.getPlugin('cellplugin'); + */ + + /** + * @method + * The init method is invoked after initComponent method has been run for the client Component. + * + * The supplied implementation is empty. Subclasses should perform plugin initialization, and set up bidirectional + * links between the plugin and its client Component in their own implementation of this method. + * @param {Ext.Component} client The client Component which owns this plugin. + */ + init: Ext.emptyFn, + + /** + * @method + * The destroy method is invoked by the owning Component at the time the Component is being destroyed. + * + * The supplied implementation is empty. Subclasses should perform plugin cleanup in their own implementation of + * this method. + */ + destroy: Ext.emptyFn, + + /** + * The base implementation just sets the plugin's `disabled` flag to `false` + * + * Plugin subclasses which need more complex processing may implement an overriding implementation. + */ + enable: function() { + this.disabled = false; + }, + + /** + * The base implementation just sets the plugin's `disabled` flag to `true` + * + * Plugin subclasses which need more complex processing may implement an overriding implementation. + */ + disable: function() { + this.disabled = true; + }, + + // Private. + // Inject a ptype property so that AbstractComponent.findPlugin(ptype) works. + onClassExtended: function(cls, data, hooks) { + var alias = data.alias; + + // No ptype built into the class + if (alias && !data.ptype) { + if (Ext.isArray(alias)) { + alias = alias[0]; + } + cls.prototype.ptype = alias.split('plugin.')[1]; + } + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/Action.js b/extjs-django/marvel/static/extjs/src/Action.js new file mode 100644 index 0000000..1d841b7 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/Action.js @@ -0,0 +1,300 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * An Action is a piece of reusable functionality that can be abstracted out of any particular component so that it + * can be usefully shared among multiple components. Actions let you share handlers, configuration options and UI + * updates across any components that support the Action interface (primarily {@link Ext.toolbar.Toolbar}, + * {@link Ext.button.Button} and {@link Ext.menu.Menu} components). + * + * Use a single Action instance as the config object for any number of UI Components which share the same configuration. The + * Action not only supplies the configuration, but allows all Components based upon it to have a common set of methods + * called at once through a single call to the Action. + * + * Any Component that is to be configured with an Action must also support + * the following methods: + * + * - setText(string) + * - setIconCls(string) + * - setDisabled(boolean) + * - setVisible(boolean) + * - setHandler(function) + * + * This allows the Action to control its associated Components. + * + * Example usage: + * + * // Define the shared Action. Each Component below will have the same + * // display text and icon, and will display the same message on click. + * var action = new Ext.Action({ + * {@link #text}: 'Do something', + * {@link #handler}: function(){ + * Ext.Msg.alert('Click', 'You did something.'); + * }, + * {@link #iconCls}: 'do-something', + * {@link #itemId}: 'myAction' + * }); + * + * var panel = new Ext.panel.Panel({ + * title: 'Actions', + * width: 500, + * height: 300, + * tbar: [ + * // Add the Action directly to a toolbar as a menu button + * action, + * { + * text: 'Action Menu', + * // Add the Action to a menu as a text item + * menu: [action] + * } + * ], + * items: [ + * // Add the Action to the panel body as a standard button + * new Ext.button.Button(action) + * ], + * renderTo: Ext.getBody() + * }); + * + * // Change the text for all components using the Action + * action.setText('Something else'); + * + * // Reference an Action through a container using the itemId + * var btn = panel.getComponent('myAction'); + * var aRef = btn.baseAction; + * aRef.setText('New text'); + */ +Ext.define('Ext.Action', { + + /* Begin Definitions */ + + /* End Definitions */ + + /** + * @cfg {String} [text=''] + * The text to set for all components configured by this Action. + */ + /** + * @cfg {String} [iconCls=''] + * The CSS class selector that specifies a background image to be used as the header icon for + * all components configured by this Action. + * + * An example of specifying a custom icon class would be something like: + * + * // specify the property in the config for the class: + * ... + * iconCls: 'do-something' + * + * // css class that specifies background image to be used as the icon image: + * .do-something { background-image: url(../images/my-icon.gif) 0 6px no-repeat !important; } + */ + /** + * @cfg {Boolean} [disabled=false] + * True to disable all components configured by this Action, false to enable them. + */ + /** + * @cfg {Boolean} [hidden=false] + * True to hide all components configured by this Action, false to show them. + */ + /** + * @cfg {Function} handler + * The function that will be invoked by each component tied to this Action + * when the component's primary event is triggered. + */ + /** + * @cfg {String} itemId + * See {@link Ext.Component}.{@link Ext.Component#itemId itemId}. + */ + /** + * @cfg {Object} scope + * The scope (this reference) in which the {@link #handler} is executed. + * Defaults to the browser window. + */ + + /** + * Creates new Action. + * @param {Object} config Config object. + */ + constructor : function(config){ + this.initialConfig = config; + this.itemId = config.itemId = (config.itemId || config.id || Ext.id()); + this.items = []; + }, + + /* + * @property {Boolean} isAction + * `true` in this class to identify an object as an instantiated Action, or subclass thereof. + */ + isAction : true, + + /** + * Sets the text to be displayed by all components configured by this Action. + * @param {String} text The text to display + */ + setText : function(text){ + this.initialConfig.text = text; + this.callEach('setText', [text]); + }, + + /** + * Gets the text currently displayed by all components configured by this Action. + */ + getText : function(){ + return this.initialConfig.text; + }, + + /** + * Sets the icon CSS class for all components configured by this Action. The class should supply + * a background image that will be used as the icon image. + * @param {String} cls The CSS class supplying the icon image + */ + setIconCls : function(cls){ + this.initialConfig.iconCls = cls; + this.callEach('setIconCls', [cls]); + }, + + /** + * Gets the icon CSS class currently used by all components configured by this Action. + */ + getIconCls : function(){ + return this.initialConfig.iconCls; + }, + + /** + * Sets the disabled state of all components configured by this Action. Shortcut method + * for {@link #enable} and {@link #disable}. + * @param {Boolean} disabled True to disable the component, false to enable it + */ + setDisabled : function(v){ + this.initialConfig.disabled = v; + this.callEach('setDisabled', [v]); + }, + + /** + * Enables all components configured by this Action. + */ + enable : function(){ + this.setDisabled(false); + }, + + /** + * Disables all components configured by this Action. + */ + disable : function(){ + this.setDisabled(true); + }, + + /** + * Returns true if the components using this Action are currently disabled, else returns false. + */ + isDisabled : function(){ + return this.initialConfig.disabled; + }, + + /** + * Sets the hidden state of all components configured by this Action. Shortcut method + * for `{@link #hide}` and `{@link #show}`. + * @param {Boolean} hidden True to hide the component, false to show it. + */ + setHidden : function(v){ + this.initialConfig.hidden = v; + this.callEach('setVisible', [!v]); + }, + + /** + * Shows all components configured by this Action. + */ + show : function(){ + this.setHidden(false); + }, + + /** + * Hides all components configured by this Action. + */ + hide : function(){ + this.setHidden(true); + }, + + /** + * Returns true if the components configured by this Action are currently hidden, else returns false. + */ + isHidden : function(){ + return this.initialConfig.hidden; + }, + + /** + * Sets the function that will be called by each Component using this action when its primary event is triggered. + * @param {Function} fn The function that will be invoked by the action's components. The function + * will be called with no arguments. + * @param {Object} scope The scope (this reference) in which the function is executed. Defaults to the Component + * firing the event. + */ + setHandler : function(fn, scope){ + this.initialConfig.handler = fn; + this.initialConfig.scope = scope; + this.callEach('setHandler', [fn, scope]); + }, + + /** + * Executes the specified function once for each Component currently tied to this Action. The function passed + * in should accept a single argument that will be an object that supports the basic Action config/method interface. + * @param {Function} fn The function to execute for each component + * @param {Object} scope The scope (this reference) in which the function is executed. + * Defaults to the Component. + */ + each : function(fn, scope){ + Ext.each(this.items, fn, scope); + }, + + // @private + callEach : function(fnName, args){ + var items = this.items, + i = 0, + len = items.length, + item; + + Ext.suspendLayouts(); + for(; i < len; i++){ + item = items[i]; + item[fnName].apply(item, args); + } + Ext.resumeLayouts(true); + }, + + // @private + addComponent : function(comp){ + this.items.push(comp); + comp.on('destroy', this.removeComponent, this); + }, + + // @private + removeComponent : function(comp){ + Ext.Array.remove(this.items, comp); + }, + + /** + * Executes this Action manually using the handler function specified in the original config object + * or the handler function set with {@link #setHandler}. Any arguments passed to this + * function will be passed on to the handler function. + * @param {Object...} args Variable number of arguments passed to the handler function + */ + execute : function(){ + this.initialConfig.handler.apply(this.initialConfig.scope || Ext.global, arguments); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/Ajax.js b/extjs-django/marvel/static/extjs/src/Ajax.js new file mode 100644 index 0000000..2cc5c40 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/Ajax.js @@ -0,0 +1,119 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.Ajax + * @singleton + * @markdown + +A singleton instance of an {@link Ext.data.Connection}. This class +is used to communicate with your server side code. It can be used as follows: + + Ext.Ajax.request({ + url: 'page.php', + params: { + id: 1 + }, + success: function(response){ + var text = response.responseText; + // process server response here + } + }); + +Default options for all requests can be set by changing a property on the Ext.Ajax class: + + Ext.Ajax.timeout = 60000; // 60 seconds + +Any options specified in the request method for the Ajax request will override any +defaults set on the Ext.Ajax class. In the code sample below, the timeout for the +request will be 60 seconds. + + Ext.Ajax.timeout = 120000; // 120 seconds + Ext.Ajax.request({ + url: 'page.aspx', + timeout: 60000 + }); + +In general, this class will be used for all Ajax requests in your application. +The main reason for creating a separate {@link Ext.data.Connection} is for a +series of requests that share common settings that are different to all other +requests in the application. + + */ +Ext.define('Ext.Ajax', { + extend: 'Ext.data.Connection', + singleton: true, + + /** + * @cfg {Object} extraParams @hide + */ + /** + * @cfg {Object} defaultHeaders @hide + */ + /** + * @cfg {String} method @hide + */ + /** + * @cfg {Number} timeout @hide + */ + /** + * @cfg {Boolean} autoAbort @hide + */ + /** + * @cfg {Boolean} disableCaching @hide + */ + + /** + * @property {Boolean} disableCaching + * True to add a unique cache-buster param to GET requests. Defaults to true. + */ + /** + * @property {String} url + * The default URL to be used for requests to the server. + * If the server receives all requests through one URL, setting this once is easier than + * entering it on every request. + */ + /** + * @property {Object} extraParams + * An object containing properties which are used as extra parameters to each request made + * by this object. Session information and other data that you need + * to pass with each request are commonly put here. + */ + /** + * @property {Object} defaultHeaders + * An object containing request headers which are added to each request made by this object. + */ + /** + * @property {String} method + * The default HTTP method to be used for requests. Note that this is case-sensitive and + * should be all caps (if not set but params are present will use + * "POST", otherwise will use "GET".) + */ + /** + * @property {Number} timeout + * The timeout in milliseconds to be used for requests. Defaults to 30000. + */ + + /** + * @property {Boolean} autoAbort + * Whether a new request should abort any pending requests. + */ + autoAbort : false +}); diff --git a/extjs-django/marvel/static/extjs/src/Component.js b/extjs-django/marvel/static/extjs/src/Component.js new file mode 100644 index 0000000..c8f184f --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/Component.js @@ -0,0 +1,1533 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * Base class for all Ext components. + * + * The Component base class has built-in support for basic hide/show and enable/disable and size control behavior. + * + * ## xtypes + * + * Every component has a specific xtype, which is its Ext-specific type name, along with methods for checking the xtype + * like {@link #getXType} and {@link #isXType}. See the [Component Guide][1] for more information on xtypes and the + * Component hierarchy. + * + * ## Finding components + * + * All Components are registered with the {@link Ext.ComponentManager} on construction so that they can be referenced at + * any time via {@link Ext#getCmp Ext.getCmp}, passing the {@link #id}. + * + * Additionally the {@link Ext.ComponentQuery} provides a CSS-selectors-like way to look up components by their xtype + * and many other attributes. For example the following code will find all textfield components inside component with + * `id: 'myform'`: + * + * Ext.ComponentQuery.query('#myform textfield'); + * + * ## Extending Ext.Component + * + * All subclasses of Component may participate in the automated Ext component + * lifecycle of creation, rendering and destruction which is provided by the {@link Ext.container.Container Container} + * class. Components may be added to a Container through the {@link Ext.container.Container#cfg-items items} config option + * at the time the Container is created, or they may be added dynamically via the + * {@link Ext.container.Container#method-add add} method. + * + * All user-developed visual widgets that are required to participate in automated lifecycle and size management should + * subclass Component. + * + * See the Creating new UI controls chapter in [Component Guide][1] for details on how and to either extend + * or augment Ext JS base classes to create custom Components. + * + * ## The Ext.Component class by itself + * + * Usually one doesn't need to instantiate the Ext.Component class. There are subclasses which implement + * specialized use cases, covering most application needs. However it is possible to instantiate a base + * Component, and it can be rendered to document, or handled by layouts as the child item of a Container: + * + * @example + * Ext.create('Ext.Component', { + * html: 'Hello world!', + * width: 300, + * height: 200, + * padding: 20, + * style: { + * color: '#FFFFFF', + * backgroundColor:'#000000' + * }, + * renderTo: Ext.getBody() + * }); + * + * The Component above creates its encapsulating `div` upon render, and use the configured HTML as content. More complex + * internal structure may be created using the {@link #renderTpl} configuration, although to display database-derived + * mass data, it is recommended that an ExtJS data-backed Component such as a {@link Ext.view.View View}, + * {@link Ext.grid.Panel GridPanel}, or {@link Ext.tree.Panel TreePanel} be used. + * + * [1]: #!/guide/components + */ +Ext.define('Ext.Component', { + + /* Begin Definitions */ + + alias: ['widget.component', 'widget.box'], + + extend: 'Ext.AbstractComponent', + + uses: [ + 'Ext.util.DelayedTask', + 'Ext.Layer', + 'Ext.resizer.Resizer', + 'Ext.util.ComponentDragger' + ], + + mixins: { + floating: 'Ext.util.Floating' + }, + + statics: { + // Collapse/expand directions + DIRECTION_TOP: 'top', + DIRECTION_RIGHT: 'right', + DIRECTION_BOTTOM: 'bottom', + DIRECTION_LEFT: 'left', + + VERTICAL_DIRECTION_Re: /^(?:top|bottom)$/, + + // RegExp whih specifies characters in an xtype which must be translated to '-' when generating auto IDs. + // This includes dot, comma and whitespace + INVALID_ID_CHARS_Re: /[\.,\s]/g + }, + + /* End Definitions */ + + /** + * @cfg {Boolean/Object} resizable + * Specify as `true` to apply a {@link Ext.resizer.Resizer Resizer} to this Component after rendering. + * + * May also be specified as a config object to be passed to the constructor of {@link Ext.resizer.Resizer Resizer} + * to override any defaults. By default the Component passes its minimum and maximum size, and uses + * `{@link Ext.resizer.Resizer#dynamic}: false` + */ + + /** + * @cfg {String} resizeHandles + * A valid {@link Ext.resizer.Resizer} handles config string. Only applies when resizable = true. + */ + resizeHandles: 'all', + + /** + * @cfg {Boolean} [autoScroll=false] + * `true` to use overflow:'auto' on the components layout element and show scroll bars automatically when necessary, + * `false` to clip any overflowing content. + * This should not be combined with {@link #overflowX} or {@link #overflowY}. + */ + + /** + * @cfg {String} overflowX + * Possible values are: + * * `'auto'` to enable automatic horizontal scrollbar (overflow-x: 'auto'). + * * `'scroll'` to always enable horizontal scrollbar (overflow-x: 'scroll'). + * The default is overflow-x: 'hidden'. This should not be combined with {@link #autoScroll}. + */ + + /** + * @cfg {String} overflowY + * Possible values are: + * * `'auto'` to enable automatic vertical scrollbar (overflow-y: 'auto'). + * * `'scroll'` to always enable vertical scrollbar (overflow-y: 'scroll'). + * The default is overflow-y: 'hidden'. This should not be combined with {@link #autoScroll}. + */ + + /** + * @cfg {Boolean} floating + * Specify as true to float the Component outside of the document flow using CSS absolute positioning. + * + * Components such as {@link Ext.window.Window Window}s and {@link Ext.menu.Menu Menu}s are floating by default. + * + * Floating Components that are programatically {@link Ext.Component#method-render rendered} will register + * themselves with the global {@link Ext.WindowManager ZIndexManager} + * + * ### Floating Components as child items of a Container + * + * A floating Component may be used as a child item of a Container. This just allows the floating Component to seek + * a ZIndexManager by examining the ownerCt chain. + * + * When configured as floating, Components acquire, at render time, a {@link Ext.ZIndexManager ZIndexManager} which + * manages a stack of related floating Components. The ZIndexManager brings a single floating Component to the top + * of its stack when the Component's {@link #toFront} method is called. + * + * The ZIndexManager is found by traversing up the {@link #ownerCt} chain to find an ancestor which itself is + * floating. This is so that descendant floating Components of floating _Containers_ (Such as a ComboBox dropdown + * within a Window) can have its zIndex managed relative to any siblings, but always **above** that floating + * ancestor Container. + * + * If no floating ancestor is found, a floating Component registers itself with the default {@link Ext.WindowManager + * ZIndexManager}. + * + * Floating components _do not participate in the Container's layout_. Because of this, they are not rendered until + * you explicitly {@link #method-show} them. + * + * After rendering, the ownerCt reference is deleted, and the {@link #floatParent} property is set to the found + * floating ancestor Container. If no floating ancestor Container was found the {@link #floatParent} property will + * not be set. + */ + floating: false, + + /** + * @cfg {String} [defaultAlign="tl-bl?"] + * The default {@link Ext.util.Positionable#getAlignToXY Ext.Element#getAlignToXY} anchor position value for this menu + * relative to its element of origin. Used in conjunction with {@link #showBy}. + */ + defaultAlign: 'tl-bl?', + + /** + * @cfg {Boolean} toFrontOnShow + * True to automatically call {@link #toFront} when the {@link #method-show} method is called on an already visible, + * floating component. + */ + toFrontOnShow: true, + + /** + * @cfg {Ext.util.Region/Ext.Element} constrainTo + * A {@link Ext.util.Region Region} (or an element from which a Region measurement will be read) which is used + * to constrain the component. Only applies when the component is floating. + */ + + /** + * @cfg {Object/String} constraintInsets + * An object or a string (in TRBL order) specifying insets from the configured {@link #constrainTo constrain region} + * within which this component must be constrained when positioning or sizing. + * example: + * + * constraintInsets: '10 10 10 10' // Constrain with 10px insets from parent + */ + + /** + * @property {Ext.ZIndexManager} zIndexManager + * Only present for {@link #floating} Components after they have been rendered. + * + * A reference to the ZIndexManager which is managing this Component's z-index. + * + * The {@link Ext.ZIndexManager ZIndexManager} maintains a stack of floating Component z-indices, and also provides + * a single modal mask which is insert just beneath the topmost visible modal floating Component. + * + * Floating Components may be {@link #toFront brought to the front} or {@link #toBack sent to the back} of the + * z-index stack. + * + * This defaults to the global {@link Ext.WindowManager ZIndexManager} for floating Components that are + * programatically {@link Ext.Component#method-render rendered}. + * + * For {@link #floating} Components which are added to a Container, the ZIndexManager is acquired from the first + * ancestor Container found which is floating. If no floating ancestor is found, the global {@link Ext.WindowManager ZIndexManager} is + * used. + * + * See {@link #floating} and {@link #zIndexParent} + * @readonly + */ + + /** + * @property {Ext.Container} floatParent + * **Only present for {@link #floating} Components which were inserted as child items of Containers.** + * + * There are other similar relationships such as the {@link Ext.button.Button button} which activates a {@link Ext.button.Button#cfg-menu menu}, or the + * {@link Ext.menu.Item menu item} which activated a {@link Ext.menu.Item#cfg-menu submenu}, or the + * {@link Ext.grid.column.Column column header} which activated the column menu. + * + * These differences are abstracted away by the {@link #up} method. + * + * Floating Components that are programatically {@link Ext.Component#method-render rendered} will not have a `floatParent` + * property. + * + * See {@link #floating} and {@link #zIndexManager} + * @readonly + */ + + /** + * @property {Ext.Container} zIndexParent + * Only present for {@link #floating} Components which were inserted as child items of Containers, and which have a floating + * Container in their containment ancestry. + * + * For {@link #floating} Components which are child items of a Container, the zIndexParent will be a floating + * ancestor Container which is responsible for the base z-index value of all its floating descendants. It provides + * a {@link Ext.ZIndexManager ZIndexManager} which provides z-indexing services for all its descendant floating + * Components. + * + * Floating Components that are programatically {@link Ext.Component#method-render rendered} will not have a `zIndexParent` + * property. + * + * For example, the dropdown {@link Ext.view.BoundList BoundList} of a ComboBox which is in a Window will have the + * Window as its `zIndexParent`, and will always show above that Window, wherever the Window is placed in the z-index stack. + * + * See {@link #floating} and {@link #zIndexManager} + * @readonly + */ + + /** + * @cfg {Boolean/Object} [draggable=false] + * Specify as true to make a {@link #floating} Component draggable using the Component's encapsulating element as + * the drag handle. + * + * This may also be specified as a config object for the {@link Ext.util.ComponentDragger ComponentDragger} which is + * instantiated to perform dragging. + * + * For example to create a Component which may only be dragged around using a certain internal element as the drag + * handle, use the delegate option: + * + * new Ext.Component({ + * constrain: true, + * floating: true, + * style: { + * backgroundColor: '#fff', + * border: '1px solid black' + * }, + * html: '

    The title

    The content

    ', + * draggable: { + * delegate: 'h1' + * } + * }).show(); + */ + + /** + * @cfg {Boolean} [formBind=false] + * When inside FormPanel, any component configured with `formBind: true` will + * be enabled/disabled depending on the validity state of the form. + * See {@link Ext.form.Panel} for more information and example. + */ + + /** + * @cfg {Number/String} [columnWidth=undefined] + * Defines the column width inside {@link Ext.layout.container.Column column layout}. + * + * Can be specified as a number or as a percentage. + */ + + /** + * @cfg {"north"/"south"/"east"/"west"/"center"} [region=undefined] + * Defines the region inside {@link Ext.layout.container.Border border layout}. + * + * Possible values: + * + * - north - Positions component at top. + * - south - Positions component at bottom. + * - east - Positions component at right. + * - west - Positions component at left. + * - center - Positions component at the remaining space. + * There **must** be a component with `region: "center"` in every border layout. + */ + + hideMode: 'display', + + offsetsCls: Ext.baseCSSPrefix + 'hide-offsets', + + bubbleEvents: [], + + defaultComponentLayoutType: 'autocomponent', + + //renderTpl: new Ext.XTemplate( + // '
    {uiBase}-{ui}" style="{style}">
    ', { + // compiled: true, + // disableFormats: true + // } + //), + + /** + * Creates new Component. + * @param {Ext.Element/String/Object} config The configuration options may be specified as either: + * + * - **an element** : it is set as the internal element and its id used as the component id + * - **a string** : it is assumed to be the id of an existing element and is used as the component id + * - **anything else** : it is assumed to be a standard config object and is applied to the component + */ + constructor: function(config) { + var me = this; + + config = config || {}; + if (config.initialConfig) { + + // Being initialized from an Ext.Action instance... + if (config.isAction) { + me.baseAction = config; + } + config = config.initialConfig; + // component cloning / action set up + } + else if (config.tagName || config.dom || Ext.isString(config)) { + // element object + config = { + applyTo: config, + id: config.id || config + }; + } + + me.callParent([config]); + + // If we were configured from an instance of Ext.Action, (or configured with a baseAction option), + // register this Component as one of its items + if (me.baseAction){ + me.baseAction.addComponent(me); + } + }, + + /** + * The initComponent template method is an important initialization step for a Component. It is intended to be + * implemented by each subclass of Ext.Component to provide any needed constructor logic. The + * initComponent method of the class being created is called first, with each initComponent method + * up the hierarchy to Ext.Component being called thereafter. This makes it easy to implement and, + * if needed, override the constructor logic of the Component at any step in the hierarchy. + * + * The initComponent method **must** contain a call to {@link Ext.Base#callParent callParent} in order + * to ensure that the parent class' initComponent method is also called. + * + * All config options passed to the constructor are applied to `this` before initComponent is called, + * so you can simply access them with `this.someOption`. + * + * The following example demonstrates using a dynamic string for the text of a button at the time of + * instantiation of the class. + * + * Ext.define('DynamicButtonText', { + * extend: 'Ext.button.Button', + * + * initComponent: function() { + * this.text = new Date(); + * this.renderTo = Ext.getBody(); + * this.callParent(); + * } + * }); + * + * Ext.onReady(function() { + * Ext.create('DynamicButtonText'); + * }); + * + * @template + * @protected + * @since 1.1.0 + */ + initComponent: function() { + var me = this; + + me.callParent(); + + if (me.listeners) { + me.on(me.listeners); + me.listeners = null; //change the value to remove any on prototype + } + me.enableBubble(me.bubbleEvents); + }, + + afterRender: function() { + var me = this; + + me.callParent(); + + if (!(me.x && me.y) && (me.pageX || me.pageY)) { + me.setPagePosition(me.pageX, me.pageY); + } + }, + + /** + * Sets the overflow on the content element of the component. + * @param {Boolean} scroll True to allow the Component to auto scroll. + * @return {Ext.Component} this + */ + setAutoScroll : function(scroll) { + var me = this; + + me.autoScroll = !!scroll; + + // Scrolling styles must be applied to Component's main element. + // Layouts which use an innerCt (Box layout), shrinkwrap the innerCt round overflowing content, + // so the innerCt must be scrolled by the container, it does not scroll content. + if (me.rendered) { + me.getOverflowEl().setStyle(me.getOverflowStyle()); + } + me.updateLayout(); + return me; + }, + + /** + * Sets the overflow x/y on the content element of the component. The x/y overflow + * values can be any valid CSS overflow (e.g., 'auto' or 'scroll'). By default, the + * value is 'hidden'. Passing null for one of the values will erase the inline style. + * Passing `undefined` will preserve the current value. + * + * @param {String} overflowX The overflow-x value. + * @param {String} overflowY The overflow-y value. + * @return {Ext.Component} this + */ + setOverflowXY: function(overflowX, overflowY) { + var me = this, + argCount = arguments.length; + + if (argCount) { + me.overflowX = overflowX || ''; + if (argCount > 1) { + me.overflowY = overflowY || ''; + } + } + + // Scrolling styles must be applied to Component's main element. + // Layouts which use an innerCt (Box layout), shrinkwrap the innerCt round overflowing content, + // so the innerCt must be scrolled by the container, it does not scroll content. + if (me.rendered) { + me.getOverflowEl().setStyle(me.getOverflowStyle()); + } + me.updateLayout(); + return me; + }, + + beforeRender: function () { + var me = this, + floating = me.floating, + cls; + + if (floating) { + me.addCls(Ext.baseCSSPrefix + 'layer'); + + cls = floating.cls; + if (cls) { + me.addCls(cls); + } + } + + return me.callParent(); + }, + + beforeLayout: function(){ + this.callParent(arguments); + if (this.floating) { + this.onBeforeFloatLayout(); + } + }, + + afterComponentLayout: function(){ + this.callParent(arguments); + if (this.floating) { + this.onAfterFloatLayout(); + } + }, + + // @private + makeFloating : function (dom) { + this.mixins.floating.constructor.call(this, dom); + }, + + wrapPrimaryEl: function (dom) { + if (this.floating) { + this.makeFloating(dom); + } else { + this.callParent(arguments); + } + }, + + initResizable: function(resizable) { + var me = this; + + resizable = Ext.apply({ + target: me, + dynamic: false, + constrainTo: me.constrainTo || (me.floatParent ? me.floatParent.getTargetEl() : null), + handles: me.resizeHandles + }, resizable); + resizable.target = me; + me.resizer = new Ext.resizer.Resizer(resizable); + }, + + getDragEl: function() { + return this.el; + }, + + initDraggable: function() { + var me = this, + + // If we are resizable, and the resizer had to wrap this Component's el (eg an Img) + // Then we have to create a pseudo-Component out of the resizer to drag that, + // otherwise, we just drag this Component + dragTarget = (me.resizer && me.resizer.el !== me.el) ? me.resizerComponent = new Ext.Component({ + el: me.resizer.el, + rendered: true, + container: me.container + }) : me, + ddConfig = Ext.applyIf({ + el: dragTarget.getDragEl(), + constrainTo: (me.constrain||me.draggable.constrain) ? (me.constrainTo || (me.floatParent ? me.floatParent.getTargetEl() : me.container)) : undefined + }, me.draggable); + + // Add extra configs if Component is specified to be constrained + if (me.constrain || me.constrainDelegate) { + ddConfig.constrain = me.constrain; + ddConfig.constrainDelegate = me.constrainDelegate; + } + + me.dd = new Ext.util.ComponentDragger(dragTarget, ddConfig); + }, + + /** + * Scrolls this Component's {@link #getTargetEl target element} by the passed delta values, optionally animating. + * + * All of the following are equivalent: + * + * comp.scrollBy(10, 10, true); + * comp.scrollBy([10, 10], true); + * comp.scrollBy({ x: 10, y: 10 }, true); + * + * @param {Number/Number[]/Object} deltaX Either the x delta, an Array specifying x and y deltas or + * an object with "x" and "y" properties. + * @param {Number/Boolean/Object} deltaY Either the y delta, or an animate flag or config object. + * @param {Boolean/Object} animate Animate flag/config object if the delta values were passed separately. + */ + scrollBy: function(deltaX, deltaY, animate) { + var el; + + if ((el = this.getTargetEl()) && el.dom) { + el.scrollBy.apply(el, arguments); + } + }, + + /** + * This method allows you to show or hide a LoadMask on top of this component. + * + * @param {Boolean/Object/String} load True to show the default LoadMask, a config object that will be passed to the + * LoadMask constructor, or a message String to show. False to hide the current LoadMask. + * @param {Boolean} [targetEl=false] True to mask the targetEl of this Component instead of the `this.el`. For example, + * setting this to true on a Panel will cause only the body to be masked. + * @return {Ext.LoadMask} The LoadMask instance that has just been shown. + */ + setLoading : function(load, targetEl) { + var me = this, + config = { + target: me + }; + + if (me.rendered) { + Ext.destroy(me.loadMask); + me.loadMask = null; + + if (load !== false && !me.collapsed) { + if (Ext.isObject(load)) { + Ext.apply(config, load); + } else if (Ext.isString(load)) { + config.msg = load; + } + + if (targetEl) { + Ext.applyIf(config, { + useTargetEl: true + }); + } + me.loadMask = new Ext.LoadMask(config); + me.loadMask.show(); + } + } + return me.loadMask; + }, + + beforeSetPosition: function () { + var me = this, + pos = me.callParent(arguments), // pass all args on for signature decoding + adj; + + if (pos) { + adj = me.adjustPosition(pos.x, pos.y); + pos.x = adj.x; + pos.y = adj.y; + } + return pos || null; + }, + + afterSetPosition: function(ax, ay) { + this.onPosition(ax, ay); + this.fireEvent('move', this, ax, ay); + }, + + /** + * Displays component at specific xy position. + * A floating component (like a menu) is positioned relative to its ownerCt if any. + * Useful for popping up a context menu: + * + * listeners: { + * itemcontextmenu: function(view, record, item, index, event, options) { + * Ext.create('Ext.menu.Menu', { + * width: 100, + * height: 100, + * margin: '0 0 10 0', + * items: [{ + * text: 'regular item 1' + * },{ + * text: 'regular item 2' + * },{ + * text: 'regular item 3' + * }] + * }).showAt(event.getXY()); + * } + * } + * + * @param {Number/Number[]} x The new x position or array of `[x,y]`. + * @param {Number} [y] The new y position + * @param {Boolean/Object} [animate] True to animate the Component into its new position. You may also pass an + * animation configuration. + * @return {Ext.Component} this + */ + showAt: function(x, y, animate) { + var me = this; + + // Not rendered, then animating to a position is meaningless, + // just set the x,y position and allow show's processing to work. + if (!me.rendered && (me.autoRender || me.floating)) { + me.x = x; + me.y = y; + return me.show(); + } + if (me.floating) { + me.setPosition(x, y, animate); + } else { + me.setPagePosition(x, y, animate); + } + me.show(); + }, + + /** + * Shows this component by the specified {@link Ext.Component Component} or {@link Ext.Element Element}. + * Used when this component is {@link #floating}. + * @param {Ext.Component/Ext.dom.Element} component The {@link Ext.Component} or {@link Ext.Element} to show the component by. + * @param {String} [position] Alignment position as used by {@link Ext.util.Positionable#getAlignToXY}. + * Defaults to `{@link #defaultAlign}`. + * @param {Number[]} [offsets] Alignment offsets as used by {@link Ext.util.Positionable#getAlignToXY}. + * @return {Ext.Component} this + */ + showBy: function(cmp, pos, off) { + var me = this; + + // + if (!me.floating) { + Ext.log.warn('Using showBy on a non-floating component'); + return me; + } + // + + if (me.floating && cmp) { + me.show(); + + // Show may have been vetoed + if (me.rendered && !me.hidden) { + // Align to Component or Element using alignTo because normal show methods + // are container-relative, and we must align to the requested element or + // Component: + me.alignTo(cmp, pos || me.defaultAlign, off); + } + } + return me; + }, + + /** + * Sets the page XY position of the component. To set the left and top instead, use {@link #setPosition}. + * This method fires the {@link #event-move} event. + * @param {Number/Number[]} x The new x position or an array of `[x,y]`. + * @param {Number} [y] The new y position. + * @param {Boolean/Object} [animate] True to animate the Component into its new position. You may also pass an + * animation configuration. + * @return {Ext.Component} this + */ + setPagePosition: function(x, y, animate) { + var me = this, + p, + floatParentBox; + + if (Ext.isArray(x)) { + y = x[1]; + x = x[0]; + } + me.pageX = x; + me.pageY = y; + + if (me.floating) { + + // Floating Components which are registered with a Container have to have their x and y properties made relative + if (me.isContainedFloater()) { + floatParentBox = me.floatParent.getTargetEl().getViewRegion(); + if (Ext.isNumber(x) && Ext.isNumber(floatParentBox.left)) { + x -= floatParentBox.left; + } + if (Ext.isNumber(y) && Ext.isNumber(floatParentBox.top)) { + y -= floatParentBox.top; + } + } else { + p = me.el.translateXY(x, y); + x = p.x; + y = p.y; + } + + me.setPosition(x, y, animate); + } else { + p = me.el.translateXY(x, y); + me.setPosition(p.x, p.y, animate); + } + + return me; + }, + + // Utility method to determine if a Component is floating, and has an owning Container whose coordinate system + // it must be positioned in when using setPosition. + isContainedFloater: function() { + return (this.floating && this.floatParent); + }, + + /** + * Sets the current box measurements of the component's underlying element. + * @param {Object} box An object in the format {x, y, width, height} + * @return {Ext.Component} this + */ + updateBox : function(box){ + this.setSize(box.width, box.height); + this.setPagePosition(box.x, box.y); + return this; + }, + + // Include margins + getOuterSize: function() { + var el = this.el; + return { + width: el.getWidth() + el.getMargin('lr'), + height: el.getHeight() + el.getMargin('tb') + }; + }, + + // @private + adjustPosition: function(x, y) { + var me = this, + floatParentBox; + + // Floating Components being positioned in their ownerCt have to be made absolute. + if (me.isContainedFloater()) { + floatParentBox = me.floatParent.getTargetEl().getViewRegion(); + x += floatParentBox.left; + y += floatParentBox.top; + } + + return { + x: x, + y: y + }; + }, + + /** + * Gets the current XY position of the component's underlying element. + * @param {Boolean} [local=false] If true the element's left and top are returned instead of page XY. + * @return {Number[]} The XY position of the element (e.g., [100, 200]) + */ + getPosition: function(local) { + var me = this, + xy, + isContainedFloater = me.isContainedFloater(), + floatParentBox; + + // Local position for non-floaters means element's local position + if ((local === true) && !isContainedFloater) { + return [me.getLocalX(), me.getLocalY()]; + } + + xy = me.getXY(); + + // Local position for floaters means position relative to the container's target element + if ((local === true) && isContainedFloater) { + floatParentBox = me.floatParent.getTargetEl().getViewRegion(); + xy[0] -= floatParentBox.left; + xy[1] -= floatParentBox.top; + } + return xy; + }, + + getId: function() { + var me = this, + xtype; + + if (!me.id) { + xtype = me.getXType(); + if (xtype) { + xtype = xtype.replace(Ext.Component.INVALID_ID_CHARS_Re, '-'); + } else { + xtype = Ext.name.toLowerCase() + '-comp'; + } + me.id = xtype + '-' + me.getAutoId(); + } + return me.id; + }, + + /** + * Shows this Component, rendering it first if {@link #autoRender} or {@link #floating} are `true`. + * + * After being shown, a {@link #floating} Component (such as a {@link Ext.window.Window}), is activated it and + * brought to the front of its {@link #zIndexManager z-index stack}. + * + * @param {String/Ext.Element} [animateTarget=null] **only valid for {@link #floating} Components such as {@link + * Ext.window.Window Window}s or {@link Ext.tip.ToolTip ToolTip}s, or regular Components which have been configured + * with `floating: true`.** The target from which the Component should animate from while opening. + * @param {Function} [callback] A callback function to call after the Component is displayed. + * Only necessary if animation was specified. + * @param {Object} [scope] The scope (`this` reference) in which the callback is executed. + * Defaults to this Component. + * @return {Ext.Component} this + */ + show: function(animateTarget, cb, scope) { + var me = this, + rendered = me.rendered; + + if (me.hierarchicallyHidden || (me.floating && !rendered && me.isHierarchicallyHidden())) { + // If this is a hierarchically hidden floating component, we need to stash + // the arguments to this call so that the call can be deferred until the next + // time syncHidden() is called. + if (!rendered) { + // If the component has not yet been rendered it requires special treatment. + // Normally, for rendered components we can just set the pendingShow property + // and syncHidden() listens to events in the hierarchyEventSource and calls + // show() when this component becomes hierarchically visible. However, + // if the component has not yet been rendered the hierarchy event listeners + // have not yet been attached (since Floating is initialized during the + // render phase. This means we have to initialize the hierarchy event + // listeners right now to ensure that the component will show itself when + // it becomes hierarchically visible. + me.initHierarchyEvents(); + } + // defer the show call until next syncHidden(), but ignore animateTarget. + if (arguments.length > 1) { + arguments[0] = null; + me.pendingShow = arguments; + } else { + me.pendingShow = true; + } + } else if (rendered && me.isVisible()) { + if (me.toFrontOnShow && me.floating) { + me.toFront(); + } + } else { + if (me.fireEvent('beforeshow', me) !== false) { + me.hidden = false; + delete this.getHierarchyState().hidden; + // Render on first show if there is an autoRender config, or if this + // is a floater (Window, Menu, BoundList etc). + + // We suspend layouts here because floaters/autoRenders + // will layout when onShow is called. If the render succeeded, + // the layout will be trigger inside onShow, so we don't flush + // in the first block. If, for some reason we couldn't render, then + // we resume layouts and force a flush because we don't know if something + // will force it. + Ext.suspendLayouts(); + if (!rendered && (me.autoRender || me.floating)) { + me.doAutoRender(); + rendered = me.rendered; + } + + if (rendered) { + me.beforeShow(); + Ext.resumeLayouts(); + me.onShow.apply(me, arguments); + me.afterShow.apply(me, arguments); + } else { + Ext.resumeLayouts(true); + } + } else { + me.onShowVeto(); + } + } + return me; + }, + + onShowVeto: Ext.emptyFn, + + /** + * Invoked before the Component is shown. + * + * @method + * @template + * @protected + */ + beforeShow: Ext.emptyFn, + + /** + * Allows addition of behavior to the show operation. After + * calling the superclass's onShow, the Component will be visible. + * + * Override in subclasses where more complex behaviour is needed. + * + * Gets passed the same parameters as #show. + * + * @param {String/Ext.Element} [animateTarget] + * @param {Function} [callback] + * @param {Object} [scope] + * + * @template + * @protected + */ + onShow: function() { + var me = this; + + me.el.show(); + me.callParent(arguments); + + // Constraining/containing element may have changed size while this Component was hidden + if (me.floating) { + if (me.maximized) { + me.fitContainer(); + } + else if (me.constrain) { + me.doConstrain(); + } + } + }, + + getAnimateTarget: function(target){ + target = target || this.animateTarget; + if (target) { + target = target.isComponent ? target.getEl() : Ext.get(target); + } + return target || null; + }, + + /** + * Invoked after the Component is shown (after #onShow is called). + * + * Gets passed the same parameters as #show. + * + * @param {String/Ext.Element} [animateTarget] + * @param {Function} [callback] + * @param {Object} [scope] + * + * @template + * @protected + */ + afterShow: function(animateTarget, cb, scope) { + var me = this, + myEl = me.el, + fromBox, + toBox, + ghostPanel; + + // Default to configured animate target if none passed + animateTarget = me.getAnimateTarget(animateTarget); + + // Need to be able to ghost the Component + if (!me.ghost) { + animateTarget = null; + } + // If we're animating, kick of an animation of the ghost from the target to the *Element* current box + if (animateTarget) { + toBox = { + x: myEl.getX(), + y: myEl.getY(), + width: myEl.dom.offsetWidth, + height: myEl.dom.offsetHeight + }; + fromBox = { + x: animateTarget.getX(), + y: animateTarget.getY(), + width: animateTarget.dom.offsetWidth, + height: animateTarget.dom.offsetHeight + }; + myEl.addCls(me.offsetsCls); + ghostPanel = me.ghost(); + ghostPanel.el.stopAnimation(); + + // Shunting it offscreen immediately, *before* the Animation class grabs it ensure no flicker. + ghostPanel.setX(-10000); + + me.ghostBox = toBox; + ghostPanel.el.animate({ + from: fromBox, + to: toBox, + listeners: { + afteranimate: function() { + delete ghostPanel.componentLayout.lastComponentSize; + me.unghost(); + delete me.ghostBox; + myEl.removeCls(me.offsetsCls); + me.onShowComplete(cb, scope); + } + } + }); + } + else { + me.onShowComplete(cb, scope); + } + me.fireHierarchyEvent('show'); + }, + + /** + * Invoked after the #afterShow method is complete. + * + * Gets passed the same `callback` and `scope` parameters that #afterShow received. + * + * @param {Function} [callback] + * @param {Object} [scope] + * + * @template + * @protected + */ + onShowComplete: function(cb, scope) { + var me = this; + if (me.floating) { + me.toFront(); + me.onFloatShow(); + } + Ext.callback(cb, scope || me); + me.fireEvent('show', me); + delete me.hiddenByLayout; + }, + + /** + * Hides this Component, setting it to invisible using the configured {@link #hideMode}. + * @param {String/Ext.Element/Ext.Component} [animateTarget=null] **only valid for {@link #cfg-floating} Components + * such as {@link Ext.window.Window Window}s or {@link Ext.tip.ToolTip ToolTip}s, or regular Components which have + * been configured with `floating: true`.**. The target to which the Component should animate while hiding. + * @param {Function} [callback] A callback function to call after the Component is hidden. + * @param {Object} [scope] The scope (`this` reference) in which the callback is executed. + * Defaults to this Component. + * @return {Ext.Component} this + */ + hide: function(animateTarget, cb, scope) { + var me = this, + continueHide; + + if (me.pendingShow) { + // If this is a hierarchically hidden floating component with a pending show + // hide() simply cancels the pending show. + delete me.pendingShow; + } if (!(me.rendered && !me.isVisible())) { + continueHide = (me.fireEvent('beforehide', me) !== false); + if (me.hierarchicallyHidden || continueHide) { + me.hidden = true; + me.getHierarchyState().hidden = true; + if (me.rendered) { + me.onHide.apply(me, arguments); + } + } + } + return me; + }, + + /** + * Possibly animates down to a target element. + * + * Allows addition of behavior to the hide operation. After + * calling the superclass’s onHide, the Component will be hidden. + * + * Gets passed the same parameters as #hide. + * + * @param {String/Ext.Element/Ext.Component} [animateTarget] + * @param {Function} [callback] + * @param {Object} [scope] + * + * @template + * @protected + */ + onHide: function(animateTarget, cb, scope) { + var me = this, + ghostPanel, + fromSize, + toBox; + + // Default to configured animate target if none passed + animateTarget = me.getAnimateTarget(animateTarget); + + // Need to be able to ghost the Component + if (!me.ghost) { + animateTarget = null; + } + // If we're animating, kick off an animation of the ghost down to the target + if (animateTarget) { + toBox = { + x: animateTarget.getX(), + y: animateTarget.getY(), + width: animateTarget.dom.offsetWidth, + height: animateTarget.dom.offsetHeight + }; + ghostPanel = me.ghost(); + ghostPanel.el.stopAnimation(); + fromSize = me.getSize(); + ghostPanel.el.animate({ + to: toBox, + listeners: { + afteranimate: function() { + delete ghostPanel.componentLayout.lastComponentSize; + ghostPanel.el.hide(); + ghostPanel.el.setSize(fromSize); + me.afterHide(cb, scope); + } + } + }); + } + me.el.hide(); + if (!animateTarget) { + me.afterHide(cb, scope); + } + }, + + /** + * Invoked after the Component has been hidden. + * + * Gets passed the same `callback` and `scope` parameters that #onHide received. + * + * @param {Function} [callback] + * @param {Object} [scope] + * + * @template + * @protected + */ + afterHide: function(cb, scope) { + var me = this, + activeEl = Ext.Element.getActiveElement(); + + me.hiddenByLayout = null; + + // we are the back-end method of onHide at this level, but our call to our parent + // may need to be async... so callParent won't quite work here... + Ext.AbstractComponent.prototype.onHide.call(me); + + // If hiding a Component which is focused, or contains focus: blur the focused el. + if (activeEl === me.el || me.el.contains(activeEl)) { + Ext.fly(activeEl).blur(); + } + + Ext.callback(cb, scope || me); + me.fireEvent('hide', me); + me.fireHierarchyEvent('hide'); + }, + + /** + * Allows addition of behavior to the destroy operation. + * After calling the superclass's onDestroy, the Component will be destroyed. + * + * @template + * @protected + */ + onDestroy: function() { + var me = this; + + // Ensure that any ancillary components are destroyed. + if (me.rendered) { + Ext.destroy( + me.dd, + me.resizer, + me.proxy, + me.proxyWrap, + me.resizerComponent + ); + } + delete me.focusTask; + me.callParent(); + }, + + deleteMembers: function() { + var args = arguments, + len = args.length, + i = 0; + for (; i < len; ++i) { + delete this[args[i]]; + } + }, + + /** + * Try to focus this component. + * @param {Boolean} [selectText] If applicable, true to also select the text in this component + * @param {Boolean/Number} [delay] Delay the focus this number of milliseconds (true for 10 milliseconds). + * @param {Function} [callback] Only needed if the `delay` parameter is used. A function to call upon focus. + * @param {Function} [scope] Only needed if the `delay` parameter is used. The scope (`this` reference) in which to execute the callback. + * @return {Ext.Component} The focused Component. Usually this Component. Some Containers may + * delegate focus to a descendant Component ({@link Ext.window.Window Window}s can do this through their + * {@link Ext.window.Window#defaultFocus defaultFocus} config option. + */ + focus: function(selectText, delay, callback, scope) { + var me = this, + focusEl, + focusElDom, + containerScrollTop; + + // If delay is wanted, queue a call to this function. + if (delay) { + if (!me.focusTask) { + // One global DelayedTask to assign focus + // So that the last focus call wins. + Ext.Component.prototype.focusTask = new Ext.util.DelayedTask(me.focus); + } + me.focusTask.delay(Ext.isNumber(delay) ? delay : 10, null, me, [selectText, false, callback, scope]); + return me; + } + + // An immediate focus call must cancel any outstanding delayed focus calls. + if (me.focusTask) { + me.focusTask.cancel(); + } + + if (me.rendered && !me.isDestroyed && me.isVisible(true) && (focusEl = me.getFocusEl())) { + + // getFocusEl might return a Component if a Container wishes to delegate focus to a descendant. + // Window can do this via its defaultFocus configuration which can reference a Button. + if (focusEl.isComponent) { + return focusEl.focus(selectText, delay); + } + + // If it was an Element with a dom property + if ((focusElDom = focusEl.dom)) { + + // Not a natural focus holding element, add a tab index to make it programatically focusable. + if (focusEl.needsTabIndex()) { + focusElDom.tabIndex = -1; + } + + if (me.floating) { + containerScrollTop = me.container.dom.scrollTop; + } + + // Focus the element. + // The focusEl has a DOM focus listener on it which invokes the Component's onFocus method + // to perform Component-specific focus processing + focusEl.focus(); + if (selectText === true) { + focusElDom.select(); + } + + // Call the callback when focus is done + Ext.callback(callback, scope); + } + + // Focusing a floating Component brings it to the front of its stack. + // this is performed by its zIndexManager. Pass preventFocus true to avoid recursion. + if (me.floating) { + me.toFront(true); + if (containerScrollTop !== undefined) { + me.container.dom.scrollTop = containerScrollTop; + } + } + } + return me; + }, + + /** + * Cancel any deferred focus on this component + * @protected + */ + cancelFocus: function() { + var task = this.focusTask; + if (task) { + task.cancel(); + } + }, + + // @private + blur: function() { + var focusEl; + if (this.rendered && (focusEl = this.getFocusEl())) { + focusEl.blur(); + } + return this; + }, + + getEl: function() { + return this.el; + }, + + // Deprecate 5.0 + getResizeEl: function() { + return this.el; + }, + + // Deprecate 5.0 + getPositionEl: function() { + return this.el; + }, + + // Deprecate 5.0 + getActionEl: function() { + return this.el; + }, + + // Deprecate 5.0 + getVisibilityEl: function() { + return this.el; + }, + + /* + * @protected + * Used by {@link Ext.ComponentQuery ComponentQuery}, and the {@link Ext.AbstractComponent#up up} method to find the + * owning Component in the linkage hierarchy. + * + * By default this returns the Container which contains this Component. + * + * This may be overriden by Component authors who implement ownership hierarchies which are not + * based upon ownerCt, such as BoundLists being owned by Fields or Menus being owned by Buttons. + */ + getRefOwner: function() { + return this.ownerCt || this.floatParent; + }, + + /** + * @protected + * Implements an upward event bubbling policy. By default a Component bubbles events up to its {@link #getRefOwner reference owner}. + * + * Component subclasses may implement a different bubbling strategy by overriding this method. + */ + getBubbleTarget: function() { + return this.getRefOwner(); + }, + + // @private + getContentTarget: function() { + return this.el; + }, + + /** + * Clone the current component using the original config values passed into this instance by default. + * @param {Object} overrides A new config containing any properties to override in the cloned version. + * An id property can be passed on this object, otherwise one will be generated to avoid duplicates. + * @return {Ext.Component} clone The cloned copy of this component + */ + cloneConfig: function(overrides) { + overrides = overrides || {}; + var id = overrides.id || Ext.id(), + cfg = Ext.applyIf(overrides, this.initialConfig), + self; + + cfg.id = id; + + self = Ext.getClass(this); + + // prevent dup id + return new self(cfg); + }, + + /** + * Gets the xtype for this component as registered with {@link Ext.ComponentManager}. For a list of all available + * xtypes, see the {@link Ext.Component} header. Example usage: + * + * var t = new Ext.form.field.Text(); + * alert(t.getXType()); // alerts 'textfield' + * + * @return {String} The xtype + */ + getXType: function() { + return this.self.xtype; + }, + + /** + * Find a container above this component at any level by a custom function. If the passed function returns true, the + * container will be returned. + * + * See also the {@link Ext.Component#up up} method. + * + * @param {Function} fn The custom function to call with the arguments (container, this component). + * @return {Ext.container.Container} The first Container for which the custom function returns true + */ + findParentBy: function(fn) { + var p; + + // Iterate up the ownerCt chain until there's no ownerCt, or we find an ancestor which matches using the selector function. + for (p = this.getBubbleTarget(); p && !fn(p, this); p = p.getBubbleTarget()) { + // do nothing + } + return p || null; + }, + + /** + * Find a container above this component at any level by xtype or class + * + * See also the {@link Ext.Component#up up} method. + * + * @param {String/Ext.Class} xtype The xtype string for a component, or the class of the component directly + * @return {Ext.container.Container} The first Container which matches the given xtype or class + */ + findParentByType: function(xtype) { + return Ext.isFunction(xtype) ? + this.findParentBy(function(p) { + return p.constructor === xtype; + }) + : + this.up(xtype); + }, + + /** + * Bubbles up the component/container heirarchy, calling the specified function with each component. The scope + * (*this*) of function call will be the scope provided or the current component. The arguments to the function will + * be the args provided or the current component. If the function returns false at any point, the bubble is stopped. + * + * @param {Function} fn The function to call + * @param {Object} [scope] The scope of the function. Defaults to current node. + * @param {Array} [args] The args to call the function with. Defaults to passing the current component. + * @return {Ext.Component} this + */ + bubble: function(fn, scope, args) { + var p = this; + while (p) { + if (fn.apply(scope || p, args || [p]) === false) { + break; + } + p = p.getBubbleTarget(); + } + return this; + }, + + getProxy: function() { + var me = this, + target; + + if (!me.proxy) { + target = Ext.getBody(); + me.proxy = me.el.createProxy(Ext.baseCSSPrefix + 'proxy-el', target, true); + } + return me.proxy; + }, + + /* + * For more information on the hierarchy events, see the note for the + * hierarchyEventSource observer defined in the onClassCreated callback. + * + * This functionality is contained in Component (as opposed to Container) + * because a Component can be the ownerCt for a floating component (loadmask), + * and the loadmask needs to know when its owner is shown/hidden via the + * hierarchyEventSource so that its hidden state can be synchronized. + * + * TODO: merge this functionality with Ext.globalEvents + */ + fireHierarchyEvent: function (ename) { + this.hierarchyEventSource.fireEvent(ename, this); + }, + + onAdded: function() { + this.callParent(arguments); + if (this.hierarchyEventSource.hasListeners.added) { + this.fireHierarchyEvent('added'); + } + } +}, function () { + /* + * The observer below is used to be able to detect showing/hiding at various levels + * in the hierarchy. While it's not particularly expensive to bubble an event up, + * cascading an event down can be quite costly. + * + * The main usage for this is to do with floating components. For example, the load mask + * is a floating component. The component it is masking may be inside several containers. + * As such, we need to know when component is hidden, either directly, or via a parent + * container being hidden. We can subscribe to these events and filter out the appropriate + * container. + */ + this.hierarchyEventSource = this.prototype.hierarchyEventSource = new Ext.util.Observable({ events: { + hide: true, + show: true, + collapse: true, + expand: true, + added: true + }}); +}); diff --git a/extjs-django/marvel/static/extjs/src/ComponentLoader.js b/extjs-django/marvel/static/extjs/src/ComponentLoader.js new file mode 100644 index 0000000..21b0121 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/ComponentLoader.js @@ -0,0 +1,229 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * This class is used to load content via Ajax into a {@link Ext.Component}. In general + * this class will not be instanced directly, rather a loader configuration will be passed to the + * constructor of the {@link Ext.Component}. + * + * ## HTML Renderer + * + * By default, the content loaded will be processed as raw html. The response text + * from the request is taken and added to the component. This can be used in + * conjunction with the {@link #scripts} option to execute any inline scripts in + * the resulting content. Using this renderer has the same effect as passing the + * {@link Ext.Component#html} configuration option. + * + * ## Data Renderer + * + * This renderer allows content to be added by using JSON data and a {@link Ext.XTemplate}. + * The content received from the response is passed to the {@link Ext.Component#update} method. + * This content is run through the attached {@link Ext.Component#tpl} and the data is added to + * the Component. Using this renderer has the same effect as using the {@link Ext.Component#data} + * configuration in conjunction with a {@link Ext.Component#tpl}. + * + * ## Component Renderer + * + * This renderer can only be used with a {@link Ext.container.Container} and subclasses. It allows for + * Components to be loaded remotely into a Container. The response is expected to be a single/series of + * {@link Ext.Component} configuration objects. When the response is received, the data is decoded + * and then passed to {@link Ext.container.Container#method-add}. Using this renderer has the same effect as specifying + * the {@link Ext.container.Container#cfg-items} configuration on a Container. + * + * ## Custom Renderer + * + * A custom function can be passed to handle any other special case, see the {@link #renderer} option. + * + * ## Example Usage + * + * var cmp = Ext.create('Ext.Component', { + * renderTo: Ext.getBody(), + * tpl: '{firstName} - {lastName}', + * loader: { + * url: 'myPage.php', + * renderer: 'data', + * params: { + * userId: 1 + * } + * } + * }); + * + * // call the loader manually (or use autoLoad:true instead) + * cmp.getLoader().load(); + */ +Ext.define('Ext.ComponentLoader', { + + /* Begin Definitions */ + + extend: 'Ext.ElementLoader', + + statics: { + Renderer: { + Data: function(loader, response, active){ + var success = true; + try { + loader.getTarget().update(Ext.decode(response.responseText)); + } catch (e) { + success = false; + } + return success; + }, + + Component: function(loader, response, active){ + var success = true, + target = loader.getTarget(), + items = []; + + // + if (!target.isContainer) { + Ext.Error.raise({ + target: target, + msg: 'Components can only be loaded into a container' + }); + } + // + + try { + items = Ext.decode(response.responseText); + } catch (e) { + success = false; + } + + if (success) { + target.suspendLayouts(); + if (active.removeAll) { + target.removeAll(); + } + target.add(items); + target.resumeLayouts(true); + } + return success; + } + } + }, + + /* End Definitions */ + + /** + * @cfg {Ext.Component/String} target The target {@link Ext.Component} for the loader. + * If a string is passed it will be looked up via the id. + */ + target: null, + + /** + * @cfg {Boolean/Object} loadMask True or a {@link Ext.LoadMask} configuration to enable masking during loading. + */ + loadMask: false, + + /** + * @cfg {Boolean} scripts True to parse any inline script tags in the response. This only used when using the html + * {@link #renderer}. + */ + + /** + * @cfg {String/Function} renderer + +The type of content that is to be loaded into, which can be one of 3 types: + ++ **html** : Loads raw html content, see {@link Ext.Component#html} ++ **data** : Loads raw html content, see {@link Ext.Component#data} ++ **component** : Loads child {Ext.Component} instances. This option is only valid when used with a Container. + +Alternatively, you can pass a function which is called with the following parameters. + ++ loader - Loader instance ++ response - The server response ++ active - The active request + +The function must return false is loading is not successful. Below is a sample of using a custom renderer: + + new Ext.Component({ + loader: { + url: 'myPage.php', + renderer: function(loader, response, active) { + var text = response.responseText; + loader.getTarget().update('The response is ' + text); + return true; + } + } + }); + */ + renderer: 'html', + + /** + * Set a {Ext.Component} as the target of this loader. Note that if the target is changed, + * any active requests will be aborted. + * @param {String/Ext.Component} target The component to be the target of this loader. If a string is passed + * it will be looked up via its id. + */ + setTarget: function(target){ + var me = this; + + if (Ext.isString(target)) { + target = Ext.getCmp(target); + } + + if (me.target && me.target != target) { + me.abort(); + } + me.target = target; + }, + + // inherit docs + removeMask: function(){ + this.target.setLoading(false); + }, + + /** + * Add the mask on the target + * @private + * @param {Boolean/Object} mask The mask configuration + */ + addMask: function(mask){ + this.target.setLoading(mask); + }, + + + setOptions: function(active, options){ + active.removeAll = Ext.isDefined(options.removeAll) ? options.removeAll : this.removeAll; + }, + + /** + * Gets the renderer to use + * @private + * @param {String/Function} renderer The renderer to use + * @return {Function} A rendering function to use. + */ + getRenderer: function(renderer){ + if (Ext.isFunction(renderer)) { + return renderer; + } + + var renderers = this.statics().Renderer; + switch (renderer) { + case 'component': + return renderers.Component; + case 'data': + return renderers.Data; + default: + return Ext.ElementLoader.Renderer.Html; + } + } +}); diff --git a/extjs-django/marvel/static/extjs/src/ComponentManager.js b/extjs-django/marvel/static/extjs/src/ComponentManager.js new file mode 100644 index 0000000..00eadff --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/ComponentManager.js @@ -0,0 +1,81 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.ComponentManager + *

    Provides a registry of all Components (instances of {@link Ext.Component} or any subclass + * thereof) on a page so that they can be easily accessed by {@link Ext.Component component} + * {@link Ext.Component#id id} (see {@link #get}, or the convenience method {@link Ext#getCmp Ext.getCmp}).

    + *

    This object also provides a registry of available Component classes + * indexed by a mnemonic code known as the Component's {@link Ext.Component#xtype xtype}. + * The xtype provides a way to avoid instantiating child Components + * when creating a full, nested config object for a complete Ext page.

    + *

    A child Component may be specified simply as a config object + * as long as the correct {@link Ext.Component#xtype xtype} is specified so that if and when the Component + * needs rendering, the correct type can be looked up for lazy instantiation.

    + *

    For a list of all available {@link Ext.Component#xtype xtypes}, see {@link Ext.Component}.

    + * @singleton + */ +Ext.define('Ext.ComponentManager', { + extend: 'Ext.AbstractManager', + alternateClassName: 'Ext.ComponentMgr', + + singleton: true, + + typeName: 'xtype', + + /** + * Creates a new Component from the specified config object using the + * config object's xtype to determine the class to instantiate. + * @param {Object} config A configuration object for the Component you wish to create. + * @param {String} defaultType (optional) The xtype to use if the config object does not + * contain a xtype. (Optional if the config contains a xtype). + * @return {Ext.Component} The newly instantiated Component. + */ + create: function(component, defaultType){ + if (typeof component == 'string') { + return Ext.widget(component); + } + if (component.isComponent) { + return component; + } + return Ext.widget(component.xtype || defaultType, component); + }, + + registerType: function(type, cls) { + this.types[type] = cls; + cls[this.typeName] = type; + cls.prototype[this.typeName] = type; + } +}, +function () { + /** + * This is shorthand reference to {@link Ext.ComponentManager#get}. + * Looks up an existing {@link Ext.Component Component} by {@link Ext.Component#id id} + * + * @param {String} id The component {@link Ext.Component#id id} + * @return Ext.Component The Component, `undefined` if not found, or `null` if a + * Class was found. + * @member Ext + */ + Ext.getCmp = function(id) { + return Ext.ComponentManager.get(id); + }; +}); diff --git a/extjs-django/marvel/static/extjs/src/ComponentQuery.js b/extjs-django/marvel/static/extjs/src/ComponentQuery.js new file mode 100644 index 0000000..df5c26d --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/ComponentQuery.js @@ -0,0 +1,910 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * Provides searching of Components within Ext.ComponentManager (globally) or a specific + * Ext.container.Container on the document with a similar syntax to a CSS selector. + * Returns Array of matching Components, or empty Array. + * + * ## Basic Component lookup + * + * Components can be retrieved by using their {@link Ext.Component xtype}: + * + * - `component` + * - `gridpanel` + * + * Matching by `xtype` matches inherited types, so in the following code, the previous field + * *of any type which inherits from `TextField`* will be found: + * + * prevField = myField.previousNode('textfield'); + * + * To match only the exact type, pass the "shallow" flag by adding `(true)` to xtype + * (See AbstractComponent's {@link Ext.AbstractComponent#isXType isXType} method): + * + * prevTextField = myField.previousNode('textfield(true)'); + * + * You can search Components by their `id` or `itemId` property, prefixed with a #: + * + * #myContainer + * + * Component `xtype` and `id` or `itemId` can be used together to avoid possible + * id collisions between Components of different types: + * + * panel#myPanel + * + * ## Traversing Component tree + * + * Components can be found by their relation to other Components. There are several + * relationship operators, mostly taken from CSS selectors: + * + * - **`E F`** All descendant Components of E that match F + * - **`E > F`** All direct children Components of E that match F + * - **`E ^ F`** All parent Components of E that match F + * + * Expressions between relationship operators are matched left to right, i.e. leftmost + * selector is applied first, then if one or more matches are found, relationship operator + * itself is applied, then next selector expression, etc. It is possible to combine + * relationship operators in complex selectors: + * + * window[title="Input form"] textfield[name=login] ^ form > button[action=submit] + * + * That selector can be read this way: Find a window with title "Input form", in that + * window find a TextField with name "login" at any depth (including subpanels and/or + * FieldSets), then find an `Ext.form.Panel` that is a parent of the TextField, and in + * that form find a direct child that is a button with custom property `action` set to + * value "submit". + * + * Whitespace on both sides of `^` and `>` operators is non-significant, i.e. can be + * omitted, but usually is used for clarity. + * + * ## Searching by Component attributes + * + * Components can be searched by their object property values (attributes). To do that, + * use attribute matching expression in square brackets: + * + * - `component[autoScroll]` - matches any Component that has `autoScroll` property with + * any truthy (non-empty, not `false`) value. + * - `panel[title="Test"]` - matches any Component that has `title` property set to + * "Test". Note that if the value does not contain spaces, the quotes are optional. + * + * Attributes can use any of the operators in {@link Ext.dom.Query DomQuery}'s + * {@link Ext.dom.Query#operators operators} to compare values. + * + * Prefixing the attribute name with an at sign `@` means that the property must be + * the object's `ownProperty`, not a property from the prototype chain. + * + * Specifications like `[propName]` check that the property is a truthy value. To check + * that the object has an `ownProperty` of a certain name, regardless of the value use + * the form `[?propName]`. + * + * The specified value is coerced to match the type of the property found in the + * candidate Component using {@link Ext#coerce}. + * + * If you need to find Components by their `itemId` property, use `#id` form; it will + * do the same but is easier to read. + * + * ## Attribute matching operators + * + * The '=' operator will return the results that **exactly** match the + * specified object property (attribute): + * + * Ext.ComponentQuery.query('panel[cls=my-cls]'); + * + * Will match the following Component: + * + * Ext.create('Ext.window.Window', { + * cls: 'my-cls' + * }); + * + * But will not match the following Component, because 'my-cls' is one value + * among others: + * + * Ext.create('Ext.panel.Panel', { + * cls: 'foo-cls my-cls bar-cls' + * }); + * + * You can use the '~=' operator instead, it will return Components with + * the property that **exactly** matches one of the whitespace-separated + * values. This is also true for properties that only have *one* value: + * + * Ext.ComponentQuery.query('panel[cls~=my-cls]'); + * + * Will match both Components: + * + * Ext.create('Ext.panel.Panel', { + * cls: 'foo-cls my-cls bar-cls' + * }); + * + * Ext.create('Ext.window.Window', { + * cls: 'my-cls' + * }); + * + * Generally, '=' operator is more suited for object properties other than + * CSS classes, while '~=' operator will work best with properties that + * hold lists of whitespace-separated CSS classes. + * + * The '^=' operator will return Components with specified attribute that + * start with the passed value: + * + * Ext.ComponentQuery.query('panel[title^=Sales]'); + * + * Will match the following Component: + * + * Ext.create('Ext.panel.Panel', { + * title: 'Sales estimate for Q4' + * }); + * + * The '$=' operator will return Components with specified properties that + * end with the passed value: + * + * Ext.ComponentQuery.query('field[fieldLabel$=name]'); + * + * Will match the following Component: + * + * Ext.create('Ext.form.field.Text', { + * fieldLabel: 'Enter your name' + * }); + * + * The following test will find panels with their `ownProperty` collapsed being equal to + * `false`. It will **not** match a collapsed property from the prototype chain. + * + * Ext.ComponentQuery.query('panel[@collapsed=false]'); + * + * Member expressions from candidate Components may be tested. If the expression returns + * a *truthy* value, the candidate Component will be included in the query: + * + * var disabledFields = myFormPanel.query("{isDisabled()}"); + * + * Such expressions are executed in Component's context, and the above expression is + * similar to running this snippet for every Component in your application: + * + * if (component.isDisabled()) { + * matches.push(component); + * } + * + * It is important to use only methods that are available in **every** Component instance + * to avoid run time exceptions. If you need to match your Components with a custom + * condition formula, you can augment `Ext.Component` to provide custom matcher that + * will return `false` by default, and override it in your custom classes: + * + * Ext.define('My.Component', { + * override: 'Ext.Component', + * myMatcher: function() { return false; } + * }); + * + * Ext.define('My.Panel', { + * extend: 'Ext.panel.Panel', + * requires: ['My.Component'], // Ensure that Component override is applied + * myMatcher: function(selector) { + * return selector === 'myPanel'; + * } + * }); + * + * After that you can use a selector with your custom matcher to find all instances + * of `My.Panel`: + * + * Ext.ComponentQuery.query("{myMatcher('myPanel')}"); + * + * However if you really need to use a custom matcher, you may find it easier to implement + * a custom Pseudo class instead (see below). + * + * ## Conditional matching + * + * Attribute matchers can be combined to select only Components that match **all** + * conditions (logical AND operator): + * + * Ext.ComponentQuery.query('panel[cls~=my-cls][floating=true][title$="sales data"]'); + * + * E.g., the query above will match only a Panel-descended Component that has 'my-cls' + * CSS class *and* is floating *and* with a title that ends with "sales data". + * + * Expressions separated with commas will match any Component that satisfies + * *either* expression (logical OR operator): + * + * Ext.ComponentQuery.query('field[fieldLabel^=User], field[fieldLabel*=password]'); + * + * E.g., the query above will match any field with field label starting with "User", + * *or* any field that has "password" in its label. + * + * ## Pseudo classes + * + * Pseudo classes may be used to filter results in the same way as in + * {@link Ext.dom.Query}. There are five default pseudo classes: + * + * * `not` Negates a selector. + * * `first` Filters out all except the first matching item for a selector. + * * `last` Filters out all except the last matching item for a selector. + * * `focusable` Filters out all except Components which are currently able to recieve + * focus. + * * `nth-child` Filters Components by ordinal position in the selection. + * + * These pseudo classes can be used with other matchers or without them: + * + * // Select first direct child button in any panel + * Ext.ComponentQuery.query('panel > button:first'); + * + * // Select last field in Profile form + * Ext.ComponentQuery.query('form[title=Profile] field:last'); + * + * // Find first focusable Component in a panel and focus it + * panel.down(':focusable').focus(); + * + * // Select any field that is not hidden in a form + * form.query('field:not(hiddenfield)'); + * + * Pseudo class `nth-child` can be used to find any child Component by its + * position relative to its siblings. This class' handler takes one argument + * that specifies the selection formula as `Xn` or `Xn+Y`: + * + * // Find every odd field in a form + * form.query('field:nth-child(2n+1)'); // or use shortcut: :nth-child(odd) + * + * // Find every even field in a form + * form.query('field:nth-child(2n)'); // or use shortcut: :nth-child(even) + * + * // Find every 3rd field in a form + * form.query('field:nth-child(3n)'); + * + * Pseudo classes can be combined to further filter the results, e.g., in the + * form example above we can modify the query to exclude hidden fields: + * + * // Find every 3rd non-hidden field in a form + * form.query('field:not(hiddenfield):nth-child(3n)'); + * + * Note that when combining pseudo classes, whitespace is significant, i.e. + * there should be no spaces between pseudo classes. This is a common mistake; + * if you accidentally type a space between `field` and `:not`, the query + * will not return any result because it will mean "find *field's children + * Components* that are not hidden fields...". + * + * ## Custom pseudo classes + * + * It is possible to define your own custom pseudo classes. In fact, a + * pseudo class is just a property in `Ext.ComponentQuery.pseudos` object + * that defines pseudo class name (property name) and pseudo class handler + * (property value): + * + * // Function receives array and returns a filtered array. + * Ext.ComponentQuery.pseudos.invalid = function(items) { + * var i = 0, l = items.length, c, result = []; + * for (; i < l; i++) { + * if (!(c = items[i]).isValid()) { + * result.push(c); + * } + * } + * return result; + * }; + * + * var invalidFields = myFormPanel.query('field:invalid'); + * if (invalidFields.length) { + * invalidFields[0].getEl().scrollIntoView(myFormPanel.body); + * for (var i = 0, l = invalidFields.length; i < l; i++) { + * invalidFields[i].getEl().frame("red"); + * } + * } + * + * Pseudo class handlers can be even more flexible, with a selector + * argument used to define the logic: + * + * // Handler receives array of itmes and selector in parentheses + * Ext.ComponentQuery.pseudos.titleRegex = function(components, selector) { + * var i = 0, l = components.length, c, result = [], regex = new RegExp(selector); + * for (; i < l; i++) { + * c = components[i]; + * if (c.title && regex.test(c.title)) { + * result.push(c); + * } + * } + * return result; + * } + * + * var salesTabs = tabPanel.query('panel:titleRegex("sales\\s+for\\s+201[123]")'); + * + * Be careful when using custom pseudo classes with MVC Controllers: when + * you use a pseudo class in Controller's `control` or `listen` component + * selectors, the pseudo class' handler function will be called very often + * and may slow down your application significantly. A good rule of thumb + * is to always specify Component xtype with the pseudo class so that the + * handlers are only called on Components that you need, and try to make + * the condition checks as cheap in terms of execution time as possible. + * Note how in the example above, handler function checks that Component + * *has* a title first, before running regex test on it. + * + * ## Query examples + * + * Queries return an array of Components. Here are some example queries: + * + * // retrieve all Ext.Panels in the document by xtype + * var panelsArray = Ext.ComponentQuery.query('panel'); + * + * // retrieve all Ext.Panels within the container with an id myCt + * var panelsWithinmyCt = Ext.ComponentQuery.query('#myCt panel'); + * + * // retrieve all direct children which are Ext.Panels within myCt + * var directChildPanel = Ext.ComponentQuery.query('#myCt > panel'); + * + * // retrieve all grids or trees + * var gridsAndTrees = Ext.ComponentQuery.query('gridpanel, treepanel'); + * + * // Focus first Component + * myFormPanel.child(':focusable').focus(); + * + * // Retrieve every odd text field in a form + * myFormPanel.query('textfield:nth-child(odd)'); + * + * // Retrieve every even field in a form, excluding hidden fields + * myFormPanel.query('field:not(hiddenfield):nth-child(even)'); + * + * For easy access to queries based from a particular Container see the + * {@link Ext.container.Container#query}, {@link Ext.container.Container#down} and + * {@link Ext.container.Container#child} methods. Also see + * {@link Ext.Component#up}. + */ +Ext.define('Ext.ComponentQuery', { + singleton: true, + requires: [ + 'Ext.ComponentManager', + 'Ext.dom.Query' + ] +}, function() { + + var cq = this, + domQueryOperators = Ext.dom.Query.operators, + nthRe = /(\d*)n\+?(\d*)/, + nthRe2 = /\D/, + + // A function source code pattern with a placeholder which accepts an expression which yields a truth value when applied + // as a member on each item in the passed array. + filterFnPattern = [ + 'var r = [],', + 'i = 0,', + 'it = items,', + 'l = it.length,', + 'c;', + 'for (; i < l; i++) {', + 'c = it[i];', + 'if (c.{0}) {', + 'r.push(c);', + '}', + '}', + 'return r;' + ].join(''), + + filterItems = function(items, operation) { + // Argument list for the operation is [ itemsArray, operationArg1, operationArg2...] + // The operation's method loops over each item in the candidate array and + // returns an array of items which match its criteria + return operation.method.apply(this, [ items ].concat(operation.args)); + }, + + getItems = function(items, mode) { + var result = [], + i = 0, + length = items.length, + candidate, + deep = mode !== '>'; + + for (; i < length; i++) { + candidate = items[i]; + if (candidate.getRefItems) { + result = result.concat(candidate.getRefItems(deep)); + } + } + return result; + }, + + getAncestors = function(items) { + var result = [], + i = 0, + length = items.length, + candidate; + for (; i < length; i++) { + candidate = items[i]; + while (!!(candidate = candidate.getRefOwner())) { + result.push(candidate); + } + } + return result; + }, + + // Filters the passed candidate array and returns only items which match the passed xtype + filterByXType = function(items, xtype, shallow) { + if (xtype === '*') { + return items.slice(); + } + else { + var result = [], + i = 0, + length = items.length, + candidate; + for (; i < length; i++) { + candidate = items[i]; + if (candidate.isXType(xtype, shallow)) { + result.push(candidate); + } + } + return result; + } + }, + + // Filters the passed candidate array and returns only items which have the passed className + filterByClassName = function(items, className) { + var result = [], + i = 0, + length = items.length, + candidate; + for (; i < length; i++) { + candidate = items[i]; + if (candidate.hasCls(className)) { + result.push(candidate); + } + } + return result; + }, + + // Filters the passed candidate array and returns only items which have the specified property match + filterByAttribute = function(items, property, operator, compareTo) { + var result = [], + i = 0, + length = items.length, + mustBeOwnProperty, + presenceOnly, + candidate, propValue, + j, propLen; + + // Prefixing property name with an @ means that the property must be in the candidate, not in its prototype + if (property.charAt(0) === '@') { + mustBeOwnProperty = true; + property = property.substr(1); + } + if (property.charAt(0) === '?') { + mustBeOwnProperty = true; + presenceOnly = true; + property = property.substr(1); + } + + for (; i < length; i++) { + candidate = items[i]; + + // Check candidate hasOwnProperty is propName prefixed with a bang. + if (!mustBeOwnProperty || candidate.hasOwnProperty(property)) { + + // pull out property value to test + propValue = candidate[property]; + + if (presenceOnly) { + result.push(candidate); + } + // implies property is an array, and we must compare value against each element. + else if (operator === '~=') { + if (propValue) { + //We need an array + if (!Ext.isArray(propValue)) { + propValue = propValue.split(' '); + } + + for (j = 0, propLen = propValue.length; j < propLen; j++) { + if (domQueryOperators[operator](Ext.coerce(propValue[j], compareTo), compareTo)) { + result.push(candidate); + break; + } + } + } + } else if (!compareTo ? !!candidate[property] : domQueryOperators[operator](Ext.coerce(propValue, compareTo), compareTo)) { + result.push(candidate); + } + } + } + return result; + }, + + // Filters the passed candidate array and returns only items which have the specified itemId or id + filterById = function(items, id) { + var result = [], + i = 0, + length = items.length, + candidate; + for (; i < length; i++) { + candidate = items[i]; + if (candidate.getItemId() === id) { + result.push(candidate); + } + } + return result; + }, + + // Filters the passed candidate array and returns only items which the named pseudo class matcher filters in + filterByPseudo = function(items, name, value) { + return cq.pseudos[name](items, value); + }, + + // Determines leading mode + // > for direct child, and ^ to switch to ownerCt axis + modeRe = /^(\s?([>\^])\s?|\s|$)/, + + // Matches a token with possibly (true|false) appended for the "shallow" parameter + tokenRe = /^(#)?([\w\-]+|\*)(?:\((true|false)\))?/, + + matchers = [{ + // Checks for .xtype with possibly (true|false) appended for the "shallow" parameter + re: /^\.([\w\-]+)(?:\((true|false)\))?/, + method: filterByXType + }, { + // checks for [attribute=value], [attribute^=value], [attribute$=value], [attribute*=value], [attribute~=value], [attribute%=value], [attribute!=value] + // Allow [@attribute] to check truthy ownProperty + // Allow [?attribute] to check for presence of ownProperty + re: /^(?:\[((?:@|\?)?[\w\-\$]*[^\^\$\*~%!])\s?(?:(=|.=)\s?['"]?(.*?)["']?)?\])/, + method: filterByAttribute + }, { + // checks for #cmpItemId + re: /^#([\w\-]+)/, + method: filterById + }, { + // checks for :() + re: /^\:([\w\-]+)(?:\(((?:\{[^\}]+\})|(?:(?!\{)[^\s>\/]*?(?!\})))\))?/, + method: filterByPseudo + }, { + // checks for {} + re: /^(?:\{([^\}]+)\})/, + method: filterFnPattern + }]; + + // Internal class Ext.ComponentQuery.Query + cq.Query = Ext.extend(Object, { + constructor: function(cfg) { + cfg = cfg || {}; + Ext.apply(this, cfg); + }, + + // Executes this Query upon the selected root. + // The root provides the initial source of candidate Component matches which are progressively + // filtered by iterating through this Query's operations cache. + // If no root is provided, all registered Components are searched via the ComponentManager. + // root may be a Container who's descendant Components are filtered + // root may be a Component with an implementation of getRefItems which provides some nested Components such as the + // docked items within a Panel. + // root may be an array of candidate Components to filter using this Query. + execute : function(root) { + var operations = this.operations, + i = 0, + length = operations.length, + operation, + workingItems; + + // no root, use all Components in the document + if (!root) { + workingItems = Ext.ComponentManager.all.getArray(); + } + // Root is an iterable object like an Array, or system Collection, eg HtmlCollection + else if (Ext.isIterable(root)) { + workingItems = root; + } + // Root is a MixedCollection + else if (root.isMixedCollection) { + workingItems = root.items; + } + + // We are going to loop over our operations and take care of them + // one by one. + for (; i < length; i++) { + operation = operations[i]; + + // The mode operation requires some custom handling. + // All other operations essentially filter down our current + // working items, while mode replaces our current working + // items by getting children from each one of our current + // working items. The type of mode determines the type of + // children we get. (e.g. > only gets direct children) + if (operation.mode === '^') { + workingItems = getAncestors(workingItems || [root]); + } + else if (operation.mode) { + workingItems = getItems(workingItems || [root], operation.mode); + } + else { + workingItems = filterItems(workingItems || getItems([root]), operation); + } + + // If this is the last operation, it means our current working + // items are the final matched items. Thus return them! + if (i === length -1) { + return workingItems; + } + } + return []; + }, + + is: function(component) { + var operations = this.operations, + components = Ext.isArray(component) ? component : [component], + originalLength = components.length, + lastOperation = operations[operations.length-1], + ln, i; + + components = filterItems(components, lastOperation); + if (components.length === originalLength) { + if (operations.length > 1) { + for (i = 0, ln = components.length; i < ln; i++) { + if (Ext.Array.indexOf(this.execute(), components[i]) === -1) { + return false; + } + } + } + return true; + } + return false; + } + }); + + Ext.apply(this, { + + // private cache of selectors and matching ComponentQuery.Query objects + cache: {}, + + // private cache of pseudo class filter functions + pseudos: { + not: function(components, selector){ + var CQ = Ext.ComponentQuery, + i = 0, + length = components.length, + results = [], + index = -1, + component; + + for(; i < length; ++i) { + component = components[i]; + if (!CQ.is(component, selector)) { + results[++index] = component; + } + } + return results; + }, + first: function(components) { + var ret = []; + + if (components.length > 0) { + ret.push(components[0]); + } + return ret; + }, + last: function(components) { + var len = components.length, + ret = []; + + if (len > 0) { + ret.push(components[len - 1]); + } + return ret; + }, + focusable: function(cmps) { + var len = cmps.length, + results = [], + i = 0, + c; + + for (; i < len; i++) { + c = cmps[i]; + // If this is a generally focusable Component (has a focusEl, is rendered, enabled and visible) + // then it is currently focusable if focus management is enabled or if it is an input field, a button or a menu item + if (c.isFocusable()) { + results.push(c); + } + } + + return results; + }, + "nth-child" : function(c, a) { + var result = [], + m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a), + f = (m[1] || 1) - 0, l = m[2] - 0, + i, n, nodeIndex; + for (i = 0; n = c[i]; i++) { + nodeIndex = i + 1; + if (f == 1) { + if (l == 0 || nodeIndex == l) { + result.push(n); + } + } else if ((nodeIndex + l) % f == 0){ + result.push(n); + } + } + + return result; + } + }, + + /** + * Returns an array of matched Components from within the passed root object. + * + * This method filters returned Components in a similar way to how CSS selector based DOM + * queries work using a textual selector string. + * + * See class summary for details. + * + * @param {String} selector The selector string to filter returned Components + * @param {Ext.container.Container} [root] The Container within which to perform the query. + * If omitted, all Components within the document are included in the search. + * + * This parameter may also be an array of Components to filter according to the selector. + * @returns {Ext.Component[]} The matched Components. + * + * @member Ext.ComponentQuery + */ + query: function(selector, root) { + var selectors = selector.split(','), + length = selectors.length, + i = 0, + results = [], + noDupResults = [], + dupMatcher = {}, + query, resultsLn, cmp; + + for (; i < length; i++) { + selector = Ext.String.trim(selectors[i]); + query = this.cache[selector] || (this.cache[selector] = this.parse(selector)); + results = results.concat(query.execute(root)); + } + + // multiple selectors, potential to find duplicates + // lets filter them out. + if (length > 1) { + resultsLn = results.length; + for (i = 0; i < resultsLn; i++) { + cmp = results[i]; + if (!dupMatcher[cmp.id]) { + noDupResults.push(cmp); + dupMatcher[cmp.id] = true; + } + } + results = noDupResults; + } + return results; + }, + + /** + * Tests whether the passed Component matches the selector string. + * @param {Ext.Component} component The Component to test + * @param {String} selector The selector string to test against. + * @return {Boolean} True if the Component matches the selector. + * @member Ext.ComponentQuery + */ + is: function(component, selector) { + if (!selector) { + return true; + } + var selectors = selector.split(','), + length = selectors.length, + i = 0, + query; + + for (; i < length; i++) { + selector = Ext.String.trim(selectors[i]); + query = this.cache[selector] || (this.cache[selector] = this.parse(selector)); + if (query.is(component)) { + return true; + } + } + return false; + }, + + parse: function(selector) { + var operations = [], + length = matchers.length, + lastSelector, + tokenMatch, + matchedChar, + modeMatch, + selectorMatch, + i, matcher, method; + + // We are going to parse the beginning of the selector over and + // over again, slicing off the selector any portions we converted into an + // operation, until it is an empty string. + while (selector && lastSelector !== selector) { + lastSelector = selector; + + // First we check if we are dealing with a token like #, * or an xtype + tokenMatch = selector.match(tokenRe); + + if (tokenMatch) { + matchedChar = tokenMatch[1]; + + // If the token is prefixed with a # we push a filterById operation to our stack + if (matchedChar === '#') { + operations.push({ + method: filterById, + args: [Ext.String.trim(tokenMatch[2])] + }); + } + // If the token is prefixed with a . we push a filterByClassName operation to our stack + // FIXME: Not enabled yet. just needs \. adding to the tokenRe prefix + else if (matchedChar === '.') { + operations.push({ + method: filterByClassName, + args: [Ext.String.trim(tokenMatch[2])] + }); + } + // If the token is a * or an xtype string, we push a filterByXType + // operation to the stack. + else { + operations.push({ + method: filterByXType, + args: [Ext.String.trim(tokenMatch[2]), Boolean(tokenMatch[3])] + }); + } + + // Now we slice of the part we just converted into an operation + selector = selector.replace(tokenMatch[0], ''); + } + + // If the next part of the query is not a space or > or ^, it means we + // are going to check for more things that our current selection + // has to comply to. + while (!(modeMatch = selector.match(modeRe))) { + // Lets loop over each type of matcher and execute it + // on our current selector. + for (i = 0; selector && i < length; i++) { + matcher = matchers[i]; + selectorMatch = selector.match(matcher.re); + method = matcher.method; + + // If we have a match, add an operation with the method + // associated with this matcher, and pass the regular + // expression matches are arguments to the operation. + if (selectorMatch) { + operations.push({ + method: Ext.isString(matcher.method) + // Turn a string method into a function by formatting the string with our selector matche expression + // A new method is created for different match expressions, eg {id=='textfield-1024'} + // Every expression may be different in different selectors. + ? Ext.functionFactory('items', Ext.String.format.apply(Ext.String, [method].concat(selectorMatch.slice(1)))) + : matcher.method, + args: selectorMatch.slice(1) + }); + selector = selector.replace(selectorMatch[0], ''); + break; // Break on match + } + // Exhausted all matches: It's an error + if (i === (length - 1)) { + Ext.Error.raise('Invalid ComponentQuery selector: "' + arguments[0] + '"'); + } + } + } + + // Now we are going to check for a mode change. This means a space + // or a > to determine if we are going to select all the children + // of the currently matched items, or a ^ if we are going to use the + // ownerCt axis as the candidate source. + if (modeMatch[1]) { // Assignment, and test for truthiness! + operations.push({ + mode: modeMatch[2]||modeMatch[1] + }); + selector = selector.replace(modeMatch[0], ''); + } + } + + // Now that we have all our operations in an array, we are going + // to create a new Query using these operations. + return new cq.Query({ + operations: operations + }); + } + }); +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/Editor.js b/extjs-django/marvel/static/extjs/src/Editor.js new file mode 100644 index 0000000..ce6acd6 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/Editor.js @@ -0,0 +1,525 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * The Editor class is used to provide inline editing for elements on the page. The editor + * is backed by a {@link Ext.form.field.Field} that will be displayed to edit the underlying content. + * The editor is a floating Component, when the editor is shown it is automatically aligned to + * display over the top of the bound element it is editing. The Editor contains several options + * for how to handle key presses: + * + * - {@link #completeOnEnter} + * - {@link #cancelOnEsc} + * - {@link #swallowKeys} + * + * It also has options for how to use the value once the editor has been activated: + * + * - {@link #revertInvalid} + * - {@link #ignoreNoChange} + * - {@link #updateEl} + * + * Sample usage: + * + * var editor = new Ext.Editor({ + * updateEl: true, // update the innerHTML of the bound element when editing completes + * field: { + * xtype: 'textfield' + * } + * }); + * var el = Ext.get('my-text'); // The element to 'edit' + * editor.startEdit(el); // The value of the field will be taken as the innerHTML of the element. + * + * {@img Ext.Editor/Ext.Editor.png Ext.Editor component} + * + */ +Ext.define('Ext.Editor', { + + /* Begin Definitions */ + + extend: 'Ext.container.Container', + + alias: 'widget.editor', + + requires: ['Ext.layout.container.Editor'], + + /* End Definitions */ + + layout: 'editor', + + /** + * @cfg {Ext.form.field.Field} field + * The Field object (or descendant) or config object for field + */ + + /** + * @cfg {Boolean} allowBlur + * True to {@link #completeEdit complete the editing process} if in edit mode when the + * field is blurred. + */ + allowBlur: true, + + /** + * @cfg {Boolean/Object} autoSize + * True for the editor to automatically adopt the size of the underlying field. Otherwise, an object + * can be passed to indicate where to get each dimension. The available properties are 'boundEl' and + * 'field'. If a dimension is not specified, it will use the underlying height/width specified on + * the editor object. + * Examples: + * + * autoSize: true // The editor will be sized to the height/width of the field + * + * height: 21, + * autoSize: { + * width: 'boundEl' // The width will be determined by the width of the boundEl, the height from the editor (21) + * } + * + * autoSize: { + * width: 'field', // Width from the field + * height: 'boundEl' // Height from the boundEl + * } + */ + + /** + * @cfg {Boolean} revertInvalid + * True to automatically revert the field value and cancel the edit when the user completes an edit and the field + * validation fails + */ + revertInvalid: true, + + /** + * @cfg {Boolean} [ignoreNoChange=false] + * True to skip the edit completion process (no save, no events fired) if the user completes an edit and + * the value has not changed. Applies only to string values - edits for other data types + * will never be ignored. + */ + + /** + * @cfg {Boolean} [hideEl=true] + * False to keep the bound element visible while the editor is displayed + */ + + /** + * @cfg {Object} value + * The data value of the underlying field + */ + value : '', + + /** + * @cfg {String} alignment + * The position to align to (see {@link Ext.util.Positionable#alignTo} for more details). + */ + alignment: 'c-c?', + + /** + * @cfg {Number[]} offsets + * The offsets to use when aligning (see {@link Ext.util.Positionable#alignTo} for more details. + */ + offsets: [0, 0], + + /** + * @cfg {Boolean/String} shadow + * "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop" for bottom-right shadow. + */ + shadow : 'frame', + + /** + * @cfg {Boolean} constrain + * True to constrain the editor to the viewport + */ + constrain : false, + + /** + * @cfg {Boolean} swallowKeys + * Handle the keydown/keypress events so they don't propagate + */ + swallowKeys : true, + + /** + * @cfg {Boolean} completeOnEnter + * True to complete the edit when the enter key is pressed. + */ + completeOnEnter : true, + + /** + * @cfg {Boolean} cancelOnEsc + * True to cancel the edit when the escape key is pressed. + */ + cancelOnEsc : true, + + /** + * @cfg {Boolean} updateEl + * True to update the innerHTML of the bound element when the update completes + */ + updateEl : false, + + // Do not participate in the ZIndexManager's focus switching operations. + // When an editor is hidden, the ZIndexManager will not automatically activate + // the last visible floater on the stack. + focusOnToFront: false, + + /** + * @cfg {String/HTMLElement/Ext.Element} [parentEl=document.body] + * An element to render to. + */ + + // private overrides + hidden: true, + baseCls: Ext.baseCSSPrefix + 'editor', + + initComponent : function() { + var me = this, + field = me.field = Ext.ComponentManager.create(me.field, 'textfield'); + + Ext.apply(field, { + inEditor: true, + msgTarget: field.msgTarget == 'title' ? 'title' : 'qtip' + }); + me.mon(field, { + scope: me, + blur: me.onFieldBlur, + specialkey: me.onSpecialKey + }); + + if (field.grow) { + me.mon(field, 'autosize', me.onFieldAutosize, me, {delay: 1}); + } + me.floating = { + constrain: me.constrain + }; + me.items = field; + + me.callParent(arguments); + + me.addEvents( + /** + * @event beforestartedit + * Fires when editing is initiated, but before the value changes. Editing can be canceled by returning + * false from the handler of this event. + * @param {Ext.Editor} this + * @param {Ext.Element} boundEl The underlying element bound to this editor + * @param {Object} value The field value being set + */ + 'beforestartedit', + + /** + * @event startedit + * Fires when this editor is displayed + * @param {Ext.Editor} this + * @param {Ext.Element} boundEl The underlying element bound to this editor + * @param {Object} value The starting field value + */ + 'startedit', + + /** + * @event beforecomplete + * Fires after a change has been made to the field, but before the change is reflected in the underlying + * field. Saving the change to the field can be canceled by returning false from the handler of this event. + * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this + * event will not fire since no edit actually occurred. + * @param {Ext.Editor} this + * @param {Object} value The current field value + * @param {Object} startValue The original field value + */ + 'beforecomplete', + /** + * @event complete + * Fires after editing is complete and any changed value has been written to the underlying field. + * @param {Ext.Editor} this + * @param {Object} value The current field value + * @param {Object} startValue The original field value + */ + 'complete', + /** + * @event canceledit + * Fires after editing has been canceled and the editor's value has been reset. + * @param {Ext.Editor} this + * @param {Object} value The user-entered field value that was discarded + * @param {Object} startValue The original field value that was set back into the editor after cancel + */ + 'canceledit', + /** + * @event specialkey + * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed. You can check + * {@link Ext.EventObject#getKey} to determine which key was pressed. + * @param {Ext.Editor} this + * @param {Ext.form.field.Field} field The field attached to this editor + * @param {Ext.EventObject} event The event object + */ + 'specialkey' + ); + }, + + // private + onFieldAutosize: function(){ + this.updateLayout(); + }, + + // private + afterRender : function(ct, position) { + var me = this, + field = me.field, + inputEl = field.inputEl; + + me.callParent(arguments); + + // Ensure the field doesn't get submitted as part of any form + if (inputEl) { + inputEl.dom.name = ''; + if (me.swallowKeys) { + inputEl.swallowEvent([ + 'keypress', // *** Opera + 'keydown' // *** all other browsers + ]); + } + } + }, + + // private + onSpecialKey : function(field, event) { + var me = this, + key = event.getKey(), + complete = me.completeOnEnter && key == event.ENTER, + cancel = me.cancelOnEsc && key == event.ESC; + + if (complete || cancel) { + event.stopEvent(); + // Must defer this slightly to prevent exiting edit mode before the field's own + // key nav can handle the enter key, e.g. selecting an item in a combobox list + Ext.defer(function() { + if (complete) { + me.completeEdit(); + } else { + me.cancelEdit(); + } + if (field.triggerBlur) { + field.triggerBlur(event); + } + }, 10); + } + + me.fireEvent('specialkey', me, field, event); + }, + + /** + * Starts the editing process and shows the editor. + * @param {String/HTMLElement/Ext.Element} el The element to edit + * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults + * to the innerHTML of el. + */ + startEdit : function(el, value) { + var me = this, + field = me.field; + + me.completeEdit(); + me.boundEl = Ext.get(el); + value = Ext.isDefined(value) ? value : Ext.String.trim(me.boundEl.dom.innerText || me.boundEl.dom.innerHTML); + + if (!me.rendered) { + // Render to the ownerCt's element + // Being floating, we do not need to use the actual layout's target. + // Indeed, it's better if we do not so that we do not interfere with layout's child management, + // especially with CellEditors in the element of a TablePanel. + if (me.ownerCt) { + me.parentEl = me.ownerCt.el; + me.parentEl.position(); + } + me.render(me.parentEl || document.body); + } + + if (me.fireEvent('beforestartedit', me, me.boundEl, value) !== false) { + me.startValue = value; + me.show(); + // temporarily suspend events on field to prevent the "change" event from firing when reset() and setValue() are called + field.suspendEvents(); + field.reset(); + field.setValue(value); + field.resumeEvents(); + me.realign(true); + field.focus(); + if (field.autoSize) { + field.autoSize(); + } + me.editing = true; + } + }, + + /** + * Realigns the editor to the bound field based on the current alignment config value. + * @param {Boolean} autoSize (optional) True to size the field to the dimensions of the bound element. + */ + realign : function(autoSize) { + var me = this; + if (autoSize === true) { + me.updateLayout(); + } + me.alignTo(me.boundEl, me.alignment, me.offsets); + }, + + /** + * Ends the editing process, persists the changed value to the underlying field, and hides the editor. + * @param {Boolean} [remainVisible=false] Override the default behavior and keep the editor visible after edit + */ + completeEdit : function(remainVisible) { + var me = this, + field = me.field, + value; + + if (!me.editing) { + return; + } + + // Assert combo values first + if (field.assertValue) { + field.assertValue(); + } + + value = me.getValue(); + if (!field.isValid()) { + if (me.revertInvalid !== false) { + me.cancelEdit(remainVisible); + } + return; + } + + if (String(value) === String(me.startValue) && me.ignoreNoChange) { + me.hideEdit(remainVisible); + return; + } + + if (me.fireEvent('beforecomplete', me, value, me.startValue) !== false) { + // Grab the value again, may have changed in beforecomplete + value = me.getValue(); + if (me.updateEl && me.boundEl) { + me.boundEl.update(value); + } + me.hideEdit(remainVisible); + me.fireEvent('complete', me, value, me.startValue); + } + }, + + // private + onShow : function() { + var me = this; + + me.callParent(arguments); + if (me.hideEl !== false) { + me.boundEl.hide(); + } + me.fireEvent('startedit', me, me.boundEl, me.startValue); + }, + + /** + * Cancels the editing process and hides the editor without persisting any changes. The field value will be + * reverted to the original starting value. + * @param {Boolean} [remainVisible=false] Override the default behavior and keep the editor visible after cancel + */ + cancelEdit : function(remainVisible) { + var me = this, + startValue = me.startValue, + field = me.field, + value; + + if (me.editing) { + value = me.getValue(); + // temporarily suspend events on field to prevent the "change" event from firing when setValue() is called + field.suspendEvents(); + me.setValue(startValue); + field.resumeEvents(); + me.hideEdit(remainVisible); + me.fireEvent('canceledit', me, value, startValue); + } + }, + + // private + hideEdit: function(remainVisible) { + if (remainVisible !== true) { + this.editing = false; + this.hide(); + } + }, + + // private + onFieldBlur : function(field, e) { + var me = this, + target = Ext.Element.getActiveElement(); + + // selectSameEditor flag allows the same editor to be started without onFieldBlur firing on itself + if(me.allowBlur === true && me.editing && me.selectSameEditor !== true) { + me.completeEdit(); + } + + // If newly active element is focusable, prevent reacquisition of focus by editor owner + if (Ext.fly(target).isFocusable() || target.getAttribute('tabIndex')) { + target.focus(); + } + }, + + // private + onHide : function() { + var me = this, + field = me.field; + + if (me.editing) { + me.completeEdit(); + return; + } + // Fields which mimic blur have to be told to fire t heir blur events. + // All other types of field are automatically blurred when an ancestor hides. + if (field.hasFocus && field.triggerBlur) { + field.triggerBlur(); + } + if (field.collapse) { + field.collapse(); + } + + //field.hide(); + if (me.hideEl !== false) { + me.boundEl.show(); + } + me.callParent(arguments); + }, + + /** + * Sets the data value of the editor + * @param {Object} value Any valid value supported by the underlying field + */ + setValue : function(value) { + this.field.setValue(value); + }, + + /** + * Gets the data value of the editor + * @return {Object} The data value + */ + getValue : function() { + return this.field.getValue(); + }, + + beforeDestroy : function() { + var me = this; + + Ext.destroy(me.field); + delete me.field; + delete me.parentEl; + delete me.boundEl; + + me.callParent(arguments); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/ElementLoader.js b/extjs-django/marvel/static/extjs/src/ElementLoader.js new file mode 100644 index 0000000..a0b03b8 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/ElementLoader.js @@ -0,0 +1,421 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * A class used to load remote content to an Element. Sample usage: + * + * Ext.get('el').load({ + * url: 'myPage.php', + * scripts: true, + * params: { + * id: 1 + * } + * }); + * + * In general this class will not be instanced directly, rather the {@link Ext.Element#method-load} method + * will be used. + */ +Ext.define('Ext.ElementLoader', { + + /* Begin Definitions */ + + mixins: { + observable: 'Ext.util.Observable' + }, + + uses: [ + 'Ext.data.Connection', + 'Ext.Ajax' + ], + + statics: { + Renderer: { + Html: function(loader, response, active){ + loader.getTarget().update(response.responseText, active.scripts === true); + return true; + } + } + }, + + /* End Definitions */ + + /** + * @cfg {String} url (required) + * The url to retrieve the content from. + */ + url: null, + + /** + * @cfg {Object} params + * Any params to be attached to the Ajax request. These parameters will + * be overridden by any params in the load options. + */ + params: null, + + /** + * @cfg {Object} baseParams Params that will be attached to every request. These parameters + * will not be overridden by any params in the load options. + */ + baseParams: null, + + /** + * @cfg {Boolean/Object} autoLoad + * True to have the loader make a request as soon as it is created. + * This argument can also be a set of options that will be passed to {@link #method-load} is called. + */ + autoLoad: false, + + /** + * @cfg {HTMLElement/Ext.Element/String} target + * The target element for the loader. It can be the DOM element, the id or an {@link Ext.Element}. + */ + target: null, + + /** + * @cfg {Boolean/String} loadMask + * True or a string to show when the element is loading. + */ + loadMask: false, + + /** + * @cfg {Object} ajaxOptions + * Any additional options to be passed to the request, for example timeout or headers. + */ + ajaxOptions: null, + + /** + * @cfg {Boolean} scripts + * True to parse any inline script tags in the response. + */ + scripts: false, + + /** + * @cfg {Function} success + * A function to be called when a load request is successful. + * Will be called with the following config parameters: + * + * - this - The ElementLoader instance. + * - response - The response object. + * - options - Ajax options. + */ + + /** + * @cfg {Function} failure A function to be called when a load request fails. + * Will be called with the following config parameters: + * + * - this - The ElementLoader instance. + * - response - The response object. + * - options - Ajax options. + */ + + /** + * @cfg {Function} callback A function to be called when a load request finishes. + * Will be called with the following config parameters: + * + * - this - The ElementLoader instance. + * - success - True if successful request. + * - response - The response object. + * - options - Ajax options. + */ + + /** + * @cfg {Object} scope + * The scope to execute the {@link #success} and {@link #failure} functions in. + */ + + /** + * @cfg {Function} renderer + * A custom function to render the content to the element. The function should + * return false if the renderer could not be applied. The passed parameters are: + * + * - The loader + * - The response + * - The active request + */ + + /** + * @property {Boolean} isLoader + * `true` in this class to identify an object as an instantiated ElementLoader, or subclass thereof. + */ + isLoader: true, + + constructor: function(config) { + var me = this, + autoLoad; + + config = config || {}; + Ext.apply(me, config); + me.setTarget(me.target); + me.addEvents( + /** + * @event beforeload + * Fires before a load request is made to the server. + * Returning false from an event listener can prevent the load + * from occurring. + * @param {Ext.ElementLoader} this + * @param {Object} options The options passed to the request + */ + 'beforeload', + + /** + * @event exception + * Fires after an unsuccessful load. + * @param {Ext.ElementLoader} this + * @param {Object} response The response from the server + * @param {Object} options The options passed to the request + */ + 'exception', + + /** + * @event load + * Fires after a successful load. + * @param {Ext.ElementLoader} this + * @param {Object} response The response from the server + * @param {Object} options The options passed to the request + */ + 'load' + ); + + // don't pass config because we have already applied it. + me.mixins.observable.constructor.call(me); + + if (me.autoLoad) { + autoLoad = me.autoLoad; + if (autoLoad === true) { + autoLoad = {}; + } + me.load(autoLoad); + } + }, + + /** + * Sets an {@link Ext.Element} as the target of this loader. + * Note that if the target is changed, any active requests will be aborted. + * @param {String/HTMLElement/Ext.Element} target The element or its ID. + */ + setTarget: function(target){ + var me = this; + target = Ext.get(target); + if (me.target && me.target != target) { + me.abort(); + } + me.target = target; + }, + + /** + * Returns the target of this loader. + * @return {Ext.Component} The target or null if none exists. + */ + getTarget: function(){ + return this.target || null; + }, + + /** + * Aborts the active load request + */ + abort: function(){ + var active = this.active; + if (active !== undefined) { + Ext.Ajax.abort(active.request); + if (active.mask) { + this.removeMask(); + } + delete this.active; + } + }, + + /** + * Removes the mask on the target + * @private + */ + removeMask: function(){ + this.target.unmask(); + }, + + /** + * Adds the mask on the target + * @private + * @param {Boolean/Object} mask The mask configuration + */ + addMask: function(mask){ + this.target.mask(mask === true ? null : mask); + }, + + /** + * Loads new data from the server. + * @param {Object} options The options for the request. They can be any configuration option that can be specified for + * the class, with the exception of the target option. Note that any options passed to the method will override any + * class defaults. + */ + load: function(options) { + // + if (!this.target) { + Ext.Error.raise('A valid target is required when loading content'); + } + // + + options = Ext.apply({}, options); + + var me = this, + mask = Ext.isDefined(options.loadMask) ? options.loadMask : me.loadMask, + params = Ext.apply({}, options.params), + ajaxOptions = Ext.apply({}, options.ajaxOptions), + callback = options.callback || me.callback, + scope = options.scope || me.scope || me; + + Ext.applyIf(ajaxOptions, me.ajaxOptions); + Ext.applyIf(options, ajaxOptions); + + Ext.applyIf(params, me.params); + Ext.apply(params, me.baseParams); + + Ext.applyIf(options, { + url: me.url + }); + + // + if (!options.url) { + Ext.Error.raise('You must specify the URL from which content should be loaded'); + } + // + + Ext.apply(options, { + scope: me, + params: params, + callback: me.onComplete + }); + + if (me.fireEvent('beforeload', me, options) === false) { + return; + } + + if (mask) { + me.addMask(mask); + } + + me.active = { + options: options, + mask: mask, + scope: scope, + callback: callback, + success: options.success || me.success, + failure: options.failure || me.failure, + renderer: options.renderer || me.renderer, + scripts: Ext.isDefined(options.scripts) ? options.scripts : me.scripts + }; + me.active.request = Ext.Ajax.request(options); + me.setOptions(me.active, options); + }, + + /** + * Sets any additional options on the active request + * @private + * @param {Object} active The active request + * @param {Object} options The initial options + */ + setOptions: Ext.emptyFn, + + /** + * Parses the response after the request completes + * @private + * @param {Object} options Ajax options + * @param {Boolean} success Success status of the request + * @param {Object} response The response object + */ + onComplete: function(options, success, response) { + var me = this, + active = me.active, + scope; + + if (active) { + scope = active.scope; + if (success) { + success = me.getRenderer(active.renderer).call(me, me, response, active) !== false; + } + + if (success) { + Ext.callback(active.success, scope, [me, response, options]); + me.fireEvent('load', me, response, options); + } else { + Ext.callback(active.failure, scope, [me, response, options]); + me.fireEvent('exception', me, response, options); + } + Ext.callback(active.callback, scope, [me, success, response, options]); + if (active.mask) { + me.removeMask(); + } + } + + delete me.active; + }, + + /** + * Gets the renderer to use + * @private + * @param {String/Function} renderer The renderer to use + * @return {Function} A rendering function to use. + */ + getRenderer: function(renderer){ + if (Ext.isFunction(renderer)) { + return renderer; + } + return this.statics().Renderer.Html; + }, + + /** + * Automatically refreshes the content over a specified period. + * @param {Number} interval The interval to refresh in ms. + * @param {Object} options (optional) The options to pass to the load method. See {@link #method-load} + */ + startAutoRefresh: function(interval, options){ + var me = this; + me.stopAutoRefresh(); + me.autoRefresh = setInterval(function(){ + me.load(options); + }, interval); + }, + + /** + * Clears any auto refresh. See {@link #startAutoRefresh}. + */ + stopAutoRefresh: function(){ + clearInterval(this.autoRefresh); + delete this.autoRefresh; + }, + + /** + * Checks whether the loader is automatically refreshing. See {@link #startAutoRefresh}. + * @return {Boolean} True if the loader is automatically refreshing + */ + isAutoRefreshing: function(){ + return Ext.isDefined(this.autoRefresh); + }, + + /** + * Destroys the loader. Any active requests will be aborted. + */ + destroy: function(){ + var me = this; + me.stopAutoRefresh(); + delete me.target; + me.abort(); + me.clearListeners(); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/EventManager.js b/extjs-django/marvel/static/extjs/src/EventManager.js new file mode 100644 index 0000000..193811b --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/EventManager.js @@ -0,0 +1,1375 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +// @tag dom,core +// @require util/Event.js +// @define Ext.EventManager + +/** + * @class Ext.EventManager + * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides + * several useful events directly. + * + * See {@link Ext.EventObject} for more details on normalized event objects. + * @singleton + */ +Ext.EventManager = new function() { + var EventManager = this, + doc = document, + win = window, + escapeRx = /\\/g, + prefix = Ext.baseCSSPrefix, + // IE9strict addEventListener has some issues with using synthetic events + supportsAddEventListener = !Ext.isIE9 && 'addEventListener' in doc, + readyEvent, + initExtCss = function() { + // find the body element + var bd = doc.body || doc.getElementsByTagName('body')[0], + cls = [prefix + 'body'], + htmlCls = [], + supportsLG = Ext.supports.CSS3LinearGradient, + supportsBR = Ext.supports.CSS3BorderRadius, + html; + + if (!bd) { + return false; + } + + html = bd.parentNode; + + function add (c) { + cls.push(prefix + c); + } + + //Let's keep this human readable! + if (Ext.isIE && Ext.isIE9m) { + add('ie'); + + // very often CSS needs to do checks like "IE7+" or "IE6 or 7". To help + // reduce the clutter (since CSS/SCSS cannot do these tests), we add some + // additional classes: + // + // x-ie7p : IE7+ : 7 <= ieVer + // x-ie7m : IE7- : ieVer <= 7 + // x-ie8p : IE8+ : 8 <= ieVer + // x-ie8m : IE8- : ieVer <= 8 + // x-ie9p : IE9+ : 9 <= ieVer + // x-ie78 : IE7 or 8 : 7 <= ieVer <= 8 + // + if (Ext.isIE6) { + add('ie6'); + } else { // ignore pre-IE6 :) + add('ie7p'); + + if (Ext.isIE7) { + add('ie7'); + } else { + add('ie8p'); + + if (Ext.isIE8) { + add('ie8'); + } else { + add('ie9p'); + + if (Ext.isIE9) { + add('ie9'); + } + } + } + } + + if (Ext.isIE7m) { + add('ie7m'); + } + if (Ext.isIE8m) { + add('ie8m'); + } + if (Ext.isIE9m) { + add('ie9m'); + } + if (Ext.isIE7 || Ext.isIE8) { + add('ie78'); + } + } + + if (Ext.isIE10) { + add('ie10'); + } + + if (Ext.isGecko) { + add('gecko'); + if (Ext.isGecko3) { + add('gecko3'); + } + if (Ext.isGecko4) { + add('gecko4'); + } + if (Ext.isGecko5) { + add('gecko5'); + } + } + if (Ext.isOpera) { + add('opera'); + } + if (Ext.isWebKit) { + add('webkit'); + } + if (Ext.isSafari) { + add('safari'); + if (Ext.isSafari2) { + add('safari2'); + } + if (Ext.isSafari3) { + add('safari3'); + } + if (Ext.isSafari4) { + add('safari4'); + } + if (Ext.isSafari5) { + add('safari5'); + } + if (Ext.isSafari5_0) { + add('safari5_0') + } + } + if (Ext.isChrome) { + add('chrome'); + } + if (Ext.isMac) { + add('mac'); + } + if (Ext.isLinux) { + add('linux'); + } + if (!supportsBR) { + add('nbr'); + } + if (!supportsLG) { + add('nlg'); + } + + // add to the parent to allow for selectors x-strict x-border-box, also set the isBorderBox property correctly + if (html) { + if (Ext.isStrict && (Ext.isIE6 || Ext.isIE7)) { + Ext.isBorderBox = false; + } + else { + Ext.isBorderBox = true; + } + + if(!Ext.isBorderBox) { + htmlCls.push(prefix + 'content-box'); + } + if (Ext.isStrict) { + htmlCls.push(prefix + 'strict'); + } else { + htmlCls.push(prefix + 'quirks'); + } + Ext.fly(html, '_internal').addCls(htmlCls); + } + + Ext.fly(bd, '_internal').addCls(cls); + return true; + }; + + Ext.apply(EventManager, { + /** + * Check if we have bound our global onReady listener + * @private + */ + hasBoundOnReady: false, + + /** + * Check if fireDocReady has been called + * @private + */ + hasFiredReady: false, + + /** + * Additionally, allow the 'DOM' listener thread to complete (usually desirable with mobWebkit, Gecko) + * before firing the entire onReady chain (high stack load on Loader) by specifying a delay value. + * Defaults to 1ms. + * @private + */ + deferReadyEvent : 1, + + /* + * diags: a list of event names passed to onReadyEvent (in chron order) + * @private + */ + onReadyChain : [], + + /** + * Holds references to any onReady functions + * @private + */ + readyEvent: + (function () { + readyEvent = new Ext.util.Event(); + readyEvent.fire = function () { + Ext._beforeReadyTime = Ext._beforeReadyTime || new Date().getTime(); + readyEvent.self.prototype.fire.apply(readyEvent, arguments); + Ext._afterReadytime = new Date().getTime(); + }; + return readyEvent; + }()), + + /** + * Fires when an event handler finishes its run, just before returning to browser control. + * + * This includes DOM event handlers, Ajax (including JSONP) event handlers, and {@link Ext.util.TaskRunner TaskRunners} + * + * This can be useful for performing cleanup, or update tasks which need to happen only + * after all code in an event handler has been run, but which should not be executed in a timer + * due to the intervening browser reflow/repaint which would take place. + * + */ + idleEvent: new Ext.util.Event(), + + /** + * detects whether the EventManager has been placed in a paused state for synchronization + * with external debugging / perf tools (PageAnalyzer) + * @private + */ + isReadyPaused: function(){ + return (/[?&]ext-pauseReadyFire\b/i.test(location.search) && !Ext._continueFireReady); + }, + + /** + * Binds the appropriate browser event for checking if the DOM has loaded. + * @private + */ + bindReadyEvent: function() { + if (EventManager.hasBoundOnReady) { + return; + } + + // Test scenario where Core is dynamically loaded AFTER window.load + if ( doc.readyState == 'complete' ) { // Firefox4+ got support for this state, others already do. + EventManager.onReadyEvent({ + type: doc.readyState || 'body' + }); + } else { + doc.addEventListener('DOMContentLoaded', EventManager.onReadyEvent, false); + win.addEventListener('load', EventManager.onReadyEvent, false); + EventManager.hasBoundOnReady = true; + } + }, + + onReadyEvent : function(e) { + if (e && e.type) { + EventManager.onReadyChain.push(e.type); + } + + if (EventManager.hasBoundOnReady) { + doc.removeEventListener('DOMContentLoaded', EventManager.onReadyEvent, false); + win.removeEventListener('load', EventManager.onReadyEvent, false); + } + + if (!Ext.isReady) { + EventManager.fireDocReady(); + } + }, + + /** + * We know the document is loaded, so trigger any onReady events. + * @private + */ + fireDocReady: function() { + if (!Ext.isReady) { + Ext._readyTime = new Date().getTime(); + Ext.isReady = true; + + Ext.supports.init(); + EventManager.onWindowUnload(); + readyEvent.onReadyChain = EventManager.onReadyChain; //diags report + + if (Ext.isNumber(EventManager.deferReadyEvent)) { + Ext.Function.defer(EventManager.fireReadyEvent, EventManager.deferReadyEvent); + EventManager.hasDocReadyTimer = true; + } else { + EventManager.fireReadyEvent(); + } + } + }, + + /** + * Fires the ready event + * @private + */ + fireReadyEvent: function() { + + // Unset the timer flag here since other onReady events may be + // added during the fire() call and we don't want to block them + EventManager.hasDocReadyTimer = false; + EventManager.isFiring = true; + + // Ready events are all single: true, if we get to the end + // & there are more listeners, it means they were added + // inside some other ready event + while (readyEvent.listeners.length && !EventManager.isReadyPaused()) { + readyEvent.fire(); + } + EventManager.isFiring = false; + EventManager.hasFiredReady = true; + Ext.EventManager.idleEvent.fire(); + }, + + /** + * Adds a listener to be notified when the document is ready (before onload and before images are loaded). + * + * {@link Ext#onDocumentReady} is an alias for {@link Ext.EventManager#onDocumentReady}. + * + * @param {Function} fn The method the event invokes. + * @param {Object} [scope] The scope (`this` reference) in which the handler function executes. + * Defaults to the browser window. + * @param {Object} [options] Options object as passed to {@link Ext.Element#addListener}. + */ + onDocumentReady: function(fn, scope, options) { + options = options || {}; + // force single, only ever fire it once + options.single = true; + readyEvent.addListener(fn, scope, options); + + // If we're in the middle of firing, or we have a deferred timer + // pending, drop out since the event will be fired later + if (!(EventManager.isFiring || EventManager.hasDocReadyTimer)) { + if (Ext.isReady) { + EventManager.fireReadyEvent(); + } else { + EventManager.bindReadyEvent(); + } + } + }, + + // --------------------- event binding --------------------- + + /** + * Contains a list of all document mouse downs, so we can ensure they fire even when stopEvent is called. + * @private + */ + stoppedMouseDownEvent: new Ext.util.Event(), + + /** + * Options to parse for the 4th argument to addListener. + * @private + */ + propRe: /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate|freezeEvent)$/, + + /** + * Get the id of the element. If one has not been assigned, automatically assign it. + * @param {HTMLElement/Ext.Element} element The element to get the id for. + * @return {String} id + */ + getId : function(element) { + var id; + + element = Ext.getDom(element); + + if (element === doc || element === win) { + id = element === doc ? Ext.documentId : Ext.windowId; + } + else { + id = Ext.id(element); + } + + if (!Ext.cache[id]) { + Ext.addCacheEntry(id, null, element); + } + + return id; + }, + + /** + * Convert a "config style" listener into a set of flat arguments so they can be passed to addListener + * @private + * @param {Object} element The element the event is for + * @param {Object} event The event configuration + * @param {Object} isRemove True if a removal should be performed, otherwise an add will be done. + */ + prepareListenerConfig: function(element, config, isRemove) { + var propRe = EventManager.propRe, + key, value, args; + + // loop over all the keys in the object + for (key in config) { + if (config.hasOwnProperty(key)) { + // if the key is something else then an event option + if (!propRe.test(key)) { + value = config[key]; + // if the value is a function it must be something like click: function() {}, scope: this + // which means that there might be multiple event listeners with shared options + if (typeof value == 'function') { + // shared options + args = [element, key, value, config.scope, config]; + } else { + // if its not a function, it must be an object like click: {fn: function() {}, scope: this} + args = [element, key, value.fn, value.scope, value]; + } + + if (isRemove) { + EventManager.removeListener.apply(EventManager, args); + } else { + EventManager.addListener.apply(EventManager, args); + } + } + } + } + }, + + mouseEnterLeaveRe: /mouseenter|mouseleave/, + + /** + * Normalize cross browser event differences + * @private + * @param {Object} eventName The event name + * @param {Object} fn The function to execute + * @return {Object} The new event name/function + */ + normalizeEvent: function(eventName, fn) { + if (EventManager.mouseEnterLeaveRe.test(eventName) && !Ext.supports.MouseEnterLeave) { + if (fn) { + fn = Ext.Function.createInterceptor(fn, EventManager.contains); + } + eventName = eventName == 'mouseenter' ? 'mouseover' : 'mouseout'; + } else if (eventName == 'mousewheel' && !Ext.supports.MouseWheel && !Ext.isOpera) { + eventName = 'DOMMouseScroll'; + } + return { + eventName: eventName, + fn: fn + }; + }, + + /** + * Checks whether the event's relatedTarget is contained inside (or is) the element. + * @private + * @param {Object} event + */ + contains: function(event) { + event = event.browserEvent || event; + var parent = event.currentTarget, + child = EventManager.getRelatedTarget(event); + + if (parent && parent.firstChild) { + while (child) { + if (child === parent) { + return false; + } + child = child.parentNode; + if (child && (child.nodeType != 1)) { + child = null; + } + } + } + return true; + }, + + /** + * Appends an event handler to an element. The shorthand version {@link #on} is equivalent. + * Typically you will use {@link Ext.Element#addListener} directly on an Element in favor of + * calling this version. + * + * {@link Ext.EventManager#on} is an alias for {@link Ext.EventManager#addListener}. + * + * @param {String/Ext.Element/HTMLElement/Window} el The html element or id to assign the event handler to. + * + * @param {String} eventName The name of the event to listen for. + * + * @param {Function/String} handler The handler function the event invokes. A String parameter + * is assumed to be method name in `scope` object, or Element object if no scope is provided. + * @param {Ext.EventObject} handler.event The {@link Ext.EventObject EventObject} describing the event. + * @param {Ext.dom.Element} handler.target The Element which was the target of the event. + * Note that this may be filtered by using the `delegate` option. + * @param {Object} handler.options The options object from the addListener call. + * + * @param {Object} [scope] The scope (`this` reference) in which the handler function is executed. + * Defaults to the Element. + * + * @param {Object} [options] An object containing handler configuration properties. + * This may contain any of the following properties (See {@link Ext.Element#addListener} + * for examples of how to use these options.): + * @param {Object} options.scope The scope (`this` reference) in which the handler function is executed. Defaults to the Element. + * @param {String} options.delegate A simple selector to filter the target or look for a descendant of the target + * @param {Boolean} options.stopEvent True to stop the event. That is stop propagation, and prevent the default action. + * @param {Boolean} options.preventDefault True to prevent the default action + * @param {Boolean} options.stopPropagation True to prevent event propagation + * @param {Boolean} options.normalized False to pass a browser event to the handler function instead of an Ext.EventObject + * @param {Number} options.delay The number of milliseconds to delay the invocation of the handler after te event fires. + * @param {Boolean} options.single True to add a handler to handle just the next firing of the event, and then remove itself. + * @param {Number} options.buffer Causes the handler to be scheduled to run in an {@link Ext.util.DelayedTask} delayed + * by the specified number of milliseconds. If the event fires again within that time, the original + * handler is *not* invoked, but the new handler is scheduled in its place. + * @param {Ext.dom.Element} options.target Only call the handler if the event was fired on the target Element, + * *not* if the event was bubbled up from a child node. + */ + addListener: function(element, eventName, fn, scope, options) { + // Check if we've been passed a "config style" event. + if (typeof eventName !== 'string') { + EventManager.prepareListenerConfig(element, eventName); + return; + } + + var dom = element.dom || Ext.getDom(element), + hasAddEventListener, bind, wrap, cache, id, cacheItem, capture; + + if (typeof fn === 'string') { + fn = Ext.resolveMethod(fn, scope || element); + } + + // + if (!fn) { + Ext.Error.raise({ + sourceClass: 'Ext.EventManager', + sourceMethod: 'addListener', + targetElement: element, + eventName: eventName, + msg: 'Error adding "' + eventName + '\" listener. The handler function is undefined.' + }); + } + // + + // create the wrapper function + options = options || {}; + + bind = EventManager.normalizeEvent(eventName, fn); + wrap = EventManager.createListenerWrap(dom, eventName, bind.fn, scope, options); + + // add all required data into the event cache + cache = EventManager.getEventListenerCache(element.dom ? element : dom, eventName); + eventName = bind.eventName; + + // In IE9 we prefer to use attachEvent but it's not available for some Elements (SVG) + hasAddEventListener = supportsAddEventListener || (Ext.isIE9 && !dom.attachEvent); + + if (!hasAddEventListener) { + id = EventManager.normalizeId(dom); + // If there's no id we don't have any events bound, so we never + // need to clone at this point. + if (id) { + cacheItem = Ext.cache[id][eventName]; + if (cacheItem && cacheItem.firing) { + // If we're in the middle of firing we want to update the class + // cache reference so it is different to the array we referenced + // when we started firing the event. Though this is a more difficult + // way of not mutating the collection while firing, a vast majority of + // the time we won't be adding listeners for the same element/event type + // while firing the same event. + cache = EventManager.cloneEventListenerCache(dom, eventName); + } + } + } + + capture = !!options.capture; + cache.push({ + fn: fn, + wrap: wrap, + scope: scope, + capture: capture + }); + + if (!hasAddEventListener) { + // If cache length is 1, it means we're binding the first event + // for this element for this type + if (cache.length === 1) { + id = EventManager.normalizeId(dom, true); + fn = Ext.Function.bind(EventManager.handleSingleEvent, EventManager, [id, eventName], true); + Ext.cache[id][eventName] = { + firing: false, + fn: fn + }; + dom.attachEvent('on' + eventName, fn); + } + } else { + dom.addEventListener(eventName, wrap, capture); + } + + if (dom == doc && eventName == 'mousedown') { + EventManager.stoppedMouseDownEvent.addListener(wrap); + } + }, + + // Handle the case where the window/document already has an id attached. + // In this case we still want to return our custom window/doc id. + normalizeId: function(dom, force) { + var id; + if (dom === document) { + id = Ext.documentId; + } else if (dom === window) { + id = Ext.windowId; + } else { + id = dom.id; + } + if (!id && force) { + id = EventManager.getId(dom); + } + return id; + }, + + handleSingleEvent: function(e, id, eventName) { + // Don't create a copy here, since we fire lots of events and it's likely + // that we won't add an event during a fire. Instead, we'll handle this during + // the process of adding events + var listenerCache = EventManager.getEventListenerCache(id, eventName), + attachItem = Ext.cache[id][eventName], + len, i; + + // Typically this will never occur, however, the framework allows the creation + // of synthetic events in Ext.EventObject. As such, it makes it possible to fire + // off the same event on the same element during this method. + if (attachItem.firing) { + return; + } + + attachItem.firing = true; + for (i = 0, len = listenerCache.length; i < len; ++i) { + listenerCache[i].wrap(e); + } + attachItem.firing = false; + + }, + + /** + * Removes an event handler from an element. The shorthand version {@link #un} is equivalent. Typically + * you will use {@link Ext.Element#removeListener} directly on an Element in favor of calling this version. + * + * {@link Ext.EventManager#on} is an alias for {@link Ext.EventManager#addListener}. + * + * @param {String/Ext.Element/HTMLElement/Window} el The id or html element from which to remove the listener. + * @param {String} eventName The name of the event. + * @param {Function} fn The handler function to remove. **This must be a reference to the function passed + * into the {@link #addListener} call.** + * @param {Object} scope If a scope (`this` reference) was specified when the listener was added, + * then this must refer to the same object. + */ + removeListener : function(element, eventName, fn, scope) { + // handle our listener config object syntax + if (typeof eventName !== 'string') { + EventManager.prepareListenerConfig(element, eventName, true); + return; + } + + var dom = Ext.getDom(element), + id, el = element.dom ? element : Ext.get(dom), + cache = EventManager.getEventListenerCache(el, eventName), + bindName = EventManager.normalizeEvent(eventName).eventName, + i = cache.length, j, cacheItem, hasRemoveEventListener, + listener, wrap; + + if (!dom) { + return; + } + + // In IE9 we prefer to use detachEvent but it's not available for some Elements (SVG) + hasRemoveEventListener = supportsAddEventListener || (Ext.isIE9 && !dom.detachEvent); + + if (typeof fn === 'string') { + fn = Ext.resolveMethod(fn, scope || element); + } + + while (i--) { + listener = cache[i]; + + if (listener && (!fn || listener.fn == fn) && (!scope || listener.scope === scope)) { + wrap = listener.wrap; + + // clear buffered calls + if (wrap.task) { + clearTimeout(wrap.task); + delete wrap.task; + } + + // clear delayed calls + j = wrap.tasks && wrap.tasks.length; + if (j) { + while (j--) { + clearTimeout(wrap.tasks[j]); + } + delete wrap.tasks; + } + + if (!hasRemoveEventListener) { + // if length is 1, we're removing the final event, actually + // unbind it from the element + id = EventManager.normalizeId(dom, true); + cacheItem = Ext.cache[id][bindName]; + if (cacheItem && cacheItem.firing) { + // See code in addListener for why we create a copy + cache = EventManager.cloneEventListenerCache(dom, bindName); + } + + if (cache.length === 1) { + fn = cacheItem.fn; + delete Ext.cache[id][bindName]; + dom.detachEvent('on' + bindName, fn); + } + } else { + dom.removeEventListener(bindName, wrap, listener.capture); + } + + if (wrap && dom == doc && eventName == 'mousedown') { + EventManager.stoppedMouseDownEvent.removeListener(wrap); + } + + // remove listener from cache + Ext.Array.erase(cache, i, 1); + } + } + }, + + /** + * Removes all event handers from an element. Typically you will use {@link Ext.Element#removeAllListeners} + * directly on an Element in favor of calling this version. + * @param {String/Ext.Element/HTMLElement/Window} el The id or html element from which to remove all event handlers. + */ + removeAll : function(element) { + var id = (typeof element === 'string') ? element : element.id, + cache, events, eventName; + + // If the element does not have an ID or a cache entry for its ID, then this is a no-op + if (id && (cache = Ext.cache[id])) { + events = cache.events; + + for (eventName in events) { + if (events.hasOwnProperty(eventName)) { + EventManager.removeListener(element, eventName); + } + } + cache.events = {}; + } + }, + + /** + * Recursively removes all previous added listeners from an element and its children. Typically you will use {@link Ext.Element#purgeAllListeners} + * directly on an Element in favor of calling this version. + * @param {String/Ext.Element/HTMLElement/Window} el The id or html element from which to remove all event handlers. + * @param {String} eventName (optional) The name of the event. + */ + purgeElement : function(element, eventName) { + var dom = Ext.getDom(element), + i = 0, len, childNodes; + + if (eventName) { + EventManager.removeListener(element, eventName); + } else { + EventManager.removeAll(element); + } + + if (dom && dom.childNodes) { + childNodes = dom.childNodes; + for (len = childNodes.length; i < len; i++) { + EventManager.purgeElement(childNodes[i], eventName); + } + } + }, + + /** + * Create the wrapper function for the event + * @private + * @param {HTMLElement} dom The dom element + * @param {String} ename The event name + * @param {Function} fn The function to execute + * @param {Object} scope The scope to execute callback in + * @param {Object} options The options + * @return {Function} the wrapper function + */ + createListenerWrap : function(dom, ename, fn, scope, options) { + options = options || {}; + + var f, gen, wrap = function(e, args) { + // Compile the implementation upon first firing + if (!gen) { + f = ['if(!' + Ext.name + ') {return;}']; + + if (options.buffer || options.delay || options.freezeEvent) { + if (options.freezeEvent) { + // If we're freezing, we still want to update the singleton event object + // as well as returning a frozen copy + f.push('e = X.EventObject.setEvent(e);'); + } + f.push('e = new X.EventObjectImpl(e, ' + (options.freezeEvent ? 'true' : 'false' ) + ');'); + } else { + f.push('e = X.EventObject.setEvent(e);'); + } + + if (options.delegate) { + // double up '\' characters so escape sequences survive the + // string-literal translation + f.push('var result, t = e.getTarget("' + (options.delegate + '').replace(escapeRx, '\\\\') + '", this);'); + f.push('if(!t) {return;}'); + } else { + f.push('var t = e.target, result;'); + } + + if (options.target) { + f.push('if(e.target !== options.target) {return;}'); + } + + if (options.stopEvent) { + f.push('e.stopEvent();'); + } else { + if(options.preventDefault) { + f.push('e.preventDefault();'); + } + if(options.stopPropagation) { + f.push('e.stopPropagation();'); + } + } + + if (options.normalized === false) { + f.push('e = e.browserEvent;'); + } + + if (options.buffer) { + f.push('(wrap.task && clearTimeout(wrap.task));'); + f.push('wrap.task = setTimeout(function() {'); + } + + if (options.delay) { + f.push('wrap.tasks = wrap.tasks || [];'); + f.push('wrap.tasks.push(setTimeout(function() {'); + } + + // finally call the actual handler fn + f.push('result = fn.call(scope || dom, e, t, options);'); + + if (options.single) { + f.push('evtMgr.removeListener(dom, ename, fn, scope);'); + } + + // Fire the global idle event for all events except mousemove which is too common, and + // fires too frequently and fast to be use in tiggering onIdle processing. Do not fire on page unload. + if (ename !== 'mousemove' && ename !== 'unload') { + f.push('if (evtMgr.idleEvent.listeners.length) {'); + f.push('evtMgr.idleEvent.fire();'); + f.push('}'); + } + + if (options.delay) { + f.push('}, ' + options.delay + '));'); + } + + if (options.buffer) { + f.push('}, ' + options.buffer + ');'); + } + f.push('return result;'); + + gen = Ext.cacheableFunctionFactory('e', 'options', 'fn', 'scope', 'ename', 'dom', 'wrap', 'args', 'X', 'evtMgr', f.join('\n')); + } + + return gen.call(dom, e, options, fn, scope, ename, dom, wrap, args, Ext, EventManager); + }; + return wrap; + }, + + /** + * Gets the event cache object for a particular element + * @private + * @param {HTMLElement} element The element + * @return {Object} The event cache object + */ + getEventCache: function(element) { + var elementCache, eventCache, id; + + if (!element) { + return []; + } + + if (element.$cache) { + elementCache = element.$cache; + } else { + // getId will populate the cache for this element if it isn't already present + if (typeof element === 'string') { + id = element; + } else { + id = EventManager.getId(element); + } + elementCache = Ext.cache[id]; + } + eventCache = elementCache.events || (elementCache.events = {}); + return eventCache; + }, + + /** + * Get the event cache for a particular element for a particular event + * @private + * @param {HTMLElement} element The element + * @param {Object} eventName The event name + * @return {Array} The events for the element + */ + getEventListenerCache : function(element, eventName) { + var eventCache = EventManager.getEventCache(element); + return eventCache[eventName] || (eventCache[eventName] = []); + }, + + /** + * Clones the event cache for a particular element for a particular event + * @private + * @param {HTMLElement} element The element + * @param {Object} eventName The event name + * @return {Array} The cloned events for the element + */ + cloneEventListenerCache: function(element, eventName){ + var eventCache = EventManager.getEventCache(element), + out; + + if (eventCache[eventName]) { + out = eventCache[eventName].slice(0); + } else { + out = []; + } + eventCache[eventName] = out; + return out; + }, + + // --------------------- utility methods --------------------- + mouseLeaveRe: /(mouseout|mouseleave)/, + mouseEnterRe: /(mouseover|mouseenter)/, + + /** + * Stop the event (preventDefault and stopPropagation) + * @param {Event} event The event to stop + */ + stopEvent: function(event) { + EventManager.stopPropagation(event); + EventManager.preventDefault(event); + }, + + /** + * Cancels bubbling of the event. + * @param {Event} event The event to stop bubbling. + */ + stopPropagation: function(event) { + event = event.browserEvent || event; + if (event.stopPropagation) { + event.stopPropagation(); + } else { + event.cancelBubble = true; + } + }, + + /** + * Prevents the browsers default handling of the event. + * @param {Event} event The event to prevent the default + */ + preventDefault: function(event) { + event = event.browserEvent || event; + if (event.preventDefault) { + event.preventDefault(); + } else { + event.returnValue = false; + // Some keys events require setting the keyCode to -1 to be prevented + try { + // all ctrl + X and F1 -> F12 + if (event.ctrlKey || event.keyCode > 111 && event.keyCode < 124) { + event.keyCode = -1; + } + } catch (e) { + // see this outdated document http://support.microsoft.com/kb/934364/en-us for more info + } + } + }, + + /** + * Gets the related target from the event. + * @param {Object} event The event + * @return {HTMLElement} The related target. + */ + getRelatedTarget: function(event) { + event = event.browserEvent || event; + var target = event.relatedTarget; + if (!target) { + if (EventManager.mouseLeaveRe.test(event.type)) { + target = event.toElement; + } else if (EventManager.mouseEnterRe.test(event.type)) { + target = event.fromElement; + } + } + return EventManager.resolveTextNode(target); + }, + + /** + * Gets the x coordinate from the event + * @param {Object} event The event + * @return {Number} The x coordinate + */ + getPageX: function(event) { + return EventManager.getPageXY(event)[0]; + }, + + /** + * Gets the y coordinate from the event + * @param {Object} event The event + * @return {Number} The y coordinate + */ + getPageY: function(event) { + return EventManager.getPageXY(event)[1]; + }, + + /** + * Gets the x & y coordinate from the event + * @param {Object} event The event + * @return {Number[]} The x/y coordinate + */ + getPageXY: function(event) { + event = event.browserEvent || event; + var x = event.pageX, + y = event.pageY, + docEl = doc.documentElement, + body = doc.body; + + // pageX/pageY not available (undefined, not null), use clientX/clientY instead + if (!x && x !== 0) { + x = event.clientX + (docEl && docEl.scrollLeft || body && body.scrollLeft || 0) - (docEl && docEl.clientLeft || body && body.clientLeft || 0); + y = event.clientY + (docEl && docEl.scrollTop || body && body.scrollTop || 0) - (docEl && docEl.clientTop || body && body.clientTop || 0); + } + return [x, y]; + }, + + /** + * Gets the target of the event. + * @param {Object} event The event + * @return {HTMLElement} target + */ + getTarget: function(event) { + event = event.browserEvent || event; + return EventManager.resolveTextNode(event.target || event.srcElement); + }, + + // technically no need to browser sniff this, however it makes + // no sense to check this every time, for every event, whether + // the string is equal. + /** + * Resolve any text nodes accounting for browser differences. + * @private + * @param {HTMLElement} node The node + * @return {HTMLElement} The resolved node + */ + resolveTextNode: Ext.isGecko ? + function(node) { + if (node) { + // work around firefox bug, https://bugzilla.mozilla.org/show_bug.cgi?id=101197 + var s = HTMLElement.prototype.toString.call(node); + if (s !== '[xpconnect wrapped native prototype]' && s !== '[object XULElement]') { + return node.nodeType == 3 ? node.parentNode: node; + } + } + } + : + function(node) { + return node && node.nodeType == 3 ? node.parentNode: node; + }, + + // --------------------- custom event binding --------------------- + + // Keep track of the current width/height + curWidth: 0, + curHeight: 0, + + /** + * Adds a listener to be notified when the browser window is resized and provides resize event buffering (100 milliseconds), + * passes new viewport width and height to handlers. + * @param {Function} fn The handler function the window resize event invokes. + * @param {Object} scope The scope (this reference) in which the handler function executes. Defaults to the browser window. + * @param {Boolean} [options] Options object as passed to {@link Ext.Element#addListener} + */ + onWindowResize: function(fn, scope, options) { + var resize = EventManager.resizeEvent; + + if (!resize) { + EventManager.resizeEvent = resize = new Ext.util.Event(); + EventManager.on(win, 'resize', EventManager.fireResize, null, {buffer: 100}); + } + resize.addListener(fn, scope, options); + }, + + /** + * Fire the resize event. + * @private + */ + fireResize: function() { + var w = Ext.Element.getViewWidth(), + h = Ext.Element.getViewHeight(); + + //whacky problem in IE where the resize event will sometimes fire even though the w/h are the same. + if (EventManager.curHeight != h || EventManager.curWidth != w) { + EventManager.curHeight = h; + EventManager.curWidth = w; + EventManager.resizeEvent.fire(w, h); + } + }, + + /** + * Removes the passed window resize listener. + * @param {Function} fn The method the event invokes + * @param {Object} scope The scope of handler + */ + removeResizeListener: function(fn, scope) { + var resize = EventManager.resizeEvent; + if (resize) { + resize.removeListener(fn, scope); + } + }, + + /** + * Adds a listener to be notified when the browser window is unloaded. + * @param {Function} fn The handler function the window unload event invokes. + * @param {Object} scope The scope (this reference) in which the handler function executes. Defaults to the browser window. + * @param {Boolean} options Options object as passed to {@link Ext.Element#addListener} + */ + onWindowUnload: function(fn, scope, options) { + var unload = EventManager.unloadEvent; + + if (!unload) { + EventManager.unloadEvent = unload = new Ext.util.Event(); + EventManager.addListener(win, 'unload', EventManager.fireUnload); + } + if (fn) { + unload.addListener(fn, scope, options); + } + }, + + /** + * Fires the unload event for items bound with onWindowUnload + * @private + */ + fireUnload: function() { + // wrap in a try catch, could have some problems during unload + try { + // relinquish references. + doc = win = undefined; + + var gridviews, i, ln, + el, cache; + + EventManager.unloadEvent.fire(); + // Work around FF3 remembering the last scroll position when refreshing the grid and then losing grid view + if (Ext.isGecko3) { + gridviews = Ext.ComponentQuery.query('gridview'); + i = 0; + ln = gridviews.length; + for (; i < ln; i++) { + gridviews[i].scrollToTop(); + } + } + // Purge all elements in the cache + cache = Ext.cache; + + for (el in cache) { + if (cache.hasOwnProperty(el)) { + EventManager.removeAll(el); + } + } + } catch(e) { + } + }, + + /** + * Removes the passed window unload listener. + * @param {Function} fn The method the event invokes + * @param {Object} scope The scope of handler + */ + removeUnloadListener: function(fn, scope) { + var unload = EventManager.unloadEvent; + if (unload) { + unload.removeListener(fn, scope); + } + }, + + /** + * note 1: IE fires ONLY the keydown event on specialkey autorepeat + * note 2: Safari < 3.1, Gecko (Mac/Linux) & Opera fire only the keypress event on specialkey autorepeat + * (research done by Jan Wolter at http://unixpapa.com/js/key.html) + * @private + */ + useKeyDown: Ext.isWebKit ? + parseInt(navigator.userAgent.match(/AppleWebKit\/(\d+)/)[1], 10) >= 525 : + !((Ext.isGecko && !Ext.isWindows) || Ext.isOpera), + + /** + * Indicates which event to use for getting key presses. + * @return {String} The appropriate event name. + */ + getKeyEvent: function() { + return EventManager.useKeyDown ? 'keydown' : 'keypress'; + } + }); + + // route "< ie9-Standards" to a legacy IE onReady implementation + if(!supportsAddEventListener && document.attachEvent) { + Ext.apply( EventManager, { + /* Customized implementation for Legacy IE. The default implementation is configured for use + * with all other 'standards compliant' agents. + * References: http://javascript.nwbox.com/IEContentLoaded/ + * licensed courtesy of http://developer.yahoo.com/yui/license.html + */ + + /** + * This strategy has minimal benefits for Sencha solutions that build themselves (ie. minimal initial page markup). + * However, progressively-enhanced pages (with image content and/or embedded frames) will benefit the most from it. + * Browser timer resolution is too poor to ensure a doScroll check more than once on a page loaded with minimal + * assets (the readystatechange event 'complete' usually beats the doScroll timer on a 'lightly-loaded' initial document). + */ + pollScroll : function() { + var scrollable = true; + + try { + document.documentElement.doScroll('left'); + } catch(e) { + scrollable = false; + } + + // on IE8, when running within an iFrame, document.body is not immediately available + if (scrollable && document.body) { + EventManager.onReadyEvent({ + type:'doScroll' + }); + } else { + /* + * minimize thrashing -- + * adjusted for setTimeout's close-to-minimums (not too low), + * as this method SHOULD always be called once initially + */ + EventManager.scrollTimeout = setTimeout(EventManager.pollScroll, 20); + } + + return scrollable; + }, + + /** + * Timer for doScroll polling + * @private + */ + scrollTimeout: null, + + /* @private + */ + readyStatesRe : /complete/i, + + /* @private + */ + checkReadyState: function() { + var state = document.readyState; + + if (EventManager.readyStatesRe.test(state)) { + EventManager.onReadyEvent({ + type: state + }); + } + }, + + bindReadyEvent: function() { + var topContext = true; + + if (EventManager.hasBoundOnReady) { + return; + } + + //are we in an IFRAME? (doScroll ineffective here) + try { + topContext = window.frameElement === undefined; + } catch(e) { + // If we throw an exception, it means we're probably getting access denied, + // which means we're in an iframe cross domain. + topContext = false; + } + + if (!topContext || !doc.documentElement.doScroll) { + EventManager.pollScroll = Ext.emptyFn; //then noop this test altogether + } + + // starts doScroll polling if necessary + if (EventManager.pollScroll() === true) { + return; + } + + // Core is loaded AFTER initial document write/load ? + if (doc.readyState == 'complete' ) { + EventManager.onReadyEvent({type: 'already ' + (doc.readyState || 'body') }); + } else { + doc.attachEvent('onreadystatechange', EventManager.checkReadyState); + window.attachEvent('onload', EventManager.onReadyEvent); + EventManager.hasBoundOnReady = true; + } + }, + + onReadyEvent : function(e) { + if (e && e.type) { + EventManager.onReadyChain.push(e.type); + } + + if (EventManager.hasBoundOnReady) { + document.detachEvent('onreadystatechange', EventManager.checkReadyState); + window.detachEvent('onload', EventManager.onReadyEvent); + } + + if (Ext.isNumber(EventManager.scrollTimeout)) { + clearTimeout(EventManager.scrollTimeout); + delete EventManager.scrollTimeout; + } + + if (!Ext.isReady) { + EventManager.fireDocReady(); + } + }, + + //diags: a list of event types passed to onReadyEvent (in chron order) + onReadyChain : [] + }); + } + + + /** + * Adds a function to be called when the DOM is ready, and all required classes have been loaded. + * + * If the DOM is ready and all classes are loaded, the passed function is executed immediately. + * @member Ext + * @method onReady + * @param {Function} fn The function callback to be executed + * @param {Object} scope The execution scope (`this` reference) of the callback function + * @param {Object} options The options to modify the listener as passed to {@link Ext.util.Observable#addListener addListener}. + */ + Ext.onReady = function(fn, scope, options) { + Ext.Loader.onReady(fn, scope, true, options); + }; + + /** + * @member Ext + * @method onDocumentReady + * @inheritdoc Ext.EventManager#onDocumentReady + */ + Ext.onDocumentReady = EventManager.onDocumentReady; + + /** + * @member Ext.EventManager + * @method on + * @inheritdoc Ext.EventManager#addListener + */ + EventManager.on = EventManager.addListener; + + /** + * @member Ext.EventManager + * @method un + * @inheritdoc Ext.EventManager#removeListener + */ + EventManager.un = EventManager.removeListener; + + Ext.onReady(initExtCss); +}; diff --git a/extjs-django/marvel/static/extjs/src/EventObject.js b/extjs-django/marvel/static/extjs/src/EventObject.js new file mode 100644 index 0000000..328fbf2 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/EventObject.js @@ -0,0 +1,905 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +// @tag dom,core +// @require EventManager.js +// @define Ext.EventObject + +/** + * @class Ext.EventObject + +Just as {@link Ext.Element} wraps around a native DOM node, Ext.EventObject +wraps the browser's native event-object normalizing cross-browser differences, +such as which mouse button is clicked, keys pressed, mechanisms to stop +event-propagation along with a method to prevent default actions from taking place. + +For example: + + function handleClick(e, t){ // e is not a standard event object, it is a Ext.EventObject + e.preventDefault(); + var target = e.getTarget(); // same as t (the target HTMLElement) + ... + } + + var myDiv = {@link Ext#get Ext.get}("myDiv"); // get reference to an {@link Ext.Element} + myDiv.on( // 'on' is shorthand for addListener + "click", // perform an action on click of myDiv + handleClick // reference to the action handler + ); + + // other methods to do the same: + Ext.EventManager.on("myDiv", 'click', handleClick); + Ext.EventManager.addListener("myDiv", 'click', handleClick); + + * @singleton + * @markdown + */ +Ext.define('Ext.EventObjectImpl', { + uses: ['Ext.util.Point'], + + /** Key constant @type Number */ + BACKSPACE: 8, + /** Key constant @type Number */ + TAB: 9, + /** Key constant @type Number */ + NUM_CENTER: 12, + /** Key constant @type Number */ + ENTER: 13, + /** Key constant @type Number */ + RETURN: 13, + /** Key constant @type Number */ + SHIFT: 16, + /** Key constant @type Number */ + CTRL: 17, + /** Key constant @type Number */ + ALT: 18, + /** Key constant @type Number */ + PAUSE: 19, + /** Key constant @type Number */ + CAPS_LOCK: 20, + /** Key constant @type Number */ + ESC: 27, + /** Key constant @type Number */ + SPACE: 32, + /** Key constant @type Number */ + PAGE_UP: 33, + /** Key constant @type Number */ + PAGE_DOWN: 34, + /** Key constant @type Number */ + END: 35, + /** Key constant @type Number */ + HOME: 36, + /** Key constant @type Number */ + LEFT: 37, + /** Key constant @type Number */ + UP: 38, + /** Key constant @type Number */ + RIGHT: 39, + /** Key constant @type Number */ + DOWN: 40, + /** Key constant @type Number */ + PRINT_SCREEN: 44, + /** Key constant @type Number */ + INSERT: 45, + /** Key constant @type Number */ + DELETE: 46, + /** Key constant @type Number */ + ZERO: 48, + /** Key constant @type Number */ + ONE: 49, + /** Key constant @type Number */ + TWO: 50, + /** Key constant @type Number */ + THREE: 51, + /** Key constant @type Number */ + FOUR: 52, + /** Key constant @type Number */ + FIVE: 53, + /** Key constant @type Number */ + SIX: 54, + /** Key constant @type Number */ + SEVEN: 55, + /** Key constant @type Number */ + EIGHT: 56, + /** Key constant @type Number */ + NINE: 57, + /** Key constant @type Number */ + A: 65, + /** Key constant @type Number */ + B: 66, + /** Key constant @type Number */ + C: 67, + /** Key constant @type Number */ + D: 68, + /** Key constant @type Number */ + E: 69, + /** Key constant @type Number */ + F: 70, + /** Key constant @type Number */ + G: 71, + /** Key constant @type Number */ + H: 72, + /** Key constant @type Number */ + I: 73, + /** Key constant @type Number */ + J: 74, + /** Key constant @type Number */ + K: 75, + /** Key constant @type Number */ + L: 76, + /** Key constant @type Number */ + M: 77, + /** Key constant @type Number */ + N: 78, + /** Key constant @type Number */ + O: 79, + /** Key constant @type Number */ + P: 80, + /** Key constant @type Number */ + Q: 81, + /** Key constant @type Number */ + R: 82, + /** Key constant @type Number */ + S: 83, + /** Key constant @type Number */ + T: 84, + /** Key constant @type Number */ + U: 85, + /** Key constant @type Number */ + V: 86, + /** Key constant @type Number */ + W: 87, + /** Key constant @type Number */ + X: 88, + /** Key constant @type Number */ + Y: 89, + /** Key constant @type Number */ + Z: 90, + /** Key constant @type Number */ + CONTEXT_MENU: 93, + /** Key constant @type Number */ + NUM_ZERO: 96, + /** Key constant @type Number */ + NUM_ONE: 97, + /** Key constant @type Number */ + NUM_TWO: 98, + /** Key constant @type Number */ + NUM_THREE: 99, + /** Key constant @type Number */ + NUM_FOUR: 100, + /** Key constant @type Number */ + NUM_FIVE: 101, + /** Key constant @type Number */ + NUM_SIX: 102, + /** Key constant @type Number */ + NUM_SEVEN: 103, + /** Key constant @type Number */ + NUM_EIGHT: 104, + /** Key constant @type Number */ + NUM_NINE: 105, + /** Key constant @type Number */ + NUM_MULTIPLY: 106, + /** Key constant @type Number */ + NUM_PLUS: 107, + /** Key constant @type Number */ + NUM_MINUS: 109, + /** Key constant @type Number */ + NUM_PERIOD: 110, + /** Key constant @type Number */ + NUM_DIVISION: 111, + /** Key constant @type Number */ + F1: 112, + /** Key constant @type Number */ + F2: 113, + /** Key constant @type Number */ + F3: 114, + /** Key constant @type Number */ + F4: 115, + /** Key constant @type Number */ + F5: 116, + /** Key constant @type Number */ + F6: 117, + /** Key constant @type Number */ + F7: 118, + /** Key constant @type Number */ + F8: 119, + /** Key constant @type Number */ + F9: 120, + /** Key constant @type Number */ + F10: 121, + /** Key constant @type Number */ + F11: 122, + /** Key constant @type Number */ + F12: 123, + /** + * The mouse wheel delta scaling factor. This value depends on browser version and OS and + * attempts to produce a similar scrolling experience across all platforms and browsers. + * + * To change this value: + * + * Ext.EventObjectImpl.prototype.WHEEL_SCALE = 72; + * + * @type Number + * @markdown + */ + WHEEL_SCALE: (function () { + var scale; + + if (Ext.isGecko) { + // Firefox uses 3 on all platforms + scale = 3; + } else if (Ext.isMac) { + // Continuous scrolling devices have momentum and produce much more scroll than + // discrete devices on the same OS and browser. To make things exciting, Safari + // (and not Chrome) changed from small values to 120 (like IE). + + if (Ext.isSafari && Ext.webKitVersion >= 532.0) { + // Safari changed the scrolling factor to match IE (for details see + // https://bugs.webkit.org/show_bug.cgi?id=24368). The WebKit version where this + // change was introduced was 532.0 + // Detailed discussion: + // https://bugs.webkit.org/show_bug.cgi?id=29601 + // http://trac.webkit.org/browser/trunk/WebKit/chromium/src/mac/WebInputEventFactory.mm#L1063 + scale = 120; + } else { + // MS optical wheel mouse produces multiples of 12 which is close enough + // to help tame the speed of the continuous mice... + scale = 12; + } + + // Momentum scrolling produces very fast scrolling, so increase the scale factor + // to help produce similar results cross platform. This could be even larger and + // it would help those mice, but other mice would become almost unusable as a + // result (since we cannot tell which device type is in use). + scale *= 3; + } else { + // IE, Opera and other Windows browsers use 120. + scale = 120; + } + + return scale; + }()), + + /** + * Simple click regex + * @private + */ + clickRe: /(dbl)?click/, + // safari keypress events for special keys return bad keycodes + safariKeys: { + 3: 13, // enter + 63234: 37, // left + 63235: 39, // right + 63232: 38, // up + 63233: 40, // down + 63276: 33, // page up + 63277: 34, // page down + 63272: 46, // delete + 63273: 36, // home + 63275: 35 // end + }, + // normalize button clicks, don't see any way to feature detect this. + btnMap: Ext.isIE ? { + 1: 0, + 4: 1, + 2: 2 + } : { + 0: 0, + 1: 1, + 2: 2 + }, + + /** + * @property {Boolean} ctrlKey + * True if the control key was down during the event. + * In Mac this will also be true when meta key was down. + */ + /** + * @property {Boolean} altKey + * True if the alt key was down during the event. + */ + /** + * @property {Boolean} shiftKey + * True if the shift key was down during the event. + */ + + constructor: function(event, freezeEvent){ + if (event) { + this.setEvent(event.browserEvent || event, freezeEvent); + } + }, + + setEvent: function(event, freezeEvent){ + var me = this, button, options; + + if (event === me || (event && event.browserEvent)) { // already wrapped + return event; + } + me.browserEvent = event; + if (event) { + // normalize buttons + button = event.button ? me.btnMap[event.button] : (event.which ? event.which - 1 : -1); + if (me.clickRe.test(event.type) && button == -1) { + button = 0; + } + options = { + type: event.type, + button: button, + shiftKey: event.shiftKey, + // mac metaKey behaves like ctrlKey + ctrlKey: event.ctrlKey || event.metaKey || false, + altKey: event.altKey, + // in getKey these will be normalized for the mac + keyCode: event.keyCode, + charCode: event.charCode, + // cache the targets for the delayed and or buffered events + target: Ext.EventManager.getTarget(event), + relatedTarget: Ext.EventManager.getRelatedTarget(event), + currentTarget: event.currentTarget, + xy: (freezeEvent ? me.getXY() : null) + }; + } else { + options = { + button: -1, + shiftKey: false, + ctrlKey: false, + altKey: false, + keyCode: 0, + charCode: 0, + target: null, + xy: [0, 0] + }; + } + Ext.apply(me, options); + return me; + }, + + /** + * Stop the event (preventDefault and stopPropagation) + */ + stopEvent: function(){ + this.stopPropagation(); + this.preventDefault(); + }, + + /** + * Prevents the browsers default handling of the event. + */ + preventDefault: function(){ + if (this.browserEvent) { + Ext.EventManager.preventDefault(this.browserEvent); + } + }, + + /** + * Cancels bubbling of the event. + */ + stopPropagation: function(){ + var browserEvent = this.browserEvent; + + if (browserEvent) { + if (browserEvent.type == 'mousedown') { + Ext.EventManager.stoppedMouseDownEvent.fire(this); + } + Ext.EventManager.stopPropagation(browserEvent); + } + }, + + /** + * Gets the character code for the event. + * @return {Number} + */ + getCharCode: function(){ + return this.charCode || this.keyCode; + }, + + /** + * Returns a normalized keyCode for the event. + * @return {Number} The key code + */ + getKey: function(){ + return this.normalizeKey(this.keyCode || this.charCode); + }, + + /** + * Normalize key codes across browsers + * @private + * @param {Number} key The key code + * @return {Number} The normalized code + */ + normalizeKey: function(key){ + // can't feature detect this + return Ext.isWebKit ? (this.safariKeys[key] || key) : key; + }, + + /** + * Gets the x coordinate of the event. + * @return {Number} + * @deprecated 4.0 Replaced by {@link #getX} + */ + getPageX: function(){ + return this.getX(); + }, + + /** + * Gets the y coordinate of the event. + * @return {Number} + * @deprecated 4.0 Replaced by {@link #getY} + */ + getPageY: function(){ + return this.getY(); + }, + + /** + * Gets the x coordinate of the event. + * @return {Number} + */ + getX: function() { + return this.getXY()[0]; + }, + + /** + * Gets the y coordinate of the event. + * @return {Number} + */ + getY: function() { + return this.getXY()[1]; + }, + + /** + * Gets the page coordinates of the event. + * @return {Number[]} The xy values like [x, y] + */ + getXY: function() { + if (!this.xy) { + // same for XY + this.xy = Ext.EventManager.getPageXY(this.browserEvent); + } + return this.xy; + }, + + /** + * Gets the target for the event. + * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target + * @param {Number/HTMLElement} maxDepth (optional) The max depth to search as a number or element (defaults to 10 || document.body) + * @param {Boolean} returnEl (optional) True to return a Ext.Element object instead of DOM node + * @return {HTMLElement} + */ + getTarget : function(selector, maxDepth, returnEl){ + if (selector) { + return Ext.fly(this.target).findParent(selector, maxDepth, returnEl); + } + return returnEl ? Ext.get(this.target) : this.target; + }, + + /** + * Gets the related target. + * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target + * @param {Number/HTMLElement} maxDepth (optional) The max depth to search as a number or element (defaults to 10 || document.body) + * @param {Boolean} returnEl (optional) True to return a Ext.Element object instead of DOM node + * @return {HTMLElement} + */ + getRelatedTarget : function(selector, maxDepth, returnEl){ + if (selector && this.relatedTarget) { + return Ext.fly(this.relatedTarget).findParent(selector, maxDepth, returnEl); + } + return returnEl ? Ext.get(this.relatedTarget) : this.relatedTarget; + }, + + /** + * Correctly scales a given wheel delta. + * @param {Number} delta The delta value. + */ + correctWheelDelta : function (delta) { + var scale = this.WHEEL_SCALE, + ret = Math.round(delta / scale); + + if (!ret && delta) { + ret = (delta < 0) ? -1 : 1; // don't allow non-zero deltas to go to zero! + } + + return ret; + }, + + /** + * Returns the mouse wheel deltas for this event. + * @return {Object} An object with "x" and "y" properties holding the mouse wheel deltas. + */ + getWheelDeltas : function () { + var me = this, + event = me.browserEvent, + dx = 0, dy = 0; // the deltas + + if (Ext.isDefined(event.wheelDeltaX)) { // WebKit has both dimensions + dx = event.wheelDeltaX; + dy = event.wheelDeltaY; + } else if (event.wheelDelta) { // old WebKit and IE + dy = event.wheelDelta; + } else if (event.detail) { // Gecko + dy = -event.detail; // gecko is backwards + + // Gecko sometimes returns really big values if the user changes settings to + // scroll a whole page per scroll + if (dy > 100) { + dy = 3; + } else if (dy < -100) { + dy = -3; + } + + // Firefox 3.1 adds an axis field to the event to indicate direction of + // scroll. See https://developer.mozilla.org/en/Gecko-Specific_DOM_Events + if (Ext.isDefined(event.axis) && event.axis === event.HORIZONTAL_AXIS) { + dx = dy; + dy = 0; + } + } + + return { + x: me.correctWheelDelta(dx), + y: me.correctWheelDelta(dy) + }; + }, + + /** + * Normalizes mouse wheel y-delta across browsers. To get x-delta information, use + * {@link #getWheelDeltas} instead. + * @return {Number} The mouse wheel y-delta + */ + getWheelDelta : function(){ + var deltas = this.getWheelDeltas(); + + return deltas.y; + }, + + /** + * Returns true if the target of this event is a child of el. Unless the allowEl parameter is set, it will return false if if the target is el. + * Example usage:
    
    +// Handle click on any child of an element
    +Ext.getBody().on('click', function(e){
    +    if(e.within('some-el')){
    +        alert('Clicked on a child of some-el!');
    +    }
    +});
    +
    +// Handle click directly on an element, ignoring clicks on child nodes
    +Ext.getBody().on('click', function(e,t){
    +    if((t.id == 'some-el') && !e.within(t, true)){
    +        alert('Clicked directly on some-el!');
    +    }
    +});
    +
    + * @param {String/HTMLElement/Ext.Element} el The id, DOM element or Ext.Element to check + * @param {Boolean} [related] `true` to test if the related target is within el instead of the target + * @param {Boolean} [allowEl] `true` to also check if the passed element is the target or related target + * @return {Boolean} + */ + within : function(el, related, allowEl){ + if(el){ + var t = related ? this.getRelatedTarget() : this.getTarget(), + result; + + if (t) { + result = Ext.fly(el, '_internal').contains(t); + if (!result && allowEl) { + result = t == Ext.getDom(el); + } + return result; + } + } + return false; + }, + + /** + * Checks if the key pressed was a "navigation" key + * @return {Boolean} True if the press is a navigation keypress + */ + isNavKeyPress : function(){ + var me = this, + k = this.normalizeKey(me.keyCode); + + return (k >= 33 && k <= 40) || // Page Up/Down, End, Home, Left, Up, Right, Down + k == me.RETURN || + k == me.TAB || + k == me.ESC; + }, + + /** + * Checks if the key pressed was a "special" key + * @return {Boolean} True if the press is a special keypress + */ + isSpecialKey : function(){ + var k = this.normalizeKey(this.keyCode); + return (this.type == 'keypress' && this.ctrlKey) || + this.isNavKeyPress() || + (k == this.BACKSPACE) || // Backspace + (k >= 16 && k <= 20) || // Shift, Ctrl, Alt, Pause, Caps Lock + (k >= 44 && k <= 46); // Print Screen, Insert, Delete + }, + + /** + * Returns a point object that consists of the object coordinates. + * @return {Ext.util.Point} point + */ + getPoint : function(){ + var xy = this.getXY(); + return new Ext.util.Point(xy[0], xy[1]); + }, + + /** + * Returns true if the control, meta, shift or alt key was pressed during this event. + * @return {Boolean} + */ + hasModifier : function(){ + return this.ctrlKey || this.altKey || this.shiftKey || this.metaKey; + }, + + /** + * Injects a DOM event using the data in this object and (optionally) a new target. + * This is a low-level technique and not likely to be used by application code. The + * currently supported event types are: + *

    HTMLEvents

    + *
      + *
    • load
    • + *
    • unload
    • + *
    • select
    • + *
    • change
    • + *
    • submit
    • + *
    • reset
    • + *
    • resize
    • + *
    • scroll
    • + *
    + *

    MouseEvents

    + *
      + *
    • click
    • + *
    • dblclick
    • + *
    • mousedown
    • + *
    • mouseup
    • + *
    • mouseover
    • + *
    • mousemove
    • + *
    • mouseout
    • + *
    + *

    UIEvents

    + *
      + *
    • focusin
    • + *
    • focusout
    • + *
    • activate
    • + *
    • focus
    • + *
    • blur
    • + *
    + * @param {Ext.Element/HTMLElement} target (optional) If specified, the target for the event. This + * is likely to be used when relaying a DOM event. If not specified, {@link #getTarget} + * is used to determine the target. + */ + injectEvent: (function () { + var API, + dispatchers = {}, // keyed by event type (e.g., 'mousedown') + crazyIEButtons; + + // Good reference: http://developer.yahoo.com/yui/docs/UserAction.js.html + + // IE9 has createEvent, but this code causes major problems with htmleditor (it + // blocks all mouse events and maybe more). TODO + + if (!Ext.isIE9m && document.createEvent) { // if (DOM compliant) + API = { + createHtmlEvent: function (doc, type, bubbles, cancelable) { + var event = doc.createEvent('HTMLEvents'); + + event.initEvent(type, bubbles, cancelable); + return event; + }, + + createMouseEvent: function (doc, type, bubbles, cancelable, detail, + clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, + button, relatedTarget) { + var event = doc.createEvent('MouseEvents'), + view = doc.defaultView || window; + + if (event.initMouseEvent) { + event.initMouseEvent(type, bubbles, cancelable, view, detail, + clientX, clientY, clientX, clientY, ctrlKey, altKey, + shiftKey, metaKey, button, relatedTarget); + } else { // old Safari + event = doc.createEvent('UIEvents'); + event.initEvent(type, bubbles, cancelable); + event.view = view; + event.detail = detail; + event.screenX = clientX; + event.screenY = clientY; + event.clientX = clientX; + event.clientY = clientY; + event.ctrlKey = ctrlKey; + event.altKey = altKey; + event.metaKey = metaKey; + event.shiftKey = shiftKey; + event.button = button; + event.relatedTarget = relatedTarget; + } + + return event; + }, + + createUIEvent: function (doc, type, bubbles, cancelable, detail) { + var event = doc.createEvent('UIEvents'), + view = doc.defaultView || window; + + event.initUIEvent(type, bubbles, cancelable, view, detail); + return event; + }, + + fireEvent: function (target, type, event) { + target.dispatchEvent(event); + }, + + fixTarget: function (target) { + // Safari3 doesn't have window.dispatchEvent() + if (target == window && !target.dispatchEvent) { + return document; + } + + return target; + } + }; + } else if (document.createEventObject) { // else if (IE) + crazyIEButtons = { 0: 1, 1: 4, 2: 2 }; + + API = { + createHtmlEvent: function (doc, type, bubbles, cancelable) { + var event = doc.createEventObject(); + event.bubbles = bubbles; + event.cancelable = cancelable; + return event; + }, + + createMouseEvent: function (doc, type, bubbles, cancelable, detail, + clientX, clientY, ctrlKey, altKey, shiftKey, metaKey, + button, relatedTarget) { + var event = doc.createEventObject(); + event.bubbles = bubbles; + event.cancelable = cancelable; + event.detail = detail; + event.screenX = clientX; + event.screenY = clientY; + event.clientX = clientX; + event.clientY = clientY; + event.ctrlKey = ctrlKey; + event.altKey = altKey; + event.shiftKey = shiftKey; + event.metaKey = metaKey; + event.button = crazyIEButtons[button] || button; + event.relatedTarget = relatedTarget; // cannot assign to/fromElement + return event; + }, + + createUIEvent: function (doc, type, bubbles, cancelable, detail) { + var event = doc.createEventObject(); + event.bubbles = bubbles; + event.cancelable = cancelable; + return event; + }, + + fireEvent: function (target, type, event) { + target.fireEvent('on' + type, event); + }, + + fixTarget: function (target) { + if (target == document) { + // IE6,IE7 thinks window==document and doesn't have window.fireEvent() + // IE6,IE7 cannot properly call document.fireEvent() + return document.documentElement; + } + + return target; + } + }; + } + + //---------------- + // HTMLEvents + + Ext.Object.each({ + load: [false, false], + unload: [false, false], + select: [true, false], + change: [true, false], + submit: [true, true], + reset: [true, false], + resize: [true, false], + scroll: [true, false] + }, + function (name, value) { + var bubbles = value[0], cancelable = value[1]; + dispatchers[name] = function (targetEl, srcEvent) { + var e = API.createHtmlEvent(name, bubbles, cancelable); + API.fireEvent(targetEl, name, e); + }; + }); + + //---------------- + // MouseEvents + + function createMouseEventDispatcher (type, detail) { + var cancelable = (type != 'mousemove'); + return function (targetEl, srcEvent) { + var xy = srcEvent.getXY(), + e = API.createMouseEvent(targetEl.ownerDocument, type, true, cancelable, + detail, xy[0], xy[1], srcEvent.ctrlKey, srcEvent.altKey, + srcEvent.shiftKey, srcEvent.metaKey, srcEvent.button, + srcEvent.relatedTarget); + API.fireEvent(targetEl, type, e); + }; + } + + Ext.each(['click', 'dblclick', 'mousedown', 'mouseup', 'mouseover', 'mousemove', 'mouseout'], + function (eventName) { + dispatchers[eventName] = createMouseEventDispatcher(eventName, 1); + }); + + //---------------- + // UIEvents + + Ext.Object.each({ + focusin: [true, false], + focusout: [true, false], + activate: [true, true], + focus: [false, false], + blur: [false, false] + }, + function (name, value) { + var bubbles = value[0], cancelable = value[1]; + dispatchers[name] = function (targetEl, srcEvent) { + var e = API.createUIEvent(targetEl.ownerDocument, name, bubbles, cancelable, 1); + API.fireEvent(targetEl, name, e); + }; + }); + + //--------- + if (!API) { + // not even sure what ancient browsers fall into this category... + + dispatchers = {}; // never mind all those we just built :P + + API = { + fixTarget: Ext.identityFn + }; + } + + function cannotInject (target, srcEvent) { + // + // TODO log something + // + } + + return function (target) { + var me = this, + dispatcher = dispatchers[me.type] || cannotInject, + t = target ? (target.dom || target) : me.getTarget(); + + t = API.fixTarget(t); + dispatcher(t, me); + }; + }()) // call to produce method + +}, function() { + +Ext.EventObject = new Ext.EventObjectImpl(); + +}); + diff --git a/extjs-django/marvel/static/extjs/src/Ext-more.js b/extjs-django/marvel/static/extjs/src/Ext-more.js new file mode 100644 index 0000000..dcc8bd9 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/Ext-more.js @@ -0,0 +1,1444 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +// @tag extras,core +// @require misc/JSON.js +// @define Ext + +/** + * @class Ext + * + * The Ext namespace (global object) encapsulates all classes, singletons, and + * utility methods provided by Sencha's libraries. + * + * Most user interface Components are at a lower level of nesting in the namespace, + * but many common utility functions are provided as direct properties of the Ext namespace. + * + * Also many frequently used methods from other classes are provided as shortcuts + * within the Ext namespace. For example {@link Ext#getCmp Ext.getCmp} aliases + * {@link Ext.ComponentManager#get Ext.ComponentManager.get}. + * + * Many applications are initiated with {@link Ext#onReady Ext.onReady} which is + * called once the DOM is ready. This ensures all scripts have been loaded, + * preventing dependency issues. For example: + * + * Ext.onReady(function(){ + * new Ext.Component({ + * renderTo: document.body, + * html: 'DOM ready!' + * }); + * }); + * + * For more information about how to use the Ext classes, see: + * + * - The Learning Center + * - The FAQ + * - The forums + * + * @singleton + */ +Ext.apply(Ext, { + userAgent: navigator.userAgent.toLowerCase(), + cache: {}, + idSeed: 1000, + windowId: 'ext-window', + documentId: 'ext-document', + + /** + * True when the document is fully initialized and ready for action + */ + isReady: false, + + /** + * True to automatically uncache orphaned Ext.Elements periodically + */ + enableGarbageCollector: true, + + /** + * True to automatically purge event listeners during garbageCollection. + */ + enableListenerCollection: true, + + /** + * @property {Object} rootHierarchyState the top level hierarchy state to which + * all other hierarchy states are chained. If there is a viewport instance, + * this object becomes the viewport's heirarchyState. See also + * {@link Ext.AbstractComponent#getHierarchyState} + * @private + */ + rootHierarchyState: {}, + + addCacheEntry: function(id, el, dom) { + dom = dom || el.dom; + + // + if (!dom) { + // Without the DOM node we can't GC the entry + Ext.Error.raise('Cannot add an entry to the element cache without the DOM node'); + } + // + + var cache = Ext.cache, + key = id || (el && el.id) || dom.id, + entry = cache[key] || (cache[key] = { + data: {}, + events: {}, + + dom: dom, + + // Skip garbage collection for special elements (window, document, iframes) + skipGarbageCollection: !!(dom.getElementById || dom.navigator) + }); + + if (el) { + el.$cache = entry; + // Inject the back link from the cache in case the cache entry + // had already been created by Ext.fly. Ext.fly creates a cache entry with no el link. + entry.el = el; + } + + return entry; + }, + + updateCacheEntry: function(cacheItem, dom){ + cacheItem.dom = dom; + if (cacheItem.el) { + cacheItem.el.dom = dom; + } + return cacheItem; + }, + + /** + * Generates unique ids. If the element already has an id, it is unchanged + * @param {HTMLElement/Ext.Element} [el] The element to generate an id for + * @param {String} prefix (optional) Id prefix (defaults "ext-gen") + * @return {String} The generated Id. + */ + id: function(el, prefix) { + var me = this, + sandboxPrefix = ''; + el = Ext.getDom(el, true) || {}; + if (el === document) { + el.id = me.documentId; + } + else if (el === window) { + el.id = me.windowId; + } + if (!el.id) { + if (me.isSandboxed) { + sandboxPrefix = Ext.sandboxName.toLowerCase() + '-'; + } + el.id = sandboxPrefix + (prefix || "ext-gen") + (++Ext.idSeed); + } + return el.id; + }, + + escapeId: (function(){ + var validIdRe = /^[a-zA-Z_][a-zA-Z0-9_\-]*$/i, + escapeRx = /([\W]{1})/g, + leadingNumRx = /^(\d)/g, + escapeFn = function(match, capture){ + return "\\" + capture; + }, + numEscapeFn = function(match, capture){ + return '\\00' + capture.charCodeAt(0).toString(16) + ' '; + }; + + return function(id) { + return validIdRe.test(id) + ? id + // replace the number portion last to keep the trailing ' ' + // from being escaped + : id.replace(escapeRx, escapeFn) + .replace(leadingNumRx, numEscapeFn); + }; + }()), + + /** + * Returns the current document body as an {@link Ext.Element}. + * @return {Ext.Element} The document body + */ + getBody: (function() { + var body; + return function() { + return body || (body = Ext.get(document.body)); + }; + }()), + + /** + * Returns the current document head as an {@link Ext.Element}. + * @return {Ext.Element} The document head + * @method + */ + getHead: (function() { + var head; + return function() { + return head || (head = Ext.get(document.getElementsByTagName("head")[0])); + }; + }()), + + /** + * Returns the current HTML document object as an {@link Ext.Element}. + * @return {Ext.Element} The document + */ + getDoc: (function() { + var doc; + return function() { + return doc || (doc = Ext.get(document)); + }; + }()), + + /** + * Returns the current orientation of the mobile device + * @return {String} Either 'portrait' or 'landscape' + */ + getOrientation: function() { + return window.innerHeight > window.innerWidth ? 'portrait' : 'landscape'; + }, + + /** + * Attempts to destroy any objects passed to it by removing all event listeners, removing them from the + * DOM (if applicable) and calling their destroy functions (if available). This method is primarily + * intended for arguments of type {@link Ext.Element} and {@link Ext.Component}, but any subclass of + * {@link Ext.util.Observable} can be passed in. Any number of elements and/or components can be + * passed into this function in a single call as separate arguments. + * + * @param {Ext.dom.Element/Ext.util.Observable/Ext.dom.Element[]/Ext.util.Observable[]...} args + * Any number of elements or components, or an Array of either of these to destroy. + */ + destroy: function() { + var ln = arguments.length, + i, arg; + + for (i = 0; i < ln; i++) { + arg = arguments[i]; + if (arg) { + if (Ext.isArray(arg)) { + this.destroy.apply(this, arg); + } else if (arg.isStore) { + arg.destroyStore(); + } else if (Ext.isFunction(arg.destroy)) { + arg.destroy(); + } else if (arg.dom) { + arg.remove(); + } + } + } + }, + + /** + * Execute a callback function in a particular scope. If `callback` argument is a + * function reference, that is called. If it is a string, the string is assumed to + * be the name of a method on the given `scope`. If no function is passed the call + * is ignored. + * + * For example, these calls are equivalent: + * + * var myFunc = this.myFunc; + * + * Ext.callback('myFunc', this, [arg1, arg2]); + * Ext.callback(myFunc, this, [arg1, arg2]); + * + * Ext.isFunction(myFunc) && this.myFunc(arg1, arg2); + * + * @param {Function} callback The callback to execute + * @param {Object} [scope] The scope to execute in + * @param {Array} [args] The arguments to pass to the function + * @param {Number} [delay] Pass a number to delay the call by a number of milliseconds. + * @return The value returned by the callback or `undefined` (if there is a `delay` + * or if the `callback` is not a function). + */ + callback: function (callback, scope, args, delay) { + var fn, ret; + + if (Ext.isFunction(callback)){ + fn = callback; + } else if (scope && Ext.isString(callback)) { + fn = scope[callback]; + // + if (!fn) { + Ext.Error.raise('No method named "' + callback + '"'); + } + // + } + + if (fn) { + args = args || []; + scope = scope || window; + if (delay) { + Ext.defer(fn, delay, scope, args); + } else { + ret = fn.apply(scope, args); + } + } + + return ret; + }, + + /** + * @private + */ + resolveMethod: function(fn, scope) { + if (Ext.isFunction(fn)) { + return fn; + } + + // + if (!Ext.isObject(scope) || !Ext.isFunction(scope[fn])) { + Ext.Error.raise('No method named "' + fn + '"'); + } + // + + return scope[fn]; + }, + + /** + * Alias for {@link Ext.String#htmlEncode}. + * @inheritdoc Ext.String#htmlEncode + * @ignore + */ + htmlEncode : function(value) { + return Ext.String.htmlEncode(value); + }, + + /** + * Alias for {@link Ext.String#htmlDecode}. + * @inheritdoc Ext.String#htmlDecode + * @ignore + */ + htmlDecode : function(value) { + return Ext.String.htmlDecode(value); + }, + + /** + * Alias for {@link Ext.String#urlAppend}. + * @inheritdoc Ext.String#urlAppend + * @ignore + */ + urlAppend : function(url, s) { + return Ext.String.urlAppend(url, s); + } +}); + + +Ext.ns = Ext.namespace; + +// for old browsers +window.undefined = window.undefined; + +/** + * @class Ext + */ +(function(){ +/* +FF 3.6 - Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.17) Gecko/20110420 Firefox/3.6.17 +FF 4.0.1 - Mozilla/5.0 (Windows NT 5.1; rv:2.0.1) Gecko/20100101 Firefox/4.0.1 +FF 5.0 - Mozilla/5.0 (Windows NT 6.1; WOW64; rv:5.0) Gecko/20100101 Firefox/5.0 + +IE6 - Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1;) +IE7 - Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; SV1;) +IE8 - Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0) +IE9 - Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E)] +IE10 - Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; MS-RTC LM 8) + +Chrome 11 - Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.60 Safari/534.24 + +Safari 5 - Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/533.21.1 (KHTML, like Gecko) Version/5.0.5 Safari/533.21.1 + +Opera 11.11 - Opera/9.80 (Windows NT 6.1; U; en) Presto/2.8.131 Version/11.11 +*/ + var check = function(regex){ + return regex.test(Ext.userAgent); + }, + isStrict = document.compatMode == "CSS1Compat", + version = function (is, regex) { + var m; + return (is && (m = regex.exec(Ext.userAgent))) ? parseFloat(m[1]) : 0; + }, + docMode = document.documentMode, + isOpera = check(/opera/), + isOpera10_5 = isOpera && check(/version\/10\.5/), + isChrome = check(/\bchrome\b/), + isWebKit = check(/webkit/), + isSafari = !isChrome && check(/safari/), + isSafari2 = isSafari && check(/applewebkit\/4/), // unique to Safari 2 + isSafari3 = isSafari && check(/version\/3/), + isSafari4 = isSafari && check(/version\/4/), + isSafari5_0 = isSafari && check(/version\/5\.0/), + isSafari5 = isSafari && check(/version\/5/), + isIE = !isOpera && check(/msie/), + isIE7 = isIE && ((check(/msie 7/) && docMode != 8 && docMode != 9 && docMode != 10) || docMode == 7), + isIE8 = isIE && ((check(/msie 8/) && docMode != 7 && docMode != 9 && docMode != 10) || docMode == 8), + isIE9 = isIE && ((check(/msie 9/) && docMode != 7 && docMode != 8 && docMode != 10) || docMode == 9), + isIE10 = isIE && ((check(/msie 10/) && docMode != 7 && docMode != 8 && docMode != 9) || docMode == 10), + isIE6 = isIE && check(/msie 6/), + isGecko = !isWebKit && check(/gecko/), + isGecko3 = isGecko && check(/rv:1\.9/), + isGecko4 = isGecko && check(/rv:2\.0/), + isGecko5 = isGecko && check(/rv:5\./), + isGecko10 = isGecko && check(/rv:10\./), + isFF3_0 = isGecko3 && check(/rv:1\.9\.0/), + isFF3_5 = isGecko3 && check(/rv:1\.9\.1/), + isFF3_6 = isGecko3 && check(/rv:1\.9\.2/), + isWindows = check(/windows|win32/), + isMac = check(/macintosh|mac os x/), + isLinux = check(/linux/), + scrollbarSize = null, + chromeVersion = version(true, /\bchrome\/(\d+\.\d+)/), + firefoxVersion = version(true, /\bfirefox\/(\d+\.\d+)/), + ieVersion = version(isIE, /msie (\d+\.\d+)/), + operaVersion = version(isOpera, /version\/(\d+\.\d+)/), + safariVersion = version(isSafari, /version\/(\d+\.\d+)/), + webKitVersion = version(isWebKit, /webkit\/(\d+\.\d+)/), + isSecure = /^https/i.test(window.location.protocol), + nullLog; + + // remove css image flicker + try { + document.execCommand("BackgroundImageCache", false, true); + } catch(e) {} + + + // + var primitiveRe = /string|number|boolean/; + function dumpObject (object) { + var member, type, value, name, + members = []; + + // Cannot use Ext.encode since it can recurse endlessly (if we're lucky) + // ...and the data could be prettier! + for (name in object) { + if (object.hasOwnProperty(name)) { + value = object[name]; + + type = typeof value; + if (type == "function") { + continue; + } + + if (type == 'undefined') { + member = type; + } else if (value === null || primitiveRe.test(type) || Ext.isDate(value)) { + member = Ext.encode(value); + } else if (Ext.isArray(value)) { + member = '[ ]'; + } else if (Ext.isObject(value)) { + member = '{ }'; + } else { + member = type; + } + members.push(Ext.encode(name) + ': ' + member); + } + } + + if (members.length) { + return ' \nData: {\n ' + members.join(',\n ') + '\n}'; + } + return ''; + } + + function log (message) { + var options, dump, + con = Ext.global.console, + level = 'log', + indent = log.indent || 0, + stack, + out, + max; + + log.indent = indent; + + if (typeof message != 'string') { + options = message; + message = options.msg || ''; + level = options.level || level; + dump = options.dump; + stack = options.stack; + + if (options.indent) { + ++log.indent; + } else if (options.outdent) { + log.indent = indent = Math.max(indent - 1, 0); + } + + if (dump && !(con && con.dir)) { + message += dumpObject(dump); + dump = null; + } + } + + if (arguments.length > 1) { + message += Array.prototype.slice.call(arguments, 1).join(''); + } + + message = indent ? Ext.String.repeat(' ', log.indentSize * indent) + message : message; + // w/o console, all messages are equal, so munge the level into the message: + if (level != 'log') { + message = '[' + level.charAt(0).toUpperCase() + '] ' + message; + } + + // Not obvious, but 'console' comes and goes when Firebug is turned on/off, so + // an early test may fail either direction if Firebug is toggled. + // + if (con) { // if (Firebug-like console) + if (con[level]) { + con[level](message); + } else { + con.log(message); + } + + if (dump) { + con.dir(dump); + } + + if (stack && con.trace) { + // Firebug's console.error() includes a trace already... + if (!con.firebug || level != 'error') { + con.trace(); + } + } + } else { + if (Ext.isOpera) { + opera.postError(message); + } else { + out = log.out; + max = log.max; + + if (out.length >= max) { + // this formula allows out.max to change (via debugger), where the + // more obvious "max/4" would not quite be the same + Ext.Array.erase(out, 0, out.length - 3 * Math.floor(max / 4)); // keep newest 75% + } + + out.push(message); + } + } + + // Mostly informational, but the Ext.Error notifier uses them: + ++log.count; + ++log.counters[level]; + } + + function logx (level, args) { + if (typeof args[0] == 'string') { + args.unshift({}); + } + args[0].level = level; + log.apply(this, args); + } + + log.error = function () { + logx('error', Array.prototype.slice.call(arguments)); + }; + log.info = function () { + logx('info', Array.prototype.slice.call(arguments)); + }; + log.warn = function () { + logx('warn', Array.prototype.slice.call(arguments)); + }; + + log.count = 0; + log.counters = { error: 0, warn: 0, info: 0, log: 0 }; + log.indentSize = 2; + log.out = []; + log.max = 750; + log.show = function () { + window.open('','extlog').document.write([ + ''].join('')); + }; + // + + nullLog = function () {}; + nullLog.info = nullLog.warn = nullLog.error = Ext.emptyFn; + + // also update Version.js + Ext.setVersion('extjs', '4.2.1.883'); + Ext.apply(Ext, { + /** + * @property {String} SSL_SECURE_URL + * URL to a blank file used by Ext when in secure mode for iframe src and onReady src + * to prevent the IE insecure content warning (`'about:blank'`, except for IE + * in secure mode, which is `'javascript:""'`). + */ + SSL_SECURE_URL : isSecure && isIE ? 'javascript:\'\'' : 'about:blank', + + /** + * @property {Boolean} enableFx + * True if the {@link Ext.fx.Anim} Class is available. + */ + + plainTableCls: Ext.buildSettings.baseCSSPrefix + 'table-plain', + + plainListCls: Ext.buildSettings.baseCSSPrefix + 'list-plain', + + /** + * @property {Boolean} enableNestedListenerRemoval + * **Experimental.** True to cascade listener removal to child elements when an element + * is removed. Currently not optimized for performance. + */ + enableNestedListenerRemoval : false, + + /** + * @property {Boolean} USE_NATIVE_JSON + * Indicates whether to use native browser parsing for JSON methods. + * This option is ignored if the browser does not support native JSON methods. + * + * **Note:** Native JSON methods will not work with objects that have functions. + * Also, property names must be quoted, otherwise the data will not parse. + */ + USE_NATIVE_JSON : false, + + /** + * Returns the dom node for the passed String (id), dom node, or Ext.Element. + * Optional 'strict' flag is needed for IE since it can return 'name' and + * 'id' elements by using getElementById. + * + * Here are some examples: + * + * // gets dom node based on id + * var elDom = Ext.getDom('elId'); + * // gets dom node based on the dom node + * var elDom1 = Ext.getDom(elDom); + * + * // If we don't know if we are working with an + * // Ext.Element or a dom node use Ext.getDom + * function(el){ + * var dom = Ext.getDom(el); + * // do something with the dom node + * } + * + * **Note:** the dom node to be found actually needs to exist (be rendered, etc) + * when this method is called to be successful. + * + * @param {String/HTMLElement/Ext.Element} el + * @return HTMLElement + */ + getDom : function(el, strict) { + if (!el || !document) { + return null; + } + if (el.dom) { + return el.dom; + } else { + if (typeof el == 'string') { + var e = Ext.getElementById(el); + // IE returns elements with the 'name' and 'id' attribute. + // we do a strict check to return the element with only the id attribute + if (e && isIE && strict) { + if (el == e.getAttribute('id')) { + return e; + } else { + return null; + } + } + return e; + } else { + return el; + } + } + }, + + /** + * Removes a DOM node from the document. + * + * Removes this element from the document, removes all DOM event listeners, and + * deletes the cache reference. All DOM event listeners are removed from this element. + * If {@link Ext#enableNestedListenerRemoval Ext.enableNestedListenerRemoval} is + * `true`, then DOM event listeners are also removed from all child nodes. + * The body node will be ignored if passed in. + * + * @param {HTMLElement} node The node to remove + * @method + */ + removeNode : isIE6 || isIE7 || isIE8 + ? (function() { + var d; + return function(n){ + if(n && n.tagName.toUpperCase() != 'BODY'){ + (Ext.enableNestedListenerRemoval) ? Ext.EventManager.purgeElement(n) : Ext.EventManager.removeAll(n); + + var cache = Ext.cache, + id = n.id; + + if (cache[id]) { + delete cache[id].dom; + delete cache[id]; + } + + if (isIE8 && n.parentNode) { + n.parentNode.removeChild(n); + } + d = d || document.createElement('div'); + d.appendChild(n); + d.innerHTML = ''; + } + }; + }()) + : function(n) { + if (n && n.parentNode && n.tagName.toUpperCase() != 'BODY') { + (Ext.enableNestedListenerRemoval) ? Ext.EventManager.purgeElement(n) : Ext.EventManager.removeAll(n); + + var cache = Ext.cache, + id = n.id; + + if (cache[id]) { + delete cache[id].dom; + delete cache[id]; + } + + n.parentNode.removeChild(n); + } + }, + + isStrict: isStrict, + + // IE10 quirks behaves like Gecko/WebKit quirks, so don't include it here + isIEQuirks: isIE && (!isStrict && (isIE6 || isIE7 || isIE8 || isIE9)), + + /** + * True if the detected browser is Opera. + * @type Boolean + */ + isOpera : isOpera, + + /** + * True if the detected browser is Opera 10.5x. + * @type Boolean + */ + isOpera10_5 : isOpera10_5, + + /** + * True if the detected browser uses WebKit. + * @type Boolean + */ + isWebKit : isWebKit, + + /** + * True if the detected browser is Chrome. + * @type Boolean + */ + isChrome : isChrome, + + /** + * True if the detected browser is Safari. + * @type Boolean + */ + isSafari : isSafari, + + /** + * True if the detected browser is Safari 3.x. + * @type Boolean + */ + isSafari3 : isSafari3, + + /** + * True if the detected browser is Safari 4.x. + * @type Boolean + */ + isSafari4 : isSafari4, + + /** + * True if the detected browser is Safari 5.x. + * @type Boolean + */ + isSafari5 : isSafari5, + + /** + * True if the detected browser is Safari 5.0.x. + * @type Boolean + */ + isSafari5_0 : isSafari5_0, + + + /** + * True if the detected browser is Safari 2.x. + * @type Boolean + */ + isSafari2 : isSafari2, + + /** + * True if the detected browser is Internet Explorer. + * @type Boolean + */ + isIE : isIE, + + /** + * True if the detected browser is Internet Explorer 6.x. + * @type Boolean + */ + isIE6 : isIE6, + + /** + * True if the detected browser is Internet Explorer 7.x. + * @type Boolean + */ + isIE7 : isIE7, + + /** + * True if the detected browser is Internet Explorer 7.x or lower. + * @type Boolean + */ + isIE7m : isIE6 || isIE7, + + /** + * True if the detected browser is Internet Explorer 7.x or higher. + * @type Boolean + */ + isIE7p : isIE && !isIE6, + + /** + * True if the detected browser is Internet Explorer 8.x. + * @type Boolean + */ + isIE8 : isIE8, + + /** + * True if the detected browser is Internet Explorer 8.x or lower. + * @type Boolean + */ + isIE8m : isIE6 || isIE7 || isIE8, + + /** + * True if the detected browser is Internet Explorer 8.x or higher. + * @type Boolean + */ + isIE8p : isIE && !(isIE6 || isIE7), + + /** + * True if the detected browser is Internet Explorer 9.x. + * @type Boolean + */ + isIE9 : isIE9, + + /** + * True if the detected browser is Internet Explorer 9.x or lower. + * @type Boolean + */ + isIE9m : isIE6 || isIE7 || isIE8 || isIE9, + + /** + * True if the detected browser is Internet Explorer 9.x or higher. + * @type Boolean + */ + isIE9p : isIE && !(isIE6 || isIE7 || isIE8), + + /** + * True if the detected browser is Internet Explorer 10.x. + * @type Boolean + */ + isIE10 : isIE10, + + /** + * True if the detected browser is Internet Explorer 10.x or lower. + * @type Boolean + */ + isIE10m : isIE6 || isIE7 || isIE8 || isIE9 || isIE10, + + /** + * True if the detected browser is Internet Explorer 10.x or higher. + * @type Boolean + */ + isIE10p : isIE && !(isIE6 || isIE7 || isIE8 || isIE9), + + /** + * True if the detected browser uses the Gecko layout engine (e.g. Mozilla, Firefox). + * @type Boolean + */ + isGecko : isGecko, + + /** + * True if the detected browser uses a Gecko 1.9+ layout engine (e.g. Firefox 3.x). + * @type Boolean + */ + isGecko3 : isGecko3, + + /** + * True if the detected browser uses a Gecko 2.0+ layout engine (e.g. Firefox 4.x). + * @type Boolean + */ + isGecko4 : isGecko4, + + /** + * True if the detected browser uses a Gecko 5.0+ layout engine (e.g. Firefox 5.x). + * @type Boolean + */ + isGecko5 : isGecko5, + + /** + * True if the detected browser uses a Gecko 5.0+ layout engine (e.g. Firefox 5.x). + * @type Boolean + */ + isGecko10 : isGecko10, + + /** + * True if the detected browser uses FireFox 3.0 + * @type Boolean + */ + isFF3_0 : isFF3_0, + + /** + * True if the detected browser uses FireFox 3.5 + * @type Boolean + */ + isFF3_5 : isFF3_5, + + /** + * True if the detected browser uses FireFox 3.6 + * @type Boolean + */ + isFF3_6 : isFF3_6, + + /** + * True if the detected browser uses FireFox 4 + * @type Boolean + */ + isFF4 : 4 <= firefoxVersion && firefoxVersion < 5, + + /** + * True if the detected browser uses FireFox 5 + * @type Boolean + */ + isFF5 : 5 <= firefoxVersion && firefoxVersion < 6, + + /** + * True if the detected browser uses FireFox 10 + * @type Boolean + */ + isFF10 : 10 <= firefoxVersion && firefoxVersion < 11, + + /** + * True if the detected platform is Linux. + * @type Boolean + */ + isLinux : isLinux, + + /** + * True if the detected platform is Windows. + * @type Boolean + */ + isWindows : isWindows, + + /** + * True if the detected platform is Mac OS. + * @type Boolean + */ + isMac : isMac, + + /** + * The current version of Chrome (0 if the browser is not Chrome). + * @type Number + */ + chromeVersion: chromeVersion, + + /** + * The current version of Firefox (0 if the browser is not Firefox). + * @type Number + */ + firefoxVersion: firefoxVersion, + + /** + * The current version of IE (0 if the browser is not IE). This does not account + * for the documentMode of the current page, which is factored into {@link #isIE7}, + * {@link #isIE8} and {@link #isIE9}. Thus this is not always true: + * + * Ext.isIE8 == (Ext.ieVersion == 8) + * + * @type Number + */ + ieVersion: ieVersion, + + /** + * The current version of Opera (0 if the browser is not Opera). + * @type Number + */ + operaVersion: operaVersion, + + /** + * The current version of Safari (0 if the browser is not Safari). + * @type Number + */ + safariVersion: safariVersion, + + /** + * The current version of WebKit (0 if the browser does not use WebKit). + * @type Number + */ + webKitVersion: webKitVersion, + + /** + * True if the page is running over SSL + * @type Boolean + */ + isSecure: isSecure, + + /** + * URL to a 1x1 transparent gif image used by Ext to create inline icons with + * CSS background images. In older versions of IE, this defaults to + * "http://sencha.com/s.gif" and you should change this to a URL on your server. + * For other browsers it uses an inline data URL. + * @type String + */ + BLANK_IMAGE_URL : (isIE6 || isIE7) ? '/' + '/www.sencha.com/s.gif' : 'data:image/gif;base64,R0lGODlhAQABAID/AMDAwAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==', + + /** + * Utility method for returning a default value if the passed value is empty. + * + * The value is deemed to be empty if it is: + * + * - null + * - undefined + * - an empty array + * - a zero length string (Unless the `allowBlank` parameter is `true`) + * + * @param {Object} value The value to test + * @param {Object} defaultValue The value to return if the original value is empty + * @param {Boolean} [allowBlank=false] true to allow zero length strings to qualify as non-empty. + * @return {Object} value, if non-empty, else defaultValue + * @deprecated 4.0.0 Use {@link Ext#valueFrom} instead + */ + value : function(v, defaultValue, allowBlank){ + return Ext.isEmpty(v, allowBlank) ? defaultValue : v; + }, + + /** + * Escapes the passed string for use in a regular expression. + * @param {String} str + * @return {String} + * @deprecated 4.0.0 Use {@link Ext.String#escapeRegex} instead + */ + escapeRe : function(s) { + return s.replace(/([-.*+?\^${}()|\[\]\/\\])/g, "\\$1"); + }, + + /** + * Applies event listeners to elements by selectors when the document is ready. + * The event name is specified with an `@` suffix. + * + * Ext.addBehaviors({ + * // add a listener for click on all anchors in element with id foo + * '#foo a@click' : function(e, t){ + * // do something + * }, + * + * // add the same listener to multiple selectors (separated by comma BEFORE the @) + * '#foo a, #bar span.some-class@mouseover' : function(){ + * // do something + * } + * }); + * + * @param {Object} obj The list of behaviors to apply + */ + addBehaviors : function(o){ + if(!Ext.isReady){ + Ext.onReady(function(){ + Ext.addBehaviors(o); + }); + } else { + var cache = {}, // simple cache for applying multiple behaviors to same selector does query multiple times + parts, + b, + s; + for (b in o) { + if ((parts = b.split('@'))[1]) { // for Object prototype breakers + s = parts[0]; + if(!cache[s]){ + cache[s] = Ext.select(s); + } + cache[s].on(parts[1], o[b]); + } + } + cache = null; + } + }, + + /** + * Returns the size of the browser scrollbars. This can differ depending on + * operating system settings, such as the theme or font size. + * @param {Boolean} [force] true to force a recalculation of the value. + * @return {Object} An object containing scrollbar sizes. + * @return {Number} return.width The width of the vertical scrollbar. + * @return {Number} return.height The height of the horizontal scrollbar. + */ + getScrollbarSize: function (force) { + if (!Ext.isReady) { + return {}; + } + + if (force || !scrollbarSize) { + var db = document.body, + div = document.createElement('div'); + + div.style.width = div.style.height = '100px'; + div.style.overflow = 'scroll'; + div.style.position = 'absolute'; + + db.appendChild(div); // now we can measure the div... + + // at least in iE9 the div is not 100px - the scrollbar size is removed! + scrollbarSize = { + width: div.offsetWidth - div.clientWidth, + height: div.offsetHeight - div.clientHeight + }; + + db.removeChild(div); + } + + return scrollbarSize; + }, + + /** + * Utility method for getting the width of the browser's vertical scrollbar. This + * can differ depending on operating system settings, such as the theme or font size. + * + * This method is deprected in favor of {@link #getScrollbarSize}. + * + * @param {Boolean} [force] true to force a recalculation of the value. + * @return {Number} The width of a vertical scrollbar. + * @deprecated + */ + getScrollBarWidth: function(force){ + var size = Ext.getScrollbarSize(force); + return size.width + 2; // legacy fudge factor + }, + + /** + * Copies a set of named properties fom the source object to the destination object. + * + * Example: + * + * ImageComponent = Ext.extend(Ext.Component, { + * initComponent: function() { + * this.autoEl = { tag: 'img' }; + * MyComponent.superclass.initComponent.apply(this, arguments); + * this.initialBox = Ext.copyTo({}, this.initialConfig, 'x,y,width,height'); + * } + * }); + * + * Important note: To borrow class prototype methods, use {@link Ext.Base#borrow} instead. + * + * @param {Object} dest The destination object. + * @param {Object} source The source object. + * @param {String/String[]} names Either an Array of property names, or a comma-delimited list + * of property names to copy. + * @param {Boolean} [usePrototypeKeys] Defaults to false. Pass true to copy keys off of the + * prototype as well as the instance. + * @return {Object} The modified object. + */ + copyTo : function(dest, source, names, usePrototypeKeys){ + if(typeof names == 'string'){ + names = names.split(/[,;\s]/); + } + + var n, + nLen = names? names.length : 0, + name; + + for(n = 0; n < nLen; n++) { + name = names[n]; + + if(usePrototypeKeys || source.hasOwnProperty(name)){ + dest[name] = source[name]; + } + } + + return dest; + }, + + /** + * Attempts to destroy and then remove a set of named properties of the passed object. + * @param {Object} o The object (most likely a Component) who's properties you wish to destroy. + * @param {String...} args One or more names of the properties to destroy and remove from the object. + */ + destroyMembers : function(o){ + for (var i = 1, a = arguments, len = a.length; i < len; i++) { + Ext.destroy(o[a[i]]); + delete o[a[i]]; + } + }, + + /** + * Logs a message. If a console is present it will be used. On Opera, the method + * "opera.postError" is called. In other cases, the message is logged to an array + * "Ext.log.out". An attached debugger can watch this array and view the log. The + * log buffer is limited to a maximum of "Ext.log.max" entries (defaults to 250). + * The `Ext.log.out` array can also be written to a popup window by entering the + * following in the URL bar (a "bookmarklet"): + * + * javascript:void(Ext.log.show()); + * + * If additional parameters are passed, they are joined and appended to the message. + * A technique for tracing entry and exit of a function is this: + * + * function foo () { + * Ext.log({ indent: 1 }, '>> foo'); + * + * // log statements in here or methods called from here will be indented + * // by one step + * + * Ext.log({ outdent: 1 }, '<< foo'); + * } + * + * This method does nothing in a release build. + * + * @param {String/Object} [options] The message to log or an options object with any + * of the following properties: + * + * - `msg`: The message to log (required). + * - `level`: One of: "error", "warn", "info" or "log" (the default is "log"). + * - `dump`: An object to dump to the log as part of the message. + * - `stack`: True to include a stack trace in the log. + * - `indent`: Cause subsequent log statements to be indented one step. + * - `outdent`: Cause this and following statements to be one step less indented. + * + * @param {String...} [message] The message to log (required unless specified in + * options object). + * + * @method + */ + log : + // + log || + // + nullLog, + + /** + * Partitions the set into two sets: a true set and a false set. + * + * Example 1: + * + * Ext.partition([true, false, true, true, false]); + * // returns [[true, true, true], [false, false]] + * + * Example 2: + * + * Ext.partition( + * Ext.query("p"), + * function(val){ + * return val.className == "class1" + * } + * ); + * // true are those paragraph elements with a className of "class1", + * // false set are those that do not have that className. + * + * @param {Array/NodeList} arr The array to partition + * @param {Function} truth (optional) a function to determine truth. + * If this is omitted the element itself must be able to be evaluated for its truthfulness. + * @return {Array} [array of truish values, array of falsy values] + * @deprecated 4.0.0 Will be removed in the next major version + */ + partition : function(arr, truth){ + var ret = [[],[]], + a, v, + aLen = arr.length; + + for (a = 0; a < aLen; a++) { + v = arr[a]; + ret[ (truth && truth(v, a, arr)) || (!truth && v) ? 0 : 1].push(v); + } + + return ret; + }, + + /** + * Invokes a method on each item in an Array. + * + * Example: + * + * Ext.invoke(Ext.query("p"), "getAttribute", "id"); + * // [el1.getAttribute("id"), el2.getAttribute("id"), ..., elN.getAttribute("id")] + * + * @param {Array/NodeList} arr The Array of items to invoke the method on. + * @param {String} methodName The method name to invoke. + * @param {Object...} args Arguments to send into the method invocation. + * @return {Array} The results of invoking the method on each item in the array. + * @deprecated 4.0.0 Will be removed in the next major version + */ + invoke : function(arr, methodName){ + var ret = [], + args = Array.prototype.slice.call(arguments, 2), + a, v, + aLen = arr.length; + + for (a = 0; a < aLen; a++) { + v = arr[a]; + + if (v && typeof v[methodName] == 'function') { + ret.push(v[methodName].apply(v, args)); + } else { + ret.push(undefined); + } + } + + return ret; + }, + + /** + * Zips N sets together. + * + * Example 1: + * + * Ext.zip([1,2,3],[4,5,6]); // [[1,4],[2,5],[3,6]] + * + * Example 2: + * + * Ext.zip( + * [ "+", "-", "+"], + * [ 12, 10, 22], + * [ 43, 15, 96], + * function(a, b, c){ + * return "$" + a + "" + b + "." + c + * } + * ); // ["$+12.43", "$-10.15", "$+22.96"] + * + * @param {Array/NodeList...} arr This argument may be repeated. Array(s) + * to contribute values. + * @param {Function} zipper (optional) The last item in the argument list. + * This will drive how the items are zipped together. + * @return {Array} The zipped set. + * @deprecated 4.0.0 Will be removed in the next major version + */ + zip : function(){ + var parts = Ext.partition(arguments, function( val ){ return typeof val != 'function'; }), + arrs = parts[0], + fn = parts[1][0], + len = Ext.max(Ext.pluck(arrs, "length")), + ret = [], + i, + j, + aLen; + + for (i = 0; i < len; i++) { + ret[i] = []; + if(fn){ + ret[i] = fn.apply(fn, Ext.pluck(arrs, i)); + }else{ + for (j = 0, aLen = arrs.length; j < aLen; j++){ + ret[i].push( arrs[j][i] ); + } + } + } + return ret; + }, + + /** + * Turns an array into a sentence, joined by a specified connector - e.g.: + * + * Ext.toSentence(['Adama', 'Tigh', 'Roslin']); //'Adama, Tigh and Roslin' + * Ext.toSentence(['Adama', 'Tigh', 'Roslin'], 'or'); //'Adama, Tigh or Roslin' + * + * @param {String[]} items The array to create a sentence from + * @param {String} connector The string to use to connect the last two words. + * Usually 'and' or 'or' - defaults to 'and'. + * @return {String} The sentence string + * @deprecated 4.0.0 Will be removed in the next major version + */ + toSentence: function(items, connector) { + var length = items.length, + head, + tail; + + if (length <= 1) { + return items[0]; + } else { + head = items.slice(0, length - 1); + tail = items[length - 1]; + + return Ext.util.Format.format("{0} {1} {2}", head.join(", "), connector || 'and', tail); + } + }, + + /** + * Sets the default font-family to use for components that support a `glyph` config. + * @param {String} fontFamily The name of the font-family + */ + setGlyphFontFamily: function(fontFamily) { + Ext._glyphFontFamily = fontFamily; + }, + + /** + * @property {Boolean} useShims + * By default, Ext intelligently decides whether floating elements should be shimmed. + * If you are using flash, you may want to set this to true. + */ + useShims: isIE6 + }); +}()); + +/** + * Loads Ext.app.Application class and starts it up with given configuration after the + * page is ready. + * + * See `Ext.app.Application` for details. + * + * @param {Object/String} config Application config object or name of a class derived from Ext.app.Application. + */ +Ext.application = function(config) { + var App, paths, ns; + + if (typeof config === "string") { + Ext.require(config, function(){ + App = Ext.ClassManager.get(config); + }); + } + else { + // We have to process `paths` before creating Application class, + // or `requires` won't work. + Ext.Loader.setPath(config.name, config.appFolder || 'app'); + + if (paths = config.paths) { + for (ns in paths) { + if (paths.hasOwnProperty(ns)) { + Ext.Loader.setPath(ns, paths[ns]); + } + } + } + + config['paths processed'] = true; + + // Let Ext.define do the hard work but don't assign a class name. + // + Ext.define(config.name + ".$application", Ext.apply({ + extend: 'Ext.app.Application' // can be replaced by config! + }, config), + // call here when the App class gets full defined + function () { + App = this; + }); + } + + Ext.onReady(function() { + // this won't be called until App has been created and its requires have been + // met... + Ext.app.Application.instance = new App(); + }); +}; diff --git a/extjs-django/marvel/static/extjs/src/Ext.js b/extjs-django/marvel/static/extjs/src/Ext.js new file mode 100644 index 0000000..5ddc9c4 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/Ext.js @@ -0,0 +1,897 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +// @tag foundation,core +// @define Ext + +/** + * @class Ext + * @singleton + */ +var Ext = Ext || {}; +Ext._startTime = new Date().getTime(); +(function() { + var global = this, + objectPrototype = Object.prototype, + toString = objectPrototype.toString, + enumerables = true, + enumerablesTest = {toString: 1}, + emptyFn = function () {}, + // This is the "$previous" method of a hook function on an instance. When called, it + // calls through the class prototype by the name of the called method. + callOverrideParent = function () { + var method = callOverrideParent.caller.caller; // skip callParent (our caller) + return method.$owner.prototype[method.$name].apply(this, arguments); + }, + i, + nonWhitespaceRe = /\S/, + ExtApp, + iterableRe = /\[object\s*(?:Array|Arguments|\w*Collection|\w*List|HTML\s+document\.all\s+class)\]/; + + Function.prototype.$extIsFunction = true; + + Ext.global = global; + + for (i in enumerablesTest) { + enumerables = null; + } + + if (enumerables) { + enumerables = ['hasOwnProperty', 'valueOf', 'isPrototypeOf', 'propertyIsEnumerable', + 'toLocaleString', 'toString', 'constructor']; + } + + /** + * An array containing extra enumerables for old browsers + * @property {String[]} + */ + Ext.enumerables = enumerables; + + /** + * Copies all the properties of config to the specified object. + * Note that if recursive merging and cloning without referencing the original objects / arrays is needed, use + * {@link Ext.Object#merge} instead. + * @param {Object} object The receiver of the properties + * @param {Object} config The source of the properties + * @param {Object} [defaults] A different object that will also be applied for default values + * @return {Object} returns obj + */ + Ext.apply = function(object, config, defaults) { + if (defaults) { + Ext.apply(object, defaults); + } + + if (object && config && typeof config === 'object') { + var i, j, k; + + for (i in config) { + object[i] = config[i]; + } + + if (enumerables) { + for (j = enumerables.length; j--;) { + k = enumerables[j]; + if (config.hasOwnProperty(k)) { + object[k] = config[k]; + } + } + } + } + + return object; + }; + + Ext.buildSettings = Ext.apply({ + baseCSSPrefix: 'x-' + }, Ext.buildSettings || {}); + + Ext.apply(Ext, { + + /** + * @property {String} [name='Ext'] + *

    The name of the property in the global namespace (The window in browser environments) which refers to the current instance of Ext.

    + *

    This is usually "Ext", but if a sandboxed build of ExtJS is being used, this will be an alternative name.

    + *

    If code is being generated for use by eval or to create a new Function, and the global instance + * of Ext must be referenced, this is the name that should be built into the code.

    + */ + name: Ext.sandboxName || 'Ext', + + /** + * @property {Function} + * A reusable empty function + */ + emptyFn: emptyFn, + + /** + * A reusable identity function. The function will always return the first argument, unchanged. + */ + identityFn: function(o) { + return o; + }, + + /** + * A zero length string which will pass a truth test. Useful for passing to methods + * which use a truth test to reject falsy values where a string value must be cleared. + */ + emptyString: new String(), + + baseCSSPrefix: Ext.buildSettings.baseCSSPrefix, + + /** + * Copies all the properties of config to object if they don't already exist. + * @param {Object} object The receiver of the properties + * @param {Object} config The source of the properties + * @return {Object} returns obj + */ + applyIf: function(object, config) { + var property; + + if (object) { + for (property in config) { + if (object[property] === undefined) { + object[property] = config[property]; + } + } + } + + return object; + }, + + /** + * Iterates either an array or an object. This method delegates to + * {@link Ext.Array#each Ext.Array.each} if the given value is iterable, and {@link Ext.Object#each Ext.Object.each} otherwise. + * + * @param {Object/Array} object The object or array to be iterated. + * @param {Function} fn The function to be called for each iteration. See and {@link Ext.Array#each Ext.Array.each} and + * {@link Ext.Object#each Ext.Object.each} for detailed lists of arguments passed to this function depending on the given object + * type that is being iterated. + * @param {Object} scope (Optional) The scope (`this` reference) in which the specified function is executed. + * Defaults to the object being iterated itself. + * @markdown + */ + iterate: function(object, fn, scope) { + if (Ext.isEmpty(object)) { + return; + } + + if (scope === undefined) { + scope = object; + } + + if (Ext.isIterable(object)) { + Ext.Array.each.call(Ext.Array, object, fn, scope); + } + else { + Ext.Object.each.call(Ext.Object, object, fn, scope); + } + } + }); + + Ext.apply(Ext, { + + /** + * This method deprecated. Use {@link Ext#define Ext.define} instead. + * @method + * @param {Function} superclass + * @param {Object} overrides + * @return {Function} The subclass constructor from the overrides parameter, or a generated one if not provided. + * @deprecated 4.0.0 Use {@link Ext#define Ext.define} instead + */ + extend: (function() { + // inline overrides + var objectConstructor = objectPrototype.constructor, + inlineOverrides = function(o) { + for (var m in o) { + if (!o.hasOwnProperty(m)) { + continue; + } + this[m] = o[m]; + } + }; + + return function(subclass, superclass, overrides) { + // First we check if the user passed in just the superClass with overrides + if (Ext.isObject(superclass)) { + overrides = superclass; + superclass = subclass; + subclass = overrides.constructor !== objectConstructor ? overrides.constructor : function() { + superclass.apply(this, arguments); + }; + } + + // + if (!superclass) { + Ext.Error.raise({ + sourceClass: 'Ext', + sourceMethod: 'extend', + msg: 'Attempting to extend from a class which has not been loaded on the page.' + }); + } + // + + // We create a new temporary class + var F = function() {}, + subclassProto, superclassProto = superclass.prototype; + + F.prototype = superclassProto; + subclassProto = subclass.prototype = new F(); + subclassProto.constructor = subclass; + subclass.superclass = superclassProto; + + if (superclassProto.constructor === objectConstructor) { + superclassProto.constructor = superclass; + } + + subclass.override = function(overrides) { + Ext.override(subclass, overrides); + }; + + subclassProto.override = inlineOverrides; + subclassProto.proto = subclassProto; + + subclass.override(overrides); + subclass.extend = function(o) { + return Ext.extend(subclass, o); + }; + + return subclass; + }; + }()), + + /** + * Overrides members of the specified `target` with the given values. + * + * If the `target` is a class declared using {@link Ext#define Ext.define}, the + * `override` method of that class is called (see {@link Ext.Base#override}) given + * the `overrides`. + * + * If the `target` is a function, it is assumed to be a constructor and the contents + * of `overrides` are applied to its `prototype` using {@link Ext#apply Ext.apply}. + * + * If the `target` is an instance of a class declared using {@link Ext#define Ext.define}, + * the `overrides` are applied to only that instance. In this case, methods are + * specially processed to allow them to use {@link Ext.Base#callParent}. + * + * var panel = new Ext.Panel({ ... }); + * + * Ext.override(panel, { + * initComponent: function () { + * // extra processing... + * + * this.callParent(); + * } + * }); + * + * If the `target` is none of these, the `overrides` are applied to the `target` + * using {@link Ext#apply Ext.apply}. + * + * Please refer to {@link Ext#define Ext.define} and {@link Ext.Base#override} for + * further details. + * + * @param {Object} target The target to override. + * @param {Object} overrides The properties to add or replace on `target`. + * @method override + */ + override: function (target, overrides) { + if (target.$isClass) { + target.override(overrides); + } else if (typeof target == 'function') { + Ext.apply(target.prototype, overrides); + } else { + var owner = target.self, + name, value; + + if (owner && owner.$isClass) { // if (instance of Ext.define'd class) + for (name in overrides) { + if (overrides.hasOwnProperty(name)) { + value = overrides[name]; + + if (typeof value == 'function') { + // + if (owner.$className) { + value.displayName = owner.$className + '#' + name; + } + // + + value.$name = name; + value.$owner = owner; + value.$previous = target.hasOwnProperty(name) + ? target[name] // already hooked, so call previous hook + : callOverrideParent; // calls by name on prototype + } + + target[name] = value; + } + } + } else { + Ext.apply(target, overrides); + } + } + + return target; + } + }); + + // A full set of static methods to do type checking + Ext.apply(Ext, { + + /** + * Returns the given value itself if it's not empty, as described in {@link Ext#isEmpty}; returns the default + * value (second argument) otherwise. + * + * @param {Object} value The value to test + * @param {Object} defaultValue The value to return if the original value is empty + * @param {Boolean} allowBlank (optional) true to allow zero length strings to qualify as non-empty (defaults to false) + * @return {Object} value, if non-empty, else defaultValue + */ + valueFrom: function(value, defaultValue, allowBlank){ + return Ext.isEmpty(value, allowBlank) ? defaultValue : value; + }, + + /** + * Returns the type of the given variable in string format. List of possible values are: + * + * - `undefined`: If the given value is `undefined` + * - `null`: If the given value is `null` + * - `string`: If the given value is a string + * - `number`: If the given value is a number + * - `boolean`: If the given value is a boolean value + * - `date`: If the given value is a `Date` object + * - `function`: If the given value is a function reference + * - `object`: If the given value is an object + * - `array`: If the given value is an array + * - `regexp`: If the given value is a regular expression + * - `element`: If the given value is a DOM Element + * - `textnode`: If the given value is a DOM text node and contains something other than whitespace + * - `whitespace`: If the given value is a DOM text node and contains only whitespace + * + * @param {Object} value + * @return {String} + * @markdown + */ + typeOf: function(value) { + var type, + typeToString; + + if (value === null) { + return 'null'; + } + + type = typeof value; + + if (type === 'undefined' || type === 'string' || type === 'number' || type === 'boolean') { + return type; + } + + typeToString = toString.call(value); + + switch(typeToString) { + case '[object Array]': + return 'array'; + case '[object Date]': + return 'date'; + case '[object Boolean]': + return 'boolean'; + case '[object Number]': + return 'number'; + case '[object RegExp]': + return 'regexp'; + } + + if (type === 'function') { + return 'function'; + } + + if (type === 'object') { + if (value.nodeType !== undefined) { + if (value.nodeType === 3) { + return (nonWhitespaceRe).test(value.nodeValue) ? 'textnode' : 'whitespace'; + } + else { + return 'element'; + } + } + + return 'object'; + } + + // + Ext.Error.raise({ + sourceClass: 'Ext', + sourceMethod: 'typeOf', + msg: 'Failed to determine the type of the specified value "' + value + '". This is most likely a bug.' + }); + // + }, + + /** + * Coerces the first value if possible so that it is comparable to the second value. + * + * Coercion only works between the basic atomic data types String, Boolean, Number, Date, null and undefined. + * + * Numbers and numeric strings are coerced to Dates using the value as the millisecond era value. + * + * Strings are coerced to Dates by parsing using the {@link Ext.Date#defaultFormat defaultFormat}. + * + * For example + * + * Ext.coerce('false', true); + * + * returns the boolean value `false` because the second parameter is of type `Boolean`. + * + * @param {Mixed} from The value to coerce + * @param {Mixed} to The value it must be compared against + * @return The coerced value. + */ + coerce: function(from, to) { + var fromType = Ext.typeOf(from), + toType = Ext.typeOf(to), + isString = typeof from === 'string'; + + if (fromType !== toType) { + switch (toType) { + case 'string': + return String(from); + case 'number': + return Number(from); + case 'boolean': + return isString && (!from || from === 'false') ? false : Boolean(from); + case 'null': + return isString && (!from || from === 'null') ? null : from; + case 'undefined': + return isString && (!from || from === 'undefined') ? undefined : from; + case 'date': + return isString && isNaN(from) ? Ext.Date.parse(from, Ext.Date.defaultFormat) : Date(Number(from)); + } + } + return from; + }, + + /** + * Returns true if the passed value is empty, false otherwise. The value is deemed to be empty if it is either: + * + * - `null` + * - `undefined` + * - a zero-length array + * - a zero-length string (Unless the `allowEmptyString` parameter is set to `true`) + * + * @param {Object} value The value to test + * @param {Boolean} allowEmptyString (optional) true to allow empty strings (defaults to false) + * @return {Boolean} + * @markdown + */ + isEmpty: function(value, allowEmptyString) { + return (value === null) || (value === undefined) || (!allowEmptyString ? value === '' : false) || (Ext.isArray(value) && value.length === 0); + }, + + /** + * Returns true if the passed value is a JavaScript Array, false otherwise. + * + * @param {Object} target The target to test + * @return {Boolean} + * @method + */ + isArray: ('isArray' in Array) ? Array.isArray : function(value) { + return toString.call(value) === '[object Array]'; + }, + + /** + * Returns true if the passed value is a JavaScript Date object, false otherwise. + * @param {Object} object The object to test + * @return {Boolean} + */ + isDate: function(value) { + return toString.call(value) === '[object Date]'; + }, + + /** + * Returns true if the passed value is a JavaScript Object, false otherwise. + * @param {Object} value The value to test + * @return {Boolean} + * @method + */ + isObject: (toString.call(null) === '[object Object]') ? + function(value) { + // check ownerDocument here as well to exclude DOM nodes + return value !== null && value !== undefined && toString.call(value) === '[object Object]' && value.ownerDocument === undefined; + } : + function(value) { + return toString.call(value) === '[object Object]'; + }, + + /** + * @private + */ + isSimpleObject: function(value) { + return value instanceof Object && value.constructor === Object; + }, + /** + * Returns true if the passed value is a JavaScript 'primitive', a string, number or boolean. + * @param {Object} value The value to test + * @return {Boolean} + */ + isPrimitive: function(value) { + var type = typeof value; + + return type === 'string' || type === 'number' || type === 'boolean'; + }, + + /** + * Returns true if the passed value is a JavaScript Function, false otherwise. + * @param {Object} value The value to test + * @return {Boolean} + * @method + */ + isFunction: function(value) { + return !!(value && value.$extIsFunction); + }, + + /** + * Returns true if the passed value is a number. Returns false for non-finite numbers. + * @param {Object} value The value to test + * @return {Boolean} + */ + isNumber: function(value) { + return typeof value === 'number' && isFinite(value); + }, + + /** + * Validates that a value is numeric. + * @param {Object} value Examples: 1, '1', '2.34' + * @return {Boolean} True if numeric, false otherwise + */ + isNumeric: function(value) { + return !isNaN(parseFloat(value)) && isFinite(value); + }, + + /** + * Returns true if the passed value is a string. + * @param {Object} value The value to test + * @return {Boolean} + */ + isString: function(value) { + return typeof value === 'string'; + }, + + /** + * Returns true if the passed value is a boolean. + * + * @param {Object} value The value to test + * @return {Boolean} + */ + isBoolean: function(value) { + return typeof value === 'boolean'; + }, + + /** + * Returns true if the passed value is an HTMLElement + * @param {Object} value The value to test + * @return {Boolean} + */ + isElement: function(value) { + return value ? value.nodeType === 1 : false; + }, + + /** + * Returns true if the passed value is a TextNode + * @param {Object} value The value to test + * @return {Boolean} + */ + isTextNode: function(value) { + return value ? value.nodeName === "#text" : false; + }, + + /** + * Returns true if the passed value is defined. + * @param {Object} value The value to test + * @return {Boolean} + */ + isDefined: function(value) { + return typeof value !== 'undefined'; + }, + + /** + * Returns `true` if the passed value is iterable, that is, if elements of it are addressable using array + * notation with numeric indices, `false` otherwise. + * + * Arrays and function `arguments` objects are iterable. Also HTML collections such as `NodeList` and `HTMLCollection' + * are iterable. + * + * @param {Object} value The value to test + * @return {Boolean} + */ + isIterable: function(value) { + // To be iterable, the object must have a numeric length property and must not be a string or function. + if (!value || typeof value.length !== 'number' || typeof value === 'string' || value.$extIsFunction) { + return false; + } + + // Certain "standard" collections in IE (such as document.images) do not offer the correct + // Javascript Object interface; specifically, they lack the propertyIsEnumerable method. + // And the item property while it does exist is not typeof "function" + if (!value.propertyIsEnumerable) { + return !!value.item; + } + + // If it is a regular, interrogatable JS object (not an IE ActiveX object), then... + // If it has its own property called "length", but not enumerable, it's iterable + if (value.hasOwnProperty('length') && !value.propertyIsEnumerable('length')) { + return true; + } + + // Test against whitelist which includes known iterable collection types + return iterableRe.test(toString.call(value)); + } + }); + + Ext.apply(Ext, { + + /** + * Clone simple variables including array, {}-like objects, DOM nodes and Date without keeping the old reference. + * A reference for the object itself is returned if it's not a direct decendant of Object. For model cloning, + * see {@link Ext.data.Model#copy Model.copy}. + * + * @param {Object} item The variable to clone + * @return {Object} clone + */ + clone: function(item) { + var type, + i, + j, + k, + clone, + key; + + if (item === null || item === undefined) { + return item; + } + + // DOM nodes + // TODO proxy this to Ext.Element.clone to handle automatic id attribute changing + // recursively + if (item.nodeType && item.cloneNode) { + return item.cloneNode(true); + } + + type = toString.call(item); + + // Date + if (type === '[object Date]') { + return new Date(item.getTime()); + } + + + // Array + if (type === '[object Array]') { + i = item.length; + + clone = []; + + while (i--) { + clone[i] = Ext.clone(item[i]); + } + } + // Object + else if (type === '[object Object]' && item.constructor === Object) { + clone = {}; + + for (key in item) { + clone[key] = Ext.clone(item[key]); + } + + if (enumerables) { + for (j = enumerables.length; j--;) { + k = enumerables[j]; + if (item.hasOwnProperty(k)) { + clone[k] = item[k]; + } + } + } + } + + return clone || item; + }, + + /** + * @private + * Generate a unique reference of Ext in the global scope, useful for sandboxing + */ + getUniqueGlobalNamespace: function() { + var uniqueGlobalNamespace = this.uniqueGlobalNamespace, + i; + + if (uniqueGlobalNamespace === undefined) { + i = 0; + + do { + uniqueGlobalNamespace = 'ExtBox' + (++i); + } while (Ext.global[uniqueGlobalNamespace] !== undefined); + + Ext.global[uniqueGlobalNamespace] = Ext; + this.uniqueGlobalNamespace = uniqueGlobalNamespace; + } + + return uniqueGlobalNamespace; + }, + + /** + * @private + */ + functionFactoryCache: {}, + + cacheableFunctionFactory: function() { + var me = this, + args = Array.prototype.slice.call(arguments), + cache = me.functionFactoryCache, + idx, fn, ln; + + if (Ext.isSandboxed) { + ln = args.length; + if (ln > 0) { + ln--; + args[ln] = 'var Ext=window.' + Ext.name + ';' + args[ln]; + } + } + idx = args.join(''); + fn = cache[idx]; + if (!fn) { + fn = Function.prototype.constructor.apply(Function.prototype, args); + + cache[idx] = fn; + } + return fn; + }, + + functionFactory: function() { + var me = this, + args = Array.prototype.slice.call(arguments), + ln; + + if (Ext.isSandboxed) { + ln = args.length; + if (ln > 0) { + ln--; + args[ln] = 'var Ext=window.' + Ext.name + ';' + args[ln]; + } + } + + return Function.prototype.constructor.apply(Function.prototype, args); + }, + + /** + * @private + * @property + */ + Logger: { + verbose: emptyFn, + log: emptyFn, + info: emptyFn, + warn: emptyFn, + error: function(message) { + throw new Error(message); + }, + deprecate: emptyFn + } + }); + + /** + * Old alias to {@link Ext#typeOf} + * @deprecated 4.0.0 Use {@link Ext#typeOf} instead + * @method + * @inheritdoc Ext#typeOf + */ + Ext.type = Ext.typeOf; + + // When using Cmd optimizations, the namespace Ext.app may already be defined + // by this point since it's done up front by the tool. Check if app already + // exists before overwriting it. + ExtApp = Ext.app; + if (!ExtApp) { + ExtApp = Ext.app = {}; + } + Ext.apply(ExtApp, { + namespaces: {}, + + /** + * @private + */ + collectNamespaces: function(paths) { + var namespaces = Ext.app.namespaces, + path; + + for (path in paths) { + if (paths.hasOwnProperty(path)) { + namespaces[path] = true; + } + } + }, + + /** + * Adds namespace(s) to known list. + * + * @param {String/String[]} namespace + */ + addNamespaces: function(ns) { + var namespaces = Ext.app.namespaces, + i, l; + + if (!Ext.isArray(ns)) { + ns = [ns]; + } + + for (i = 0, l = ns.length; i < l; i++) { + namespaces[ns[i]] = true; + } + }, + + /** + * @private Clear all namespaces from known list. + */ + clearNamespaces: function() { + Ext.app.namespaces = {}; + }, + + /** + * Get namespace prefix for a class name. + * + * @param {String} className + * + * @return {String} Namespace prefix if it's known, otherwise undefined + */ + getNamespace: function(className) { + var namespaces = Ext.app.namespaces, + deepestPrefix = '', + prefix; + + for (prefix in namespaces) { + if (namespaces.hasOwnProperty(prefix) && + prefix.length > deepestPrefix.length && + (prefix + '.' === className.substring(0, prefix.length + 1))) { + deepestPrefix = prefix; + } + } + + return deepestPrefix === '' ? undefined : deepestPrefix; + } + }); +}()); + +/* + * This method evaluates the given code free of any local variable. In some browsers this + * will be at global scope, in others it will be in a function. + * @parma {String} code The code to evaluate. + * @private + * @method + */ +Ext.globalEval = Ext.global.execScript + ? function(code) { + execScript(code); + } + : function($$code) { + // IMPORTANT: because we use eval we cannot place this in the above function or it + // will break the compressor's ability to rename local variables... + (function(){ + // This var should not be replaced by the compressor. We need to do this so + // that Ext refers to the global Ext, if we're sandboxing it may + // refer to the local instance inside the closure + var Ext = this.Ext; + eval($$code); + }()); + }; diff --git a/extjs-django/marvel/static/extjs/src/FocusManager.js b/extjs-django/marvel/static/extjs/src/FocusManager.js new file mode 100644 index 0000000..551367d --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/FocusManager.js @@ -0,0 +1,714 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * The FocusManager is responsible for globally: + * + * 1. Managing component focus + * 2. Providing basic keyboard navigation + * 3. (optional) Provide a visual cue for focused components, in the form of a focus ring/frame. + * + * To activate the FocusManager, simply call `Ext.FocusManager.enable();`. In turn, you may + * deactivate the FocusManager by subsequently calling `Ext.FocusManager.disable();`. The + * FocusManager is disabled by default. + * + * To enable the optional focus frame, pass `true` or `{focusFrame: true}` to {@link #method-enable}. + * + * Another feature of the FocusManager is to provide basic keyboard focus navigation scoped to any {@link Ext.container.Container} + * that would like to have navigation between its child {@link Ext.Component}'s. + * + * @author Jarred Nicholls + * @docauthor Jarred Nicholls + */ +Ext.define('Ext.FocusManager', { + singleton: true, + alternateClassName: ['Ext.FocusMgr' ], + + mixins: { + observable: 'Ext.util.Observable' + }, + + requires: [ + 'Ext.AbstractComponent', + 'Ext.Component', + 'Ext.ComponentManager', + 'Ext.ComponentQuery', + 'Ext.util.HashMap', + 'Ext.util.KeyNav' + ], + + /** + * @property {Boolean} enabled + * Whether or not the FocusManager is currently enabled + */ + enabled: false, + + /** + * @property {Ext.Component} focusedCmp + * The currently focused component. + */ + + focusElementCls: Ext.baseCSSPrefix + 'focus-element', + + focusFrameCls: Ext.baseCSSPrefix + 'focus-frame', + + /** + * @property {String[]} whitelist + * A list of xtypes that should ignore certain navigation input keys and + * allow for the default browser event/behavior. These input keys include: + * + * 1. Backspace + * 2. Delete + * 3. Left + * 4. Right + * 5. Up + * 6. Down + * + * The FocusManager will not attempt to navigate when a component is an xtype (or descendents thereof) + * that belongs to this whitelist. E.g., an {@link Ext.form.field.Text} should allow + * the user to move the input cursor left and right, and to delete characters, etc. + */ + whitelist: [ + 'textfield' + ], + + constructor: function(config) { + var me = this, + CQ = Ext.ComponentQuery; + + me.mixins.observable.constructor.call(me, config); + + me.addEvents( + /** + * @event beforecomponentfocus + * Fires before a component becomes focused. Return `false` to prevent + * the component from gaining focus. + * @param {Ext.FocusManager} fm A reference to the FocusManager singleton + * @param {Ext.Component} cmp The component that is being focused + * @param {Ext.Component} previousCmp The component that was previously focused, + * or `undefined` if there was no previously focused component. + */ + 'beforecomponentfocus', + + /** + * @event componentfocus + * Fires after a component becomes focused. + * @param {Ext.FocusManager} fm A reference to the FocusManager singleton + * @param {Ext.Component} cmp The component that has been focused + * @param {Ext.Component} previousCmp The component that was previously focused, + * or `undefined` if there was no previously focused component. + */ + 'componentfocus', + + /** + * @event disable + * Fires when the FocusManager is disabled + * @param {Ext.FocusManager} fm A reference to the FocusManager singleton + */ + 'disable', + + /** + * @event enable + * Fires when the FocusManager is enabled + * @param {Ext.FocusManager} fm A reference to the FocusManager singleton + */ + 'enable' + ); + + me.focusTask = new Ext.util.DelayedTask(me.handleComponentFocus, me); + + // Gain control on Component focus, blur, hide and destroy + Ext.override(Ext.AbstractComponent, { + onFocus: function() { + this.callParent(arguments); + if (me.enabled && this.hasFocus) { + Array.prototype.unshift.call(arguments, this); + me.onComponentFocus.apply(me, arguments); + } + }, + onBlur: function() { + this.callParent(arguments); + if (me.enabled && !this.hasFocus) { + Array.prototype.unshift.call(arguments, this); + me.onComponentBlur.apply(me, arguments); + } + }, + onDestroy: function() { + this.callParent(arguments); + if (me.enabled) { + Array.prototype.unshift.call(arguments, this); + me.onComponentDestroy.apply(me, arguments); + } + } + }); + Ext.override(Ext.Component, { + afterHide: function() { + this.callParent(arguments); + if (me.enabled) { + Array.prototype.unshift.call(arguments, this); + me.onComponentHide.apply(me, arguments); + } + } + }); + // Setup KeyNav that's bound to document to catch all + // unhandled/bubbled key events for navigation + me.keyNav = new Ext.util.KeyNav(Ext.getDoc(), { + disabled: true, + scope: me, + + backspace: me.focusLast, + enter: me.navigateIn, + esc: me.navigateOut, + tab: me.navigateSiblings, + space: me.navigateIn, + del: me.focusLast, + left: me.navigateSiblings, + right: me.navigateSiblings, + down: me.navigateSiblings, + up: me.navigateSiblings + }); + + me.focusData = {}; + me.subscribers = new Ext.util.HashMap(); + me.focusChain = {}; + + // Setup some ComponentQuery pseudos + Ext.apply(CQ.pseudos, { + // Return the single next focusable sibling from the current idx in either direction (step -1 or 1) + nextFocus: function(cmps, idx, step) { + step = step || 1; + idx = parseInt(idx, 10); + + var len = cmps.length, + i = idx, c; + + for (;;) { + // Increment index, and loop round if off either end + if ((i += step) >= len) { + i = 0; + } else if (i < 0) { + i = len - 1; + } + + // As soon as we loop back to the starting index, give up, there are no focusable siblings. + if (i === idx) { + return []; + } + + // If we have found a focusable sibling, return it + if ((c = cmps[i]).isFocusable()) { + return [c]; + } + } + + return []; + }, + + prevFocus: function(cmps, idx) { + return this.nextFocus(cmps, idx, -1); + }, + + root: function(cmps) { + var len = cmps.length, + results = [], + i = 0, + c; + + for (; i < len; i++) { + c = cmps[i]; + if (!c.ownerCt) { + results.push(c); + } + } + + return results; + } + }); + }, + + /** + * Adds the specified xtype to the {@link #whitelist}. + * @param {String/String[]} xtype Adds the xtype(s) to the {@link #whitelist}. + */ + addXTypeToWhitelist: function(xtype) { + var me = this; + + if (Ext.isArray(xtype)) { + Ext.Array.forEach(xtype, me.addXTypeToWhitelist, me); + return; + } + + if (!Ext.Array.contains(me.whitelist, xtype)) { + me.whitelist.push(xtype); + } + }, + + clearComponent: function(cmp) { + clearTimeout(this.cmpFocusDelay); + if (!cmp.isDestroyed) { + cmp.blur(); + } + }, + + /** + * Disables the FocusManager by turning of all automatic focus management and keyboard navigation + */ + disable: function() { + var me = this; + + if (!me.enabled) { + return; + } + + delete me.options; + me.enabled = false; + + me.removeDOM(); + + // Stop handling key navigation + me.keyNav.disable(); + + me.fireEvent('disable', me); + }, + + /** + * Enables the FocusManager by turning on all automatic focus management and keyboard navigation + * @param {Boolean/Object} options Either `true`/`false` to turn on the focus frame, or an object + * with the following options: + * @param {Boolean} [options.focusFrame=false] `true` to show the focus frame around a component when it is focused. + */ + enable: function(options) { + var me = this; + + if (options === true) { + options = { focusFrame: true }; + } + me.options = options = options || {}; + + if (me.enabled) { + return; + } + + // When calling addFocusListener on Containers, the FocusManager must be enabled, otherwise it won't do it. + me.enabled = true; + me.initDOM(options); + + // Start handling key navigation + me.keyNav.enable(); + + // Finally, let's focus our global focus el so we start fresh + me.focusEl.focus(); + delete me.focusedCmp; + + me.fireEvent('enable', me); + }, + + focusLast: function(e) { + var me = this; + + if (me.isWhitelisted(me.focusedCmp)) { + return true; + } + + // Go back to last focused item + if (me.previousFocusedCmp) { + me.previousFocusedCmp.focus(); + } + }, + + getRootComponents: function() { + var CQ = Ext.ComponentQuery, + inline = CQ.query(':focusable:root:not([floating])'), + floating = CQ.query(':focusable:root[floating]'); + + // Floating items should go to the top of our root stack, and be ordered + // by their z-index (highest first) + floating.sort(function(a, b) { + return a.el.getZIndex() > b.el.getZIndex(); + }); + + return floating.concat(inline); + }, + + initDOM: function(options) { + var me = this, + cls = me.focusFrameCls, + needListeners = Ext.ComponentQuery.query('{getFocusEl()}:not([focusListenerAdded])'), + i = 0, len = needListeners.length; + + if (!Ext.isReady) { + return Ext.onReady(me.initDOM, me); + } + + // When we are enabled, we must ensure that all Components which return a focusEl that is *not naturally focusable* + // have focus/blur listeners enabled to then trigger onFocus/onBlur handling so that we get to know about their focus action. + // These listeners are not added at initialization unless the FocusManager is enabled at that time. + for (; i < len; i++) { + needListeners[i].addFocusListener(); + } + + // Make the document body the global focus element + if (!me.focusEl) { + me.focusEl = Ext.getBody(); + me.focusEl.dom.tabIndex = -1; + } + + // Create global focus frame + if (!me.focusFrame && options.focusFrame) { + me.focusFrame = Ext.getBody().createChild({ + cls: cls, + children: [ + { cls: cls + '-top' }, + { cls: cls + '-bottom' }, + { cls: cls + '-left' }, + { cls: cls + '-right' } + ], + style: 'top: -100px; left: -100px;' + }); + me.focusFrame.setVisibilityMode(Ext.Element.DISPLAY); + me.focusFrame.hide().setLocalXY(0, 0); + } + }, + + isWhitelisted: function(cmp) { + return cmp && Ext.Array.some(this.whitelist, function(x) { + return cmp.isXType(x); + }); + }, + + navigateIn: function(e) { + var me = this, + focusedCmp = me.focusedCmp, + defaultRoot, + firstChild; + + if (me.isWhitelisted(focusedCmp)) { + return true; + } + + if (!focusedCmp) { + // No focus yet, so focus the first root cmp on the page + defaultRoot = me.getRootComponents()[0]; + if (defaultRoot) { + // If the default root is based upon the body, then it will already be focused, and will not fire a focus event to + // trigger its own onFocus processing, so we have to programatically blur it first. + if (defaultRoot.getFocusEl() === me.focusEl) { + me.focusEl.blur(); + } + defaultRoot.focus(); + } + } else { + // Drill into child ref items of the focused cmp, if applicable. + // This works for any Component with a getRefItems implementation. + firstChild = focusedCmp.hasFocus ? Ext.ComponentQuery.query('>:focusable', focusedCmp)[0] : focusedCmp; + if (firstChild) { + firstChild.focus(); + } else { + // Let's try to fire a click event, as if it came from the mouse + if (Ext.isFunction(focusedCmp.onClick)) { + e.button = 0; + focusedCmp.onClick(e); + if (focusedCmp.isVisible(true)) { + focusedCmp.focus(); + } else { + me.navigateOut(); + } + } + } + } + }, + + navigateOut: function(e) { + var me = this, + parent; + + if (!me.focusedCmp || !(parent = me.focusedCmp.up(':focusable'))) { + me.focusEl.focus(); + } else { + parent.focus(); + } + + // In some browsers (Chrome) FocusManager can handle this before other + // handlers. Ext Windows have their own Esc key handling, so we need to + // return true here to allow the event to bubble. + return true; + }, + + navigateSiblings: function(e, source, parent) { + var me = this, + src = source || me, + key = e.getKey(), + EO = Ext.EventObject, + goBack = e.shiftKey || key == EO.LEFT || key == EO.UP, + checkWhitelist = key == EO.LEFT || key == EO.RIGHT || key == EO.UP || key == EO.DOWN, + nextSelector = goBack ? 'prev' : 'next', + idx, next, focusedCmp, siblings; + + focusedCmp = (src.focusedCmp && src.focusedCmp.comp) || src.focusedCmp; + if (!focusedCmp && !parent) { + return true; + } + + if (checkWhitelist && me.isWhitelisted(focusedCmp)) { + return true; + } + + // If no focused Component, or a root level one was focused, then siblings are root components. + if (!focusedCmp || focusedCmp.is(':root')) { + siblings = me.getRootComponents(); + } else { + // Else if the focused component has a parent, get siblings from there + parent = parent || focusedCmp.up(); + if (parent) { + siblings = parent.getRefItems(); + } + } + + + // Navigate if we have found siblings. + if (siblings) { + idx = focusedCmp ? Ext.Array.indexOf(siblings, focusedCmp) : -1; + next = Ext.ComponentQuery.query(':' + nextSelector + 'Focus(' + idx + ')', siblings)[0]; + if (next && focusedCmp !== next) { + next.focus(); + return next; + } + } + }, + + onComponentBlur: function(cmp, e) { + var me = this; + + if (me.focusedCmp === cmp) { + me.previousFocusedCmp = cmp; + delete me.focusedCmp; + } + + if (me.focusFrame) { + me.focusFrame.hide(); + } + }, + + onComponentFocus: function(cmp, e) { + var me = this, + chain = me.focusChain, + parent; + + if (!cmp.isFocusable()) { + me.clearComponent(cmp); + + // Check our focus chain, so we don't run into a never ending recursion + // If we've attempted (unsuccessfully) to focus this component before, + // then we're caught in a loop of child->parent->...->child and we + // need to cut the loop off rather than feed into it. + if (chain[cmp.id]) { + return; + } + + // Try to focus the parent instead + parent = cmp.up(); + if (parent) { + // Add component to our focus chain to detect infinite focus loop + // before we fire off an attempt to focus our parent. + // See the comments above. + chain[cmp.id] = true; + parent.focus(); + } + + return; + } + // Clear our focus chain when we have a focusable component + me.focusChain = {}; + + // Capture the focusEl to frame now. + // Button returns its encapsulating element during the focus phase + // So that element gets styled and framed. + me.focusTask.delay(10, null, null, [cmp, cmp.getFocusEl()]); + }, + + handleComponentFocus: function(cmp, focusEl) { + var me = this, + cls, + ff, + box, + bt, + bl, + bw, + bh, + ft, + fb, + fl, + fr; + + if (me.fireEvent('beforecomponentfocus', me, cmp, me.previousFocusedCmp) === false) { + me.clearComponent(cmp); + return; + } + + me.focusedCmp = cmp; + + // If we have a focus frame, show it around the focused component + if (me.shouldShowFocusFrame(cmp)) { + cls = '.' + me.focusFrameCls + '-'; + ff = me.focusFrame; + + // focusEl may in fact be a descendant component to which to delegate focus + box = (focusEl.dom ? focusEl : focusEl.el).getBox(); + + // Size the focus frame's t/b/l/r according to the box + // This leaves a hole in the middle of the frame so user + // interaction w/ the mouse can continue + bt = box.top; + bl = box.left; + bw = box.width; + bh = box.height; + ft = ff.child(cls + 'top'); + fb = ff.child(cls + 'bottom'); + fl = ff.child(cls + 'left'); + fr = ff.child(cls + 'right'); + + ft.setWidth(bw).setLocalXY(bl, bt); + fb.setWidth(bw).setLocalXY(bl, bt + bh - 2); + fl.setHeight(bh - 2).setLocalXY(bl, bt + 2); + fr.setHeight(bh - 2).setLocalXY(bl + bw - 2, bt + 2); + + ff.show(); + } + + me.fireEvent('componentfocus', me, cmp, me.previousFocusedCmp); + }, + + onComponentHide: function(cmp) { + var me = this, + cmpHadFocus = false, + focusedCmp = me.focusedCmp, + parent; + + if (focusedCmp) { + // See if the Component being hidden was the focused Component, or owns the focused Component + // In these cases, focus needs to be removed from the focused Component to the nearest focusable ancestor + cmpHadFocus = cmp.hasFocus || (cmp.isContainer && cmp.isAncestor(me.focusedCmp)); + } + + me.clearComponent(cmp); + + // Move focus onto the nearest focusable ancestor, or this is there is none + if (cmpHadFocus && (parent = cmp.up(':focusable'))) { + parent.focus(); + } else { + me.focusEl.focus(); + } + }, + + onComponentDestroy: function() { + + }, + + removeDOM: function() { + var me = this; + + // If we are still enabled globally, or there are still subscribers + // then we will halt here, since our DOM stuff is still being used + if (me.enabled || me.subscribers.length) { + return; + } + + Ext.destroy( + me.focusFrame + ); + delete me.focusEl; + delete me.focusFrame; + }, + + /** + * Removes the specified xtype from the {@link #whitelist}. + * @param {String/String[]} xtype Removes the xtype(s) from the {@link #whitelist}. + */ + removeXTypeFromWhitelist: function(xtype) { + var me = this; + + if (Ext.isArray(xtype)) { + Ext.Array.forEach(xtype, me.removeXTypeFromWhitelist, me); + return; + } + + Ext.Array.remove(me.whitelist, xtype); + }, + + setupSubscriberKeys: function(container, keys) { + var me = this, + el = container.getFocusEl(), + scope = keys.scope, + handlers = { + backspace: me.focusLast, + enter: me.navigateIn, + esc: me.navigateOut, + scope: me + }, + + navSiblings = function(e) { + if (me.focusedCmp === container) { + // Root the sibling navigation to this container, so that we + // can automatically dive into the container, rather than forcing + // the user to hit the enter key to dive in. + return me.navigateSiblings(e, me, container); + } else { + return me.navigateSiblings(e); + } + }; + + Ext.iterate(keys, function(key, cb) { + handlers[key] = function(e) { + var ret = navSiblings(e); + + if (Ext.isFunction(cb) && cb.call(scope || container, e, ret) === true) { + return true; + } + + return ret; + }; + }, me); + + return new Ext.util.KeyNav(el, handlers); + }, + + shouldShowFocusFrame: function(cmp) { + var me = this, + opts = me.options || {}; + + // Do not show a focus frame if + // 1. We are configured not to. + // 2. No Component was passed + if (!me.focusFrame || !cmp) { + return false; + } + + // Global trumps + if (opts.focusFrame) { + return true; + } + + if (me.focusData[cmp.id].focusFrame) { + return true; + } + + return false; + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/Img.js b/extjs-django/marvel/static/extjs/src/Img.js new file mode 100644 index 0000000..ed0c7f1 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/Img.js @@ -0,0 +1,196 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * Simple helper class for easily creating image components. This renders an image tag to + * the DOM with the configured src. + * + * {@img Ext.Img/Ext.Img.png Ext.Img component} + * + * ## Example usage: + * + * var changingImage = Ext.create('Ext.Img', { + * src: 'http://www.sencha.com/img/20110215-feat-html5.png', + * renderTo: Ext.getBody() + * }); + * + * // change the src of the image programmatically + * changingImage.setSrc('http://www.sencha.com/img/20110215-feat-perf.png'); + * + * By default, only an img element is rendered and that is this component's primary + * {@link Ext.AbstractComponent#getEl element}. If the {@link Ext.AbstractComponent#autoEl} property + * is other than 'img' (the default), the a child img element will be added to the primary + * element. This can be used to create a wrapper element around the img. + * + * ## Wrapping the img in a div: + * + * var wrappedImage = Ext.create('Ext.Img', { + * src: 'http://www.sencha.com/img/20110215-feat-html5.png', + * autoEl: 'div', // wrap in a div + * renderTo: Ext.getBody() + * }); + */ +Ext.define('Ext.Img', { + extend: 'Ext.Component', + alias: ['widget.image', 'widget.imagecomponent'], + + autoEl: 'img', + + baseCls: Ext.baseCSSPrefix + 'img', + + /** + * @cfg {String} src + * The image src. + */ + src: '', + + /** + * @cfg {String} alt + * The descriptive text for non-visual UI description. + */ + alt: '', + + /** + * @cfg {String} title + * Specifies addtional information about the image. + */ + title: '', + + /** + * @cfg {String} imgCls + * Optional CSS classes to add to the img element. + */ + imgCls: '', + + /** + * @cfg {Number/String} glyph + * A numeric unicode character code to serve as the image. If this option is used + * The image will be rendered using a div with innerHTML set to the html entity + * for the given character code. The default font-family for glyphs can be set + * globally using {@link Ext#setGlyphFontFamily Ext.setGlyphFontFamily()}. Alternatively, + * this config option accepts a string with the charCode and font-family separated by + * the `@` symbol. For example '65@My Font Family'. + */ + + initComponent: function() { + if (this.glyph) { + this.autoEl = 'div'; + } + this.callParent(); + }, + + getElConfig: function() { + var me = this, + config = me.callParent(), + glyphFontFamily = Ext._glyphFontFamily, + glyph = me.glyph, + img, glyphParts; + + // It is sometimes helpful (like in a panel header icon) to have the img wrapped + // by a div. If our autoEl is not 'img' then we just add an img child to the el. + if (me.autoEl == 'img') { + img = config; + } else if (me.glyph) { + if (typeof glyph === 'string') { + glyphParts = glyph.split('@'); + glyph = glyphParts[0]; + glyphFontFamily = glyphParts[1]; + } + config.html = '&#' + glyph + ';'; + if (glyphFontFamily) { + config.style = 'font-family:' + glyphFontFamily; + } + } else { + config.cn = [img = { + tag: 'img', + id: me.id + '-img' + }]; + } + + if (img) { + if (me.imgCls) { + img.cls = (img.cls ? img.cls + ' ' : '') + me.imgCls; + } + + img.src = me.src || Ext.BLANK_IMAGE_URL; + } + + if (me.alt) { + (img || config).alt = me.alt; + } + if (me.title) { + (img || config).title = me.title; + } + + return config; + }, + + onRender: function () { + var me = this, + el; + + me.callParent(arguments); + + el = me.el; + me.imgEl = (me.autoEl == 'img') ? el : el.getById(me.id + '-img'); + }, + + onDestroy: function () { + Ext.destroy(this.imgEl); + this.imgEl = null; + this.callParent(); + }, + + /** + * Updates the {@link #src} of the image. + * @param {String} src + */ + setSrc: function(src) { + var me = this, + imgEl = me.imgEl; + + me.src = src; + + if (imgEl) { + imgEl.dom.src = src || Ext.BLANK_IMAGE_URL; + } + }, + + setGlyph: function(glyph) { + var me = this, + glyphFontFamily = Ext._glyphFontFamily, + glyphParts, dom; + + if (glyph != me.glyph) { + if (typeof glyph === 'string') { + glyphParts = glyph.split('@'); + glyph = glyphParts[0]; + glyphFontFamily = glyphParts[1]; + } + + dom = me.el.dom; + + dom.innerHTML = '&#' + glyph + ';'; + if (glyphFontFamily) { + dom.style = 'font-family:' + glyphFontFamily; + } + } + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/LoadMask.js b/extjs-django/marvel/static/extjs/src/LoadMask.js new file mode 100644 index 0000000..e728943 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/LoadMask.js @@ -0,0 +1,471 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * A modal, floating Component which may be shown above a specified {@link Ext.Component Component} while loading data. + * When shown, the configured owning Component will be covered with a modality mask, and the LoadMask's {@link #msg} will be + * displayed centered, accompanied by a spinner image. + * + * If the {@link #store} config option is specified, the masking will be automatically shown and then hidden synchronized with + * the Store's loading process. + * + * Because this is a floating Component, its z-index will be managed by the global {@link Ext.WindowManager ZIndexManager} + * object, and upon show, it will place itsef at the top of the hierarchy. + * + * Example usage: + * + * // Basic mask: + * var myMask = new Ext.LoadMask(myPanel, {msg:"Please wait..."}); + * myMask.show(); + */ +Ext.define('Ext.LoadMask', { + + extend: 'Ext.Component', + + alias: 'widget.loadmask', + + /* Begin Definitions */ + + mixins: { + floating: 'Ext.util.Floating', + bindable: 'Ext.util.Bindable' + }, + + uses: ['Ext.data.StoreManager'], + + /* End Definitions */ + + /** + * @cfg {Ext.Component} target The Component you wish to mask. The the mask will be automatically sized + * upon Component resize, and the message box will be kept centered. + */ + + /** + * @cfg {Ext.data.Store} store + * Optional Store to which the mask is bound. The mask is displayed when a load request is issued, and + * hidden on either load success, or load fail. + */ + + // + /** + * @cfg {String} [msg="Loading..."] + * The text to display in a centered loading message box. + */ + msg : 'Loading...', + // + + /** + * @cfg {String} [msgCls="x-mask-loading"] + * The CSS class to apply to the loading message element. + */ + msgCls : Ext.baseCSSPrefix + 'mask-loading', + + /** + * @cfg {String} [maskCls="x-mask"] + * The CSS class to apply to the mask element + */ + maskCls: Ext.baseCSSPrefix + 'mask', + + /** + * @cfg {Boolean} [useMsg=true] + * Whether or not to use a loading message class or simply mask the bound element. + */ + useMsg: true, + + /** + * @cfg {Boolean} [useTargetEl=false] + * True to mask the {@link Ext.Component#getTargetEl targetEl} of the bound Component. By default, + * the {@link Ext.Component#getEl el} will be masked. + */ + useTargetEl: false, + + baseCls: Ext.baseCSSPrefix + 'mask-msg', + + childEls: [ + 'msgEl', + 'msgTextEl' + ], + + renderTpl: [ + '
    ', + '
    ', + '
    ' + ], + + // @private Obviously, it's floating. + floating: { + shadow: 'frame' + }, + + // @private Masks are not focusable + focusOnToFront: false, + + // When we put the load mask to the front of it's owner, we generally don't want to also bring the owning + // component to the front. + bringParentToFront: false, + + /** + * Creates new LoadMask. + * @param {Object} [config] The config object. + */ + constructor : function(config) { + var me = this, + comp; + + if (arguments.length === 2) { + // + if (Ext.isDefined(Ext.global.console)) { + Ext.global.console.warn('Ext.LoadMask: LoadMask now uses a standard 1 arg constructor: use the target config'); + } + // + comp = config; + config = arguments[1]; + } else { + comp = config.target; + } + + // Element support to be deprecated + if (!comp.isComponent) { + // + if (Ext.isDefined(Ext.global.console)) { + Ext.global.console.warn('Ext.LoadMask: LoadMask for elements has been deprecated, use Ext.dom.Element.mask & Ext.dom.Element.unmask'); + } + // + comp = Ext.get(comp); + this.isElement = true; + } + + me.ownerCt = comp; + if (!this.isElement) { + me.bindComponent(comp); + } + me.callParent([config]); + + if (me.store) { + me.bindStore(me.store, true); + } + }, + + bindComponent: function(comp) { + var me = this, + listeners = { + scope: this, + resize: me.sizeMask, + added: me.onComponentAdded, + removed: me.onComponentRemoved + }; + + if (comp.floating) { + listeners.move = me.sizeMask; + me.activeOwner = comp; + } else if (comp.ownerCt) { + me.onComponentAdded(comp.ownerCt); + } else { + // if the target comp is non-floating and under a floating comp don't bring the load mask to the front of the stack + me.preventBringToFront = true; + } + + me.mon(comp, listeners); + + // subscribe to the observer that manages the hierarchy + me.mon(me.hierarchyEventSource, { + show: me.onContainerShow, + hide: me.onContainerHide, + expand: me.onContainerExpand, + collapse: me.onContainerCollapse, + scope: me + }); + }, + + onComponentAdded: function(owner) { + var me = this; + delete me.activeOwner; + me.floatParent = owner; + if (!owner.floating) { + owner = owner.up('[floating]'); + } + if (owner) { + me.activeOwner = owner; + me.mon(owner, 'move', me.sizeMask, me); + } else { + me.preventBringToFront = true; + } + owner = me.floatParent.ownerCt; + if (me.rendered && me.isVisible() && owner) { + me.floatOwner = owner; + me.mon(owner, 'afterlayout', me.sizeMask, me, {single: true}); + } + }, + + onComponentRemoved: function(owner) { + var me = this, + activeOwner = me.activeOwner, + floatOwner = me.floatOwner; + + if (activeOwner) { + me.mun(activeOwner, 'move', me.sizeMask, me); + } + if (floatOwner) { + me.mun(floatOwner, 'afterlayout', me.sizeMask, me); + } + delete me.activeOwner; + delete me.floatOwner; + }, + + afterRender: function() { + this.callParent(arguments); + this.container = this.floatParent.getContentTarget(); + }, + + onContainerShow: function(container) { + if (this.isActiveContainer(container)) { + this.onComponentShow(); + } + }, + + onContainerHide: function(container) { + if (this.isActiveContainer(container)) { + this.onComponentHide(); + } + }, + + onContainerExpand: function(container) { + if (this.isActiveContainer(container)) { + this.onComponentShow(); + } + }, + + onContainerCollapse: function(container) { + if (this.isActiveContainer(container)) { + this.onComponentHide(); + } + }, + + isActiveContainer: function(container) { + return this.isDescendantOf(container); + }, + + onComponentHide: function() { + var me = this; + + if (me.rendered && me.isVisible()) { + me.hide(); + me.showNext = true; + } + }, + + onComponentShow: function() { + if (this.showNext) { + this.show(); + } + delete this.showNext; + }, + + /** + * @private + * Called when this LoadMask's Component is resized. The toFront method rebases and resizes the modal mask. + */ + sizeMask: function() { + var me = this, + target; + + if (me.rendered && me.isVisible()) { + me.center(); + + target = me.getMaskTarget(); + me.getMaskEl().show().setSize(target.getSize()).alignTo(target, 'tl-tl'); + + } + }, + + /** + * Changes the data store bound to this LoadMask. + * @param {Ext.data.Store} store The store to bind to this LoadMask + */ + bindStore : function(store, initial) { + var me = this; + me.mixins.bindable.bindStore.apply(me, arguments); + store = me.store; + if (store && store.isLoading()) { + me.onBeforeLoad(); + } + }, + + getStoreListeners: function(store) { + var load = this.onLoad, + beforeLoad = this.onBeforeLoad, + result = { + // Fired when a range is requested for rendering that is not in the cache + cachemiss: beforeLoad, + + // Fired when a range for rendering which was previously missing from the cache is loaded + cachefilled: load + }; + + // Only need to mask on load if the proxy is asynchronous - ie: Ajax/JsonP + if (!store.proxy.isSynchronous) { + result.beforeLoad = beforeLoad; + result.load = load; + } + return result; + }, + + onDisable : function() { + this.callParent(arguments); + if (this.loading) { + this.onLoad(); + } + }, + + getOwner: function() { + return this.ownerCt || this.floatParent; + }, + + getMaskTarget: function() { + var owner = this.getOwner(); + return this.useTargetEl ? owner.getTargetEl() : owner.getEl(); + }, + + // @private + onBeforeLoad : function() { + var me = this, + owner = me.getOwner(), + origin; + + if (!me.disabled) { + me.loading = true; + // If the owning Component has not been layed out, defer so that the ZIndexManager + // gets to read its layed out size when sizing the modal mask + if (owner.componentLayoutCounter) { + me.maybeShow(); + } else { + // The code below is a 'run-once' interceptor. + origin = owner.afterComponentLayout; + owner.afterComponentLayout = function() { + owner.afterComponentLayout = origin; + origin.apply(owner, arguments); + me.maybeShow(); + }; + } + } + }, + + maybeShow: function() { + var me = this, + owner = me.getOwner(); + + if (!owner.isVisible(true)) { + me.showNext = true; + } + else if (me.loading && owner.rendered) { + me.show(); + } + }, + + getMaskEl: function(){ + var me = this; + return me.maskEl || (me.maskEl = me.el.insertSibling({ + cls: me.maskCls, + style: { + zIndex: me.el.getStyle('zIndex') - 2 + } + }, 'before')); + }, + + onShow: function() { + var me = this, + msgEl = me.msgEl; + + me.callParent(arguments); + me.loading = true; + + if (me.useMsg) { + msgEl.show(); + me.msgTextEl.update(me.msg); + } else { + msgEl.parent().hide(); + } + }, + + hide: function() { + // Element support to be deprecated + if (this.isElement) { + this.ownerCt.unmask(); + this.fireEvent('hide', this); + return; + } + delete this.showNext; + return this.callParent(arguments); + }, + + onHide: function() { + this.callParent(); + this.getMaskEl().hide(); + }, + + show: function() { + // Element support to be deprecated + if (this.isElement) { + this.ownerCt.mask(this.useMsg ? this.msg : '', this.msgCls); + this.fireEvent('show', this); + return; + } + return this.callParent(arguments); + }, + + afterShow: function() { + this.callParent(arguments); + this.sizeMask(); + }, + + setZIndex: function(index) { + var me = this, + owner = me.activeOwner; + + if (owner) { + // it seems silly to add 1 to have it subtracted in the call below, + // but this allows the x-mask el to have the correct z-index (same as the component) + // so instead of directly changing the zIndexStack just get the z-index of the owner comp + index = parseInt(owner.el.getStyle('zIndex'), 10) + 1; + } + + me.getMaskEl().setStyle('zIndex', index - 1); + return me.mixins.floating.setZIndex.apply(me, arguments); + }, + + // @private + onLoad : function() { + this.loading = false; + this.hide(); + }, + + onDestroy: function() { + var me = this; + + if (me.isElement) { + me.ownerCt.unmask(); + } + + Ext.destroy(me.maskEl); + me.callParent(); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/ModelManager.js b/extjs-django/marvel/static/extjs/src/ModelManager.js new file mode 100644 index 0000000..0f099a3 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/ModelManager.js @@ -0,0 +1,214 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @author Ed Spencer + * @class Ext.ModelManager + +The ModelManager keeps track of all {@link Ext.data.Model} types defined in your application. + +__Creating Model Instances__ + +Model instances can be created by using the {@link Ext#create Ext.create} method. Ext.create replaces +the deprecated {@link #create Ext.ModelManager.create} method. It is also possible to create a model instance +this by using the Model type directly. The following 3 snippets are equivalent: + + Ext.define('User', { + extend: 'Ext.data.Model', + fields: ['first', 'last'] + }); + + // method 1, create using Ext.create (recommended) + Ext.create('User', { + first: 'Ed', + last: 'Spencer' + }); + + // method 2, create through the manager (deprecated) + Ext.ModelManager.create({ + first: 'Ed', + last: 'Spencer' + }, 'User'); + + // method 3, create on the type directly + new User({ + first: 'Ed', + last: 'Spencer' + }); + +__Accessing Model Types__ + +A reference to a Model type can be obtained by using the {@link #getModel} function. Since models types +are normal classes, you can access the type directly. The following snippets are equivalent: + + Ext.define('User', { + extend: 'Ext.data.Model', + fields: ['first', 'last'] + }); + + // method 1, access model type through the manager + var UserType = Ext.ModelManager.getModel('User'); + + // method 2, reference the type directly + var UserType = User; + + * @markdown + * @singleton + */ +Ext.define('Ext.ModelManager', { + extend: 'Ext.AbstractManager', + alternateClassName: 'Ext.ModelMgr', + requires: ['Ext.data.association.Association'], + + singleton: true, + + typeName: 'mtype', + + /** + * Private stack of associations that must be created once their associated model has been defined + * @property {Ext.data.association.Association[]} associationStack + */ + associationStack: [], + + /** + * Registers a model definition. All model plugins marked with isDefault: true are bootstrapped + * immediately, as are any addition plugins defined in the model config. + * @private + */ + registerType: function(name, config) { + var proto = config.prototype, + model; + if (proto && proto.isModel) { + // registering an already defined model + model = config; + } else { + // passing in a configuration + if (!config.extend) { + config.extend = 'Ext.data.Model'; + } + model = Ext.define(name, config); + } + this.types[name] = model; + return model; + }, + + /** + * Unregisters a model definition. Generally used by stores with implicit model classes. + * @private + */ + unregisterType: function(name) { + delete this.types[name]; + }, + + /** + * @private + * Private callback called whenever a model has just been defined. This sets up any associations + * that were waiting for the given model to be defined + * @param {Function} model The model that was just created + */ + onModelDefined: function(model) { + var stack = this.associationStack, + length = stack.length, + create = [], + association, i, created; + + for (i = 0; i < length; i++) { + association = stack[i]; + + if (association.associatedModel == model.modelName) { + create.push(association); + } + } + + for (i = 0, length = create.length; i < length; i++) { + created = create[i]; + this.types[created.ownerModel].prototype.associations.add(Ext.data.association.Association.create(created)); + Ext.Array.remove(stack, created); + } + }, + + /** + * Registers an association where one of the models defined doesn't exist yet. + * The ModelManager will check when new models are registered if it can link them + * together + * @private + * @param {Ext.data.association.Association} association The association + */ + registerDeferredAssociation: function(association){ + this.associationStack.push(association); + }, + + /** + * Returns the {@link Ext.data.Model} class for a given model name + * @param {String/Object} id The classname of the model or the model class itself. + * @return {Ext.data.Model} a model class. + */ + getModel: function(id) { + var model = id; + if (typeof model == 'string') { + model = this.types[model]; + } + return model; + }, + + /** + * Creates a new instance of a Model using the given data. Deprecated, instead use Ext.create: + * + * Ext.create('User', { + * first: 'Ed', + * last: 'Spencer' + * }); + * + * @deprecated 4.1 Use {@link Ext#create Ext.create} instead. + * + * @param {Object} data Data to initialize the Model's fields with + * @param {String} name The name of the model to create + * @param {Number} id (Optional) unique id of the Model instance (see {@link Ext.data.Model}) + */ + create: function(config, name, id) { + var Con = typeof name == 'function' ? name : this.types[name || config.name]; + + return new Con(config, id); + } +}, function() { + + /** + * Old way for creating Model classes. Instead use: + * + * Ext.define("MyModel", { + * extend: "Ext.data.Model", + * fields: [] + * }); + * + * @param {String} name Name of the Model class. + * @param {Object} config A configuration object for the Model you wish to create. + * @return {Ext.data.Model} The newly registered Model + * @member Ext + * @deprecated 4.0.0 Use {@link Ext#define} instead. + */ + Ext.regModel = function() { + // + if (Ext.isDefined(Ext.global.console)) { + Ext.global.console.warn('Ext.regModel has been deprecated. Models can now be created by extending Ext.data.Model: Ext.define("MyModel", {extend: "Ext.data.Model", fields: []});.'); + } + // + return this.ModelManager.registerType.apply(this.ModelManager, arguments); + }; +}); diff --git a/extjs-django/marvel/static/extjs/src/PluginManager.js b/extjs-django/marvel/static/extjs/src/PluginManager.js new file mode 100644 index 0000000..e4d0915 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/PluginManager.js @@ -0,0 +1,129 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * Provides a registry of available Plugin classes indexed by a mnemonic code known as the Plugin's ptype. + * + * A plugin may be specified simply as a *config object* as long as the correct `ptype` is specified: + * + * { + * ptype: 'gridviewdragdrop', + * dragText: 'Drag and drop to reorganize' + * } + * + * Or just use the ptype on its own: + * + * 'gridviewdragdrop' + * + * Alternatively you can instantiate the plugin with Ext.create: + * + * Ext.create('Ext.grid.plugin.DragDrop', { + * dragText: 'Drag and drop to reorganize' + * }) + */ +Ext.define('Ext.PluginManager', { + extend: 'Ext.AbstractManager', + alternateClassName: 'Ext.PluginMgr', + singleton: true, + typeName: 'ptype', + + /** + * Creates a new Plugin from the specified config object using the config object's ptype to determine the class to + * instantiate. + * @param {Object} config A configuration object for the Plugin you wish to create. + * @param {Function} defaultType (optional) The constructor to provide the default Plugin type if the config object does not + * contain a `ptype`. (Optional if the config contains a `ptype`). + * @return {Ext.Component} The newly instantiated Plugin. + */ + create : function(config, defaultType, host) { + var result; + + if (config.init) { + result = config; + } else { + // Inject the host into the config is we know the host + if (host) { + config = Ext.apply({}, config); // copy since we are going to modify + config.cmp = host; + } + // Grab the host ref if it was configured in + else { + host = config.cmp; + } + + if (config.xclass) { + result = Ext.create(config); + } else { + // Lookup the class from the ptype and instantiate unless its a singleton + result = Ext.ClassManager.getByAlias(('plugin.' + (config.ptype || defaultType))); + + if (typeof result === 'function') { + result = new result(config); + } + } + } + + // If we come out with a non-null plugin, ensure that any setCmp is called once. + if (result && host && result.setCmp && !result.setCmpCalled) { + result.setCmp(host); + result.setCmpCalled = true; + } + return result; + }, + + /** + * Returns all plugins registered with the given type. Here, 'type' refers to the type of plugin, not its ptype. + * @param {String} type The type to search for + * @param {Boolean} defaultsOnly True to only return plugins of this type where the plugin's isDefault property is + * truthy + * @return {Ext.AbstractPlugin[]} All matching plugins + */ + findByType: function(type, defaultsOnly) { + var matches = [], + types = this.types, + name, + item; + + for (name in types) { + if (!types.hasOwnProperty(name)) { + continue; + } + item = types[name]; + + if (item.type == type && (!defaultsOnly || (defaultsOnly === true && item.isDefault))) { + matches.push(item); + } + } + + return matches; + } +}, function() { + /** + * Shorthand for {@link Ext.PluginManager#registerType} + * @param {String} ptype The ptype mnemonic string by which the Plugin class + * may be looked up. + * @param {Function} cls The new Plugin class. + * @member Ext + * @method preg + */ + Ext.preg = function() { + return Ext.PluginManager.registerType.apply(Ext.PluginManager, arguments); + }; +}); diff --git a/extjs-django/marvel/static/extjs/src/ProgressBar.js b/extjs-django/marvel/static/extjs/src/ProgressBar.js new file mode 100644 index 0000000..2b932d7 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/ProgressBar.js @@ -0,0 +1,361 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * An updateable progress bar component. The progress bar supports two different modes: manual and automatic. + * + * In manual mode, you are responsible for showing, updating (via {@link #updateProgress}) and clearing the progress bar + * as needed from your own code. This method is most appropriate when you want to show progress throughout an operation + * that has predictable points of interest at which you can update the control. + * + * In automatic mode, you simply call {@link #wait} and let the progress bar run indefinitely, only clearing it once the + * operation is complete. You can optionally have the progress bar wait for a specific amount of time and then clear + * itself. Automatic mode is most appropriate for timed operations or asynchronous operations in which you have no need + * for indicating intermediate progress. + * + * @example + * var p = Ext.create('Ext.ProgressBar', { + * renderTo: Ext.getBody(), + * width: 300 + * }); + * + * // Wait for 5 seconds, then update the status el (progress bar will auto-reset) + * p.wait({ + * interval: 500, //bar will move fast! + * duration: 50000, + * increment: 15, + * text: 'Updating...', + * scope: this, + * fn: function(){ + * p.updateText('Done!'); + * } + * }); + */ +Ext.define('Ext.ProgressBar', { + extend: 'Ext.Component', + alias: 'widget.progressbar', + + requires: [ + 'Ext.Template', + 'Ext.CompositeElement', + 'Ext.TaskManager', + 'Ext.layout.component.ProgressBar' + ], + + uses: ['Ext.fx.Anim'], + + /** + * @cfg {Number} [value=0] + * A floating point value between 0 and 1 (e.g., .5) + */ + + /** + * @cfg {String/HTMLElement/Ext.Element} textEl + * The element to render the progress text to (defaults to the progress bar's internal text element) + */ + + /** + * @cfg {String} id + * The progress bar element's id (defaults to an auto-generated id) + */ + + /** + * @cfg {String} [baseCls='x-progress'] + * The base CSS class to apply to the progress bar's wrapper element. + */ + baseCls: Ext.baseCSSPrefix + 'progress', + + /** + * @cfg {Boolean/Object} animate + * True to animate the progress bar during transitions, or an animation configuration + * (see the {@link #method-animate} method for details). + */ + animate: false, + + /** + * @cfg {String} text + * The text shown in the progress bar. + */ + text: '', + + // private + waitTimer: null, + + childEls: [ + 'bar' + ], + + renderTpl: [ + '', + '
    {text}
    ', + '
    ', + '
    ', + '', + '
    ', + '
    {text}
    ', + '
    ', + '
    ', + '
    ' + ], + + componentLayout: 'progressbar', + + // private + initComponent: function() { + this.callParent(); + + this.addEvents( + /** + * @event update + * Fires after each update interval + * @param {Ext.ProgressBar} this + * @param {Number} value The current progress value + * @param {String} text The current progress text + */ + "update" + ); + }, + + initRenderData: function() { + var me = this; + return Ext.apply(me.callParent(), { + internalText : !me.hasOwnProperty('textEl'), + text : me.text || ' ', + percentage : me.value ? me.value * 100 : 0 + }); + }, + + onRender : function() { + var me = this; + + me.callParent(arguments); + + // External text display + if (me.textEl) { + me.textEl = Ext.get(me.textEl); + me.updateText(me.text); + } + // Inline text display + else { + // This produces a composite w/2 el's (which is why we cannot use childEls or + // renderSelectors): + me.textEl = me.el.select('.' + me.baseCls + '-text'); + } + }, + + /** + * Updates the progress bar value, and optionally its text. If the text argument is not specified, any existing text + * value will be unchanged. To blank out existing text, pass ''. Note that even if the progress bar value exceeds 1, + * it will never automatically reset -- you are responsible for determining when the progress is complete and + * calling {@link #reset} to clear and/or hide the control. + * @param {Number} [value=0] A floating point value between 0 and 1 (e.g., .5) + * @param {String} [text=''] The string to display in the progress text element + * @param {Boolean} [animate=false] Whether to animate the transition of the progress bar. If this value is not + * specified, the default for the class is used + * @return {Ext.ProgressBar} this + */ + updateProgress: function(value, text, animate) { + var me = this, + oldValue = me.value; + + me.value = value || 0; + if (text) { + me.updateText(text); + } + if (me.rendered && !me.isDestroyed) { + if (animate === true || (animate !== false && me.animate)) { + me.bar.stopAnimation(); + me.bar.animate(Ext.apply({ + from: { + width: (oldValue * 100) + '%' + }, + to: { + width: (me.value * 100) + '%' + } + }, me.animate)); + } else { + me.bar.setStyle('width', (me.value * 100) + '%'); + } + } + me.fireEvent('update', me, me.value, text); + return me; + }, + + /** + * Updates the progress bar text. If specified, textEl will be updated, otherwise the progress bar itself will + * display the updated text. + * @param {String} [text=''] The string to display in the progress text element + * @return {Ext.ProgressBar} this + */ + updateText: function(text) { + var me = this; + + me.text = text; + if (me.rendered) { + me.textEl.update(me.text); + } + return me; + }, + + applyText : function(text) { + this.updateText(text); + }, + + getText: function(){ + return this.text; + }, + + /** + * Initiates an auto-updating progress bar. A duration can be specified, in which case the progress bar will + * automatically reset after a fixed amount of time and optionally call a callback function if specified. If no + * duration is passed in, then the progress bar will run indefinitely and must be manually cleared by calling + * {@link #reset}. + * + * Example usage: + * + * var p = new Ext.ProgressBar({ + * renderTo: 'my-el' + * }); + * + * //Wait for 5 seconds, then update the status el (progress bar will auto-reset) + * var p = Ext.create('Ext.ProgressBar', { + * renderTo: Ext.getBody(), + * width: 300 + * }); + * + * //Wait for 5 seconds, then update the status el (progress bar will auto-reset) + * p.wait({ + * interval: 500, //bar will move fast! + * duration: 50000, + * increment: 15, + * text: 'Updating...', + * scope: this, + * fn: function(){ + * p.updateText('Done!'); + * } + * }); + * + * //Or update indefinitely until some async action completes, then reset manually + * p.wait(); + * myAction.on('complete', function(){ + * p.reset(); + * p.updateText('Done!'); + * }); + * + * @param {Object} config (optional) Configuration options + * @param {Number} config.duration The length of time in milliseconds that the progress bar should + * run before resetting itself (defaults to undefined, in which case it will run indefinitely + * until reset is called) + * @param {Number} config.interval The length of time in milliseconds between each progress update + * (defaults to 1000 ms) + * @param {Boolean} config.animate Whether to animate the transition of the progress bar. If this + * value is not specified, the default for the class is used. + * @param {Number} config.increment The number of progress update segments to display within the + * progress bar (defaults to 10). If the bar reaches the end and is still updating, it will + * automatically wrap back to the beginning. + * @param {String} config.text Optional text to display in the progress bar element (defaults to ''). + * @param {Function} config.fn A callback function to execute after the progress bar finishes auto- + * updating. The function will be called with no arguments. This function will be ignored if + * duration is not specified since in that case the progress bar can only be stopped programmatically, + * so any required function should be called by the same code after it resets the progress bar. + * @param {Object} config.scope The scope that is passed to the callback function (only applies when + * duration and fn are both passed). + * @return {Ext.ProgressBar} this + */ + wait: function(o) { + var me = this, scope; + + if (!me.waitTimer) { + scope = me; + o = o || {}; + me.updateText(o.text); + me.waitTimer = Ext.TaskManager.start({ + run: function(i){ + var inc = o.increment || 10; + i -= 1; + me.updateProgress(((((i+inc)%inc)+1)*(100/inc))*0.01, null, o.animate); + }, + interval: o.interval || 1000, + duration: o.duration, + onStop: function(){ + if (o.fn) { + o.fn.apply(o.scope || me); + } + me.reset(); + }, + scope: scope + }); + } + return me; + }, + + /** + * Returns true if the progress bar is currently in a {@link #wait} operation + * @return {Boolean} True if waiting, else false + */ + isWaiting: function(){ + return this.waitTimer !== null; + }, + + /** + * Resets the progress bar value to 0 and text to empty string. If hide = true, the progress bar will also be hidden + * (using the {@link #hideMode} property internally). + * @param {Boolean} [hide=false] True to hide the progress bar. + * @return {Ext.ProgressBar} this + */ + reset: function(hide){ + var me = this; + + me.updateProgress(0); + me.clearTimer(); + if (hide === true) { + me.hide(); + } + return me; + }, + + // private + clearTimer: function(){ + var me = this; + + if (me.waitTimer) { + me.waitTimer.onStop = null; //prevent recursion + Ext.TaskManager.stop(me.waitTimer); + me.waitTimer = null; + } + }, + + onDestroy: function(){ + var me = this, + bar = me.bar; + + me.clearTimer(); + if (me.rendered) { + if (me.textEl.isComposite) { + me.textEl.clear(); + } + Ext.destroyMembers(me, 'textEl', 'progressBar'); + if (bar && me.animate) { + bar.stopAnimation(); + } + } + me.callParent(); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/Queryable.js b/extjs-django/marvel/static/extjs/src/Queryable.js new file mode 100644 index 0000000..c941faf --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/Queryable.js @@ -0,0 +1,114 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @private + * A mixin for providing query related methods for {@link Ext.ComponentQuery} for components that + * implement getRefItems. + */ +Ext.define('Ext.Queryable', { + + isQueryable: true, + + /** + * Retrieves all descendant components which match the passed selector. + * Executes an Ext.ComponentQuery.query using this container as its root. + * @param {String} [selector] Selector complying to an Ext.ComponentQuery selector. + * If no selector is specified all items will be returned. + * @return {Ext.Component[]} Components which matched the selector + */ + query : function(selector) { + selector = selector || '*'; + return Ext.ComponentQuery.query(selector, this); + }, + + /** + * Retrieves all descendant components which match the passed function. + * The function should return false for components that are to be + * excluded from the selection. + * @param {Function} fn The matcher function. It will be called with a single argument, + * the component being tested. + * @param {Object} [scope] The scope in which to run the function. If not specified, + * it will default to the active component. + * @return {Ext.Component[]} Components matched by the passed function + */ + queryBy: function(fn, scope) { + var out = [], + items = this.getRefItems(true), + i = 0, + len = items.length, + item; + + for (; i < len; ++i) { + item = items[i]; + if (fn.call(scope || item, item) !== false) { + out.push(item); + } + } + return out; + }, + + /** + * Finds a component at any level under this container matching the id/itemId. + * This is a shorthand for calling ct.down('#' + id); + * @param {String} id The id to find + * @return {Ext.Component} The matching id, null if not found + */ + queryById: function(id){ + return this.down('#' + id); + }, + + /** + * Retrieves the first direct child of this container which matches the passed selector or component. + * The passed in selector must comply with an Ext.ComponentQuery selector, or it can be an actual Ext.Component. + * @param {String/Ext.Component} [selector] An Ext.ComponentQuery selector. If no selector is + * specified, the first child will be returned. + * @return Ext.Component The matching child Ext.Component (or `null` if no match was found). + */ + child: function (selector) { + if (selector && selector.isComponent) { + selector = '#' + Ext.escapeId(selector.getItemId()); + } + + selector = selector || ''; + return this.query('> ' + selector)[0] || null; + }, + + /** + * Retrieves the first descendant of this container which matches the passed selector. + * The passed in selector must comply with an Ext.ComponentQuery selector, or it can be an actual Ext.Component. + * @param {String/Ext.Component} [selector] An Ext.ComponentQuery selector or Ext.Component. If no selector is + * specified, the first child will be returned. + * @return Ext.Component The matching descendant Ext.Component (or `null` if no match was found). + */ + down: function (selector) { + if (selector && selector.isComponent) { + selector = '#' + Ext.escapeId(selector.getItemId()); + } + + selector = selector || ''; + return this.query(selector)[0] || null; + }, + + getRefItems: function(){ + return []; + } + +}); diff --git a/extjs-django/marvel/static/extjs/src/Shadow.js b/extjs-django/marvel/static/extjs/src/Shadow.js new file mode 100644 index 0000000..f0e5d84 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/Shadow.js @@ -0,0 +1,307 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * Simple class that can provide a shadow effect for any element. Note that the element + * MUST be absolutely positioned, and the shadow does not provide any shimming. This + * should be used only in simple cases - for more advanced functionality that can also + * provide the same shadow effect, see the {@link Ext.Layer} class. + */ +Ext.define('Ext.Shadow', { + requires: ['Ext.ShadowPool'], + + localXYNames: { + get: 'getLocalXY', + set: 'setLocalXY' + }, + + /** + * Creates new Shadow. + * @param {Object} config (optional) Config object. + */ + constructor: function(config) { + var me = this, + adjusts, + offset, + rad; + + Ext.apply(me, config); + if (!Ext.isString(me.mode)) { + me.mode = me.defaultMode; + } + offset = me.offset; + rad = Math.floor(offset / 2); + me.opacity = 50; + switch (me.mode.toLowerCase()) { + // all this hideous nonsense calculates the various offsets for shadows + case "drop": + if (Ext.supports.CSS3BoxShadow) { + adjusts = { + t: offset, + l: offset, + h: -offset, + w: -offset + }; + } + else { + adjusts = { + t: -rad, + l: -rad, + h: -rad, + w: -rad + }; + } + break; + case "sides": + if (Ext.supports.CSS3BoxShadow) { + adjusts = { + t: offset, + l: 0, + h: -offset, + w: 0 + }; + } + else { + adjusts = { + t: - (1 + rad), + l: 1 + rad - 2 * offset, + h: -1, + w: rad - 1 + }; + } + break; + case "frame": + if (Ext.supports.CSS3BoxShadow) { + adjusts = { + t: 0, + l: 0, + h: 0, + w: 0 + }; + } + else { + adjusts = { + t: 1 + rad - 2 * offset, + l: 1 + rad - 2 * offset, + h: offset - rad - 1, + w: offset - rad - 1 + }; + } + break; + case "bottom": + if (Ext.supports.CSS3BoxShadow) { + adjusts = { + t: offset, + l: 0, + h: -offset, + w: 0 + }; + } + else { + adjusts = { + t: offset, + l: 0, + h: 0, + w: 0 + }; + } + break; + } + me.adjusts = adjusts; + }, + + /** + * @private + * Returns the shadow size on each side of the element in standard CSS order: top, right, bottom, left; + * @return {Number[]} Top, right, bottom and left shadow size. + */ + getShadowSize: function() { + var me = this, + offset = me.el ? me.offset : 0, + result = [offset, offset, offset, offset], + mode = me.mode.toLowerCase(); + + // There are only offsets if the shadow element is present. + if (me.el && mode !== 'frame') { + result[0] = 0; + if (mode == 'drop') { + result[3] = 0; + } + } + return result; + }, + + /** + * @cfg {String} mode + * The shadow display mode. Supports the following options: + * + * - sides : Shadow displays on both sides and bottom only + * - frame : Shadow displays equally on all four sides + * - drop : Traditional bottom-right drop shadow + */ + + /** + * @cfg {Number} offset + * The number of pixels to offset the shadow from the element + */ + offset: 4, + + // private + defaultMode: "drop", + + // private - CSS property to use to set the box shadow + boxShadowProperty: (function() { + var property = 'boxShadow', + style = document.documentElement.style; + + if (!('boxShadow' in style)) { + if ('WebkitBoxShadow' in style) { + // Safari prior to version 5.1 and Chrome prior to version 10 + property = 'WebkitBoxShadow'; + } + else if ('MozBoxShadow' in style) { + // FF 3.5 & 3.6 + property = 'MozBoxShadow'; + } + } + + return property; + }()), + + /** + * Displays the shadow under the target element + * @param {String/HTMLElement/Ext.Element} targetEl The id or element under which the shadow should display + */ + show: function(target) { + var me = this, + index, xy; + + target = Ext.get(target); + + // DOM reads first... + index = (parseInt(target.getStyle("z-index"), 10) - 1) || 0; + xy = target[me.localXYNames.get](); + + // DOM writes... + if (!me.el) { + me.el = Ext.ShadowPool.pull(); + // Shadow elements are shared, so fix position to match current owner + if (me.fixed) { + me.el.dom.style.position = 'fixed'; + } else { + me.el.dom.style.position = ''; + } + if (me.el.dom.nextSibling != target.dom) { + me.el.insertBefore(target); + } + } + me.el.setStyle("z-index", me.zIndex || index); + if (Ext.isIE && !Ext.supports.CSS3BoxShadow) { + me.el.dom.style.filter = "progid:DXImageTransform.Microsoft.alpha(opacity=" + me.opacity + ") progid:DXImageTransform.Microsoft.Blur(pixelradius=" + (me.offset) + ")"; + } + me.realign( + xy[0], + xy[1], + target.dom.offsetWidth, + target.dom.offsetHeight + ); + me.el.dom.style.display = "block"; + }, + + /** + * Returns true if the shadow is visible, else false + */ + isVisible: function() { + return this.el ? true: false; + }, + + /** + * Direct alignment when values are already available. Show must be called at least once before + * calling this method to ensure it is initialized. + * @param {Number} left The target element left position + * @param {Number} top The target element top position + * @param {Number} width The target element width + * @param {Number} height The target element height + */ + realign: function(l, t, targetWidth, targetHeight) { + if (!this.el) { + return; + } + var adjusts = this.adjusts, + el = this.el, + targetStyle = el.dom.style, + shadowWidth, + shadowHeight, + sws, + shs; + + el[this.localXYNames.set](l + adjusts.l, t + adjusts.t); + shadowWidth = Math.max(targetWidth + adjusts.w, 0); + shadowHeight = Math.max(targetHeight + adjusts.h, 0); + sws = shadowWidth + "px"; + shs = shadowHeight + "px"; + if (targetStyle.width != sws || targetStyle.height != shs) { + targetStyle.width = sws; + targetStyle.height = shs; + + if (Ext.supports.CSS3BoxShadow) { + targetStyle[this.boxShadowProperty] = '0 0 ' + (this.offset + 2) + 'px #888'; + } + } + }, + + /** + * Hides this shadow + */ + hide: function() { + var me = this; + + if (me.el) { + me.el.dom.style.display = "none"; + Ext.ShadowPool.push(me.el); + delete me.el; + } + }, + + /** + * Adjust the z-index of this shadow + * @param {Number} zindex The new z-index + */ + setZIndex: function(z) { + this.zIndex = z; + if (this.el) { + this.el.setStyle("z-index", z); + } + }, + + /** + * Sets the opacity of the shadow + * @param {Number} opacity The opacity + */ + setOpacity: function(opacity){ + if (this.el) { + if (Ext.isIE && !Ext.supports.CSS3BoxShadow) { + opacity = Math.floor(opacity * 100 / 2) / 100; + } + this.opacity = opacity; + this.el.setOpacity(opacity); + } + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/ShadowPool.js b/extjs-django/marvel/static/extjs/src/ShadowPool.js new file mode 100644 index 0000000..2bf0a06 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/ShadowPool.js @@ -0,0 +1,63 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * Private utility class that manages the internal Shadow cache. + * @private + */ +Ext.define('Ext.ShadowPool', { + singleton: true, + requires: ['Ext.DomHelper'], + + markup: (function() { + return Ext.String.format( + '', + Ext.baseCSSPrefix, + Ext.isIE && !Ext.supports.CSS3BoxShadow ? 'ie' : 'css' + ); + }()), + + shadows: [], + + pull: function() { + var sh = this.shadows.shift(); + if (!sh) { + sh = Ext.get(Ext.DomHelper.insertHtml("beforeBegin", document.body.firstChild, this.markup)); + sh.autoBoxAdjust = false; + } + return sh; + }, + + push: function(sh) { + this.shadows.push(sh); + }, + + reset: function() { + var shadows = [].concat(this.shadows), + s, + sLen = shadows.length; + + for (s = 0; s < sLen; s++) { + shadows[s].remove(); + } + + this.shadows = []; + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/Support.js b/extjs-django/marvel/static/extjs/src/Support.js new file mode 100644 index 0000000..4d35842 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/Support.js @@ -0,0 +1,878 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +// @tag extras,core +// @require perf/Monitor.js +// @define Ext.Supports + +/** + * @class Ext.is + * + * Determines information about the current platform the application is running on. + * + * @singleton + */ +Ext.is = { + init : function(navigator) { + var platforms = this.platforms, + ln = platforms.length, + i, platform; + + navigator = navigator || window.navigator; + + for (i = 0; i < ln; i++) { + platform = platforms[i]; + this[platform.identity] = platform.regex.test(navigator[platform.property]); + } + + /** + * @property Desktop True if the browser is running on a desktop machine + * @type {Boolean} + */ + this.Desktop = this.Mac || this.Windows || (this.Linux && !this.Android); + /** + * @property Tablet True if the browser is running on a tablet (iPad) + */ + this.Tablet = this.iPad; + /** + * @property Phone True if the browser is running on a phone. + * @type {Boolean} + */ + this.Phone = !this.Desktop && !this.Tablet; + /** + * @property iOS True if the browser is running on iOS + * @type {Boolean} + */ + this.iOS = this.iPhone || this.iPad || this.iPod; + + /** + * @property Standalone Detects when application has been saved to homescreen. + * @type {Boolean} + */ + this.Standalone = !!window.navigator.standalone; + }, + + /** + * @property iPhone True when the browser is running on a iPhone + * @type {Boolean} + */ + platforms: [{ + property: 'platform', + regex: /iPhone/i, + identity: 'iPhone' + }, + + /** + * @property iPod True when the browser is running on a iPod + * @type {Boolean} + */ + { + property: 'platform', + regex: /iPod/i, + identity: 'iPod' + }, + + /** + * @property iPad True when the browser is running on a iPad + * @type {Boolean} + */ + { + property: 'userAgent', + regex: /iPad/i, + identity: 'iPad' + }, + + /** + * @property Blackberry True when the browser is running on a Blackberry + * @type {Boolean} + */ + { + property: 'userAgent', + regex: /Blackberry/i, + identity: 'Blackberry' + }, + + /** + * @property Android True when the browser is running on an Android device + * @type {Boolean} + */ + { + property: 'userAgent', + regex: /Android/i, + identity: 'Android' + }, + + /** + * @property Mac True when the browser is running on a Mac + * @type {Boolean} + */ + { + property: 'platform', + regex: /Mac/i, + identity: 'Mac' + }, + + /** + * @property Windows True when the browser is running on Windows + * @type {Boolean} + */ + { + property: 'platform', + regex: /Win/i, + identity: 'Windows' + }, + + /** + * @property Linux True when the browser is running on Linux + * @type {Boolean} + */ + { + property: 'platform', + regex: /Linux/i, + identity: 'Linux' + }] +}; + +Ext.is.init(); + +/** + * @class Ext.supports + * + * Determines information about features are supported in the current environment + * + * @singleton + */ +(function(){ + + // this is a local copy of certain logic from (Abstract)Element.getStyle + // to break a dependancy between the supports mechanism and Element + // use this instead of element references to check for styling info + var getStyle = function(element, styleName){ + var view = element.ownerDocument.defaultView, + style = (view ? view.getComputedStyle(element, null) : element.currentStyle) || element.style; + return style[styleName]; + }, + supportsVectors = { + 'IE6-quirks': [0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0], + 'IE6-strict': [0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,1,1,0,0,1,0,1,0,0,0], + 'IE7-quirks': [0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0], + 'IE7-strict': [0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,1,0,0,1,0,1,0,0,0], + 'IE8-quirks': [0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0], + 'IE8-strict': [0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,1,0,0,1,0,1,0,0,1], + 'IE9-quirks': [0,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,0,0,1,0,1,0,0,0], + 'IE9-strict': [0,1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,0,1], + 'IE10-quirks': [1,1,0,0,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1], + 'IE10-strict': [1,1,0,0,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1] + }; + +function getBrowserKey() { + var browser = Ext.isIE6 ? 'IE6' : Ext.isIE7 ? 'IE7' : Ext.isIE8 ? 'IE8' : + Ext.isIE9 ? 'IE9': Ext.isIE10 ? 'IE10' : ''; + + return browser ? browser + (Ext.isStrict ? '-strict' : '-quirks') : ''; +} + +Ext.supports = { + /** + * Runs feature detection routines and sets the various flags. This is called when + * the scripts loads (very early) and again at {@link Ext#onReady}. Some detections + * are flagged as `early` and run immediately. Others that require the document body + * will not run until ready. + * + * Each test is run only once, so calling this method from an onReady function is safe + * and ensures that all flags have been set. + * @markdown + * @private + */ + init : function() { + var me = this, + doc = document, + toRun = me.toRun || me.tests, + n = toRun.length, + div = n && Ext.isReady && doc.createElement('div'), + notRun = [], + browserKey = getBrowserKey(), + test, vector, value; + + if (div) { + div.innerHTML = [ + '
    ', + '
    ', + '
    ', + '
    ', + '
    ', + '
    ', + '
    ', + '
    ' + ].join(''); + + doc.body.appendChild(div); + } + + vector = supportsVectors[browserKey]; + while (n--) { + test = toRun[n]; + value = vector && vector[n]; + if (value !== undefined) { + me[test.identity] = value; + } else if (div || test.early) { + me[test.identity] = test.fn.call(me, doc, div); + } else { + notRun.push(test); + } + } + + if (div) { + doc.body.removeChild(div); + } + + me.toRun = notRun; + }, + + // + /** + * Generates a support vector for the current browser/mode. The result can be + * added to supportsVectors to eliminate feature detection at startup time. + * @private + */ + generateVector: function() { + var tests = this.tests, + vector = [], + i = 0, + ln = tests.length, + test; + + for (; i < ln; i++) { + test = tests[i]; + vector.push(this[test.identity] ? 1 : 0); + } + return vector; + }, + // + + /** + * @property PointerEvents True if document environment supports the CSS3 pointer-events style. + * @type {Boolean} + */ + PointerEvents: 'pointerEvents' in document.documentElement.style, + + // IE10/Win8 throws "Access Denied" accessing window.localStorage, so this test + // needs to have a try/catch + /** + * @property LocalStorage True if localStorage is supported + */ + LocalStorage: (function() { + try { + return 'localStorage' in window && window['localStorage'] !== null; + } catch (e) { + return false; + } + })(), + + /** + * @property CSS3BoxShadow True if document environment supports the CSS3 box-shadow style. + * @type {Boolean} + */ + CSS3BoxShadow: 'boxShadow' in document.documentElement.style || 'WebkitBoxShadow' in document.documentElement.style || 'MozBoxShadow' in document.documentElement.style, + + /** + * @property ClassList True if document environment supports the HTML5 classList API. + * @type {Boolean} + */ + ClassList: !!document.documentElement.classList, + + /** + * @property OrientationChange True if the device supports orientation change + * @type {Boolean} + */ + OrientationChange: ((typeof window.orientation != 'undefined') && ('onorientationchange' in window)), + + /** + * @property DeviceMotion True if the device supports device motion (acceleration and rotation rate) + * @type {Boolean} + */ + DeviceMotion: ('ondevicemotion' in window), + + /** + * @property Touch True if the device supports touch + * @type {Boolean} + */ + // is.Desktop is needed due to the bug in Chrome 5.0.375, Safari 3.1.2 + // and Safari 4.0 (they all have 'ontouchstart' in the window object). + Touch: ('ontouchstart' in window) && (!Ext.is.Desktop), + + /** + * @property TimeoutActualLateness True if the browser passes the "actualLateness" parameter to + * setTimeout. See: https://developer.mozilla.org/en/DOM/window.setTimeout + * @type {Boolean} + */ + TimeoutActualLateness: (function(){ + setTimeout(function(){ + Ext.supports.TimeoutActualLateness = arguments.length !== 0; + }, 0); + }()), + + tests: [ + /** + * @property Transitions True if the device supports CSS3 Transitions + * @type {Boolean} + */ + { + identity: 'Transitions', + fn: function(doc, div) { + var prefix = [ + 'webkit', + 'Moz', + 'o', + 'ms', + 'khtml' + ], + TE = 'TransitionEnd', + transitionEndName = [ + prefix[0] + TE, + 'transitionend', //Moz bucks the prefixing convention + prefix[2] + TE, + prefix[3] + TE, + prefix[4] + TE + ], + ln = prefix.length, + i = 0, + out = false; + + for (; i < ln; i++) { + if (getStyle(div, prefix[i] + "TransitionProperty")) { + Ext.supports.CSS3Prefix = prefix[i]; + Ext.supports.CSS3TransitionEnd = transitionEndName[i]; + out = true; + break; + } + } + return out; + } + }, + + /** + * @property RightMargin True if the device supports right margin. + * See https://bugs.webkit.org/show_bug.cgi?id=13343 for why this is needed. + * @type {Boolean} + */ + { + identity: 'RightMargin', + fn: function(doc, div) { + var view = doc.defaultView; + return !(view && view.getComputedStyle(div.firstChild.firstChild, null).marginRight != '0px'); + } + }, + + /** + * @property DisplayChangeInputSelectionBug True if INPUT elements lose their + * selection when their display style is changed. Essentially, if a text input + * has focus and its display style is changed, the I-beam disappears. + * + * This bug is encountered due to the work around in place for the {@link #RightMargin} + * bug. This has been observed in Safari 4.0.4 and older, and appears to be fixed + * in Safari 5. It's not clear if Safari 4.1 has the bug, but it has the same WebKit + * version number as Safari 5 (according to http://unixpapa.com/js/gecko.html). + */ + { + identity: 'DisplayChangeInputSelectionBug', + early: true, + fn: function() { + var webKitVersion = Ext.webKitVersion; + // WebKit but older than Safari 5 or Chrome 6: + return 0 < webKitVersion && webKitVersion < 533; + } + }, + + /** + * @property DisplayChangeTextAreaSelectionBug True if TEXTAREA elements lose their + * selection when their display style is changed. Essentially, if a text area has + * focus and its display style is changed, the I-beam disappears. + * + * This bug is encountered due to the work around in place for the {@link #RightMargin} + * bug. This has been observed in Chrome 10 and Safari 5 and older, and appears to + * be fixed in Chrome 11. + */ + { + identity: 'DisplayChangeTextAreaSelectionBug', + early: true, + fn: function() { + var webKitVersion = Ext.webKitVersion; + + /* + Has bug w/textarea: + + (Chrome) Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-US) + AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.127 + Safari/534.16 + (Safari) Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-us) + AppleWebKit/533.21.1 (KHTML, like Gecko) Version/5.0.5 + Safari/533.21.1 + + No bug: + + (Chrome) Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_7) + AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.57 + Safari/534.24 + */ + return 0 < webKitVersion && webKitVersion < 534.24; + } + }, + + /** + * @property TransparentColor True if the device supports transparent color + * @type {Boolean} + */ + { + identity: 'TransparentColor', + fn: function(doc, div, view) { + view = doc.defaultView; + return !(view && view.getComputedStyle(div.lastChild, null).backgroundColor != 'transparent'); + } + }, + + /** + * @property ComputedStyle True if the browser supports document.defaultView.getComputedStyle() + * @type {Boolean} + */ + { + identity: 'ComputedStyle', + fn: function(doc, div, view) { + view = doc.defaultView; + return view && view.getComputedStyle; + } + }, + + /** + * @property Svg True if the device supports SVG + * @type {Boolean} + */ + { + identity: 'Svg', + fn: function(doc) { + return !!doc.createElementNS && !!doc.createElementNS( "http:/" + "/www.w3.org/2000/svg", "svg").createSVGRect; + } + }, + + /** + * @property Canvas True if the device supports Canvas + * @type {Boolean} + */ + { + identity: 'Canvas', + fn: function(doc) { + return !!doc.createElement('canvas').getContext; + } + }, + + /** + * @property Vml True if the device supports VML + * @type {Boolean} + */ + { + identity: 'Vml', + fn: function(doc) { + var d = doc.createElement("div"); + d.innerHTML = ""; + return (d.childNodes.length == 2); + } + }, + + /** + * @property Float True if the device supports CSS float + * @type {Boolean} + */ + { + identity: 'Float', + fn: function(doc, div) { + return !!div.lastChild.style.cssFloat; + } + }, + + /** + * @property AudioTag True if the device supports the HTML5 audio tag + * @type {Boolean} + */ + { + identity: 'AudioTag', + fn: function(doc) { + return !!doc.createElement('audio').canPlayType; + } + }, + + /** + * @property History True if the device supports HTML5 history + * @type {Boolean} + */ + { + identity: 'History', + fn: function() { + var history = window.history; + return !!(history && history.pushState); + } + }, + + /** + * @property CSS3DTransform True if the device supports CSS3DTransform + * @type {Boolean} + */ + { + identity: 'CSS3DTransform', + fn: function() { + return (typeof WebKitCSSMatrix != 'undefined' && new WebKitCSSMatrix().hasOwnProperty('m41')); + } + }, + + /** + * @property CSS3LinearGradient True if the device supports CSS3 linear gradients + * @type {Boolean} + */ + { + identity: 'CSS3LinearGradient', + fn: function(doc, div) { + var property = 'background-image:', + webkit = '-webkit-gradient(linear, left top, right bottom, from(black), to(white))', + w3c = 'linear-gradient(left top, black, white)', + moz = '-moz-' + w3c, + ms = '-ms-' + w3c, + opera = '-o-' + w3c, + options = [property + webkit, property + w3c, property + moz, property + ms, property + opera]; + + div.style.cssText = options.join(';'); + + return (("" + div.style.backgroundImage).indexOf('gradient') !== -1) && !Ext.isIE9; + } + }, + + /** + * @property CSS3BorderRadius True if the device supports CSS3 border radius + * @type {Boolean} + */ + { + identity: 'CSS3BorderRadius', + fn: function(doc, div) { + var domPrefixes = ['borderRadius', 'BorderRadius', 'MozBorderRadius', 'WebkitBorderRadius', 'OBorderRadius', 'KhtmlBorderRadius'], + pass = false, + i; + for (i = 0; i < domPrefixes.length; i++) { + if (document.body.style[domPrefixes[i]] !== undefined) { + return true; + } + } + return pass; + } + }, + + /** + * @property GeoLocation True if the device supports GeoLocation + * @type {Boolean} + */ + { + identity: 'GeoLocation', + fn: function() { + // Use the in check for geolocation, see https://github.com/Modernizr/Modernizr/issues/513 + return (typeof navigator != 'undefined' && 'geolocation' in navigator) || (typeof google != 'undefined' && typeof google.gears != 'undefined'); + } + }, + /** + * @property MouseEnterLeave True if the browser supports mouseenter and mouseleave events + * @type {Boolean} + */ + { + identity: 'MouseEnterLeave', + fn: function(doc, div){ + return ('onmouseenter' in div && 'onmouseleave' in div); + } + }, + /** + * @property MouseWheel True if the browser supports the mousewheel event + * @type {Boolean} + */ + { + identity: 'MouseWheel', + fn: function(doc, div) { + return ('onmousewheel' in div); + } + }, + /** + * @property Opacity True if the browser supports normal css opacity + * @type {Boolean} + */ + { + identity: 'Opacity', + fn: function(doc, div){ + // Not a strict equal comparison in case opacity can be converted to a number. + if (Ext.isIE6 || Ext.isIE7 || Ext.isIE8) { + return false; + } + div.firstChild.style.cssText = 'opacity:0.73'; + return div.firstChild.style.opacity == '0.73'; + } + }, + /** + * @property Placeholder True if the browser supports the HTML5 placeholder attribute on inputs + * @type {Boolean} + */ + { + identity: 'Placeholder', + fn: function(doc) { + return 'placeholder' in doc.createElement('input'); + } + }, + + /** + * @property Direct2DBug True if when asking for an element's dimension via offsetWidth or offsetHeight, + * getBoundingClientRect, etc. the browser returns the subpixel width rounded to the nearest pixel. + * @type {Boolean} + */ + { + identity: 'Direct2DBug', + fn: function() { + return Ext.isString(document.body.style.msTransformOrigin) && Ext.isIE10m; + } + }, + /** + * @property BoundingClientRect True if the browser supports the getBoundingClientRect method on elements + * @type {Boolean} + */ + { + identity: 'BoundingClientRect', + fn: function(doc, div) { + return Ext.isFunction(div.getBoundingClientRect); + } + }, + /** + * @property RotatedBoundingClientRect True if the BoundingClientRect is + * rotated when the element is rotated using a CSS transform. + * @type {Boolean} + */ + { + identity: 'RotatedBoundingClientRect', + fn: function() { + var body = document.body, + supports = false, + el = document.createElement('div'), + style = el.style; + + if (el.getBoundingClientRect) { + style.WebkitTransform = style.MozTransform = + style.OTransform = style.transform = 'rotate(90deg)'; + style.width = '100px'; + style.height = '30px'; + body.appendChild(el) + + supports = el.getBoundingClientRect().height !== 100; + body.removeChild(el); + } + + return supports; + } + }, + { + identity: 'IncludePaddingInWidthCalculation', + fn: function(doc, div){ + return div.childNodes[1].firstChild.offsetWidth == 210; + } + }, + { + identity: 'IncludePaddingInHeightCalculation', + fn: function(doc, div){ + return div.childNodes[1].firstChild.offsetHeight == 210; + } + }, + + /** + * @property ArraySort True if the Array sort native method isn't bugged. + * @type {Boolean} + */ + { + identity: 'ArraySort', + fn: function() { + var a = [1,2,3,4,5].sort(function(){ return 0; }); + return a[0] === 1 && a[1] === 2 && a[2] === 3 && a[3] === 4 && a[4] === 5; + } + }, + /** + * @property Range True if browser support document.createRange native method. + * @type {Boolean} + */ + { + identity: 'Range', + fn: function() { + return !!document.createRange; + } + }, + /** + * @property CreateContextualFragment True if browser support CreateContextualFragment range native methods. + * @type {Boolean} + */ + { + identity: 'CreateContextualFragment', + fn: function() { + var range = Ext.supports.Range ? document.createRange() : false; + + return range && !!range.createContextualFragment; + } + }, + + /** + * @property WindowOnError True if browser supports window.onerror. + * @type {Boolean} + */ + { + identity: 'WindowOnError', + fn: function () { + // sadly, we cannot feature detect this... + return Ext.isIE || Ext.isGecko || Ext.webKitVersion >= 534.16; // Chrome 10+ + } + }, + + /** + * @property TextAreaMaxLength True if the browser supports maxlength on textareas. + * @type {Boolean} + */ + { + identity: 'TextAreaMaxLength', + fn: function(){ + var el = document.createElement('textarea'); + return ('maxlength' in el); + } + }, + /** + * @property GetPositionPercentage True if the browser will return the left/top/right/bottom + * position as a percentage when explicitly set as a percentage value. + * @type {Boolean} + */ + // Related bug: https://bugzilla.mozilla.org/show_bug.cgi?id=707691#c7 + { + identity: 'GetPositionPercentage', + fn: function(doc, div){ + return getStyle(div.childNodes[2], 'left') == '10%'; + } + }, + /** + * @property {Boolean} PercentageHeightOverflowBug + * In some browsers (IE quirks, IE6, IE7, IE9, chrome, safari and opera at the time + * of this writing) a percentage-height element ignores the horizontal scrollbar + * of its parent element. This method returns true if the browser is affected + * by this bug. + * + * @private + */ + { + identity: 'PercentageHeightOverflowBug', + fn: function(doc) { + var hasBug = false, + style, el; + + if (Ext.getScrollbarSize().height) { + // must have space-consuming scrollbars for bug to be possible + el = doc.createElement('div'); + style = el.style; + style.height = '50px'; + style.width = '50px'; + style.overflow = 'auto'; + style.position = 'absolute'; + + el.innerHTML = [ + '
    ', + // The element that causes the horizontal overflow must be + // a child of the element with the 100% height, otherwise + // horizontal overflow is not triggered in webkit quirks mode + '
    ', + '
    ' + ].join(''); + doc.body.appendChild(el); + if (el.firstChild.offsetHeight === 50) { + hasBug = true; + } + doc.body.removeChild(el); + } + + return hasBug; + } + }, + /** + * @property {Boolean} xOriginBug + * In Chrome 24.0, an RTL element which has vertical overflow positions its right X origin incorrectly. + * It skips a non-existent scrollbar which has been moved to the left edge due to the RTL setting. + * + * http://code.google.com/p/chromium/issues/detail?id=174656 + * + * This method returns true if the browser is affected by this bug. + * + * @private + */ + { + identity: 'xOriginBug', + fn: function(doc, div) { + div.innerHTML = '
    ' + + '
    ' + + '
    ' + + '
    '; + + var outerBox = document.getElementById('b1').getBoundingClientRect(), + b2 = document.getElementById('b2').getBoundingClientRect(), + b3 = document.getElementById('b3').getBoundingClientRect(); + + return (b2.left !== outerBox.left && b3.right !== outerBox.right); + } + }, + + /** + * @property {Boolean} ScrollWidthInlinePaddingBug + * In some browsers the right padding of an overflowing element is not accounted + * for in its scrollWidth. The result can vary depending on whether or not + * The element contains block-level children. This method tests the effect + * of padding on scrollWidth when there are no block-level children inside the + * overflowing element. + * + * This method returns true if the browser is affected by this bug. + */ + { + identity: 'ScrollWidthInlinePaddingBug', + fn: function(doc) { + var hasBug = false, + style, el; + + el = doc.createElement('div'); + style = el.style; + style.height = '50px'; + style.width = '50px'; + style.padding = '10px'; + style.overflow = 'hidden'; + style.position = 'absolute'; + + el.innerHTML = + ''; + doc.body.appendChild(el); + if (el.scrollWidth === 70) { + hasBug = true; + } + doc.body.removeChild(el); + + return hasBug; + } + } + ] +}; +}()); + +Ext.supports.init(); // run the "early" detections now diff --git a/extjs-django/marvel/static/extjs/src/Template.js b/extjs-django/marvel/static/extjs/src/Template.js new file mode 100644 index 0000000..81409b3 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/Template.js @@ -0,0 +1,352 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +// @tag core +/** + * Represents an HTML fragment template. Templates may be {@link #compile precompiled} for greater performance. + * + * An instance of this class may be created by passing to the constructor either a single argument, or multiple + * arguments: + * + * # Single argument: String/Array + * + * The single argument may be either a String or an Array: + * + * - String: + * + * var t = new Ext.Template("
    Hello {0}.
    "); + * t.{@link #append}('some-element', ['foo']); + * + * - Array: + * + * An Array will be combined with `join('')`. + * + * var t = new Ext.Template([ + * '
    ', + * '{name:trim} {value:ellipsis(10)}', + * '
    ', + * ]); + * t.{@link #compile}(); + * t.{@link #append}('some-element', {id: 'myid', cls: 'myclass', name: 'foo', value: 'bar'}); + * + * # Multiple arguments: String, Object, Array, ... + * + * Multiple arguments will be combined with `join('')`. + * + * var t = new Ext.Template( + * '
    ', + * '{name} {value}', + * '
    ', + * // a configuration object: + * { + * compiled: true, // {@link #compile} immediately + * } + * ); + * + * # Notes + * + * - For a list of available format functions, see {@link Ext.util.Format}. + * - `disableFormats` reduces `{@link #apply}` time when no formatting is required. + */ +Ext.define('Ext.Template', { + + /* Begin Definitions */ + + requires: ['Ext.dom.Helper', 'Ext.util.Format'], + + inheritableStatics: { + /** + * Creates a template from the passed element's value (_display:none_ textarea, preferred) or innerHTML. + * @param {String/HTMLElement} el A DOM element or its id + * @param {Object} config (optional) Config object + * @return {Ext.Template} The created template + * @static + * @inheritable + */ + from: function(el, config) { + el = Ext.getDom(el); + return new this(el.value || el.innerHTML, config || ''); + } + }, + + /* End Definitions */ + + /** + * Creates new template. + * + * @param {String...} html List of strings to be concatenated into template. + * Alternatively an array of strings can be given, but then no config object may be passed. + * @param {Object} config (optional) Config object + */ + constructor: function(html) { + var me = this, + args = arguments, + buffer = [], + i = 0, + length = args.length, + value; + + me.initialConfig = {}; + + // Allow an array to be passed here so we can + // pass an array of strings and an object + // at the end + if (length === 1 && Ext.isArray(html)) { + args = html; + length = args.length; + } + + if (length > 1) { + for (; i < length; i++) { + value = args[i]; + if (typeof value == 'object') { + Ext.apply(me.initialConfig, value); + Ext.apply(me, value); + } else { + buffer.push(value); + } + } + } else { + buffer.push(html); + } + + // @private + me.html = buffer.join(''); + + if (me.compiled) { + me.compile(); + } + }, + + /** + * @property {Boolean} isTemplate + * `true` in this class to identify an object as an instantiated Template, or subclass thereof. + */ + isTemplate: true, + + /** + * @cfg {Boolean} compiled + * True to immediately compile the template. Defaults to false. + */ + + /** + * @cfg {Boolean} disableFormats + * True to disable format functions in the template. If the template doesn't contain + * format functions, setting disableFormats to true will reduce apply time. Defaults to false. + */ + disableFormats: false, + + re: /\{([\w\-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g, + + /** + * Returns an HTML fragment of this template with the specified values applied. + * + * @param {Object/Array} values The template values. Can be an array if your params are numeric: + * + * var tpl = new Ext.Template('Name: {0}, Age: {1}'); + * tpl.apply(['John', 25]); + * + * or an object: + * + * var tpl = new Ext.Template('Name: {name}, Age: {age}'); + * tpl.apply({name: 'John', age: 25}); + * + * @return {String} The HTML fragment + */ + apply: function(values) { + var me = this, + useFormat = me.disableFormats !== true, + fm = Ext.util.Format, + tpl = me, + ret; + + if (me.compiled) { + return me.compiled(values).join(''); + } + + function fn(m, name, format, args) { + if (format && useFormat) { + if (args) { + args = [values[name]].concat(Ext.functionFactory('return ['+ args +'];')()); + } else { + args = [values[name]]; + } + if (format.substr(0, 5) == "this.") { + return tpl[format.substr(5)].apply(tpl, args); + } + else { + return fm[format].apply(fm, args); + } + } + else { + return values[name] !== undefined ? values[name] : ""; + } + } + + ret = me.html.replace(me.re, fn); + return ret; + }, + + /** + * Appends the result of this template to the provided output array. + * @param {Object/Array} values The template values. See {@link #apply}. + * @param {Array} out The array to which output is pushed. + * @return {Array} The given out array. + */ + applyOut: function(values, out) { + var me = this; + + if (me.compiled) { + out.push.apply(out, me.compiled(values)); + } else { + out.push(me.apply(values)); + } + + return out; + }, + + /** + * @method applyTemplate + * @member Ext.Template + * Alias for {@link #apply}. + * @inheritdoc Ext.Template#apply + */ + applyTemplate: function () { + return this.apply.apply(this, arguments); + }, + + /** + * Sets the HTML used as the template and optionally compiles it. + * @param {String} html + * @param {Boolean} compile (optional) True to compile the template. + * @return {Ext.Template} this + */ + set: function(html, compile) { + var me = this; + me.html = html; + me.compiled = null; + return compile ? me.compile() : me; + }, + + compileARe: /\\/g, + compileBRe: /(\r\n|\n)/g, + compileCRe: /'/g, + + /** + * Compiles the template into an internal function, eliminating the RegEx overhead. + * @return {Ext.Template} this + */ + compile: function() { + var me = this, + fm = Ext.util.Format, + useFormat = me.disableFormats !== true, + body, bodyReturn; + + function fn(m, name, format, args) { + if (format && useFormat) { + args = args ? ',' + args: ""; + if (format.substr(0, 5) != "this.") { + format = "fm." + format + '('; + } + else { + format = 'this.' + format.substr(5) + '('; + } + } + else { + args = ''; + format = "(values['" + name + "'] == undefined ? '' : "; + } + return "'," + format + "values['" + name + "']" + args + ") ,'"; + } + + bodyReturn = me.html.replace(me.compileARe, '\\\\').replace(me.compileBRe, '\\n').replace(me.compileCRe, "\\'").replace(me.re, fn); + body = "this.compiled = function(values){ return ['" + bodyReturn + "'];};"; + eval(body); + return me; + }, + + /** + * Applies the supplied values to the template and inserts the new node(s) as the first child of el. + * + * @param {String/HTMLElement/Ext.Element} el The context element + * @param {Object/Array} values The template values. See {@link #applyTemplate} for details. + * @param {Boolean} returnElement (optional) true to return a Ext.Element. + * @return {HTMLElement/Ext.Element} The new node or Element + */ + insertFirst: function(el, values, returnElement) { + return this.doInsert('afterBegin', el, values, returnElement); + }, + + /** + * Applies the supplied values to the template and inserts the new node(s) before el. + * + * @param {String/HTMLElement/Ext.Element} el The context element + * @param {Object/Array} values The template values. See {@link #applyTemplate} for details. + * @param {Boolean} returnElement (optional) true to return a Ext.Element. + * @return {HTMLElement/Ext.Element} The new node or Element + */ + insertBefore: function(el, values, returnElement) { + return this.doInsert('beforeBegin', el, values, returnElement); + }, + + /** + * Applies the supplied values to the template and inserts the new node(s) after el. + * + * @param {String/HTMLElement/Ext.Element} el The context element + * @param {Object/Array} values The template values. See {@link #applyTemplate} for details. + * @param {Boolean} returnElement (optional) true to return a Ext.Element. + * @return {HTMLElement/Ext.Element} The new node or Element + */ + insertAfter: function(el, values, returnElement) { + return this.doInsert('afterEnd', el, values, returnElement); + }, + + /** + * Applies the supplied `values` to the template and appends the new node(s) to the specified `el`. + * + * For example usage see {@link Ext.Template Ext.Template class docs}. + * + * @param {String/HTMLElement/Ext.Element} el The context element + * @param {Object/Array} values The template values. See {@link #applyTemplate} for details. + * @param {Boolean} returnElement (optional) true to return an Ext.Element. + * @return {HTMLElement/Ext.Element} The new node or Element + */ + append: function(el, values, returnElement) { + return this.doInsert('beforeEnd', el, values, returnElement); + }, + + doInsert: function(where, el, values, returnElement) { + var newNode = Ext.DomHelper.insertHtml(where, Ext.getDom(el), this.apply(values)); + return returnElement ? Ext.get(newNode) : newNode; + }, + + /** + * Applies the supplied values to the template and overwrites the content of el with the new node(s). + * + * @param {String/HTMLElement/Ext.Element} el The context element + * @param {Object/Array} values The template values. See {@link #applyTemplate} for details. + * @param {Boolean} returnElement (optional) true to return a Ext.Element. + * @return {HTMLElement/Ext.Element} The new node or Element + */ + overwrite: function(el, values, returnElement) { + var newNode = Ext.DomHelper.overwrite(Ext.getDom(el), this.apply(values)); + return returnElement ? Ext.get(newNode) : newNode; + } +}); diff --git a/extjs-django/marvel/static/extjs/src/XTemplate.js b/extjs-django/marvel/static/extjs/src/XTemplate.js new file mode 100644 index 0000000..80ff9f7 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/XTemplate.js @@ -0,0 +1,421 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +// @tag core +/** + * A template class that supports advanced functionality like: + * + * - Autofilling arrays using templates and sub-templates + * - Conditional processing with basic comparison operators + * - Basic math function support + * - Execute arbitrary inline code with special built-in template variables + * - Custom member functions + * - Many special tags and built-in operators that aren't defined as part of the API, but are supported in the templates that can be created + * + * XTemplate provides the templating mechanism built into {@link Ext.view.View}. + * + * The {@link Ext.Template} describes the acceptable parameters to pass to the constructor. The following examples + * demonstrate all of the supported features. + * + * # Sample Data + * + * This is the data object used for reference in each code example: + * + * var data = { + * name: 'Don Griffin', + * title: 'Senior Technomage', + * company: 'Sencha Inc.', + * drinks: ['Coffee', 'Water', 'More Coffee'], + * kids: [ + * { name: 'Aubrey', age: 17 }, + * { name: 'Joshua', age: 13 }, + * { name: 'Cale', age: 10 }, + * { name: 'Nikol', age: 5 }, + * { name: 'Solomon', age: 0 } + * ] + * }; + * + * # Auto filling of arrays + * + * The **tpl** tag and the **for** operator are used to process the provided data object: + * + * - If the value specified in for is an array, it will auto-fill, repeating the template block inside the tpl + * tag for each item in the array. + * - If for="." is specified, the data object provided is examined. + * - If between="..." is specified, the provided value will be inserted between the items. + * This is also supported in the "foreach" looping template. + * - While processing an array, the special variable {#} will provide the current array index + 1 (starts at 1, not 0). + * + * Examples: + * + * ... // loop through array at root node + * ... // loop through array at foo node + * ... // loop through array at foo.bar node + * ... // loop through array at root node and insert ',' between each item + * + * Using the sample data above: + * + * var tpl = new Ext.XTemplate( + * '

    Kids: ', + * '', // process the data.kids node + * '

    {#}. {name}

    ', // use current array index to autonumber + * '

    ' + * ); + * tpl.overwrite(panel.body, data.kids); // pass the kids property of the data object + * + * An example illustrating how the **for** property can be leveraged to access specified members of the provided data + * object to populate the template: + * + * var tpl = new Ext.XTemplate( + * '

    Name: {name}

    ', + * '

    Title: {title}

    ', + * '

    Company: {company}

    ', + * '

    Kids: ', + * '', // interrogate the kids property within the data + * '

    {name}

    ', + * '

    ' + * ); + * tpl.overwrite(panel.body, data); // pass the root node of the data object + * + * Flat arrays that contain values (and not objects) can be auto-rendered using the special **`{.}`** variable inside a + * loop. This variable will represent the value of the array at the current index: + * + * var tpl = new Ext.XTemplate( + * '

    {name}\'s favorite beverages:

    ', + * '', + * '
    - {.}
    ', + * '
    ' + * ); + * tpl.overwrite(panel.body, data); + * + * When processing a sub-template, for example while looping through a child array, you can access the parent object's + * members via the **parent** object: + * + * var tpl = new Ext.XTemplate( + * '

    Name: {name}

    ', + * '

    Kids: ', + * '', + * '', + * '

    {name}

    ', + * '

    Dad: {parent.name}

    ', + * '', + * '

    ' + * ); + * tpl.overwrite(panel.body, data); + * + * The **foreach** operator is used to loop over an object's properties. The following + * example demonstrates looping over the main data object's properties: + * + * var tpl = new Ext.XTemplate( + * '
    ', + * '', + * '
    {$}
    ', // the special **`{$}`** variable contains the property name + * '
    {.}
    ', // within the loop, the **`{.}`** variable is set to the property value + * '
    ', + * '
    ' + * ); + * tpl.overwrite(panel.body, data); + * + * # Conditional processing with basic comparison operators + * + * The **tpl** tag and the **if** operator are used to provide conditional checks for deciding whether or not to render + * specific parts of the template. + * + * Using the sample data above: + * + * var tpl = new Ext.XTemplate( + * '

    Name: {name}

    ', + * '

    Kids: ', + * '', + * '', + * '

    {name}

    ', + * '', + * '

    ' + * ); + * tpl.overwrite(panel.body, data); + * + * More advanced conditionals are also supported: + * + * var tpl = new Ext.XTemplate( + * '

    Name: {name}

    ', + * '

    Kids: ', + * '', + * '

    {name} is a ', + * '', + * '

    teenager

    ', + * '', + * '

    kid

    ', + * '', + * '

    baby

    ', + * '
    ', + * '

    ' + * ); + * + * var tpl = new Ext.XTemplate( + * '

    Name: {name}

    ', + * '

    Kids: ', + * '', + * '

    {name} is a ', + * '', + * '', + * '

    girl

    ', + * '', + * '

    boy

    ', + * '
    ', + * '

    ' + * ); + * + * A `break` is implied between each case and default, however, multiple cases can be listed + * in a single <tpl> tag. + * + * # Using double quotes + * + * Examples: + * + * var tpl = new Ext.XTemplate( + * "Child", + * "Teenager", + * "...", + * '...', + * "", + * "Hello" + * ); + * + * # Basic math support + * + * The following basic math operators may be applied directly on numeric data values: + * + * + - * / + * + * For example: + * + * var tpl = new Ext.XTemplate( + * '

    Name: {name}

    ', + * '

    Kids: ', + * '', + * '', // <-- Note that the > is encoded + * '

    {#}: {name}

    ', // <-- Auto-number each item + * '

    In 5 Years: {age+5}

    ', // <-- Basic math + * '

    Dad: {parent.name}

    ', + * '', + * '

    ' + * ); + * tpl.overwrite(panel.body, data); + * + * # Execute arbitrary inline code with special built-in template variables + * + * Anything between `{[ ... ]}` is considered code to be executed in the scope of the template. + * The expression is evaluated and the result is included in the generated result. There are + * some special variables available in that code: + * + * - **out**: The output array into which the template is being appended (using `push` to later + * `join`). + * - **values**: The values in the current scope. If you are using scope changing sub-templates, + * you can change what values is. + * - **parent**: The scope (values) of the ancestor template. + * - **xindex**: If you are in a "for" or "foreach" looping template, the index of the loop you are in (1-based). + * - **xcount**: If you are in a "for" looping template, the total length of the array you are looping. + * - **xkey**: If you are in a "foreach" looping template, the key of the current property + * being examined. + * + * This example demonstrates basic row striping using an inline code block and the xindex variable: + * + * var tpl = new Ext.XTemplate( + * '

    Name: {name}

    ', + * '

    Company: {[values.company.toUpperCase() + ", " + values.title]}

    ', + * '

    Kids: ', + * '', + * '

    ', + * '{name}', + * '
    ', + * '

    ' + * ); + * + * Any code contained in "verbatim" blocks (using "{% ... %}") will be inserted directly in + * the generated code for the template. These blocks are not included in the output. This + * can be used for simple things like break/continue in a loop, or control structures or + * method calls (when they don't produce output). The `this` references the template instance. + * + * var tpl = new Ext.XTemplate( + * '

    Name: {name}

    ', + * '

    Company: {[values.company.toUpperCase() + ", " + values.title]}

    ', + * '

    Kids: ', + * '', + * '{% if (xindex % 2 === 0) continue; %}', + * '{name}', + * '{% if (xindex > 100) break; %}', + * '

    ', + * '

    ' + * ); + * + * # Template member functions + * + * One or more member functions can be specified in a configuration object passed into the XTemplate constructor for + * more complex processing: + * + * var tpl = new Ext.XTemplate( + * '

    Name: {name}

    ', + * '

    Kids: ', + * '', + * '', + * '

    Girl: {name} - {age}

    ', + * '', + * '

    Boy: {name} - {age}

    ', + * '
    ', + * '', + * '

    {name} is a baby!

    ', + * '
    ', + * '

    ', + * { + * // XTemplate configuration: + * disableFormats: true, + * // member functions: + * isGirl: function(name){ + * return name == 'Aubrey' || name == 'Nikol'; + * }, + * isBaby: function(age){ + * return age < 1; + * } + * } + * ); + * tpl.overwrite(panel.body, data); + */ +Ext.define('Ext.XTemplate', { + extend: 'Ext.Template', + + requires: 'Ext.XTemplateCompiler', + + /** + * @private + */ + emptyObj: {}, + + /** + * @cfg {Boolean} compiled + * Only applies to {@link Ext.Template}, XTemplates are compiled automatically on the + * first call to {@link #apply} or {@link #applyOut}. + * @hide + */ + + /** + * @cfg {String/Array} definitions + * Optional. A statement, or array of statements which set up `var`s which may then + * be accessed within the scope of the generated function. + */ + + apply: function(values, parent) { + return this.applyOut(values, [], parent).join(''); + }, + + applyOut: function(values, out, parent) { + var me = this, + compiler; + + if (!me.fn) { + compiler = new Ext.XTemplateCompiler({ + useFormat: me.disableFormats !== true, + definitions: me.definitions + }); + + me.fn = compiler.compile(me.html); + } + + try { + me.fn(out, values, parent || me.emptyObj, 1, 1); + } catch (e) { + // + Ext.log('Error: ' + e.message); + // + } + + return out; + }, + + /** + * Does nothing. XTemplates are compiled automatically, so this function simply returns this. + * @return {Ext.XTemplate} this + */ + compile: function() { + return this; + }, + + statics: { + /** + * Gets an `XTemplate` from an object (an instance of an {@link Ext#define}'d class). + * Many times, templates are configured high in the class hierarchy and are to be + * shared by all classes that derive from that base. To further complicate matters, + * these templates are seldom actual instances but are rather configurations. For + * example: + * + * Ext.define('MyApp.Class', { + * extraCls: 'extra-class', + * + * someTpl: [ + * '
    ', + * { + * // Member fn - outputs the owing class's extra CSS class + * emitClass: function(out) { + * out.push(this.owner.extraCls); + * } + * }] + * }); + * + * The goal being to share that template definition with all instances and even + * instances of derived classes, until `someTpl` is overridden. This method will + * "upgrade" these configurations to be real `XTemplate` instances *in place* (to + * avoid creating one instance per object). + * + * The resulting XTemplate will have an `owner` reference injected which refers back + * to the owning object whether that is an object which has an *own instance*, or a + * class prototype. Through this link, XTemplate member functions will be able to access + * prototype properties of its owning class. + * + * @param {Object} instance The object from which to get the `XTemplate` (must be + * an instance of an {@link Ext#define}'d class). + * @param {String} name The name of the property by which to get the `XTemplate`. + * @return {Ext.XTemplate} The `XTemplate` instance or null if not found. + * @protected + * @static + */ + getTpl: function (instance, name) { + var tpl = instance[name], // go for it! 99% of the time we will get it! + owner; + + if (tpl && !tpl.isTemplate) { // tpl is just a configuration (not an instance) + // create the template instance from the configuration: + tpl = Ext.ClassManager.dynInstantiate('Ext.XTemplate', tpl); + + // and replace the reference with the new instance: + if (instance.hasOwnProperty(name)) { // the tpl is on the instance + owner = instance; + } else { // must be somewhere in the prototype chain + for (owner = instance.self.prototype; owner && !owner.hasOwnProperty(name); owner = owner.superclass) { + } + } + owner[name] = tpl; + tpl.owner = owner; + } + // else !tpl (no such tpl) or the tpl is an instance already... either way, tpl + // is ready to return + + return tpl || null; + } + } +}); diff --git a/extjs-django/marvel/static/extjs/src/XTemplateCompiler.js b/extjs-django/marvel/static/extjs/src/XTemplateCompiler.js new file mode 100644 index 0000000..0cd5a1e --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/XTemplateCompiler.js @@ -0,0 +1,562 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +// @tag core +/** + * This class compiles the XTemplate syntax into a function object. The function is used + * like so: + * + * function (out, values, parent, xindex, xcount) { + * // out is the output array to store results + * // values, parent, xindex and xcount have their historical meaning + * } + * + * @markdown + * @private + */ +Ext.define('Ext.XTemplateCompiler', { + extend: 'Ext.XTemplateParser', + + // Chrome really likes "new Function" to realize the code block (as in it is + // 2x-3x faster to call it than using eval), but Firefox chokes on it badly. + // IE and Opera are also fine with the "new Function" technique. + useEval: Ext.isGecko, + + // See http://jsperf.com/nige-array-append for quickest way to append to an array of unknown length + // (Due to arbitrary code execution inside a template, we cannot easily track the length in var) + // On IE6 to 8, myArray[myArray.length]='foo' is better. On other browsers myArray.push('foo') is better. + useIndex: Ext.isIE8m, + + useFormat: true, + + propNameRe: /^[\w\d\$]*$/, + + compile: function (tpl) { + var me = this, + code = me.generate(tpl); + + // When using "new Function", we have to pass our "Ext" variable to it in order to + // support sandboxing. If we did not, the generated function would use the global + // "Ext", not the "Ext" from our sandbox (scope chain). + // + return me.useEval ? me.evalTpl(code) : (new Function('Ext', code))(Ext); + }, + + generate: function (tpl) { + var me = this, + // note: Ext here is properly sandboxed + definitions = 'var fm=Ext.util.Format,ts=Object.prototype.toString;', + code; + + // Track how many levels we use, so that we only "var" each level's variables once + me.maxLevel = 0; + + me.body = [ + 'var c0=values, a0=' + me.createArrayTest(0) + ', p0=parent, n0=xcount, i0=xindex, k0, v;\n' + ]; + if (me.definitions) { + if (typeof me.definitions === 'string') { + me.definitions = [me.definitions, definitions ]; + } else { + me.definitions.push(definitions); + } + } else { + me.definitions = [ definitions ]; + } + me.switches = []; + + me.parse(tpl); + + me.definitions.push( + (me.useEval ? '$=' : 'return') + ' function (' + me.fnArgs + ') {', + me.body.join(''), + '}' + ); + + code = me.definitions.join('\n'); + + // Free up the arrays. + me.definitions.length = me.body.length = me.switches.length = 0; + delete me.definitions; + delete me.body; + delete me.switches; + + return code; + }, + + //----------------------------------- + // XTemplateParser callouts + + doText: function (text) { + var me = this, + out = me.body; + + text = text.replace(me.aposRe, "\\'").replace(me.newLineRe, '\\n'); + if (me.useIndex) { + out.push('out[out.length]=\'', text, '\'\n'); + } else { + out.push('out.push(\'', text, '\')\n'); + } + }, + + doExpr: function (expr) { + var out = this.body; + out.push('if ((v=' + expr + ') != null) out'); + + // Coerce value to string using concatenation of an empty string literal. + // See http://jsperf.com/tostringvscoercion/5 + if (this.useIndex) { + out.push('[out.length]=v+\'\'\n'); + } else { + out.push('.push(v+\'\')\n'); + } + }, + + doTag: function (tag) { + var expr = this.parseTag(tag); + if (expr) { + this.doExpr(expr); + } else { + // if we cannot match on tagRe handle as plain text + this.doText('{' + tag + '}'); + } + }, + + doElse: function () { + this.body.push('} else {\n'); + }, + + doEval: function (text) { + this.body.push(text, '\n'); + }, + + doIf: function (action, actions) { + var me = this; + + // If it's just a propName, use it directly in the if + if (action === '.') { + me.body.push('if (values) {\n'); + } else if (me.propNameRe.test(action)) { + me.body.push('if (', me.parseTag(action), ') {\n'); + } + // Otherwise, it must be an expression, and needs to be returned from an fn which uses with(values) + else { + me.body.push('if (', me.addFn(action), me.callFn, ') {\n'); + } + if (actions.exec) { + me.doExec(actions.exec); + } + }, + + doElseIf: function (action, actions) { + var me = this; + + // If it's just a propName, use it directly in the else if + if (action === '.') { + me.body.push('else if (values) {\n'); + } else if (me.propNameRe.test(action)) { + me.body.push('} else if (', me.parseTag(action), ') {\n'); + } + // Otherwise, it must be an expression, and needs to be returned from an fn which uses with(values) + else { + me.body.push('} else if (', me.addFn(action), me.callFn, ') {\n'); + } + if (actions.exec) { + me.doExec(actions.exec); + } + }, + + doSwitch: function (action) { + var me = this; + + // If it's just a propName, use it directly in the switch + if (action === '.') { + me.body.push('switch (values) {\n'); + } else if (me.propNameRe.test(action)) { + me.body.push('switch (', me.parseTag(action), ') {\n'); + } + // Otherwise, it must be an expression, and needs to be returned from an fn which uses with(values) + else { + me.body.push('switch (', me.addFn(action), me.callFn, ') {\n'); + } + me.switches.push(0); + }, + + doCase: function (action) { + var me = this, + cases = Ext.isArray(action) ? action : [action], + n = me.switches.length - 1, + match, i; + + if (me.switches[n]) { + me.body.push('break;\n'); + } else { + me.switches[n]++; + } + + for (i = 0, n = cases.length; i < n; ++i) { + match = me.intRe.exec(cases[i]); + cases[i] = match ? match[1] : ("'" + cases[i].replace(me.aposRe,"\\'") + "'"); + } + + me.body.push('case ', cases.join(': case '), ':\n'); + }, + + doDefault: function () { + var me = this, + n = me.switches.length - 1; + + if (me.switches[n]) { + me.body.push('break;\n'); + } else { + me.switches[n]++; + } + + me.body.push('default:\n'); + }, + + doEnd: function (type, actions) { + var me = this, + L = me.level-1; + + if (type == 'for' || type == 'foreach') { + /* + To exit a for or foreach loop we must restore the outer loop's context. The + code looks like this (which goes with that produced by doFor or doForEach): + + for (...) { // the part generated by doFor or doForEach + ... // the body of the for loop + + // ... any tpl for exec statement goes here... + } + parent = p1; + values = r2; + xcount = n1; + xindex = i1 + */ + if (actions.exec) { + me.doExec(actions.exec); + } + + me.body.push('}\n'); + me.body.push('parent=p',L,';values=r',L+1,';xcount=n'+L+';xindex=i',L,'+1;xkey=k',L,';\n'); + } else if (type == 'if' || type == 'switch') { + me.body.push('}\n'); + } + }, + + doFor: function (action, actions) { + var me = this, + s, + L = me.level, + up = L-1, + parentAssignment; + + // If it's just a propName, use it directly in the switch + if (action === '.') { + s = 'values'; + } else if (me.propNameRe.test(action)) { + s = me.parseTag(action); + } + // Otherwise, it must be an expression, and needs to be returned from an fn which uses with(values) + else { + s = me.addFn(action) + me.callFn; + } + + /* + We are trying to produce a block of code that looks like below. We use the nesting + level to uniquely name the control variables. + + // Omit "var " if we have already been through level 2 + var i2 = 0, + n2 = 0, + c2 = values['propName'], + // c2 is the context object for the for loop + a2 = Array.isArray(c2); + r2 = values, + // r2 is the values object + p2, // p2 is the parent context (of the outer for loop) + k2; // object key - not used by for loop but doEnd needs this to be declared + + // If iterating over the current data, the parent is always set to c2 + p2 = parent = c2; + // If iterating over a property in an object, set the parent to the object + p2 = parent = a1 ? c1[i1] : c1 // set parent + if (c2) { + if (a2) { + n2 = c2.length; + } else if (c2.isMixedCollection) { + c2 = c2.items; + n2 = c2.length; + } else if (c2.isStore) { + c2 = c2.data.items; + n2 = c2.length; + } else { + c2 = [ c2 ]; + n2 = 1; + } + } + // i2 is the loop index and n2 is the number (xcount) of this for loop + for (xcount = n2; i2 < n2; ++i2) { + values = c2[i2] // adjust special vars to inner scope + xindex = i2 + 1 // xindex is 1-based + + The body of the loop is whatever comes between the tpl and /tpl statements (which + is handled by doEnd). + */ + + // Declare the vars for a particular level only if we have not already declared them. + if (me.maxLevel < L) { + me.maxLevel = L; + me.body.push('var '); + } + + if (action == '.') { + parentAssignment = 'c' + L; + } else { + parentAssignment = 'a' + up + '?c' + up + '[i' + up + ']:c' + up; + } + + me.body.push('i',L,'=0,n', L, '=0,c',L,'=',s,',a',L,'=', me.createArrayTest(L),',r',L,'=values,p',L,',k',L,';\n', + 'p',L,'=parent=',parentAssignment,'\n', + 'if (c',L,'){if(a',L,'){n', L,'=c', L, '.length;}else if (c', L, '.isMixedCollection){c',L,'=c',L,'.items;n',L,'=c',L,'.length;}else if(c',L,'.isStore){c',L,'=c',L,'.data.items;n',L,'=c',L,'.length;}else{c',L,'=[c',L,'];n',L,'=1;}}\n', + 'for (xcount=n',L,';i',L,'1){ out.push("',actions.between,'"); } \n'); + } + }, + + doForEach: function (action, actions) { + var me = this, + s, + L = me.level, + up = L-1, + parentAssignment; + + // If it's just a propName, use it directly in the switch + if (action === '.') { + s = 'values'; + } else if (me.propNameRe.test(action)) { + s = me.parseTag(action); + } + // Otherwise, it must be an expression, and needs to be returned from an fn which uses with(values) + else { + s = me.addFn(action) + me.callFn; + } + + /* + We are trying to produce a block of code that looks like below. We use the nesting + level to uniquely name the control variables. + + // Omit "var " if we have already been through level 2 + var i2 = -1, + n2 = 0, + c2 = values['propName'], // c2 is the context object for the for loop + a2 = Array.isArray(c2); + r2 = values, // r2 is the values object + p2, // p2 is the parent context (of the outer for loop) + k2; // k2 is the object key while looping + + // If iterating over the current data, the parent is always set to c2 + p2 = parent = c2; + // If iterating over a property in an object, set the parent to the object + p2 = parent = a1 ? c1[i1] : c1 // set parent + + for(k2 in c2){ + xindex = ++i + 1; // xindex is 1-based + xkey = k2; + values = c2[k2]; // values is the property value + + + The body of the loop is whatever comes between the tpl and /tpl statements (which + is handled by doEnd). + */ + + // Declare the vars for a particular level only if we have not already declared them. + if (me.maxLevel < L) { + me.maxLevel = L; + me.body.push('var '); + } + + if (action == '.') { + parentAssignment = 'c' + L; + } else { + parentAssignment = 'a' + up + '?c' + up + '[i' + up + ']:c' + up; + } + + me.body.push('i',L,'=-1,n',L,'=0,c',L,'=',s,',a',L,'=',me.createArrayTest(L),',r',L,'=values,p',L,',k',L,';\n', + 'p',L,'=parent=',parentAssignment,'\n', + 'for(k',L,' in c',L,'){\n', + 'xindex=++i',L,'+1;\n', + 'xkey=k',L,';\n', + 'values=c',L,'[k',L,'];'); + if (actions.propName) { + me.body.push('.', actions.propName); + } + + if (actions.between) { + me.body.push('if(xindex>1){ out.push("',actions.between,'"); } \n'); + } + }, + + createArrayTest: ('isArray' in Array) ? function(L) { + return 'Array.isArray(c' + L + ')'; + } : function(L) { + return 'ts.call(c' + L + ')==="[object Array]"'; + }, + + doExec: function (action, actions) { + var me = this, + name = 'f' + me.definitions.length; + + me.definitions.push('function ' + name + '(' + me.fnArgs + ') {', + ' try { with(values) {', + ' ' + action, + ' }} catch(e) {', + // + 'Ext.log("XTemplate Error: " + e.message);', + // + '}', + '}'); + + me.body.push(name + me.callFn + '\n'); + }, + + //----------------------------------- + // Internal + + addFn: function (body) { + var me = this, + name = 'f' + me.definitions.length; + + if (body === '.') { + me.definitions.push('function ' + name + '(' + me.fnArgs + ') {', + ' return values', + '}'); + } else if (body === '..') { + me.definitions.push('function ' + name + '(' + me.fnArgs + ') {', + ' return parent', + '}'); + } else { + me.definitions.push('function ' + name + '(' + me.fnArgs + ') {', + ' try { with(values) {', + ' return(' + body + ')', + ' }} catch(e) {', + // + 'Ext.log("XTemplate Error: " + e.message);', + // + '}', + '}'); + } + + return name; + }, + + parseTag: function (tag) { + var me = this, + m = me.tagRe.exec(tag), + name, format, args, math, v; + + if (!m) { + return null; + } + + name = m[1]; + format = m[2]; + args = m[3]; + math = m[4]; + + // name = "." - Just use the values object. + if (name == '.') { + // filter to not include arrays/objects/nulls + if (!me.validTypes) { + me.definitions.push('var validTypes={string:1,number:1,boolean:1};'); + me.validTypes = true; + } + v = 'validTypes[typeof values] || ts.call(values) === "[object Date]" ? values : ""'; + } + // name = "#" - Use the xindex + else if (name == '#') { + v = 'xindex'; + } + // name = "$" - Use the xkey + else if (name == '$') { + v = 'xkey'; + } + else if (name.substr(0, 7) == "parent.") { + v = name; + } + // compound Javascript property name (e.g., "foo.bar") + else if (isNaN(name) && name.indexOf('-') == -1 && name.indexOf('.') != -1) { + v = "values." + name; + } + // number or a '-' in it or a single word (maybe a keyword): use array notation + // (http://jsperf.com/string-property-access/4) + else { + v = "values['" + name + "']"; + } + + if (math) { + v = '(' + v + math + ')'; + } + + if (format && me.useFormat) { + args = args ? ',' + args : ""; + if (format.substr(0, 5) != "this.") { + format = "fm." + format + '('; + } else { + format += '('; + } + } else { + return v; + } + + return format + v + args + ')'; + }, + + // @private + evalTpl: function ($) { + + // We have to use eval to realize the code block and capture the inner func we also + // don't want a deep scope chain. We only do this in Firefox and it is also unhappy + // with eval containing a return statement, so instead we assign to "$" and return + // that. Because we use "eval", we are automatically sandboxed properly. + eval($); + return $; + }, + + newLineRe: /\r\n|\r|\n/g, + aposRe: /[']/g, + intRe: /^\s*(\d+)\s*$/, + tagRe: /^([\w-\.\#\$]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?(\s?[\+\-\*\/]\s?[\d\.\+\-\*\/\(\)]+)?$/ + +}, function () { + var proto = this.prototype; + + proto.fnArgs = 'out,values,parent,xindex,xcount,xkey'; + proto.callFn = '.call(this,' + proto.fnArgs + ')'; +}); diff --git a/extjs-django/marvel/static/extjs/src/XTemplateParser.js b/extjs-django/marvel/static/extjs/src/XTemplateParser.js new file mode 100644 index 0000000..ca4102d --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/XTemplateParser.js @@ -0,0 +1,289 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +// @tag core +/** + * This class parses the XTemplate syntax and calls abstract methods to process the parts. + * @private + */ +Ext.define('Ext.XTemplateParser', { + constructor: function (config) { + Ext.apply(this, config); + }, + + /** + * @property {Number} level The 'for' or 'foreach' loop context level. This is adjusted + * up by one prior to calling {@link #doFor} or {@link #doForEach} and down by one after + * calling the corresponding {@link #doEnd} that closes the loop. This will be 1 on the + * first {@link #doFor} or {@link #doForEach} call. + */ + + /** + * This method is called to process a piece of raw text from the tpl. + * @param {String} text + * @method doText + */ + // doText: function (text) + + /** + * This method is called to process expressions (like `{[expr]}`). + * @param {String} expr The body of the expression (inside "{[" and "]}"). + * @method doExpr + */ + // doExpr: function (expr) + + /** + * This method is called to process simple tags (like `{tag}`). + * @method doTag + */ + // doTag: function (tag) + + /** + * This method is called to process ``. + * @method doElse + */ + // doElse: function () + + /** + * This method is called to process `{% text %}`. + * @param {String} text + * @method doEval + */ + // doEval: function (text) + + /** + * This method is called to process ``. If there are other attributes, + * these are passed in the actions object. + * @param {String} action + * @param {Object} actions Other actions keyed by the attribute name (such as 'exec'). + * @method doIf + */ + // doIf: function (action, actions) + + /** + * This method is called to process ``. If there are other attributes, + * these are passed in the actions object. + * @param {String} action + * @param {Object} actions Other actions keyed by the attribute name (such as 'exec'). + * @method doElseIf + */ + // doElseIf: function (action, actions) + + /** + * This method is called to process ``. If there are other attributes, + * these are passed in the actions object. + * @param {String} action + * @param {Object} actions Other actions keyed by the attribute name (such as 'exec'). + * @method doSwitch + */ + // doSwitch: function (action, actions) + + /** + * This method is called to process ``. If there are other attributes, + * these are passed in the actions object. + * @param {String} action + * @param {Object} actions Other actions keyed by the attribute name (such as 'exec'). + * @method doCase + */ + // doCase: function (action, actions) + + /** + * This method is called to process ``. + * @method doDefault + */ + // doDefault: function () + + /** + * This method is called to process ``. It is given the action type that started + * the tpl and the set of additional actions. + * @param {String} type The type of action that is being ended. + * @param {Object} actions The other actions keyed by the attribute name (such as 'exec'). + * @method doEnd + */ + // doEnd: function (type, actions) + + /** + * This method is called to process ``. If there are other attributes, + * these are passed in the actions object. + * @param {String} action + * @param {Object} actions Other actions keyed by the attribute name (such as 'exec'). + * @method doFor + */ + // doFor: function (action, actions) + + /** + * This method is called to process ``. If there are other + * attributes, these are passed in the actions object. + * @param {String} action + * @param {Object} actions Other actions keyed by the attribute name (such as 'exec'). + * @method doForEach + */ + // doForEach: function (action, actions) + + /** + * This method is called to process ``. If there are other attributes, + * these are passed in the actions object. + * @param {String} action + * @param {Object} actions Other actions keyed by the attribute name. + * @method doExec + */ + // doExec: function (action, actions) + + /** + * This method is called to process an empty ``. This is unlikely to need to be + * implemented, so a default (do nothing) version is provided. + * @method + */ + doTpl: Ext.emptyFn, + + parse: function (str) { + var me = this, + len = str.length, + aliases = { elseif: 'elif' }, + topRe = me.topRe, + actionsRe = me.actionsRe, + index, stack, s, m, t, prev, frame, subMatch, begin, end, actions, + prop; + + me.level = 0; + me.stack = stack = []; + + for (index = 0; index < len; index = end) { + topRe.lastIndex = index; + m = topRe.exec(str); + + if (!m) { + me.doText(str.substring(index, len)); + break; + } + + begin = m.index; + end = topRe.lastIndex; + + if (index < begin) { + me.doText(str.substring(index, begin)); + } + + if (m[1]) { + end = str.indexOf('%}', begin+2); + me.doEval(str.substring(begin+2, end)); + end += 2; + } else if (m[2]) { + end = str.indexOf(']}', begin+2); + me.doExpr(str.substring(begin+2, end)); + end += 2; + } else if (m[3]) { // if ('{' token) + me.doTag(m[3]); + } else if (m[4]) { // content of a tag + actions = null; + while ((subMatch = actionsRe.exec(m[4])) !== null) { + s = subMatch[2] || subMatch[3]; + if (s) { + s = Ext.String.htmlDecode(s); // decode attr value + t = subMatch[1]; + t = aliases[t] || t; + actions = actions || {}; + prev = actions[t]; + + if (typeof prev == 'string') { + actions[t] = [prev, s]; + } else if (prev) { + actions[t].push(s); + } else { + actions[t] = s; + } + } + } + + if (!actions) { + if (me.elseRe.test(m[4])) { + me.doElse(); + } else if (me.defaultRe.test(m[4])) { + me.doDefault(); + } else { + me.doTpl(); + stack.push({ type: 'tpl' }); + } + } + else if (actions['if']) { + me.doIf(actions['if'], actions); + stack.push({ type: 'if' }); + } + else if (actions['switch']) { + me.doSwitch(actions['switch'], actions); + stack.push({ type: 'switch' }); + } + else if (actions['case']) { + me.doCase(actions['case'], actions); + } + else if (actions['elif']) { + me.doElseIf(actions['elif'], actions); + } + else if (actions['for']) { + ++me.level; + + // Extract property name to use from indexed item + if (prop = me.propRe.exec(m[4])) { + actions.propName = prop[1] || prop[2]; + } + me.doFor(actions['for'], actions); + stack.push({ type: 'for', actions: actions }); + } + else if (actions['foreach']) { + ++me.level; + + // Extract property name to use from indexed item + if (prop = me.propRe.exec(m[4])) { + actions.propName = prop[1] || prop[2]; + } + me.doForEach(actions['foreach'], actions); + stack.push({ type: 'foreach', actions: actions }); + } + else if (actions.exec) { + me.doExec(actions.exec, actions); + stack.push({ type: 'exec', actions: actions }); + } + /* + else { + // todo - error + } + */ + } else if (m[0].length === 5) { + // if the length of m[0] is 5, assume that we're dealing with an opening tpl tag with no attributes (e.g. ...) + // in this case no action is needed other than pushing it on to the stack + stack.push({ type: 'tpl' }); + } else { + frame = stack.pop(); + me.doEnd(frame.type, frame.actions); + if (frame.type == 'for' || frame.type == 'foreach') { + --me.level; + } + } + } + }, + + // Internal regexes + + topRe: /(?:(\{\%)|(\{\[)|\{([^{}]+)\})|(?:]*)\>)|(?:<\/tpl>)/g, + actionsRe: /\s*(elif|elseif|if|for|foreach|exec|switch|case|eval|between)\s*\=\s*(?:(?:"([^"]*)")|(?:'([^']*)'))\s*/g, + propRe: /prop=(?:(?:"([^"]*)")|(?:'([^']*)'))/, + defaultRe: /^\s*default\s*$/, + elseRe: /^\s*else\s*$/ +}); diff --git a/extjs-django/marvel/static/extjs/src/ZIndexManager.js b/extjs-django/marvel/static/extjs/src/ZIndexManager.js new file mode 100644 index 0000000..a433b32 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/ZIndexManager.js @@ -0,0 +1,613 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * A class that manages a group of {@link Ext.Component#floating} Components and provides z-order management, + * and Component activation behavior, including masking below the active (topmost) Component. + * + * {@link Ext.Component#floating Floating} Components which are rendered directly into the document (such as + * {@link Ext.window.Window Window}s) which are {@link Ext.Component#method-show show}n are managed by a + * {@link Ext.WindowManager global instance}. + * + * {@link Ext.Component#floating Floating} Components which are descendants of {@link Ext.Component#floating floating} + * *Containers* (for example a {@link Ext.view.BoundList BoundList} within an {@link Ext.window.Window Window}, + * or a {@link Ext.menu.Menu Menu}), are managed by a ZIndexManager owned by that floating Container. Therefore + * ComboBox dropdowns within Windows will have managed z-indices guaranteed to be correct, relative to the Window. + */ +Ext.define('Ext.ZIndexManager', { + alternateClassName: 'Ext.WindowGroup', + + statics: { + zBase : 9000 + }, + + constructor: function(container) { + var me = this; + + me.list = {}; + me.zIndexStack = []; + me.front = null; + + if (container) { + + // This is the ZIndexManager for an Ext.container.Container, base its zseed on the zIndex of the Container's element + if (container.isContainer) { + container.on('resize', me._onContainerResize, me); + me.zseed = Ext.Number.from(me.rendered ? container.getEl().getStyle('zIndex') : undefined, me.getNextZSeed()); + // The containing element we will be dealing with (eg masking) is the content target + me.targetEl = container.getTargetEl(); + me.container = container; + } + // This is the ZIndexManager for a DOM element + else { + Ext.EventManager.onWindowResize(me._onContainerResize, me); + me.zseed = me.getNextZSeed(); + me.targetEl = Ext.get(container); + } + } + // No container passed means we are the global WindowManager. Our target is the doc body. + // DOM must be ready to collect that ref. + else { + Ext.EventManager.onWindowResize(me._onContainerResize, me); + me.zseed = me.getNextZSeed(); + Ext.onDocumentReady(function() { + me.targetEl = Ext.getBody(); + }); + } + }, + + getNextZSeed: function() { + return (Ext.ZIndexManager.zBase += 10000); + }, + + setBase: function(baseZIndex) { + this.zseed = baseZIndex; + var result = this.assignZIndices(); + this._activateLast(); + return result; + }, + + // @private + assignZIndices: function() { + var a = this.zIndexStack, + len = a.length, + i = 0, + zIndex = this.zseed, + comp, + topModal; + + for (; i < len; i++) { + comp = a[i]; + if (comp && !comp.hidden) { + + // Setting the zIndex of a Component returns the topmost zIndex consumed by + // that Component. + // If it's just a plain floating Component such as a BoundList, then the + // return value is the passed value plus 10, ready for the next item. + // If a floating *Container* has its zIndex set, it re-orders its managed + // floating children, starting from that new base, and returns a value 10000 above + // the highest zIndex which it allocates. + zIndex = comp.setZIndex(zIndex); + if (comp.modal) { + topModal = comp; + } + } + } + + // If we encountered a modal in our reassigment, ensure our modal mask is just below it. + if (topModal) { + this._showModalMask(topModal) + } + return zIndex; + }, + + // @private + _setActiveChild: function(comp, oldFront) { + var front = this.front, + oldPreventFocus = comp.preventFocusOnActivate; + + if (comp !== front) { + + if (front && !front.destroying) { + front.setActive(false, comp); + } + this.front = comp; + if (comp && comp != oldFront) { + + // If the previously active comp did not take focus, then do not disturb focus state by focusing the new front + comp.preventFocusOnActivate = comp.preventFocusOnActivate || oldFront && (oldFront.preventFocusOnActivate || !oldFront.focusOnToFront); + + comp.setActive(true); + + // If the modal mask was utilized by the outgoing front component, reposition it. + if (comp.modal) { + this._showModalMask(comp); + } + + // Restore the new front's focusing flag + comp.preventFocusOnActivate = oldPreventFocus; + } + } + }, + + onComponentHide: function(comp){ + this._activateLast(); + }, + + // @private + _activateLast: function() { + var me = this, + stack = me.zIndexStack, + i = stack.length - 1, + comp; + + // Go down through the z-index stack. + // Activate the next visible one down. + // If that was modal, then we're done + for (; i >= 0 && stack[i].hidden; --i); + + // The loop found a visible floater to activate + if ((comp = stack[i])) { + me._setActiveChild(comp, me.front); + if (comp.modal) { + return; + } + } + // No other floater to activate, just deactivate the current one + else { + if (me.front && !me.front.destroying) { + me.front.setActive(false); + } + me.front = null; + } + + // If the new top one was not modal, keep going down to find the next visible + // modal one to shift the modal mask down under + for (; i >= 0; --i) { + comp = stack[i]; + // If we find a visible modal further down the zIndex stack, move the mask to just under it. + if (comp.isVisible() && comp.modal) { + me._showModalMask(comp); + return; + } + } + + // No visible modal Component was found in the run down the stack. + // So hide the modal mask + me._hideModalMask(); + }, + + _showModalMask: function(comp) { + var me = this, + zIndex = comp.el.getStyle('zIndex') - 4, + maskTarget = comp.floatParent ? comp.floatParent.getTargetEl() : comp.container, + mask = me.mask, + shim = me.maskShim, + viewSize; + + if (!mask) { + if (Ext.isIE6) { + shim = me.maskShim = Ext.getBody().createChild({ + tag: 'iframe', + cls : Ext.baseCSSPrefix + 'shim ' + Ext.baseCSSPrefix + 'mask-shim' + }); + shim.setVisibilityMode(Ext.Element.DISPLAY); + } + + // Create the mask at zero size so that it does not affect upcoming target measurements. + mask = me.mask = Ext.getBody().createChild({ + cls: Ext.baseCSSPrefix + 'mask', + style: 'height:0;width:0' + }); + mask.setVisibilityMode(Ext.Element.DISPLAY); + mask.on('click', me._onMaskClick, me); + } + + mask.maskTarget = maskTarget; + viewSize = me.getMaskBox(); + + if (shim) { + shim.setStyle('zIndex', zIndex); + shim.show(); + shim.setBox(viewSize); + } + mask.setStyle('zIndex', zIndex); + + // setting mask box before showing it in an IE7 strict iframe within a quirks page + // can cause body scrolling [EXTJSIV-6219] + mask.show(); + mask.setBox(viewSize); + }, + + _hideModalMask: function() { + var mask = this.mask, + maskShim = this.maskShim; + + if (mask && mask.isVisible()) { + mask.maskTarget = undefined; + mask.hide(); + if (maskShim) { + maskShim.hide(); + } + } + }, + + _onMaskClick: function() { + if (this.front) { + this.front.focus(); + } + }, + + getMaskBox: function(){ + var maskTarget = this.mask.maskTarget; + if (maskTarget.dom === document.body) { + return { + height: Math.max(document.body.scrollHeight, Ext.dom.Element.getDocumentHeight()), + width: Math.max(document.body.scrollWidth, document.documentElement.clientWidth), + x: 0, + y: 0 + }; + } else { + return maskTarget.getBox(); + } + }, + + _onContainerResize: function() { + var me = this, + mask = me.mask, + maskShim = me.maskShim, + viewSize; + + if (mask && mask.isVisible()) { + + // At the new container size, the mask might be *causing* the scrollbar, so to find the valid + // client size to mask, we must temporarily unmask the parent node. + mask.hide(); + if (maskShim) { + maskShim.hide(); + } + + viewSize = me.getMaskBox(); + if (maskShim) { + maskShim.setSize(viewSize); + maskShim.show(); + } + mask.setSize(viewSize); + mask.show(); + } + }, + + /** + * Registers a floating {@link Ext.Component} with this ZIndexManager. This should not + * need to be called under normal circumstances. Floating Components (such as Windows, + * BoundLists and Menus) are automatically registered with a + * {@link Ext.Component#zIndexManager zIndexManager} at render time. + * + * Where this may be useful is moving Windows between two ZIndexManagers. For example, + * to bring the Ext.MessageBox dialog under the same manager as the Desktop's + * ZIndexManager in the desktop sample app: + * + * MyDesktop.getDesktop().getManager().register(Ext.MessageBox); + * + * @param {Ext.Component} comp The Component to register. + */ + register : function(comp) { + var me = this, + compAfterHide = comp.afterHide; + + if (comp.zIndexManager) { + comp.zIndexManager.unregister(comp); + } + comp.zIndexManager = me; + + me.list[comp.id] = comp; + me.zIndexStack.push(comp); + + // Hook into Component's afterHide processing + comp.afterHide = function() { + compAfterHide.apply(comp, arguments); + me.onComponentHide(comp); + }; + }, + + /** + * Unregisters a {@link Ext.Component} from this ZIndexManager. This should not + * need to be called. Components are automatically unregistered upon destruction. + * See {@link #register}. + * @param {Ext.Component} comp The Component to unregister. + */ + unregister : function(comp) { + var me = this, + list = me.list; + + delete comp.zIndexManager; + if (list && list[comp.id]) { + delete list[comp.id]; + + // Relinquish control of Component's afterHide processing + delete comp.afterHide; + Ext.Array.remove(me.zIndexStack, comp); + + // Destruction requires that the topmost visible floater be activated. Same as hiding. + me._activateLast(); + } + }, + + /** + * Gets a registered Component by id. + * @param {String/Object} id The id of the Component or a {@link Ext.Component} instance + * @return {Ext.Component} + */ + get : function(id) { + return id.isComponent ? id : this.list[id]; + }, + + /** + * Brings the specified Component to the front of any other active Components in this ZIndexManager. + * @param {String/Object} comp The id of the Component or a {@link Ext.Component} instance + * @return {Boolean} True if the dialog was brought to the front, else false + * if it was already in front + */ + bringToFront : function(comp, preventFocus) { + var me = this, + result = false, + zIndexStack = me.zIndexStack; + + comp = me.get(comp); + if (comp !== me.front) { + Ext.Array.remove(zIndexStack, comp); + if (comp.preventBringToFront) { + // this takes care of cases where a load mask should be displayed under a floated component + zIndexStack.unshift(comp); + } else { + // the default behavior is to push onto the stack + zIndexStack.push(comp); + } + + me.assignZIndices(); + + // Activate new topmost + if (!preventFocus) { + me._activateLast(); + } + result = true; + me.front = comp; + + // If new topmost is modal, ensure the mask is there + if (comp.modal) { + me._showModalMask(comp); + } + } + return result; + }, + + /** + * Sends the specified Component to the back of other active Components in this ZIndexManager. + * @param {String/Object} comp The id of the Component or a {@link Ext.Component} instance + * @return {Ext.Component} The Component + */ + sendToBack : function(comp) { + var me = this; + + comp = me.get(comp); + Ext.Array.remove(me.zIndexStack, comp); + me.zIndexStack.unshift(comp); + me.assignZIndices(); + this._activateLast(); + return comp; + }, + + /** + * Hides all Components managed by this ZIndexManager. + */ + hideAll : function() { + var list = this.list, + item, + id; + + for (id in list) { + if (list.hasOwnProperty(id)) { + item = list[id]; + if (item.isComponent && item.isVisible()) { + item.hide(); + } + } + } + }, + + /** + * @private + * Temporarily hides all currently visible managed Components. This is for when + * dragging a Window which may manage a set of floating descendants in its ZIndexManager; + * they should all be hidden just for the duration of the drag. + */ + hide: function() { + var i = 0, + stack = this.zIndexStack, + len = stack.length, + comp; + + this.tempHidden = []; + for (; i < len; i++) { + comp = stack[i]; + if (comp.isVisible()) { + this.tempHidden.push(comp); + comp.el.hide(); + comp.hidden = true; + } + } + }, + + /** + * @private + * Restores temporarily hidden managed Components to visibility. + */ + show: function() { + var i = 0, + tempHidden = this.tempHidden, + len = tempHidden ? tempHidden.length : 0, + comp; + + for (; i < len; i++) { + comp = tempHidden[i]; + comp.el.show(); + comp.hidden = false; + comp.setPosition(comp.x, comp.y); + } + delete this.tempHidden; + }, + + /** + * Gets the currently-active Component in this ZIndexManager. + * @return {Ext.Component} The active Component + */ + getActive : function() { + return this.front; + }, + + /** + * Returns zero or more Components in this ZIndexManager using the custom search function passed to this method. + * The function should accept a single {@link Ext.Component} reference as its only argument and should + * return true if the Component matches the search criteria, otherwise it should return false. + * @param {Function} fn The search function + * @param {Object} [scope] The scope (this reference) in which the function is executed. + * Defaults to the Component being tested. That gets passed to the function if not specified. + * @return {Array} An array of zero or more matching windows + */ + getBy : function(fn, scope) { + var r = [], + i = 0, + stack = this.zIndexStack, + len = stack.length, + comp; + + for (; i < len; i++) { + comp = stack[i]; + if (fn.call(scope||comp, comp) !== false) { + r.push(comp); + } + } + return r; + }, + + /** + * Executes the specified function once for every Component in this ZIndexManager, passing each + * Component as the only parameter. Returning false from the function will stop the iteration. + * @param {Function} fn The function to execute for each item + * @param {Object} [scope] The scope (this reference) in which the function + * is executed. Defaults to the current Component in the iteration. + */ + each : function(fn, scope) { + var list = this.list, + id, + comp; + + for (id in list) { + if (list.hasOwnProperty(id)) { + comp = list[id]; + if (comp.isComponent && fn.call(scope || comp, comp) === false) { + return; + } + } + } + }, + + /** + * Executes the specified function once for every Component in this ZIndexManager, passing each + * Component as the only parameter. Returning false from the function will stop the iteration. + * The components are passed to the function starting at the bottom and proceeding to the top. + * @param {Function} fn The function to execute for each item + * @param {Object} scope (optional) The scope (this reference) in which the function + * is executed. Defaults to the current Component in the iteration. + */ + eachBottomUp: function (fn, scope) { + var stack = this.zIndexStack, + i = 0, + len = stack.length, + comp; + + for (; i < len; i++) { + comp = stack[i]; + if (comp.isComponent && fn.call(scope || comp, comp) === false) { + return; + } + } + }, + + /** + * Executes the specified function once for every Component in this ZIndexManager, passing each + * Component as the only parameter. Returning false from the function will stop the iteration. + * The components are passed to the function starting at the top and proceeding to the bottom. + * @param {Function} fn The function to execute for each item + * @param {Object} [scope] The scope (this reference) in which the function + * is executed. Defaults to the current Component in the iteration. + */ + eachTopDown: function (fn, scope) { + var stack = this.zIndexStack, + i = stack.length, + comp; + + for (; i-- > 0; ) { + comp = stack[i]; + if (comp.isComponent && fn.call(scope || comp, comp) === false) { + return; + } + } + }, + + destroy: function() { + var me = this, + list = me.list, + comp, + id; + + for (id in list) { + if (list.hasOwnProperty(id)) { + comp = list[id]; + + if (comp.isComponent) { + comp.destroy(); + } + } + } + + delete me.zIndexStack; + delete me.list; + delete me.container; + delete me.targetEl; + } +}, function() { + /** + * @class Ext.WindowManager + * @extends Ext.ZIndexManager + * + * The default global floating Component group that is available automatically. + * + * This manages instances of floating Components which were rendered programatically without + * being added to a {@link Ext.container.Container Container}, and for floating Components + * which were added into non-floating Containers. + * + * *Floating* Containers create their own instance of ZIndexManager, and floating Components + * added at any depth below there are managed by that ZIndexManager. + * + * @singleton + */ + Ext.WindowManager = Ext.WindowMgr = new this(); +}); diff --git a/extjs-django/marvel/static/extjs/src/app/Application.js b/extjs-django/marvel/static/extjs/src/app/Application.js new file mode 100644 index 0000000..d696fb4 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/app/Application.js @@ -0,0 +1,431 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * Represents an Ext JS 4 application, which is typically a single page app using a {@link Ext.container.Viewport Viewport}. + * A typical Ext.app.Application might look like this: + * + * Ext.application({ + * name: 'MyApp', + * launch: function() { + * Ext.create('Ext.container.Viewport', { + * items: { + * html: 'My App' + * } + * }); + * } + * }); + * + * This does several things. First it creates a global variable called 'MyApp' - all of your Application's classes (such + * as its Models, Views and Controllers) will reside under this single namespace, which drastically lowers the chances + * of colliding global variables. The MyApp global will also have a getApplication method to get a reference to + * the current application: + * + * var app = MyApp.getApplication(); + * + * When the page is ready and all of your JavaScript has loaded, your Application's {@link #launch} function is called, + * at which time you can run the code that starts your app. Usually this consists of creating a Viewport, as we do in + * the example above. + * + * # Telling Application about the rest of the app + * + * Because an Ext.app.Application represents an entire app, we should tell it about the other parts of the app - namely + * the Models, Views and Controllers that are bundled with the application. Let's say we have a blog management app; we + * might have Models and Controllers for Posts and Comments, and Views for listing, adding and editing Posts and Comments. + * Here's how we'd tell our Application about all these things: + * + * Ext.application({ + * name: 'Blog', + * models: ['Post', 'Comment'], + * controllers: ['Posts', 'Comments'], + * + * launch: function() { + * ... + * } + * }); + * + * Note that we didn't actually list the Views directly in the Application itself. This is because Views are managed by + * Controllers, so it makes sense to keep those dependencies there. The Application will load each of the specified + * Controllers using the pathing conventions laid out in the [application architecture guide][mvc] - in this case + * expecting the controllers to reside in app/controller/Posts.js and app/controller/Comments.js. In turn, each + * Controller simply needs to list the Views it uses and they will be automatically loaded. Here's how our Posts + * controller like be defined: + * + * Ext.define('MyApp.controller.Posts', { + * extend: 'Ext.app.Controller', + * views: ['posts.List', 'posts.Edit'], + * + * //the rest of the Controller here + * }); + * + * Because we told our Application about our Models and Controllers, and our Controllers about their Views, Ext JS will + * automatically load all of our app files for us. This means we don't have to manually add script tags into our html + * files whenever we add a new class, but more importantly it enables us to create a minimized build of our entire + * application using Sencha Cmd. + * + * # Deriving from Ext.app.Application + * + * Typically, applications do not derive directly from Ext.app.Application. Rather, the + * configuration passed to `Ext.application` mimics what you might do in a derived class. + * In some cases, however, it can be desirable to share logic by using a derived class + * from `Ext.app.Application`. + * + * Derivation works as you would expect, but using the derived class should still be the + * job of the `Ext.application` method. + * + * Ext.define('MyApp.app.Application', { + * extend: 'Ext.app.Application', + * name: 'MyApp', + * ... + * }); + * + * Ext.application('MyApp.app.Application'); + * + * For more information about writing Ext JS 4 applications, please see the [application architecture guide][mvc]. + * + * [mvc]: #/guide/application_architecture + * + * @docauthor Ed Spencer + */ +Ext.define('Ext.app.Application', { + extend: 'Ext.app.Controller', + + requires: [ + 'Ext.tip.QuickTipManager' + ], + + /** + * @cfg {String} name + * The name of your application. This will also be the namespace for your views, controllers + * models and stores. Don't use spaces or special characters in the name. **Application name + * is mandatory**. + */ + + /** + * @cfg {String/String[]} controllers + * Names of controllers that the app uses. + */ + + /** + * @cfg {Object} scope + * The scope to execute the {@link #launch} function in. Defaults to the Application instance. + */ + scope: undefined, + + /** + * @cfg {Boolean} enableQuickTips + * True to automatically set up Ext.tip.QuickTip support. + */ + enableQuickTips: true, + + /** + * @cfg {String} appFolder + * The path to the directory which contains all application's classes. + * This path will be registered via {@link Ext.Loader#setPath} for the namespace specified + * in the {@link #name name} config. + */ + appFolder: 'app', + // NOTE - this config has to be processed by Ext.application + + /** + * @cfg {String} appProperty + * The name of a property to be assigned to the main namespace to gain a reference to + * this application. Can be set to an empty value to prevent the reference from + * being created + * + * Ext.application({ + * name: 'MyApp', + * appProperty: 'myProp', + * + * launch: function() { + * console.log(MyApp.myProp === this); + * } + * }); + */ + appProperty: 'app', + + /** + * @cfg {String/String[]} [namespaces] + * + * The list of namespace prefixes used in the application to resolve dependencies + * like Views and Stores: + * + * Ext.application({ + * name: 'MyApp', + * + * namespaces: ['Common.code'], + * + * controllers: [ 'Common.code.controller.Foo', 'Bar' ] + * }); + * + * Ext.define('Common.code.controller.Foo', { + * extend: 'Ext.app.Controller', + * + * models: ['Foo'], // Loads Common.code.model.Foo + * views: ['Bar'] // Loads Common.code.view.Bar + * }); + * + * Ext.define('MyApp.controller.Bar', { + * extend: 'Ext.app.Controller', + * + * models: ['Foo'], // Loads MyApp.model.Foo + * views: ['Bar'] // Loads MyApp.view.Bar + * }); + * + * You don't need to include main namespace (MyApp), it will be added to the list + * automatically. + */ + namespaces: [], + + /** + * @cfg {Boolean} [autoCreateViewport=false] + * True to automatically load and instantiate AppName.view.Viewport before firing the launch + * function. + */ + autoCreateViewport: false, + + /** + * @cfg {Object} paths + * Additional load paths to add to Ext.Loader. + * See {@link Ext.Loader#paths} config for more details. + */ + paths: null, + + onClassExtended: function(cls, data, hooks) { + var Controller = Ext.app.Controller, + proto = cls.prototype, + requires = [], + onBeforeClassCreated, paths, namespace, ns, appFolder; + + // Ordinary inheritance does not work here so we collect + // necessary data from current class data and its superclass + namespace = data.name || cls.superclass.name; + appFolder = data.appFolder || cls.superclass.appFolder; + + if (namespace) { + data.$namespace = namespace; + Ext.app.addNamespaces(namespace); + } + + if (data.namespaces) { + Ext.app.addNamespaces(data.namespaces); + } + + if (!data['paths processed']) { + if (namespace && appFolder) { + Ext.Loader.setPath(namespace, appFolder); + } + + paths = data.paths; + + if (paths) { + for (ns in paths) { + if (paths.hasOwnProperty(ns)) { + Ext.Loader.setPath(ns, paths[ns]); + } + } + } + } + else { + delete data['paths processed']; + } + + if (data.autoCreateViewport) { + // + if (!namespace) { + Ext.Error.raise("[Ext.app.Application] Can't resolve namespace for " + + data.$className + ", did you forget to specify 'name' property?"); + } + // + + Controller.processDependencies(proto, requires, namespace, 'view', ['Viewport']); + } + + // Any "requires" also have to be processed before we fire up the App instance. + if (requires.length) { + onBeforeClassCreated = hooks.onBeforeCreated; + + hooks.onBeforeCreated = function(cls, data) { + var args = Ext.Array.clone(arguments); + + Ext.require(requires, function () { + return onBeforeClassCreated.apply(this, args); + }); + }; + } + }, + + /** + * Creates new Application. + * @param {Object} [config] Config object. + */ + constructor: function(config) { + var me = this; + + // + if (Ext.isEmpty(me.name)) { + Ext.Error.raise("[Ext.app.Application] Name property is required"); + } + // + + me.callParent(arguments); + + me.doInit(me); + + me.initNamespace(); + me.initControllers(); + me.onBeforeLaunch(); + + me.finishInitControllers(); + }, + + initNamespace: function() { + var me = this, + appProperty = me.appProperty, + ns; + + ns = Ext.namespace(me.name); + + if (ns) { + ns.getApplication = function() { + return me; + }; + + if (appProperty) { + if (!ns[appProperty]) { + ns[appProperty] = me; + } + // + else if (ns[appProperty] !== me) { + Ext.log.warn('An existing reference is being overwritten for ' + name + '.' + appProperty + + '. See the appProperty config.' + ); + } + // + } + } + }, + + initControllers: function() { + var me = this, + controllers = Ext.Array.from(me.controllers); + + me.controllers = new Ext.util.MixedCollection(); + + for (var i = 0, ln = controllers.length; i < ln; i++) { + me.getController(controllers[i]); + } + }, + + finishInitControllers: function() { + var me = this, + controllers, i, l; + + controllers = me.controllers.getRange(); + + for (i = 0, l = controllers.length; i < l; i++) { + controllers[i].finishInit(me); + } + }, + + /** + * @method + * @template + * Called automatically when the page has completely loaded. This is an empty function that should be + * overridden by each application that needs to take action on page load. + * @param {String} profile The detected application profile + * @return {Boolean} By default, the Application will dispatch to the configured startup controller and + * action immediately after running the launch function. Return false to prevent this behavior. + */ + launch: Ext.emptyFn, + + /** + * @private + */ + onBeforeLaunch: function() { + var me = this, + controllers, c, cLen, controller; + + if (me.enableQuickTips) { + me.initQuickTips(); + } + + if (me.autoCreateViewport) { + me.initViewport(); + } + + me.launch.call(me.scope || me); + me.launched = true; + me.fireEvent('launch', me); + + controllers = me.controllers.items; + cLen = controllers.length; + + for (c = 0; c < cLen; c++) { + controller = controllers[c]; + controller.onLaunch(me); + } + }, + + getModuleClassName: function(name, kind) { + return Ext.app.Controller.getFullName(name, kind, this.name).absoluteName; + }, + + initQuickTips: function() { + Ext.tip.QuickTipManager.init(); + }, + + initViewport: function() { + var viewport = this.getView('Viewport'); + + if (viewport) { + viewport.create(); + } + }, + + getController: function(name) { + var me = this, + controllers = me.controllers, + className, controller; + + controller = controllers.get(name); + + if (!controller) { + className = me.getModuleClassName(name, 'controller'); + + controller = Ext.create(className, { + application: me, + id: name + }); + + controllers.add(controller); + + if (me._initialized) { + controller.doInit(me); + } + } + + return controller; + }, + + getApplication: function() { + return this; + } +}); diff --git a/extjs-django/marvel/static/extjs/src/app/Controller.js b/extjs-django/marvel/static/extjs/src/app/Controller.js new file mode 100644 index 0000000..db45c09 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/app/Controller.js @@ -0,0 +1,917 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * Controllers are the glue that binds an application together. All they really do is listen for events (usually from + * views) and take some action. Here's how we might create a Controller to manage Users: + * + * Ext.define('MyApp.controller.Users', { + * extend: 'Ext.app.Controller', + * + * init: function() { + * console.log('Initialized Users! This happens before ' + + * 'the Application launch() function is called'); + * } + * }); + * + * The init function is a special method that is called when your application boots. It is called before the + * {@link Ext.app.Application Application}'s launch function is executed so gives a hook point to run any code before + * your Viewport is created. + * + * The init function is a great place to set up how your controller interacts with the view, and is usually used in + * conjunction with another Controller function - {@link Ext.app.Controller#control control}. The control function + * makes it easy to listen to events on your view classes and take some action with a handler function. Let's update + * our Users controller to tell us when the panel is rendered: + * + * Ext.define('MyApp.controller.Users', { + * extend: 'Ext.app.Controller', + * + * init: function() { + * this.control({ + * 'viewport > panel': { + * render: this.onPanelRendered + * } + * }); + * }, + * + * onPanelRendered: function() { + * console.log('The panel was rendered'); + * } + * }); + * + * We've updated the init function to use {@link Ext.app.Controller#control control method} to set up listeners on views + * in our application. The control method uses the ComponentQuery engine to quickly and easily get references to components + * on the page. If you are not familiar with ComponentQuery yet, be sure to check out the + * {@link Ext.ComponentQuery documentation}. In brief though, it allows us to pass a CSS-like selector that will find + * every matching component on the page. + * + * In our init function above we supplied 'viewport > panel', which translates to "find me every Panel that is a direct + * child of a Viewport". We then supplied an object that maps event names (just 'render' in this case) to handler + * functions. The overall effect is that whenever any component that matches our selector fires a 'render' event, our + * onPanelRendered function is called. + * + * ## Event domains + * + * In Ext JS 4.2, we introduced the concept of event domains. In terms of MVC, an event domain + * is one or more base classes that fire events to which a Controller wants to listen. Besides + * Component event domain that encompass {@link Ext.Component}-descended Views, Controllers now + * can listen to events from data Stores, Ext.Direct Providers, other Controllers, and Ext.globalEvents. + * This feature provides a way to communicate between parts of the whole application without the need + * to bind controllers together tightly, and allows to develop and test application parts in isolation. + * + * See usage examples in {@link #listen} method documentation. + * + * ## Using refs + * + * One of the most useful parts of Controllers is the ref system. These use the {@link Ext.ComponentQuery} to + * make it really easy to get references to Views on your page. Let's look at an example of this now: + * + * Ext.define('MyApp.controller.Users', { + * extend: 'Ext.app.Controller', + * + * refs: [{ + * ref: 'list', + * selector: 'grid' + * }], + * + * init: function() { + * this.control({ + * 'button': { + * click: this.refreshGrid + * } + * }); + * }, + * + * refreshGrid: function() { + * this.getList().store.load(); + * } + * }); + * + * This example assumes the existence of a {@link Ext.grid.Panel Grid} on the page, which contains a single button to + * refresh the Grid when clicked. In our refs array, we set up a reference to the grid. There are two parts to this - + * the 'selector', which is a {@link Ext.ComponentQuery ComponentQuery} selector which finds any grid on the page and + * assigns it to the reference 'list'. + * + * By giving the reference a name, we get a number of things for free. The first is the getList function that we use in + * the refreshGrid method above. This is generated automatically by the Controller based on the name of our ref, which + * was capitalized and prepended with get to go from 'list' to 'getList'. + * + * The way this works is that the first time getList is called by your code, the ComponentQuery selector is run and the + * first component that matches the selector ('grid' in this case) will be returned. All future calls to getList will + * use a cached reference to that grid. Usually it is advised to use a specific ComponentQuery selector that will only + * match a single View in your application (in the case above our selector will match any grid on the page). + * + * Bringing it all together, our init function is called when the application boots, at which time we call this.control + * to listen to any click on a {@link Ext.button.Button button} and call our refreshGrid function (again, this will + * match any button on the page so we advise a more specific selector than just 'button', but have left it this way for + * simplicity). When the button is clicked we use out getList function to refresh the grid. + * + * You can create any number of refs and control any number of components this way, simply adding more functions to + * your Controller as you go. For an example of real-world usage of Controllers see the Feed Viewer example in the + * examples/app/feed-viewer folder in the SDK download. + * + * ## Generated getter methods + * + * Refs aren't the only thing that generate convenient getter methods. Controllers often have to deal with Models and + * Stores so the framework offers a couple of easy ways to get access to those too. Let's look at another example: + * + * Ext.define('MyApp.controller.Users', { + * extend: 'Ext.app.Controller', + * + * models: ['User'], + * stores: ['AllUsers', 'AdminUsers'], + * + * init: function() { + * var User, allUsers, ed; + * + * User = this.getUserModel(); + * allUsers = this.getAllUsersStore(); + * + * ed = new User({ name: 'Ed' }); + * allUsers.add(ed); + * } + * }); + * + * By specifying Models and Stores that the Controller cares about, it again dynamically loads them from the appropriate + * locations (app/model/User.js, app/store/AllUsers.js and app/store/AdminUsers.js in this case) and creates getter + * functions for them all. The example above will create a new User model instance and add it to the AllUsers Store. + * Of course, you could do anything in this function but in this case we just did something simple to demonstrate the + * functionality. + * + * ## Further Reading + * + * For more information about writing Ext JS 4 applications, please see the + * [application architecture guide](#/guide/application_architecture). Also see the {@link Ext.app.Application} + * documentation. + * + * @docauthor Ed Spencer + */ +Ext.define('Ext.app.Controller', { + requires: [ + 'Ext.app.EventBus', + 'Ext.ModelManager', + 'Ext.data.StoreManager', + 'Ext.ComponentManager', + 'Ext.app.domain.Global', + 'Ext.app.domain.Component', + 'Ext.app.domain.Store' + ], + + uses: [ + 'Ext.app.domain.Controller' + ], + + mixins: { + observable: 'Ext.util.Observable' + }, + + /** + * @cfg {String} id The id of this controller. You can use this id when dispatching. + */ + + statics: { + strings: { + model: { + getter: 'getModel', + upper: 'Model' + }, + + view: { + getter: 'getView', + upper: 'View' + }, + + controller: { + getter: 'getController', + upper: 'Controller' + }, + + store: { + getter: 'getStore', + upper: 'Store' + } + }, + + controllerRegex: /^(.*)\.controller\./, + + createGetter: function(baseGetter, name) { + return function () { + return this[baseGetter](name); + }; + }, + + getGetterName: function(name, kindUpper) { + var fn = 'get', + parts = name.split('.'), + numParts = parts.length, + index; + + // Handle namespaced class names. E.g. feed.Add becomes getFeedAddView etc. + for (index = 0; index < numParts; index++) { + fn += Ext.String.capitalize(parts[index]); + } + + fn += kindUpper; + + return fn; + }, + + /** + * This method is called like so: + * + * Ext.app.Controller.processDependencies(proto, requiresArray, 'MyApp', 'model', [ + * 'User', + * 'Item', + * 'Foo@Common.model', + * 'Bar.Baz@Common.model' + * ]); + * + * Required dependencies are added to requiresArray. + * + * @private + */ + processDependencies: function(cls, requires, namespace, kind, names) { + if (!names || !names.length) { + return; + } + + var me = this, + strings = me.strings[kind], + o, absoluteName, shortName, name, j, subLn, getterName, getter; + + if (!Ext.isArray(names)) { + names = [names]; + } + + for (j = 0, subLn = names.length; j < subLn; j++) { + name = names[j]; + o = me.getFullName(name, kind, namespace); + absoluteName = o.absoluteName; + shortName = o.shortName; + + requires.push(absoluteName); + getterName = me.getGetterName(shortName, strings.upper); + cls[getterName] = getter = me.createGetter(strings.getter, name); + + // Application class will init the controller getters + if (kind !== 'controller') { + // This marker allows the constructor to easily/cheaply identify the + // generated getter methods since they all need to be called to get + // things initialized. We use a property name that deliberately does + // not work with dot-access to reduce any chance of collision. + getter['Ext.app.getter'] = true; + } + } + }, + + getFullName: function(name, kind, namespace) { + var shortName = name, + sep, absoluteName; + + if ((sep = name.indexOf('@')) > 0) { + // The unambiguous syntax is Model@Name.space (or "space.Model@Name") + // which contains both the short name ("Model" or "space.Model") and + // the full name (Name.space.Model). + // + shortName = name.substring(0, sep); // "Model" + absoluteName = name.substring(sep + 1) + '.' + shortName; // ex: "Name.space.Model" + } + // Deciding if a class name must be qualified: + // + // 1 - if the name doesn't contain a dot, we must qualify it + // + // 2 - the name may be a qualified name of a known class, but: + // + // 2.1 - in runtime, the loader may not know the class - specially in + // production - so we must check the class manager + // + // 2.2 - in build time, the class manager may not know the class, but + // the loader does, so we check the second one (the loader check + // assures it's really a class, and not a namespace, so we can + // have 'Books.controller.Books', and requesting a controller + // called Books will not be underqualified) + // + else if (name.indexOf('.') > 0 && (Ext.ClassManager.isCreated(name) || + Ext.Loader.isAClassNameWithAKnownPrefix(name))) { + absoluteName = name; + } + else { + // + if (!namespace) { + Ext.log.warn("Cannot find namespace for " + kind + " " + name + ", " + + "assuming it is fully qualified class name"); + } + // + + if (namespace) { + absoluteName = namespace + '.' + kind + '.' + name; + shortName = name; + } + else { + absoluteName = name; + } + } + + return { + absoluteName: absoluteName, + shortName: shortName + }; + } + }, + + /** + * The {@link Ext.app.Application} for this controller. + * + * @property {Ext.app.Application} + * @readonly + */ + application: null, + + /** + * @cfg {String/String[]} models + * Array of models to require from AppName.model namespace. For example: + * + * Ext.define("MyApp.controller.Foo", { + * extend: "Ext.app.Controller", + * models: ['User', 'Vehicle'] + * }); + * + * This is equivalent of: + * + * Ext.define("MyApp.controller.Foo", { + * extend: "Ext.app.Controller", + * requires: ['MyApp.model.User', 'MyApp.model.Vehicle'], + * + * getUserModel: function() { + * return this.getModel("User"); + * }, + * + * getVehicleModel: function() { + * return this.getModel("Vehicle"); + * } + * }); + * + */ + + /** + * @cfg {String/String[]} views + * Array of views to require from AppName.view namespace and to generate getter methods for. + * For example: + * + * Ext.define("MyApp.controller.Foo", { + * extend: "Ext.app.Controller", + * views: ['List', 'Detail'] + * }); + * + * This is equivalent of: + * + * Ext.define("MyApp.controller.Foo", { + * extend: "Ext.app.Controller", + * requires: ['MyApp.view.List', 'MyApp.view.Detail'], + * + * getListView: function() { + * return this.getView("List"); + * }, + * + * getDetailView: function() { + * return this.getView("Detail"); + * } + * }); + */ + + /** + * @cfg {String/String[]} stores + * Array of stores to require from AppName.store namespace and to generate getter methods for. + * For example: + * + * Ext.define("MyApp.controller.Foo", { + * extend: "Ext.app.Controller", + * stores: ['Users', 'Vehicles'] + * }); + * + * This is equivalent to: + * + * Ext.define("MyApp.controller.Foo", { + * extend: "Ext.app.Controller", + * + * requires: [ + * 'MyApp.store.Users', + * 'MyApp.store.Vehicles' + * ] + * + * getUsersStore: function() { + * return this.getStore("Users"); + * }, + * + * getVehiclesStore: function() { + * return this.getStore("Vehicles"); + * } + * }); + */ + + /** + * @cfg {Object[]} refs + * Array of configs to build up references to views on page. For example: + * + * Ext.define("MyApp.controller.Foo", { + * extend: "Ext.app.Controller", + * + * refs: [{ + * ref: 'list', + * selector: 'grid' + * }], + * }); + * + * This will add method `getList` to the controller which will internally use + * Ext.ComponentQuery to reference the grid component on page. + * + * The following fields can be used in ref definition: + * + * - `ref` - name of the reference. + * - `selector` - Ext.ComponentQuery selector to access the component. + * - `autoCreate` - True to create the component automatically if not found on page. + * - `forceCreate` - Forces the creation of the component every time reference is accessed + * (when `get` is called). + * - `xtype` - Used to create component by its xtype with autoCreate or forceCreate. If + * you don't provide xtype, an Ext.Component instance will be created. + */ + + onClassExtended: function(cls, data, hooks) { + var onBeforeClassCreated = hooks.onBeforeCreated; + + hooks.onBeforeCreated = function(cls, data) { + var Controller = Ext.app.Controller, + ctrlRegex = Controller.controllerRegex, + requires = [], + className, namespace, requires, proto, match; + + proto = cls.prototype; + + /* + * Namespace resolution is tricky business: we should know what namespace + * this Controller descendant belongs to, or model/store/view dependency + * resolution will be either ambiguous or plainly not possible. To avoid + * guessing games we try to look for a forward hint ($namespace) that + * Application class sets when its onClassExtended gets processed; if that + * fails we try to deduce namespace from class name. + * + * Note that for Ext.app.Application, Controller.onClassExtended gets executed + * *before* Application.onClassExtended so we have to delay namespace handling + * until after Application.onClassExtended kicks in, hence it is done in this hook. + */ + className = Ext.getClassName(cls); + namespace = data.$namespace || + Ext.app.getNamespace(className) || + ((match = ctrlRegex.exec(className)) && match[1]); + + if (namespace) { + proto.$namespace = namespace; + } + // + else { + Ext.log.warn("Missing namespace for " + className + ", please define it "+ + "in namespaces property of your Application class."); + } + // + + Controller.processDependencies(proto, requires, namespace, 'model', data.models); + Controller.processDependencies(proto, requires, namespace, 'view', data.views); + Controller.processDependencies(proto, requires, namespace, 'store', data.stores); + Controller.processDependencies(proto, requires, namespace, 'controller', data.controllers); + + Ext.require(requires, Ext.Function.pass(onBeforeClassCreated, arguments, this)); + }; + }, + + /** + * Creates new Controller. + * + * @param {Object} [config] Configuration object. + */ + constructor: function (config) { + var me = this; + + me.mixins.observable.constructor.call(me, config); + + if (me.refs) { + me.ref(me.refs); + } + + me.eventbus = Ext.app.EventBus; + + me.initAutoGetters(); + }, + + initAutoGetters: function() { + var proto = this.self.prototype, + prop, fn; + + for (prop in proto) { + fn = proto[prop]; + + // Look for the marker placed on the getters by processDependencies so that + // we can know what to call cheaply: + if (fn && fn['Ext.app.getter']) { + fn.call(this); + } + } + }, + + doInit: function(app) { + var me = this; + + if (!me._initialized) { + me.init(app); + me._initialized = true; + } + }, + + finishInit: function(app) { + var me = this, + controllers = me.controllers, + controller, i, l; + + if (me._initialized && controllers && controllers.length) { + for (i = 0, l = controllers.length; i < l; i++) { + controller = me.getController(controllers[i]); + controller.finishInit(app); + } + } + }, + + /** + * A template method that is called when your application boots. It is called before the + * {@link Ext.app.Application Application}'s launch function is executed so gives a hook point + * to run any code before your Viewport is created. + * + * @param {Ext.app.Application} application + * + * @template + */ + init: Ext.emptyFn, + + /** + * A template method like {@link #init}, but called after the viewport is created. + * This is called after the {@link Ext.app.Application#launch launch} method of Application + * is executed. + * + * @param {Ext.app.Application} application + * + * @template + */ + onLaunch: Ext.emptyFn, + + ref: function(refs) { + var me = this, + i = 0, + length = refs.length, + info, ref, fn; + + refs = Ext.Array.from(refs); + + me.references = me.references || []; + + for (; i < length; i++) { + info = refs[i]; + ref = info.ref; + fn = 'get' + Ext.String.capitalize(ref); + + if (!me[fn]) { + me[fn] = Ext.Function.pass(me.getRef, [ref, info], me); + } + me.references.push(ref.toLowerCase()); + } + }, + + /** + * Registers one or more {@link #refs references}. + * + * @param {Object/Object[]} refs + */ + addRef: function(refs) { + this.ref(refs); + }, + + getRef: function(ref, info, config) { + var me = this, + refCache = me.refCache || (me.refCache = {}), + cached = refCache[ref]; + + info = info || {}; + config = config || {}; + + Ext.apply(info, config); + + if (info.forceCreate) { + return Ext.ComponentManager.create(info, 'component'); + } + + if (!cached) { + if (info.selector) { + refCache[ref] = cached = Ext.ComponentQuery.query(info.selector)[0]; + } + + if (!cached && info.autoCreate) { + refCache[ref] = cached = Ext.ComponentManager.create(info, 'component'); + } + + if (cached) { + cached.on('beforedestroy', function() { + refCache[ref] = null; + }); + } + } + + return cached; + }, + + /** + * Returns `true` if a {@link #refs reference} is registered. + * + * @return {Boolean} + */ + hasRef: function(ref) { + var references = this.references; + return references && Ext.Array.indexOf(references, ref.toLowerCase()) !== -1; + }, + + /** + * Adds listeners to components selected via {@link Ext.ComponentQuery}. Accepts an + * object containing component paths mapped to a hash of listener functions. + * + * In the following example the `updateUser` function is mapped to to the `click` + * event on a button component, which is a child of the `useredit` component. + * + * Ext.define('AM.controller.Users', { + * init: function() { + * this.control({ + * 'useredit button[action=save]': { + * click: this.updateUser + * } + * }); + * }, + * + * updateUser: function(button) { + * console.log('clicked the Save button'); + * } + * }); + * + * Or alternatively one call `control` with two arguments: + * + * this.control('useredit button[action=save]', { + * click: this.updateUser + * }); + * + * See {@link Ext.ComponentQuery} for more information on component selectors. + * + * @param {String/Object} selectors If a String, the second argument is used as the + * listeners, otherwise an object of selectors -> listeners is assumed + * @param {Object} [listeners] Config for listeners. + */ + control: function(selectors, listeners, controller) { + var me = this, + ctrl = controller, + obj; + + if (Ext.isString(selectors)) { + obj = {}; + obj[selectors] = listeners; + } + else { + obj = selectors; + ctrl = listeners; + } + + me.eventbus.control(obj, ctrl || me); + }, + + /** + * Adds listeners to different event sources (also called "event domains"). The + * primary event domain is that of components, but there are also other event domains: + * {@link Ext.app.domain.Global Global} domain that intercepts events fired from + * {@link Ext#globalEvents} Observable instance, {@link Ext.app.domain.Controller Controller} + * domain can be used to listen to events fired by other Controllers, + * {@link Ext.app.domain.Store Store} domain gives access to Store events, and + * {@link Ext.app.domain.Direct Direct} domain can be used with Ext.Direct Providers + * to listen to their events. + * + * To listen to "bar" events fired by a controller with id="foo": + * + * Ext.define('AM.controller.Users', { + * init: function() { + * this.listen({ + * controller: { + * '#foo': { + * bar: this.onFooBar + * } + * } + * }); + * }, + * ... + * }); + * + * To listen to "bar" events fired by any controller, and "baz" events + * fired by Store with storeId="baz": + * + * Ext.define('AM.controller.Users', { + * init: function() { + * this.listen({ + * controller: { + * '*': { + * bar: this.onAnyControllerBar + * } + * }, + * store: { + * '#baz': { + * baz: this.onStoreBaz + * } + * } + * }); + * }, + * ... + * }); + * + * To listen to "idle" events fired by {@link Ext#globalEvents} when other event + * processing is complete and Ext JS is about to return control to the browser: + * + * Ext.define('AM.controller.Users', { + * init: function() { + * this.listen({ + * global: { // Global events are always fired + * idle: this.onIdle // from the same object, so there + * } // are no selectors + * }); + * } + * }); + * + * As this relates to components, the following example: + * + * Ext.define('AM.controller.Users', { + * init: function() { + * this.listen({ + * component: { + * 'useredit button[action=save]': { + * click: this.updateUser + * } + * } + * }); + * }, + * ... + * }); + * + * Is equivalent to: + * + * Ext.define('AM.controller.Users', { + * init: function() { + * this.control({ + * 'useredit button[action=save]': { + * click: this.updateUser + * } + * }); + * }, + * ... + * }); + * + * Of course, these can all be combined in a single call and used instead of + * `control`, like so: + * + * Ext.define('AM.controller.Users', { + * init: function() { + * this.listen({ + * global: { + * idle: this.onIdle + * }, + * controller: { + * '*': { + * foobar: this.onAnyFooBar + * }, + * '#foo': { + * bar: this.onFooBar + * } + * }, + * component: { + * 'useredit button[action=save]': { + * click: this.updateUser + * } + * }, + * store: { + * '#qux': { + * load: this.onQuxLoad + * } + * } + * }); + * }, + * ... + * }); + * + * @param {Object} to Config object containing domains, selectors and listeners. + */ + listen: function (to, controller) { + this.eventbus.listen(to, controller || this); + }, + + /** + * Returns instance of a {@link Ext.app.Controller Controller} with the given id. + * When controller doesn't exist yet, it's created. Note that this method depends + * on Application instance and will return undefined when Application is not + * accessible. The only exception is when this Controller instance's id is requested; + * in that case we always return the instance even if Application is no available. + * + * @param {String} id + * + * @return {Ext.app.Controller} controller instance or undefined. + */ + getController: function(id) { + var me = this, + app = me.application; + + if (id === me.id) { + return me; + } + + return app && app.getController(id); + }, + + /** + * Returns instance of a {@link Ext.data.Store Store} with the given name. + * When store doesn't exist yet, it's created. + * + * @param {String} name + * + * @return {Ext.data.Store} a store instance. + */ + getStore: function(name) { + var storeId, store; + + storeId = (name.indexOf('@') == -1) ? name : name.split('@')[0]; + store = Ext.StoreManager.get(storeId); + + if (!store) { + name = Ext.app.Controller.getFullName(name, 'store', this.$namespace); + + if (name) { + store = Ext.create(name.absoluteName, { + storeId: storeId + }); + } + } + + return store; + }, + + /** + * Returns a {@link Ext.data.Model Model} class with the given name. + * A shorthand for using {@link Ext.ModelManager#getModel}. + * + * @param {String} name + * + * @return {Ext.data.Model} a model class. + */ + getModel: function(model) { + var name = Ext.app.Controller.getFullName(model, 'model', this.$namespace); + + return name && Ext.ModelManager.getModel(name.absoluteName); + }, + + /** + * Returns a View class with the given name. To create an instance of the view, + * you can use it like it's used by Application to create the Viewport: + * + * this.getView('Viewport').create(); + * + * @param {String} name + * + * @return {Ext.Base} a view class. + */ + getView: function(view) { + var name = Ext.app.Controller.getFullName(view, 'view', this.$namespace); + + return name && Ext.ClassManager.get(name.absoluteName); + }, + + /** + * Returns the base {@link Ext.app.Application} for this controller. + * + * @return {Ext.app.Application} the application + */ + getApplication: function() { + return this.application; + } +}); diff --git a/extjs-django/marvel/static/extjs/src/app/EventBus.js b/extjs-django/marvel/static/extjs/src/app/EventBus.js new file mode 100644 index 0000000..04294f0 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/app/EventBus.js @@ -0,0 +1,86 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * This class manages event dispatching for Controllers. The details of connecting classes + * to this dispatching mechanism is delegated to {@link Ext.app.EventDomain} instances. + * + * @private + */ +Ext.define('Ext.app.EventBus', { + singleton: true, + + requires: [ + 'Ext.app.domain.Component' + ], + + constructor: function() { + var me = this, + domains = Ext.app.EventDomain.instances; + + me.callParent(); + + me.domains = domains; + me.bus = domains.component.bus; // compat + }, + + /** + * Adds a set of component event listeners for a controller. To work with event domains + * other than component, see {@link #listen}. + * + * @param {Object} selectors Config object containing selectors and listeners. + * @param {Ext.app.Controller} controller The listening controller instance. + */ + control: function(selectors, controller) { + return this.domains.component.listen(selectors, controller); + }, + + /** + * Adds a set of event domain listeners for a controller. For more information on event + * domains, see {@link Ext.app.EventDomain} and {@link Ext.app.Controller}. + * + * @param {Object} to Config object containing domains, selectors and listeners. + * @param {Ext.app.Controller} controller The listening controller instance. + */ + listen: function(to, controller) { + var domains = this.domains, + domain; + + for (domain in to) { + if (to.hasOwnProperty(domain)) { + domains[domain].listen(to[domain], controller); + } + } + }, + + /** + * Removes all of a controller's attached listeners. + * + * @param {String} controllerId The id of the controller. + */ + unlisten: function(controllerId) { + var domains = Ext.app.EventDomain.instances, + domain; + + for (domain in domains) { + domains[domain].unlisten(controllerId); + } + } +}); diff --git a/extjs-django/marvel/static/extjs/src/app/EventDomain.js b/extjs-django/marvel/static/extjs/src/app/EventDomain.js new file mode 100644 index 0000000..0a702b6 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/app/EventDomain.js @@ -0,0 +1,294 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * This class is a base class for an event domain. In the context of MVC, an "event domain" + * is one or more base classes that fire events to which a Controller wants to listen. A + * controller listens to events by describing the selectors for events of interest to it. + * + * Matching selectors to the firer of an event is one key aspect that defines an event + * domain. All event domain instances must provide a `match` method that tests selectors + * against the event firer. + * + * When an event domain instance is created (typically as a `singleton`), its `type` + * property is used to catalog the domain in the + * {@link Ext.app.EventDomain#instances Ext.app.EventDomain.instances} map. + * + * There are five event domains provided by default: + * + * - {@link Ext.app.domain.Component Component domain}. This is the primary event domain that + * has been available since Ext JS MVC was introduced. This domain is defined as any class that + * extends {@link Ext.Component}, where the selectors use + * {@link Ext.ComponentQuery#query Ext.ComponentQuery}. + * - {@link Ext.app.domain.Global Global domain}. This domain provides Controllers with access + * to events fired from {@link Ext#globalEvents} Observable instance. These events represent + * the state of the application as a whole, and are always anonymous. Because of this, Global + * domain does not provide selectors at all. + * - {@link Ext.app.domain.Controller Controller domain}. This domain includes all classes + * that extend {@link Ext.app.Controller}. Events fired by Controllers will be available + * within this domain; selectors are either Controller's {@link Ext.app.Controller#id id} or + * '*' wildcard for any Controller. + * - {@link Ext.app.domain.Store Store domain}. This domain is for classes extending + * {@link Ext.data.AbstractStore}. Selectors are either Store's + * {@link Ext.data.AbstractStore#storeId storeId} or '*' wildcard for any Store. + * - {@link Ext.app.domain.Direct Direct domain}. This domain includes all classes that extend + * {@link Ext.direct.Provider}. Selectors are either Provider's {@link Ext.direct.Provider#id id} + * or '*' wildcard for any Provider. This domain is optional and will be loaded only if + * {@link Ext.direct.Manager} singleton is required in your application. + * + * @protected + */ + +Ext.define('Ext.app.EventDomain', { + requires: [ + 'Ext.util.Event' + ], + + statics: { + /** + * An object map containing `Ext.app.EventDomain` instances keyed by the value + * of their `type` property. + */ + instances: {} + }, + + /** + * @cfg {String} idProperty Name of the identifier property for this event domain. + */ + + isEventDomain: true, + + constructor: function() { + var me = this; + + Ext.app.EventDomain.instances[me.type] = me; + + me.bus = {}; + me.monitoredClasses = []; + }, + + /** + * This method dispatches an event fired by an object monitored by this domain. This + * is not called directly but is called by interceptors injected by the `monitor` method. + * + * @param {Object} target The firer of the event. + * @param {String} ev The event being fired. + * @param {Array} args The arguments for the event. This array **does not** include the event name. + * That has already been sliced off because this class intercepts the {@link Ext.util.Observable#fireEventArgs fireEventArgs} + * method which takes an array as the event's argument list. + * + * @return {Boolean} `false` if any listener returned `false`, otherwise `true`. + * + * @private + */ + dispatch: function(target, ev, args) { + var me = this, + bus = me.bus, + selectors = bus[ev], + selector, controllers, id, events, event, i, ln; + + if (!selectors) { + return true; + } + + // Loop over all the selectors that are bound to this event + for (selector in selectors) { + // Check if the target matches the selector + if (selectors.hasOwnProperty(selector) && me.match(target, selector)) { + // Loop over all the controllers that are bound to this selector + controllers = selectors[selector]; + + for (id in controllers) { + if (controllers.hasOwnProperty(id)) { + // Loop over all the events that are bound to this selector + events = controllers[id]; + + for (i = 0, ln = events.length; i < ln; i++) { + event = events[i]; + + // Fire the event! + if (event.fire.apply(event, args) === false) { + return false; + } + } + } + } + } + } + + return true; + }, + + /** + * This method adds listeners on behalf of a controller. This method is passed an + * object that is keyed by selectors. The value of these is also an object but now + * keyed by event name. For example: + * + * domain.listen({ + * 'some[selector]': { + * click: function() { ... } + * }, + * + * 'other selector': { + * change: { + * fn: function() { ... }, + * delay: 10 + * } + * } + * + * }, controller); + * + * @param {Object} selectors Config object containing selectors and listeners. + * + * @private + */ + listen: function(selectors, controller) { + var me = this, + bus = me.bus, + idProperty = me.idProperty, + monitoredClasses = me.monitoredClasses, + monitoredClassesCount = monitoredClasses.length, + i, tree, list, selector, options, listener, scope, event, listeners, ev; + + for (selector in selectors) { + if (selectors.hasOwnProperty(selector) && (listeners = selectors[selector])) { + if (idProperty) { + // + if (!/^[*#]/.test(selector)) { + Ext.Error.raise('Selectors containing id should begin with #'); + } + // + + selector = selector === '*' ? selector : selector.substring(1); + } + + for (ev in listeners) { + if (listeners.hasOwnProperty(ev)) { + options = null; + listener = listeners[ev]; + scope = controller; + event = new Ext.util.Event(controller, ev); + + // Normalize the listener + if (Ext.isObject(listener)) { + options = listener; + listener = options.fn; + scope = options.scope || controller; + + delete options.fn; + delete options.scope; + } + + if (typeof listener === 'string') { + listener = scope[listener]; + } + event.addListener(listener, scope, options); + + for (i = monitoredClassesCount; i-- > 0;) { + monitoredClasses[i].hasListeners._incr_(ev); + } + + // Create the bus tree if it is not there yet + tree = bus[ev] || (bus[ev] = {}); + tree = tree[selector] || (tree[selector] = {}); + list = tree[controller.id] || (tree[controller.id] = []); + + // Push our listener in our bus + list.push(event); + } + } //end inner loop + } + } //end outer loop + }, + + /** + * This method matches the firer of the event (the `target`) to the given `selector`. + * Default matching is very simple: a match is true when selector equals target's + * {@link #cfg-idProperty idProperty}, or when selector is '*' wildcard to match any + * target. + * + * @param {Object} target The firer of the event. + * @param {String} selector The selector to which to match the `target`. + * + * @return {Boolean} `true` if the `target` matches the `selector`. + * + * @protected + */ + match: function(target, selector) { + var idProperty = this.idProperty; + + if (idProperty) { + return selector === '*' || target[idProperty] === selector; + } + + return false; + }, + + /** + * This method is called by the derived class to monitor `fireEvent` calls. Any call + * to `fireEvent` on the target Observable will be intercepted and dispatched to any + * listening Controllers. Assuming the original `fireEvent` method does not return + * `false`, the event is passed to the `dispatch` method of this object. + * + * This is typically called in the `constructor` of derived classes. + * + * @param {Ext.Class} observable The Observable to monitor for events. + * + * @protected + */ + monitor: function(observable) { + var domain = this, + prototype = observable.isInstance ? observable : observable.prototype, + fireEventArgs = prototype.fireEventArgs; + + domain.monitoredClasses.push(observable); + + prototype.fireEventArgs = function(ev, args) { + var ret = fireEventArgs.apply(this, arguments); + + if (ret !== false) { + ret = domain.dispatch(this, ev, args); + } + + return ret; + }; + }, + + /** + * Removes all of a controller's attached listeners. + * + * @param {String} controllerId The id of the controller. + * + * @private + */ + unlisten: function(controllerId) { + var bus = this.bus, + controllers, ev, selector, selectors; + + for (ev in bus) { + if (bus.hasOwnProperty(ev) && (selectors = bus[ev])) { + for (selector in selectors) { + controllers = selectors[selector]; + delete controllers[controllerId]; // harmless if !hasOwnProperty + } + } + } + } +}); diff --git a/extjs-django/marvel/static/extjs/src/app/domain/Component.js b/extjs-django/marvel/static/extjs/src/app/domain/Component.js new file mode 100644 index 0000000..e679cca --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/app/domain/Component.js @@ -0,0 +1,48 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * This class implements the component event domain. All classes extending from + * {@link Ext.Component} are included in this domain. The matching criteria uses + * {@link Ext.ComponentQuery}. + * + * @protected + */ +Ext.define('Ext.app.domain.Component', { + extend: 'Ext.app.EventDomain', + singleton: true, + + requires: [ + 'Ext.Component' + ], + + type: 'component', + + constructor: function() { + var me = this; + + me.callParent(); + me.monitor(Ext.Component); + }, + + match: function(target, selector) { + return target.is(selector); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/app/domain/Controller.js b/extjs-django/marvel/static/extjs/src/app/domain/Controller.js new file mode 100644 index 0000000..a5fe50a --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/app/domain/Controller.js @@ -0,0 +1,45 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * This class implements the controller event domain. All classes extending from + * {@link Ext.app.Controller} are included in this domain. The selectors are simply id's or the + * wildcard "*" to match any controller. + * + * @protected + */ +Ext.define('Ext.app.domain.Controller', { + extend: 'Ext.app.EventDomain', + singleton: true, + + requires: [ + 'Ext.app.Controller' + ], + + type: 'controller', + idProperty: 'id', + + constructor: function() { + var me = this; + + me.callParent(); + me.monitor(Ext.app.Controller); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/app/domain/Direct.js b/extjs-django/marvel/static/extjs/src/app/domain/Direct.js new file mode 100644 index 0000000..05ec060 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/app/domain/Direct.js @@ -0,0 +1,46 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * This class implements the Ext.Direct event domain. All classes extending from + * {@link Ext.direct.Provider} are included in this domain. The selectors are simply provider + * id's or the wildcard "*" to match any provider. + * + * @protected + */ + +Ext.define('Ext.app.domain.Direct', { + extend: 'Ext.app.EventDomain', + singleton: true, + + requires: [ + 'Ext.direct.Provider' + ], + + type: 'direct', + idProperty: 'id', + + constructor: function() { + var me = this; + + me.callParent(); + me.monitor(Ext.direct.Provider); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/app/domain/Global.js b/extjs-django/marvel/static/extjs/src/app/domain/Global.js new file mode 100644 index 0000000..f97e83f --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/app/domain/Global.js @@ -0,0 +1,66 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * This class implements the global event domain. This domain represents event fired from + * {@link Ext#globalEvents} Observable instance. No selectors are supported for this domain. + * + * @protected + */ +Ext.define('Ext.app.domain.Global', { + extend: 'Ext.app.EventDomain', + singleton: true, + + type: 'global', + + constructor: function() { + var me = this; + + me.callParent(); + me.monitor(Ext.globalEvents); + }, + + /** + * This method adds listeners on behalf of a controller. Since Global domain does not + * support selectors, we skip this layer and just accept an object keyed by events. + * For example: + * + * domain.listen({ + * idle: function() { ... }, + * afterlayout: { + * fn: function() { ... }, + * delay: 10 + * } + * }); + * + * @param {Object} listeners Config object containing listeners. + * + * @private + */ + listen: function(listeners, controller) { + // Parent method requires selectors so we just wrap passed listeners + // in a dummy selector + this.callParent([{ global: listeners }, controller]); + }, + + match: function() { + return true; + } +}); diff --git a/extjs-django/marvel/static/extjs/src/app/domain/Store.js b/extjs-django/marvel/static/extjs/src/app/domain/Store.js new file mode 100644 index 0000000..d04357d --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/app/domain/Store.js @@ -0,0 +1,46 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * This class implements the data store event domain. All classes extending from + * {@link Ext.data.AbstractStore} are included in this domain. The selectors are simply + * store id's or the wildcard "*" to match any store. + * + * @protected + */ + +Ext.define('Ext.app.domain.Store', { + extend: 'Ext.app.EventDomain', + singleton: true, + + requires: [ + 'Ext.data.AbstractStore' + ], + + type: 'store', + idProperty: 'storeId', + + constructor: function() { + var me = this; + + me.callParent(); + me.monitor(Ext.data.AbstractStore); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/button/Button.js b/extjs-django/marvel/static/extjs/src/button/Button.js new file mode 100644 index 0000000..e749404 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/button/Button.js @@ -0,0 +1,1577 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @docauthor Robert Dougan + * + * Create simple buttons with this component. Customisations include {@link #iconAlign aligned} + * {@link #iconCls icons}, {@link #cfg-menu dropdown menus}, {@link #tooltip tooltips} + * and {@link #scale sizing options}. Specify a {@link #handler handler} to run code when + * a user clicks the button, or use {@link #listeners listeners} for other events such as + * {@link #mouseover mouseover}. Example usage: + * + * @example + * Ext.create('Ext.Button', { + * text: 'Click me', + * renderTo: Ext.getBody(), + * handler: function() { + * alert('You clicked the button!'); + * } + * }); + * + * The {@link #handler} configuration can also be updated dynamically using the {@link #setHandler} + * method. Example usage: + * + * @example + * Ext.create('Ext.Button', { + * text : 'Dynamic Handler Button', + * renderTo: Ext.getBody(), + * handler : function() { + * // this button will spit out a different number every time you click it. + * // so firstly we must check if that number is already set: + * if (this.clickCount) { + * // looks like the property is already set, so lets just add 1 to that number and alert the user + * this.clickCount++; + * alert('You have clicked the button "' + this.clickCount + '" times.\n\nTry clicking it again..'); + * } else { + * // if the clickCount property is not set, we will set it and alert the user + * this.clickCount = 1; + * alert('You just clicked the button for the first time!\n\nTry pressing it again..'); + * } + * } + * }); + * + * A button within a container: + * + * @example + * Ext.create('Ext.Container', { + * renderTo: Ext.getBody(), + * items : [ + * { + * xtype: 'button', + * text : 'My Button' + * } + * ] + * }); + * + * A useful option of Button is the {@link #scale} configuration. This configuration has three different options: + * + * - `'small'` + * - `'medium'` + * - `'large'` + * + * Example usage: + * + * @example + * Ext.create('Ext.Button', { + * renderTo: document.body, + * text : 'Click me', + * scale : 'large' + * }); + * + * Buttons can also be toggled. To enable this, you simple set the {@link #enableToggle} property to `true`. + * Example usage: + * + * @example + * Ext.create('Ext.Button', { + * renderTo: Ext.getBody(), + * text: 'Click Me', + * enableToggle: true + * }); + * + * You can assign a menu to a button by using the {@link #cfg-menu} configuration. This standard configuration + * can either be a reference to a {@link Ext.menu.Menu menu} object, a {@link Ext.menu.Menu menu} id or a + * {@link Ext.menu.Menu menu} config blob. When assigning a menu to a button, an arrow is automatically + * added to the button. You can change the alignment of the arrow using the {@link #arrowAlign} configuration + * on button. Example usage: + * + * @example + * Ext.create('Ext.Button', { + * text : 'Menu button', + * renderTo : Ext.getBody(), + * arrowAlign: 'bottom', + * menu : [ + * {text: 'Item 1'}, + * {text: 'Item 2'}, + * {text: 'Item 3'}, + * {text: 'Item 4'} + * ] + * }); + * + * Using listeners, you can easily listen to events fired by any component, using the {@link #listeners} + * configuration or using the {@link #addListener} method. Button has a variety of different listeners: + * + * - `click` + * - `toggle` + * - `mouseover` + * - `mouseout` + * - `mouseshow` + * - `menuhide` + * - `menutriggerover` + * - `menutriggerout` + * + * Example usage: + * + * @example + * Ext.create('Ext.Button', { + * text : 'Button', + * renderTo : Ext.getBody(), + * listeners: { + * click: function() { + * // this == the button, as we are in the local scope + * this.setText('I was clicked!'); + * }, + * mouseover: function() { + * // set a new config which says we moused over, if not already set + * if (!this.mousedOver) { + * this.mousedOver = true; + * alert('You moused over a button!\n\nI wont do this again.'); + * } + * } + * } + * }); + */ +Ext.define('Ext.button.Button', { + + /* Begin Definitions */ + alias: 'widget.button', + extend: 'Ext.Component', + + requires: [ + 'Ext.button.Manager', + 'Ext.menu.Manager', + 'Ext.util.ClickRepeater', + 'Ext.layout.component.Button', + 'Ext.util.TextMetrics', + 'Ext.util.KeyMap' + ], + + mixins: { + queryable: 'Ext.Queryable' + }, + + alternateClassName: 'Ext.Button', + /* End Definitions */ + + /* + * @property {Boolean} isAction + * `true` in this class to identify an object as an instantiated Button, or subclass thereof. + */ + isButton: true, + componentLayout: 'button', + + /** + * @property {Boolean} hidden + * True if this button is hidden. + * @readonly + */ + hidden: false, + + /** + * @property {Boolean} disabled + * True if this button is disabled. + * @readonly + */ + disabled: false, + + /** + * @property {Boolean} pressed + * True if this button is pressed (only if enableToggle = true). + * @readonly + */ + pressed: false, + + /** + * @cfg {String} text + * The button text to be used as innerHTML (html tags are accepted). + */ + + /** + * @cfg {String} icon + * The path to an image to display in the button. + */ + + /** + * @cfg {Function} handler + * A function called when the button is clicked (can be used instead of click event). + * @cfg {Ext.button.Button} handler.button This button. + * @cfg {Ext.EventObject} handler.e The click event. + */ + + /** + * @cfg {Number} minWidth + * The minimum width for this button (used to give a set of buttons a common width). + * See also {@link Ext.panel.Panel}.{@link Ext.panel.Panel#minButtonWidth minButtonWidth}. + */ + + /** + * @cfg {String/Object} tooltip + * The tooltip for the button - can be a string to be used as innerHTML (html tags are accepted) or + * QuickTips config object. + */ + + /** + * @cfg {Boolean} [hidden=false] + * True to start hidden. + */ + + /** + * @cfg {Boolean} [disabled=false] + * True to start disabled. + */ + + /** + * @cfg {Boolean} [pressed=false] + * True to start pressed (only if enableToggle = true) + */ + + /** + * @cfg {String} toggleGroup + * The group this toggle button is a member of (only 1 per group can be pressed). If a toggleGroup + * is specified, the {@link #enableToggle} configuration will automatically be set to true. + */ + + /** + * @cfg {Boolean/Object} [repeat=false] + * True to repeat fire the click event while the mouse is down. This can also be a + * {@link Ext.util.ClickRepeater ClickRepeater} config object. + */ + + /** + * @cfg {Number} tabIndex + * Set a DOM tabIndex for this button. + */ + tabIndex: 0, + + /** + * @cfg {Boolean} [allowDepress=true] + * False to not allow a pressed Button to be depressed. Only valid when {@link #enableToggle} is true. + */ + + /** + * @cfg {Boolean} [enableToggle=false] + * True to enable pressed/not pressed toggling. If a {@link #toggleGroup} is specified, this + * option will be set to true. + */ + enableToggle: false, + + /** + * @cfg {Function} toggleHandler + * Function called when a Button with {@link #enableToggle} set to true is clicked. + * @cfg {Ext.button.Button} toggleHandler.button This button. + * @cfg {Boolean} toggleHandler.state The next state of the Button, true means pressed. + */ + + /** + * @cfg {Ext.menu.Menu/String/Object} menu + * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob. + */ + + /** + * @cfg {String} menuAlign + * The position to align the menu to (see {@link Ext.util.Positionable#alignTo} for more details). + */ + menuAlign: 'tl-bl?', + + /** + * @cfg {Boolean} showEmptyMenu + * True to force an attached {@link #cfg-menu} with no items to be shown when clicking + * this button. By default, the menu will not show if it is empty. + */ + showEmptyMenu: false, + + /** + * @cfg {String} textAlign + * The text alignment for this button (center, left, right). + */ + textAlign: 'center', + + /** + * @cfg {String} overflowText + * If used in a {@link Ext.toolbar.Toolbar Toolbar}, the text to be used if this item is shown in the overflow menu. + * See also {@link Ext.toolbar.Item}.`{@link Ext.toolbar.Item#overflowText overflowText}`. + */ + + /** + * @cfg {String} iconCls + * A css class which sets a background image to be used as the icon for this button. + */ + + /** + * @cfg {Number/String} glyph + * A numeric unicode character code to use as the icon for this button. The default + * font-family for glyphs can be set globally using + * {@link Ext#setGlyphFontFamily Ext.setGlyphFontFamily()}. Alternatively, this + * config option accepts a string with the charCode and font-family separated by the + * `@` symbol. For example '65@My Font Family'. + */ + + /** + * @cfg {String} clickEvent + * The DOM event that will fire the handler of the button. This can be any valid event name (dblclick, contextmenu). + */ + clickEvent: 'click', + + /** + * @cfg {Boolean} preventDefault + * True to prevent the default action when the {@link #clickEvent} is processed. + */ + preventDefault: true, + + /** + * @cfg {Boolean} handleMouseEvents + * False to disable visual cues on mouseover, mouseout and mousedown. + */ + handleMouseEvents: true, + + /** + * @cfg {String} tooltipType + * The type of tooltip to use. Either 'qtip' for QuickTips or 'title' for title attribute. + */ + tooltipType: 'qtip', + + /** + * @cfg {String} [baseCls='x-btn'] + * The base CSS class to add to all buttons. + */ + baseCls: Ext.baseCSSPrefix + 'btn', + + /** + * @cfg {String} pressedCls + * The CSS class to add to a button when it is in the pressed state. + */ + pressedCls: 'pressed', + + /** + * @cfg {String} overCls + * The CSS class to add to a button when it is in the over (hovered) state. + */ + overCls: 'over', + + /** + * @cfg {String} focusCls + * The CSS class to add to a button when it is in the focussed state. + */ + focusCls: 'focus', + + /** + * @cfg {String} menuActiveCls + * The CSS class to add to a button when it's menu is active. + */ + menuActiveCls: 'menu-active', + + /** + * @cfg {String} href + * The URL to open when the button is clicked. Specifying this config causes the Button to be + * rendered with the specified URL as the `href` attribute of its `` Element. + * + * This is better than specifying a click handler of + * + * function() { window.location = "http://www.sencha.com" } + * + * because the UI will provide meaningful hints to the user as to what to expect upon clicking + * the button, and will also allow the user to open in a new tab or window, bookmark or drag the URL, or directly save + * the URL stream to disk. + * + * See also the {@link #hrefTarget} config. + */ + + /** + * @cfg {String} [hrefTarget="_blank"] + * The target attribute to use for the underlying anchor. Only used if the {@link #href} + * property is specified. + */ + hrefTarget: '_blank', + + /** + * @cfg {Boolean} destroyMenu + * Whether or not to destroy any associated menu when this button is destroyed. The menu + * will be destroyed unless this is explicitly set to false. + */ + + /** + * @cfg {Object} baseParams + * An object literal of parameters to pass to the url when the {@link #href} property is specified. + */ + + /** + * @cfg {Object} params + * An object literal of parameters to pass to the url when the {@link #href} property is specified. Any params + * override {@link #baseParams}. New params can be set using the {@link #setParams} method. + */ + + childEls: [ + 'btnEl', 'btnWrap', 'btnInnerEl', 'btnIconEl' + ], + + // We have to keep "unselectable" attribute on all elements because it's not inheritable. + // Without it, clicking anywhere on a button disrupts current selection and cursor position + // in HtmlEditor. + renderTpl: [ + ' {splitCls}', + '{childElCls}" unselectable="on">', + '', + '', + '{text}', + '', + 'background-image:url({iconUrl});', + 'font-family:{glyphFontFamily};">', + '&#{glyph}; ', + '', + '', + '', + // if "closable" (tab) add a close element icon + '', + '', + '' + ], + + /** + * @cfg {"small"/"medium"/"large"} scale + * The size of the Button. Three values are allowed: + * + * - 'small' - Results in the button element being 16px high. + * - 'medium' - Results in the button element being 24px high. + * - 'large' - Results in the button element being 32px high. + */ + scale: 'small', + + /** + * @private + * An array of allowed scales. + */ + allowedScales: ['small', 'medium', 'large'], + + /** + * @cfg {Object} scope + * The scope (**this** reference) in which the `{@link #handler}` and `{@link #toggleHandler}` is executed. + * Defaults to this Button. + */ + + /** + * @cfg {String} iconAlign + * The side of the Button box to render the icon. Four values are allowed: + * + * - 'top' + * - 'right' + * - 'bottom' + * - 'left' + */ + iconAlign: 'left', + + /** + * @cfg {String} arrowAlign + * The side of the Button box to render the arrow if the button has an associated {@link #cfg-menu}. Two + * values are allowed: + * + * - 'right' + * - 'bottom' + */ + arrowAlign: 'right', + + /** + * @cfg {String} arrowCls + * The className used for the inner arrow element if the button has a menu. + */ + arrowCls: 'arrow', + + /** + * @property {Ext.Template} template + * A {@link Ext.Template Template} used to create the Button's DOM structure. + * + * Instances, or subclasses which need a different DOM structure may provide a different template layout in + * conjunction with an implementation of {@link #getTemplateArgs}. + */ + + /** + * @cfg {String} cls + * A CSS class string to apply to the button's main element. + */ + + /** + * @property {Ext.menu.Menu} menu + * The {@link Ext.menu.Menu Menu} object associated with this Button when configured with the {@link #cfg-menu} config + * option. + */ + + maskOnDisable: false, + + shrinkWrap: 3, + + frame: true, + + // A reusable object used by getTriggerRegion to avoid excessive object creation. + _triggerRegion: {}, + + // inherit docs + initComponent: function() { + var me = this; + + // the autoEl object can't be on the prototype because we add tabIndex and href + // properties to it conditionally. + me.autoEl = { + tag: 'a', + role: 'button', + hidefocus: 'on', + unselectable: 'on' + }; + + // Ensure no selection happens + me.addCls('x-unselectable'); + + me.callParent(arguments); + + me.addEvents( + /** + * @event click + * Fires when this button is clicked, before the configured {@link #handler} is invoked. Execution of the + * {@link #handler} may be vetoed by returning false to this event. + * @param {Ext.button.Button} this + * @param {Event} e The click event + */ + 'click', + + /** + * @event toggle + * Fires when the 'pressed' state of this button changes (only if enableToggle = true) + * @param {Ext.button.Button} this + * @param {Boolean} pressed + */ + 'toggle', + + /** + * @event mouseover + * Fires when the mouse hovers over the button + * @param {Ext.button.Button} this + * @param {Event} e The event object + */ + 'mouseover', + + /** + * @event mouseout + * Fires when the mouse exits the button + * @param {Ext.button.Button} this + * @param {Event} e The event object + */ + 'mouseout', + + /** + * @event menushow + * If this button has a menu, this event fires when it is shown + * @param {Ext.button.Button} this + * @param {Ext.menu.Menu} menu + */ + 'menushow', + + /** + * @event menuhide + * If this button has a menu, this event fires when it is hidden + * @param {Ext.button.Button} this + * @param {Ext.menu.Menu} menu + */ + 'menuhide', + + /** + * @event menutriggerover + * If this button has a menu, this event fires when the mouse enters the menu triggering element + * @param {Ext.button.Button} this + * @param {Ext.menu.Menu} menu + * @param {Event} e + */ + 'menutriggerover', + + /** + * @event menutriggerout + * If this button has a menu, this event fires when the mouse leaves the menu triggering element + * @param {Ext.button.Button} this + * @param {Ext.menu.Menu} menu + * @param {Event} e + */ + 'menutriggerout', + + /** + * @event textchange + * Fired when the button's text is changed by the {@link #setText} method. + * @param {Ext.button.Button} this + * @param {String} oldText + * @param {String} newText + */ + 'textchange', + + /** + * @event iconchange + * Fired when the button's icon is changed by the {@link #setIcon} or {@link #setIconCls} methods. + * @param {Ext.button.Button} this + * @param {String} oldIcon + * @param {String} newIcon + */ + 'iconchange', + + /** + * @event glyphchange + * Fired when the button's glyph is changed by the {@link #setGlyph} method. + * @param {Ext.button.Button} this + * @param {Number/String} newGlyph + * @param {Number/String} oldGlyph + */ + 'glyphchange' + ); + + if (me.menu) { + // Flag that we'll have a splitCls + me.split = true; + + // retrieve menu by id or instantiate instance if needed + me.menu = Ext.menu.Manager.get(me.menu); + + // Use ownerButton as the upward link. Menus *must have no ownerCt* - they are global floaters. + // Upward navigation is done using the up() method. + me.menu.ownerButton = me; + } + + // Accept url as a synonym for href + if (me.url) { + me.href = me.url; + } + + // preventDefault defaults to false for links + if (me.href && !me.hasOwnProperty('preventDefault')) { + me.preventDefault = false; + } + + if (Ext.isString(me.toggleGroup) && me.toggleGroup !== '') { + me.enableToggle = true; + } + + if (me.html && !me.text) { + me.text = me.html; + delete me.html; + } + + me.glyphCls = me.baseCls + '-glyph'; + }, + + // inherit docs + getActionEl: function() { + return this.el; + }, + + // inherit docs + getFocusEl: function() { + return this.el; + }, + + // See comments in onFocus + onDisable: function(){ + this.callParent(arguments); + }, + + // @private + setComponentCls: function() { + var me = this, + cls = me.getComponentCls(); + + if (!Ext.isEmpty(me.oldCls)) { + me.removeClsWithUI(me.oldCls); + me.removeClsWithUI(me.pressedCls); + } + + me.oldCls = cls; + me.addClsWithUI(cls); + }, + + getComponentCls: function() { + var me = this, + cls; + + // Check whether the button has an icon or not, and if it has an icon, what is the alignment + if (me.iconCls || me.icon || me.glyph) { + cls = [me.text ? 'icon-text-' + me.iconAlign : 'icon']; + } else if (me.text) { + cls = ['noicon']; + } else { + cls = []; + } + + if (me.pressed) { + cls[cls.length] = me.pressedCls; + } + return cls; + }, + + beforeRender: function () { + var me = this, + autoEl = me.autoEl, + href = me.getHref(), + hrefTarget = me.hrefTarget; + + if (!me.disabled) { + autoEl.tabIndex = me.tabIndex; + } + + if (href) { + autoEl.href = href; + if (hrefTarget) { + autoEl.target = hrefTarget; + } + } + + me.callParent(); + + // Add all needed classes to the protoElement. + me.oldCls = me.getComponentCls(); + me.addClsWithUI(me.oldCls); + + // Apply the renderData to the template args + Ext.applyIf(me.renderData, me.getTemplateArgs()); + }, + + // @private + onRender: function() { + var me = this, + addOnclick, + btn, + btnListeners; + + me.doc = Ext.getDoc(); + me.callParent(arguments); + + // Set btn as a local variable for easy access + btn = me.el; + + if (me.tooltip) { + me.setTooltip(me.tooltip, true); + } + + // Add the mouse events to the button + if (me.handleMouseEvents) { + btnListeners = { + scope: me, + mouseover: me.onMouseOver, + mouseout: me.onMouseOut, + mousedown: me.onMouseDown + }; + if (me.split) { + btnListeners.mousemove = me.onMouseMove; + } + } else { + btnListeners = { + scope: me + }; + } + + // Check if the button has a menu + if (me.menu) { + me.mon(me.menu, { + scope: me, + show: me.onMenuShow, + hide: me.onMenuHide + }); + + me.keyMap = new Ext.util.KeyMap({ + target: me.el, + key: Ext.EventObject.DOWN, + handler: me.onDownKey, + scope: me + }); + } + + // Check if it is a repeat button + if (me.repeat) { + me.mon(new Ext.util.ClickRepeater(btn, Ext.isObject(me.repeat) ? me.repeat: {}), 'click', me.onRepeatClick, me); + } else { + + // If the activation event already has a handler, make a note to add the handler later + if (btnListeners[me.clickEvent]) { + addOnclick = true; + } else { + btnListeners[me.clickEvent] = me.onClick; + } + } + + // Add whatever button listeners we need + me.mon(btn, btnListeners); + + // If the listeners object had an entry for our clickEvent, add a listener now + if (addOnclick) { + me.mon(btn, me.clickEvent, me.onClick, me); + } + + Ext.button.Manager.register(me); + }, + + /** + * This method returns an object which provides substitution parameters for the {@link #renderTpl XTemplate} used to + * create this Button's DOM structure. + * + * Instances or subclasses which use a different Template to create a different DOM structure may need to provide + * their own implementation of this method. + * @protected + * + * @return {Object} Substitution data for a Template. The default implementation which provides data for the default + * {@link #template} returns an Object containing the following properties: + * @return {String} return.innerCls A CSS class to apply to the button's text element. + * @return {String} return.splitCls A CSS class to determine the presence and position of an arrow icon. + * (`'x-btn-arrow'` or `'x-btn-arrow-bottom'` or `''`) + * @return {String} return.iconUrl The url for the button icon. + * @return {String} return.iconCls The CSS class for the button icon. + * @return {String} return.glyph The glyph to use as the button icon. + * @return {String} return.glyphCls The CSS class to use for the glyph element. + * @return {String} return.glyphFontFamily The CSS font-family to use for the glyph element. + * @return {String} return.text The {@link #text} to display ion the Button. + */ + getTemplateArgs: function() { + var me = this, + glyph = me.glyph, + glyphFontFamily = Ext._glyphFontFamily, + glyphParts; + + if (typeof glyph === 'string') { + glyphParts = glyph.split('@'); + glyph = glyphParts[0]; + glyphFontFamily = glyphParts[1]; + } + + return { + innerCls : me.getInnerCls(), + splitCls : me.getSplitCls(), + iconUrl : me.icon, + iconCls : me.iconCls, + glyph: glyph, + glyphCls: glyph ? me.glyphCls : '', + glyphFontFamily: glyphFontFamily, + text : me.text || ' ' + }; + }, + + /** + * Sets the href of the embedded anchor element to the passed URL. + * + * Also appends any configured {@link #cfg-baseParams} and parameters set through {@link #setParams}. + * @param {String} href The URL to set in the anchor element. + * + */ + setHref: function(href) { + this.href = href; + this.el.dom.href = this.getHref(); + }, + + /** + * @private + * If there is a configured href for this Button, returns the href with parameters appended. + * @return {String/Boolean} The href string with parameters appended. + */ + getHref: function() { + var me = this, + href = me.href; + + return href ? Ext.urlAppend(href, Ext.Object.toQueryString(Ext.apply({}, me.params, me.baseParams))) : false; + }, + + /** + * Sets the href of the link dynamically according to the params passed, and any {@link #baseParams} configured. + * + * **Only valid if the Button was originally configured with a {@link #href}** + * + * @param {Object} params Parameters to use in the href URL. + */ + setParams: function(params) { + this.params = params; + this.el.dom.href = this.getHref(); + }, + + getSplitCls: function() { + var me = this; + return me.split ? (me.baseCls + '-' + me.arrowCls) + ' ' + (me.baseCls + '-' + me.arrowCls + '-' + me.arrowAlign) : ''; + }, + + getInnerCls: function() { + return this.textAlign ? this.baseCls + '-inner-' + this.textAlign : ''; + }, + + /** + * Sets the background image (inline style) of the button. This method also changes the value of the {@link #icon} + * config internally. + * @param {String} icon The path to an image to display in the button + * @return {Ext.button.Button} this + */ + setIcon: function(icon) { + icon = icon || ''; + var me = this, + btnIconEl = me.btnIconEl, + oldIcon = me.icon || ''; + + me.icon = icon; + if (icon != oldIcon) { + if (btnIconEl) { + btnIconEl.setStyle('background-image', icon ? 'url(' + icon + ')': ''); + me.setComponentCls(); + if (me.didIconStateChange(oldIcon, icon)) { + me.updateLayout(); + } + } + me.fireEvent('iconchange', me, oldIcon, icon); + } + return me; + }, + + /** + * Sets the CSS class that provides a background image to use as the button's icon. This method also changes the + * value of the {@link #iconCls} config internally. + * @param {String} cls The CSS class providing the icon image + * @return {Ext.button.Button} this + */ + setIconCls: function(cls) { + cls = cls || ''; + var me = this, + btnIconEl = me.btnIconEl, + oldCls = me.iconCls || ''; + + me.iconCls = cls; + if (oldCls != cls) { + if (btnIconEl) { + // Remove the previous iconCls from the button + btnIconEl.removeCls(oldCls); + btnIconEl.addCls(cls); + me.setComponentCls(); + if (me.didIconStateChange(oldCls, cls)) { + me.updateLayout(); + } + } + me.fireEvent('iconchange', me, oldCls, cls); + } + return me; + }, + + /** + * Sets this button's glyph + * @param {Number/String} glyph the numeric charCode or string charCode/font-family. + * This parameter expects a format consistent with that of {@link #glyph} + * @return {Ext.button.Button} this + */ + setGlyph: function(glyph) { + glyph = glyph || 0; + var me = this, + btnIconEl = me.btnIconEl, + oldGlyph = me.glyph, + fontFamily, glyphParts; + + me.glyph = glyph; + + if (btnIconEl) { + if (typeof glyph === 'string') { + glyphParts = glyph.split('@'); + glyph = glyphParts[0]; + fontFamily = glyphParts[1] || Ext._glyphFontFamily; + } + + if (!glyph) { + btnIconEl.dom.innerHTML = ''; + } else if (oldGlyph != glyph) { + btnIconEl.dom.innerHTML = '&#' + glyph + ';'; + } + + if (fontFamily) { + btnIconEl.setStyle('font-family', fontFamily); + } + } + + me.fireEvent('glyphchange', me, me.glyph, oldGlyph); + + return me; + }, + + /** + * Sets the tooltip for this Button. + * + * @param {String/Object} tooltip This may be: + * + * - **String** : A string to be used as innerHTML (html tags are accepted) to show in a tooltip + * - **Object** : A configuration object for {@link Ext.tip.QuickTipManager#register}. + * + * @return {Ext.button.Button} this + */ + setTooltip: function(tooltip, initial) { + var me = this; + + if (me.rendered) { + if (!initial || !tooltip) { + me.clearTip(); + } + if (tooltip) { + if (Ext.quickTipsActive && Ext.isObject(tooltip)) { + Ext.tip.QuickTipManager.register(Ext.apply({ + target: me.el.id + }, + tooltip)); + me.tooltip = tooltip; + } else { + me.el.dom.setAttribute(me.getTipAttr(), tooltip); + } + } + } else { + me.tooltip = tooltip; + } + return me; + }, + + /** + * Sets the text alignment for this button. + * @param {String} align The new alignment of the button text. See {@link #textAlign}. + */ + setTextAlign: function(align) { + var me = this, + btnEl = me.btnEl; + + if (btnEl) { + btnEl.removeCls(me.baseCls + '-inner-' + me.textAlign); + btnEl.addCls(me.baseCls + '-inner-' + align); + } + me.textAlign = align; + return me; + }, + + getTipAttr: function(){ + return this.tooltipType == 'qtip' ? 'data-qtip' : 'title'; + }, + + // @private + getRefItems: function(deep){ + var menu = this.menu, + items; + + if (menu) { + items = menu.getRefItems(deep); + items.unshift(menu); + } + return items || []; + }, + + // @private + clearTip: function() { + var me = this, + el = me.el; + + if (Ext.quickTipsActive && Ext.isObject(me.tooltip)) { + Ext.tip.QuickTipManager.unregister(el); + } else { + el.dom.removeAttribute(me.getTipAttr()); + } + }, + + // @private + beforeDestroy: function() { + var me = this; + if (me.rendered) { + me.clearTip(); + } + if (me.menu && me.destroyMenu !== false) { + Ext.destroy(me.menu); + } + Ext.destroy(me.btnInnerEl, me.repeater); + me.callParent(); + }, + + // @private + onDestroy: function() { + var me = this; + if (me.rendered) { + me.doc.un('mouseover', me.monitorMouseOver, me); + delete me.doc; + + Ext.destroy(me.keyMap); + delete me.keyMap; + } + Ext.button.Manager.unregister(me); + me.callParent(); + }, + + /** + * Assigns this Button's click handler + * @param {Function} handler The function to call when the button is clicked + * @param {Object} [scope] The scope (`this` reference) in which the handler function is executed. + * Defaults to this Button. + * @return {Ext.button.Button} this + */ + setHandler: function(handler, scope) { + this.handler = handler; + this.scope = scope; + return this; + }, + + /** + * Sets this Button's text + * @param {String} text The button text + * @return {Ext.button.Button} this + */ + setText: function(text) { + text = text || ''; + var me = this, + oldText = me.text || ''; + + if (text != oldText) { + me.text = text; + if (me.rendered) { + me.btnInnerEl.update(text || ' '); + me.setComponentCls(); + if (Ext.isStrict && Ext.isIE8) { + // weird repaint issue causes it to not resize + me.el.repaint(); + } + me.updateLayout(); + } + me.fireEvent('textchange', me, oldText, text); + } + return me; + }, + + /** + * Checks if the icon/iconCls changed from being empty to having a value, or having a value to being empty. + * @private + * @param {String} old The old icon/iconCls + * @param {String} current The current icon/iconCls + * @return {Boolean} True if the icon state changed + */ + didIconStateChange: function(old, current) { + var currentEmpty = Ext.isEmpty(current); + return Ext.isEmpty(old) ? !currentEmpty : currentEmpty; + }, + + /** + * Gets the text for this Button + * @return {String} The button text + */ + getText: function() { + return this.text; + }, + + /** + * If a state it passed, it becomes the pressed state otherwise the current state is toggled. + * @param {Boolean} [state] Force a particular state + * @param {Boolean} [suppressEvent=false] True to stop events being fired when calling this method. + * @return {Ext.button.Button} this + */ + toggle: function(state, suppressEvent) { + var me = this; + state = state === undefined ? !me.pressed: !!state; + if (state !== me.pressed) { + if (me.rendered) { + me[state ? 'addClsWithUI': 'removeClsWithUI'](me.pressedCls); + } + me.pressed = state; + if (!suppressEvent) { + me.fireEvent('toggle', me, state); + Ext.callback(me.toggleHandler, me.scope || me, [me, state]); + } + } + return me; + }, + + maybeShowMenu: function(){ + var me = this; + if (me.menu && !me.hasVisibleMenu() && !me.ignoreNextClick) { + me.showMenu(true); + } + }, + + /** + * Shows this button's menu (if it has one) + */ + showMenu: function(/* private */ fromEvent) { + var me = this, + menu = me.menu; + + if (me.rendered) { + if (me.tooltip && Ext.quickTipsActive && me.getTipAttr() != 'title') { + Ext.tip.QuickTipManager.getQuickTip().cancelShow(me.el); + } + if (menu.isVisible()) { + menu.hide(); + } + + if (!fromEvent || me.showEmptyMenu || menu.items.getCount() > 0) { + menu.showBy(me.el, me.menuAlign); + } + } + return me; + }, + + /** + * Hides this button's menu (if it has one) + */ + hideMenu: function() { + if (this.hasVisibleMenu()) { + this.menu.hide(); + } + return this; + }, + + /** + * Returns true if the button has a menu and it is visible + * @return {Boolean} + */ + hasVisibleMenu: function() { + var menu = this.menu; + return menu && menu.rendered && menu.isVisible(); + }, + + // @private + onRepeatClick: function(repeat, e) { + this.onClick(e); + }, + + // @private + onClick: function(e) { + var me = this; + if (me.preventDefault || (me.disabled && me.getHref()) && e) { + e.preventDefault(); + } + + // Can be triggered by ENTER or SPACE keydown events which set the button property. + // Only veto event handling if it's a mouse event with an alternative button. + if (e.type !== 'keydown' && e.button !== 0) { + return; + } + if (!me.disabled) { + me.doToggle(); + me.maybeShowMenu(); + me.fireHandler(e); + } + }, + + fireHandler: function(e) { + var me = this, + handler = me.handler; + + if (me.fireEvent('click', me, e) !== false) { + if (handler) { + handler.call(me.scope || me, me, e); + } + } + }, + + doToggle: function() { + var me = this; + if (me.enableToggle && (me.allowDepress !== false || !me.pressed)) { + me.toggle(); + } + }, + + /** + * @private mouseover handler called when a mouseover event occurs anywhere within the encapsulating element. + * The targets are interrogated to see what is being entered from where. + * @param e + */ + onMouseOver: function(e) { + var me = this; + if (!me.disabled && !e.within(me.el, true, true)) { + me.onMouseEnter(e); + } + }, + + /** + * @private + * mouseout handler called when a mouseout event occurs anywhere within the encapsulating element - + * or the mouse leaves the encapsulating element. + * The targets are interrogated to see what is being exited to where. + * @param e + */ + onMouseOut: function(e) { + var me = this; + if (!e.within(me.el, true, true)) { + if (me.overMenuTrigger) { + me.onMenuTriggerOut(e); + } + me.onMouseLeave(e); + } + }, + + /** + * @private + * mousemove handler called when the mouse moves anywhere within the encapsulating element. + * The position is checked to determine if the mouse is entering or leaving the trigger area. Using + * mousemove to check this is more resource intensive than we'd like, but it is necessary because + * the trigger area does not line up exactly with sub-elements so we don't always get mouseover/out + * events when needed. In the future we should consider making the trigger a separate element that + * is absolutely positioned and sized over the trigger area. + */ + onMouseMove: function(e) { + var me = this, + el = me.el, + over = me.overMenuTrigger, + overPosition, triggerRegion; + + if (me.split) { + overPosition = (me.arrowAlign === 'right') ? + e.getX() - me.getX() : e.getY() - el.getY(); + triggerRegion = me.getTriggerRegion(); + + if (overPosition > triggerRegion.begin && overPosition < triggerRegion.end) { + if (!over) { + me.onMenuTriggerOver(e); + } + } else { + if (over) { + me.onMenuTriggerOut(e); + } + } + } + }, + + /** + * @private + * Returns an object containing `begin` and `end` properties that indicate the + * left/right bounds of a right trigger or the top/bottom bounds of a bottom trigger. + * @return {Object} + */ + getTriggerRegion: function() { + var me = this, + region = me._triggerRegion, + triggerSize = me.getTriggerSize(), + btnSize = me.arrowAlign === 'right' ? me.getWidth() : me.getHeight(); + + region.begin = btnSize - triggerSize; + region.end = btnSize; + return region; + }, + + /** + * @private + * Measures the size of the trigger area for menu and split buttons. Will be a width for + * a right-aligned trigger and a height for a bottom-aligned trigger. Cached after first measurement. + */ + getTriggerSize: function() { + var me = this, + size = me.triggerSize, + side, sideFirstLetter; + + if (size == null) { // Same as (size === null || size === undefined) + side = me.arrowAlign; + sideFirstLetter = side.charAt(0); + size = me.triggerSize = me.el.getFrameWidth(sideFirstLetter) + me.getBtnWrapFrameWidth(sideFirstLetter) + if (me.frameSize) { + size = me.triggerSize += me.frameSize[side]; + } + } + return size; + }, + + /** + * @private + */ + getBtnWrapFrameWidth: function(side) { + return this.btnWrap.getFrameWidth(side); + }, + + addOverCls: function() { + if (!this.disabled) { + this.addClsWithUI(this.overCls); + } + }, + removeOverCls: function() { + this.removeClsWithUI(this.overCls); + }, + + /** + * @private + * virtual mouseenter handler called when it is detected that the mouseout event + * signified the mouse entering the encapsulating element. + * @param e + */ + onMouseEnter: function(e) { + // overCls is handled by AbstractComponent + this.fireEvent('mouseover', this, e); + }, + + /** + * @private + * virtual mouseleave handler called when it is detected that the mouseover event + * signified the mouse entering the encapsulating element. + * @param e + */ + onMouseLeave: function(e) { + // overCls is handled by AbstractComponent + this.fireEvent('mouseout', this, e); + }, + + /** + * @private + * virtual mouseenter handler called when it is detected that the mouseover event + * signified the mouse entering the arrow area of the button - the ``. + * @param e + */ + onMenuTriggerOver: function(e) { + var me = this, + arrowTip = me.arrowTooltip; + + me.overMenuTrigger = true; + // We don't have a separate arrow element, so we only add the tip attribute if + // we're over that part of the button + if (me.split && arrowTip) { + me.btnWrap.dom.setAttribute(me.getTipAttr(), arrowTip); + } + me.fireEvent('menutriggerover', me, me.menu, e); + }, + + /** + * @private + * virtual mouseleave handler called when it is detected that the mouseout event + * signified the mouse leaving the arrow area of the button - the ``. + * @param e + */ + onMenuTriggerOut: function(e) { + var me = this; + delete me.overMenuTrigger; + // See onMenuTriggerOver + if (me.split && me.arrowTooltip) { + me.btnWrap.dom.setAttribute(me.getTipAttr(), ''); + } + me.fireEvent('menutriggerout', me, me.menu, e); + }, + + // inherit docs + enable: function(silent) { + var me = this; + + me.callParent(arguments); + + me.removeClsWithUI('disabled'); + if (me.rendered) { + me.el.dom.setAttribute('tabIndex', me.tabIndex); + } + + return me; + }, + + // inherit docs + disable: function(silent) { + var me = this; + + me.callParent(arguments); + + me.addClsWithUI('disabled'); + me.removeClsWithUI(me.overCls); + if (me.rendered) { + me.el.dom.removeAttribute('tabIndex'); + } + + // IE renders disabled text by layering gray text on top of white text, offset by 1 pixel. Normally this is fine + // but in some circumstances (such as using formBind) it gets confused and renders them side by side instead. + if (me.btnInnerEl && Ext.isIE7m) { + me.btnInnerEl.repaint(); + } + + return me; + }, + + /** + * Method to change the scale of the button. See {@link #scale} for allowed configurations. + * @param {String} scale The scale to change to. + */ + setScale: function(scale) { + var me = this, + ui = me.ui.replace('-' + me.scale, ''); + + //check if it is an allowed scale + if (!Ext.Array.contains(me.allowedScales, scale)) { + throw('#setScale: scale must be an allowed scale (' + me.allowedScales.join(', ') + ')'); + } + + me.scale = scale; + me.setUI(ui); + }, + + // inherit docs + setUI: function(ui) { + var me = this; + + //we need to append the scale to the UI, if not already done + if (me.scale && !ui.match(me.scale)) { + ui = ui + '-' + me.scale; + } + + me.callParent([ui]); + + // Set all the state classNames, as they need to include the UI + // me.disabledCls += ' ' + me.baseCls + '-' + me.ui + '-disabled'; + }, + + + // @private + onMouseDown: function(e) { + var me = this; + + if (Ext.isIE) { + // In IE the use of unselectable on the button's elements causes the element + // to not receive focus, even when it is directly clicked. + me.getFocusEl().focus(); + } + + if (!me.disabled && e.button === 0) { + Ext.button.Manager.onButtonMousedown(me, e); + me.addClsWithUI(me.pressedCls); + } + }, + // @private + onMouseUp: function(e) { + var me = this; + if (e.button === 0) { + if (!me.pressed) { + me.removeClsWithUI(me.pressedCls); + } + } + }, + // @private + onMenuShow: function(e) { + var me = this; + me.ignoreNextClick = 0; + me.addClsWithUI(me.menuActiveCls); + me.fireEvent('menushow', me, me.menu); + }, + + // @private + onMenuHide: function(e) { + var me = this; + me.removeClsWithUI(me.menuActiveCls); + me.ignoreNextClick = Ext.defer(me.restoreClick, 250, me); + me.fireEvent('menuhide', me, me.menu); + me.focus(); + }, + + // @private + restoreClick: function() { + this.ignoreNextClick = 0; + }, + + // @private + onDownKey: function(k, e) { + var me = this; + + if (me.menu && !me.disabled) { + me.showMenu(); + e.stopEvent(); + return false; + } + } +}); diff --git a/extjs-django/marvel/static/extjs/src/button/Cycle.js b/extjs-django/marvel/static/extjs/src/button/Cycle.js new file mode 100644 index 0000000..8644af1 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/button/Cycle.js @@ -0,0 +1,248 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * A specialized SplitButton that contains a menu of {@link Ext.menu.CheckItem} elements. The button automatically + * cycles through each menu item on click, raising the button's {@link #change} event (or calling the button's + * {@link #changeHandler} function, if supplied) for the active menu item. Clicking on the arrow section of the + * button displays the dropdown menu just like a normal SplitButton. Example usage: + * + * @example + * Ext.create('Ext.button.Cycle', { + * showText: true, + * prependText: 'View as ', + * renderTo: Ext.getBody(), + * menu: { + * id: 'view-type-menu', + * items: [{ + * text: 'text only', + * iconCls: 'view-text', + * checked: true + * },{ + * text: 'HTML', + * iconCls: 'view-html' + * }] + * }, + * changeHandler: function(cycleBtn, activeItem) { + * Ext.Msg.alert('Change View', activeItem.text); + * } + * }); + */ +Ext.define('Ext.button.Cycle', { + + /* Begin Definitions */ + + alias: 'widget.cycle', + + extend: 'Ext.button.Split', + alternateClassName: 'Ext.CycleButton', + + /* End Definitions */ + + /** + * @cfg {Object[]} items + * An array of {@link Ext.menu.CheckItem} **config** objects to be used when creating the button's menu items (e.g., + * `{text:'Foo', iconCls:'foo-icon'}`) + * + * @deprecated 4.0 Use the {@link #cfg-menu} config instead. All menu items will be created as + * {@link Ext.menu.CheckItem CheckItems}. + */ + /** + * @cfg {Boolean} [showText=false] + * True to display the active item's text as the button text. The Button will show its + * configured {@link #text} if this config is omitted. + */ + /** + * @cfg {String} [prependText=''] + * A static string to prepend before the active item's text when displayed as the button's text (only applies when + * showText = true). + */ + /** + * @cfg {Function} changeHandler + * A callback function that will be invoked each time the active menu item in the button's menu has changed. If this + * callback is not supplied, the SplitButton will instead fire the {@link #change} event on active item change. The + * changeHandler function will be called with the following argument list: (SplitButton this, Ext.menu.CheckItem + * item) + */ + /** + * @cfg {String} forceIcon + * A css class which sets an image to be used as the static icon for this button. This icon will always be displayed + * regardless of which item is selected in the dropdown list. This overrides the default behavior of changing the + * button's icon to match the selected item's icon on change. + */ + + /** + * @cfg {Number/String} forceGlyph + * The charCode to be used as the static icon for this button. This icon will always be + * displayed regardless of which item is selected in the dropdown list. This override + * the default behavior of changing the button's icon to match the selected item's icon + * on change. This property expects a format consistent with that of {@link #glyph} + */ + /** + * @property {Ext.menu.Menu} menu + * The {@link Ext.menu.Menu Menu} object used to display the {@link Ext.menu.CheckItem CheckItems} representing the + * available choices. + */ + + // @private + getButtonText: function(item) { + var me = this, + text = ''; + + if (item && me.showText === true) { + if (me.prependText) { + text += me.prependText; + } + text += item.text; + return text; + } + return me.text; + }, + + /** + * Sets the button's active menu item. + * @param {Ext.menu.CheckItem} item The item to activate + * @param {Boolean} [suppressEvent=false] True to prevent the button's change event from firing. + */ + setActiveItem: function(item, suppressEvent) { + var me = this; + + if (!Ext.isObject(item)) { + item = me.menu.getComponent(item); + } + if (item) { + if (!me.rendered) { + me.text = me.getButtonText(item); + me.iconCls = item.iconCls; + me.glyph = item.glyph; + } else { + me.setText(me.getButtonText(item)); + me.setIconCls(item.iconCls); + me.setGlyph(item.glyph); + } + me.activeItem = item; + if (!item.checked) { + item.setChecked(true, false); + } + if (me.forceIcon) { + me.setIconCls(me.forceIcon); + } + if (me.forceGlyph) { + me.setGlyph(me.forceGlyph); + } + if (!suppressEvent) { + me.fireEvent('change', me, item); + } + } + }, + + /** + * Gets the currently active menu item. + * @return {Ext.menu.CheckItem} The active item + */ + getActiveItem: function() { + return this.activeItem; + }, + + // @private + initComponent: function() { + var me = this, + checked = 0, + items, + i, iLen, item; + + me.addEvents( + /** + * @event change + * Fires after the button's active menu item has changed. Note that if a {@link #changeHandler} function is + * set on this CycleButton, it will be called instead on active item change and this change event will not + * be fired. + * @param {Ext.button.Cycle} this + * @param {Ext.menu.CheckItem} item The menu item that was selected + */ + "change" + ); + + if (me.changeHandler) { + me.on('change', me.changeHandler, me.scope || me); + delete me.changeHandler; + } + + // Allow them to specify a menu config which is a standard Button config. + // Remove direct use of "items" in 5.0. + items = (me.menu.items || []).concat(me.items || []); + me.menu = Ext.applyIf({ + cls: Ext.baseCSSPrefix + 'cycle-menu', + items: [] + }, me.menu); + + iLen = items.length; + + // Convert all items to CheckItems + for (i = 0; i < iLen; i++) { + item = items[i]; + + item = Ext.applyIf({ + group : me.id, + itemIndex : i, + checkHandler : me.checkHandler, + scope : me, + checked : item.checked || false + }, item); + + me.menu.items.push(item); + + if (item.checked) { + checked = i; + } + } + + me.itemCount = me.menu.items.length; + me.callParent(arguments); + me.on('click', me.toggleSelected, me); + me.setActiveItem(checked, me); + + // If configured with a fixed width, the cycling will center a different child item's text each click. Prevent this. + if (me.width && me.showText) { + me.addCls(Ext.baseCSSPrefix + 'cycle-fixed-width'); + } + }, + + // @private + checkHandler: function(item, pressed) { + if (pressed) { + this.setActiveItem(item); + } + }, + + /** + * This is normally called internally on button click, but can be called externally to advance the button's active + * item programmatically to the next one in the menu. If the current item is the last one in the menu the active + * item will be set to the first item in the menu. + */ + toggleSelected: function() { + var me = this, + m = me.menu, + checkItem; + + checkItem = me.activeItem.next(':not([disabled])') || m.items.getAt(0); + checkItem.setChecked(true); + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/button/Manager.js b/extjs-django/marvel/static/extjs/src/button/Manager.js new file mode 100644 index 0000000..5b0e021 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/button/Manager.js @@ -0,0 +1,147 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @private + */ +Ext.define('Ext.button.Manager', { + singleton: true, + + alternateClassName: 'Ext.ButtonToggleManager', + + groups: {}, + + pressedButton: null, + + buttonSelector: '.' + Ext.baseCSSPrefix + 'btn', + + init: function() { + var me = this; + if (!me.initialized) { + Ext.getDoc().on({ + keydown: me.onDocumentKeyDown, + mouseup: me.onDocumentMouseUp, + scope: me + }); + me.initialized = true; + } + }, + + // Buttons must react to SPACE and ENTER to trigger the click handler. + // Now that they are `` elements, we use a keydown listener. + onDocumentKeyDown: function(e) { + var k = e.getKey(), + btn; + + // SPACE and ENTER trigger a click + if (k === e.SPACE || k === e.ENTER) { + + // Look for a Button's encapsulating element + btn = e.getTarget(this.buttonSelector); + + // If found, fire the Button's onClick + if (btn) { + Ext.getCmp(btn.id).onClick(e); + } + } + }, + + // Called by buton instances. + // Track the button which was mousedowned upon so that the next *document* mouseup can be delivered to it + // in case mouse is moved outside of button element. + onButtonMousedown: function(button, e) { + var pressed = this.pressedButton; + if (pressed) { + pressed.onMouseUp(e); + } + this.pressedButton = button; + }, + + onDocumentMouseUp: function(e) { + var pressed = this.pressedButton; + + if (pressed) { + pressed.onMouseUp(e); + this.pressedButton = null; + } + }, + + toggleGroup: function(btn, state) { + if (state) { + var g = this.groups[btn.toggleGroup], + length = g.length, + i; + + for (i = 0; i < length; i++) { + if (g[i] !== btn) { + g[i].toggle(false); + } + } + } + }, + + register: function(btn) { + var me = this, + groups = this.groups, + group = groups[btn.toggleGroup]; + + me.init(); + if (!btn.toggleGroup) { + return; + } + + if (!group) { + group = groups[btn.toggleGroup] = []; + } + group.push(btn); + btn.on('toggle', me.toggleGroup, me); + }, + + unregister: function(btn) { + if (!btn.toggleGroup) { + return; + } + var me = this, + group = me.groups[btn.toggleGroup]; + + if (group) { + Ext.Array.remove(group, btn); + btn.un('toggle', me.toggleGroup, me); + } + }, + + // Gets the pressed button in the passed group or null + // @param {String} group + // @return {Ext.button.Button} + getPressed: function(group) { + var g = this.groups[group], + i = 0, + len; + + if (g) { + for (len = g.length; i < len; i++) { + if (g[i].pressed === true) { + return g[i]; + } + } + } + return null; + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/button/Split.js b/extjs-django/marvel/static/extjs/src/button/Split.js new file mode 100644 index 0000000..331589d --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/button/Split.js @@ -0,0 +1,119 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * A split button that provides a built-in dropdown arrow that can fire an event separately from the default click event + * of the button. Typically this would be used to display a dropdown menu that provides additional options to the + * primary button action, but any custom handler can provide the arrowclick implementation. Example usage: + * + * @example + * // display a dropdown menu: + * Ext.create('Ext.button.Split', { + * renderTo: Ext.getBody(), + * text: 'Options', + * // handle a click on the button itself + * handler: function() { + * alert("The button was clicked"); + * }, + * menu: new Ext.menu.Menu({ + * items: [ + * // these will render as dropdown menu items when the arrow is clicked: + * {text: 'Item 1', handler: function(){ alert("Item 1 clicked"); }}, + * {text: 'Item 2', handler: function(){ alert("Item 2 clicked"); }} + * ] + * }) + * }); + * + * Instead of showing a menu, you can provide any type of custom functionality you want when the dropdown + * arrow is clicked: + * + * Ext.create('Ext.button.Split', { + * renderTo: 'button-ct', + * text: 'Options', + * handler: optionsHandler, + * arrowHandler: myCustomHandler + * }); + * + */ +Ext.define('Ext.button.Split', { + + /* Begin Definitions */ + alias: 'widget.splitbutton', + + extend: 'Ext.button.Button', + alternateClassName: 'Ext.SplitButton', + /* End Definitions */ + + /** + * @cfg {Function} arrowHandler + * A function called when the arrow button is clicked (can be used instead of click event) + * @cfg {Ext.button.Split} arrowHandler.this + * @cfg {Event} arrowHandler.e The click event. + */ + /** + * @cfg {String} arrowTooltip + * The title attribute of the arrow. + */ + + // @private + arrowCls : 'split', + split : true, + + // @private + initComponent : function(){ + this.callParent(); + /** + * @event arrowclick + * Fires when this button's arrow is clicked. + * @param {Ext.button.Split} this + * @param {Event} e The click event. + */ + this.addEvents("arrowclick"); + }, + + /** + * Sets this button's arrow click handler. + * @param {Function} handler The function to call when the arrow is clicked. + * @param {Object} scope (optional) Scope for the function passed above. + */ + setArrowHandler : function(handler, scope){ + this.arrowHandler = handler; + this.scope = scope; + }, + + // @private + onClick : function(e, t) { + var me = this; + + e.preventDefault(); + if (!me.disabled) { + if (me.overMenuTrigger) { + me.maybeShowMenu(); + me.fireEvent("arrowclick", me, e); + if (me.arrowHandler) { + me.arrowHandler.call(me.scope || me, me, e); + } + } else { + me.doToggle(); + me.fireHandler(e); + } + } + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/chart/Callout.js b/extjs-django/marvel/static/extjs/src/chart/Callout.js new file mode 100644 index 0000000..8fb1812 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/Callout.js @@ -0,0 +1,162 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.Callout + * A mixin providing callout functionality for Ext.chart.series.Series. + */ +Ext.define('Ext.chart.Callout', { + + /* Begin Definitions */ + + /* End Definitions */ + + constructor: function(config) { + if (config.callouts) { + config.callouts.styles = Ext.applyIf(config.callouts.styles || {}, { + color: "#000", + font: "11px Helvetica, sans-serif" + }); + this.callouts = Ext.apply(this.callouts || {}, config.callouts); + this.calloutsArray = []; + } + }, + + renderCallouts: function() { + if (!this.callouts) { + return; + } + + var me = this, + items = me.items, + animate = me.chart.animate, + config = me.callouts, + styles = config.styles, + group = me.calloutsArray, + store = me.chart.getChartStore(), + len = store.getCount(), + ratio = items.length / len, + previouslyPlacedCallouts = [], + i, + count, + j, + p, + item, + label, + storeItem, + display; + + for (i = 0, count = 0; i < len; i++) { + for (j = 0; j < ratio; j++) { + item = items[count]; + label = group[count]; + storeItem = store.getAt(i); + + display = (!config.filter || config.filter(storeItem)); + + if (!display && !label) { + count++; + continue; + } + + if (!label) { + group[count] = label = me.onCreateCallout(storeItem, item, i, display, j, count); + } + for (p in label) { + if (label[p] && label[p].setAttributes) { + label[p].setAttributes(styles, true); + } + } + if (!display) { + for (p in label) { + if (label[p]) { + if (label[p].setAttributes) { + label[p].setAttributes({ + hidden: true + }, true); + } else if(label[p].setVisible) { + label[p].setVisible(false); + } + } + } + } + if (config && config.renderer) { + config.renderer(label, storeItem); + } + me.onPlaceCallout(label, storeItem, item, i, display, animate, + j, count, previouslyPlacedCallouts); + previouslyPlacedCallouts.push(label); + count++; + } + } + this.hideCallouts(count); + }, + + onCreateCallout: function(storeItem, item, i, display) { + var me = this, + group = me.calloutsGroup, + config = me.callouts, + styles = (config ? config.styles : undefined), + width = (styles ? styles.width : 0), + height = (styles ? styles.height : 0), + chart = me.chart, + surface = chart.surface, + calloutObj = { + //label: false, + //box: false, + lines: false + }; + + calloutObj.lines = surface.add(Ext.apply({}, + { + type: 'path', + path: 'M0,0', + stroke: me.getLegendColor() || '#555' + }, + styles)); + + if (config.items) { + calloutObj.panel = new Ext.Panel({ + style: "position: absolute;", + width: width, + height: height, + items: config.items, + renderTo: chart.el + }); + } + + return calloutObj; + }, + + hideCallouts: function(index) { + var calloutsArray = this.calloutsArray, + len = calloutsArray.length, + co, + p; + while (len-->index) { + co = calloutsArray[len]; + for (p in co) { + if (co[p]) { + co[p].hide(true); + } + } + } + } +}); diff --git a/extjs-django/marvel/static/extjs/src/chart/Chart.js b/extjs-django/marvel/static/extjs/src/chart/Chart.js new file mode 100644 index 0000000..d175a6e --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/Chart.js @@ -0,0 +1,1123 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * Charts provide a flexible way to achieve a wide range of data visualization capablitities. + * Each Chart gets its data directly from a {@link Ext.data.Store Store}, and automatically + * updates its display whenever data in the Store changes. In addition, the look and feel + * of a Chart can be customized using {@link Ext.chart.theme.Theme Theme}s. + * + * ## Creating a Simple Chart + * + * Every Chart has three key parts - a {@link Ext.data.Store Store} that contains the data, + * an array of {@link Ext.chart.axis.Axis Axes} which define the boundaries of the Chart, + * and one or more {@link Ext.chart.series.Series Series} to handle the visual rendering of the data points. + * + * ### 1. Creating a Store + * + * The first step is to create a {@link Ext.data.Model Model} that represents the type of + * data that will be displayed in the Chart. For example the data for a chart that displays + * a weather forecast could be represented as a series of "WeatherPoint" data points with + * two fields - "temperature", and "date": + * + * Ext.define('WeatherPoint', { + * extend: 'Ext.data.Model', + * fields: ['temperature', 'date'] + * }); + * + * Next a {@link Ext.data.Store Store} must be created. The store contains a collection of "WeatherPoint" Model instances. + * The data could be loaded dynamically, but for sake of ease this example uses inline data: + * + * var store = Ext.create('Ext.data.Store', { + * model: 'WeatherPoint', + * data: [ + * { temperature: 58, date: new Date(2011, 1, 1, 8) }, + * { temperature: 63, date: new Date(2011, 1, 1, 9) }, + * { temperature: 73, date: new Date(2011, 1, 1, 10) }, + * { temperature: 78, date: new Date(2011, 1, 1, 11) }, + * { temperature: 81, date: new Date(2011, 1, 1, 12) } + * ] + * }); + * + * For additional information on Models and Stores please refer to the [Data Guide](#/guide/data). + * + * ### 2. Creating the Chart object + * + * Now that a Store has been created it can be used in a Chart: + * + * Ext.create('Ext.chart.Chart', { + * renderTo: Ext.getBody(), + * width: 400, + * height: 300, + * store: store + * }); + * + * That's all it takes to create a Chart instance that is backed by a Store. + * However, if the above code is run in a browser, a blank screen will be displayed. + * This is because the two pieces that are responsible for the visual display, + * the Chart's {@link #cfg-axes axes} and {@link #cfg-series series}, have not yet been defined. + * + * ### 3. Configuring the Axes + * + * {@link Ext.chart.axis.Axis Axes} are the lines that define the boundaries of the data points that a Chart can display. + * This example uses one of the most common Axes configurations - a horizontal "x" axis, and a vertical "y" axis: + * + * Ext.create('Ext.chart.Chart', { + * ... + * axes: [ + * { + * title: 'Temperature', + * type: 'Numeric', + * position: 'left', + * fields: ['temperature'], + * minimum: 0, + * maximum: 100 + * }, + * { + * title: 'Time', + * type: 'Time', + * position: 'bottom', + * fields: ['date'], + * dateFormat: 'ga' + * } + * ] + * }); + * + * The "Temperature" axis is a vertical {@link Ext.chart.axis.Numeric Numeric Axis} and is positioned on the left edge of the Chart. + * It represents the bounds of the data contained in the "WeatherPoint" Model's "temperature" field that was + * defined above. The minimum value for this axis is "0", and the maximum is "100". + * + * The horizontal axis is a {@link Ext.chart.axis.Time Time Axis} and is positioned on the bottom edge of the Chart. + * It represents the bounds of the data contained in the "WeatherPoint" Model's "date" field. + * The {@link Ext.chart.axis.Time#cfg-dateFormat dateFormat} + * configuration tells the Time Axis how to format it's labels. + * + * Here's what the Chart looks like now that it has its Axes configured: + * + * {@img Ext.chart.Chart/Ext.chart.Chart1.png Chart Axes} + * + * ### 4. Configuring the Series + * + * The final step in creating a simple Chart is to configure one or more {@link Ext.chart.series.Series Series}. + * Series are responsible for the visual representation of the data points contained in the Store. + * This example only has one Series: + * + * Ext.create('Ext.chart.Chart', { + * ... + * axes: [ + * ... + * ], + * series: [ + * { + * type: 'line', + * xField: 'date', + * yField: 'temperature' + * } + * ] + * }); + * + * This Series is a {@link Ext.chart.series.Line Line Series}, and it uses the "date" and "temperature" fields + * from the "WeatherPoint" Models in the Store to plot its data points: + * + * {@img Ext.chart.Chart/Ext.chart.Chart2.png Line Series} + * + * See the [Line Charts Example](#!/example/charts/Charts.html) for a live demo. + * + * ## Themes + * + * The color scheme for a Chart can be easily changed using the {@link #cfg-theme theme} configuration option: + * + * Ext.create('Ext.chart.Chart', { + * ... + * theme: 'Green', + * ... + * }); + * + * {@img Ext.chart.Chart/Ext.chart.Chart3.png Green Theme} + * + * For more information on Charts please refer to the [Charting Guide](#/guide/charting). + */ +Ext.define('Ext.chart.Chart', { + extend: 'Ext.draw.Component', + + alias: 'widget.chart', + + mixins: { + themeManager: 'Ext.chart.theme.Theme', + mask: 'Ext.chart.Mask', + navigation: 'Ext.chart.Navigation', + bindable: 'Ext.util.Bindable', + observable: 'Ext.util.Observable' + }, + + uses: [ + 'Ext.chart.series.Series' + ], + + requires: [ + 'Ext.util.MixedCollection', + 'Ext.data.StoreManager', + 'Ext.chart.Legend', + 'Ext.chart.theme.Base', + 'Ext.chart.theme.Theme', + 'Ext.util.DelayedTask' + ], + + /* End Definitions */ + + // @private + viewBox: false, + + /** + * @cfg {String} theme + * The name of the theme to be used. A theme defines the colors and other visual displays of tick marks + * on axis, text, title text, line colors, marker colors and styles, etc. Possible theme values are 'Base', 'Green', + * 'Sky', 'Red', 'Purple', 'Blue', 'Yellow' and also six category themes 'Category1' to 'Category6'. Default value + * is 'Base'. + */ + + /** + * @cfg {Boolean/Object} animate + * True for the default animation (easing: 'ease' and duration: 500) or a standard animation config + * object to be used for default chart animations. Defaults to false. + */ + animate: false, + + /** + * @cfg {Boolean/Object} legend + * True for the default legend display or a legend config object. Defaults to false. + */ + legend: false, + + /** + * @cfg {Number} insetPadding + * The amount of inset padding in pixels for the chart. Defaults to 10. + */ + insetPadding: 10, + + /** + * @cfg {Object/Boolean} background + * The chart background. This can be a gradient object, image, or color. Defaults to false for no + * background. For example, if `background` were to be a color we could set the object as + * + * background: { + * //color string + * fill: '#ccc' + * } + * + * You can specify an image by using: + * + * background: { + * image: 'http://path.to.image/' + * } + * + * Also you can specify a gradient by using the gradient object syntax: + * + * background: { + * gradient: { + * id: 'gradientId', + * angle: 45, + * stops: { + * 0: { + * color: '#555' + * } + * 100: { + * color: '#ddd' + * } + * } + * } + * } + */ + background: false, + + /** + * @cfg {Object[]} gradients + * Define a set of gradients that can be used as `fill` property in sprites. The gradients array is an + * array of objects with the following properties: + * + * - **id** - string - The unique name of the gradient. + * - **angle** - number, optional - The angle of the gradient in degrees. + * - **stops** - object - An object with numbers as keys (from 0 to 100) and style objects as values + * + * For example: + * + * gradients: [{ + * id: 'gradientId', + * angle: 45, + * stops: { + * 0: { + * color: '#555' + * }, + * 100: { + * color: '#ddd' + * } + * } + * }, { + * id: 'gradientId2', + * angle: 0, + * stops: { + * 0: { + * color: '#590' + * }, + * 20: { + * color: '#599' + * }, + * 100: { + * color: '#ddd' + * } + * } + * }] + * + * Then the sprites can use `gradientId` and `gradientId2` by setting the fill attributes to those ids, for example: + * + * sprite.setAttributes({ + * fill: 'url(#gradientId)' + * }, true); + */ + + /** + * @cfg {Ext.data.Store} store + * The store that supplies data to this chart. + */ + + /** + * @cfg {Ext.chart.series.Series[]} series + * Array of {@link Ext.chart.series.Series Series} instances or config objects. For example: + * + * series: [{ + * type: 'column', + * axis: 'left', + * listeners: { + * 'afterrender': function() { + * console('afterrender'); + * } + * }, + * xField: 'category', + * yField: 'data1' + * }] + */ + + /** + * @cfg {Ext.chart.axis.Axis[]} axes + * Array of {@link Ext.chart.axis.Axis Axis} instances or config objects. For example: + * + * axes: [{ + * type: 'Numeric', + * position: 'left', + * fields: ['data1'], + * title: 'Number of Hits', + * minimum: 0, + * //one minor tick between two major ticks + * minorTickSteps: 1 + * }, { + * type: 'Category', + * position: 'bottom', + * fields: ['name'], + * title: 'Month of the Year' + * }] + */ + + constructor: function(config) { + var me = this, + defaultAnim; + + config = Ext.apply({}, config); + me.initTheme(config.theme || me.theme); + if (me.gradients) { + Ext.apply(config, { gradients: me.gradients }); + } + if (me.background) { + Ext.apply(config, { background: me.background }); + } + if (config.animate) { + defaultAnim = { + easing: 'ease', + duration: 500 + }; + if (Ext.isObject(config.animate)) { + config.animate = Ext.applyIf(config.animate, defaultAnim); + } + else { + config.animate = defaultAnim; + } + } + + me.mixins.observable.constructor.call(me, config); + if (config.enableMask) { + me.mixins.mask.constructor.call(me); + } + me.mixins.navigation.constructor.call(me); + me.callParent([config]); + }, + + getChartStore: function(){ + return this.substore || this.store; + }, + + initComponent: function() { + var me = this, + axes, + series; + me.callParent(); + me.addEvents( + 'itemmousedown', + 'itemmouseup', + 'itemmouseover', + 'itemmouseout', + 'itemclick', + 'itemdblclick', + 'itemdragstart', + 'itemdrag', + 'itemdragend', + /** + * @event beforerefresh + * Fires before a refresh to the chart data is called. If the beforerefresh handler returns false the + * {@link #event-refresh} action will be cancelled. + * @param {Ext.chart.Chart} this + */ + 'beforerefresh', + /** + * @event refresh + * Fires after the chart data has been refreshed. + * @param {Ext.chart.Chart} this + */ + 'refresh' + ); + Ext.applyIf(me, { + zoom: { + width: 1, + height: 1, + x: 0, + y: 0 + } + }); + me.maxGutters = { left: 0, right: 0, bottom: 0, top: 0 }; + me.store = Ext.data.StoreManager.lookup(me.store); + axes = me.axes; + me.axes = new Ext.util.MixedCollection(false, function(a) { return a.position; }); + if (axes) { + me.axes.addAll(axes); + } + series = me.series; + me.series = new Ext.util.MixedCollection(false, function(a) { return a.seriesId || (a.seriesId = Ext.id(null, 'ext-chart-series-')); }); + if (series) { + me.series.addAll(series); + } + if (me.legend !== false) { + me.legend = new Ext.chart.Legend(Ext.applyIf({chart:me}, me.legend)); + } + + me.on({ + mousemove: me.onMouseMove, + mouseleave: me.onMouseLeave, + mousedown: me.onMouseDown, + mouseup: me.onMouseUp, + click: me.onClick, + dblclick: me.onDblClick, + scope: me + }); + }, + + // @private overrides the component method to set the correct dimensions to the chart. + afterComponentLayout: function(width, height, oldWidth, oldHeight) { + var me = this; + if (Ext.isNumber(width) && Ext.isNumber(height)) { + if (width !== oldWidth || height !== oldHeight) { + me.curWidth = width; + me.curHeight = height; + me.redraw(true); + me.needsRedraw = false; + } else if (me.needsRedraw) { + me.redraw(); + me.needsRedraw = false; + } + } + this.callParent(arguments); + }, + + /** + * Redraws the chart. If animations are set this will animate the chart too. + * @param {Boolean} resize (optional) flag which changes the default origin points of the chart for animations. + */ + redraw: function(resize) { + var me = this, + seriesItems = me.series.items, + seriesLen = seriesItems.length, + axesItems = me.axes.items, + axesLen = axesItems.length, + themeIndex = 0, + i, item, + chartBBox = me.chartBBox = { + x: 0, + y: 0, + height: me.curHeight, + width: me.curWidth + }, + legend = me.legend, + series; + + me.surface.setSize(chartBBox.width, chartBBox.height); + // Instantiate Series and Axes + for (i = 0; i < seriesLen; i++) { + item = seriesItems[i]; + if (!item.initialized) { + series = me.initializeSeries(item, i, themeIndex); + } else { + series = item; + } + // Allow the series to react to a redraw, for example, a pie series + // backed by a remote data set needs to build legend labels correctly + series.onRedraw(); + // For things like stacked bar charts, a single series can consume + // multiple colors from the index, so we compensate for it here + if (Ext.isArray(item.yField)) { + themeIndex += item.yField.length; + } else { + ++themeIndex; + } + } + for (i = 0; i < axesLen; i++) { + item = axesItems[i]; + if (!item.initialized) { + me.initializeAxis(item); + } + } + //process all views (aggregated data etc) on stores + //before rendering. + for (i = 0; i < axesLen; i++) { + axesItems[i].processView(); + } + for (i = 0; i < axesLen; i++) { + axesItems[i].drawAxis(true); + } + + // Create legend if not already created + if (legend !== false && legend.visible) { + if (legend.update || !legend.created) { + legend.create(); + } + } + + // Place axes properly, including influence from each other + me.alignAxes(); + + // Reposition legend based on new axis alignment + if (legend !== false && legend.visible) { + legend.updatePosition(); + } + + // Find the max gutters + me.getMaxGutters(); + + // Draw axes and series + me.resizing = !!resize; + + for (i = 0; i < axesLen; i++) { + axesItems[i].drawAxis(); + } + for (i = 0; i < seriesLen; i++) { + me.drawCharts(seriesItems[i]); + } + me.resizing = false; + }, + + // @private set the store after rendering the chart. + afterRender: function() { + var me = this; + + me.callParent(arguments); + + if (me.categoryNames) { + me.setCategoryNames(me.categoryNames); + } + + me.bindStore(me.store, true); + me.refresh(); + + if (me.surface.engine === 'Vml') { + me.on('added', me.onAddedVml, me); + me.mon(me.hierarchyEventSource, 'added', me.onContainerAddedVml, me); + } + }, + + // When using a vml surface we need to redraw when this chart or one of its ancestors + // is moved to a new container after render, because moving the vml chart causes the + // vml elements to go haywire, some displaing incorrectly or not displaying at all. + // This appears to be caused by the component being moved to the detached body element + // before being added to the new container. + onAddedVml: function() { + this.needsRedraw = true; // redraw after component layout + }, + + onContainerAddedVml: function(container) { + if (this.isDescendantOf(container)) { + this.needsRedraw = true; // redraw after component layout + } + }, + + // @private get x and y position of the mouse cursor. + getEventXY: function(e) { + var me = this, + box = this.surface.getRegion(), + pageXY = e.getXY(), + x = pageXY[0] - box.left, + y = pageXY[1] - box.top; + return [x, y]; + }, + + onClick: function(e) { + this.handleClick('itemclick', e); + }, + + onDblClick: function(e) { + this.handleClick('itemdblclick', e); + }, + + // @private wrap the mouse down position to delegate the event to the series. + handleClick: function(name, e) { + var me = this, + position = me.getEventXY(e), + seriesItems = me.series.items, + i, ln, series, + item; + + // Ask each series if it has an item corresponding to (not necessarily exactly + // on top of) the current mouse coords. Fire itemclick event. + for (i = 0, ln = seriesItems.length; i < ln; i++) { + series = seriesItems[i]; + if (Ext.draw.Draw.withinBox(position[0], position[1], series.bbox)) { + if (series.getItemForPoint) { + item = series.getItemForPoint(position[0], position[1]); + if (item) { + series.fireEvent(name, item); + } + } + } + } + }, + + // @private wrap the mouse down position to delegate the event to the series. + onMouseDown: function(e) { + var me = this, + position = me.getEventXY(e), + seriesItems = me.series.items, + i, ln, series, + item; + + if (me.enableMask) { + me.mixins.mask.onMouseDown.call(me, e); + } + // Ask each series if it has an item corresponding to (not necessarily exactly + // on top of) the current mouse coords. Fire itemmousedown event. + for (i = 0, ln = seriesItems.length; i < ln; i++) { + series = seriesItems[i]; + if (Ext.draw.Draw.withinBox(position[0], position[1], series.bbox)) { + if (series.getItemForPoint) { + item = series.getItemForPoint(position[0], position[1]); + if (item) { + series.fireEvent('itemmousedown', item); + } + } + } + } + }, + + // @private wrap the mouse up event to delegate it to the series. + onMouseUp: function(e) { + var me = this, + position = me.getEventXY(e), + seriesItems = me.series.items, + i, ln, series, + item; + + if (me.enableMask) { + me.mixins.mask.onMouseUp.call(me, e); + } + // Ask each series if it has an item corresponding to (not necessarily exactly + // on top of) the current mouse coords. Fire itemmouseup event. + for (i = 0, ln = seriesItems.length; i < ln; i++) { + series = seriesItems[i]; + if (Ext.draw.Draw.withinBox(position[0], position[1], series.bbox)) { + if (series.getItemForPoint) { + item = series.getItemForPoint(position[0], position[1]); + if (item) { + series.fireEvent('itemmouseup', item); + } + } + } + } + }, + + // @private wrap the mouse move event so it can be delegated to the series. + onMouseMove: function(e) { + var me = this, + position = me.getEventXY(e), + seriesItems = me.series.items, + i, ln, series, + item, last, storeItem, storeField; + + + if (me.enableMask) { + me.mixins.mask.onMouseMove.call(me, e); + } + // Ask each series if it has an item corresponding to (not necessarily exactly + // on top of) the current mouse coords. Fire itemmouseover/out events. + for (i = 0, ln = seriesItems.length; i < ln; i++) { + series = seriesItems[i]; + if (Ext.draw.Draw.withinBox(position[0], position[1], series.bbox)) { + if (series.getItemForPoint) { + item = series.getItemForPoint(position[0], position[1]); + last = series._lastItemForPoint; + storeItem = series._lastStoreItem; + storeField = series._lastStoreField; + + + if (item !== last || item && (item.storeItem != storeItem || item.storeField != storeField)) { + if (last) { + series.fireEvent('itemmouseout', last); + delete series._lastItemForPoint; + delete series._lastStoreField; + delete series._lastStoreItem; + } + if (item) { + series.fireEvent('itemmouseover', item); + series._lastItemForPoint = item; + series._lastStoreItem = item.storeItem; + series._lastStoreField = item.storeField; + } + } + } + } else { + last = series._lastItemForPoint; + if (last) { + series.fireEvent('itemmouseout', last); + delete series._lastItemForPoint; + delete series._lastStoreField; + delete series._lastStoreItem; + } + } + } + }, + + // @private handle mouse leave event. + onMouseLeave: function(e) { + var me = this, + seriesItems = me.series.items, + i, ln, series; + + if (me.enableMask) { + me.mixins.mask.onMouseLeave.call(me, e); + } + for (i = 0, ln = seriesItems.length; i < ln; i++) { + series = seriesItems[i]; + delete series._lastItemForPoint; + } + }, + + // @private buffered refresh for when we update the store + delayRefresh: function() { + var me = this; + if (!me.refreshTask) { + me.refreshTask = new Ext.util.DelayedTask(me.refresh, me); + } + me.refreshTask.delay(me.refreshBuffer); + }, + + // @private + refresh: function() { + var me = this; + + if (me.rendered && me.curWidth !== undefined && me.curHeight !== undefined) { + if (!me.isVisible(true)) { + if (!me.refreshPending) { + me.setShowListeners('mon'); + me.refreshPending = true; + } + return; + } + if (me.fireEvent('beforerefresh', me) !== false) { + me.redraw(); + me.fireEvent('refresh', me); + } + } + }, + + onShow: function(){ + var me = this; + me.callParent(arguments); + if (me.refreshPending) { + me.delayRefresh(); + me.setShowListeners('mun'); + } + delete me.refreshPending; + }, + + setShowListeners: function(method){ + var me = this; + me[method](me.hierarchyEventSource, { + scope: me, + single: true, + show: me.forceRefresh, + expand: me.forceRefresh + }); + }, + + doRefresh: function(){ + // Data in the main store has changed, clear the sub store + this.setSubStore(null); + this.refresh(); + }, + + forceRefresh: function(container) { + var me = this; + if (me.isDescendantOf(container) && me.refreshPending) { + // Add unbind here, because either expand/show could be fired, + // so be sure to unbind the listener that didn't + me.setShowListeners('mun'); + me.delayRefresh(); + } + delete me.refreshPending; + }, + + bindStore: function(store, initial) { + var me = this; + me.mixins.bindable.bindStore.apply(me, arguments); + if (me.store && !initial) { + me.refresh(); + } + }, + + getStoreListeners: function() { + var refresh = this.doRefresh, + delayRefresh = this.delayRefresh; + + return { + refresh: refresh, + add: delayRefresh, + bulkremove: delayRefresh, + update: delayRefresh, + clear: refresh + }; + }, + + setSubStore: function(subStore){ + this.substore = subStore; + }, + + // @private Create Axis + initializeAxis: function(axis) { + var me = this, + chartBBox = me.chartBBox, + w = chartBBox.width, + h = chartBBox.height, + x = chartBBox.x, + y = chartBBox.y, + themeAttrs = me.themeAttrs, + config = { + chart: me + }; + if (themeAttrs) { + config.axisStyle = Ext.apply({}, themeAttrs.axis); + config.axisLabelLeftStyle = Ext.apply({}, themeAttrs.axisLabelLeft); + config.axisLabelRightStyle = Ext.apply({}, themeAttrs.axisLabelRight); + config.axisLabelTopStyle = Ext.apply({}, themeAttrs.axisLabelTop); + config.axisLabelBottomStyle = Ext.apply({}, themeAttrs.axisLabelBottom); + config.axisTitleLeftStyle = Ext.apply({}, themeAttrs.axisTitleLeft); + config.axisTitleRightStyle = Ext.apply({}, themeAttrs.axisTitleRight); + config.axisTitleTopStyle = Ext.apply({}, themeAttrs.axisTitleTop); + config.axisTitleBottomStyle = Ext.apply({}, themeAttrs.axisTitleBottom); + } + switch (axis.position) { + case 'top': + Ext.apply(config, { + length: w, + width: h, + x: x, + y: y + }); + break; + case 'bottom': + Ext.apply(config, { + length: w, + width: h, + x: x, + y: h + }); + break; + case 'left': + Ext.apply(config, { + length: h, + width: w, + x: x, + y: h + }); + break; + case 'right': + Ext.apply(config, { + length: h, + width: w, + x: w, + y: h + }); + break; + } + if (!axis.chart) { + Ext.apply(config, axis); + axis = me.axes.replace(Ext.createByAlias('axis.' + axis.type.toLowerCase(), config)); + } else { + Ext.apply(axis, config); + } + axis.initialized = true; + }, + + + /** + * @private Get initial insets; override to provide different defaults. + */ + getInsets: function() { + var me = this, + insetPadding = me.insetPadding; + + return { + top: insetPadding, + right: insetPadding, + bottom: insetPadding, + left: insetPadding + }; + }, + + /** + * @private Calculate insets for the Chart. + */ + calculateInsets: function() { + var me = this, + legend = me.legend, + axes = me.axes, + edges = ['top', 'right', 'bottom', 'left'], + insets, i, l, edge, isVertical, axis, bbox; + + function getAxis(edge) { + var i = axes.findIndex('position', edge); + return (i < 0) ? null : axes.getAt(i); + } + + insets = me.getInsets(); + + // Find the space needed by axes and legend as a positive inset from each edge + for (i = 0, l = edges.length; i < l; i++) { + edge = edges[i]; + + isVertical = (edge === 'left' || edge === 'right'); + axis = getAxis(edge); + + // Add legend size if it's on this edge + if (legend !== false) { + if (legend.position === edge) { + bbox = legend.getBBox(); + insets[edge] += (isVertical ? bbox.width : bbox.height) + me.insetPadding; + } + } + + // Add axis size if there's one on this edge only if it has been + //drawn before. + if (axis && axis.bbox) { + bbox = axis.bbox; + insets[edge] += (isVertical ? bbox.width : bbox.height); + } + }; + + return insets; + }, + + /** + * @private Adjust the dimensions and positions of each axis and the chart body area after accounting + * for the space taken up on each side by the axes and legend. + * This code is taken from Ext.chart.Chart and refactored to provide better flexibility. + */ + alignAxes: function() { + var me = this, + axesItems = me.axes.items, + insets, chartBBox, i, l, axis, pos, isVertical; + + insets = me.calculateInsets(); + + // Build the chart bbox based on the collected inset values + chartBBox = { + x: insets.left, + y: insets.top, + width: me.curWidth - insets.left - insets.right, + height: me.curHeight - insets.top - insets.bottom + }; + me.chartBBox = chartBBox; + + // Go back through each axis and set its length and position based on the + // corresponding edge of the chartBBox + for (i = 0, l = axesItems.length; i < l; i++) { + axis = axesItems[i]; + pos = axis.position; + isVertical = pos === 'left' || pos === 'right'; + + axis.x = (pos === 'right' ? chartBBox.x + chartBBox.width : chartBBox.x); + axis.y = (pos === 'top' ? chartBBox.y : chartBBox.y + chartBBox.height); + axis.width = (isVertical ? chartBBox.width : chartBBox.height); + axis.length = (isVertical ? chartBBox.height : chartBBox.width); + }; + }, + + // @private initialize the series. + initializeSeries: function(series, idx, themeIndex) { + var me = this, + themeAttrs = me.themeAttrs, + seriesObj, markerObj, seriesThemes, st, + markerThemes, colorArrayStyle = [], + isInstance = (series instanceof Ext.chart.series.Series). + i = 0, l, config; + + if (!series.initialized) { + config = { + chart: me, + seriesId: series.seriesId + }; + if (themeAttrs) { + seriesThemes = themeAttrs.seriesThemes; + markerThemes = themeAttrs.markerThemes; + seriesObj = Ext.apply({}, themeAttrs.series); + markerObj = Ext.apply({}, themeAttrs.marker); + config.seriesStyle = Ext.apply(seriesObj, seriesThemes[themeIndex % seriesThemes.length]); + config.seriesLabelStyle = Ext.apply({}, themeAttrs.seriesLabel); + config.markerStyle = Ext.apply(markerObj, markerThemes[themeIndex % markerThemes.length]); + if (themeAttrs.colors) { + config.colorArrayStyle = themeAttrs.colors; + } else { + colorArrayStyle = []; + for (l = seriesThemes.length; i < l; i++) { + st = seriesThemes[i]; + if (st.fill || st.stroke) { + colorArrayStyle.push(st.fill || st.stroke); + } + } + if (colorArrayStyle.length) { + config.colorArrayStyle = colorArrayStyle; + } + } + config.seriesIdx = idx; + config.themeIdx = themeIndex; + } + + if (isInstance) { + Ext.applyIf(series, config); + } + else { + Ext.applyIf(config, series); + series = me.series.replace(Ext.createByAlias('series.' + series.type.toLowerCase(), config)); + } + } + + if (series.initialize) { + series.initialize(); + } + series.initialized = true; + return series; + }, + + // @private + getMaxGutters: function() { + var me = this, + seriesItems = me.series.items, + i, ln, series, gutters, + lowerH = 0, upperH = 0, lowerV = 0, upperV = 0; + + for (i = 0, ln = seriesItems.length; i < ln; i++) { + gutters = seriesItems[i].getGutters(); + if (gutters) { + if (gutters.verticalAxis) { + lowerV = Math.max(lowerV, gutters.lower); + upperV = Math.max(upperV, gutters.upper); + } + else { + lowerH = Math.max(lowerH, gutters.lower); + upperH = Math.max(upperH, gutters.upper); + } + } + } + me.maxGutters = { + left: lowerH, + right: upperH, + bottom: lowerV, + top: upperV + }; + }, + + // @private draw axis. + drawAxis: function(axis) { + axis.drawAxis(); + }, + + // @private draw series. + drawCharts: function(series) { + series.triggerafterrender = false; + series.drawSeries(); + if (!this.animate) { + series.fireEvent('afterrender'); + } + }, + /** + * Saves the chart by either triggering a download or returning a string containing the chart data + * as SVG. The action depends on the export type specified in the passed configuration. The chart + * will be exported using either the {@link Ext.draw.engine.SvgExporter} or the {@link Ext.draw.engine.ImageExporter} + * classes. + * + * Possible export types: + * + * - 'image/png' + * - 'image/jpeg', + * - 'image/svg+xml' + * + * If 'image/svg+xml' is specified, the SvgExporter will be used. + * If 'image/png' or 'image/jpeg' are specified, the ImageExporter will be used. This exporter + * must post the SVG data to a remote server to have the data processed, see the {@link Ext.draw.engine.ImageExporter} + * for more details. + * + * Example usage: + * + * chart.save({ + * type: 'image/png' + * }); + * + * **Important**: By default, chart data is sent to a server operated + * by Sencha to do data processing. You may change this default by + * setting the {@link Ext.draw.engine.ImageExporter#defaultUrl defaultUrl} of the {@link Ext.draw.engine.ImageExporter} class. + * In addition, please note that this service only creates PNG images. + * + * @param {Object} [config] The configuration to be passed to the exporter. + * See the export method for the appropriate exporter for the relevant + * configuration options + * @return {Object} See the return types for the appropriate exporter + */ + save: function(config){ + return Ext.draw.Surface.save(this.surface, config); + }, + // @private remove gently. + destroy: function() { + Ext.destroy(this.surface); + this.bindStore(null); + this.callParent(arguments); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/chart/Highlight.js b/extjs-django/marvel/static/extjs/src/chart/Highlight.js new file mode 100644 index 0000000..75b57d1 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/Highlight.js @@ -0,0 +1,200 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.Highlight + * A mixin providing highlight functionality for Ext.chart.series.Series. + */ +Ext.define('Ext.chart.Highlight', { + + /* Begin Definitions */ + + requires: ['Ext.fx.Anim'], + + /* End Definitions */ + + /** + * @cfg {Boolean/Object} [highlight=false] Set to `true` to enable highlighting using the {@link #highlightCfg default highlight attributes}. + * + * Can also be an object with style properties (i.e fill, stroke, stroke-width, radius) which are may override the {@link #highlightCfg default highlight attributes}. + */ + highlight: false, + + /** + * @property {Object} highlightCfg The default properties to apply as a highight. Value is + * + * { + * fill: '#fdd', + * "stroke-width": 5, + * stroke: "#f55' + * } + */ + highlightCfg : { + fill: '#fdd', + "stroke-width": 5, + stroke: '#f55' + }, + + constructor: function(config) { + // If configured with a highlight object, apply to to *a local copy of* this class's highlightCfg. Do not mutate the prototype's copy. + if (config.highlight && (typeof config.highlight !== 'boolean')) { //is an object + this.highlightCfg = Ext.merge({}, this.highlightCfg, config.highlight); + } + }, + + /** + * Highlight the given series item. + * @param {Object} item Info about the item; same format as returned by #getItemForPoint. + */ + highlightItem: function(item) { + if (!item) { + return; + } + + var me = this, + sprite = item.sprite, + opts = Ext.merge({}, me.highlightCfg, me.highlight), + surface = me.chart.surface, + animate = me.chart.animate, + p, from, to, pi; + + if (!me.highlight || !sprite || sprite._highlighted) { + return; + } + if (sprite._anim) { + sprite._anim.paused = true; + } + sprite._highlighted = true; + if (!sprite._defaults) { + sprite._defaults = Ext.apply({}, sprite.attr); + from = {}; + to = {}; + // TODO: Clean up code below. + for (p in opts) { + if (! (p in sprite._defaults)) { + sprite._defaults[p] = surface.availableAttrs[p]; + } + from[p] = sprite._defaults[p]; + to[p] = opts[p]; + if (Ext.isObject(opts[p])) { + from[p] = {}; + to[p] = {}; + Ext.apply(sprite._defaults[p], sprite.attr[p]); + Ext.apply(from[p], sprite._defaults[p]); + for (pi in sprite._defaults[p]) { + if (! (pi in opts[p])) { + to[p][pi] = from[p][pi]; + } else { + to[p][pi] = opts[p][pi]; + } + } + for (pi in opts[p]) { + if (! (pi in to[p])) { + to[p][pi] = opts[p][pi]; + } + } + } + } + sprite._from = from; + sprite._to = to; + sprite._endStyle = to; + } + if (animate) { + sprite._anim = new Ext.fx.Anim({ + target: sprite, + from: sprite._from, + to: sprite._to, + duration: 150 + }); + } else { + sprite.setAttributes(sprite._to, true); + } + }, + + /** + * Un-highlight any existing highlights + */ + unHighlightItem: function() { + if (!this.highlight || !this.items) { + return; + } + + var me = this, + items = me.items, + len = items.length, + opts = Ext.merge({}, me.highlightCfg, me.highlight), + animate = me.chart.animate, + i = 0, + obj, p, sprite; + for (; i < len; i++) { + if (!items[i]) { + continue; + } + sprite = items[i].sprite; + if (sprite && sprite._highlighted) { + if (sprite._anim) { + sprite._anim.paused = true; + } + obj = {}; + for (p in opts) { + if (Ext.isObject(sprite._defaults[p])) { + obj[p] = Ext.apply({}, sprite._defaults[p]); + } + else { + obj[p] = sprite._defaults[p]; + } + } + if (animate) { + //sprite._to = obj; + sprite._endStyle = obj; + sprite._anim = new Ext.fx.Anim({ + target: sprite, + to: obj, + duration: 150 + }); + } + else { + sprite.setAttributes(obj, true); + } + delete sprite._highlighted; + //delete sprite._defaults; + } + } + }, + + cleanHighlights: function() { + if (!this.highlight) { + return; + } + + var group = this.group, + markerGroup = this.markerGroup, + i = 0, + l; + for (l = group.getCount(); i < l; i++) { + delete group.getAt(i)._defaults; + } + if (markerGroup) { + for (l = markerGroup.getCount(); i < l; i++) { + delete markerGroup.getAt(i)._defaults; + } + } + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/chart/Label.js b/extjs-django/marvel/static/extjs/src/chart/Label.js new file mode 100644 index 0000000..cc40238 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/Label.js @@ -0,0 +1,425 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * Labels is a mixin to the Series class. Labels methods are implemented + * in each of the Series (Pie, Bar, etc) for label creation and placement. + * + * The 2 methods that must be implemented by the Series are: + * + * - {@link #onCreateLabel} + * - {@link #onPlaceLabel} + * + * The application can override these methods to control the style and + * location of the labels. For instance, to display the labels in green and + * add a '+' symbol when the value of a Line series exceeds 50: + * + * Ext.define('Ext.chart.series.MyLine', { + * extend: 'Ext.chart.series.Line', + * alias: ['series.myline', 'Ext.chart.series.MyLine'], + * type: 'MYLINE', + * + * onPlaceLabel: function(label, storeItem, item, i, display, animate){ + * if (storeItem.data.y >= 50) { + * label.setAttributes({ + * fill: '#080', + * text: "+" + storeItem.data.y + * }, true); + * } + * return this.callParent(arguments); + * } + * }); + * + * Note that for simple effects, like the example above, it is simpler + * for the application to provide a label.renderer function in the config: + * + * label: { + * renderer: function(value, label, storeItem, item, i, display, animate, index) { + * if (value >= 50) { + * label.setAttributes({fill:'#080'}); + * value = "+" + value; + * } + * return value; + * } + * } + * + * The rule of thumb is that to customize the value and modify simple visual attributes, it + * is simpler to use a renderer function, while overridding `onCreateLabel` and `onPlaceLabel` + * allows the application to take entire control over the labels. + * + */ +Ext.define('Ext.chart.Label', { + + /* Begin Definitions */ + + requires: ['Ext.draw.Color'], + + /* End Definitions */ + + /** + * @method onCreateLabel + * @template + * + * Called each time a new label is created. + * + * **Note:** This method must be implemented in Series that mixes + * in this Label mixin. + * + * @param {Ext.data.Model} storeItem The element of the store that is + * related to the sprite. + * @param {Object} item The item related to the sprite. + * An item is an object containing the position of the shape + * used to describe the visualization and also pointing to the + * actual shape (circle, rectangle, path, etc). + * @param {Number} i The index of the element created + * (i.e the first created label, second created label, etc). + * @param {String} display The label.display type. + * May be `false` if the label is hidden + * @return {Ext.draw.Sprite} The created sprite that will draw the label. + */ + + /** + * @method onPlaceLabel + * @template + * + * Called for updating the position of the label. + * + * **Note:** This method must be implemented in Series that mixes + * in this Label mixin. + * + * @param {Ext.draw.Sprite} label The sprite that draws the label. + * @param {Ext.data.Model} storeItem The element of the store + * that is related to the sprite. + * @param {Object} item The item related to the + * sprite. An item is an object containing the position of + * the shape used to describe the visualization and also + * pointing to the actual shape (circle, rectangle, path, etc). + * @param {Number} i The index of the element to be updated + * (i.e. whether it is the first, second, third from the + * labelGroup) + * @param {String} display The label.display type. + * May be `false` if the label is hidden + * @param {Boolean} animate A boolean value to set or unset + * animations for the labels. + * @param {Number} index The series index. + */ + + /** + * @cfg {Object} label + * Object with the following properties: + * + * @cfg {String} label.display + * + * Specifies the presence and position of the labels. The possible values depend on the chart type. + * For Line and Scatter charts: "under" | "over" | "rotate". + * For Bar and Column charts: "insideStart" | "insideEnd" | "outside". + * For Pie charts: "outside" | "rotate". + * For all charts: "none" hides the labels and "middle" is reserved for future use. + * On stacked Bar and stacked Column charts, if 'stackedDisplay' is set, the values + * "over" or "under" can be passed internally to {@link #onCreateLabel} and {@link #onPlaceLabel} + * (however they cannot be used by the application as config values for label.display). + * + * Default value: 'none'. + * + * @cfg {String} label.stackedDisplay + * + * The type of label we want to display as a summary on a stacked + * bar or a stacked column. If set to 'total', the total amount + * of all the stacked values is displayed on top of the column. + * If set to 'balances', the total amount of the positive values + * is displayed on top of the column and the total amount of the + * negative values is displayed at the bottom. + * + * Default value: 'none'. + * + * @cfg {String} label.color + * + * The color of the label text. + * + * Default value: '#000' (black). + * + * @cfg {Boolean} label.contrast + * + * True to render the label in contrasting color with the backround of a column + * in a Bar chart or of a slice in a Pie chart. The label color should be specified + * in hex values (eg. '#f00' or '#ff0000'), not as a CSS color name (eg. 'red'). + * + * Default value: false. + * + * @cfg {String|String[]} label.field + * + * The name(s) of the field(s) to be displayed in the labels. If your chart has 3 series + * that correspond to the fields 'a', 'b', and 'c' of your model and you only want to + * display labels for the series 'c', you must still provide an array `[null, null, 'c']`. + * + * Default value: 'name'. + * + * @cfg {Number} label.minMargin + * + * Specifies the minimum distance from a label to the origin of + * the visualization. This parameter is useful when using + * PieSeries width variable pie slice lengths. + * + * Default value: 50. + * + * @cfg {String} label.font + * + * The font used for the labels. + * + * Default value: `"11px Helvetica, sans-serif"`. + * + * @cfg {String} label.orientation + * + * Either "horizontal" or "vertical". + * + * Default value: `"horizontal"`. + * + * @cfg {Function} label.renderer + * + * Optional function for formatting the label into a displayable value. + * + * The arguments to the method are: + * + * - *`value`* The value + * - *`label`*, *`storeItem`*, *`item`*, *`i`*, *`display`*, *`animate`*, *`index`* + * + * Same arguments as {@link #onPlaceLabel}. + * + * Default value: `function(v) { return v; }` + */ + + // @private a regex to parse url type colors. + colorStringRe: /url\s*\(\s*#([^\/)]+)\s*\)/, + + // @private the mixin constructor. Used internally by Series. + constructor: function(config) { + var me = this; + me.label = Ext.applyIf(me.label || {}, + { + display: "none", + stackedDisplay: "none", + color: "#000", + field: "name", + minMargin: 50, + font: "11px Helvetica, sans-serif", + orientation: "horizontal", + renderer: Ext.identityFn + }); + + if (me.label.display !== 'none') { + me.labelsGroup = me.chart.surface.getGroup(me.seriesId + '-labels'); + } + }, + + // @private a method to render all labels in the labelGroup + renderLabels: function() { + var me = this, + chart = me.chart, + gradients = chart.gradients, + items = me.items, + animate = chart.animate, + config = me.label, + display = config.display, + stackedDisplay = config.stackedDisplay, + format = config.renderer, + color = config.color, + field = [].concat(config.field), + group = me.labelsGroup, + groupLength = (group || 0) && group.length, + store = me.chart.getChartStore(), + len = store.getCount(), + itemLength = (items || 0) && items.length, + ratio = itemLength / len, + gradientsCount = (gradients || 0) && gradients.length, + Color = Ext.draw.Color, + hides = [], + gradient, i, count, groupIndex, index, j, k, colorStopTotal, colorStopIndex, colorStop, item, label, + storeItem, sprite, spriteColor, spriteBrightness, labelColor, colorString, + total, totalPositive, totalNegative, topText, bottomText; + + if (display == 'none' || !group) { + return; + } + // no items displayed, hide all labels + if(itemLength == 0){ + while(groupLength--) { + hides.push(groupLength); + } + } else { + for (i = 0, count = 0, groupIndex = 0; i < len; i++) { + index = 0; + for (j = 0; j < ratio; j++) { + item = items[count]; + label = group.getAt(groupIndex); + storeItem = store.getAt(i); + //check the excludes + while(this.__excludes && this.__excludes[index]) { + index++; + } + + if (!item && label) { + label.hide(true); + groupIndex++; + } + + if (item && field[j]) { + if (!label) { + label = me.onCreateLabel(storeItem, item, i, display); + if (!label) { + break; + } + } + + // set color (the app can override it in onPlaceLabel) + label.setAttributes({ + fill: String(color) + }, true); + + // position the label + me.onPlaceLabel(label, storeItem, item, i, display, animate, index); + groupIndex++; + + // set contrast + if (config.contrast && item.sprite) { + sprite = item.sprite; + //set the color string to the color to be set, only read the + // _endStyle/_to if we're animating, otherwise they're not relevant + if (animate && sprite._endStyle) { + colorString = sprite._endStyle.fill; + } else if (animate && sprite._to) { + colorString = sprite._to.fill; + } else { + colorString = sprite.attr.fill; + } + colorString = colorString || sprite.attr.fill; + + spriteColor = Color.fromString(colorString); + //color wasn't parsed property maybe because it's a gradient id + if (colorString && !spriteColor) { + colorString = colorString.match(me.colorStringRe)[1]; + for (k = 0; k < gradientsCount; k++) { + gradient = gradients[k]; + if (gradient.id == colorString) { + //avg color stops + colorStop = 0; colorStopTotal = 0; + for (colorStopIndex in gradient.stops) { + colorStop++; + colorStopTotal += Color.fromString(gradient.stops[colorStopIndex].color).getGrayscale(); + } + spriteBrightness = (colorStopTotal / colorStop) / 255; + break; + } + } + } + else { + spriteBrightness = spriteColor.getGrayscale() / 255; + } + if (label.isOutside) { + spriteBrightness = 1; + } + labelColor = Color.fromString(label.attr.fill || label.attr.color).getHSL(); + labelColor[2] = spriteBrightness > 0.5 ? 0.2 : 0.8; + label.setAttributes({ + fill: String(Color.fromHSL.apply({}, labelColor)) + }, true); + } + + // display totals on stacked charts + if (me.stacked && stackedDisplay && (item.totalPositiveValues || item.totalNegativeValues)) { + totalPositive = (item.totalPositiveValues || 0); + totalNegative = (item.totalNegativeValues || 0); + total = totalPositive + totalNegative; + + if (stackedDisplay == 'total') { + topText = format(total); + } else if (stackedDisplay == 'balances') { + if (totalPositive == 0 && totalNegative == 0) { + topText = format(0); + } else { + topText = format(totalPositive); + bottomText = format(totalNegative); + } + } + + if (topText) { + label = group.getAt(groupIndex); + if (!label) { + label = me.onCreateLabel(storeItem, item, i, 'over'); + } + labelColor = Color.fromString(label.attr.color || label.attr.fill).getHSL(); + label.setAttributes({ + text: topText, + style: config.font, + fill: String(Color.fromHSL.apply({}, labelColor)) + }, true); + me.onPlaceLabel(label, storeItem, item, i, 'over', animate, index); + groupIndex ++; + } + + if (bottomText) { + label = group.getAt(groupIndex); + if (!label) { + label = me.onCreateLabel(storeItem, item, i, 'under'); + } + labelColor = Color.fromString(label.attr.color || label.attr.fill).getHSL(); + label.setAttributes({ + text: bottomText, + style: config.font, + fill: String(Color.fromHSL.apply({}, labelColor)) + }, true); + me.onPlaceLabel(label, storeItem, item, i, 'under', animate, index); + groupIndex ++; + } + } + } + count++; + index++; + } + } + groupLength = group.length; + + while(groupLength > groupIndex){ + hides.push(groupIndex); + groupIndex++; + } + } + me.hideLabels(hides); + }, + + hideLabels: function(hides){ + var labelsGroup = this.labelsGroup, + hlen = !!hides && hides.length; + + if (!labelsGroup) { + return; + } + + if (hlen === false) { + hlen = labelsGroup.getCount(); + while (hlen--) { + labelsGroup.getAt(hlen).hide(true); + } + } else { + while(hlen--) { + labelsGroup.getAt(hides[hlen]).hide(true); + } + } + } +}); diff --git a/extjs-django/marvel/static/extjs/src/chart/Legend.js b/extjs-django/marvel/static/extjs/src/chart/Legend.js new file mode 100644 index 0000000..b9c0a58 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/Legend.js @@ -0,0 +1,560 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.Legend + * + * Defines a legend for a chart's series. + * The 'chart' member must be set prior to rendering. + * The legend class displays a list of legend items each of them related with a + * series being rendered. In order to render the legend item of the proper series + * the series configuration object must have `showInLegend` set to true. + * + * The legend configuration object accepts a `position` as parameter. + * The `position` parameter can be `left`, `right` + * `top` or `bottom`. For example: + * + * legend: { + * position: 'right' + * }, + * + * ## Example + * + * @example + * var store = Ext.create('Ext.data.JsonStore', { + * fields: ['name', 'data1', 'data2', 'data3', 'data4', 'data5'], + * data: [ + * { 'name': 'metric one', 'data1': 10, 'data2': 12, 'data3': 14, 'data4': 8, 'data5': 13 }, + * { 'name': 'metric two', 'data1': 7, 'data2': 8, 'data3': 16, 'data4': 10, 'data5': 3 }, + * { 'name': 'metric three', 'data1': 5, 'data2': 2, 'data3': 14, 'data4': 12, 'data5': 7 }, + * { 'name': 'metric four', 'data1': 2, 'data2': 14, 'data3': 6, 'data4': 1, 'data5': 23 }, + * { 'name': 'metric five', 'data1': 27, 'data2': 38, 'data3': 36, 'data4': 13, 'data5': 33 } + * ] + * }); + * + * Ext.create('Ext.chart.Chart', { + * renderTo: Ext.getBody(), + * width: 500, + * height: 300, + * animate: true, + * store: store, + * shadow: true, + * theme: 'Category1', + * legend: { + * position: 'top' + * }, + * axes: [ + * { + * type: 'Numeric', + * position: 'left', + * fields: ['data1', 'data2', 'data3', 'data4', 'data5'], + * title: 'Sample Values', + * grid: { + * odd: { + * opacity: 1, + * fill: '#ddd', + * stroke: '#bbb', + * 'stroke-width': 1 + * } + * }, + * minimum: 0, + * adjustMinimumByMajorUnit: 0 + * }, + * { + * type: 'Category', + * position: 'bottom', + * fields: ['name'], + * title: 'Sample Metrics', + * grid: true, + * label: { + * rotate: { + * degrees: 315 + * } + * } + * } + * ], + * series: [{ + * type: 'area', + * highlight: false, + * axis: 'left', + * xField: 'name', + * yField: ['data1', 'data2', 'data3', 'data4', 'data5'], + * style: { + * opacity: 0.93 + * } + * }] + * }); + */ +Ext.define('Ext.chart.Legend', { + + /* Begin Definitions */ + + requires: ['Ext.chart.LegendItem'], + + /* End Definitions */ + + /** + * @cfg {Boolean} visible + * Whether or not the legend should be displayed. + */ + visible: true, + + /** + * @cfg {Boolean} update + * If set to true the legend will be refreshed when the chart is. + * This is useful to update the legend items if series are + * added/removed/updated from the chart. Default is true. + */ + update: true, + + /** + * @cfg {String} position + * The position of the legend in relation to the chart. One of: "top", + * "bottom", "left", "right", or "float". If set to "float", then the legend + * box will be positioned at the point denoted by the x and y parameters. + */ + position: 'bottom', + + /** + * @cfg {Number} x + * X-position of the legend box. Used directly if position is set to "float", otherwise + * it will be calculated dynamically. + */ + x: 0, + + /** + * @cfg {Number} y + * Y-position of the legend box. Used directly if position is set to "float", otherwise + * it will be calculated dynamically. + */ + y: 0, + + /** + * @cfg {String} labelColor + * Color to be used for the legend labels, eg '#000' + */ + labelColor: '#000', + + /** + * @cfg {String} labelFont + * Font to be used for the legend labels, eg '12px Helvetica' + */ + labelFont: '12px Helvetica, sans-serif', + + /** + * @cfg {String} boxStroke + * Style of the stroke for the legend box + */ + boxStroke: '#000', + + /** + * @cfg {String} boxStrokeWidth + * Width of the stroke for the legend box + */ + boxStrokeWidth: 1, + + /** + * @cfg {String} boxFill + * Fill style for the legend box + */ + boxFill: '#FFF', + + /** + * @cfg {Number} itemSpacing + * Amount of space between legend items + */ + itemSpacing: 10, + + /** + * @cfg {Number} padding + * Amount of padding between the legend box's border and its items + */ + padding: 5, + + // @private + width: 0, + // @private + height: 0, + + /** + * @cfg {Number} boxZIndex + * Sets the z-index for the legend. Defaults to 100. + */ + boxZIndex: 100, + + /** + * Creates new Legend. + * @param {Object} config (optional) Config object. + */ + constructor: function(config) { + var me = this; + if (config) { + Ext.apply(me, config); + } + me.items = []; + /** + * Whether the legend box is oriented vertically, i.e. if it is on the left or right side or floating. + * @type {Boolean} + */ + me.isVertical = ("left|right|float".indexOf(me.position) !== -1); + + // cache these here since they may get modified later on + me.origX = me.x; + me.origY = me.y; + }, + + /** + * @private Create all the sprites for the legend + */ + create: function() { + var me = this, + seriesItems = me.chart.series.items, + i, ln, series; + + me.createBox(); + + if (me.rebuild !== false) { + me.createItems(); + } + + if (!me.created && me.isDisplayed()) { + me.created = true; + + // Listen for changes to series titles to trigger regeneration of the legend + for (i = 0, ln = seriesItems.length; i < ln; i++) { + series = seriesItems[i]; + series.on('titlechange', me.redraw, me); + } + } + }, + + /** + * @private Redraws the Legend + */ + redraw: function() { + var me = this; + + me.create(); + me.updatePosition(); + }, + + /** + * @private Determine whether the legend should be displayed. Looks at the legend's 'visible' config, + * and also the 'showInLegend' config for each of the series. + */ + isDisplayed: function() { + return this.visible && this.chart.series.findIndex('showInLegend', true) !== -1; + }, + + /** + * @private Create the series markers and labels + */ + createItems: function() { + var me = this, + seriesItems = me.chart.series.items, + items = me.items, + fields, i, li, j, lj, series, item; + + //remove all legend items + me.removeItems(); + + // Create all the item labels + for (i = 0, li = seriesItems.length; i < li; i++) { + series = seriesItems[i]; + + if (series.showInLegend) { + fields = [].concat(series.yField); + + for (j = 0, lj = fields.length; j < lj; j++) { + item = me.createLegendItem(series, j); + items.push(item); + } + } + } + + me.alignItems(); + }, + + /** + * @private Removes all legend items. + */ + removeItems: function() { + var me = this, + items = me.items, + len = items ? items.length : 0, + i; + + if (len) { + for (i = 0; i < len; i++) { + items[i].destroy(); + } + } + + //empty array + items.length = []; + }, + + /** + * @private + * Positions all items within Legend box. + */ + alignItems: function() { + var me = this, + padding = me.padding, + vertical = me.isVertical, + mfloor = Math.floor, + dim, maxWidth, maxHeight, totalWidth, totalHeight; + + dim = me.updateItemDimensions(); + + maxWidth = dim.maxWidth; + maxHeight = dim.maxHeight; + totalWidth = dim.totalWidth; + totalHeight = dim.totalHeight; + + // Store the collected dimensions for later + me.width = mfloor((vertical ? maxWidth : totalWidth) + padding * 2); + me.height = mfloor((vertical ? totalHeight : maxHeight) + padding * 2); + }, + + updateItemDimensions: function() { + var me = this, + items = me.items, + padding = me.padding, + itemSpacing = me.itemSpacing, + maxWidth = 0, + maxHeight = 0, + totalWidth = 0, + totalHeight = 0, + vertical = me.isVertical, + mfloor = Math.floor, + mmax = Math.max, + spacing = 0, + i, l, item, bbox, width, height; + + // Collect item dimensions and position each one + // properly in relation to the previous item + for (i = 0, l = items.length; i < l; i++) { + item = items[i]; + + bbox = item.getBBox(); + + //always measure from x=0, since not all markers go all the way to the left + width = bbox.width; + height = bbox.height; + + spacing = (i === 0 ? 0 : itemSpacing); + + // Set the item's position relative to the legend box + item.x = padding + mfloor(vertical ? 0 : totalWidth + spacing); + item.y = padding + mfloor(vertical ? totalHeight + spacing : 0) + height / 2; + + // Collect cumulative dimensions + totalWidth += spacing + width; + totalHeight += spacing + height; + maxWidth = mmax(maxWidth, width); + maxHeight = mmax(maxHeight, height); + } + + return { + totalWidth: totalWidth, + totalHeight: totalHeight, + maxWidth: maxWidth, + maxHeight: maxHeight + }; + }, + + /** + * @private Creates single Legend Item + */ + createLegendItem: function(series, yFieldIndex) { + var me = this; + + return new Ext.chart.LegendItem({ + legend: me, + series: series, + surface: me.chart.surface, + yFieldIndex: yFieldIndex + }); + }, + + /** + * @private Get the bounds for the legend's outer box + */ + getBBox: function() { + var me = this; + return { + x: Math.round(me.x) - me.boxStrokeWidth / 2, + y: Math.round(me.y) - me.boxStrokeWidth / 2, + width: me.width + me.boxStrokeWidth, + height: me.height + me.boxStrokeWidth + }; + }, + + /** + * @private Create the box around the legend items + */ + createBox: function() { + var me = this, + box, bbox; + + if (me.boxSprite) { + me.boxSprite.destroy(); + } + + bbox = me.getBBox(); + //if some of the dimensions are NaN this means that we + //cannot set a specific width/height for the legend + //container. One possibility for this is that there are + //actually no items to show in the legend, and the legend + //should be hidden. + if (isNaN(bbox.width) || isNaN(bbox.height)) { + me.boxSprite = false; + return; + } + + box = me.boxSprite = me.chart.surface.add(Ext.apply({ + type: 'rect', + stroke: me.boxStroke, + "stroke-width": me.boxStrokeWidth, + fill: me.boxFill, + zIndex: me.boxZIndex + }, bbox)); + + box.redraw(); + }, + + /** + * @private Calculates Legend position with respect to other Chart elements. + */ + calcPosition: function() { + var me = this, + x, y, + legendWidth = me.width, + legendHeight = me.height, + chart = me.chart, + chartBBox = chart.chartBBox, + insets = chart.insetPadding, + chartWidth = chartBBox.width - (insets * 2), + chartHeight = chartBBox.height - (insets * 2), + chartX = chartBBox.x + insets, + chartY = chartBBox.y + insets, + surface = chart.surface, + mfloor = Math.floor; + + // Find the position based on the dimensions + switch(me.position) { + case "left": + x = insets; + y = mfloor(chartY + chartHeight / 2 - legendHeight / 2); + break; + case "right": + x = mfloor(surface.width - legendWidth) - insets; + y = mfloor(chartY + chartHeight / 2 - legendHeight / 2); + break; + case "top": + x = mfloor(chartX + chartWidth / 2 - legendWidth / 2); + y = insets; + break; + case "bottom": + x = mfloor(chartX + chartWidth / 2 - legendWidth / 2); + y = mfloor(surface.height - legendHeight) - insets; + break; + default: + x = mfloor(me.origX) + insets; + y = mfloor(me.origY) + insets; + } + + return { x: x, y: y }; + }, + + /** + * @private Update the position of all the legend's sprites to match its current x/y values + */ + updatePosition: function() { + var me = this, + items = me.items, + pos, i, l, bbox; + + if (me.isDisplayed()) { + // Find the position based on the dimensions + pos = me.calcPosition(); + + me.x = pos.x; + me.y = pos.y; + + // Update the position of each item + for (i = 0, l = items.length; i < l; i++) { + items[i].updatePosition(); + } + + bbox = me.getBBox(); + + //if some of the dimensions are NaN this means that we + //cannot set a specific width/height for the legend + //container. One possibility for this is that there are + //actually no items to show in the legend, and the legend + //should be hidden. + if (isNaN(bbox.width) || isNaN(bbox.height)) { + if (me.boxSprite) { + me.boxSprite.hide(true); + } + } + else { + if (!me.boxSprite) { + me.createBox(); + } + + // Update the position of the outer box + me.boxSprite.setAttributes(bbox, true); + me.boxSprite.show(true); + } + } + }, + + /** toggle + * @param {Boolean} show Whether to show or hide the legend. + * + */ + toggle: function(show) { + var me = this, + i = 0, + items = me.items, + len = items.length; + + if (me.boxSprite) { + if (show) { + me.boxSprite.show(true); + } else { + me.boxSprite.hide(true); + } + } + + for (; i < len; ++i) { + if (show) { + items[i].show(true); + } else { + items[i].hide(true); + } + } + + me.visible = show; + } +}); diff --git a/extjs-django/marvel/static/extjs/src/chart/LegendItem.js b/extjs-django/marvel/static/extjs/src/chart/LegendItem.js new file mode 100644 index 0000000..8a9efd1 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/LegendItem.js @@ -0,0 +1,311 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.LegendItem + * A single item of a legend (marker plus label) + */ +Ext.define('Ext.chart.LegendItem', { + + /* Begin Definitions */ + + extend: 'Ext.draw.CompositeSprite', + + requires: ['Ext.chart.Shape'], + + /* End Definitions */ + + // Controls Series visibility + hiddenSeries: false, + + // These are cached for quick lookups + label: undefined, + + // Position of the item, relative to the upper-left corner of the legend box + x: 0, + y: 0, + zIndex: 500, + + // checks to make sure that a unit size follows the bold keyword in the font style value + boldRe: /bold\s\d{1,}.*/i, + + constructor: function(config) { + this.callParent(arguments); + this.createLegend(config); + }, + + /** + * Creates all the individual sprites for this legend item + */ + createLegend: function(config) { + var me = this, + series = me.series, + index = config.yFieldIndex; + + me.label = me.createLabel(config); + me.createSeriesMarkers(config); + + me.setAttributes({ + hidden: false + }, true); + + me.yFieldIndex = index; + + // Add event listeners + me.on('mouseover', me.onMouseOver, me); + me.on('mouseout', me.onMouseOut, me); + me.on('mousedown', me.onMouseDown, me); + + if (!series.visibleInLegend(index)) { + me.hiddenSeries = true; + me.label.setAttributes({ + opacity: 0.5 + }, true); + }; + + // Relative to 0,0 at first so that the bbox is calculated correctly + me.updatePosition({ x: 0, y: 0 }); + }, + + /** + * @private Retrieves text to be displayed as item label. + */ + getLabelText: function() { + var me = this, + series = me.series, + idx = me.yFieldIndex; + + function getSeriesProp(name) { + var val = series[name]; + return (Ext.isArray(val) ? val[idx] : val); + } + + return getSeriesProp('title') || getSeriesProp('yField'); + }, + + /** + * @private Creates label sprite. + */ + createLabel: function(config) { + var me = this, + legend = me.legend; + + return me.add('label', me.surface.add({ + type: 'text', + x: 20, + y: 0, + zIndex: (me.zIndex || 0) + 2, + fill: legend.labelColor, + font: legend.labelFont, + text: me.getLabelText(), + style: { + cursor: 'pointer' + } + })); + }, + + /** + * @private Creates Series marker Sprites. + */ + createSeriesMarkers: function(config) { + var me = this, + index = config.yFieldIndex, + series = me.series, + seriesType = series.type, + surface = me.surface, + z = me.zIndex; + + // Line series - display as short line with optional marker in the middle + if (seriesType === 'line' || seriesType === 'scatter') { + if(seriesType === 'line') { + var seriesStyle = Ext.apply(series.seriesStyle, series.style); + me.drawLine(0.5, 0.5, 16.5, 0.5, z, seriesStyle, index); + }; + + if (series.showMarkers || seriesType === 'scatter') { + var markerConfig = Ext.apply(series.markerStyle, series.markerConfig || {}, { + fill: series.getLegendColor(index) + }); + me.drawMarker(8.5, 0.5, z, markerConfig); + } + } + // All other series types - display as filled box + else { + me.drawFilledBox(12, 12, z, index); + } + }, + + /** + * @private Creates line sprite for Line series. + */ + drawLine: function(fromX, fromY, toX, toY, z, seriesStyle, index) { + var me = this, + surface = me.surface, + series = me.series; + + return me.add('line', surface.add({ + type: 'path', + path: 'M' + fromX + ',' + fromY + 'L' + toX + ',' + toY, + zIndex: (z || 0) + 2, + "stroke-width": series.lineWidth, + "stroke-linejoin": "round", + "stroke-dasharray": series.dash, + stroke: seriesStyle.stroke || series.getLegendColor(index) || '#000', + style: { + cursor: 'pointer' + } + })); + }, + + /** + * @private Creates series-shaped marker for Line and Scatter series. + */ + drawMarker: function(x, y, z, markerConfig) { + var me = this, + surface = me.surface, + series = me.series; + + return me.add('marker', Ext.chart.Shape[markerConfig.type](surface, { + fill: markerConfig.fill, + x: x, + y: y, + zIndex: (z || 0) + 2, + radius: markerConfig.radius || markerConfig.size, + style: { + cursor: 'pointer' + } + })); + }, + + /** + * @private Creates box-shaped marker for all series but Line and Scatter. + */ + drawFilledBox: function(width, height, z, index) { + var me = this, + surface = me.surface, + series = me.series; + + return me.add('box', surface.add({ + type: 'rect', + zIndex: (z || 0) + 2, + x: 0, + y: 0, + width: width, + height: height, + fill: series.getLegendColor(index), + style: { + cursor: 'pointer' + } + })); + }, + + /** + * @private Draws label in bold when mouse cursor is over the item. + */ + onMouseOver: function() { + var me = this; + + me.label.setStyle({ + 'font-weight': 'bold' + }); + me.series._index = me.yFieldIndex; + me.series.highlightItem(); + }, + + /** + * @private Draws label in normal when mouse cursor leaves the item. + */ + onMouseOut: function() { + var me = this, + legend = me.legend, + boldRe = me.boldRe; + + me.label.setStyle({ + 'font-weight': legend.labelFont && boldRe.test(legend.labelFont) ? 'bold' : 'normal' + }); + me.series._index = me.yFieldIndex; + me.series.unHighlightItem(); + }, + + /** + * @private Toggles Series visibility upon mouse click on the item. + */ + onMouseDown: function() { + var me = this, + index = me.yFieldIndex; + + if (!me.hiddenSeries) { + me.series.hideAll(index); + me.label.setAttributes({ + opacity: 0.5 + }, true); + } else { + me.series.showAll(index); + me.label.setAttributes({ + opacity: 1 + }, true); + } + me.hiddenSeries = !me.hiddenSeries; + me.legend.chart.redraw(); + }, + + /** + * Update the positions of all this item's sprites to match the root position + * of the legend box. + * @param {Object} relativeTo (optional) If specified, this object's 'x' and 'y' values will be used + * as the reference point for the relative positioning. Defaults to the Legend. + */ + updatePosition: function(relativeTo) { + var me = this, + items = me.items, + ln = items.length, + i = 0, + item; + if (!relativeTo) { + relativeTo = me.legend; + } + for (; i < ln; i++) { + item = items[i]; + switch (item.type) { + case 'text': + item.setAttributes({ + x: 20 + relativeTo.x + me.x, + y: relativeTo.y + me.y + }, true); + break; + case 'rect': + item.setAttributes({ + translate: { + x: relativeTo.x + me.x, + y: relativeTo.y + me.y - 6 + } + }, true); + break; + default: + item.setAttributes({ + translate: { + x: relativeTo.x + me.x, + y: relativeTo.y + me.y + } + }, true); + } + } + } +}); diff --git a/extjs-django/marvel/static/extjs/src/chart/Mask.js b/extjs-django/marvel/static/extjs/src/chart/Mask.js new file mode 100644 index 0000000..95262c2 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/Mask.js @@ -0,0 +1,227 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * Defines a mask for a chart's series. + * The 'chart' member must be set prior to rendering. + * + * A Mask can be used to select a certain region in a chart. + * When enabled, the `select` event will be triggered when a + * region is selected by the mask, allowing the user to perform + * other tasks like zooming on that region, etc. + * + * In order to use the mask one has to set the Chart `mask` option to + * `true`, `vertical` or `horizontal`. Then a possible configuration for the + * listener could be: + * + * items: { + * xtype: 'chart', + * animate: true, + * store: store1, + * mask: 'horizontal', + * listeners: { + * select: { + * fn: function(me, selection) { + * me.setZoom(selection); + * me.mask.hide(); + * } + * } + * } + * } + * + * In this example we zoom the chart to that particular region. You can also get + * a handle to a mask instance from the chart object. The `chart.mask` element is a + * `Ext.Panel`. + * + */ +Ext.define('Ext.chart.Mask', { + requires: [ + 'Ext.chart.MaskLayer' + ], + + /** + * @cfg {Boolean/String} mask + * Enables selecting a region on chart. True to enable any selection, + * 'horizontal' or 'vertical' to restrict the selection to X or Y axis. + * + * The mask in itself will do nothing but fire 'select' event. + * See {@link Ext.chart.Mask} for example. + */ + + /** + * Creates new Mask. + * @param {Object} [config] Config object. + */ + constructor: function(config) { + var me = this; + + me.addEvents('select'); + + if (config) { + Ext.apply(me, config); + } + if (me.enableMask) { + me.on('afterrender', function() { + //create a mask layer component + var comp = new Ext.chart.MaskLayer({ + renderTo: me.el, + hidden: true + }); + comp.el.on({ + 'mousemove': function(e) { + me.onMouseMove(e); + }, + 'mouseup': function(e) { + me.onMouseUp(e); + } + }); + comp.initDraggable(); + me.maskType = me.mask; + me.mask = comp; + me.maskSprite = me.surface.add({ + type: 'path', + path: ['M', 0, 0], + zIndex: 1001, + opacity: 0.6, + hidden: true, + stroke: '#00f', + cursor: 'crosshair' + }); + }, me, { single: true }); + } + }, + + onMouseUp: function(e) { + var me = this, + bbox = me.bbox || me.chartBBox, + sel; + me.maskMouseDown = false; + me.mouseDown = false; + if (me.mouseMoved) { + me.handleMouseEvent(e); + me.mouseMoved = false; + sel = me.maskSelection; + me.fireEvent('select', me, { + x: sel.x - bbox.x, + y: sel.y - bbox.y, + width: sel.width, + height: sel.height + }); + } + }, + + onMouseDown: function(e) { + this.handleMouseEvent(e); + }, + + onMouseMove: function(e) { + this.handleMouseEvent(e); + }, + + handleMouseEvent: function(e) { + var me = this, + mask = me.maskType, + bbox = me.bbox || me.chartBBox, + x = bbox.x, + y = bbox.y, + math = Math, + floor = math.floor, + abs = math.abs, + min = math.min, + max = math.max, + height = floor(y + bbox.height), + width = floor(x + bbox.width), + staticX = e.getPageX() - me.el.getX(), + staticY = e.getPageY() - me.el.getY(), + maskMouseDown = me.maskMouseDown, + path; + + staticX = max(staticX, x); + staticY = max(staticY, y); + staticX = min(staticX, width); + staticY = min(staticY, height); + + if (e.type === 'mousedown') { + // remember the cursor location + me.mouseDown = true; + me.mouseMoved = false; + me.maskMouseDown = { + x: staticX, + y: staticY + }; + } + else { + // mousedown or mouseup: + // track the cursor to display the selection + me.mouseMoved = me.mouseDown; + if (maskMouseDown && me.mouseDown) { + if (mask == 'horizontal') { + staticY = y; + maskMouseDown.y = height; + } + else if (mask == 'vertical') { + staticX = x; + maskMouseDown.x = width; + } + width = maskMouseDown.x - staticX; + height = maskMouseDown.y - staticY; + path = ['M', staticX, staticY, 'l', width, 0, 0, height, -width, 0, 'z']; + me.maskSelection = { + x: (width > 0 ? staticX : staticX + width) + me.el.getX(), + y: (height > 0 ? staticY : staticY + height) + me.el.getY(), + width: abs(width), + height: abs(height) + }; + me.mask.updateBox(me.maskSelection); + me.mask.show(); + me.maskSprite.setAttributes({ + hidden: true + }, true); + } + else { + if (mask == 'horizontal') { + path = ['M', staticX, y, 'L', staticX, height]; + } + else if (mask == 'vertical') { + path = ['M', x, staticY, 'L', width, staticY]; + } + else { + path = ['M', staticX, y, 'L', staticX, height, 'M', x, staticY, 'L', width, staticY]; + } + me.maskSprite.setAttributes({ + path: path, + 'stroke-width': mask === true ? 1 : 1, + hidden: false + }, true); + } + } + + }, + + onMouseLeave: function(e) { + var me = this; + me.mouseMoved = false; + me.mouseDown = false; + me.maskMouseDown = false; + me.mask.hide(); + me.maskSprite.hide(true); + } +}); + diff --git a/extjs-django/marvel/static/extjs/src/chart/MaskLayer.js b/extjs-django/marvel/static/extjs/src/chart/MaskLayer.js new file mode 100644 index 0000000..3bdc3c4 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/MaskLayer.js @@ -0,0 +1,68 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @private + */ +Ext.define('Ext.chart.MaskLayer', { + extend: 'Ext.Component', + + constructor: function(config) { + config = Ext.apply(config || {}, { + style: 'position:absolute;background-color:#ff9;cursor:crosshair;opacity:0.5;border:1px solid #00f;' + }); + this.callParent([config]); + }, + + initComponent: function() { + var me = this; + me.callParent(arguments); + me.addEvents( + 'mousedown', + 'mouseup', + 'mousemove', + 'mouseenter', + 'mouseleave' + ); + }, + + initDraggable: function() { + this.callParent(arguments); + this.dd.onStart = function (e) { + var me = this, + comp = me.comp; + + // Cache the start [X, Y] array + this.startPosition = comp.getPosition(true); + + // If client Component has a ghost method to show a lightweight version of itself + // then use that as a drag proxy unless configured to liveDrag. + if (comp.ghost && !comp.liveDrag) { + me.proxy = comp.ghost(); + me.dragTarget = me.proxy.header.el; + } + + // Set the constrainTo Region before we start dragging. + if (me.constrain || me.constrainDelegate) { + me.constrainTo = me.calculateConstrainRegion(); + } + }; + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/chart/Navigation.js b/extjs-django/marvel/static/extjs/src/chart/Navigation.js new file mode 100644 index 0000000..146018c --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/Navigation.js @@ -0,0 +1,135 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.Navigation + * + * Handles panning and zooming capabilities. + * + * Used as mixin by Ext.chart.Chart. + */ +Ext.define('Ext.chart.Navigation', { + + /** + * Zooms the chart to the specified selection range. + * Can be used with a selection mask. For example: + * + * items: { + * xtype: 'chart', + * animate: true, + * store: store1, + * mask: 'horizontal', + * listeners: { + * select: { + * fn: function(me, selection) { + * me.setZoom(selection); + * me.mask.hide(); + * } + * } + * } + * } + */ + setZoom: function(zoomConfig) { + var me = this, + axesItems = me.axes.items, + i, ln, axis, + bbox = me.chartBBox, + xScale = bbox.width, + yScale = bbox.height, + zoomArea = { + x : zoomConfig.x - me.el.getX(), + y : zoomConfig.y - me.el.getY(), + width : zoomConfig.width, + height : zoomConfig.height + }, + zoomer, ends, from, to, store, count, step, length, horizontal; + + for (i = 0, ln = axesItems.length; i < ln; i++) { + axis = axesItems[i]; + horizontal = (axis.position == 'bottom' || axis.position == 'top'); + if (axis.type == 'Category') { + if (!store) { + store = me.getChartStore(); + count = store.data.items.length; + } + zoomer = zoomArea; + length = axis.length; + step = Math.round(length / count); + if (horizontal) { + from = (zoomer.x ? Math.floor(zoomer.x / step) + 1 : 0); + to = (zoomer.x + zoomer.width) / step; + } else { + from = (zoomer.y ? Math.floor(zoomer.y / step) + 1 : 0); + to = (zoomer.y + zoomer.height) / step; + } + } + else { + zoomer = { + x : zoomArea.x / xScale, + y : zoomArea.y / yScale, + width : zoomArea.width / xScale, + height : zoomArea.height / yScale + } + ends = axis.calcEnds(); + if (horizontal) { + from = (ends.to - ends.from) * zoomer.x + ends.from; + to = (ends.to - ends.from) * zoomer.width + from; + } else { + to = (ends.to - ends.from) * (1 - zoomer.y) + ends.from; + from = to - (ends.to - ends.from) * zoomer.height; + } + } + axis.minimum = from; + axis.maximum = to; + if (horizontal) { + if (axis.doConstrain && me.maskType != 'vertical') { + axis.doConstrain(); + } + } + else { + if (axis.doConstrain && me.maskType != 'horizontal') { + axis.doConstrain(); + } + } + } + me.redraw(false); + }, + + /** + * Restores the zoom to the original value. This can be used to reset + * the previous zoom state set by `setZoom`. For example: + * + * myChart.restoreZoom(); + */ + restoreZoom: function() { + var me = this, + axesItems = me.axes.items, + i, ln, axis; + + me.setSubStore(null); + for (i = 0, ln = axesItems.length; i < ln; i++) { + axis = axesItems[i]; + delete axis.minimum; + delete axis.maximum; + } + me.redraw(false); + } + +}); diff --git a/extjs-django/marvel/static/extjs/src/chart/Shape.js b/extjs-django/marvel/static/extjs/src/chart/Shape.js new file mode 100644 index 0000000..831cd8a --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/Shape.js @@ -0,0 +1,126 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @private + */ +Ext.define('Ext.chart.Shape', { + + /* Begin Definitions */ + + singleton: true, + + /* End Definitions */ + + circle: function (surface, opts) { + return surface.add(Ext.apply({ + type: 'circle', + x: opts.x, + y: opts.y, + stroke: null, + radius: opts.radius + }, opts)); + }, + line: function (surface, opts) { + return surface.add(Ext.apply({ + type: 'rect', + x: opts.x - opts.radius, + y: opts.y - opts.radius, + height: 2 * opts.radius, + width: 2 * opts.radius / 5 + }, opts)); + }, + square: function (surface, opts) { + return surface.add(Ext.applyIf({ + type: 'rect', + x: opts.x - opts.radius, + y: opts.y - opts.radius, + height: 2 * opts.radius, + width: 2 * opts.radius, + radius: null + }, opts)); + }, + triangle: function (surface, opts) { + opts.radius *= 1.75; + return surface.add(Ext.apply({ + type: 'path', + stroke: null, + path: "M".concat(opts.x, ",", opts.y, "m0-", opts.radius * 0.58, "l", opts.radius * 0.5, ",", opts.radius * 0.87, "-", opts.radius, ",0z") + }, opts)); + }, + diamond: function (surface, opts) { + var r = opts.radius; + r *= 1.5; + return surface.add(Ext.apply({ + type: 'path', + stroke: null, + path: ["M", opts.x, opts.y - r, "l", r, r, -r, r, -r, -r, r, -r, "z"] + }, opts)); + }, + cross: function (surface, opts) { + var r = opts.radius; + r = r / 1.7; + return surface.add(Ext.apply({ + type: 'path', + stroke: null, + path: "M".concat(opts.x - r, ",", opts.y, "l", [-r, -r, r, -r, r, r, r, -r, r, r, -r, r, r, r, -r, r, -r, -r, -r, r, -r, -r, "z"]) + }, opts)); + }, + plus: function (surface, opts) { + var r = opts.radius / 1.3; + return surface.add(Ext.apply({ + type: 'path', + stroke: null, + path: "M".concat(opts.x - r / 2, ",", opts.y - r / 2, "l", [0, -r, r, 0, 0, r, r, 0, 0, r, -r, 0, 0, r, -r, 0, 0, -r, -r, 0, 0, -r, "z"]) + }, opts)); + }, + arrow: function (surface, opts) { + var r = opts.radius; + return surface.add(Ext.apply({ + type: 'path', + path: "M".concat(opts.x - r * 0.7, ",", opts.y - r * 0.4, "l", [r * 0.6, 0, 0, -r * 0.4, r, r * 0.8, -r, r * 0.8, 0, -r * 0.4, -r * 0.6, 0], "z") + }, opts)); + }, + drop: function (surface, x, y, text, size, angle) { + size = size || 30; + angle = angle || 0; + surface.add({ + type: 'path', + path: ['M', x, y, 'l', size, 0, 'A', size * 0.4, size * 0.4, 0, 1, 0, x + size * 0.7, y - size * 0.7, 'z'], + fill: '#000', + stroke: 'none', + rotate: { + degrees: 22.5 - angle, + x: x, + y: y + } + }); + angle = (angle + 90) * Math.PI / 180; + surface.add({ + type: 'text', + x: x + size * Math.sin(angle) - 10, // Shift here, Not sure why. + y: y + size * Math.cos(angle) + 5, + text: text, + 'font-size': size * 12 / 40, + stroke: 'none', + fill: '#fff' + }); + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/chart/Tip.js b/extjs-django/marvel/static/extjs/src/chart/Tip.js new file mode 100644 index 0000000..e5a6aca --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/Tip.js @@ -0,0 +1,118 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.Tip + * Provides tips for Ext.chart.series.Series. + */ +Ext.define('Ext.chart.Tip', { + + /* Begin Definitions */ + + requires: ['Ext.tip.ToolTip', 'Ext.chart.TipSurface'], + + /* End Definitions */ + + constructor: function(config) { + var me = this, + surface, + sprites, + tipSurface; + if (config.tips) { + me.tipTimeout = null; + me.tipConfig = Ext.apply({}, config.tips, { + renderer: Ext.emptyFn, + constrainPosition: true, + autoHide: true + }); + me.tooltip = new Ext.tip.ToolTip(me.tipConfig); + me.chart.surface.on('mousemove', me.tooltip.onMouseMove, me.tooltip); + me.chart.surface.on('mouseleave', function() { + me.hideTip(); + }); + if (me.tipConfig.surface) { + //initialize a surface + surface = me.tipConfig.surface; + sprites = surface.sprites; + tipSurface = new Ext.chart.TipSurface({ + id: 'tipSurfaceComponent', + sprites: sprites + }); + if (surface.width && surface.height) { + tipSurface.setSize(surface.width, surface.height); + } + me.tooltip.add(tipSurface); + me.spriteTip = tipSurface; + } + } + }, + + showTip: function(item) { + var me = this, + tooltip, + spriteTip, + tipConfig, + trackMouse, + sprite, + surface, + surfaceExt, + pos, + x, + y; + if (!me.tooltip) { + return; + } + clearTimeout(me.tipTimeout); + tooltip = me.tooltip; + spriteTip = me.spriteTip; + tipConfig = me.tipConfig; + trackMouse = tooltip.trackMouse; + if (!trackMouse) { + tooltip.trackMouse = true; + sprite = item.sprite; + surface = sprite.surface; + surfaceExt = Ext.get(surface.getId()); + if (surfaceExt) { + pos = surfaceExt.getXY(); + x = pos[0] + (sprite.attr.x || 0) + (sprite.attr.translation && sprite.attr.translation.x || 0); + y = pos[1] + (sprite.attr.y || 0) + (sprite.attr.translation && sprite.attr.translation.y || 0); + tooltip.targetXY = [x, y]; + } + } + if (spriteTip) { + tipConfig.renderer.call(tooltip, item.storeItem, item, spriteTip.surface); + } else { + tipConfig.renderer.call(tooltip, item.storeItem, item); + } + tooltip.show(); + tooltip.trackMouse = trackMouse; + }, + + hideTip: function(item) { + var tooltip = this.tooltip; + if (!tooltip) { + return; + } + clearTimeout(this.tipTimeout); + this.tipTimeout = setTimeout(function() { + tooltip.hide(); + }, 0); + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/chart/TipSurface.js b/extjs-django/marvel/static/extjs/src/chart/TipSurface.js new file mode 100644 index 0000000..45c18ad --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/TipSurface.js @@ -0,0 +1,62 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @private + */ +Ext.define('Ext.chart.TipSurface', { + + /* Begin Definitions */ + + extend: 'Ext.draw.Component', + + /* End Definitions */ + + spriteArray: false, + renderFirst: true, + + constructor: function(config) { + this.callParent([config]); + if (config.sprites) { + this.spriteArray = [].concat(config.sprites); + delete config.sprites; + } + }, + + onRender: function() { + var me = this, + i = 0, + l = 0, + sp, + sprites; + this.callParent(arguments); + sprites = me.spriteArray; + if (me.renderFirst && sprites) { + me.renderFirst = false; + for (l = sprites.length; i < l; i++) { + sp = me.surface.add(sprites[i]); + sp.setAttributes({ + hidden: false + }, + true); + } + } + } +}); diff --git a/extjs-django/marvel/static/extjs/src/chart/axis/Abstract.js b/extjs-django/marvel/static/extjs/src/chart/axis/Abstract.js new file mode 100644 index 0000000..cd8626a --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/axis/Abstract.js @@ -0,0 +1,93 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.axis.Abstract + * Base class for all axis classes. + * @private + */ +Ext.define('Ext.chart.axis.Abstract', { + + /* Begin Definitions */ + + requires: ['Ext.chart.Chart'], + + /* End Definitions */ + + /** + * @cfg {Ext.chart.Label} label + * The config for chart label. + */ + + /** + * @cfg {String[]} fields + * The fields of model to bind to this axis. + * + * For example if you have a data set of lap times per car, each having the fields: + * `'carName'`, `'avgSpeed'`, `'maxSpeed'`. Then you might want to show the data on chart + * with `['carName']` on Name axis and `['avgSpeed', 'maxSpeed']` on Speed axis. + */ + + /** + * Creates new Axis. + * @param {Object} config (optional) Config options. + */ + constructor: function(config) { + config = config || {}; + + var me = this, + pos = config.position || 'left'; + + pos = pos.charAt(0).toUpperCase() + pos.substring(1); + //axisLabel(Top|Bottom|Right|Left)Style + config.label = Ext.apply(config['axisLabel' + pos + 'Style'] || {}, config.label || {}); + config.axisTitleStyle = Ext.apply(config['axisTitle' + pos + 'Style'] || {}, config.labelTitle || {}); + Ext.apply(me, config); + me.fields = Ext.Array.from(me.fields); + this.callParent(); + me.labels = []; + me.getId(); + me.labelGroup = me.chart.surface.getGroup(me.axisId + "-labels"); + }, + + alignment: null, + grid: false, + steps: 10, + x: 0, + y: 0, + minValue: 0, + maxValue: 0, + + getId: function() { + return this.axisId || (this.axisId = Ext.id(null, 'ext-axis-')); + }, + + /* + Called to process a view i.e to make aggregation and filtering over + a store creating a substore to be used to render the axis. Since many axes + may do different things on the data and we want the final result of all these + operations to be rendered we need to call processView on all axes before drawing + them. + */ + processView: Ext.emptyFn, + + drawAxis: Ext.emptyFn, + addDisplayAndLabels: Ext.emptyFn +}); diff --git a/extjs-django/marvel/static/extjs/src/chart/axis/Axis.js b/extjs-django/marvel/static/extjs/src/chart/axis/Axis.js new file mode 100644 index 0000000..e95184d --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/axis/Axis.js @@ -0,0 +1,1041 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.axis.Axis + * + * Defines axis for charts. The axis position, type, style can be configured. + * The axes are defined in an axes array of configuration objects where the type, + * field, grid and other configuration options can be set. To know more about how + * to create a Chart please check the Chart class documentation. Here's an example for the axes part: + * An example of axis for a series (in this case for an area chart that has multiple layers of yFields) could be: + * + * axes: [{ + * type: 'Numeric', + * position: 'left', + * fields: ['data1', 'data2', 'data3'], + * title: 'Number of Hits', + * grid: { + * odd: { + * opacity: 1, + * fill: '#ddd', + * stroke: '#bbb', + * 'stroke-width': 1 + * } + * }, + * minimum: 0 + * }, { + * type: 'Category', + * position: 'bottom', + * fields: ['name'], + * title: 'Month of the Year', + * grid: true, + * label: { + * rotate: { + * degrees: 315 + * } + * } + * }] + * + * In this case we use a `Numeric` axis for displaying the values of the Area series and a `Category` axis for displaying the names of + * the store elements. The numeric axis is placed on the left of the screen, while the category axis is placed at the bottom of the chart. + * Both the category and numeric axes have `grid` set, which means that horizontal and vertical lines will cover the chart background. In the + * category axis the labels will be rotated so they can fit the space better. + */ +Ext.define('Ext.chart.axis.Axis', { + + /* Begin Definitions */ + + extend: 'Ext.chart.axis.Abstract', + + alternateClassName: 'Ext.chart.Axis', + + requires: ['Ext.draw.Draw'], + + /* End Definitions */ + + /** + * @cfg {Boolean/Object} grid + * The grid configuration enables you to set a background grid for an axis. + * If set to *true* on a vertical axis, vertical lines will be drawn. + * If set to *true* on a horizontal axis, horizontal lines will be drawn. + * If both are set, a proper grid with horizontal and vertical lines will be drawn. + * + * You can set specific options for the grid configuration for odd and/or even lines/rows. + * Since the rows being drawn are rectangle sprites, you can set to an odd or even property + * all styles that apply to {@link Ext.draw.Sprite}. For more information on all the style + * properties you can set please take a look at {@link Ext.draw.Sprite}. Some useful style + * properties are `opacity`, `fill`, `stroke`, `stroke-width`, etc. + * + * The possible values for a grid option are then *true*, *false*, or an object with `{ odd, even }` properties + * where each property contains a sprite style descriptor object that is defined in {@link Ext.draw.Sprite}. + * + * For example: + * + * axes: [{ + * type: 'Numeric', + * position: 'left', + * fields: ['data1', 'data2', 'data3'], + * title: 'Number of Hits', + * grid: { + * odd: { + * opacity: 1, + * fill: '#ddd', + * stroke: '#bbb', + * 'stroke-width': 1 + * } + * } + * }, { + * type: 'Category', + * position: 'bottom', + * fields: ['name'], + * title: 'Month of the Year', + * grid: true + * }] + * + */ + + /** + * @cfg {Number} majorTickSteps + * If `minimum` and `maximum` are specified it forces the number of major ticks to the specified value. + * If a number of major ticks is forced, it wont search for pretty numbers at the ticks. + */ + + /** + * @cfg {Number} minorTickSteps + * The number of small ticks between two major ticks. Default is zero. + */ + + /** + * @cfg {String} title + * The title for the Axis + */ + + /** + * @cfg {Boolean} hidden + * `true` to hide the axis. + */ + hidden: false, + + // @private force min/max values from store + forceMinMax: false, + + /** + * @cfg {Number} dashSize + * The size of the dash marker. Default's 3. + */ + dashSize: 3, + + /** + * @cfg {String} position + * Where to set the axis. Available options are `left`, `bottom`, `right`, `top`. Default's `bottom`. + */ + position: 'bottom', + + // @private + skipFirst: false, + + /** + * @cfg {Number} length + * Offset axis position. Default's 0. + */ + length: 0, + + /** + * @cfg {Number} width + * Offset axis width. Default's 0. + */ + width: 0, + + /** + * @cfg {Boolean} adjustEnd + * Whether to adjust the label at the end of the axis. + */ + adjustEnd: true, + + majorTickSteps: false, + + nullGutters: { lower: 0, upper: 0, verticalAxis: undefined }, + + // @private + applyData: Ext.emptyFn, + + getRange: function () { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + data = store.data.items, + series = chart.series.items, + position = me.position, + axes, + seriesClasses = Ext.chart.series, + aggregations = [], + min = Infinity, max = -Infinity, + vertical = me.position === 'left' || me.position === 'right' || me.position === 'radial', + i, ln, ln2, j, k, dataLength = data.length, aggregates, + countedFields = {}, + allFields = {}, + excludable = true, + fields, fieldMap, record, field, value; + + fields = me.fields; + for (j = 0, ln = fields.length; j < ln; j++) { + allFields[fields[j]] = true; + } + + for (i = 0, ln = series.length; i < ln; i++) { + if (series[i].seriesIsHidden) { + continue; + } + if (!series[i].getAxesForXAndYFields) { + continue; + } + axes = series[i].getAxesForXAndYFields(); + if (axes.xAxis && axes.xAxis !== position && axes.yAxis && axes.yAxis !== position) { + // The series doesn't use this axis. + continue; + } + + if (seriesClasses.Bar && series[i] instanceof seriesClasses.Bar && !series[i].column) { + // If this is a horizontal bar series, then flip xField and yField. + fields = vertical ? Ext.Array.from(series[i].xField) : Ext.Array.from(series[i].yField); + } else { + fields = vertical ? Ext.Array.from(series[i].yField) : Ext.Array.from(series[i].xField); + } + + if (me.fields.length) { + for (j = 0, ln2 = fields.length; j < ln2; j++) { + if (allFields[fields[j]]) { + break; + } + } + if (j == ln2) { + // Not matching fields, skipping this series. + continue; + } + } + + if (aggregates = series[i].stacked) { + // If this is a bar/column series, then it will be aggregated if it is of the same direction of the axis. + if (seriesClasses.Bar && series[i] instanceof seriesClasses.Bar) { + if (series[i].column != vertical) { + aggregates = false; + excludable = false; + } + } + // Otherwise it is stacked vertically + else if (!vertical) { + aggregates = false; + excludable = false; + } + } + + + if (aggregates) { + fieldMap = {}; + for (j = 0; j < fields.length; j++) { + if (excludable && series[i].__excludes && series[i].__excludes[j]) { + continue; + } + if (!allFields[fields[j]]) { + Ext.Logger.warn('Field `' + fields[j] + '` is not included in the ' + position + ' axis config.'); + } + allFields[fields[j]] = fieldMap[fields[j]] = true; + } + aggregations.push({ + fields: fieldMap, + positiveValue: 0, + negativeValue: 0 + }); + } else { + + if (!fields || fields.length == 0) { + fields = me.fields; + } + for (j = 0; j < fields.length; j++) { + if (excludable && series[i].__excludes && series[i].__excludes[j]) { + continue; + } + allFields[fields[j]] = countedFields[fields[j]] = true; + } + } + } + + for (i = 0; i < dataLength; i++) { + record = data[i]; + for (k = 0; k < aggregations.length; k++) { + aggregations[k].positiveValue = 0; + aggregations[k].negativeValue = 0; + } + for (field in allFields) { + value = record.get(field); + if (me.type == 'Time' && typeof value == "string") { + value = Date.parse(value); + } + if (isNaN(value)) { + continue; + } + if (value === undefined) { + value = 0; + } else { + value = Number(value); + } + if (countedFields[field]) { + if (min > value) { + min = value; + } + if (max < value) { + max = value; + } + } + for (k = 0; k < aggregations.length; k++) { + if (aggregations[k].fields[field]) { + + if (value >= 0) { + aggregations[k].positiveValue += value; + if (max < aggregations[k].positiveValue) { + max = aggregations[k].positiveValue; + } + // If any aggregation is actually hit, then the min value should be at most 0. + if (min > 0) { + min = 0; + } + } else { + aggregations[k].negativeValue += value; + if (min > aggregations[k].negativeValue) { + min = aggregations[k].negativeValue; + } + // If any aggregation is actually hit, then the max value should be at least 0. + if (max < 0) { + max = 0; + } + } + } + } + } + } + + if (!isFinite(max)) { + max = me.prevMax || 0; + } + if (!isFinite(min)) { + min = me.prevMin || 0; + } + + if (typeof min === 'number') { + min = Ext.Number.correctFloat(min); + } + + if (typeof max === 'number') { + max = Ext.Number.correctFloat(max); + } + + //normalize min max for snapEnds. + if (min != max && (max != Math.floor(max) || min != Math.floor(min))) { + min = Math.floor(min); + max = Math.floor(max) + 1; + } + + if (!isNaN(me.minimum)) { + min = me.minimum; + } + + if (!isNaN(me.maximum)) { + max = me.maximum; + } + + if (min >= max) { + // snapEnds will return NaN if max >= min; + min = Math.floor(min); + max = min + 1; + } + + return {min: min, max: max}; + }, + + // @private creates a structure with start, end and step points. + calcEnds: function () { + var me = this, + range = me.getRange(), + min = range.min, + max = range.max, + steps, prettyNumbers, out, changedRange; + + steps = (Ext.isNumber(me.majorTickSteps) ? me.majorTickSteps + 1 : me.steps); + prettyNumbers = !(Ext.isNumber(me.maximum) && Ext.isNumber(me.minimum) && Ext.isNumber(me.majorTickSteps) && me.majorTickSteps > 0); + + out = Ext.draw.Draw.snapEnds(min, max, steps, prettyNumbers); + + if (Ext.isNumber(me.maximum)) { + out.to = me.maximum; + changedRange = true; + } + if (Ext.isNumber(me.minimum)) { + out.from = me.minimum; + changedRange = true; + } + if (me.adjustMaximumByMajorUnit) { + out.to = Math.ceil(out.to / out.step) * out.step; + changedRange = true; + } + if (me.adjustMinimumByMajorUnit) { + out.from = Math.floor(out.from / out.step) * out.step; + changedRange = true; + } + + if (changedRange) { + out.steps = Math.ceil((out.to - out.from) / out.step); + } + + me.prevMin = (min == max ? 0 : min); + me.prevMax = max; + return out; + }, + + + /** + * Renders the axis into the screen and updates its position. + */ + drawAxis: function (init) { + var me = this, + i, + x = me.x, + y = me.y, + dashSize = me.dashSize, + length = me.length, + position = me.position, + verticalAxis = (position == 'left' || position == 'right'), + inflections = [], + calcLabels = (me.isNumericAxis), + stepCalcs = me.applyData(), + step = stepCalcs.step, + steps = stepCalcs.steps, + stepsArray = Ext.isArray(steps), + from = stepCalcs.from, + to = stepCalcs.to, + // If we have a single item, to - from will be 0. + axisRange = (to - from) || 1, + trueLength, + currentX, + currentY, + path, + subDashesX = me.minorTickSteps || 0, + subDashesY = me.minorTickSteps || 0, + dashesX = Math.max(subDashesX + 1, 0), + dashesY = Math.max(subDashesY + 1, 0), + dashDirection = (position == 'left' || position == 'top' ? -1 : 1), + dashLength = dashSize * dashDirection, + series = me.chart.series.items, + firstSeries = series[0], + gutters = firstSeries ? firstSeries.nullGutters : me.nullGutters, + padding, + subDashes, + subDashValue, + delta = 0, + stepCount = 0, + tick, axes, ln, val, begin, end; + + me.from = from; + me.to = to; + + // If there is nothing to show, then leave. + if (me.hidden || (from > to)) { + return; + } + + // If no steps are specified (for instance if the store is empty), then leave. + if ((stepsArray && (steps.length == 0)) || (!stepsArray && isNaN(step))) { + return; + } + + if (stepsArray) { + // Clean the array of steps: + // First remove the steps that are out of bounds. + steps = Ext.Array.filter(steps, function(elem, index, array) { + return (+elem > +me.from && +elem < +me.to); + }, this); + + // Then add bounds on each side. + steps = Ext.Array.union([me.from], steps, [me.to]); + } + else { + // Build the array of steps out of the fixed-value 'step'. + steps = new Array; + for (val = +me.from; val < +me.to; val += step) { + steps.push(val); + } + steps.push(+me.to); + } + stepCount = steps.length; + + + // Get the gutters for this series + for (i = 0, ln = series.length; i < ln; i++) { + if (series[i].seriesIsHidden) { + continue; + } + if (!series[i].getAxesForXAndYFields) { + continue; + } + axes = series[i].getAxesForXAndYFields(); + if (!axes.xAxis || !axes.yAxis || (axes.xAxis === position) || (axes.yAxis === position)) { + gutters = series[i].getGutters(); + if ((gutters.verticalAxis !== undefined) && (gutters.verticalAxis != verticalAxis)) { + // This series has gutters that don't apply to the direction of this axis + // (for instance, gutters for Bars apply to the vertical axis while gutters + // for Columns apply to the horizontal axis). Since there is no gutter, the + // padding is all that is left to take into account. + padding = series[i].getPadding(); + if (verticalAxis) { + gutters = { lower: padding.bottom, upper: padding.top, verticalAxis: true }; + } else { + gutters = { lower: padding.left, upper: padding.right, verticalAxis: false }; + } + } + break; + } + } + + // Draw the major ticks + + if (calcLabels) { + me.labels = []; + } + + if (gutters) { + if (verticalAxis) { + currentX = Math.floor(x); + path = ["M", currentX + 0.5, y, "l", 0, -length]; + trueLength = length - (gutters.lower + gutters.upper); + + for (tick = 0; tick < stepCount; tick++) { + currentY = y - gutters.lower - (steps[tick] - steps[0]) * trueLength / axisRange; + path.push("M", currentX, Math.floor(currentY) + 0.5, "l", dashLength * 2, 0); + + inflections.push([ currentX, Math.floor(currentY) ]); + + if (calcLabels) { + me.labels.push(steps[tick]); + } + } + } else { + currentY = Math.floor(y); + path = ["M", x, currentY + 0.5, "l", length, 0]; + trueLength = length - (gutters.lower + gutters.upper); + + for (tick = 0; tick < stepCount; tick++) { + currentX = x + gutters.lower + (steps[tick] - steps[0]) * trueLength / axisRange; + path.push("M", Math.floor(currentX) + 0.5, currentY, "l", 0, dashLength * 2 + 1); + + inflections.push([ Math.floor(currentX), currentY ]); + + if (calcLabels) { + me.labels.push(steps[tick]); + } + } + } + } + + + // Draw the minor ticks + + // If 'minorTickSteps' is... + // - A number: it contains the number of minor ticks between 2 major ticks. + // - An array with 2 numbers: it contains a date interval like [Ext.Date.DAY,2]. + // - An array with a single number: it contains the value of a minor tick. + subDashes = (verticalAxis ? subDashesY : subDashesX); + if (Ext.isArray(subDashes)) { + if (subDashes.length == 2) { + subDashValue = +Ext.Date.add(new Date(), subDashes[0], subDashes[1]) - Date.now(); + } else { + subDashValue = subDashes[0]; + } + } + else { + if (Ext.isNumber(subDashes) && subDashes > 0) { + subDashValue = step / (subDashes + 1); + } + } + + if (gutters && subDashValue) { + for (tick = 0; tick < stepCount - 1; tick++) { + begin = +steps[tick]; + end = +steps[tick+1]; + if (verticalAxis) { + for (value = begin + subDashValue; value < end; value += subDashValue) { + currentY = y - gutters.lower - (value - steps[0]) * trueLength / axisRange; + path.push("M", currentX, Math.floor(currentY) + 0.5, "l", dashLength, 0); + } + } + else { + for (value = begin + subDashValue; value < end; value += subDashValue) { + currentX = x + gutters.upper + (value - steps[0]) * trueLength / axisRange; + path.push("M", Math.floor(currentX) + 0.5, currentY, "l", 0, dashLength + 1); + } + } + } + } + + + // Render + + if (!me.axis) { + me.axis = me.chart.surface.add(Ext.apply({ + type: 'path', + path: path + }, me.axisStyle)); + } + me.axis.setAttributes({ + path: path + }, true); + me.inflections = inflections; + if (!init && me.grid) { + me.drawGrid(); + } + me.axisBBox = me.axis.getBBox(); + me.drawLabel(); + }, + + /** + * Renders an horizontal and/or vertical grid into the Surface. + */ + drawGrid: function () { + var me = this, + surface = me.chart.surface, + grid = me.grid, + odd = grid.odd, + even = grid.even, + inflections = me.inflections, + ln = inflections.length - ((odd || even) ? 0 : 1), + position = me.position, + maxGutters = me.chart.maxGutters, + width = me.width - 2, + point, prevPoint, + i = 1, + path = [], styles, lineWidth, dlineWidth, + oddPath = [], evenPath = []; + + if (((maxGutters.bottom !== 0 || maxGutters.top !== 0) && (position == 'left' || position == 'right')) || + ((maxGutters.left !== 0 || maxGutters.right !== 0) && (position == 'top' || position == 'bottom'))) { + i = 0; + ln++; + } + for (; i < ln; i++) { + point = inflections[i]; + prevPoint = inflections[i - 1]; + if (odd || even) { + path = (i % 2) ? oddPath : evenPath; + styles = ((i % 2) ? odd : even) || {}; + lineWidth = (styles.lineWidth || styles['stroke-width'] || 0) / 2; + dlineWidth = 2 * lineWidth; + if (position == 'left') { + path.push("M", prevPoint[0] + 1 + lineWidth, prevPoint[1] + 0.5 - lineWidth, + "L", prevPoint[0] + 1 + width - lineWidth, prevPoint[1] + 0.5 - lineWidth, + "L", point[0] + 1 + width - lineWidth, point[1] + 0.5 + lineWidth, + "L", point[0] + 1 + lineWidth, point[1] + 0.5 + lineWidth, "Z"); + } + else if (position == 'right') { + path.push("M", prevPoint[0] - lineWidth, prevPoint[1] + 0.5 - lineWidth, + "L", prevPoint[0] - width + lineWidth, prevPoint[1] + 0.5 - lineWidth, + "L", point[0] - width + lineWidth, point[1] + 0.5 + lineWidth, + "L", point[0] - lineWidth, point[1] + 0.5 + lineWidth, "Z"); + } + else if (position == 'top') { + path.push("M", prevPoint[0] + 0.5 + lineWidth, prevPoint[1] + 1 + lineWidth, + "L", prevPoint[0] + 0.5 + lineWidth, prevPoint[1] + 1 + width - lineWidth, + "L", point[0] + 0.5 - lineWidth, point[1] + 1 + width - lineWidth, + "L", point[0] + 0.5 - lineWidth, point[1] + 1 + lineWidth, "Z"); + } + else { + path.push("M", prevPoint[0] + 0.5 + lineWidth, prevPoint[1] - lineWidth, + "L", prevPoint[0] + 0.5 + lineWidth, prevPoint[1] - width + lineWidth, + "L", point[0] + 0.5 - lineWidth, point[1] - width + lineWidth, + "L", point[0] + 0.5 - lineWidth, point[1] - lineWidth, "Z"); + } + } else { + if (position == 'left') { + path = path.concat(["M", point[0] + 0.5, point[1] + 0.5, "l", width, 0]); + } + else if (position == 'right') { + path = path.concat(["M", point[0] - 0.5, point[1] + 0.5, "l", -width, 0]); + } + else if (position == 'top') { + path = path.concat(["M", point[0] + 0.5, point[1] + 0.5, "l", 0, width]); + } + else { + path = path.concat(["M", point[0] + 0.5, point[1] - 0.5, "l", 0, -width]); + } + } + } + if (odd || even) { + if (oddPath.length) { + if (!me.gridOdd && oddPath.length) { + me.gridOdd = surface.add({ + type: 'path', + path: oddPath + }); + } + me.gridOdd.setAttributes(Ext.apply({ + path: oddPath, + hidden: false + }, odd || {}), true); + } + if (evenPath.length) { + if (!me.gridEven) { + me.gridEven = surface.add({ + type: 'path', + path: evenPath + }); + } + me.gridEven.setAttributes(Ext.apply({ + path: evenPath, + hidden: false + }, even || {}), true); + } + } + else { + if (path.length) { + if (!me.gridLines) { + me.gridLines = me.chart.surface.add({ + type: 'path', + path: path, + "stroke-width": me.lineWidth || 1, + stroke: me.gridColor || '#ccc' + }); + } + me.gridLines.setAttributes({ + hidden: false, + path: path + }, true); + } + else if (me.gridLines) { + me.gridLines.hide(true); + } + } + }, + + // @private + getOrCreateLabel: function (i, text) { + var me = this, + labelGroup = me.labelGroup, + textLabel = labelGroup.getAt(i), + surface = me.chart.surface; + if (textLabel) { + if (text != textLabel.attr.text) { + textLabel.setAttributes(Ext.apply({ + text: text + }, me.label), true); + textLabel._bbox = textLabel.getBBox(); + } + } + else { + textLabel = surface.add(Ext.apply({ + group: labelGroup, + type: 'text', + x: 0, + y: 0, + text: text + }, me.label)); + surface.renderItem(textLabel); + textLabel._bbox = textLabel.getBBox(); + } + //get untransformed bounding box + if (me.label.rotation) { + textLabel.setAttributes({ + rotation: { + degrees: 0 + } + }, true); + textLabel._ubbox = textLabel.getBBox(); + textLabel.setAttributes(me.label, true); + } else { + textLabel._ubbox = textLabel._bbox; + } + return textLabel; + }, + + rect2pointArray: function (sprite) { + var surface = this.chart.surface, + rect = surface.getBBox(sprite, true), + p1 = [rect.x, rect.y], + p1p = p1.slice(), + p2 = [rect.x + rect.width, rect.y], + p2p = p2.slice(), + p3 = [rect.x + rect.width, rect.y + rect.height], + p3p = p3.slice(), + p4 = [rect.x, rect.y + rect.height], + p4p = p4.slice(), + matrix = sprite.matrix; + //transform the points + p1[0] = matrix.x.apply(matrix, p1p); + p1[1] = matrix.y.apply(matrix, p1p); + + p2[0] = matrix.x.apply(matrix, p2p); + p2[1] = matrix.y.apply(matrix, p2p); + + p3[0] = matrix.x.apply(matrix, p3p); + p3[1] = matrix.y.apply(matrix, p3p); + + p4[0] = matrix.x.apply(matrix, p4p); + p4[1] = matrix.y.apply(matrix, p4p); + return [p1, p2, p3, p4]; + }, + + intersect: function (l1, l2) { + var r1 = this.rect2pointArray(l1), + r2 = this.rect2pointArray(l2); + return !!Ext.draw.Draw.intersect(r1, r2).length; + }, + + drawHorizontalLabels: function () { + var me = this, + labelConf = me.label, + floor = Math.floor, + max = Math.max, + axes = me.chart.axes, + insetPadding = me.chart.insetPadding, + gutters = me.chart.maxGutters, + position = me.position, + inflections = me.inflections, + ln = inflections.length, + labels = me.labels, + maxHeight = 0, + ratio, + bbox, point, prevLabel, prevLabelId, + adjustEnd = me.adjustEnd, + hasLeft = axes.findIndex('position', 'left') != -1, + hasRight = axes.findIndex('position', 'right') != -1, + textLabel, text, + last, x, y, i, firstLabel; + + last = ln - 1; + //get a reference to the first text label dimensions + point = inflections[0]; + firstLabel = me.getOrCreateLabel(0, me.label.renderer(labels[0])); + ratio = Math.floor(Math.abs(Math.sin(labelConf.rotate && (labelConf.rotate.degrees * Math.PI / 180) || 0))); + + for (i = 0; i < ln; i++) { + point = inflections[i]; + text = me.label.renderer(labels[i]); + textLabel = me.getOrCreateLabel(i, text); + bbox = textLabel._bbox; + maxHeight = max(maxHeight, bbox.height + me.dashSize + me.label.padding); + x = floor(point[0] - (ratio ? bbox.height : bbox.width) / 2); + if (adjustEnd && gutters.left == 0 && gutters.right == 0) { + if (i == 0 && !hasLeft) { + x = point[0]; + } + else if (i == last && !hasRight) { + x = Math.min(x, point[0] - bbox.width + insetPadding); + } + } + if (position == 'top') { + y = point[1] - (me.dashSize * 2) - me.label.padding - (bbox.height / 2); + } + else { + y = point[1] + (me.dashSize * 2) + me.label.padding + (bbox.height / 2); + } + + textLabel.setAttributes({ + hidden: false, + x: x, + y: y + }, true); + + // Skip label if there isn't available minimum space + if (i != 0 && (me.intersect(textLabel, prevLabel) + || me.intersect(textLabel, firstLabel))) { + if (i === last && prevLabelId !== 0) { + prevLabel.hide(true); + } else { + textLabel.hide(true); + continue; + } + } + + prevLabel = textLabel; + prevLabelId = i; + } + + return maxHeight; + }, + + drawVerticalLabels: function () { + var me = this, + inflections = me.inflections, + position = me.position, + ln = inflections.length, + chart = me.chart, + insetPadding = chart.insetPadding, + labels = me.labels, + maxWidth = 0, + max = Math.max, + floor = Math.floor, + ceil = Math.ceil, + axes = me.chart.axes, + gutters = me.chart.maxGutters, + bbox, point, prevLabel, prevLabelId, + hasTop = axes.findIndex('position', 'top') != -1, + hasBottom = axes.findIndex('position', 'bottom') != -1, + adjustEnd = me.adjustEnd, + textLabel, text, + last = ln - 1, x, y, i; + + for (i = 0; i < ln; i++) { + point = inflections[i]; + text = me.label.renderer(labels[i]); + textLabel = me.getOrCreateLabel(i, text); + bbox = textLabel._bbox; + + maxWidth = max(maxWidth, bbox.width + me.dashSize + me.label.padding); + y = point[1]; + if (adjustEnd && (gutters.bottom + gutters.top) < bbox.height / 2) { + if (i == last && !hasTop) { + y = Math.max(y, me.y - me.length + ceil(bbox.height / 2) - insetPadding); + } + else if (i == 0 && !hasBottom) { + y = me.y + gutters.bottom - floor(bbox.height / 2); + } + } + if (position == 'left') { + x = point[0] - bbox.width - me.dashSize - me.label.padding - 2; + } + else { + x = point[0] + me.dashSize + me.label.padding + 2; + } + textLabel.setAttributes(Ext.apply({ + hidden: false, + x: x, + y: y + }, me.label), true); + // Skip label if there isn't available minimum space + if (i != 0 && me.intersect(textLabel, prevLabel)) { + if (i === last && prevLabelId !== 0) { + prevLabel.hide(true); + } else { + textLabel.hide(true); + continue; + } + } + prevLabel = textLabel; + prevLabelId = i; + } + + return maxWidth; + }, + + /** + * Renders the labels in the axes. + */ + drawLabel: function () { + var me = this, + position = me.position, + labelGroup = me.labelGroup, + inflections = me.inflections, + maxWidth = 0, + maxHeight = 0, + ln, i; + + if (position == 'left' || position == 'right') { + maxWidth = me.drawVerticalLabels(); + } else { + maxHeight = me.drawHorizontalLabels(); + } + + // Hide unused bars + ln = labelGroup.getCount(); + i = inflections.length; + for (; i < ln; i++) { + labelGroup.getAt(i).hide(true); + } + + me.bbox = {}; + Ext.apply(me.bbox, me.axisBBox); + me.bbox.height = maxHeight; + me.bbox.width = maxWidth; + if (Ext.isString(me.title)) { + me.drawTitle(maxWidth, maxHeight); + } + }, + + /** + * Updates the {@link #title} of this axis. + * @param {String} title + */ + setTitle: function (title) { + this.title = title; + this.drawLabel(); + }, + + // @private draws the title for the axis. + drawTitle: function (maxWidth, maxHeight) { + var me = this, + position = me.position, + surface = me.chart.surface, + displaySprite = me.displaySprite, + title = me.title, + rotate = (position == 'left' || position == 'right'), + x = me.x, + y = me.y, + base, bbox, pad; + + if (displaySprite) { + displaySprite.setAttributes({text: title}, true); + } else { + base = { + type: 'text', + x: 0, + y: 0, + text: title + }; + displaySprite = me.displaySprite = surface.add(Ext.apply(base, me.axisTitleStyle, me.labelTitle)); + surface.renderItem(displaySprite); + } + bbox = displaySprite.getBBox(); + pad = me.dashSize + me.label.padding; + + if (rotate) { + y -= ((me.length / 2) - (bbox.height / 2)); + if (position == 'left') { + x -= (maxWidth + pad + (bbox.width / 2)); + } + else { + x += (maxWidth + pad + bbox.width - (bbox.width / 2)); + } + me.bbox.width += bbox.width + 10; + } + else { + x += (me.length / 2) - (bbox.width * 0.5); + if (position == 'top') { + y -= (maxHeight + pad + (bbox.height * 0.3)); + } + else { + y += (maxHeight + pad + (bbox.height * 0.8)); + } + me.bbox.height += bbox.height + 10; + } + displaySprite.setAttributes({ + translate: { + x: x, + y: y + } + }, true); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/chart/axis/Category.js b/extjs-django/marvel/static/extjs/src/chart/axis/Category.js new file mode 100644 index 0000000..d8bf216 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/axis/Category.js @@ -0,0 +1,183 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.axis.Category + * + * A type of axis that displays items in categories. This axis is generally used to + * display categorical information like names of items, month names, quarters, etc. + * but no quantitative values. For that other type of information `Number` + * axis are more suitable. + * + * As with other axis you can set the position of the axis and its title. For example: + * + * @example + * var store = Ext.create('Ext.data.JsonStore', { + * fields: ['name', 'data1', 'data2', 'data3', 'data4', 'data5'], + * data: [ + * {'name':'metric one', 'data1':10, 'data2':12, 'data3':14, 'data4':8, 'data5':13}, + * {'name':'metric two', 'data1':7, 'data2':8, 'data3':16, 'data4':10, 'data5':3}, + * {'name':'metric three', 'data1':5, 'data2':2, 'data3':14, 'data4':12, 'data5':7}, + * {'name':'metric four', 'data1':2, 'data2':14, 'data3':6, 'data4':1, 'data5':23}, + * {'name':'metric five', 'data1':27, 'data2':38, 'data3':36, 'data4':13, 'data5':33} + * ] + * }); + * + * Ext.create('Ext.chart.Chart', { + * renderTo: Ext.getBody(), + * width: 500, + * height: 300, + * store: store, + * axes: [{ + * type: 'Numeric', + * position: 'left', + * fields: ['data1', 'data2', 'data3', 'data4', 'data5'], + * title: 'Sample Values', + * grid: { + * odd: { + * opacity: 1, + * fill: '#ddd', + * stroke: '#bbb', + * 'stroke-width': 1 + * } + * }, + * minimum: 0, + * adjustMinimumByMajorUnit: 0 + * }, { + * type: 'Category', + * position: 'bottom', + * fields: ['name'], + * title: 'Sample Metrics', + * grid: true, + * label: { + * rotate: { + * degrees: 315 + * } + * } + * }], + * series: [{ + * type: 'area', + * highlight: false, + * axis: 'left', + * xField: 'name', + * yField: ['data1', 'data2', 'data3', 'data4', 'data5'], + * style: { + * opacity: 0.93 + * } + * }] + * }); + * + * In this example with set the category axis to the bottom of the surface, bound the axis to + * the `name` property and set as title _Month of the Year_. + */ +Ext.define('Ext.chart.axis.Category', { + + /* Begin Definitions */ + + extend: 'Ext.chart.axis.Axis', + + alternateClassName: 'Ext.chart.CategoryAxis', + + alias: 'axis.category', + + /* End Definitions */ + + /** + * @cfg {String} categoryNames + * A list of category names to display along this axis. + */ + categoryNames: null, + + /** + * @cfg {Boolean} calculateCategoryCount + * Indicates whether or not to calculate the number of categories (ticks and + * labels) when there is not enough room to display all labels on the axis. + * If set to true, the axis will determine the number of categories to plot. + * If not, all categories will be plotted. + */ + calculateCategoryCount: false, + + // @private constrains to datapoints between minimum and maximum only + doConstrain: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + items = store.data.items, + series = chart.series.items, + seriesLength = series.length, + data = [], i + + for (i = 0; i < seriesLength; i++) { + if (series[i].type === 'bar' && series[i].stacked) { + // Do not constrain stacked bar chart. + return; + } + } + + for (i = me.minimum; i < me.maximum; i++) { + data.push(items[i]); + } + + chart.setSubStore(new Ext.data.Store({ + model: store.model, + data: data + })); + }, + + // @private creates an array of labels to be used when rendering. + setLabels: function() { + var store = this.chart.getChartStore(), + data = store.data.items, + d, dLen, record, + fields = this.fields, + ln = fields.length, + labels, + name, + i; + + labels = this.labels = []; + for (d = 0, dLen = data.length; d < dLen; d++) { + record = data[d]; + for (i = 0; i < ln; i++) { + name = record.get(fields[i]); + // + if (Ext.Array.indexOf(labels, name) > -1) { + Ext.log.warn('Duplicate category in axis, ' + name); + } + // + labels.push(name); + } + } + }, + + // @private calculates labels positions and marker positions for rendering. + applyData: function() { + this.callParent(); + this.setLabels(); + var count = this.chart.getChartStore().getCount(); + return { + from: 0, + to: count - 1, + power: 1, + step: 1, + steps: count - 1 + }; + } +}); diff --git a/extjs-django/marvel/static/extjs/src/chart/axis/Gauge.js b/extjs-django/marvel/static/extjs/src/chart/axis/Gauge.js new file mode 100644 index 0000000..a7b2494 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/axis/Gauge.js @@ -0,0 +1,223 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.axis.Gauge + * + * Gauge Axis is the axis to be used with a Gauge series. The Gauge axis + * displays numeric data from an interval defined by the `minimum`, `maximum` and + * `step` configuration properties. The placement of the numeric data can be changed + * by altering the `margin` option that is set to `10` by default. + * + * A possible configuration for this axis would look like: + * + * axes: [{ + * type: 'gauge', + * position: 'gauge', + * minimum: 0, + * maximum: 100, + * steps: 10, + * margin: 7 + * }], + */ +Ext.define('Ext.chart.axis.Gauge', { + + /* Begin Definitions */ + + extend: 'Ext.chart.axis.Abstract', + + /* End Definitions */ + + /** + * @cfg {Number} minimum (required) + * The minimum value of the interval to be displayed in the axis. + */ + + /** + * @cfg {Number} maximum (required) + * The maximum value of the interval to be displayed in the axis. + */ + + /** + * @cfg {Number} steps (required) + * The number of steps and tick marks to add to the interval. + */ + + /** + * @cfg {Number} [margin=10] + * The offset positioning of the tick marks and labels in pixels. + */ + + /** + * @cfg {String} title + * The title for the Axis. + */ + + position: 'gauge', + + alias: 'axis.gauge', + + drawAxis: function(init) { + var chart = this.chart, + surface = chart.surface, + bbox = chart.chartBBox, + centerX = bbox.x + (bbox.width / 2), + centerY = bbox.y + bbox.height, + margin = this.margin || 10, + rho = Math.min(bbox.width, 2 * bbox.height) /2 + margin, + sprites = [], sprite, + steps = this.steps, + i, pi = Math.PI, + cos = Math.cos, + sin = Math.sin; + + if (this.sprites && !chart.resizing) { + this.drawLabel(); + return; + } + + if (this.margin >= 0) { + if (!this.sprites) { + //draw circles + for (i = 0; i <= steps; i++) { + sprite = surface.add({ + type: 'path', + path: ['M', centerX + (rho - margin) * cos(i / steps * pi - pi), + centerY + (rho - margin) * sin(i / steps * pi - pi), + 'L', centerX + rho * cos(i / steps * pi - pi), + centerY + rho * sin(i / steps * pi - pi), 'Z'], + stroke: '#ccc' + }); + sprite.setAttributes({ + hidden: false + }, true); + sprites.push(sprite); + } + } else { + sprites = this.sprites; + //draw circles + for (i = 0; i <= steps; i++) { + sprites[i].setAttributes({ + path: ['M', centerX + (rho - margin) * cos(i / steps * pi - pi), + centerY + (rho - margin) * sin(i / steps * pi - pi), + 'L', centerX + rho * cos(i / steps * pi - pi), + centerY + rho * sin(i / steps * pi - pi), 'Z'], + stroke: '#ccc' + }, true); + } + } + } + this.sprites = sprites; + this.drawLabel(); + if (this.title) { + this.drawTitle(); + } + }, + + drawTitle: function() { + var me = this, + chart = me.chart, + surface = chart.surface, + bbox = chart.chartBBox, + labelSprite = me.titleSprite, + labelBBox; + + if (!labelSprite) { + me.titleSprite = labelSprite = surface.add(Ext.apply({ + type: 'text', + zIndex: 2 + }, me.axisTitleStyle, me.labelTitle)); + } + labelSprite.setAttributes(Ext.apply({ + text: me.title + }, me.label || {}), true); + labelBBox = labelSprite.getBBox(); + labelSprite.setAttributes({ + x: bbox.x + (bbox.width / 2) - (labelBBox.width / 2), + y: bbox.y + bbox.height - (labelBBox.height / 2) - 4 + }, true); + }, + + /** + * Updates the {@link #title} of this axis. + * @param {String} title + */ + setTitle: function(title) { + this.title = title; + this.drawTitle(); + }, + + drawLabel: function() { + var chart = this.chart, + surface = chart.surface, + bbox = chart.chartBBox, + centerX = bbox.x + (bbox.width / 2), + centerY = bbox.y + bbox.height, + margin = this.margin || 10, + rho = Math.min(bbox.width, 2 * bbox.height) /2 + 2 * margin, + round = Math.round, + labelArray = [], label, + maxValue = this.maximum || 0, + minValue = this.minimum || 0, + steps = this.steps, i = 0, + adjY, + pi = Math.PI, + cos = Math.cos, + sin = Math.sin, + labelConf = this.label, + renderer = labelConf.renderer || Ext.identityFn; + + if (!this.labelArray) { + //draw scale + for (i = 0; i <= steps; i++) { + // TODO Adjust for height of text / 2 instead + adjY = (i === 0 || i === steps) ? 7 : 0; + label = surface.add({ + type: 'text', + text: renderer(round(minValue + i / steps * (maxValue - minValue))), + x: centerX + rho * cos(i / steps * pi - pi), + y: centerY + rho * sin(i / steps * pi - pi) - adjY, + 'text-anchor': 'middle', + 'stroke-width': 0.2, + zIndex: 10, + stroke: '#333' + }); + label.setAttributes({ + hidden: false + }, true); + labelArray.push(label); + } + } + else { + labelArray = this.labelArray; + //draw values + for (i = 0; i <= steps; i++) { + // TODO Adjust for height of text / 2 instead + adjY = (i === 0 || i === steps) ? 7 : 0; + labelArray[i].setAttributes({ + text: renderer(round(minValue + i / steps * (maxValue - minValue))), + x: centerX + rho * cos(i / steps * pi - pi), + y: centerY + rho * sin(i / steps * pi - pi) - adjY + }, true); + } + } + this.labelArray = labelArray; + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/chart/axis/Numeric.js b/extjs-django/marvel/static/extjs/src/chart/axis/Numeric.js new file mode 100644 index 0000000..b1c3592 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/axis/Numeric.js @@ -0,0 +1,262 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.axis.Numeric + * + * An axis to handle numeric values. This axis is used for quantitative data as + * opposed to the category axis. You can set mininum and maximum values to the + * axis so that the values are bound to that. If no values are set, then the + * scale will auto-adjust to the values. + * + * @example + * var store = Ext.create('Ext.data.JsonStore', { + * fields: ['name', 'data1', 'data2', 'data3', 'data4', 'data5'], + * data: [ + * {'name':'metric one', 'data1':10, 'data2':12, 'data3':14, 'data4':8, 'data5':13}, + * {'name':'metric two', 'data1':7, 'data2':8, 'data3':16, 'data4':10, 'data5':3}, + * {'name':'metric three', 'data1':5, 'data2':2, 'data3':14, 'data4':12, 'data5':7}, + * {'name':'metric four', 'data1':2, 'data2':14, 'data3':6, 'data4':1, 'data5':23}, + * {'name':'metric five', 'data1':27, 'data2':38, 'data3':36, 'data4':13, 'data5':33} + * ] + * }); + * + * Ext.create('Ext.chart.Chart', { + * renderTo: Ext.getBody(), + * width: 500, + * height: 300, + * store: store, + * axes: [{ + * type: 'Numeric', + * position: 'left', + * fields: ['data1', 'data2', 'data3', 'data4', 'data5'], + * title: 'Sample Values', + * grid: { + * odd: { + * opacity: 1, + * fill: '#ddd', + * stroke: '#bbb', + * 'stroke-width': 1 + * } + * }, + * minimum: 0, + * adjustMinimumByMajorUnit: 0 + * }, { + * type: 'Category', + * position: 'bottom', + * fields: ['name'], + * title: 'Sample Metrics', + * grid: true, + * label: { + * rotate: { + * degrees: 315 + * } + * } + * }], + * series: [{ + * type: 'area', + * highlight: false, + * axis: 'left', + * xField: 'name', + * yField: ['data1', 'data2', 'data3', 'data4', 'data5'], + * style: { + * opacity: 0.93 + * } + * }] + * }); + * + * In this example we create an axis of Numeric type. We set a minimum value so that + * even if all series have values greater than zero, the grid starts at zero. We bind + * the axis onto the left part of the surface by setting `position` to `left`. + * We bind three different store fields to this axis by setting `fields` to an array. + * We set the title of the axis to _Number of Hits_ by using the `title` property. + * We use a `grid` configuration to set odd background rows to a certain style and even rows + * to be transparent/ignored. + */ +Ext.define('Ext.chart.axis.Numeric', { + + /* Begin Definitions */ + + extend: 'Ext.chart.axis.Axis', + + alternateClassName: 'Ext.chart.NumericAxis', + + /* End Definitions */ + + type: 'Numeric', + + // @private + isNumericAxis: true, + + alias: 'axis.numeric', + + uses: ['Ext.data.Store'], + + constructor: function(config) { + var me = this, + hasLabel = !!(config.label && config.label.renderer), + label; + + me.callParent([config]); + label = me.label; + + if (config.constrain == null) { + me.constrain = (config.minimum != null && config.maximum != null); + } + + if (!hasLabel) { + label.renderer = function(v) { + return me.roundToDecimal(v, me.decimals); + }; + } + }, + + roundToDecimal: function(v, dec) { + var val = Math.pow(10, dec || 0); + return Math.round(v * val) / val; + }, + + /** + * @cfg {Number} minimum + * The minimum value drawn by the axis. If not set explicitly, the axis + * minimum will be calculated automatically. It is ignored for stacked charts. + */ + minimum: NaN, + + /** + * @cfg {Number} maximum + * The maximum value drawn by the axis. If not set explicitly, the axis + * maximum will be calculated automatically. It is ignored for stacked charts. + */ + maximum: NaN, + + /** + * @cfg {Boolean} constrain + * If true, the values of the chart will be rendered only if they belong between minimum and maximum. + * If false, all values of the chart will be rendered, regardless of whether they belong between minimum and maximum or not. + * Default's true if maximum and minimum is specified. It is ignored for stacked charts. + */ + constrain: true, + + /** + * @cfg {Number} decimals + * The number of decimals to round the value to. + */ + decimals: 2, + + /** + * @cfg {String} scale + * The scaling algorithm to use on this axis. May be "linear" or + * "logarithmic". Currently only linear scale is implemented. + * @private + */ + scale: "linear", + + // @private constrains to datapoints between minimum and maximum only + doConstrain: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + items = store.data.items, + d, dLen, record, + series = chart.series.items, + fields = me.fields, + ln = fields.length, + range = me.calcEnds(), + min = range.from, max = range.to, i, l, + useAcum = false, + value, data = [], + addRecord; + + for (d = 0, dLen = items.length; d < dLen; d++) { + addRecord = true; + record = items[d]; + for (i = 0; i < ln; i++) { + value = record.get(fields[i]); + if (me.type == 'Time' && typeof value == "string") { + value = Date.parse(value); + } + if (+value < +min) { + addRecord = false; + break; + } + if (+value > +max) { + addRecord = false; + break; + } + } + if (addRecord) { + data.push(record); + } + } + + chart.setSubStore(new Ext.data.Store({ + model: store.model, + data: data + })); + }, + /** + * @cfg {String} position + * Indicates the position of the axis relative to the chart + */ + position: 'left', + + /** + * @cfg {Boolean} adjustMaximumByMajorUnit + * Indicates whether to extend maximum beyond data's maximum to the nearest + * majorUnit. + */ + adjustMaximumByMajorUnit: false, + + /** + * @cfg {Boolean} adjustMinimumByMajorUnit + * Indicates whether to extend the minimum beyond data's minimum to the + * nearest majorUnit. + */ + adjustMinimumByMajorUnit: false, + + // applying constraint + processView: function() { + var me = this, + chart = me.chart, + series = chart.series.items, + i, l; + + for (i = 0, l = series.length; i < l; i++) { + if (series[i].stacked) { + // Do not constrain stacked charts (bar, column, or area). + delete me.minimum; + delete me.maximum; + me.constrain = false; + break; + } + } + + if (me.constrain) { + me.doConstrain(); + } + }, + + // @private apply data. + applyData: function() { + this.callParent(); + return this.calcEnds(); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/chart/axis/Radial.js b/extjs-django/marvel/static/extjs/src/chart/axis/Radial.js new file mode 100644 index 0000000..ccec22f --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/axis/Radial.js @@ -0,0 +1,258 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @private + */ +Ext.define('Ext.chart.axis.Radial', { + + /* Begin Definitions */ + + extend: 'Ext.chart.axis.Numeric', + + /* End Definitions */ + + position: 'radial', + + alias: 'axis.radial', + + /** + * @cfg {Number} maximum + * The maximum value drawn by the axis. If not set explicitly, the axis + * maximum will be calculated automatically. + */ + + /** + * @cfg {Number} [steps=10] + * The number of circles to draw outward from the center. + */ + + drawAxis: function(init) { + var chart = this.chart, + surface = chart.surface, + bbox = chart.chartBBox, + store = chart.getChartStore(), + l = store.getCount(), + centerX = bbox.x + (bbox.width / 2), + centerY = bbox.y + (bbox.height / 2), + rho = Math.min(bbox.width, bbox.height) /2, + sprites = [], sprite, + steps = this.steps, + i, j, pi2 = Math.PI * 2, + cos = Math.cos, sin = Math.sin; + + if (this.sprites && !chart.resizing) { + this.drawLabel(); + return; + } + + if (!this.sprites) { + //draw circles + for (i = 1; i <= steps; i++) { + sprite = surface.add({ + type: 'circle', + x: centerX, + y: centerY, + radius: Math.max(rho * i / steps, 0), + stroke: '#ccc' + }); + sprite.setAttributes({ + hidden: false + }, true); + sprites.push(sprite); + } + //draw lines + for (i = 0; i < l; i++) { + sprite = surface.add({ + type: 'path', + path: ['M', centerX, centerY, 'L', centerX + rho * cos(i / l * pi2), centerY + rho * sin(i / l * pi2), 'Z'], + stroke: '#ccc' + }); + sprite.setAttributes({ + hidden: false + }, true); + sprites.push(sprite); + } + } else { + sprites = this.sprites; + //draw circles + for (i = 0; i < steps; i++) { + sprites[i].setAttributes({ + x: centerX, + y: centerY, + radius: Math.max(rho * (i + 1) / steps, 0), + stroke: '#ccc' + }, true); + } + //draw lines + for (j = 0; j < l; j++) { + sprites[i + j].setAttributes({ + path: ['M', centerX, centerY, 'L', centerX + rho * cos(j / l * pi2), centerY + rho * sin(j / l * pi2), 'Z'], + stroke: '#ccc' + }, true); + } + } + this.sprites = sprites; + + this.drawLabel(); + }, + + drawLabel: function() { + var chart = this.chart, + seriesItems = chart.series.items, + series, + surface = chart.surface, + bbox = chart.chartBBox, + store = chart.getChartStore(), + data = store.data.items, + ln, record, + centerX = bbox.x + (bbox.width / 2), + centerY = bbox.y + (bbox.height / 2), + rho = Math.min(bbox.width, bbox.height) /2, + max = Math.max, round = Math.round, + labelArray = [], label, + fields = [], nfields, + categories = [], xField, + aggregate = !this.maximum, + maxValue = this.maximum || 0, + steps = this.steps, i = 0, j, dx, dy, + pi2 = Math.PI * 2, + cos = Math.cos, sin = Math.sin, + display = this.label.display, + draw = display !== 'none', + margin = 10; + + if (!draw) { + return; + } + + //get all rendered fields + for (i = 0, ln = seriesItems.length; i < ln; i++) { + series = seriesItems[i]; + fields.push(series.yField); + xField = series.xField; + } + + //get maxValue to interpolate + for (j = 0, ln = data.length; j < ln; j++) { + record = data[j]; + categories.push(record.get(xField)); + + if (aggregate) { + for (i = 0, nfields = fields.length; i < nfields; i++) { + maxValue = max(+record.get(fields[i]), maxValue); + } + } + } + if (!this.labelArray) { + if (display != 'categories') { + //draw scale + for (i = 1; i <= steps; i++) { + label = surface.add({ + type: 'text', + text: round(i / steps * maxValue), + x: centerX, + y: centerY - rho * i / steps, + 'text-anchor': 'middle', + 'stroke-width': 0.1, + stroke: '#333' + }); + label.setAttributes({ + hidden: false + }, true); + labelArray.push(label); + } + } + if (display != 'scale') { + //draw text + for (j = 0, steps = categories.length; j < steps; j++) { + dx = cos(j / steps * pi2) * (rho + margin); + dy = sin(j / steps * pi2) * (rho + margin); + label = surface.add({ + type: 'text', + text: categories[j], + x: centerX + dx, + y: centerY + dy, + 'text-anchor': dx * dx <= 0.001? 'middle' : (dx < 0? 'end' : 'start') + }); + label.setAttributes({ + hidden: false + }, true); + labelArray.push(label); + } + } + } + else { + labelArray = this.labelArray; + if (display != 'categories') { + //draw values + for (i = 0; i < steps; i++) { + labelArray[i].setAttributes({ + text: round((i + 1) / steps * maxValue), + x: centerX, + y: centerY - rho * (i + 1) / steps, + 'text-anchor': 'middle', + 'stroke-width': 0.1, + stroke: '#333' + }, true); + } + } + if (display != 'scale') { + //draw text + for (j = 0, steps = categories.length; j < steps; j++) { + dx = cos(j / steps * pi2) * (rho + margin); + dy = sin(j / steps * pi2) * (rho + margin); + if (labelArray[i + j]) { + labelArray[i + j].setAttributes({ + type: 'text', + text: categories[j], + x: centerX + dx, + y: centerY + dy, + 'text-anchor': dx * dx <= 0.001? 'middle' : (dx < 0? 'end' : 'start') + }, true); + } + } + } + } + this.labelArray = labelArray; + }, + + getRange: function () { + var range = this.callParent(); + range.min = 0; // Radial charts currently assume that the origin is always 0. + return range; + }, + + processView: function() { + var me = this, + seriesItems = me.chart.series.items, + i, ln, series, ends, fields = []; + + for (i = 0, ln = seriesItems.length; i < ln; i++) { + series = seriesItems[i]; + fields.push(series.yField); + } + me.fields = fields; + + ends = me.calcEnds(); + me.maximum = ends.to; + me.steps = ends.steps; + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/chart/axis/Time.js b/extjs-django/marvel/static/extjs/src/chart/axis/Time.js new file mode 100644 index 0000000..4e5b781 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/axis/Time.js @@ -0,0 +1,160 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * A type of axis whose units are measured in time values. Use this axis + * for listing dates that you will want to group or dynamically change. + * If you just want to display dates as categories then use the + * Category class for axis instead. + * + * For example: + * + * axes: [{ + * type: 'Time', + * position: 'bottom', + * fields: 'date', + * title: 'Day', + * dateFormat: 'M d', + * + * constrain: true, + * fromDate: new Date('1/1/11'), + * toDate: new Date('1/7/11') + * }] + * + * In this example we're creating a time axis that has as title *Day*. + * The field the axis is bound to is `date`. + * The date format to use to display the text for the axis labels is `M d` + * which is a three letter month abbreviation followed by the day number. + * The time axis will show values for dates between `fromDate` and `toDate`. + * Since `constrain` is set to true all other values for other dates not between + * the fromDate and toDate will not be displayed. + * + */ +Ext.define('Ext.chart.axis.Time', { + + /* Begin Definitions */ + + extend: 'Ext.chart.axis.Numeric', + + alternateClassName: 'Ext.chart.TimeAxis', + + type: 'Time', + + alias: 'axis.time', + + uses: ['Ext.data.Store'], + + /* End Definitions */ + + /** + * @cfg {String/Boolean} dateFormat + * Indicates the format the date will be rendered on. + * For example: 'M d' will render the dates as 'Jan 30', etc. + * For a list of possible format strings see {@link Ext.Date Date} + */ + dateFormat: false, + + /** + * @cfg {Date} fromDate The starting date for the time axis. + */ + fromDate: false, + + /** + * @cfg {Date} toDate The ending date for the time axis. + */ + toDate: false, + + /** + * @cfg {Array} step + * An array with two components: The first is the unit of the step (day, month, year, etc). The second one is a number. + * If the number is an integer, it represents the number of units for the step ([Ext.Date.DAY, 2] means "Every other day"). + * If the number is a fraction, it represents the number of steps per unit ([Ext.Date.DAY, 1/2] means "Twice a day"). + * If the unit is the month, the steps may be adjusted depending on the month. For instance [Ext.Date.MONTH, 1/3], which means "Three times a month", + * generates steps on the 1st, the 10th and the 20th of every month regardless of whether a month has 28 days or 31 days. The steps are generated + * as follows: + * - [Ext.Date.MONTH, n]: on the current date every 'n' months, maxed to the number of days in the month. + * - [Ext.Date.MONTH, 1/2]: on the 1st and 15th of every month. + * - [Ext.Date.MONTH, 1/3]: on the 1st, 10th and 20th of every month. + * - [Ext.Date.MONTH, 1/4]: on the 1st, 8th, 15th and 22nd of every month. + * + * Defaults to: [Ext.Date.DAY, 1]. + */ + step: [Ext.Date.DAY, 1], + + /** + * @cfg {Boolean} constrain + * If true, the values of the chart will be rendered only if they belong between the fromDate and toDate. + * If false, the time axis will adapt to the new values by adding/removing steps. + */ + constrain: false, + + constructor: function (config) { + var me = this, label, f, df; + me.callParent([config]); + label = me.label || {}; + df = this.dateFormat; + if (df) { + if (label.renderer) { + f = label.renderer; + label.renderer = function(v) { + v = f(v); + return Ext.Date.format(new Date(f(v)), df); + }; + } else { + label.renderer = function(v) { + return Ext.Date.format(new Date(v >> 0), df); + }; + } + } + }, + + // Before rendering, set current default step count to be number of records. + processView: function () { + var me = this; + if (me.fromDate) { + me.minimum = +me.fromDate; + } + if (me.toDate) { + me.maximum = +me.toDate; + } + if(me.constrain){ + me.doConstrain(); + } + }, + + // @private modifies the store and creates the labels for the axes. + calcEnds: function() { + var me = this, range, step = me.step; + if (step) { + range = me.getRange(); + range = Ext.draw.Draw.snapEndsByDateAndStep(new Date(range.min), new Date(range.max), Ext.isNumber(step) ? [Date.MILLI, step]: step); + if (me.minimum) { + range.from = me.minimum; + } + if (me.maximum) { + range.to = me.maximum; + } + return range; + } else { + return me.callParent(arguments); + } + } + }); + diff --git a/extjs-django/marvel/static/extjs/src/chart/series/Area.js b/extjs-django/marvel/static/extjs/src/chart/series/Area.js new file mode 100644 index 0000000..c6254a3 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/series/Area.js @@ -0,0 +1,857 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.series.Area + * @extends Ext.chart.series.Cartesian + * + * Creates a Stacked Area Chart. The stacked area chart is useful when displaying multiple aggregated layers of information. + * As with all other series, the Area Series must be appended in the *series* Chart array configuration. See the Chart + * documentation for more information. A typical configuration object for the area series could be: + * + * @example + * var store = Ext.create('Ext.data.JsonStore', { + * fields: ['name', 'data1', 'data2', 'data3', 'data4', 'data5'], + * data: [ + * { 'name': 'metric one', 'data1':10, 'data2':12, 'data3':14, 'data4':8, 'data5':13 }, + * { 'name': 'metric two', 'data1':7, 'data2':8, 'data3':16, 'data4':10, 'data5':3 }, + * { 'name': 'metric three', 'data1':5, 'data2':2, 'data3':14, 'data4':12, 'data5':7 }, + * { 'name': 'metric four', 'data1':2, 'data2':14, 'data3':6, 'data4':1, 'data5':23 }, + * { 'name': 'metric five', 'data1':27, 'data2':38, 'data3':36, 'data4':13, 'data5':33 } + * ] + * }); + * + * Ext.create('Ext.chart.Chart', { + * renderTo: Ext.getBody(), + * width: 500, + * height: 300, + * store: store, + * axes: [ + * { + * type: 'Numeric', + * position: 'left', + * fields: ['data1', 'data2', 'data3', 'data4', 'data5'], + * title: 'Sample Values', + * grid: { + * odd: { + * opacity: 1, + * fill: '#ddd', + * stroke: '#bbb', + * 'stroke-width': 1 + * } + * }, + * minimum: 0, + * adjustMinimumByMajorUnit: 0 + * }, + * { + * type: 'Category', + * position: 'bottom', + * fields: ['name'], + * title: 'Sample Metrics', + * grid: true, + * label: { + * rotate: { + * degrees: 315 + * } + * } + * } + * ], + * series: [{ + * type: 'area', + * highlight: false, + * axis: 'left', + * xField: 'name', + * yField: ['data1', 'data2', 'data3', 'data4', 'data5'], + * style: { + * opacity: 0.93 + * } + * }] + * }); + * + * In this configuration we set `area` as the type for the series, set highlighting options to true for highlighting elements on hover, + * take the left axis to measure the data in the area series, set as xField (x values) the name field of each element in the store, + * and as yFields (aggregated layers) seven data fields from the same store. Then we override some theming styles by adding some opacity + * to the style object. + */ +Ext.define('Ext.chart.series.Area', { + + /* Begin Definitions */ + + extend: 'Ext.chart.series.Cartesian', + + alias: 'series.area', + + requires: ['Ext.chart.axis.Axis', 'Ext.draw.Color', 'Ext.fx.Anim'], + + /* End Definitions */ + + type: 'area', + + // @private Area charts are alyways stacked + stacked: true, + + /** + * @cfg {Object} style + * Append styling properties to this object for it to override theme properties. + */ + style: {}, + + constructor: function(config) { + this.callParent(arguments); + var me = this, + surface = me.chart.surface, + i, l; + config.highlightCfg = Ext.Object.merge({}, { + lineWidth: 3, + stroke: '#55c', + opacity: 0.8, + color: '#f00' + }, config.highlightCfg); + + Ext.apply(me, config, { + __excludes: [] + }); + if (me.highlight) { + me.highlightSprite = surface.add({ + type: 'path', + path: ['M', 0, 0], + zIndex: 1000, + opacity: 0.3, + lineWidth: 5, + hidden: true, + stroke: '#444' + }); + } + me.group = surface.getGroup(me.seriesId); + }, + + // @private Shrinks dataSets down to a smaller size + shrink: function(xValues, yValues, size) { + var len = xValues.length, + ratio = Math.floor(len / size), + i, j, + xSum = 0, + yCompLen = this.areas.length, + ySum = [], + xRes = [], + yRes = []; + //initialize array + for (j = 0; j < yCompLen; ++j) { + ySum[j] = 0; + } + for (i = 0; i < len; ++i) { + xSum += +xValues[i]; + for (j = 0; j < yCompLen; ++j) { + ySum[j] += +yValues[i][j]; + } + if (i % ratio == 0) { + //push averages + xRes.push(xSum/ratio); + for (j = 0; j < yCompLen; ++j) { + ySum[j] /= ratio; + } + yRes.push(ySum); + //reset sum accumulators + xSum = 0; + for (j = 0, ySum = []; j < yCompLen; ++j) { + ySum[j] = 0; + } + } + } + return { + x: xRes, + y: yRes + }; + }, + + // @private Get chart and data boundaries + getBounds: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + data = store.data.items, + i, l, record, + areas = [].concat(me.yField), + areasLen = areas.length, + xValues = [], + yValues = [], + infinity = Infinity, + minX = infinity, + minY = infinity, + maxX = -infinity, + maxY = -infinity, + math = Math, + mmin = math.min, + mmax = math.max, + boundAxis = me.getAxesForXAndYFields(), + boundXAxis = boundAxis.xAxis, + boundYAxis = boundAxis.yAxis, + ends, allowDate, tmp, + bbox, xScale, yScale, xValue, yValue, areaIndex, acumY, ln, sumValues, clipBox, areaElem, axis, out; + + me.setBBox(); + bbox = me.bbox; + + if (axis = chart.axes.get(boundXAxis)) { + if (axis.type === 'Time') { + allowDate = true; + } + ends = axis.applyData(); + minX = ends.from; + maxX = ends.to; + } + + if (axis = chart.axes.get(boundYAxis)) { + ends = axis.applyData(); + minY = ends.from; + maxY = ends.to; + } + + // If a field was specified without a corresponding axis, create one to get bounds + if (me.xField && !Ext.isNumber(minX)) { + axis = me.getMinMaxXValues(); + allowDate = true; + minX = axis[0]; + maxX = axis[1]; + } + + if (me.yField && !Ext.isNumber(minY)) { + axis = me.getMinMaxYValues(); + minY = axis[0]; + maxY = axis[1]; + } + + if (!Ext.isNumber(minY)) { + minY = 0; + } + if (!Ext.isNumber(maxY)) { + maxY = 0; + } + + l = data.length; + if (l > 0 && allowDate) { + tmp = data[0].get(me.xField); + if (typeof tmp != 'number') { + tmp = +tmp; + if (isNaN(tmp)) { + allowDate = false; + } + } + } + for (i = 0; i < l; i++) { + record = data[i]; + xValue = record.get(me.xField); + yValue = []; + if (typeof xValue != 'number') { + if (allowDate) { + xValue = +xValue; + } else { + xValue = i; + } + } + xValues.push(xValue); + acumY = 0; + for (areaIndex = 0; areaIndex < areasLen; areaIndex++) { + // Excluded series + if (me.__excludes[areaIndex]) { + continue; + } + areaElem = record.get(areas[areaIndex]); + if (typeof areaElem == 'number') { + yValue.push(areaElem); + } + } + yValues.push(yValue); + } + + xScale = bbox.width / ((maxX - minX) || 1); + yScale = bbox.height / ((maxY - minY) || 1); + + ln = xValues.length; + if ((ln > bbox.width) && me.areas) { + sumValues = me.shrink(xValues, yValues, bbox.width); + xValues = sumValues.x; + yValues = sumValues.y; + } + + return { + bbox: bbox, + minX: minX, + minY: minY, + xValues: xValues, + yValues: yValues, + xScale: xScale, + yScale: yScale, + areasLen: areasLen + }; + }, + + // @private Build an array of paths for the chart + getPaths: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + first = true, + bounds = me.getBounds(), + bbox = bounds.bbox, + items = me.items = [], + componentPaths = [], + componentPath, + count = 0, + paths = [], + i, ln, x, y, xValue, yValue, acumY, areaIndex, prevAreaIndex, areaElem, path, startX; + + ln = bounds.xValues.length; + // Start the path + for (i = 0; i < ln; i++) { + xValue = bounds.xValues[i]; + yValue = bounds.yValues[i]; + x = bbox.x + (xValue - bounds.minX) * bounds.xScale; + if (startX === undefined) { + startX = x; + } + acumY = 0; + count = 0; + for (areaIndex = 0; areaIndex < bounds.areasLen; areaIndex++) { + // Excluded series + if (me.__excludes[areaIndex]) { + continue; + } + if (!componentPaths[areaIndex]) { + componentPaths[areaIndex] = []; + } + areaElem = yValue[count]; + acumY += areaElem; + y = bbox.y + bbox.height - (acumY - bounds.minY) * bounds.yScale; + if (!paths[areaIndex]) { + paths[areaIndex] = ['M', x, y]; + componentPaths[areaIndex].push(['L', x, y]); + } else { + paths[areaIndex].push('L', x, y); + componentPaths[areaIndex].push(['L', x, y]); + } + if (!items[areaIndex]) { + items[areaIndex] = { + pointsUp: [], + pointsDown: [], + series: me + }; + } + items[areaIndex].pointsUp.push([x, y]); + count++; + } + } + + // Close the paths + for (areaIndex = 0; areaIndex < bounds.areasLen; areaIndex++) { + // Excluded series + if (me.__excludes[areaIndex]) { + continue; + } + path = paths[areaIndex]; + + // Close bottom path to the axis + if (areaIndex == 0 || first) { + first = false; + + path.push('L', x, bbox.y + bbox.height, + 'L', startX, bbox.y + bbox.height, + 'Z'); + } + // Close other paths to the one before them + else { + componentPath = componentPaths[prevAreaIndex]; + componentPath.reverse(); + path.push('L', x, componentPath[0][2]); + for (i = 0; i < ln; i++) { + path.push(componentPath[i][0], + componentPath[i][1], + componentPath[i][2]); + items[areaIndex].pointsDown[ln -i -1] = [componentPath[i][1], componentPath[i][2]]; + } + path.push('L', startX, path[2], 'Z'); + } + prevAreaIndex = areaIndex; + } + return { + paths: paths, + areasLen: bounds.areasLen + }; + }, + + /** + * Draws the series for the current chart. + */ + drawSeries: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + surface = chart.surface, + animate = chart.animate, + group = me.group, + endLineStyle = Ext.apply(me.seriesStyle, me.style), + colorArrayStyle = me.colorArrayStyle, + colorArrayLength = colorArrayStyle && colorArrayStyle.length || 0, + themeIndex = me.themeIdx, + areaIndex, areaElem, paths, path, rendererAttributes, idx; + + me.unHighlightItem(); + me.cleanHighlights(); + + if (!store || !store.getCount() || me.seriesIsHidden) { + me.hide(); + me.items = []; + return; + } + + paths = me.getPaths(); + + if (!me.areas) { + me.areas = []; + } + + for (areaIndex = 0; areaIndex < paths.areasLen; areaIndex++) { + // Excluded series + if (me.__excludes[areaIndex]) { + continue; + } + idx = themeIndex + areaIndex; + if (!me.areas[areaIndex]) { + me.items[areaIndex].sprite = me.areas[areaIndex] = surface.add(Ext.apply({}, { + type: 'path', + group: group, + // 'clip-rect': me.clipBox, + path: paths.paths[areaIndex], + stroke: endLineStyle.stroke || colorArrayStyle[idx % colorArrayLength], + fill: colorArrayStyle[idx % colorArrayLength] + }, endLineStyle || {})); + } + areaElem = me.areas[areaIndex]; + path = paths.paths[areaIndex]; + if (animate) { + //Add renderer to line. There is not a unique record associated with this. + rendererAttributes = me.renderer(areaElem, false, { + path: path, + // 'clip-rect': me.clipBox, + fill: colorArrayStyle[areaIndex % colorArrayLength], + stroke: endLineStyle.stroke || colorArrayStyle[areaIndex % colorArrayLength] + }, areaIndex, store); + //fill should not be used here but when drawing the special fill path object + me.animation = me.onAnimate(areaElem, { + to: rendererAttributes + }); + } else { + rendererAttributes = me.renderer(areaElem, false, { + path: path, + // 'clip-rect': me.clipBox, + hidden: false, + fill: colorArrayStyle[idx % colorArrayLength], + stroke: endLineStyle.stroke || colorArrayStyle[idx % colorArrayLength] + }, areaIndex, store); + me.areas[areaIndex].setAttributes(rendererAttributes, true); + } + } + me.renderLabels(); + me.renderCallouts(); + }, + + // @private + onAnimate: function(sprite, attr) { + sprite.show(); + return this.callParent(arguments); + }, + + // @private + onCreateLabel: function(storeItem, item, i, display) { + // TODO: Implement labels for Area charts. + // The code in onCreateLabel() and onPlaceLabel() was originally copied + // from another Series but it cannot work because item.point[] doesn't + // exist in Area charts. Instead, the getPaths() methods above prepares + // item.pointsUp[] and item.pointsDown[] which don't have the same structure. + // In other series, there are as many 'items' as there are data points along the + // x-axis. In this series, there are as many 'items' as there are series + // (usually a much smaller number) and each pointsUp[] or pointsDown[] array + // contains as many values as there are data points along the x-axis; + return null; + + var me = this, + group = me.labelsGroup, + config = me.label, + bbox = me.bbox, + endLabelStyle = Ext.apply({}, config, me.seriesLabelStyle || {}); + + return me.chart.surface.add(Ext.apply({ + 'type': 'text', + 'text-anchor': 'middle', + 'group': group, + 'x': Number(item.point[0]), + 'y': bbox.y + bbox.height / 2 + }, endLabelStyle || {})); + }, + + // @private + onPlaceLabel: function(label, storeItem, item, i, display, animate, index) { + var me = this, + chart = me.chart, + resizing = chart.resizing, + config = me.label, + format = config.renderer, + field = config.field, + bbox = me.bbox, + x = Number(item.point[i][0]), + y = Number(item.point[i][1]), + labelBox, width, height; + + label.setAttributes({ + text: format(storeItem.get(field[index]), label, storeItem, item, i, display, animate, index), + hidden: true + }, true); + + labelBox = label.getBBox(); + width = labelBox.width / 2; + height = labelBox.height / 2; + + //correct label position to fit into the box + if (x < bbox.x + width) { + x = bbox.x + width; + } else if (x + width > bbox.x + bbox.width) { + x = bbox.x + bbox.width - width; + } + + y = y - height; + if (y < bbox.y + height) { + y += 2 * height; + } else if (y + height > bbox.y + bbox.height) { + y -= 2 * height; + } + + if (me.chart.animate && !me.chart.resizing) { + label.show(true); + me.onAnimate(label, { + to: { + x: x, + y: y + } + }); + } else { + label.setAttributes({ + x: x, + y: y + }, true); + if (resizing && me.animation) { + me.animation.on('afteranimate', function() { + label.show(true); + }); + } else { + label.show(true); + } + } + }, + + // @private + onPlaceCallout : function(callout, storeItem, item, i, display, animate, index) { + var me = this, + chart = me.chart, + surface = chart.surface, + resizing = chart.resizing, + config = me.callouts, + items = me.items, + prev = (i == 0) ? false : items[i -1].point, + next = (i == items.length -1) ? false : items[i +1].point, + cur = item.point, + dir, norm, normal, a, aprev, anext, + bbox = (callout && callout.label ? callout.label.getBBox() : {width:0,height:0}), + offsetFromViz = 30, + offsetToSide = 10, + offsetBox = 3, + boxx, boxy, boxw, boxh, + p, clipRect = me.clipRect, + x, y; + + if (!bbox.width || !bbox.height) { + return; + } + + //get the right two points + if (!prev) { + prev = cur; + } + if (!next) { + next = cur; + } + a = (next[1] - prev[1]) / (next[0] - prev[0]); + aprev = (cur[1] - prev[1]) / (cur[0] - prev[0]); + anext = (next[1] - cur[1]) / (next[0] - cur[0]); + + norm = Math.sqrt(1 + a * a); + dir = [1 / norm, a / norm]; + normal = [-dir[1], dir[0]]; + + //keep the label always on the outer part of the "elbow" + if (aprev > 0 && anext < 0 && normal[1] < 0 || aprev < 0 && anext > 0 && normal[1] > 0) { + normal[0] *= -1; + normal[1] *= -1; + } else if (Math.abs(aprev) < Math.abs(anext) && normal[0] < 0 || Math.abs(aprev) > Math.abs(anext) && normal[0] > 0) { + normal[0] *= -1; + normal[1] *= -1; + } + + //position + x = cur[0] + normal[0] * offsetFromViz; + y = cur[1] + normal[1] * offsetFromViz; + + //box position and dimensions + boxx = x + (normal[0] > 0? 0 : -(bbox.width + 2 * offsetBox)); + boxy = y - bbox.height /2 - offsetBox; + boxw = bbox.width + 2 * offsetBox; + boxh = bbox.height + 2 * offsetBox; + + //now check if we're out of bounds and invert the normal vector correspondingly + //this may add new overlaps between labels (but labels won't be out of bounds). + if (boxx < clipRect[0] || (boxx + boxw) > (clipRect[0] + clipRect[2])) { + normal[0] *= -1; + } + if (boxy < clipRect[1] || (boxy + boxh) > (clipRect[1] + clipRect[3])) { + normal[1] *= -1; + } + + //update positions + x = cur[0] + normal[0] * offsetFromViz; + y = cur[1] + normal[1] * offsetFromViz; + + //update box position and dimensions + boxx = x + (normal[0] > 0? 0 : -(bbox.width + 2 * offsetBox)); + boxy = y - bbox.height /2 - offsetBox; + boxw = bbox.width + 2 * offsetBox; + boxh = bbox.height + 2 * offsetBox; + + //set the line from the middle of the pie to the box. + callout.lines.setAttributes({ + path: ["M", cur[0], cur[1], "L", x, y, "Z"] + }, true); + //set box position + callout.box.setAttributes({ + x: boxx, + y: boxy, + width: boxw, + height: boxh + }, true); + //set text position + callout.label.setAttributes({ + x: x + (normal[0] > 0? offsetBox : -(bbox.width + offsetBox)), + y: y + }, true); + for (p in callout) { + callout[p].show(true); + } + }, + + isItemInPoint: function(x, y, item, i) { + var me = this, + pointsUp = item.pointsUp, + pointsDown = item.pointsDown, + abs = Math.abs, + distChanged = false, + last = false, + dist = Infinity, p, pln, point; + + for (p = 0, pln = pointsUp.length; p < pln; p++) { + point = [pointsUp[p][0], pointsUp[p][1]]; + + distChanged = false; + last = p == pln -1; + + if (dist > abs(x - point[0])) { + dist = abs(x - point[0]); + distChanged = true; + if (last) { + ++p; + } + } + + if (!distChanged || (distChanged && last)) { + point = pointsUp[p -1]; + if (y >= point[1] && (!pointsDown.length || y <= (pointsDown[p -1][1]))) { + item.storeIndex = p -1; + item.storeField = me.yField[i]; + item.storeItem = me.chart.getChartStore().getAt(p -1); + item._points = pointsDown.length? [point, pointsDown[p -1]] : [point]; + return true; + } else { + break; + } + } + } + return false; + }, + + /** + * Highlight this entire series. + * @param {Object} item Info about the item; same format as returned by #getItemForPoint. + */ + highlightSeries: function() { + var area, to, fillColor; + if (this._index !== undefined) { + area = this.areas[this._index]; + if (area.__highlightAnim) { + area.__highlightAnim.paused = true; + } + area.__highlighted = true; + area.__prevOpacity = area.__prevOpacity || area.attr.opacity || 1; + area.__prevFill = area.__prevFill || area.attr.fill; + area.__prevLineWidth = area.__prevLineWidth || area.attr.lineWidth; + fillColor = Ext.draw.Color.fromString(area.__prevFill); + to = { + lineWidth: (area.__prevLineWidth || 0) + 2 + }; + if (fillColor) { + to.fill = fillColor.getLighter(0.2).toString(); + } + else { + to.opacity = Math.max(area.__prevOpacity - 0.3, 0); + } + if (this.chart.animate) { + area.__highlightAnim = new Ext.fx.Anim(Ext.apply({ + target: area, + to: to + }, this.chart.animate)); + } + else { + area.setAttributes(to, true); + } + } + }, + + /** + * UnHighlight this entire series. + * @param {Object} item Info about the item; same format as returned by #getItemForPoint. + */ + unHighlightSeries: function() { + var area; + if (this._index !== undefined) { + area = this.areas[this._index]; + if (area.__highlightAnim) { + area.__highlightAnim.paused = true; + } + if (area.__highlighted) { + area.__highlighted = false; + area.__highlightAnim = new Ext.fx.Anim({ + target: area, + to: { + fill: area.__prevFill, + opacity: area.__prevOpacity, + lineWidth: area.__prevLineWidth + } + }); + } + } + }, + + /** + * Highlight the specified item. If no item is provided the whole series will be highlighted. + * @param item {Object} Info about the item; same format as returned by #getItemForPoint + */ + highlightItem: function(item) { + var me = this, + points, path; + if (!item) { + this.highlightSeries(); + return; + } + points = item._points; + path = points.length == 2? ['M', points[0][0], points[0][1], 'L', points[1][0], points[1][1]] + : ['M', points[0][0], points[0][1], 'L', points[0][0], me.bbox.y + me.bbox.height]; + me.highlightSprite.setAttributes({ + path: path, + hidden: false + }, true); + }, + + /** + * Un-highlights the specified item. If no item is provided it will un-highlight the entire series. + * @param {Object} item Info about the item; same format as returned by #getItemForPoint + */ + unHighlightItem: function(item) { + if (!item) { + this.unHighlightSeries(); + } + + if (this.highlightSprite) { + this.highlightSprite.hide(true); + } + }, + + // @private + hideAll: function(index) { + var me = this; + index = (isNaN(me._index) ? index : me._index) || 0; + me.__excludes[index] = true; + me.areas[index].hide(true); + me.redraw(); + }, + + // @private + showAll: function(index) { + var me = this; + index = (isNaN(me._index) ? index : me._index) || 0; + me.__excludes[index] = false; + me.areas[index].show(true); + me.redraw(); + }, + + redraw: function() { + //store previous configuration for the legend + //and set it to false so we don't + //re-build label elements if not necessary. + var me = this, + prevLegendConfig; + prevLegendConfig = me.chart.legend.rebuild; + me.chart.legend.rebuild = false; + me.chart.redraw(); + me.chart.legend.rebuild = prevLegendConfig; + }, + + hide: function() { + if (this.areas) { + var me = this, + areas = me.areas, + i, j, l, ln, shadows; + + if (areas && areas.length) { + for (i = 0, ln = areas.length; i < ln; ++i) { + if (areas[i]) { + areas[i].hide(true); + } + } + me.hideLabels(); + } + } + }, + + /** + * Returns the color of the series (to be displayed as color for the series legend item). + * @param {Object} item Info about the item; same format as returned by #getItemForPoint + */ + getLegendColor: function(index) { + var me = this; + index += me.themeIdx; + return me.colorArrayStyle[index % me.colorArrayStyle.length]; + } +}); diff --git a/extjs-django/marvel/static/extjs/src/chart/series/Bar.js b/extjs-django/marvel/static/extjs/src/chart/series/Bar.js new file mode 100644 index 0000000..39ede4d --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/series/Bar.js @@ -0,0 +1,1150 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * Creates a Bar Chart. A Bar Chart is a useful visualization technique to display quantitative information for + * different categories that can show some progression (or regression) in the dataset. As with all other series, the Bar + * Series must be appended in the *series* Chart array configuration. See the Chart documentation for more information. + * A typical configuration object for the bar series could be: + * + * @example + * var store = Ext.create('Ext.data.JsonStore', { + * fields: ['name', 'data'], + * data: [ + * { 'name': 'metric one', 'data':10 }, + * { 'name': 'metric two', 'data': 7 }, + * { 'name': 'metric three', 'data': 5 }, + * { 'name': 'metric four', 'data': 2 }, + * { 'name': 'metric five', 'data':27 } + * ] + * }); + * + * Ext.create('Ext.chart.Chart', { + * renderTo: Ext.getBody(), + * width: 500, + * height: 300, + * animate: true, + * store: store, + * axes: [{ + * type: 'Numeric', + * position: 'bottom', + * fields: ['data'], + * label: { + * renderer: Ext.util.Format.numberRenderer('0,0') + * }, + * title: 'Sample Values', + * grid: true, + * minimum: 0 + * }, { + * type: 'Category', + * position: 'left', + * fields: ['name'], + * title: 'Sample Metrics' + * }], + * series: [{ + * type: 'bar', + * axis: 'bottom', + * highlight: true, + * tips: { + * trackMouse: true, + * width: 140, + * height: 28, + * renderer: function(storeItem, item) { + * this.setTitle(storeItem.get('name') + ': ' + storeItem.get('data') + ' views'); + * } + * }, + * label: { + * display: 'insideEnd', + * field: 'data', + * renderer: Ext.util.Format.numberRenderer('0'), + * orientation: 'horizontal', + * color: '#333', + * 'text-anchor': 'middle' + * }, + * xField: 'name', + * yField: 'data' + * }] + * }); + * + * In this configuration we set `bar` as the series type, bind the values of the bar to the bottom axis and set the + * xField or category field to the `name` parameter of the store. We also set `highlight` to true which enables smooth + * animations when bars are hovered. We also set some configuration for the bar labels to be displayed inside the bar, + * to display the information found in the `data1` property of each element store, to render a formated text with the + * `Ext.util.Format` we pass in, to have an `horizontal` orientation (as opposed to a vertical one) and we also set + * other styles like `color`, `text-anchor`, etc. + */ +Ext.define('Ext.chart.series.Bar', { + + /* Begin Definitions */ + + extend: 'Ext.chart.series.Cartesian', + + alternateClassName: ['Ext.chart.BarSeries', 'Ext.chart.BarChart', 'Ext.chart.StackedBarChart'], + + requires: ['Ext.chart.axis.Axis', 'Ext.fx.Anim'], + + /* End Definitions */ + + type: 'bar', + + alias: 'series.bar', + /** + * @cfg {Boolean} column Whether to set the visualization as column chart or horizontal bar chart. + */ + column: false, + + /** + * @cfg style Style properties that will override the theming series styles. + */ + style: {}, + + /** + * @cfg {Number} gutter The gutter space between single bars, as a percentage of the bar width + */ + gutter: 38.2, + + /** + * @cfg {Number} groupGutter The gutter space between groups of bars, as a percentage of the bar width + */ + groupGutter: 38.2, + + /** + * @cfg {Number/Object} xPadding Padding between the left/right axes and the bars. + * The possible values are a number (the number of pixels for both left and right padding) + * or an object with `{ left, right }` properties. + */ + xPadding: 0, + + /** + * @cfg {Number/Object} yPadding Padding between the top/bottom axes and the bars. + * The possible values are a number (the number of pixels for both top and bottom padding) + * or an object with `{ top, bottom }` properties. + */ + yPadding: 10, + + /** + * @cfg {Boolean} stacked + * If set to `true` then bars for multiple `yField` values will be rendered stacked on top of one another. + * Otherwise, they will be rendered side-by-side. Defaults to `false`. + */ + + constructor: function(config) { + this.callParent(arguments); + var me = this, + surface = me.chart.surface, + shadow = me.chart.shadow, + i, l; + config.highlightCfg = Ext.Object.merge({ + lineWidth: 3, + stroke: '#55c', + opacity: 0.8, + color: '#f00' + }, config.highlightCfg); + Ext.apply(me, config, { + shadowAttributes: [{ + "stroke-width": 6, + "stroke-opacity": 0.05, + stroke: 'rgb(200, 200, 200)', + translate: { + x: 1.2, + y: 1.2 + } + }, { + "stroke-width": 4, + "stroke-opacity": 0.1, + stroke: 'rgb(150, 150, 150)', + translate: { + x: 0.9, + y: 0.9 + } + }, { + "stroke-width": 2, + "stroke-opacity": 0.15, + stroke: 'rgb(100, 100, 100)', + translate: { + x: 0.6, + y: 0.6 + } + }] + }); + + me.group = surface.getGroup(me.seriesId + '-bars'); + if (shadow) { + for (i = 0, l = me.shadowAttributes.length; i < l; i++) { + me.shadowGroups.push(surface.getGroup(me.seriesId + '-shadows' + i)); + } + } + }, + + // @private returns the padding. + getPadding: function() { + var me = this, + xPadding = me.xPadding, + yPadding = me.yPadding, + padding = { }; + + if (Ext.isNumber(xPadding)) { + padding.left = xPadding; + padding.right = xPadding; + } else if (Ext.isObject(xPadding)) { + padding.left = xPadding.left; + padding.right = xPadding.right; + } else { + padding.left = 0; + padding.right = 0; + } + padding.width = padding.left + padding.right; + + if (Ext.isNumber(yPadding)) { + padding.bottom = yPadding; + padding.top = yPadding; + } else if (Ext.isObject(yPadding)) { + padding.bottom = yPadding.bottom; + padding.top = yPadding.top; + } else { + padding.bottom = 0; + padding.top = 0; + } + padding.height = padding.bottom + padding.top; + + return padding; + }, + + // @private returns the bar girth. + getBarGirth: function() { + var me = this, + store = me.chart.getChartStore(), + column = me.column, + ln = store.getCount(), + gutter = me.gutter / 100, + padding, + property; + + if (me.style && me.style.width) { + return me.style.width; + } + padding = me.getPadding(); + property = (column ? 'width' : 'height'); + return (me.chart.chartBBox[property] - padding[property]) / (ln * (gutter + 1) - gutter); + }, + + // @private returns the gutters. + getGutters: function() { + var me = this, + column = me.column, + padding = me.getPadding(), + halfBarGirth = me.getBarGirth() / 2, + lowerGutter = Math.ceil((column ? padding.left : padding.bottom) + halfBarGirth), + upperGutter = Math.ceil((column ? padding.right : padding.top) + halfBarGirth); + + return { + lower: lowerGutter, + upper: upperGutter, + verticalAxis: !column + }; + }, + + // @private Get chart and data boundaries + getBounds: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + data = store.data.items, + i, ln, record, + bars = [].concat(me.yField), + barsLoc, + barsLen = bars.length, + groupBarsLen = barsLen, + groupGutter = me.groupGutter / 100, + column = me.column, + padding = me.getPadding(), + stacked = me.stacked, + barWidth = me.getBarGirth(), + barWidthProperty = column ? 'width' : 'height', + math = Math, + mmin = math.min, + mmax = math.max, + mabs = math.abs, + boundAxes = me.getAxesForXAndYFields(), + boundYAxis = boundAxes.yAxis, + minX, maxX, colsScale, colsZero, gutters, + ends, shrunkBarWidth, groupBarWidth, bbox, minY, maxY, axis, out, + scale, zero, total, rec, j, plus, minus; + + me.setBBox(true); + bbox = me.bbox; + + //Skip excluded series + if (me.__excludes) { + for (j = 0, total = me.__excludes.length; j < total; j++) { + if (me.__excludes[j]) { + groupBarsLen--; + } + } + } + axis = chart.axes.get(boundYAxis); + if (axis) { + ends = axis.applyData(); + minY = ends.from; + maxY = ends.to; + } + + if (me.yField && !Ext.isNumber(minY)) { + out = me.getMinMaxYValues(); + minY = out[0]; + maxY = out[1]; + } + + if (!Ext.isNumber(minY)) { + minY = 0; + } + if (!Ext.isNumber(maxY)) { + maxY = 0; + } + scale = (column ? bbox.height - padding.height : bbox.width - padding.width) / (maxY - minY); + shrunkBarWidth = barWidth; + groupBarWidth = (barWidth / ((stacked ? 1 : groupBarsLen) * (groupGutter + 1) - groupGutter)); + + if (barWidthProperty in me.style) { + groupBarWidth = mmin(groupBarWidth, me.style[barWidthProperty]); + shrunkBarWidth = groupBarWidth * ((stacked ? 1 : groupBarsLen) * (groupGutter + 1) - groupGutter); + } + zero = (column) ? bbox.y + bbox.height - padding.bottom : bbox.x + padding.left; + + if (stacked) { + total = [[], []]; + for (i = 0, ln = data.length; i < ln; i++) { + record = data[i]; + total[0][i] = total[0][i] || 0; + total[1][i] = total[1][i] || 0; + for (j = 0; j < barsLen; j++) { + if (me.__excludes && me.__excludes[j]) { + continue; + } + rec = record.get(bars[j]); + total[+(rec > 0)][i] += mabs(rec); + } + } + total[+(maxY > 0)].push(mabs(maxY)); + total[+(minY > 0)].push(mabs(minY)); + minus = mmax.apply(math, total[0]); + plus = mmax.apply(math, total[1]); + scale = (column ? bbox.height - padding.height : bbox.width - padding.width) / (plus + minus); + zero = zero + minus * scale * (column ? -1 : 1); + } + else if (minY / maxY < 0) { + zero = zero - minY * scale * (column ? -1 : 1); + } + + // If the columns are bound to the x-axis, calculate their positions + if (me.boundColumn) { + axis = chart.axes.get(boundAxes.xAxis); + if (axis) { + ends = axis.applyData(); + minX = ends.from; + maxX = ends.to; + } + if (me.xField && !Ext.isNumber(minX)) { + out = me.getMinMaxYValues(); + minX = out[0]; + maxX = out[1]; + } + if (!Ext.isNumber(minX)) { + minX = 0; + } + if (!Ext.isNumber(maxX)) { + maxX = 0; + } + gutters = me.getGutters(); + colsScale = (bbox.width - (gutters.lower + gutters.upper)) / ((maxX - minX) || 1); + + colsZero = bbox.x + gutters.lower; + + barsLoc = []; + for (i = 0, ln = data.length; i < ln; i++) { + record = data[i]; + rec = record.get(me.xField); + barsLoc[i] = colsZero + (rec - minX) * colsScale - (groupBarWidth / 2); + } + } + + return { + bars: bars, + barsLoc: barsLoc, + bbox: bbox, + shrunkBarWidth: shrunkBarWidth, + barsLen: barsLen, + groupBarsLen: groupBarsLen, + barWidth: barWidth, + groupBarWidth: groupBarWidth, + scale: scale, + zero: zero, + padding: padding, + signed: minY / maxY < 0, + minY: minY, + maxY: maxY + }; + }, + + // @private Build an array of paths for the chart + getPaths: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + data = store.data.items, + i, total, record, + bounds = me.bounds = me.getBounds(), + items = me.items = [], + yFields = Ext.isArray(me.yField) ? me.yField : [me.yField], + gutter = me.gutter / 100, + groupGutter = me.groupGutter / 100, + animate = chart.animate, + column = me.column, + group = me.group, + enableShadows = chart.shadow, + shadowGroups = me.shadowGroups, + shadowAttributes = me.shadowAttributes, + shadowGroupsLn = shadowGroups.length, + bbox = bounds.bbox, + barWidth = bounds.barWidth, + shrunkBarWidth = bounds.shrunkBarWidth, + padding = me.getPadding(), + stacked = me.stacked, + barsLen = bounds.barsLen, + colors = me.colorArrayStyle, + colorLength = colors && colors.length || 0, + themeIndex = me.themeIdx, + math = Math, + mmax = math.max, + mmin = math.min, + mabs = math.abs, + j, yValue, height, totalDim, totalNegDim, bottom, top, hasShadow, barAttr, attrs, counter, + totalPositiveValues, totalNegativeValues, + shadowIndex, shadow, sprite, offset, floorY, idx; + + for (i = 0, total = data.length; i < total; i++) { + record = data[i]; + bottom = bounds.zero; + top = bounds.zero; + totalDim = 0; + totalNegDim = 0; + totalPositiveValues = totalNegativeValues = 0; + hasShadow = false; + for (j = 0, counter = 0; j < barsLen; j++) { + // Excluded series + if (me.__excludes && me.__excludes[j]) { + continue; + } + yValue = record.get(bounds.bars[j]); + if (yValue >= 0) { + totalPositiveValues += yValue; + } + else { + totalNegativeValues += yValue; + } + height = Math.round((yValue - mmax(bounds.minY, 0)) * bounds.scale); + idx = themeIndex + (barsLen > 1 ? j : 0); + barAttr = { + fill: colors[idx % colorLength] + }; + if (column) { + Ext.apply(barAttr, { + height: height, + width: mmax(bounds.groupBarWidth, 0), + x: (me.boundColumn ? bounds.barsLoc[i] + : (bbox.x + padding.left + + (barWidth - shrunkBarWidth) * 0.5 + + i * barWidth * (1 + gutter) + + counter * bounds.groupBarWidth * (1 + groupGutter) * !stacked)), + y: bottom - height + }); + } + else { + // draw in reverse order + offset = (total - 1) - i; + Ext.apply(barAttr, { + height: mmax(bounds.groupBarWidth, 0), + width: height + (bottom == bounds.zero), + x: bottom + (bottom != bounds.zero), + y: (bbox.y + padding.top + + (barWidth - shrunkBarWidth) * 0.5 + + offset * barWidth * (1 + gutter) + + counter * bounds.groupBarWidth * (1 + groupGutter) * !stacked + 1) + }); + } + if (height < 0) { + if (column) { + barAttr.y = top; + barAttr.height = mabs(height); + } else { + barAttr.x = top + height; + barAttr.width = mabs(height); + } + } + if (stacked) { + if (height < 0) { + top += height * (column ? -1 : 1); + } else { + bottom += height * (column ? -1 : 1); + } + totalDim += mabs(height); + if (height < 0) { + totalNegDim += mabs(height); + } + } + barAttr.x = Math.floor(barAttr.x) + 1; + floorY = Math.floor(barAttr.y); + if (Ext.isIE8m && barAttr.y > floorY) { + floorY--; + } + barAttr.y = floorY; + barAttr.width = Math.floor(barAttr.width); + barAttr.height = Math.floor(barAttr.height); + items.push({ + series: me, + yField: yFields[j], + storeItem: record, + value: [record.get(me.xField), yValue], + attr: barAttr, + point: column ? [barAttr.x + barAttr.width / 2, yValue >= 0 ? barAttr.y : barAttr.y + barAttr.height] : + [yValue >= 0 ? barAttr.x + barAttr.width : barAttr.x, barAttr.y + barAttr.height / 2] + }); + // When resizing, reset before animating + if (animate && chart.resizing) { + attrs = column ? { + x: barAttr.x, + y: bounds.zero, + width: barAttr.width, + height: 0 + } : { + x: bounds.zero, + y: barAttr.y, + width: 0, + height: barAttr.height + }; + if (enableShadows && (stacked && !hasShadow || !stacked)) { + hasShadow = true; + //update shadows + for (shadowIndex = 0; shadowIndex < shadowGroupsLn; shadowIndex++) { + shadow = shadowGroups[shadowIndex].getAt(stacked ? i : (i * barsLen + j)); + if (shadow) { + shadow.setAttributes(attrs, true); + } + } + } + //update sprite position and width/height + sprite = group.getAt(i * barsLen + j); + if (sprite) { + sprite.setAttributes(attrs, true); + } + } + counter++; + } + if (stacked && items.length) { + items[i * counter].totalDim = totalDim; + items[i * counter].totalNegDim = totalNegDim; + items[i * counter].totalPositiveValues = totalPositiveValues; + items[i * counter].totalNegativeValues = totalNegativeValues; + } + } + if (stacked && counter == 0) { + // Remove ghost shadow ref: EXTJSIV-5982 + for (i = 0, total = data.length; i < total; i++) { + for (shadowIndex = 0; shadowIndex < shadowGroupsLn; shadowIndex++) { + shadow = shadowGroups[shadowIndex].getAt(i); + if (shadow) { + shadow.hide(true); + } + } + } + } + }, + + // @private render/setAttributes on the shadows + renderShadows: function(i, barAttr, baseAttrs, bounds) { + var me = this, + chart = me.chart, + surface = chart.surface, + animate = chart.animate, + stacked = me.stacked, + shadowGroups = me.shadowGroups, + shadowAttributes = me.shadowAttributes, + shadowGroupsLn = shadowGroups.length, + store = chart.getChartStore(), + column = me.column, + items = me.items, + shadows = [], + zero = bounds.zero, + shadowIndex, shadowBarAttr, shadow, totalDim, totalNegDim, j, rendererAttributes; + + if ((stacked && (i % bounds.groupBarsLen === 0)) || !stacked) { + j = i / bounds.groupBarsLen; + //create shadows + for (shadowIndex = 0; shadowIndex < shadowGroupsLn; shadowIndex++) { + shadowBarAttr = Ext.apply({}, shadowAttributes[shadowIndex]); + shadow = shadowGroups[shadowIndex].getAt(stacked ? j : i); + Ext.copyTo(shadowBarAttr, barAttr, 'x,y,width,height'); + if (!shadow) { + shadow = surface.add(Ext.apply({ + type: 'rect', + group: shadowGroups[shadowIndex] + }, Ext.apply({}, baseAttrs, shadowBarAttr))); + } + if (stacked) { + totalDim = items[i].totalDim; + totalNegDim = items[i].totalNegDim; + if (column) { + shadowBarAttr.y = zero + totalNegDim - totalDim - 1; + shadowBarAttr.height = totalDim; + } + else { + shadowBarAttr.x = zero - totalNegDim; + shadowBarAttr.width = totalDim; + } + } + + rendererAttributes = me.renderer(shadow, store.getAt(j), shadowBarAttr, i, store); + rendererAttributes.hidden = !!barAttr.hidden; + if (animate) { + me.onAnimate(shadow, { to: rendererAttributes }); + } + else { + shadow.setAttributes(rendererAttributes, true); + } + shadows.push(shadow); + } + } + return shadows; + }, + + /** + * Draws the series for the current chart. + */ + drawSeries: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + surface = chart.surface, + animate = chart.animate, + stacked = me.stacked, + column = me.column, + chartAxes = chart.axes, + boundAxes = me.getAxesForXAndYFields(), + boundXAxis = boundAxes.xAxis, + boundYAxis = boundAxes.yAxis, + enableShadows = chart.shadow, + shadowGroups = me.shadowGroups, + shadowGroupsLn = shadowGroups.length, + group = me.group, + seriesStyle = me.seriesStyle, + items, ln, i, j, baseAttrs, sprite, rendererAttributes, shadowIndex, shadowGroup, + bounds, endSeriesStyle, barAttr, attrs, anim; + + if (!store || !store.getCount() || me.seriesIsHidden) { + me.hide(); + me.items = []; + return; + } + + //fill colors are taken from the colors array. + endSeriesStyle = Ext.apply({}, this.style, seriesStyle); + delete endSeriesStyle.fill; + delete endSeriesStyle.x; + delete endSeriesStyle.y; + delete endSeriesStyle.width; + delete endSeriesStyle.height; + + me.unHighlightItem(); + me.cleanHighlights(); + + me.boundColumn = (boundXAxis && Ext.Array.contains(me.axis,boundXAxis) + && chartAxes.get(boundXAxis) + && chartAxes.get(boundXAxis).isNumericAxis); + + me.getPaths(); + bounds = me.bounds; + items = me.items; + + baseAttrs = column ? { + y: bounds.zero, + height: 0 + } : { + x: bounds.zero, + width: 0 + }; + ln = items.length; + + // Create new or reuse sprites and animate/display + for (i = 0; i < ln; i++) { + sprite = group.getAt(i); + barAttr = items[i].attr; + + if (enableShadows) { + items[i].shadows = me.renderShadows(i, barAttr, baseAttrs, bounds); + } + + // Create a new sprite if needed (no height) + if (!sprite) { + attrs = Ext.apply({}, baseAttrs, barAttr); + attrs = Ext.apply(attrs, endSeriesStyle || {}); + sprite = surface.add(Ext.apply({}, { + type: 'rect', + group: group + }, attrs)); + } + if (animate) { + rendererAttributes = me.renderer(sprite, store.getAt(i), barAttr, i, store); + sprite._to = rendererAttributes; + anim = me.onAnimate(sprite, { to: Ext.apply(rendererAttributes, endSeriesStyle) }); + if (enableShadows && stacked && (i % bounds.barsLen === 0)) { + j = i / bounds.barsLen; + for (shadowIndex = 0; shadowIndex < shadowGroupsLn; shadowIndex++) { + anim.on('afteranimate', function() { + this.show(true); + }, shadowGroups[shadowIndex].getAt(j)); + } + } + } + else { + rendererAttributes = me.renderer(sprite, store.getAt(i), Ext.apply(barAttr, { hidden: false }), i, store); + sprite.setAttributes(Ext.apply(rendererAttributes, endSeriesStyle), true); + } + items[i].sprite = sprite; + } + + // Hide unused sprites + ln = group.getCount(); + for (j = i; j < ln; j++) { + group.getAt(j).hide(true); + } + + if (me.stacked) { + // If stacked, we have only store.getCount() shadows. + i = store.getCount(); + } + + // Hide unused shadows + if (enableShadows) { + for (shadowIndex = 0; shadowIndex < shadowGroupsLn; shadowIndex++) { + shadowGroup = shadowGroups[shadowIndex]; + ln = shadowGroup.getCount(); + for (j = i; j < ln; j++) { + shadowGroup.getAt(j).hide(true); + } + } + } + me.renderLabels(); + }, + + // @private called when a label is to be created. + onCreateLabel: function(storeItem, item, i, display) { + var me = this, + surface = me.chart.surface, + group = me.labelsGroup, + config = me.label, + endLabelStyle = Ext.apply({}, config, me.seriesLabelStyle || {}), + sprite; + + return surface.add(Ext.apply({ + type: 'text', + group: group + }, endLabelStyle || {})); + }, + + // @private called when a label is to be positioned. + onPlaceLabel: function(label, storeItem, item, i, display, animate, index) { + // Determine the label's final position. Starts with the configured preferred value but + // may get flipped from inside to outside or vice-versa depending on space. + var me = this, + opt = me.bounds, + groupBarWidth = opt.groupBarWidth, + column = me.column, + chart = me.chart, + chartBBox = chart.chartBBox, + resizing = chart.resizing, + xValue = item.value[0], + yValue = item.value[1], + attr = item.attr, + config = me.label, + stacked = me.stacked, + stackedDisplay = config.stackedDisplay, + rotate = (config.orientation == 'vertical'), + field = [].concat(config.field), + format = config.renderer, + text, size, width, height, + zero = opt.zero, + insideStart = 'insideStart', + insideEnd = 'insideEnd', + outside = 'outside', + over = 'over', + under = 'under', + labelMarginX = 4, // leave space around the labels (important when saving chart as image) + labelMarginY = 2, + signed = opt.signed, + x, y, finalAttr; + + if (display == insideStart || display == insideEnd || display == outside) { + if (stacked && (display == outside)) { + // It doesn't make sense to use 'outside' on a stacked chart + // unless we only want to display the 'stackedDisplay' labels. + label.hide(true); + return; + } + label.setAttributes({ + // Reset the style in case the label is being reused (for instance, if a series is excluded) + // and do it before calling the renderer function. + style: undefined + }); + text = (Ext.isNumber(index) ? format(storeItem.get(field[index]), label, storeItem, item, i, display, animate, index) : ''); + label.setAttributes({ + // Set the text onto the label. + text: text + }); + size = me.getLabelSize(text, label.attr.style); + width = size.width; + height = size.height; + if (column) { + //----------------------------------------- + // Position the label within a column chart + + // If there is no label to display, or if the corresponding box in a stacked column + // isn't tall enough to display the label, then leave. + if (!width || !height || (stacked && (attr.height < height))) { + label.hide(true); + return; + } + + // Align horizontally the label in the middle of the column + x = attr.x + (rotate ? groupBarWidth/2 : (groupBarWidth - width)/2); + + // If the label is to be displayed outside, make sure there is room for it, otherwise display it inside. + if (display == outside) { + var free = (yValue >= 0 ? (attr.y - chartBBox.y) : (chartBBox.y + chartBBox.height - attr.y - attr.height)); + if (free < height + labelMarginY) { + display = insideEnd; + } + } + + // If the label is to be displayed inside a non-stacked chart, make sure it is + // not taller than the box, otherwise move it outside. + if (!stacked && (display != outside)) { + if (height + labelMarginY > attr.height) { + display = outside; + } + } + + // Place the label vertically depending on its config and on whether the value + // it represents is positive (above the X-axis) or negative (below the X-axis) + if (!y) { + y = attr.y; + if (yValue >= 0) { + switch (display) { + case insideStart: y += attr.height + (rotate ? -labelMarginY : -height/2); break; + case insideEnd: y += (rotate ? height + labelMarginX : height/2); break; + case outside: y += (rotate ? -labelMarginY : -height/2); break; + } + } else { + switch (display) { + case insideStart: y += (rotate ? height + labelMarginY : height/2); break; + case insideEnd: y += (rotate ? attr.height - labelMarginY : attr.height - height/2); break; + case outside: y += (rotate ? attr.height + height + labelMarginY : attr.height + height/2); break; + } + } + } + } + else { + //----------------------------------------- + // Position the label within a bar chart + + // If there is no label to display, or if the corresponding box has no width, then leave. + if (!width || !height || (stacked && !attr.width)) { + label.hide(true); + return; + } + + // Align vertically the label in the middle of the bar + y = attr.y + (rotate ? (groupBarWidth + height)/2 : groupBarWidth/2); + + // If the label is to be displayed outside, make sure there is room for it otherwise display it inside. + if (display == outside) { + var free = (yValue >= 0 ? (chartBBox.x + chartBBox.width - attr.x - attr.width) : (attr.x - chartBBox.x)); + if (free < width + labelMarginX) { + display = insideEnd; + } + } + + // If the label is to be displayed inside (and it is not rotated yet), make sure it is + // not wider than the box it represents otherwise (for a stacked chart) rotate it vertically + // and center it, or (for a non-stacked chart) move it outside. + if ((display != outside) && !rotate) { + if (width + labelMarginX > attr.width) { + if (stacked) { + if (height > attr.width) { + label.hide(true); + return; // Even rotated, there isn't enough room. + } + x = attr.x + attr.width/2; + y = attr.y + attr.height - (attr.height - width)/2; + rotate = true; + } else { + display = outside; + } + } + } + + // Place the label horizontally depending on its config and on whether the value + // it represents is positive (above the X-axis) or negative (below the X-axis) + if (!x) { + x = attr.x; + if (yValue >= 0) { + switch (display) { + case insideStart: x += (rotate ? width/2 : labelMarginX); break; + case insideEnd: x += attr.width + (rotate ? -width/2 : -width - labelMarginX); break; + case outside: x += attr.width + (rotate ? width/2 : labelMarginX); break; + } + } else { + switch (display) { + case insideStart: x += attr.width + (rotate ? -width/2 : -width - labelMarginX); break; + case insideEnd: x += (rotate ? width/2 : labelMarginX); break; + case outside: x += (rotate ? -width/2 : -width - labelMarginX); break; + } + } + } + } + } else if (display == over || display == under) { + if (stacked && stackedDisplay) { + //----------------------------------------- + // Position the label on top or at the bottom of a stacked bar/column + + text = label.attr.text; + label.setAttributes({ + // The text is already set onto the label: we just need to set the style + // (but don't overwrite any custom style that might have been set by an app override). + style: Ext.applyIf((label.attr && label.attr.style) || {}, + { + 'font-weight':'bold', + 'font-size':'14px' + } + ) + }); + + size = me.getLabelSize(text, label.attr.style); + width = size.width; + height = size.height; + + switch (display) { + case over: + if (column) { + x = attr.x + (rotate ? groupBarWidth/2 : (groupBarWidth - width)/2); + y = zero - (item.totalDim - item.totalNegDim) - height/2 - labelMarginY; + } else { + x = zero + (item.totalDim - item.totalNegDim) + labelMarginX; + y = attr.y + (rotate ? (groupBarWidth + height)/2 : groupBarWidth/2); + } + break; + case under: + if (column) { + x = attr.x + (rotate ? groupBarWidth/2 : (groupBarWidth - width)/2); + y = zero + item.totalNegDim + height/2; + } else { + x = zero - item.totalNegDim - width - labelMarginX; + y = attr.y + (rotate ? (groupBarWidth + height)/2 : groupBarWidth/2); + } + break; + } + } + } + + if (x == undefined || y == undefined) { + // bad configuration: x/y are not set + label.hide(true); + return; + } + + label.isOutside = (display == outside); + label.setAttributes({ + text: text + }); + + //set position + finalAttr = { + x: x, + y: y + }; + //rotate + if (rotate) { + finalAttr.rotate = { + x: x, + y: y, + degrees: 270 + }; + } + //check for resizing + if (animate && resizing) { + if (column) { + x = attr.x + attr.width / 2; + y = zero; + } else { + x = zero; + y = attr.y + attr.height / 2; + } + label.setAttributes({ + x: x, + y: y + }, true); + if (rotate) { + label.setAttributes({ + rotate: { + x: x, + y: y, + degrees: 270 + } + }, true); + } + } + //handle animation + if (animate) { + me.onAnimate(label, { to: finalAttr }); + } + else { + label.setAttributes(Ext.apply(finalAttr, { + hidden: false + }), true); + } + }, + + /* @private + * Gets the dimensions of a given bar label. Uses a single hidden sprite to avoid + * changing visible sprites. + * @param value + */ + getLabelSize: function(value, labelStyle) { + var tester = this.testerLabel, + config = this.label, + endLabelStyle = Ext.apply({}, config, labelStyle, this.seriesLabelStyle || {}), + rotated = config.orientation === 'vertical', + bbox, w, h, + undef; + if (!tester) { + tester = this.testerLabel = this.chart.surface.add(Ext.apply({ + type: 'text', + opacity: 0 + }, endLabelStyle)); + } + tester.setAttributes({ + style: labelStyle, + text: value + }, true); + + // Flip the width/height if rotated, as getBBox returns the pre-rotated dimensions + bbox = tester.getBBox(); + w = bbox.width; + h = bbox.height; + return { + width: rotated ? h : w, + height: rotated ? w : h + }; + }, + + // @private used to animate label, markers and other sprites. + onAnimate: function(sprite, attr) { + sprite.show(); + return this.callParent(arguments); + }, + + isItemInPoint: function(x, y, item) { + var bbox = item.sprite.getBBox(); + return bbox.x <= x && bbox.y <= y + && (bbox.x + bbox.width) >= x + && (bbox.y + bbox.height) >= y; + }, + + // @private hide all markers + hideAll: function(index) { + var axes = this.chart.axes, + axesItems = axes.items, + ln = axesItems.length, + i = 0; + + index = (isNaN(this._index) ? index : this._index) || 0; + + if (!this.__excludes) { + this.__excludes = []; + } + + this.__excludes[index] = true; + this.drawSeries(); + + for (i; i < ln; i++) { + axesItems[i].drawAxis(); + } + }, + + // @private show all markers + showAll: function(index) { + var axes = this.chart.axes, + axesItems = axes.items, + ln = axesItems.length, + i = 0; + + index = (isNaN(this._index) ? index : this._index) || 0; + + if (!this.__excludes) { + this.__excludes = []; + } + + this.__excludes[index] = false; + this.drawSeries(); + + for (i; i < ln; i++) { + axesItems[i].drawAxis(); + } + }, + + /** + * Returns a string with the color to be used for the series legend item. + * @param index + */ + getLegendColor: function(index) { + var me = this, + colorLength = me.colorArrayStyle.length; + + if (me.style && me.style.fill) { + return me.style.fill; + } else { + return me.colorArrayStyle[index % colorLength]; + } + }, + + highlightItem: function(item) { + this.callParent(arguments); + this.renderLabels(); + }, + + unHighlightItem: function() { + this.callParent(arguments); + this.renderLabels(); + }, + + cleanHighlights: function() { + this.callParent(arguments); + this.renderLabels(); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/chart/series/Cartesian.js b/extjs-django/marvel/static/extjs/src/chart/series/Cartesian.js new file mode 100644 index 0000000..e04f652 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/series/Cartesian.js @@ -0,0 +1,362 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.series.Cartesian + * + * Common base class for series implementations which plot values using x/y coordinates. + */ +Ext.define('Ext.chart.series.Cartesian', { + + /* Begin Definitions */ + + extend: 'Ext.chart.series.Series', + + alternateClassName: ['Ext.chart.CartesianSeries', 'Ext.chart.CartesianChart'], + + /* End Definitions */ + + /** + * @cfg {String} xField + * The name of the data Model field corresponding to the x-axis value. + */ + xField: null, + + /** + * @cfg {String/String[]} yField + * The name(s) of the data Model field(s) corresponding to the y-axis value(s). + */ + yField: null, + + /** + * @cfg {String/String[]} axis + * The position of the axis to bind the values to. Possible values are 'left', 'bottom', 'top' and 'right'. + * You must explicitly set this value to bind the values of the line series to the ones in the axis, otherwise a + * relative scale will be used. For example, if you're using a Scatter or Line series and you'd like to have the + * values in the chart relative to the bottom and left axes then `axis` should be `['left', 'bottom']`. + */ + axis: 'left', + + getLegendLabels: function() { + var me = this, + labels = [], + fields, i, ln, + combinations = me.combinations, + title, + combo, label0, label1; + + fields = [].concat(me.yField); + for (i = 0, ln = fields.length; i < ln; i++) { + title = me.title; + // Use the 'title' config if present, otherwise use the raw yField name + labels.push((Ext.isArray(title) ? title[i] : title) || fields[i]); + } + + // Handle yFields combined via legend drag-drop + // TODO need to check to see if this is supported in extjs 4 branch + if (combinations) { + combinations = Ext.Array.from(combinations); + for (i = 0, ln = combinations.length; i < ln; i++) { + combo = combinations[i]; + label0 = labels[combo[0]]; + label1 = labels[combo[1]]; + labels[combo[1]] = label0 + ' & ' + label1; + labels.splice(combo[0], 1); + } + } + + return labels; + }, + + /** + * @protected Iterates over a given record's values for each of this series's yFields, + * executing a given function for each value. Any yFields that have been combined + * via legend drag-drop will be treated as a single value. + * @param {Ext.data.Model} record + * @param {Function} fn + * @param {Object} scope + */ + eachYValue: function(record, fn, scope) { + var me = this, + yValueAccessors = me.getYValueAccessors(), + i, ln, accessor; + + for (i = 0, ln = yValueAccessors.length; i < ln; i++) { + accessor = yValueAccessors[i]; + fn.call(scope, accessor(record), i); + } + }, + + /** + * @protected Returns the number of yField values, taking into account fields combined + * via legend drag-drop. + * @return {Number} + */ + getYValueCount: function() { + return this.getYValueAccessors().length; + }, + + combine: function(index1, index2) { + var me = this, + accessors = me.getYValueAccessors(), + accessor1 = accessors[index1], + accessor2 = accessors[index2]; + + // Combine the yValue accessors for the two indexes into a single accessor that returns their sum + accessors[index2] = function(record) { + return accessor1(record) + accessor2(record); + }; + accessors.splice(index1, 1); + + me.callParent([index1, index2]); + }, + + clearCombinations: function() { + // Clear combined accessors, they'll get regenerated on next call to getYValueAccessors + delete this.yValueAccessors; + this.callParent(); + }, + + /** + * @protected Returns an array of functions, each of which returns the value of the yField + * corresponding to function's index in the array, for a given record (each function takes the + * record as its only argument.) If yFields have been combined by the user via legend drag-drop, + * this list of accessors will be kept in sync with those combinations. + * @return {Array} array of accessor functions + */ + getYValueAccessors: function() { + var me = this, + accessors = me.yValueAccessors, + yFields, yField, i, ln; + if (!accessors) { + accessors = me.yValueAccessors = []; + yFields = [].concat(me.yField); + + for (i = 0, ln = yFields.length; i < ln; i++) { + yField = yFields[i]; + accessors.push(function(record) { + return record.get(yField); + }); + } + } + return accessors; + }, + + /** + * Calculate the min and max values for this series's xField. + * @return {Array} [min, max] + */ + getMinMaxXValues: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + data = store.data.items, + count = me.getRecordCount(), + i, ln, record, + min, max, + xField = me.xField, + xValue; + + if (count > 0) { + min = Infinity; + max = -min; + + for (i = 0, ln = data.length; i < ln; i++) { + record = data[i]; + xValue = record.get(xField); + if (xValue > max) { + max = xValue; + } + if (xValue < min) { + min = xValue; + } + } + + // If we made no progress, treat it like a category axis + if (min == Infinity) { + min = 0; + } + + if (max == -Infinity) { + max = count - 1; + } + } else { + min = max = 0; + } + return [min, max]; + }, + + /** + * Calculate the min and max values for this series's yField(s). Takes into account yField + * combinations, exclusions, and stacking. + * @return {Array} [min, max] + */ + getMinMaxYValues: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + data = store.data.items, + count = me.getRecordCount(), + i, ln, record, + stacked = me.stacked, + min, max, + positiveTotal, negativeTotal; + + function eachYValueStacked(yValue, i) { + if (!me.isExcluded(i)) { + if (yValue < 0) { + negativeTotal += yValue; + } else { + positiveTotal += yValue; + } + } + } + + function eachYValue(yValue, i) { + if (!me.isExcluded(i)) { + if (yValue > max) { + max = yValue; + } + if (yValue < min) { + min = yValue; + } + } + } + + if (count > 0) { + min = Infinity; + max = -min; + + for (i = 0, ln = data.length; i < ln; i++) { + record = data[i]; + if (stacked) { + positiveTotal = 0; + negativeTotal = 0; + me.eachYValue(record, eachYValueStacked); + if (positiveTotal > max) { + max = positiveTotal; + } + if (negativeTotal < min) { + min = negativeTotal; + } + } else { + me.eachYValue(record, eachYValue); + } + } + + // If we made no progress, treat it like a category axis + if (min == Infinity) { + min = 0; + } + + if (max == -Infinity) { + max = count - 1; + } + } else { + min = max = 0; + } + return [min, max]; + }, + + getAxesForXAndYFields: function() { + var me = this, + axes = me.chart.axes, + axis = [].concat(me.axis), + yFields = {}, yFieldList = [].concat(me.yField), + xFields = {}, xFieldList = [].concat(me.xField), + fields, xAxis, yAxis, i, ln, flipXY; + + + flipXY = me.type === 'bar' && me.column === false; + if(flipXY) { + fields = yFieldList; + yFieldList = xFieldList; + xFieldList = fields; + } + if (Ext.Array.indexOf(axis, 'top') > -1) { + xAxis = 'top'; + } else if (Ext.Array.indexOf(axis, 'bottom') > -1) { + xAxis = 'bottom'; + } else { + if (axes.get('top') && axes.get('bottom')) { + for (i = 0, ln = xFieldList.length; i < ln; i++) { + xFields[xFieldList[i]] = true; + } + fields = [].concat(axes.get('bottom').fields); + for (i = 0, ln = fields.length; i < ln; i++) { + if (xFields[fields[i]]) { + xAxis = 'bottom'; + break + } + } + fields = [].concat(axes.get('top').fields); + for (i = 0, ln = fields.length; i < ln; i++) { + if (xFields[fields[i]]) { + xAxis = 'top'; + break + } + } + } else if (axes.get('top')) { + xAxis = 'top'; + } else if (axes.get('bottom')) { + xAxis = 'bottom'; + } + } + if (Ext.Array.indexOf(axis, 'left') > -1) { + yAxis = 'left'; + } else if (Ext.Array.indexOf(axis, 'right') > -1) { + yAxis = 'right'; + } else { + if (axes.get('left') && axes.get('right')) { + for (i = 0, ln = yFieldList.length; i < ln; i++) { + yFields[yFieldList[i]] = true; + } + fields = [].concat(axes.get('right').fields); + for (i = 0, ln = fields.length; i < ln; i++) { + if (yFields[fields[i]]) { + + break + } + } + fields = [].concat(axes.get('left').fields); + for (i = 0, ln = fields.length; i < ln; i++) { + if (yFields[fields[i]]) { + yAxis = 'left'; + break + } + } + } else if (axes.get('left')) { + yAxis = 'left'; + } else if (axes.get('right')) { + yAxis = 'right'; + } + } + + return flipXY ? { + xAxis: yAxis, + yAxis: xAxis + }: { + xAxis: xAxis, + yAxis: yAxis + }; + } + + +}); diff --git a/extjs-django/marvel/static/extjs/src/chart/series/Column.js b/extjs-django/marvel/static/extjs/src/chart/series/Column.js new file mode 100644 index 0000000..1c52f50 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/series/Column.js @@ -0,0 +1,136 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.series.Column + * + * Creates a Column Chart. Much of the methods are inherited from Bar. A Column Chart is a useful + * visualization technique to display quantitative information for different categories that can + * show some progression (or regression) in the data set. As with all other series, the Column Series + * must be appended in the *series* Chart array configuration. See the Chart documentation for more + * information. A typical configuration object for the column series could be: + * + * @example + * var store = Ext.create('Ext.data.JsonStore', { + * fields: ['name', 'data'], + * data: [ + * { 'name': 'metric one', 'data':10 }, + * { 'name': 'metric two', 'data': 7 }, + * { 'name': 'metric three', 'data': 5 }, + * { 'name': 'metric four', 'data': 2 }, + * { 'name': 'metric five', 'data':27 } + * ] + * }); + * + * Ext.create('Ext.chart.Chart', { + * renderTo: Ext.getBody(), + * width: 500, + * height: 300, + * animate: true, + * store: store, + * axes: [ + * { + * type: 'Numeric', + * position: 'left', + * fields: ['data'], + * label: { + * renderer: Ext.util.Format.numberRenderer('0,0') + * }, + * title: 'Sample Values', + * grid: true, + * minimum: 0 + * }, + * { + * type: 'Category', + * position: 'bottom', + * fields: ['name'], + * title: 'Sample Metrics' + * } + * ], + * series: [ + * { + * type: 'column', + * axis: 'left', + * highlight: true, + * tips: { + * trackMouse: true, + * width: 140, + * height: 28, + * renderer: function(storeItem, item) { + * this.setTitle(storeItem.get('name') + ': ' + storeItem.get('data') + ' $'); + * } + * }, + * label: { + * display: 'insideEnd', + * 'text-anchor': 'middle', + * field: 'data', + * renderer: Ext.util.Format.numberRenderer('0'), + * orientation: 'vertical', + * color: '#333' + * }, + * xField: 'name', + * yField: 'data' + * } + * ] + * }); + * + * In this configuration we set `column` as the series type, bind the values of the bars to the bottom axis, + * set `highlight` to true so that bars are smoothly highlighted when hovered and bind the `xField` or category + * field to the data store `name` property and the `yField` as the data1 property of a store element. + */ +Ext.define('Ext.chart.series.Column', { + + /* Begin Definitions */ + + alternateClassName: ['Ext.chart.ColumnSeries', 'Ext.chart.ColumnChart', 'Ext.chart.StackedColumnChart'], + + extend: 'Ext.chart.series.Bar', + + /* End Definitions */ + + type: 'column', + alias: 'series.column', + + column: true, + + // private: true if the columns are bound to a numerical x-axis; otherwise they are evenly distributed along the axis + boundColumn: false, + + /** + * @cfg {String} axis + * The position of the axis to bind the values to. Possible values are 'left', 'bottom', 'top' and 'right'. + * You must explicitly set this value to bind the values of the column series to the ones in the axis, otherwise a + * relative scale will be used. + */ + + /** + * @cfg {Number/Object} xPadding Padding between the left/right axes and the bars. + * The possible values are a number (the number of pixels for both left and right padding) + * or an object with `{ left, right }` properties. + */ + xPadding: 10, + + /** + * @cfg {Number/Object} yPadding Padding between the top/bottom axes and the bars. + * The possible values are a number (the number of pixels for both top and bottom padding) + * or an object with `{ top, bottom }` properties. + */ + yPadding: 0 +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/chart/series/Gauge.js b/extjs-django/marvel/static/extjs/src/chart/series/Gauge.js new file mode 100644 index 0000000..34fcd7b --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/series/Gauge.js @@ -0,0 +1,496 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.series.Gauge + * + * Creates a Gauge Chart. Gauge Charts are used to show progress in a certain variable. There are two ways of using the Gauge chart. + * One is setting a store element into the Gauge and selecting the field to be used from that store. Another one is instantiating the + * visualization and using the `setValue` method to adjust the value you want. + * + * An example of Gauge visualization: + * + * @example + * var store = Ext.create('Ext.data.JsonStore', { + * fields: ['value'], + * data: [ + * { 'value':80 } + * ] + * }); + * + * Ext.create('Ext.chart.Chart', { + * renderTo: Ext.getBody(), + * store: store, + * width: 400, + * height: 250, + * animate: true, + * insetPadding: 30, + * axes: [{ + * type: 'gauge', + * position: 'gauge', + * minimum: 0, + * maximum: 100, + * steps: 10, + * margin: 10 + * }], + * series: [{ + * type: 'gauge', + * field: 'value', + * donut: 30, + * colorSet: ['#F49D10', '#ddd'] + * }] + * }); + * + * Ext.widget("button", { + * renderTo: Ext.getBody(), + * text: "Refresh", + * handler: function() { + * store.getAt(0).set('value', Math.round(Math.random()*100)); + * } + * }); + * + * In this example we create a special Gauge axis to be used with the gauge visualization (describing half-circle markers), and also we're + * setting a maximum, minimum and steps configuration options into the axis. The Gauge series configuration contains the store field to be bound to + * the visual display and the color set to be used with the visualization. + */ +Ext.define('Ext.chart.series.Gauge', { + + /* Begin Definitions */ + + extend: 'Ext.chart.series.Series', + + /* End Definitions */ + + type: "gauge", + alias: 'series.gauge', + + rad: Math.PI / 180, + + /** + * @cfg {Number} highlightDuration + * The duration for the pie slice highlight effect. + */ + highlightDuration: 150, + + /** + * @cfg {String} angleField (required) + * The store record field name to be used for the pie angles. + * The values bound to this field name must be positive real numbers. + */ + angleField: false, + + /** + * @cfg {Boolean} needle + * Use the Gauge Series as an area series or add a needle to it. Default's false. + */ + needle: false, + + /** + * @cfg {Boolean/Number} donut + * Use the entire disk or just a fraction of it for the gauge. Default's false. + */ + donut: false, + + /** + * @cfg {Boolean} showInLegend + * Whether to add the pie chart elements as legend items. Default's false. + */ + showInLegend: false, + + /** + * @cfg {Object} style + * An object containing styles for overriding series styles from Theming. + */ + style: {}, + + constructor: function(config) { + this.callParent(arguments); + var me = this, + chart = me.chart, + surface = chart.surface, + store = chart.store, + shadow = chart.shadow, i, l, cfg; + Ext.apply(me, config, { + shadowAttributes: [{ + "stroke-width": 6, + "stroke-opacity": 1, + stroke: 'rgb(200, 200, 200)', + translate: { + x: 1.2, + y: 2 + } + }, + { + "stroke-width": 4, + "stroke-opacity": 1, + stroke: 'rgb(150, 150, 150)', + translate: { + x: 0.9, + y: 1.5 + } + }, + { + "stroke-width": 2, + "stroke-opacity": 1, + stroke: 'rgb(100, 100, 100)', + translate: { + x: 0.6, + y: 1 + } + }] + }); + me.group = surface.getGroup(me.seriesId); + if (shadow) { + for (i = 0, l = me.shadowAttributes.length; i < l; i++) { + me.shadowGroups.push(surface.getGroup(me.seriesId + '-shadows' + i)); + } + } + surface.customAttributes.segment = function(opt) { + return me.getSegment(opt); + }; + }, + + // @private updates some onbefore render parameters. + initialize: function() { + var me = this, + store = me.chart.getChartStore(), + data = store.data.items, + label = me.label, + ln = data.length; + + me.yField = []; + if (label && label.field && ln > 0) { + me.yField.push(data[0].get(label.field)); + } + }, + + // @private returns an object with properties for a Slice + getSegment: function(opt) { + var me = this, + rad = me.rad, + cos = Math.cos, + sin = Math.sin, + abs = Math.abs, + x = me.centerX, + y = me.centerY, + x1 = 0, x2 = 0, x3 = 0, x4 = 0, + y1 = 0, y2 = 0, y3 = 0, y4 = 0, + delta = 1e-2, + r = opt.endRho - opt.startRho, + startAngle = opt.startAngle, + endAngle = opt.endAngle, + midAngle = (startAngle + endAngle) / 2 * rad, + margin = opt.margin || 0, + flag = abs(endAngle - startAngle) > 180, + a1 = Math.min(startAngle, endAngle) * rad, + a2 = Math.max(startAngle, endAngle) * rad, + singleSlice = false; + + x += margin * cos(midAngle); + y += margin * sin(midAngle); + + x1 = x + opt.startRho * cos(a1); + y1 = y + opt.startRho * sin(a1); + + x2 = x + opt.endRho * cos(a1); + y2 = y + opt.endRho * sin(a1); + + x3 = x + opt.startRho * cos(a2); + y3 = y + opt.startRho * sin(a2); + + x4 = x + opt.endRho * cos(a2); + y4 = y + opt.endRho * sin(a2); + + if (abs(x1 - x3) <= delta && abs(y1 - y3) <= delta) { + singleSlice = true; + } + //Solves mysterious clipping bug with IE + if (singleSlice) { + return { + path: [ + ["M", x1, y1], + ["L", x2, y2], + ["A", opt.endRho, opt.endRho, 0, +flag, 1, x4, y4], + ["Z"]] + }; + } else { + return { + path: [ + ["M", x1, y1], + ["L", x2, y2], + ["A", opt.endRho, opt.endRho, 0, +flag, 1, x4, y4], + ["L", x3, y3], + ["A", opt.startRho, opt.startRho, 0, +flag, 0, x1, y1], + ["Z"]] + }; + } + }, + + // @private utility function to calculate the middle point of a pie slice. + calcMiddle: function(item) { + var me = this, + rad = me.rad, + slice = item.slice, + x = me.centerX, + y = me.centerY, + startAngle = slice.startAngle, + endAngle = slice.endAngle, + radius = Math.max(('rho' in slice) ? slice.rho: me.radius, me.label.minMargin), + donut = +me.donut, + a1 = Math.min(startAngle, endAngle) * rad, + a2 = Math.max(startAngle, endAngle) * rad, + midAngle = -(a1 + (a2 - a1) / 2), + xm = x + (item.endRho + item.startRho) / 2 * Math.cos(midAngle), + ym = y - (item.endRho + item.startRho) / 2 * Math.sin(midAngle); + + item.middle = { + x: xm, + y: ym + }; + }, + + /** + * Draws the series for the current chart. + */ + drawSeries: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + group = me.group, + animate = me.chart.animate, + axis = me.chart.axes.get(0), + minimum = axis && axis.minimum || me.minimum || 0, + maximum = axis && axis.maximum || me.maximum || 0, + field = me.angleField || me.field || me.xField, + surface = chart.surface, + chartBBox = chart.chartBBox, + rad = me.rad, + donut = +me.donut, + values = {}, + items = [], + seriesStyle = me.seriesStyle, + seriesLabelStyle = me.seriesLabelStyle, + colorArrayStyle = me.colorArrayStyle, + colorArrayLength = colorArrayStyle && colorArrayStyle.length || 0, + cos = Math.cos, + sin = Math.sin, + rendererAttributes, centerX, centerY, slice, slices, sprite, value, + item, ln, record, i, j, startAngle, endAngle, middleAngle, sliceLength, path, + p, spriteOptions, bbox, splitAngle, sliceA, sliceB; + + Ext.apply(seriesStyle, me.style || {}); + + me.setBBox(); + bbox = me.bbox; + + //override theme colors + if (me.colorSet) { + colorArrayStyle = me.colorSet; + colorArrayLength = colorArrayStyle.length; + } + + //if not store or store is empty then there's nothing to draw + if (!store || !store.getCount() || me.seriesIsHidden) { + me.hide(); + me.items = []; + return; + } + + centerX = me.centerX = chartBBox.x + (chartBBox.width / 2); + centerY = me.centerY = chartBBox.y + chartBBox.height; + me.radius = Math.min(centerX - chartBBox.x, centerY - chartBBox.y); + me.slices = slices = []; + me.items = items = []; + + if (!me.value) { + record = store.getAt(0); + me.value = record.get(field); + } + + value = me.value; + if (me.needle) { + sliceA = { + series: me, + value: value, + startAngle: -180, + endAngle: 0, + rho: me.radius + }; + splitAngle = -180 * (1 - (value - minimum) / (maximum - minimum)); + slices.push(sliceA); + } else { + splitAngle = -180 * (1 - (value - minimum) / (maximum - minimum)); + sliceA = { + series: me, + value: value, + startAngle: -180, + endAngle: splitAngle, + rho: me.radius + }; + sliceB = { + series: me, + value: me.maximum - value, + startAngle: splitAngle, + endAngle: 0, + rho: me.radius + }; + slices.push(sliceA, sliceB); + } + + //do pie slices after. + for (i = 0, ln = slices.length; i < ln; i++) { + slice = slices[i]; + sprite = group.getAt(i); + //set pie slice properties + rendererAttributes = Ext.apply({ + segment: { + startAngle: slice.startAngle, + endAngle: slice.endAngle, + margin: 0, + rho: slice.rho, + startRho: slice.rho * +donut / 100, + endRho: slice.rho + } + }, Ext.apply(seriesStyle, colorArrayStyle && { fill: colorArrayStyle[i % colorArrayLength] } || {})); + + item = Ext.apply({}, + rendererAttributes.segment, { + slice: slice, + series: me, + storeItem: record, + index: i + }); + items[i] = item; + // Create a new sprite if needed (no height) + if (!sprite) { + spriteOptions = Ext.apply({ + type: "path", + group: group + }, Ext.apply(seriesStyle, colorArrayStyle && { fill: colorArrayStyle[i % colorArrayLength] } || {})); + sprite = surface.add(Ext.apply(spriteOptions, rendererAttributes)); + } + slice.sprite = slice.sprite || []; + item.sprite = sprite; + slice.sprite.push(sprite); + if (animate) { + rendererAttributes = me.renderer(sprite, record, rendererAttributes, i, store); + sprite._to = rendererAttributes; + me.onAnimate(sprite, { + to: rendererAttributes + }); + } else { + rendererAttributes = me.renderer(sprite, record, Ext.apply(rendererAttributes, { + hidden: false + }), i, store); + sprite.setAttributes(rendererAttributes, true); + } + } + + if (me.needle) { + splitAngle = splitAngle * Math.PI / 180; + + if (!me.needleSprite) { + me.needleSprite = me.chart.surface.add({ + type: 'path', + path: ['M', centerX + (me.radius * +donut / 100) * cos(splitAngle), + centerY + -Math.abs((me.radius * +donut / 100) * sin(splitAngle)), + 'L', centerX + me.radius * cos(splitAngle), + centerY + -Math.abs(me.radius * sin(splitAngle))], + 'stroke-width': 4, + 'stroke': '#222' + }); + } else { + if (animate) { + me.onAnimate(me.needleSprite, { + to: { + path: ['M', centerX + (me.radius * +donut / 100) * cos(splitAngle), + centerY + -Math.abs((me.radius * +donut / 100) * sin(splitAngle)), + 'L', centerX + me.radius * cos(splitAngle), + centerY + -Math.abs(me.radius * sin(splitAngle))] + } + }); + } else { + me.needleSprite.setAttributes({ + type: 'path', + path: ['M', centerX + (me.radius * +donut / 100) * cos(splitAngle), + centerY + -Math.abs((me.radius * +donut / 100) * sin(splitAngle)), + 'L', centerX + me.radius * cos(splitAngle), + centerY + -Math.abs(me.radius * sin(splitAngle))] + }); + } + } + me.needleSprite.setAttributes({ + hidden: false + }, true); + } + + delete me.value; + }, + + /** + * Sets the Gauge chart to the current specified value. + */ + setValue: function (value) { + this.value = value; + this.drawSeries(); + }, + + // @private callback for when creating a label sprite. + onCreateLabel: function(storeItem, item, i, display) {}, + + // @private callback for when placing a label sprite. + onPlaceLabel: function(label, storeItem, item, i, display, animate, index) {}, + + // @private callback for when placing a callout. + onPlaceCallout: function() {}, + + // @private handles sprite animation for the series. + onAnimate: function(sprite, attr) { + sprite.show(); + return this.callParent(arguments); + }, + + isItemInPoint: function(x, y, item, i) { + var me = this, + cx = me.centerX, + cy = me.centerY, + abs = Math.abs, + dx = abs(x - cx), + dy = abs(y - cy), + startAngle = item.startAngle, + endAngle = item.endAngle, + rho = Math.sqrt(dx * dx + dy * dy), + angle = Math.atan2(y - cy, x - cx) / me.rad; + + //Only trigger events for the filled portion of the Gauge. + return (i === 0) && (angle >= startAngle && angle < endAngle && + rho >= item.startRho && rho <= item.endRho); + }, + + /** + * Returns the color of the series (to be displayed as color for the series legend item). + * @param item {Object} Info about the item; same format as returned by #getItemForPoint + */ + getLegendColor: function(index) { + var colors = this.colorSet || this.colorArrayStyle; + return colors[index % colors.length]; + } +}); + diff --git a/extjs-django/marvel/static/extjs/src/chart/series/Line.js b/extjs-django/marvel/static/extjs/src/chart/series/Line.js new file mode 100644 index 0000000..0dd8f7b --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/series/Line.js @@ -0,0 +1,1146 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.series.Line + * @extends Ext.chart.series.Cartesian + * + * Creates a Line Chart. A Line Chart is a useful visualization technique to display quantitative information for different + * categories or other real values (as opposed to the bar chart), that can show some progression (or regression) in the dataset. + * As with all other series, the Line Series must be appended in the *series* Chart array configuration. See the Chart + * documentation for more information. A typical configuration object for the line series could be: + * + * @example + * var store = Ext.create('Ext.data.JsonStore', { + * fields: ['name', 'data1', 'data2', 'data3', 'data4', 'data5'], + * data: [ + * { 'name': 'metric one', 'data1': 10, 'data2': 12, 'data3': 14, 'data4': 8, 'data5': 13 }, + * { 'name': 'metric two', 'data1': 7, 'data2': 8, 'data3': 16, 'data4': 10, 'data5': 3 }, + * { 'name': 'metric three', 'data1': 5, 'data2': 2, 'data3': 14, 'data4': 12, 'data5': 7 }, + * { 'name': 'metric four', 'data1': 2, 'data2': 14, 'data3': 6, 'data4': 1, 'data5': 23 }, + * { 'name': 'metric five', 'data1': 4, 'data2': 4, 'data3': 36, 'data4': 13, 'data5': 33 } + * ] + * }); + * + * Ext.create('Ext.chart.Chart', { + * renderTo: Ext.getBody(), + * width: 500, + * height: 300, + * animate: true, + * store: store, + * axes: [ + * { + * type: 'Numeric', + * position: 'left', + * fields: ['data1', 'data2'], + * label: { + * renderer: Ext.util.Format.numberRenderer('0,0') + * }, + * title: 'Sample Values', + * grid: true, + * minimum: 0 + * }, + * { + * type: 'Category', + * position: 'bottom', + * fields: ['name'], + * title: 'Sample Metrics' + * } + * ], + * series: [ + * { + * type: 'line', + * highlight: { + * size: 7, + * radius: 7 + * }, + * axis: 'left', + * xField: 'name', + * yField: 'data1', + * markerConfig: { + * type: 'cross', + * size: 4, + * radius: 4, + * 'stroke-width': 0 + * } + * }, + * { + * type: 'line', + * highlight: { + * size: 7, + * radius: 7 + * }, + * axis: 'left', + * fill: true, + * xField: 'name', + * yField: 'data2', + * markerConfig: { + * type: 'circle', + * size: 4, + * radius: 4, + * 'stroke-width': 0 + * } + * } + * ] + * }); + * + * In this configuration we're adding two series (or lines), one bound to the `data1` + * property of the store and the other to `data3`. The type for both configurations is + * `line`. The `xField` for both series is the same, the name propert of the store. + * Both line series share the same axis, the left axis. You can set particular marker + * configuration by adding properties onto the markerConfig object. Both series have + * an object as highlight so that markers animate smoothly to the properties in highlight + * when hovered. The second series has `fill=true` which means that the line will also + * have an area below it of the same color. + * + * **Note:** In the series definition remember to explicitly set the axis to bind the + * values of the line series to. This can be done by using the `axis` configuration property. + */ +Ext.define('Ext.chart.series.Line', { + + /* Begin Definitions */ + + extend: 'Ext.chart.series.Cartesian', + + alternateClassName: ['Ext.chart.LineSeries', 'Ext.chart.LineChart'], + + requires: ['Ext.chart.axis.Axis', 'Ext.chart.Shape', 'Ext.draw.Draw', 'Ext.fx.Anim'], + + /* End Definitions */ + + type: 'line', + + alias: 'series.line', + + /** + * @cfg {Number} selectionTolerance + * The offset distance from the cursor position to the line series to trigger events (then used for highlighting series, etc). + */ + selectionTolerance: 20, + + /** + * @cfg {Boolean} showMarkers + * Whether markers should be displayed at the data points along the line. If true, + * then the {@link #markerConfig} config item will determine the markers' styling. + */ + showMarkers: true, + + /** + * @cfg {Object} markerConfig + * The display style for the markers. Only used if {@link #showMarkers} is true. + * The markerConfig is a configuration object containing the same set of properties defined in + * the Sprite class. For example, if we were to set red circles as markers to the line series we could + * pass the object: + * +
    
    +        markerConfig: {
    +            type: 'circle',
    +            radius: 4,
    +            'fill': '#f00'
    +        }
    +     
    + + */ + markerConfig: {}, + + /** + * @cfg {Object} style + * An object containing style properties for the visualization lines and fill. + * These styles will override the theme styles. The following are valid style properties: + * + * - `stroke` - an rgb or hex color string for the background color of the line + * - `stroke-width` - the width of the stroke (integer) + * - `fill` - the background fill color string (hex or rgb), only works if {@link #fill} is `true` + * - `opacity` - the opacity of the line and the fill color (decimal) + * + * Example usage: + * + * style: { + * stroke: '#00ff00', + * 'stroke-width': 10, + * fill: '#80A080', + * opacity: 0.2 + * } + */ + style: {}, + + /** + * @cfg {Boolean/Number} smooth + * If set to `true` or a non-zero number, the line will be smoothed/rounded around its points; otherwise + * straight line segments will be drawn. + * + * A numeric value is interpreted as a divisor of the horizontal distance between consecutive points in + * the line; larger numbers result in sharper curves while smaller numbers result in smoother curves. + * + * If set to `true` then a default numeric value of 3 will be used. Defaults to `false`. + */ + smooth: false, + + /** + * @private Default numeric smoothing value to be used when {@link #smooth} = true. + */ + defaultSmoothness: 3, + + /** + * @cfg {Boolean} fill + * If true, the area below the line will be filled in using the {@link #style eefill} and + * {@link #style opacity} config properties. Defaults to false. + */ + fill: false, + + constructor: function(config) { + this.callParent(arguments); + var me = this, + surface = me.chart.surface, + shadow = me.chart.shadow, + i, l; + config.highlightCfg = Ext.Object.merge({ 'stroke-width': 3 }, config.highlightCfg); + Ext.apply(me, config, { + shadowAttributes: [{ + "stroke-width": 6, + "stroke-opacity": 0.05, + stroke: 'rgb(0, 0, 0)', + translate: { + x: 1, + y: 1 + } + }, { + "stroke-width": 4, + "stroke-opacity": 0.1, + stroke: 'rgb(0, 0, 0)', + translate: { + x: 1, + y: 1 + } + }, { + "stroke-width": 2, + "stroke-opacity": 0.15, + stroke: 'rgb(0, 0, 0)', + translate: { + x: 1, + y: 1 + } + }] + }); + me.group = surface.getGroup(me.seriesId); + if (me.showMarkers) { + me.markerGroup = surface.getGroup(me.seriesId + '-markers'); + } + if (shadow) { + for (i = 0, l = me.shadowAttributes.length; i < l; i++) { + me.shadowGroups.push(surface.getGroup(me.seriesId + '-shadows' + i)); + } + } + }, + + // @private makes an average of points when there are more data points than pixels to be rendered. + shrink: function(xValues, yValues, size) { + // Start at the 2nd point... + var len = xValues.length, + ratio = Math.floor(len / size), + i = 1, + xSum = 0, + ySum = 0, + xRes = [+xValues[0]], + yRes = [+yValues[0]]; + + for (; i < len; ++i) { + xSum += +xValues[i] || 0; + ySum += +yValues[i] || 0; + if (i % ratio == 0) { + xRes.push(xSum/ratio); + yRes.push(ySum/ratio); + xSum = 0; + ySum = 0; + } + } + return { + x: xRes, + y: yRes + }; + }, + + /** + * Draws the series for the current chart. + */ + drawSeries: function() { + var me = this, + chart = me.chart, + chartAxes = chart.axes, + store = chart.getChartStore(), + data = store.data.items, + record, + storeCount = store.getCount(), + surface = me.chart.surface, + bbox = {}, + group = me.group, + showMarkers = me.showMarkers, + markerGroup = me.markerGroup, + enableShadows = chart.shadow, + shadowGroups = me.shadowGroups, + shadowAttributes = me.shadowAttributes, + smooth = me.smooth, + lnsh = shadowGroups.length, + dummyPath = ["M"], + path = ["M"], + renderPath = ["M"], + smoothPath = ["M"], + markerIndex = chart.markerIndex, + axes = [].concat(me.axis), + shadowBarAttr, + xValues = [], + xValueMap = {}, + yValues = [], + yValueMap = {}, + onbreak = false, + storeIndices = [], + markerStyle = Ext.apply({}, me.markerStyle), + seriesStyle = me.seriesStyle, + colorArrayStyle = me.colorArrayStyle, + colorArrayLength = colorArrayStyle && colorArrayStyle.length || 0, + isNumber = Ext.isNumber, + seriesIdx = me.seriesIdx, + boundAxes = me.getAxesForXAndYFields(), + boundXAxis = boundAxes.xAxis, + boundYAxis = boundAxes.yAxis, + xAxisType = boundXAxis ? chartAxes.get(boundXAxis).type : '', + yAxisType = boundYAxis ? chartAxes.get(boundYAxis).type : '', + shadows, shadow, shindex, fromPath, fill, fillPath, rendererAttributes, + x, y, prevX, prevY, firstX, firstY, markerCount, i, j, ln, axis, ends, marker, markerAux, item, xValue, + yValue, coords, xScale, yScale, minX, maxX, minY, maxY, line, animation, endMarkerStyle, + endLineStyle, type, count, opacity, lineOpacity, fillOpacity, fillDefaultValue; + + if (me.fireEvent('beforedraw', me) === false) { + return; + } + + //if store is empty or the series is excluded in the legend then there's nothing to draw. + if (!storeCount || me.seriesIsHidden) { + me.hide(); + me.items = []; + if (me.line) { + me.line.hide(true); + if (me.line.shadows) { + shadows = me.line.shadows; + for (j = 0, lnsh = shadows.length; j < lnsh; j++) { + shadow = shadows[j]; + shadow.hide(true); + } + } + if (me.fillPath) { + me.fillPath.hide(true); + } + } + me.line = null; + me.fillPath = null; + return; + } + + //prepare style objects for line and markers + endMarkerStyle = Ext.apply(markerStyle || {}, me.markerConfig, { + fill: me.seriesStyle.fill || colorArrayStyle[me.themeIdx % colorArrayStyle.length] + }); + type = endMarkerStyle.type; + delete endMarkerStyle.type; + endLineStyle = seriesStyle; + //if no stroke with is specified force it to 0.5 because this is + //about making *lines* + if (!endLineStyle['stroke-width']) { + endLineStyle['stroke-width'] = 0.5; + } + + //set opacity values + opacity = 'opacity' in endLineStyle ? endLineStyle.opacity : 1; + fillDefaultValue = 'opacity' in endLineStyle ? endLineStyle.opacity : 0.3; + lineOpacity = 'lineOpacity' in endLineStyle ? endLineStyle.lineOpacity : opacity; + fillOpacity = 'fillOpacity' in endLineStyle ? endLineStyle.fillOpacity : fillDefaultValue; + + //If we're using a time axis and we need to translate the points, + //then reuse the first markers as the last markers. + if (markerIndex && markerGroup && markerGroup.getCount()) { + for (i = 0; i < markerIndex; i++) { + marker = markerGroup.getAt(i); + markerGroup.remove(marker); + markerGroup.add(marker); + markerAux = markerGroup.getAt(markerGroup.getCount() - 2); + marker.setAttributes({ + x: 0, + y: 0, + translate: { + x: markerAux.attr.translation.x, + y: markerAux.attr.translation.y + } + }, true); + } + } + + me.unHighlightItem(); + me.cleanHighlights(); + + me.setBBox(); + bbox = me.bbox; + me.clipRect = [bbox.x, bbox.y, bbox.width, bbox.height]; + + if (axis = chartAxes.get(boundXAxis)) { + ends = axis.applyData(); + minX = ends.from; + maxX = ends.to; + } + + if (axis = chartAxes.get(boundYAxis)) { + ends = axis.applyData(); + minY = ends.from; + maxY = ends.to; + } + + // If a field was specified without a corresponding axis, create one to get bounds + if (me.xField && !Ext.isNumber(minX)) { + axis = me.getMinMaxXValues(); + minX = axis[0]; + maxX = axis[1]; + } + + if (me.yField && !Ext.isNumber(minY)) { + axis = me.getMinMaxYValues(); + minY = axis[0]; + maxY = axis[1]; + } + + if (isNaN(minX)) { + minX = 0; + xScale = bbox.width / ((storeCount - 1) || 1); + } + else { + xScale = bbox.width / ((maxX - minX) || (storeCount -1) || 1); + } + + if (isNaN(minY)) { + minY = 0; + yScale = bbox.height / ((storeCount - 1) || 1); + } + else { + yScale = bbox.height / ((maxY - minY) || (storeCount - 1) || 1); + } + // Extract all x and y values from the store + for (i = 0, ln = data.length; i < ln; i++) { + record = data[i]; + xValue = record.get(me.xField); + if (xAxisType == 'Time' && typeof xValue == "string") { + xValue = Date.parse(xValue); + } + // Ensure a value + if (typeof xValue == 'string' || typeof xValue == 'object' && !Ext.isDate(xValue) + //set as uniform distribution if the axis is a category axis. + || boundXAxis && chartAxes.get(boundXAxis) && chartAxes.get(boundXAxis).type == 'Category') { + if (xValue in xValueMap) { + xValue = xValueMap[xValue]; + } else { + xValue = xValueMap[xValue] = i; + } + } + + // Filter out values that don't fit within the pan/zoom buffer area + yValue = record.get(me.yField); + if (yAxisType == 'Time' && typeof yValue == "string") { + yValue = Date.parse(yValue); + } + //skip undefined values + if (typeof yValue == 'undefined' || (typeof yValue == 'string' && !yValue)) { + // + if (Ext.isDefined(Ext.global.console)) { + Ext.global.console.warn("[Ext.chart.series.Line] Skipping a store element with an undefined value at ", record, xValue, yValue); + } + // + continue; + } + // Ensure a value + if (typeof yValue == 'string' || typeof yValue == 'object' && !Ext.isDate(yValue) + //set as uniform distribution if the axis is a category axis. + || boundYAxis && chartAxes.get(boundYAxis) && chartAxes.get(boundYAxis).type == 'Category') { + yValue = i; + } + storeIndices.push(i); + xValues.push(xValue); + yValues.push(yValue); + } + + ln = xValues.length; + if (ln > bbox.width) { + coords = me.shrink(xValues, yValues, bbox.width); + xValues = coords.x; + yValues = coords.y; + } + + me.items = []; + + count = 0; + ln = xValues.length; + for (i = 0; i < ln; i++) { + xValue = xValues[i]; + yValue = yValues[i]; + if (yValue === false) { + if (path.length == 1) { + path = []; + } + onbreak = true; + me.items.push(false); + continue; + } else { + x = (bbox.x + (xValue - minX) * xScale).toFixed(2); + y = ((bbox.y + bbox.height) - (yValue - minY) * yScale).toFixed(2); + if (onbreak) { + onbreak = false; + path.push('M'); + } + path = path.concat([x, y]); + } + if ((typeof firstY == 'undefined') && (typeof y != 'undefined')) { + firstY = y; + firstX = x; + } + // If this is the first line, create a dummypath to animate in from. + if (!me.line || chart.resizing) { + dummyPath = dummyPath.concat([x, bbox.y + bbox.height / 2]); + } + + // When resizing, reset before animating + if (chart.animate && chart.resizing && me.line) { + me.line.setAttributes({ + path: dummyPath, + opacity: lineOpacity + }, true); + if (me.fillPath) { + me.fillPath.setAttributes({ + path: dummyPath, + opacity: fillOpacity + }, true); + } + if (me.line.shadows) { + shadows = me.line.shadows; + for (j = 0, lnsh = shadows.length; j < lnsh; j++) { + shadow = shadows[j]; + shadow.setAttributes({ + path: dummyPath + }, true); + } + } + } + if (showMarkers) { + marker = markerGroup.getAt(count++); + if (!marker) { + marker = Ext.chart.Shape[type](surface, Ext.apply({ + group: [group, markerGroup], + x: 0, y: 0, + translate: { + x: +(prevX || x), + y: prevY || (bbox.y + bbox.height / 2) + }, + value: '"' + xValue + ', ' + yValue + '"', + zIndex: 4000 + }, endMarkerStyle)); + marker._to = { + translate: { + x: +x, + y: +y + } + }; + } else { + marker.setAttributes({ + value: '"' + xValue + ', ' + yValue + '"', + x: 0, y: 0, + hidden: false + }, true); + marker._to = { + translate: { + x: +x, + y: +y + } + }; + } + } + me.items.push({ + series: me, + value: [xValue, yValue], + point: [x, y], + sprite: marker, + storeItem: store.getAt(storeIndices[i]) + }); + prevX = x; + prevY = y; + } + + if (path.length <= 1) { + //nothing to be rendered + return; + } + + if (me.smooth) { + smoothPath = Ext.draw.Draw.smooth(path, isNumber(smooth) ? smooth : me.defaultSmoothness); + } + + renderPath = smooth ? smoothPath : path; + + //Correct path if we're animating timeAxis intervals + if (chart.markerIndex && me.previousPath) { + fromPath = me.previousPath; + if (!smooth) { + Ext.Array.erase(fromPath, 1, 2); + } + } else { + fromPath = path; + } + + // Only create a line if one doesn't exist. + if (!me.line) { + me.line = surface.add(Ext.apply({ + type: 'path', + group: group, + path: dummyPath, + stroke: endLineStyle.stroke || endLineStyle.fill + }, endLineStyle || {})); + me + + //set configuration opacity + me.line.setAttributes({ + opacity: lineOpacity + }, true); + + if (enableShadows) { + me.line.setAttributes(Ext.apply({}, me.shadowOptions), true); + } + + //unset fill here (there's always a default fill withing the themes). + me.line.setAttributes({ + fill: 'none', + zIndex: 3000 + }); + if (!endLineStyle.stroke && colorArrayLength) { + me.line.setAttributes({ + stroke: colorArrayStyle[me.themeIdx % colorArrayLength] + }, true); + } + if (enableShadows) { + //create shadows + shadows = me.line.shadows = []; + for (shindex = 0; shindex < lnsh; shindex++) { + shadowBarAttr = shadowAttributes[shindex]; + shadowBarAttr = Ext.apply({}, shadowBarAttr, { path: dummyPath }); + shadow = surface.add(Ext.apply({}, { + type: 'path', + group: shadowGroups[shindex] + }, shadowBarAttr)); + shadows.push(shadow); + } + } + } + if (me.fill) { + fillPath = renderPath.concat([ + ["L", x, bbox.y + bbox.height], + ["L", firstX, bbox.y + bbox.height], + ["L", firstX, firstY] + ]); + if (!me.fillPath) { + me.fillPath = surface.add({ + group: group, + type: 'path', + fill: endLineStyle.fill || colorArrayStyle[me.themeIdx % colorArrayLength], + path: dummyPath + }); + } + } + markerCount = showMarkers && markerGroup.getCount(); + if (chart.animate) { + fill = me.fill; + line = me.line; + //Add renderer to line. There is not unique record associated with this. + rendererAttributes = me.renderer(line, false, { path: renderPath }, i, store); + Ext.apply(rendererAttributes, endLineStyle || {}, { + stroke: endLineStyle.stroke || endLineStyle.fill + }); + //fill should not be used here but when drawing the special fill path object + delete rendererAttributes.fill; + line.show(true); + if (chart.markerIndex && me.previousPath) { + me.animation = animation = me.onAnimate(line, { + to: rendererAttributes, + from: { + path: fromPath + } + }); + } else { + me.animation = animation = me.onAnimate(line, { + to: rendererAttributes + }); + } + //animate shadows + if (enableShadows) { + shadows = line.shadows; + for(j = 0; j < lnsh; j++) { + shadows[j].show(true); + if (chart.markerIndex && me.previousPath) { + me.onAnimate(shadows[j], { + to: { path: renderPath }, + from: { path: fromPath } + }); + } else { + me.onAnimate(shadows[j], { + to: { path: renderPath } + }); + } + } + } + //animate fill path + if (fill) { + me.fillPath.show(true); + me.onAnimate(me.fillPath, { + to: Ext.apply({}, { + path: fillPath, + fill: endLineStyle.fill || colorArrayStyle[me.themeIdx % colorArrayLength], + 'stroke-width': 0, + opacity: fillOpacity + }, endLineStyle || {}) + }); + } + //animate markers + if (showMarkers) { + count = 0; + for(i = 0; i < ln; i++) { + if (me.items[i]) { + item = markerGroup.getAt(count++); + if (item) { + rendererAttributes = me.renderer(item, store.getAt(i), item._to, i, store); + me.onAnimate(item, { + to: Ext.applyIf(rendererAttributes, endMarkerStyle || {}) + }); + item.show(true); + } + } + } + for(; count < markerCount; count++) { + item = markerGroup.getAt(count); + item.hide(true); + } +// for(i = 0; i < (chart.markerIndex || 0)-1; i++) { +// item = markerGroup.getAt(i); +// item.hide(true); +// } + } + } else { + rendererAttributes = me.renderer(me.line, false, { path: renderPath, hidden: false }, i, store); + Ext.apply(rendererAttributes, endLineStyle || {}, { + stroke: endLineStyle.stroke || endLineStyle.fill + }); + //fill should not be used here but when drawing the special fill path object + delete rendererAttributes.fill; + me.line.setAttributes(rendererAttributes, true); + me.line.setAttributes({ + opacity: lineOpacity + }, true); + //set path for shadows + if (enableShadows) { + shadows = me.line.shadows; + for(j = 0; j < lnsh; j++) { + shadows[j].setAttributes({ + path: renderPath, + hidden: false + }, true); + } + } + if (me.fill) { + me.fillPath.setAttributes({ + path: fillPath, + hidden: false, + opacity: fillOpacity + }, true); + } + if (showMarkers) { + count = 0; + for(i = 0; i < ln; i++) { + if (me.items[i]) { + item = markerGroup.getAt(count++); + if (item) { + rendererAttributes = me.renderer(item, store.getAt(i), item._to, i, store); + item.setAttributes(Ext.apply(endMarkerStyle || {}, rendererAttributes || {}), true); + if (!item.attr.hidden) { + item.show(true); + } + } + } + } + for(; count < markerCount; count++) { + item = markerGroup.getAt(count); + item.hide(true); + } + } + } + + if (chart.markerIndex) { + if (me.smooth) { + Ext.Array.erase(path, 1, 2); + } else { + Ext.Array.splice(path, 1, 0, path[1], path[2]); + } + me.previousPath = path; + } + me.renderLabels(); + me.renderCallouts(); + + me.fireEvent('draw', me); + }, + + // @private called when a label is to be created. + onCreateLabel: function(storeItem, item, i, display) { + var me = this, + group = me.labelsGroup, + config = me.label, + bbox = me.bbox, + endLabelStyle = Ext.apply({}, config, me.seriesLabelStyle || {}); + + return me.chart.surface.add(Ext.apply({ + 'type': 'text', + 'text-anchor': 'middle', + 'group': group, + 'x': Number(item.point[0]), + 'y': bbox.y + bbox.height / 2 + }, endLabelStyle || {})); + }, + + // @private called when a label is to be positioned. + onPlaceLabel: function(label, storeItem, item, i, display, animate, index) { + var me = this, + chart = me.chart, + resizing = chart.resizing, + config = me.label, + format = config.renderer, + field = config.field, + bbox = me.bbox, + x = Number(item.point[0]), + y = Number(item.point[1]), + radius = item.sprite.attr.radius, + labelBox, markerBox, width, height, xOffset, yOffset; + + label.setAttributes({ + text: format(storeItem.get(field), label, storeItem, item, i, display, animate, index), + hidden: true + }, true); + + //TODO(nicolas): find out why width/height values in circle bounding boxes are undefined. + markerBox = item.sprite.getBBox(); + markerBox.width = markerBox.width || (radius * 2); + markerBox.height = markerBox.height || (radius * 2); + + labelBox = label.getBBox(); + width = labelBox.width/2; + height = labelBox.height/2; + + if (display == 'rotate') { + //correct label position to fit into the box + xOffset = markerBox.width/2 + width + height/2; + if (x + xOffset + width > bbox.x + bbox.width) { + x -= xOffset; + } else { + x += xOffset; + } + label.setAttributes({ + 'rotation': { + x: x, + y: y, + degrees: -45 + } + }, true); + } else if (display == 'under' || display == 'over') { + label.setAttributes({ + 'rotation': { + degrees: 0 + } + }, true); + + //correct label position to fit into the box + if (x < bbox.x + width) { + x = bbox.x + width; + } else if (x + width > bbox.x + bbox.width) { + x = bbox.x + bbox.width - width; + } + + yOffset = markerBox.height/2 + height; + y = y + (display == 'over' ? -yOffset : yOffset); + if (y < bbox.y + height) { + y += 2 * yOffset; + } else if (y + height > bbox.y + bbox.height) { + y -= 2 * yOffset; + } + } + + if (me.chart.animate && !me.chart.resizing) { + label.show(true); + me.onAnimate(label, { + to: { + x: x, + y: y + } + }); + } else { + label.setAttributes({ + x: x, + y: y + }, true); + if (resizing && me.animation) { + me.animation.on('afteranimate', function() { + label.show(true); + }); + } else { + label.show(true); + } + } + }, + + // @private Overriding highlights.js highlightItem method. + highlightItem: function() { + var me = this, + line = me.line; + + me.callParent(arguments); + if (line && !me.highlighted) { + if (!('__strokeWidth' in line)) { + line.__strokeWidth = parseFloat(line.attr['stroke-width']) || 0; + } + if (line.__anim) { + line.__anim.paused = true; + } + + line.__anim = new Ext.fx.Anim({ + target: line, + to: { + 'stroke-width': line.__strokeWidth + 3 + } + }); + me.highlighted = true; + } + }, + + // @private Overriding highlights.js unHighlightItem method. + unHighlightItem: function() { + var me = this, + line = me.line, + width; + + me.callParent(arguments); + if (line && me.highlighted) { + width = line.__strokeWidth || parseFloat(line.attr['stroke-width']) || 0; + line.__anim = new Ext.fx.Anim({ + target: line, + to: { + 'stroke-width': width + } + }); + me.highlighted = false; + } + }, + + // @private called when a callout needs to be placed. + onPlaceCallout : function(callout, storeItem, item, i, display, animate, index) { + if (!display) { + return; + } + + var me = this, + chart = me.chart, + surface = chart.surface, + resizing = chart.resizing, + config = me.callouts, + items = me.items, + prev = i == 0? false : items[i -1].point, + next = (i == items.length -1)? false : items[i +1].point, + cur = [+item.point[0], +item.point[1]], + dir, norm, normal, a, aprev, anext, + offsetFromViz = config.offsetFromViz || 30, + offsetToSide = config.offsetToSide || 10, + offsetBox = config.offsetBox || 3, + boxx, boxy, boxw, boxh, + p, clipRect = me.clipRect, + bbox = { + width: config.styles.width || 10, + height: config.styles.height || 10 + }, + x, y; + + //get the right two points + if (!prev) { + prev = cur; + } + if (!next) { + next = cur; + } + a = (next[1] - prev[1]) / (next[0] - prev[0]); + aprev = (cur[1] - prev[1]) / (cur[0] - prev[0]); + anext = (next[1] - cur[1]) / (next[0] - cur[0]); + + norm = Math.sqrt(1 + a * a); + dir = [1 / norm, a / norm]; + normal = [-dir[1], dir[0]]; + + //keep the label always on the outer part of the "elbow" + if (aprev > 0 && anext < 0 && normal[1] < 0 + || aprev < 0 && anext > 0 && normal[1] > 0) { + normal[0] *= -1; + normal[1] *= -1; + } else if (Math.abs(aprev) < Math.abs(anext) && normal[0] < 0 + || Math.abs(aprev) > Math.abs(anext) && normal[0] > 0) { + normal[0] *= -1; + normal[1] *= -1; + } + //position + x = cur[0] + normal[0] * offsetFromViz; + y = cur[1] + normal[1] * offsetFromViz; + + //box position and dimensions + boxx = x + (normal[0] > 0? 0 : -(bbox.width + 2 * offsetBox)); + boxy = y - bbox.height /2 - offsetBox; + boxw = bbox.width + 2 * offsetBox; + boxh = bbox.height + 2 * offsetBox; + + //now check if we're out of bounds and invert the normal vector correspondingly + //this may add new overlaps between labels (but labels won't be out of bounds). + if (boxx < clipRect[0] || (boxx + boxw) > (clipRect[0] + clipRect[2])) { + normal[0] *= -1; + } + if (boxy < clipRect[1] || (boxy + boxh) > (clipRect[1] + clipRect[3])) { + normal[1] *= -1; + } + + //update positions + x = cur[0] + normal[0] * offsetFromViz; + y = cur[1] + normal[1] * offsetFromViz; + + //update box position and dimensions + boxx = x + (normal[0] > 0? 0 : -(bbox.width + 2 * offsetBox)); + boxy = y - bbox.height /2 - offsetBox; + boxw = bbox.width + 2 * offsetBox; + boxh = bbox.height + 2 * offsetBox; + + if (chart.animate) { + //set the line from the middle of the pie to the box. + me.onAnimate(callout.lines, { + to: { + path: ["M", cur[0], cur[1], "L", x, y, "Z"] + } + }); + //set component position + if (callout.panel) { + callout.panel.setPosition(boxx, boxy, true); + } + } + else { + //set the line from the middle of the pie to the box. + callout.lines.setAttributes({ + path: ["M", cur[0], cur[1], "L", x, y, "Z"] + }, true); + //set component position + if (callout.panel) { + callout.panel.setPosition(boxx, boxy); + } + } + for (p in callout) { + callout[p].show(true); + } + }, + + isItemInPoint: function(x, y, item, i) { + var me = this, + items = me.items, + tolerance = me.selectionTolerance, + result = null, + prevItem, + nextItem, + prevPoint, + nextPoint, + ln, + x1, + y1, + x2, + y2, + xIntersect, + yIntersect, + dist1, dist2, dist, midx, midy, + sqrt = Math.sqrt, abs = Math.abs; + + nextItem = items[i]; + prevItem = i && items[i - 1]; + + if (i >= ln) { + prevItem = items[ln - 1]; + } + prevPoint = prevItem && prevItem.point; + nextPoint = nextItem && nextItem.point; + x1 = prevItem ? prevPoint[0] : nextPoint[0] - tolerance; + y1 = prevItem ? prevPoint[1] : nextPoint[1]; + x2 = nextItem ? nextPoint[0] : prevPoint[0] + tolerance; + y2 = nextItem ? nextPoint[1] : prevPoint[1]; + dist1 = sqrt((x - x1) * (x - x1) + (y - y1) * (y - y1)); + dist2 = sqrt((x - x2) * (x - x2) + (y - y2) * (y - y2)); + dist = Math.min(dist1, dist2); + + if (dist <= tolerance) { + return dist == dist1? prevItem : nextItem; + } + return false; + }, + + // @private toggle visibility of all series elements (markers, sprites). + toggleAll: function(show) { + var me = this, + i, ln, shadow, shadows; + if (!show) { + Ext.chart.series.Cartesian.prototype.hideAll.call(me); + } + else { + Ext.chart.series.Cartesian.prototype.showAll.call(me); + } + if (me.line) { + me.line.setAttributes({ + hidden: !show + }, true); + //hide shadows too + if (me.line.shadows) { + for (i = 0, shadows = me.line.shadows, ln = shadows.length; i < ln; i++) { + shadow = shadows[i]; + shadow.setAttributes({ + hidden: !show + }, true); + } + } + } + if (me.fillPath) { + me.fillPath.setAttributes({ + hidden: !show + }, true); + } + }, + + // @private hide all series elements (markers, sprites). + hideAll: function() { + this.toggleAll(false); + }, + + // @private hide all series elements (markers, sprites). + showAll: function() { + this.toggleAll(true); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/chart/series/Pie.js b/extjs-django/marvel/static/extjs/src/chart/series/Pie.js new file mode 100644 index 0000000..d2dad46 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/series/Pie.js @@ -0,0 +1,1107 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.series.Pie + * + * Creates a Pie Chart. A Pie Chart is a useful visualization technique to display quantitative information for different + * categories that also have a meaning as a whole. + * As with all other series, the Pie Series must be appended in the *series* Chart array configuration. See the Chart + * documentation for more information. A typical configuration object for the pie series could be: + * + * @example + * var store = Ext.create('Ext.data.JsonStore', { + * fields: ['name', 'data'], + * data: [ + * { 'name': 'metric one', 'data': 10 }, + * { 'name': 'metric two', 'data': 7 }, + * { 'name': 'metric three', 'data': 5 }, + * { 'name': 'metric four', 'data': 2 }, + * { 'name': 'metric five', 'data': 27 } + * ] + * }); + * + * Ext.create('Ext.chart.Chart', { + * renderTo: Ext.getBody(), + * width: 500, + * height: 350, + * animate: true, + * store: store, + * theme: 'Base:gradients', + * series: [{ + * type: 'pie', + * angleField: 'data', + * showInLegend: true, + * tips: { + * trackMouse: true, + * width: 140, + * height: 28, + * renderer: function(storeItem, item) { + * // calculate and display percentage on hover + * var total = 0; + * store.each(function(rec) { + * total += rec.get('data'); + * }); + * this.setTitle(storeItem.get('name') + ': ' + Math.round(storeItem.get('data') / total * 100) + '%'); + * } + * }, + * highlight: { + * segment: { + * margin: 20 + * } + * }, + * label: { + * field: 'name', + * display: 'rotate', + * contrast: true, + * font: '18px Arial' + * } + * }] + * }); + * + * In this configuration we set `pie` as the type for the series, set an object with specific style properties for highlighting options + * (triggered when hovering elements). We also set true to `showInLegend` so all the pie slices can be represented by a legend item. + * + * We set `data` as the value of the field to determine the angle span for each pie slice. We also set a label configuration object + * where we set the field name of the store field to be renderer as text for the label. The labels will also be displayed rotated. + * + * We set `contrast` to `true` to flip the color of the label if it is to similar to the background color. Finally, we set the font family + * and size through the `font` parameter. + */ +Ext.define('Ext.chart.series.Pie', { + + /* Begin Definitions */ + + alternateClassName: ['Ext.chart.PieSeries', 'Ext.chart.PieChart'], + + extend: 'Ext.chart.series.Series', + + /* End Definitions */ + + type: "pie", + + alias: 'series.pie', + + accuracy: 100000, + + rad: Math.PI * 2 / 100000, + + /** + * @cfg {Number} highlightDuration + * The duration for the pie slice highlight effect. + */ + highlightDuration: 150, + + /** + * @cfg {String} angleField (required) + * The store record field name to be used for the pie angles. + * The values bound to this field name must be positive real numbers. + */ + angleField: false, + + /** + * @cfg {String} field + * Alias for {@link #angleField}. + */ + + /** + * @cfg {String} xField + * Alias for {@link #angleField}. + */ + + /** + * @cfg {String} lengthField + * The store record field name to be used for the pie slice lengths. + * The values bound to this field name must be positive real numbers. + */ + lengthField: false, + + /** + * @cfg {Boolean/Number} donut + * Whether to set the pie chart as donut chart. + * Default's false. Can be set to a particular percentage to set the radius + * of the donut chart. + */ + donut: false, + + /** + * @cfg {Boolean} showInLegend + * Whether to add the pie chart elements as legend items. Default's false. + */ + showInLegend: false, + + /** + * @cfg {Array} colorSet + * An array of color values which will be used, in order, as the pie slice fill colors. + */ + + /** + * @cfg {Object} style + * An object containing styles for overriding series styles from Theming. + */ + style: {}, + + constructor: function(config) { + this.callParent(arguments); + var me = this, + chart = me.chart, + surface = chart.surface, + store = chart.store, + shadow = chart.shadow, i, l, cfg; + config.highlightCfg = Ext.merge({ + segment: { + margin: 20 + } + }, config.highlightCfg); + Ext.apply(me, config, { + shadowAttributes: [{ + "stroke-width": 6, + "stroke-opacity": 1, + stroke: 'rgb(200, 200, 200)', + translate: { + x: 1.2, + y: 2 + } + }, + { + "stroke-width": 4, + "stroke-opacity": 1, + stroke: 'rgb(150, 150, 150)', + translate: { + x: 0.9, + y: 1.5 + } + }, + { + "stroke-width": 2, + "stroke-opacity": 1, + stroke: 'rgb(100, 100, 100)', + translate: { + x: 0.6, + y: 1 + } + }] + }); + me.group = surface.getGroup(me.seriesId); + if (shadow) { + for (i = 0, l = me.shadowAttributes.length; i < l; i++) { + me.shadowGroups.push(surface.getGroup(me.seriesId + '-shadows' + i)); + } + } + surface.customAttributes.segment = function(opt) { + //Browsers will complain if we create a path + //element that has no path commands. So ensure a dummy + //path command for an empty path. + var ans = me.getSegment(opt); + if (!ans.path || ans.path.length === 0) { + ans.path = ['M', 0, 0]; + } + return ans; + }; + me.__excludes = me.__excludes || []; + }, + + onRedraw: function(){ + this.initialize(); + }, + + // @private updates some onbefore render parameters. + initialize: function() { + var me = this, + store = me.chart.getChartStore(), + data = store.data.items, + i, ln, rec; + //Add yFields to be used in Legend.js + me.yField = []; + if (me.label.field) { + for (i = 0, ln = data.length; i < ln; i++) { + rec = data[i]; + me.yField.push(rec.get(me.label.field)); + } + } + }, + + // @private returns an object with properties for a PieSlice. + getSegment: function(opt) { + var me = this, + rad = me.rad, + cos = Math.cos, + sin = Math.sin, + x = me.centerX, + y = me.centerY, + x1 = 0, x2 = 0, x3 = 0, x4 = 0, + y1 = 0, y2 = 0, y3 = 0, y4 = 0, + x5 = 0, y5 = 0, x6 = 0, y6 = 0, + delta = 1e-2, + startAngle = opt.startAngle, + endAngle = opt.endAngle, + midAngle = (startAngle + endAngle) / 2 * rad, + margin = opt.margin || 0, + a1 = Math.min(startAngle, endAngle) * rad, + a2 = Math.max(startAngle, endAngle) * rad, + c1 = cos(a1), s1 = sin(a1), + c2 = cos(a2), s2 = sin(a2), + cm = cos(midAngle), sm = sin(midAngle), + flag = 0, hsqr2 = 0.7071067811865476; // sqrt(0.5) + + if (a2 - a1 < delta) { + return {path: ""}; + } + + if (margin !== 0) { + x += margin * cm; + y += margin * sm; + } + + x2 = x + opt.endRho * c1; + y2 = y + opt.endRho * s1; + + x4 = x + opt.endRho * c2; + y4 = y + opt.endRho * s2; + + x6 = x + opt.endRho * cm; + y6 = y + opt.endRho * sm; + + if (opt.startRho !== 0) { + x1 = x + opt.startRho * c1; + y1 = y + opt.startRho * s1; + + x3 = x + opt.startRho * c2; + y3 = y + opt.startRho * s2; + + x5 = x + opt.startRho * cm; + y5 = y + opt.startRho * sm; + + return { + path: [ + ["M", x2, y2], + ["A", opt.endRho, opt.endRho, 0, 0, 1, x6, y6], ["L", x6, y6], + ["A", opt.endRho, opt.endRho, 0, flag, 1, x4, y4], ["L", x4, y4], + ["L", x3, y3], + ["A", opt.startRho, opt.startRho, 0, flag, 0, x5, y5], ["L", x5, y5], + ["A", opt.startRho, opt.startRho, 0, 0, 0, x1, y1], ["L", x1, y1], + ["Z"] + ] + }; + } else { + return { + path: [ + ["M", x, y], + ["L", x2, y2], + ["A", opt.endRho, opt.endRho, 0, 0, 1, x6, y6], ["L", x6, y6], + ["A", opt.endRho, opt.endRho, 0, flag, 1, x4, y4], ["L", x4, y4], + ["L", x, y], + ["Z"] + ] + }; + } + }, + + // @private utility function to calculate the middle point of a pie slice. + calcMiddle: function(item) { + var me = this, + rad = me.rad, + slice = item.slice, + x = me.centerX, + y = me.centerY, + startAngle = slice.startAngle, + endAngle = slice.endAngle, + donut = +me.donut, + midAngle = -(startAngle + endAngle) * rad / 2, + r = (item.endRho + item.startRho) / 2, + xm = x + r * Math.cos(midAngle), + ym = y - r * Math.sin(midAngle); + + item.middle = { + x: xm, + y: ym + }; + }, + + /** + * Draws the series for the current chart. + */ + drawSeries: function() { + var me = this, + store = me.chart.getChartStore(), + data = store.data.items, + record, + group = me.group, + animate = me.chart.animate, + field = me.angleField || me.field || me.xField, + lenField = [].concat(me.lengthField), + totalLenField = 0, + chart = me.chart, + surface = chart.surface, + chartBBox = chart.chartBBox, + enableShadows = chart.shadow, + shadowGroups = me.shadowGroups, + shadowAttributes = me.shadowAttributes, + lnsh = shadowGroups.length, + layers = lenField.length, + rhoAcum = 0, + donut = +me.donut, + layerTotals = [], + items = [], + totalField = 0, + maxLenField = 0, + angle = 0, + seriesStyle = me.seriesStyle, + colorArrayStyle = me.colorArrayStyle, + colorArrayLength = colorArrayStyle && colorArrayStyle.length || 0, + rendererAttributes, + shadowAttr, + shadows, + shadow, + shindex, + centerX, + centerY, + deltaRho, + first = 0, + slice, + slices, + sprite, + value, + item, + lenValue, + ln, + i, + j, + endAngle, + path, + p, + spriteOptions, bbox; + + Ext.apply(seriesStyle, me.style || {}); + + me.setBBox(); + bbox = me.bbox; + + //override theme colors + if (me.colorSet) { + colorArrayStyle = me.colorSet; + colorArrayLength = colorArrayStyle.length; + } + + //if not store or store is empty then there's nothing to draw + if (!store || !store.getCount() || me.seriesIsHidden) { + me.hide(); + me.items = []; + return; + } + + me.unHighlightItem(); + me.cleanHighlights(); + + centerX = me.centerX = chartBBox.x + (chartBBox.width / 2); + centerY = me.centerY = chartBBox.y + (chartBBox.height / 2); + me.radius = Math.min(centerX - chartBBox.x, centerY - chartBBox.y); + me.slices = slices = []; + me.items = items = []; + + for (i = 0, ln = data.length; i < ln; i++) { + record = data[i]; + if (this.__excludes && this.__excludes[i]) { + //hidden series + continue; + } + totalField += +record.get(field); + if (lenField[0]) { + for (j = 0, totalLenField = 0; j < layers; j++) { + totalLenField += +record.get(lenField[j]); + } + layerTotals[i] = totalLenField; + maxLenField = Math.max(maxLenField, totalLenField); + } + } + + totalField = totalField || 1; + for (i = 0, ln = data.length; i < ln; i++) { + record = data[i]; + if (this.__excludes && this.__excludes[i]) { + value = 0; + } else { + value = record.get(field); + if (first == 0) { + first = 1; + } + } + + // First slice + if (first == 1) { + first = 2; + me.firstAngle = angle = me.accuracy * value / totalField / 2; + for (j = 0; j < i; j++) { + slices[j].startAngle = slices[j].endAngle = me.firstAngle; + } + } + + endAngle = angle - me.accuracy * value / totalField; + slice = { + series: me, + value: value, + startAngle: angle, + endAngle: endAngle, + storeItem: record + }; + if (lenField[0]) { + lenValue = +layerTotals[i]; + //removing the floor will break Opera 11.6* + slice.rho = Math.floor(me.radius / maxLenField * lenValue); + } else { + slice.rho = me.radius; + } + slices[i] = slice; + // Do not remove this closure for the sake of https://sencha.jira.com/browse/EXTJSIV-5836 + (function () { + angle = endAngle; + })(); + } + + //do all shadows first. + if (enableShadows) { + for (i = 0, ln = slices.length; i < ln; i++) { + slice = slices[i]; + slice.shadowAttrs = []; + for (j = 0, rhoAcum = 0, shadows = []; j < layers; j++) { + sprite = group.getAt(i * layers + j); + deltaRho = lenField[j] ? store.getAt(i).get(lenField[j]) / layerTotals[i] * slice.rho: slice.rho; + //set pie slice properties + rendererAttributes = { + segment: { + startAngle: slice.startAngle, + endAngle: slice.endAngle, + margin: 0, + rho: slice.rho, + startRho: rhoAcum + (deltaRho * donut / 100), + endRho: rhoAcum + deltaRho + }, + hidden: !slice.value && (slice.startAngle % me.accuracy) == (slice.endAngle % me.accuracy) + }; + //create shadows + for (shindex = 0, shadows = []; shindex < lnsh; shindex++) { + shadowAttr = shadowAttributes[shindex]; + shadow = shadowGroups[shindex].getAt(i); + if (!shadow) { + shadow = chart.surface.add(Ext.apply({}, { + type: 'path', + group: shadowGroups[shindex], + strokeLinejoin: "round" + }, rendererAttributes, shadowAttr)); + } + shadowAttr = me.renderer(shadow, store.getAt(i), Ext.apply({}, rendererAttributes, shadowAttr), i, store); + if (animate) { + me.onAnimate(shadow, { + to: shadowAttr + }); + } else { + shadow.setAttributes(shadowAttr, true); + } + shadows.push(shadow); + } + slice.shadowAttrs[j] = shadows; + } + } + } + //do pie slices after. + for (i = 0, ln = slices.length; i < ln; i++) { + slice = slices[i]; + for (j = 0, rhoAcum = 0; j < layers; j++) { + sprite = group.getAt(i * layers + j); + deltaRho = lenField[j] ? store.getAt(i).get(lenField[j]) / layerTotals[i] * slice.rho: slice.rho; + //set pie slice properties + rendererAttributes = Ext.apply({ + segment: { + startAngle: slice.startAngle, + endAngle: slice.endAngle, + margin: 0, + rho: slice.rho, + startRho: rhoAcum + (deltaRho * donut / 100), + endRho: rhoAcum + deltaRho + }, + hidden: (!slice.value && (slice.startAngle % me.accuracy) == (slice.endAngle % me.accuracy)) + }, Ext.apply(seriesStyle, colorArrayStyle && { fill: colorArrayStyle[(layers > 1? j : i) % colorArrayLength] } || {})); + item = Ext.apply({}, + rendererAttributes.segment, { + slice: slice, + series: me, + storeItem: slice.storeItem, + index: i + }); + me.calcMiddle(item); + if (enableShadows) { + item.shadows = slice.shadowAttrs[j]; + } + items[i] = item; + // Create a new sprite if needed (no height) + if (!sprite) { + spriteOptions = Ext.apply({ + type: "path", + group: group, + middle: item.middle + }, Ext.apply(seriesStyle, colorArrayStyle && { fill: colorArrayStyle[(layers > 1? j : i) % colorArrayLength] } || {})); + sprite = surface.add(Ext.apply(spriteOptions, rendererAttributes)); + } + slice.sprite = slice.sprite || []; + item.sprite = sprite; + slice.sprite.push(sprite); + slice.point = [item.middle.x, item.middle.y]; + if (animate) { + rendererAttributes = me.renderer(sprite, store.getAt(i), rendererAttributes, i, store); + sprite._to = rendererAttributes; + sprite._animating = true; + me.onAnimate(sprite, { + to: rendererAttributes, + listeners: { + afteranimate: { + fn: function() { + this._animating = false; + }, + scope: sprite + } + } + }); + } else { + rendererAttributes = me.renderer(sprite, store.getAt(i), Ext.apply(rendererAttributes, { + hidden: false + }), i, store); + sprite.setAttributes(rendererAttributes, true); + } + rhoAcum += deltaRho; + } + } + + // Hide unused bars + ln = group.getCount(); + for (i = 0; i < ln; i++) { + if (!slices[(i / layers) >> 0] && group.getAt(i)) { + group.getAt(i).hide(true); + } + } + if (enableShadows) { + lnsh = shadowGroups.length; + for (shindex = 0; shindex < ln; shindex++) { + if (!slices[(shindex / layers) >> 0]) { + for (j = 0; j < lnsh; j++) { + if (shadowGroups[j].getAt(shindex)) { + shadowGroups[j].getAt(shindex).hide(true); + } + } + } + } + } + me.renderLabels(); + me.renderCallouts(); + }, + + // @private callback for when creating a label sprite. + onCreateLabel: function(storeItem, item, i, display) { + var me = this, + group = me.labelsGroup, + config = me.label, + centerX = me.centerX, + centerY = me.centerY, + middle = item.middle, + endLabelStyle = Ext.apply(me.seriesLabelStyle || {}, config || {}); + + return me.chart.surface.add(Ext.apply({ + 'type': 'text', + 'text-anchor': 'middle', + 'group': group, + 'x': middle.x, + 'y': middle.y + }, endLabelStyle)); + }, + + // @private callback for when placing a label sprite. + onPlaceLabel: function(label, storeItem, item, i, display, animate, index) { + var me = this, + chart = me.chart, + resizing = chart.resizing, + config = me.label, + format = config.renderer, + field = config.field, + centerX = me.centerX, + centerY = me.centerY, + middle = item.middle, + opt = { + x: middle.x, + y: middle.y + }, + x = middle.x - centerX, + y = middle.y - centerY, + from = {}, + rho = 1, + theta = Math.atan2(y, x || 1), + dg = theta * 180 / Math.PI, + prevDg, labelBox, width, height; + + opt.hidden = false; + + if (this.__excludes && this.__excludes[i]) { + opt.hidden = true; + } + + function fixAngle(a) { + if (a < 0) { + a += 360; + } + return a % 360; + } + + label.setAttributes({ + text: format(storeItem.get(field), label, storeItem, item, i, display, animate, index) + }, true); + + switch (display) { + case 'outside': + // calculate the distance to the pie's edge + rho = Math.sqrt(x * x + y * y) * 2; + + // add the distance from the label's center to its edge + label.setAttributes({rotation:{degrees: 0}}, true); + labelBox = label.getBBox(); + width = labelBox.width/2 * Math.cos(theta) + 4; + height = labelBox.height/2 * Math.sin(theta) + 4; + + rho += Math.sqrt(width*width + height*height); + + //update positions + opt.x = rho * Math.cos(theta) + centerX; + opt.y = rho * Math.sin(theta) + centerY; + break; + + case 'rotate': + dg = fixAngle(dg); + dg = (dg > 90 && dg < 270) ? dg + 180: dg; + + prevDg = label.attr.rotation.degrees; + if (prevDg != null && Math.abs(prevDg - dg) > 180 * 0.5) { + if (dg > prevDg) { + dg -= 360; + } else { + dg += 360; + } + dg = dg % 360; + } else { + dg = fixAngle(dg); + } + //update rotation angle + opt.rotate = { + degrees: dg, + x: opt.x, + y: opt.y + }; + break; + + default: + break; + } + //ensure the object has zero translation + opt.translate = { + x: 0, y: 0 + }; + if (animate && !resizing && (display != 'rotate' || prevDg != null)) { + me.onAnimate(label, { + to: opt + }); + } else { + label.setAttributes(opt, true); + } + label._from = from; + }, + + // @private callback for when placing a callout sprite. + onPlaceCallout: function(callout, storeItem, item, i, display, animate, index) { + var me = this, + chart = me.chart, + centerX = me.centerX, + centerY = me.centerY, + middle = item.middle, + opt = { + x: middle.x, + y: middle.y + }, + x = middle.x - centerX, + y = middle.y - centerY, + rho = 1, + rhoCenter, + theta = Math.atan2(y, x || 1), + bbox = (callout && callout.label ? callout.label.getBBox() : {width:0,height:0}), + offsetFromViz = 20, + offsetToSide = 10, + offsetBox = 10, + p; + + if (!bbox.width || !bbox.height) { + return; + } + + //should be able to config this. + rho = item.endRho + offsetFromViz; + rhoCenter = (item.endRho + item.startRho) / 2 + (item.endRho - item.startRho) / 3; + //update positions + opt.x = rho * Math.cos(theta) + centerX; + opt.y = rho * Math.sin(theta) + centerY; + + x = rhoCenter * Math.cos(theta); + y = rhoCenter * Math.sin(theta); + + if (chart.animate) { + //set the line from the middle of the pie to the box. + me.onAnimate(callout.lines, { + to: { + path: ["M", x + centerX, y + centerY, "L", opt.x, opt.y, "Z", "M", opt.x, opt.y, "l", x > 0 ? offsetToSide: -offsetToSide, 0, "z"] + } + }); + //set box position + me.onAnimate(callout.box, { + to: { + x: opt.x + (x > 0 ? offsetToSide: -(offsetToSide + bbox.width + 2 * offsetBox)), + y: opt.y + (y > 0 ? ( - bbox.height - offsetBox / 2) : ( - bbox.height - offsetBox / 2)), + width: bbox.width + 2 * offsetBox, + height: bbox.height + 2 * offsetBox + } + }); + //set text position + me.onAnimate(callout.label, { + to: { + x: opt.x + (x > 0 ? (offsetToSide + offsetBox) : -(offsetToSide + bbox.width + offsetBox)), + y: opt.y + (y > 0 ? -bbox.height / 4: -bbox.height / 4) + } + }); + } else { + //set the line from the middle of the pie to the box. + callout.lines.setAttributes({ + path: ["M", x + centerX, y + centerY, "L", opt.x, opt.y, "Z", "M", opt.x, opt.y, "l", x > 0 ? offsetToSide: -offsetToSide, 0, "z"] + }, + true); + //set box position + callout.box.setAttributes({ + x: opt.x + (x > 0 ? offsetToSide: -(offsetToSide + bbox.width + 2 * offsetBox)), + y: opt.y + (y > 0 ? ( - bbox.height - offsetBox / 2) : ( - bbox.height - offsetBox / 2)), + width: bbox.width + 2 * offsetBox, + height: bbox.height + 2 * offsetBox + }, + true); + //set text position + callout.label.setAttributes({ + x: opt.x + (x > 0 ? (offsetToSide + offsetBox) : -(offsetToSide + bbox.width + offsetBox)), + y: opt.y + (y > 0 ? -bbox.height / 4: -bbox.height / 4) + }, + true); + } + for (p in callout) { + callout[p].show(true); + } + }, + + // @private handles sprite animation for the series. + onAnimate: function(sprite, attr) { + sprite.show(); + return this.callParent(arguments); + }, + + isItemInPoint: function(x, y, item, i) { + var me = this, + cx = me.centerX, + cy = me.centerY, + abs = Math.abs, + dx = abs(x - cx), + dy = abs(y - cy), + startAngle = item.startAngle, + endAngle = item.endAngle, + rho = Math.sqrt(dx * dx + dy * dy), + angle = Math.atan2(y - cy, x - cx) / me.rad; + + // normalize to the same range of angles created by drawSeries + if (angle > me.firstAngle) { + angle -= me.accuracy; + } + return (angle <= startAngle && angle > endAngle + && rho >= item.startRho && rho <= item.endRho); + }, + + // @private hides all elements in the series. + hideAll: function(index) { + var i, l, shadow, shadows, sh, lsh, sprite; + index = (isNaN(this._index) ? index : this._index) || 0; + this.__excludes = this.__excludes || []; + this.__excludes[index] = true; + sprite = this.slices[index].sprite; + for (sh = 0, lsh = sprite.length; sh < lsh; sh++) { + sprite[sh].setAttributes({ + hidden: true + }, true); + } + if (this.slices[index].shadowAttrs) { + for (i = 0, shadows = this.slices[index].shadowAttrs, l = shadows.length; i < l; i++) { + shadow = shadows[i]; + for (sh = 0, lsh = shadow.length; sh < lsh; sh++) { + shadow[sh].setAttributes({ + hidden: true + }, true); + } + } + } + this.drawSeries(); + }, + + // @private shows all elements in the series. + showAll: function(index) { + index = (isNaN(this._index) ? index : this._index) || 0; + this.__excludes[index] = false; + this.drawSeries(); + }, + + /** + * Highlight the specified item. If no item is provided the whole series will be highlighted. + * @param item {Object} Info about the item; same format as returned by #getItemForPoint + */ + highlightItem: function(item) { + var me = this, + rad = me.rad, + highlightSegment, + animate, + attrs, + i, + shadows, + shadow, + ln, + to, + itemHighlightSegment, + prop, + group, + display, + label, + middle, + r, + x, + y; + item = item || this.items[this._index]; + + //TODO(nico): sometimes in IE itemmouseover is triggered + //twice without triggering itemmouseout in between. This + //fixes the highlighting bug. Eventually, events should be + //changed to trigger one itemmouseout between two itemmouseovers. + this.unHighlightItem(); + + if (!item || me.animating || (item.sprite && item.sprite._animating)) { + return; + } + me.callParent([item]); + if (!me.highlight) { + return; + } + if ('segment' in me.highlightCfg) { + highlightSegment = me.highlightCfg.segment; + animate = me.chart.animate; + //animate labels + if (me.labelsGroup) { + group = me.labelsGroup; + display = me.label.display; + label = group.getAt(item.index); + middle = (item.startAngle + item.endAngle) / 2 * rad; + r = highlightSegment.margin || 0; + x = r * Math.cos(middle); + y = r * Math.sin(middle); + + //TODO(nico): rounding to 1e-10 + //gives the right translation. Translation + //was buggy for very small numbers. In this + //case we're not looking to translate to very small + //numbers but not to translate at all. + if (Math.abs(x) < 1e-10) { + x = 0; + } + if (Math.abs(y) < 1e-10) { + y = 0; + } + + if (animate) { + label.stopAnimation(); + label.animate({ + to: { + translate: { + x: x, + y: y + } + }, + duration: me.highlightDuration + }); + } + else { + label.setAttributes({ + translate: { + x: x, + y: y + } + }, true); + } + } + //animate shadows + if (me.chart.shadow && item.shadows) { + i = 0; + shadows = item.shadows; + ln = shadows.length; + for (; i < ln; i++) { + shadow = shadows[i]; + to = {}; + itemHighlightSegment = item.sprite._from.segment; + for (prop in itemHighlightSegment) { + if (! (prop in highlightSegment)) { + to[prop] = itemHighlightSegment[prop]; + } + } + attrs = { + segment: Ext.applyIf(to, me.highlightCfg.segment) + }; + if (animate) { + shadow.stopAnimation(); + shadow.animate({ + to: attrs, + duration: me.highlightDuration + }); + } + else { + shadow.setAttributes(attrs, true); + } + } + } + } + }, + + /** + * Un-highlights the specified item. If no item is provided it will un-highlight the entire series. + * @param item {Object} Info about the item; same format as returned by #getItemForPoint + */ + unHighlightItem: function() { + var me = this, + items, + animate, + shadowsEnabled, + group, + len, + i, + j, + display, + shadowLen, + p, + to, + ihs, + hs, + sprite, + shadows, + shadow, + item, + label, + attrs; + if (!me.highlight) { + return; + } + + if (('segment' in me.highlightCfg) && me.items) { + items = me.items; + animate = me.chart.animate; + shadowsEnabled = !!me.chart.shadow; + group = me.labelsGroup; + len = items.length; + i = 0; + j = 0; + display = me.label.display; + + for (; i < len; i++) { + item = items[i]; + if (!item) { + continue; + } + sprite = item.sprite; + if (sprite && sprite._highlighted) { + //animate labels + if (group) { + label = group.getAt(item.index); + attrs = Ext.apply({ + translate: { + x: 0, + y: 0 + } + }, + display == 'rotate' ? { + rotate: { + x: label.attr.x, + y: label.attr.y, + degrees: label.attr.rotation.degrees + } + }: {}); + if (animate) { + label.stopAnimation(); + label.animate({ + to: attrs, + duration: me.highlightDuration + }); + } + else { + label.setAttributes(attrs, true); + } + } + if (shadowsEnabled) { + shadows = item.shadows; + shadowLen = shadows.length; + for (; j < shadowLen; j++) { + to = {}; + ihs = item.sprite._to.segment; + hs = item.sprite._from.segment; + Ext.apply(to, hs); + for (p in ihs) { + if (! (p in hs)) { + to[p] = ihs[p]; + } + } + shadow = shadows[j]; + if (animate) { + shadow.stopAnimation(); + shadow.animate({ + to: { + segment: to + }, + duration: me.highlightDuration + }); + } + else { + shadow.setAttributes({ segment: to }, true); + } + } + } + } + } + } + me.callParent(arguments); + }, + + /** + * Returns the color of the series (to be displayed as color for the series legend item). + * @param item {Object} Info about the item; same format as returned by #getItemForPoint + */ + getLegendColor: function(index) { + var me = this; + return (me.colorSet && me.colorSet[index % me.colorSet.length]) || me.colorArrayStyle[index % me.colorArrayStyle.length]; + } +}); + diff --git a/extjs-django/marvel/static/extjs/src/chart/series/Radar.js b/extjs-django/marvel/static/extjs/src/chart/series/Radar.js new file mode 100644 index 0000000..476ef85 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/series/Radar.js @@ -0,0 +1,524 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.series.Radar + * + * Creates a Radar Chart. A Radar Chart is a useful visualization technique for comparing different quantitative values for + * a constrained number of categories. + * + * As with all other series, the Radar series must be appended in the *series* Chart array configuration. See the Chart + * documentation for more information. A typical configuration object for the radar series could be: + * + * @example + * var store = Ext.create('Ext.data.JsonStore', { + * fields: ['name', 'data1', 'data2', 'data3'], + * data: [ + * { 'name': 'metric one', 'data1': 14, 'data2': 12, 'data3': 13 }, + * { 'name': 'metric two', 'data1': 16, 'data2': 8, 'data3': 3 }, + * { 'name': 'metric three', 'data1': 14, 'data2': 2, 'data3': 7 }, + * { 'name': 'metric four', 'data1': 6, 'data2': 14, 'data3': 23 }, + * { 'name': 'metric five', 'data1': 36, 'data2': 38, 'data3': 33 } + * ] + * }); + * + * Ext.create('Ext.chart.Chart', { + * renderTo: Ext.getBody(), + * width: 500, + * height: 300, + * animate: true, + * theme:'Category2', + * store: store, + * axes: [{ + * type: 'Radial', + * position: 'radial', + * label: { + * display: true + * } + * }], + * series: [{ + * type: 'radar', + * xField: 'name', + * yField: 'data1', + * showInLegend: true, + * showMarkers: true, + * markerConfig: { + * radius: 5, + * size: 5 + * }, + * style: { + * 'stroke-width': 2, + * fill: 'none' + * } + * },{ + * type: 'radar', + * xField: 'name', + * yField: 'data2', + * showMarkers: true, + * showInLegend: true, + * markerConfig: { + * radius: 5, + * size: 5 + * }, + * style: { + * 'stroke-width': 2, + * fill: 'none' + * } + * },{ + * type: 'radar', + * xField: 'name', + * yField: 'data3', + * showMarkers: true, + * showInLegend: true, + * markerConfig: { + * radius: 5, + * size: 5 + * }, + * style: { + * 'stroke-width': 2, + * fill: 'none' + * } + * }] + * }); + * + * In this configuration we add three series to the chart. Each of these series is bound to the same + * categories field, `name` but bound to different properties for each category, `data1`, `data2` and + * `data3` respectively. All series display markers by having `showMarkers` enabled. The configuration + * for the markers of each series can be set by adding properties onto the markerConfig object. + * Finally we override some theme styling properties by adding properties to the `style` object. + */ +Ext.define('Ext.chart.series.Radar', { + + /* Begin Definitions */ + + extend: 'Ext.chart.series.Series', + + requires: ['Ext.chart.Shape', 'Ext.fx.Anim'], + + /* End Definitions */ + + type: "radar", + alias: 'series.radar', + + + rad: Math.PI / 180, + + showInLegend: false, + + /** + * @cfg {Object} style + * An object containing styles for overriding series styles from Theming. + */ + style: {}, + + /** + * @cfg {String} xField + * The name of the data Model field corresponding to the x-axis (angle) value. + */ + + /** + * @cfg {String} yField + * The name of the data Model field corresponding to the y-axis (radius) value. + */ + + /** + * @cfg {Boolean} showMarkers + * Whether markers should be displayed at the data points of the series. If true, + * then the {@link #markerConfig} config item will determine the markers' styling. + */ + + /** + * @cfg {Object} markerConfig + * The display style for the markers. Only used if {@link #showMarkers} is true. + * The markerConfig is a configuration object containing the same set of properties defined in + * the Sprite class. For example, if we were to set red circles as markers to the series we could + * pass the object: + * + * @example + * markerConfig: { + * type: 'circle', + * radius: 4, + * 'fill': '#f00' + * } + */ + + constructor: function(config) { + this.callParent(arguments); + var me = this, + surface = me.chart.surface; + me.group = surface.getGroup(me.seriesId); + if (me.showMarkers) { + me.markerGroup = surface.getGroup(me.seriesId + '-markers'); + } + }, + + /** + * Draws the series for the current chart. + */ + drawSeries: function() { + var me = this, + store = me.chart.getChartStore(), + data = store.data.items, + d, record, + group = me.group, + chart = me.chart, + seriesItems = chart.series.items, + s, sLen, series, + field = me.field || me.yField, + surface = chart.surface, + chartBBox = chart.chartBBox, + colorArrayStyle = me.colorArrayStyle, + centerX, centerY, + items, + radius, + maxValue = 0, + fields = [], + max = Math.max, + cos = Math.cos, + sin = Math.sin, + pi2 = Math.PI * 2, + l = store.getCount(), + startPath, path, x, y, rho, + i, nfields, + seriesStyle = me.seriesStyle, + axis = chart.axes && chart.axes.get(0), + aggregate = !(axis && axis.maximum); + + me.setBBox(); + + maxValue = aggregate? 0 : (axis.maximum || 0); + + Ext.apply(seriesStyle, me.style || {}); + + //if the store is empty then there's nothing to draw + if (!store || !store.getCount() || me.seriesIsHidden) { + me.hide(); + me.items = []; + if (me.radar) { + me.radar.hide(true); + } + me.radar = null; + return; + } + + if(!seriesStyle['stroke']){ + seriesStyle['stroke'] = colorArrayStyle[me.themeIdx % colorArrayStyle.length]; + } + + me.unHighlightItem(); + me.cleanHighlights(); + + centerX = me.centerX = chartBBox.x + (chartBBox.width / 2); + centerY = me.centerY = chartBBox.y + (chartBBox.height / 2); + me.radius = radius = Math.min(chartBBox.width, chartBBox.height) /2; + me.items = items = []; + + if (aggregate) { + //get all renderer fields + for (s = 0, sLen = seriesItems.length; s < sLen; s++) { + series = seriesItems[s]; + fields.push(series.yField); + } + //get maxValue to interpolate + for (d = 0; d < l; d++) { + record = data[d]; + for (i = 0, nfields = fields.length; i < nfields; i++) { + maxValue = max(+record.get(fields[i]), maxValue); + } + } + } + //ensure non-zero value. + maxValue = maxValue || 1; + //create path and items + startPath = []; path = []; + for (i = 0; i < l; i++) { + record = data[i]; + rho = radius * record.get(field) / maxValue; + x = rho * cos(i / l * pi2); + y = rho * sin(i / l * pi2); + if (i == 0) { + path.push('M', x + centerX, y + centerY); + startPath.push('M', 0.01 * x + centerX, 0.01 * y + centerY); + } else { + path.push('L', x + centerX, y + centerY); + startPath.push('L', 0.01 * x + centerX, 0.01 * y + centerY); + } + items.push({ + sprite: false, //TODO(nico): add markers + point: [centerX + x, centerY + y], + storeItem: record, + series: me + }); + } + path.push('Z'); + //create path sprite + if (!me.radar) { + me.radar = surface.add(Ext.apply({ + type: 'path', + group: group, + path: startPath + }, seriesStyle || {})); + } + //reset on resizing + if (chart.resizing) { + me.radar.setAttributes({ + path: startPath + }, true); + } + //render/animate + if (chart.animate) { + me.onAnimate(me.radar, { + to: Ext.apply({ + path: path + }, seriesStyle || {}) + }); + } else { + me.radar.setAttributes(Ext.apply({ + path: path + }, seriesStyle || {}), true); + } + //render markers, labels and callouts + if (me.showMarkers) { + me.drawMarkers(); + } + me.renderLabels(); + me.renderCallouts(); + }, + + // @private draws the markers for the lines (if any). + drawMarkers: function() { + var me = this, + chart = me.chart, + surface = chart.surface, + store = chart.getChartStore(), + markerStyle = Ext.apply({}, me.markerStyle || {}), + endMarkerStyle = Ext.apply(markerStyle, me.markerConfig, { + fill: me.colorArrayStyle[me.themeIdx % me.colorArrayStyle.length] + }), + items = me.items, + type = endMarkerStyle.type, + markerGroup = me.markerGroup, + centerX = me.centerX, + centerY = me.centerY, + item, i, l, marker, rendererAttributes; + + delete endMarkerStyle.type; + + for (i = 0, l = items.length; i < l; i++) { + item = items[i]; + marker = markerGroup.getAt(i); + if (!marker) { + marker = Ext.chart.Shape[type](surface, Ext.apply({ + group: markerGroup, + x: 0, + y: 0, + translate: { + x: centerX, + y: centerY + } + }, endMarkerStyle)); + } + else { + marker.show(); + } + + item.sprite = marker; + + if (chart.resizing) { + marker.setAttributes({ + x: 0, + y: 0, + translate: { + x: centerX, + y: centerY + } + }, true); + } + marker._to = { + translate: { + x: item.point[0], + y: item.point[1] + } + }; + //render/animate + rendererAttributes = me.renderer(marker, store.getAt(i), marker._to, i, store); + rendererAttributes = Ext.applyIf(rendererAttributes || {}, endMarkerStyle || {}); + if (chart.animate) { + me.onAnimate(marker, { + to: rendererAttributes + }); + } + else { + marker.setAttributes(rendererAttributes, true); + } + } + }, + + isItemInPoint: function(x, y, item) { + var point, + tolerance = 10, + abs = Math.abs; + point = item.point; + return (abs(point[0] - x) <= tolerance && + abs(point[1] - y) <= tolerance); + }, + + // @private callback for when creating a label sprite. + onCreateLabel: function(storeItem, item, i, display) { + var me = this, + group = me.labelsGroup, + config = me.label, + centerX = me.centerX, + centerY = me.centerY, + endLabelStyle = Ext.apply({}, config, me.seriesLabelStyle || {}); + + return me.chart.surface.add(Ext.apply({ + 'type': 'text', + 'text-anchor': 'middle', + 'group': group, + 'x': centerX, + 'y': centerY + }, endLabelStyle || {})); + }, + + // @private callback for when placing a label sprite. + onPlaceLabel: function(label, storeItem, item, i, display, animate, index) { + var me = this, + chart = me.chart, + resizing = chart.resizing, + config = me.label, + format = config.renderer, + field = config.field, + centerX = me.centerX, + centerY = me.centerY, + opt = { + x: Number(item.point[0]), + y: Number(item.point[1]) + }, + x = opt.x - centerX, + y = opt.y - centerY, + theta = Math.atan2(y, x || 1), + deg = theta * 180 / Math.PI, + labelBox, direction; + + function fixAngle(a) { + if (a < 0) { + a += 360; + } + return a % 360; + } + + label.setAttributes({ + text: format(storeItem.get(field), label, storeItem, item, i, display, animate, index), + hidden: true + }, + true); + + // Move the label by half its height or width depending on + // the angle so the label doesn't overlap the graph. + labelBox = label.getBBox(); + deg = fixAngle(deg); + if ((deg > 45 && deg < 135) || (deg > 225 && deg < 315)) { + direction = (deg > 45 && deg < 135 ? 1 : -1); + opt.y += direction * labelBox.height/2; + } else { + direction = (deg >= 135 && deg <= 225 ? -1 : 1); + opt.x += direction * labelBox.width/2; + } + + if (resizing) { + label.setAttributes({ + x: centerX, + y: centerY + }, true); + } + + if (animate) { + label.show(true); + me.onAnimate(label, { + to: opt + }); + } else { + label.setAttributes(opt, true); + label.show(true); + } + }, + + // @private for toggling (show/hide) series. + toggleAll: function(show) { + var me = this, + i, ln, shadow, shadows; + if (!show) { + Ext.chart.series.Radar.superclass.hideAll.call(me); + } + else { + Ext.chart.series.Radar.superclass.showAll.call(me); + } + if (me.radar) { + me.radar.setAttributes({ + hidden: !show + }, true); + //hide shadows too + if (me.radar.shadows) { + for (i = 0, shadows = me.radar.shadows, ln = shadows.length; i < ln; i++) { + shadow = shadows[i]; + shadow.setAttributes({ + hidden: !show + }, true); + } + } + } + }, + + // @private hide all elements in the series. + hideAll: function() { + this.toggleAll(false); + this.hideMarkers(0); + }, + + // @private show all elements in the series. + showAll: function() { + this.toggleAll(true); + }, + + // @private hide all markers that belong to `markerGroup` + hideMarkers: function(index) { + var me = this, + count = me.markerGroup && me.markerGroup.getCount() || 0, + i = index || 0; + for (; i < count; i++) { + me.markerGroup.getAt(i).hide(true); + } + }, + + // @private return the radial axis as yAxis (there is no xAxis). + // Required by the base class 'Ext.chart.axis.Axis'. + getAxesForXAndYFields: function() { + var me = this, + chart = me.chart, + axes = chart.axes, + axis = [].concat(axes && axes.get(0)); + + return { + yAxis: axis + }; + } +}); + diff --git a/extjs-django/marvel/static/extjs/src/chart/series/Scatter.js b/extjs-django/marvel/static/extjs/src/chart/series/Scatter.js new file mode 100644 index 0000000..1ab25ca --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/series/Scatter.js @@ -0,0 +1,696 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.series.Scatter + * @extends Ext.chart.series.Cartesian + * + * Creates a Scatter Chart. The scatter plot is useful when trying to display more than two variables in the same visualization. + * These variables can be mapped into x, y coordinates and also to an element's radius/size, color, etc. + * As with all other series, the Scatter Series must be appended in the *series* Chart array configuration. See the Chart + * documentation for more information on creating charts. A typical configuration object for the scatter could be: + * + * @example + * var store = Ext.create('Ext.data.JsonStore', { + * fields: ['name', 'data1', 'data2', 'data3', 'data4', 'data5'], + * data: [ + * { 'name': 'metric one', 'data1': 10, 'data2': 12, 'data3': 14, 'data4': 8, 'data5': 13 }, + * { 'name': 'metric two', 'data1': 7, 'data2': 8, 'data3': 16, 'data4': 10, 'data5': 3 }, + * { 'name': 'metric three', 'data1': 5, 'data2': 2, 'data3': 14, 'data4': 12, 'data5': 7 }, + * { 'name': 'metric four', 'data1': 2, 'data2': 14, 'data3': 6, 'data4': 1, 'data5': 23 }, + * { 'name': 'metric five', 'data1': 27, 'data2': 38, 'data3': 36, 'data4': 13, 'data5': 33 } + * ] + * }); + * + * Ext.create('Ext.chart.Chart', { + * renderTo: Ext.getBody(), + * width: 500, + * height: 300, + * animate: true, + * theme:'Category2', + * store: store, + * axes: [{ + * type: 'Numeric', + * position: 'left', + * fields: ['data2', 'data3'], + * title: 'Sample Values', + * grid: true, + * minimum: 0 + * }, { + * type: 'Category', + * position: 'bottom', + * fields: ['name'], + * title: 'Sample Metrics' + * }], + * series: [{ + * type: 'scatter', + * markerConfig: { + * radius: 5, + * size: 5 + * }, + * axis: 'left', + * xField: 'name', + * yField: 'data2' + * }, { + * type: 'scatter', + * markerConfig: { + * radius: 5, + * size: 5 + * }, + * axis: 'left', + * xField: 'name', + * yField: 'data3' + * }] + * }); + * + * In this configuration we add three different categories of scatter series. Each of them is bound to a different field of the same data store, + * `data1`, `data2` and `data3` respectively. All x-fields for the series must be the same field, in this case `name`. + * Each scatter series has a different styling configuration for markers, specified by the `markerConfig` object. Finally we set the left axis as + * axis to show the current values of the elements. + */ +Ext.define('Ext.chart.series.Scatter', { + + /* Begin Definitions */ + + extend: 'Ext.chart.series.Cartesian', + + requires: ['Ext.chart.axis.Axis', 'Ext.chart.Shape', 'Ext.fx.Anim'], + + /* End Definitions */ + + type: 'scatter', + alias: 'series.scatter', + + /** + * @cfg {Object} markerConfig + * The display style for the scatter series markers. + */ + + /** + * @cfg {Object} style + * Append styling properties to this object for it to override theme properties. + */ + + constructor: function(config) { + this.callParent(arguments); + var me = this, + shadow = me.chart.shadow, + surface = me.chart.surface, i, l; + Ext.apply(me, config, { + style: {}, + markerConfig: {}, + shadowAttributes: [{ + "stroke-width": 6, + "stroke-opacity": 0.05, + stroke: 'rgb(0, 0, 0)' + }, { + "stroke-width": 4, + "stroke-opacity": 0.1, + stroke: 'rgb(0, 0, 0)' + }, { + "stroke-width": 2, + "stroke-opacity": 0.15, + stroke: 'rgb(0, 0, 0)' + }] + }); + me.group = surface.getGroup(me.seriesId); + if (shadow) { + for (i = 0, l = me.shadowAttributes.length; i < l; i++) { + me.shadowGroups.push(surface.getGroup(me.seriesId + '-shadows' + i)); + } + } + }, + + // @private Get chart and data boundaries + getBounds: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + chartAxes = chart.axes, + boundAxes = me.getAxesForXAndYFields(), + boundXAxis = boundAxes.xAxis, + boundYAxis = boundAxes.yAxis, + bbox, xScale, yScale, ln, minX, minY, maxX, maxY, i, axis, ends; + + me.setBBox(); + bbox = me.bbox; + + if (axis = chartAxes.get(boundXAxis)) { + ends = axis.applyData(); + minX = ends.from; + maxX = ends.to; + } + + if (axis = chartAxes.get(boundYAxis)) { + ends = axis.applyData(); + minY = ends.from; + maxY = ends.to; + } + + // If a field was specified without a corresponding axis, create one to get bounds + if (me.xField && !Ext.isNumber(minX)) { + axis = me.getMinMaxXValues(); + minX = axis[0]; + maxX = axis[1]; + } + + if (me.yField && !Ext.isNumber(minY)) { + axis = me.getMinMaxYValues(); + minY = axis[0]; + maxY = axis[1]; + } + + if (isNaN(minX)) { + minX = 0; + maxX = store.getCount() - 1; + xScale = bbox.width / (store.getCount() - 1); + } + else { + xScale = bbox.width / (maxX - minX); + } + + if (isNaN(minY)) { + minY = 0; + maxY = store.getCount() - 1; + yScale = bbox.height / (store.getCount() - 1); + } + else { + yScale = bbox.height / (maxY - minY); + } + + return { + bbox: bbox, + minX: minX, + minY: minY, + xScale: xScale, + yScale: yScale + }; + }, + + // @private Build an array of paths for the chart + getPaths: function() { + var me = this, + chart = me.chart, + enableShadows = chart.shadow, + store = chart.getChartStore(), + data = store.data.items, + i, ln, record, + group = me.group, + bounds = me.bounds = me.getBounds(), + bbox = me.bbox, + xScale = bounds.xScale, + yScale = bounds.yScale, + minX = bounds.minX, + minY = bounds.minY, + boxX = bbox.x, + boxY = bbox.y, + boxHeight = bbox.height, + items = me.items = [], + attrs = [], + x, y, xValue, yValue, sprite; + + for (i = 0, ln = data.length; i < ln; i++) { + record = data[i]; + xValue = record.get(me.xField); + yValue = record.get(me.yField); + //skip undefined or null values + if (typeof yValue == 'undefined' || (typeof yValue == 'string' && !yValue) + || xValue == null || yValue == null) { + // + if (Ext.isDefined(Ext.global.console)) { + Ext.global.console.warn("[Ext.chart.series.Scatter] Skipping a store element with a value which is either undefined or null at ", record, xValue, yValue); + } + // + continue; + } + // Ensure a value + if (typeof xValue == 'string' || typeof xValue == 'object' && !Ext.isDate(xValue)) { + xValue = i; + } + if (typeof yValue == 'string' || typeof yValue == 'object' && !Ext.isDate(yValue)) { + yValue = i; + } + x = boxX + (xValue - minX) * xScale; + y = boxY + boxHeight - (yValue - minY) * yScale; + attrs.push({ + x: x, + y: y + }); + + me.items.push({ + series: me, + value: [xValue, yValue], + point: [x, y], + storeItem: record + }); + + // When resizing, reset before animating + if (chart.animate && chart.resizing) { + sprite = group.getAt(i); + if (sprite) { + me.resetPoint(sprite); + if (enableShadows) { + me.resetShadow(sprite); + } + } + } + } + return attrs; + }, + + // @private translate point to the center + resetPoint: function(sprite) { + var bbox = this.bbox; + sprite.setAttributes({ + translate: { + x: (bbox.x + bbox.width) / 2, + y: (bbox.y + bbox.height) / 2 + } + }, true); + }, + + // @private translate shadows of a sprite to the center + resetShadow: function(sprite) { + var me = this, + shadows = sprite.shadows, + shadowAttributes = me.shadowAttributes, + ln = me.shadowGroups.length, + bbox = me.bbox, + i, attr; + for (i = 0; i < ln; i++) { + attr = Ext.apply({}, shadowAttributes[i]); + // TODO: fix this with setAttributes + if (attr.translate) { + attr.translate.x += (bbox.x + bbox.width) / 2; + attr.translate.y += (bbox.y + bbox.height) / 2; + } + else { + attr.translate = { + x: (bbox.x + bbox.width) / 2, + y: (bbox.y + bbox.height) / 2 + }; + } + shadows[i].setAttributes(attr, true); + } + }, + + // @private create a new point + createPoint: function(attr, type) { + var me = this, + chart = me.chart, + group = me.group, + bbox = me.bbox; + + return Ext.chart.Shape[type](chart.surface, Ext.apply({}, { + x: 0, + y: 0, + group: group, + translate: { + x: (bbox.x + bbox.width) / 2, + y: (bbox.y + bbox.height) / 2 + } + }, attr)); + }, + + // @private create a new set of shadows for a sprite + createShadow: function(sprite, endMarkerStyle, type) { + var me = this, + chart = me.chart, + shadowGroups = me.shadowGroups, + shadowAttributes = me.shadowAttributes, + lnsh = shadowGroups.length, + bbox = me.bbox, + i, shadow, shadows, attr; + + sprite.shadows = shadows = []; + + for (i = 0; i < lnsh; i++) { + attr = Ext.apply({}, shadowAttributes[i]); + if (attr.translate) { + attr.translate.x += (bbox.x + bbox.width) / 2; + attr.translate.y += (bbox.y + bbox.height) / 2; + } + else { + Ext.apply(attr, { + translate: { + x: (bbox.x + bbox.width) / 2, + y: (bbox.y + bbox.height) / 2 + } + }); + } + Ext.apply(attr, endMarkerStyle); + shadow = Ext.chart.Shape[type](chart.surface, Ext.apply({}, { + x: 0, + y: 0, + group: shadowGroups[i] + }, attr)); + shadows.push(shadow); + } + }, + + /** + * Draws the series for the current chart. + */ + drawSeries: function() { + var me = this, + chart = me.chart, + store = chart.getChartStore(), + group = me.group, + enableShadows = chart.shadow, + shadowGroups = me.shadowGroups, + shadowAttributes = me.shadowAttributes, + lnsh = shadowGroups.length, + sprite, attrs, attr, ln, i, endMarkerStyle, shindex, type, shadows, + rendererAttributes, shadowAttribute; + + endMarkerStyle = Ext.apply(me.markerStyle, me.markerConfig); + type = endMarkerStyle.type || 'circle'; + delete endMarkerStyle.type; + + //if the store is empty then there's nothing to be rendered + if (!store || !store.getCount()) { + me.hide(); + me.items = []; + return; + } + + + me.unHighlightItem(); + me.cleanHighlights(); + + attrs = me.getPaths(); + ln = attrs.length; + for (i = 0; i < ln; i++) { + attr = attrs[i]; + sprite = group.getAt(i); + Ext.apply(attr, endMarkerStyle); + + // Create a new sprite if needed (no height) + if (!sprite) { + sprite = me.createPoint(attr, type); + if (enableShadows) { + me.createShadow(sprite, endMarkerStyle, type); + } + } + + shadows = sprite.shadows; + if (chart.animate) { + rendererAttributes = me.renderer(sprite, store.getAt(i), { translate: attr }, i, store); + sprite._to = rendererAttributes; + me.onAnimate(sprite, { + to: rendererAttributes + }); + //animate shadows + for (shindex = 0; shindex < lnsh; shindex++) { + shadowAttribute = Ext.apply({}, shadowAttributes[shindex]); + rendererAttributes = me.renderer(shadows[shindex], store.getAt(i), Ext.apply({}, { + hidden: false, + translate: { + x: attr.x + (shadowAttribute.translate? shadowAttribute.translate.x : 0), + y: attr.y + (shadowAttribute.translate? shadowAttribute.translate.y : 0) + } + }, shadowAttribute), i, store); + me.onAnimate(shadows[shindex], { to: rendererAttributes }); + } + } + else { + rendererAttributes = me.renderer(sprite, store.getAt(i), { translate: attr }, i, store); + sprite._to = rendererAttributes; + sprite.setAttributes(rendererAttributes, true); + //animate shadows + for (shindex = 0; shindex < lnsh; shindex++) { + shadowAttribute = Ext.apply({}, shadowAttributes[shindex]); + rendererAttributes = me.renderer(shadows[shindex], store.getAt(i), Ext.apply({}, { + hidden: false, + translate: { + x: attr.x + (shadowAttribute.translate? shadowAttribute.translate.x : 0), + y: attr.y + (shadowAttribute.translate? shadowAttribute.translate.y : 0) + } + }, shadowAttribute), i, store); + shadows[shindex].setAttributes(rendererAttributes, true); + } + } + me.items[i].sprite = sprite; + } + + // Hide unused sprites + ln = group.getCount(); + for (i = attrs.length; i < ln; i++) { + group.getAt(i).hide(true); + } + me.renderLabels(); + me.renderCallouts(); + }, + + // @private callback for when creating a label sprite. + onCreateLabel: function(storeItem, item, i, display) { + var me = this, + group = me.labelsGroup, + config = me.label, + endLabelStyle = Ext.apply({}, config, me.seriesLabelStyle), + bbox = me.bbox; + + return me.chart.surface.add(Ext.apply({ + type: 'text', + 'text-anchor': 'middle', + group: group, + x: Number(item.point[0]), + y: bbox.y + bbox.height / 2 + }, endLabelStyle)); + }, + + // @private callback for when placing a label sprite. + onPlaceLabel: function(label, storeItem, item, i, display, animate, index) { + var me = this, + chart = me.chart, + resizing = chart.resizing, + config = me.label, + format = config.renderer, + field = config.field, + bbox = me.bbox, + x = Number(item.point[0]), + y = Number(item.point[1]), + radius = item.sprite.attr.radius, + labelBox, markerBox, width, height, xOffset, yOffset, + anim; + + label.setAttributes({ + text: format(storeItem.get(field), label, storeItem, item, i, display, animate, index), + hidden: true + }, true); + + + //TODO(nicolas): find out why width/height values in circle bounding boxes are undefined. + markerBox = item.sprite.getBBox(); + markerBox.width = markerBox.width || (radius * 2); + markerBox.height = markerBox.height || (radius * 2); + + labelBox = label.getBBox(); + width = labelBox.width/2; + height = labelBox.height/2; + + if (display == 'rotate') { + //correct label position to fit into the box + xOffset = markerBox.width/2 + width + height/2; + if (x + xOffset + width > bbox.x + bbox.width) { + x -= xOffset; + } else { + x += xOffset; + } + label.setAttributes({ + 'rotation': { + x: x, + y: y, + degrees: -45 + } + }, true); + } else if (display == 'under' || display == 'over') { + label.setAttributes({ + 'rotation': { + degrees: 0 + } + }, true); + + //correct label position to fit into the box + if (x < bbox.x + width) { + x = bbox.x + width; + } else if (x + width > bbox.x + bbox.width) { + x = bbox.x + bbox.width - width; + } + + yOffset = markerBox.height/2 + height; + y = y + (display == 'over' ? -yOffset : yOffset); + if (y < bbox.y + height) { + y += 2 * yOffset; + } else if (y + height > bbox.y + bbox.height) { + y -= 2 * yOffset; + } + } + + if (!chart.animate) { + label.setAttributes({ + x: x, + y: y + }, true); + label.show(true); + } + else { + if (resizing) { + anim = item.sprite.getActiveAnimation(); + if (anim) { + anim.on('afteranimate', function() { + label.setAttributes({ + x: x, + y: y + }, true); + label.show(true); + }); + } + else { + label.show(true); + } + } + else { + me.onAnimate(label, { + to: { + x: x, + y: y + } + }); + } + } + }, + + // @private callback for when placing a callout sprite. + onPlaceCallout: function(callout, storeItem, item, i, display, animate, index) { + var me = this, + chart = me.chart, + surface = chart.surface, + resizing = chart.resizing, + config = me.callouts, + items = me.items, + cur = item.point, + normal, + bbox = callout.label.getBBox(), + offsetFromViz = 30, + offsetToSide = 10, + offsetBox = 3, + boxx, boxy, boxw, boxh, + p, clipRect = me.bbox, + x, y; + + //position + normal = [Math.cos(Math.PI /4), -Math.sin(Math.PI /4)]; + x = cur[0] + normal[0] * offsetFromViz; + y = cur[1] + normal[1] * offsetFromViz; + + //box position and dimensions + boxx = x + (normal[0] > 0? 0 : -(bbox.width + 2 * offsetBox)); + boxy = y - bbox.height /2 - offsetBox; + boxw = bbox.width + 2 * offsetBox; + boxh = bbox.height + 2 * offsetBox; + + //now check if we're out of bounds and invert the normal vector correspondingly + //this may add new overlaps between labels (but labels won't be out of bounds). + if (boxx < clipRect[0] || (boxx + boxw) > (clipRect[0] + clipRect[2])) { + normal[0] *= -1; + } + if (boxy < clipRect[1] || (boxy + boxh) > (clipRect[1] + clipRect[3])) { + normal[1] *= -1; + } + + //update positions + x = cur[0] + normal[0] * offsetFromViz; + y = cur[1] + normal[1] * offsetFromViz; + + //update box position and dimensions + boxx = x + (normal[0] > 0? 0 : -(bbox.width + 2 * offsetBox)); + boxy = y - bbox.height /2 - offsetBox; + boxw = bbox.width + 2 * offsetBox; + boxh = bbox.height + 2 * offsetBox; + + if (chart.animate) { + //set the line from the middle of the pie to the box. + me.onAnimate(callout.lines, { + to: { + path: ["M", cur[0], cur[1], "L", x, y, "Z"] + } + }, true); + //set box position + me.onAnimate(callout.box, { + to: { + x: boxx, + y: boxy, + width: boxw, + height: boxh + } + }, true); + //set text position + me.onAnimate(callout.label, { + to: { + x: x + (normal[0] > 0? offsetBox : -(bbox.width + offsetBox)), + y: y + } + }, true); + } else { + //set the line from the middle of the pie to the box. + callout.lines.setAttributes({ + path: ["M", cur[0], cur[1], "L", x, y, "Z"] + }, true); + //set box position + callout.box.setAttributes({ + x: boxx, + y: boxy, + width: boxw, + height: boxh + }, true); + //set text position + callout.label.setAttributes({ + x: x + (normal[0] > 0? offsetBox : -(bbox.width + offsetBox)), + y: y + }, true); + } + for (p in callout) { + callout[p].show(true); + } + }, + + // @private handles sprite animation for the series. + onAnimate: function(sprite, attr) { + sprite.show(); + return this.callParent(arguments); + }, + + isItemInPoint: function(x, y, item) { + var point, + tolerance = 10, + abs = Math.abs; + + function dist(point) { + var dx = abs(point[0] - x), + dy = abs(point[1] - y); + return Math.sqrt(dx * dx + dy * dy); + } + point = item.point; + return (point[0] - tolerance <= x && point[0] + tolerance >= x && + point[1] - tolerance <= y && point[1] + tolerance >= y); + } +}); + diff --git a/extjs-django/marvel/static/extjs/src/chart/series/Series.js b/extjs-django/marvel/static/extjs/src/chart/series/Series.js new file mode 100644 index 0000000..b07ab3d --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/series/Series.js @@ -0,0 +1,477 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.series.Series + * + * Series is the abstract class containing the common logic to all chart series. Series includes + * methods from Labels, Highlights, Tips and Callouts mixins. This class implements the logic of handling + * mouse events, animating, hiding, showing all elements and returning the color of the series to be used as a legend item. + * + * ## Listeners + * + * The series class supports listeners via the Observable syntax. Some of these listeners are: + * + * - `itemclick` When the user interacts with a marker. + * - `itemmouseup` When the user interacts with a marker. + * - `itemmousedown` When the user interacts with a marker. + * - `itemmousemove` When the user iteracts with a marker. + * - `afterrender` Will be triggered when the animation ends or when the series has been rendered completely. + * + * For example: + * + * series: [{ + * type: 'column', + * axis: 'left', + * listeners: { + * 'afterrender': function() { + * console('afterrender'); + * } + * }, + * xField: 'category', + * yField: 'data1' + * }] + */ +Ext.define('Ext.chart.series.Series', { + + /* Begin Definitions */ + + mixins: { + observable: 'Ext.util.Observable', + labels: 'Ext.chart.Label', + highlights: 'Ext.chart.Highlight', + tips: 'Ext.chart.Tip', + callouts: 'Ext.chart.Callout' + }, + + /* End Definitions */ + + /** + * @cfg {Boolean/Object} highlight + * If set to `true` it will highlight the markers or the series when hovering + * with the mouse. This parameter can also be an object with the same style + * properties you would apply to a {@link Ext.draw.Sprite} to apply custom + * styles to markers and series. + */ + + /** + * @cfg {Object} tips + * Add tooltips to the visualization's markers. The options for the tips are the + * same configuration used with {@link Ext.tip.ToolTip}. For example: + * + * tips: { + * trackMouse: true, + * width: 140, + * height: 28, + * renderer: function(storeItem, item) { + * this.setTitle(storeItem.get('name') + ': ' + storeItem.get('data1') + ' views'); + * } + * }, + */ + + /** + * @cfg {String} type + * The type of series. Set in subclasses. + */ + type: null, + + /** + * @cfg {String} title + * The human-readable name of the series. + */ + title: null, + + /** + * @cfg {Boolean} showInLegend + * Whether to show this series in the legend. + */ + showInLegend: true, + + /** + * @cfg {Function} renderer + * A function that can be overridden to set custom styling properties to each rendered element. + * Passes in (sprite, record, attributes, index, store) to the function. + */ + renderer: function(sprite, record, attributes, index, store) { + return attributes; + }, + + /** + * @cfg {Array} shadowAttributes + * An array with shadow attributes + */ + shadowAttributes: null, + + // @private animating flag + animating: false, + + // @private default gutters + nullGutters: { lower: 0, upper: 0, verticalAxis: undefined }, + + // @private default padding + nullPadding: { left:0, right:0, width:0, bottom:0, top:0, height:0 }, + + /** + * @cfg {Object} listeners + * An (optional) object with event callbacks. All event callbacks get the target *item* as first parameter. The callback functions are: + * + * - itemclick + * - itemmouseover + * - itemmouseout + * - itemmousedown + * - itemmouseup + */ + + constructor: function(config) { + var me = this; + if (config) { + Ext.apply(me, config); + } + + me.shadowGroups = []; + + me.mixins.labels.constructor.call(me, config); + me.mixins.highlights.constructor.call(me, config); + me.mixins.tips.constructor.call(me, config); + me.mixins.callouts.constructor.call(me, config); + + me.addEvents({ + scope: me, + itemclick: true, + itemmouseover: true, + itemmouseout: true, + itemmousedown: true, + itemmouseup: true, + mouseleave: true, + afterdraw: true, + + /** + * @event titlechange + * Fires when the series title is changed via {@link #setTitle}. + * @param {String} title The new title value + * @param {Number} index The index in the collection of titles + */ + titlechange: true + }); + + me.mixins.observable.constructor.call(me, config); + + me.on({ + scope: me, + itemmouseover: me.onItemMouseOver, + itemmouseout: me.onItemMouseOut, + mouseleave: me.onMouseLeave + }); + + if (me.style) { + Ext.apply(me.seriesStyle, me.style); + } + }, + + onRedraw: Ext.emptyFn, + + /** + * Iterate over each of the records for this series. The default implementation simply iterates + * through the entire data store, but individual series implementations can override this to + * provide custom handling, e.g. adding/removing records. + * @param {Function} fn The function to execute for each record. + * @param {Object} scope Scope for the fn. + */ + eachRecord: function(fn, scope) { + var chart = this.chart; + chart.getChartStore().each(fn, scope); + }, + + /** + * Return the number of records being displayed in this series. Defaults to the number of + * records in the store; individual series implementations can override to provide custom handling. + */ + getRecordCount: function() { + var chart = this.chart, + store = chart.getChartStore(); + return store ? store.getCount() : 0; + }, + + /** + * Determines whether the series item at the given index has been excluded, i.e. toggled off in the legend. + * @param index + */ + isExcluded: function(index) { + var excludes = this.__excludes; + return !!(excludes && excludes[index]); + }, + + // @private set the bbox and clipBox for the series + setBBox: function(noGutter) { + var me = this, + chart = me.chart, + chartBBox = chart.chartBBox, + maxGutters = noGutter ? { left: 0, right: 0, bottom: 0, top: 0 } : chart.maxGutters, + clipBox, bbox; + + clipBox = { + x: chartBBox.x, + y: chartBBox.y, + width: chartBBox.width, + height: chartBBox.height + }; + me.clipBox = clipBox; + + bbox = { + x: (clipBox.x + maxGutters.left) - (chart.zoom.x * chart.zoom.width), + y: (clipBox.y + maxGutters.bottom) - (chart.zoom.y * chart.zoom.height), + width: (clipBox.width - (maxGutters.left + maxGutters.right)) * chart.zoom.width, + height: (clipBox.height - (maxGutters.bottom + maxGutters.top)) * chart.zoom.height + }; + me.bbox = bbox; + }, + + // @private set the animation for the sprite + onAnimate: function(sprite, attr) { + var me = this; + sprite.stopAnimation(); + if (me.animating) { + return sprite.animate(Ext.applyIf(attr, me.chart.animate)); + } else { + me.animating = true; + return sprite.animate(Ext.apply(Ext.applyIf(attr, me.chart.animate), { + // use callback, don't overwrite listeners + callback: function() { + me.animating = false; + me.fireEvent('afterrender'); + } + })); + } + }, + + // @private return the gutters. + getGutters: function() { + return this.nullGutters; + }, + + // @private return the gutters. + getPadding: function() { + return this.nullPadding; + }, + + // @private wrapper for the itemmouseover event. + onItemMouseOver: function(item) { + var me = this; + if (item.series === me) { + if (me.highlight) { + me.highlightItem(item); + } + if (me.tooltip) { + me.showTip(item); + } + } + }, + + // @private wrapper for the itemmouseout event. + onItemMouseOut: function(item) { + var me = this; + if (item.series === me) { + me.unHighlightItem(); + if (me.tooltip) { + me.hideTip(item); + } + } + }, + + // @private wrapper for the mouseleave event. + onMouseLeave: function() { + var me = this; + me.unHighlightItem(); + if (me.tooltip) { + me.hideTip(); + } + }, + + /** + * For a given x/y point relative to the Surface, find a corresponding item from this + * series, if any. + * @param {Number} x + * @param {Number} y + * @return {Object} An object describing the item, or null if there is no matching item. + * The exact contents of this object will vary by series type, but should always contain the following: + * @return {Ext.chart.series.Series} return.series the Series object to which the item belongs + * @return {Object} return.value the value(s) of the item's data point + * @return {Array} return.point the x/y coordinates relative to the chart box of a single point + * for this data item, which can be used as e.g. a tooltip anchor point. + * @return {Ext.draw.Sprite} return.sprite the item's rendering Sprite. + */ + getItemForPoint: function(x, y) { + //if there are no items to query just return null. + if (!this.items || !this.items.length || this.seriesIsHidden) { + return null; + } + var me = this, + items = me.items, + bbox = me.bbox, + item, i, ln; + // Check bounds + if (!Ext.draw.Draw.withinBox(x, y, bbox)) { + return null; + } + for (i = 0, ln = items.length; i < ln; i++) { + if (items[i] && this.isItemInPoint(x, y, items[i], i)) { + return items[i]; + } + } + + return null; + }, + + isItemInPoint: function(x, y, item, i) { + return false; + }, + + /** + * Hides all the elements in the series. + */ + hideAll: function() { + var me = this, + items = me.items, + item, len, i, j, l, sprite, shadows; + + me.seriesIsHidden = true; + me._prevShowMarkers = me.showMarkers; + + me.showMarkers = false; + //hide all labels + me.hideLabels(0); + //hide all sprites + for (i = 0, len = items.length; i < len; i++) { + item = items[i]; + sprite = item.sprite; + if (sprite) { + sprite.setAttributes({ + hidden: true + }, true); + } + + if (sprite && sprite.shadows) { + shadows = sprite.shadows; + for (j = 0, l = shadows.length; j < l; ++j) { + shadows[j].setAttributes({ + hidden: true + }, true); + } + } + } + }, + + /** + * Shows all the elements in the series. + */ + showAll: function() { + var me = this, + prevAnimate = me.chart.animate; + me.chart.animate = false; + me.seriesIsHidden = false; + me.showMarkers = me._prevShowMarkers; + me.drawSeries(); + me.chart.animate = prevAnimate; + }, + + hide: function() { + if (this.items) { + var me = this, + items = me.items, + i, j, lsh, ln, shadows; + + if (items && items.length) { + for (i = 0, ln = items.length; i < ln; ++i) { + if (items[i].sprite) { + items[i].sprite.hide(true); + + shadows = items[i].shadows || items[i].sprite.shadows; + if (shadows) { + for (j = 0, lsh = shadows.length; j < lsh; ++j) { + shadows[j].hide(true); + } + } + } + } + me.hideLabels(); + } + } + }, + + /** + * Returns a string with the color to be used for the series legend item. + */ + getLegendColor: function(index) { + var me = this, fill, stroke; + if (me.seriesStyle) { + fill = me.seriesStyle.fill; + stroke = me.seriesStyle.stroke; + if (fill && fill != 'none') { + return fill; + } + if(stroke){ + return stroke; + } + } + return (me.colorArrayStyle)?me.colorArrayStyle[me.themeIdx % me.colorArrayStyle.length]:'#000'; + }, + + /** + * Checks whether the data field should be visible in the legend + * @private + * @param {Number} index The index of the current item + */ + visibleInLegend: function(index){ + var excludes = this.__excludes; + if (excludes) { + return !excludes[index]; + } + return !this.seriesIsHidden; + }, + + /** + * Changes the value of the {@link #title} for the series. + * Arguments can take two forms: + *
      + *
    • A single String value: this will be used as the new single title for the series (applies + * to series with only one yField)
    • + *
    • A numeric index and a String value: this will set the title for a single indexed yField.
    • + *
    + * @param {Number} index + * @param {String} title + */ + setTitle: function(index, title) { + var me = this, + oldTitle = me.title; + + if (Ext.isString(index)) { + title = index; + index = 0; + } + + if (Ext.isArray(oldTitle)) { + oldTitle[index] = title; + } else { + me.title = title; + } + + me.fireEvent('titlechange', title, index); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/chart/theme/Base.js b/extjs-django/marvel/static/extjs/src/chart/theme/Base.js new file mode 100644 index 0000000..c54a31d --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/theme/Base.js @@ -0,0 +1,196 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * Provides default colors for non-specified things. Should be sub-classed when creating new themes. + * @private + */ +Ext.define('Ext.chart.theme.Base', { + + /* Begin Definitions */ + + requires: ['Ext.chart.theme.Theme'], + + /* End Definitions */ + + constructor: function(config) { + var ident = Ext.identityFn; + Ext.chart.theme.call(this, config, { + background: false, + axis: { + stroke: '#444', + 'stroke-width': 1 + }, + axisLabelTop: { + fill: '#444', + font: '12px Arial, Helvetica, sans-serif', + spacing: 2, + padding: 5, + renderer: ident + }, + axisLabelRight: { + fill: '#444', + font: '12px Arial, Helvetica, sans-serif', + spacing: 2, + padding: 5, + renderer: ident + }, + axisLabelBottom: { + fill: '#444', + font: '12px Arial, Helvetica, sans-serif', + spacing: 2, + padding: 5, + renderer: ident + }, + axisLabelLeft: { + fill: '#444', + font: '12px Arial, Helvetica, sans-serif', + spacing: 2, + padding: 5, + renderer: ident + }, + axisTitleTop: { + font: 'bold 18px Arial', + fill: '#444' + }, + axisTitleRight: { + font: 'bold 18px Arial', + fill: '#444', + rotate: { + x:0, y:0, + degrees: 270 + } + }, + axisTitleBottom: { + font: 'bold 18px Arial', + fill: '#444' + }, + axisTitleLeft: { + font: 'bold 18px Arial', + fill: '#444', + rotate: { + x:0, y:0, + degrees: 270 + } + }, + series: { + 'stroke-width': 0 + }, + seriesLabel: { + font: '12px Arial', + fill: '#333' + }, + marker: { + stroke: '#555', + radius: 3, + size: 3 + }, + colors: [ "#94ae0a", "#115fa6","#a61120", "#ff8809", "#ffd13e", "#a61187", "#24ad9a", "#7c7474", "#a66111"], + seriesThemes: [{ + fill: "#115fa6" + }, { + fill: "#94ae0a" + }, { + fill: "#a61120" + }, { + fill: "#ff8809" + }, { + fill: "#ffd13e" + }, { + fill: "#a61187" + }, { + fill: "#24ad9a" + }, { + fill: "#7c7474" + }, { + fill: "#115fa6" + }, { + fill: "#94ae0a" + }, { + fill: "#a61120" + }, { + fill: "#ff8809" + }, { + fill: "#ffd13e" + }, { + fill: "#a61187" + }, { + fill: "#24ad9a" + }, { + fill: "#7c7474" + }, { + fill: "#a66111" + }], + markerThemes: [{ + fill: "#115fa6", + type: 'circle' + }, { + fill: "#94ae0a", + type: 'cross' + }, { + fill: "#115fa6", + type: 'plus' + }, { + fill: "#94ae0a", + type: 'circle' + }, { + fill: "#a61120", + type: 'cross' + }] + }); + } +}, function() { + var palette = ['#b1da5a', '#4ce0e7', '#e84b67', '#da5abd', '#4d7fe6', '#fec935'], + names = ['Green', 'Sky', 'Red', 'Purple', 'Blue', 'Yellow'], + i = 0, j = 0, l = palette.length, themes = Ext.chart.theme, + categories = [['#f0a50a', '#c20024', '#2044ba', '#810065', '#7eae29'], + ['#6d9824', '#87146e', '#2a9196', '#d39006', '#1e40ac'], + ['#fbbc29', '#ce2e4e', '#7e0062', '#158b90', '#57880e'], + ['#ef5773', '#fcbd2a', '#4f770d', '#1d3eaa', '#9b001f'], + ['#7eae29', '#fdbe2a', '#910019', '#27b4bc', '#d74dbc'], + ['#44dce1', '#0b2592', '#996e05', '#7fb325', '#b821a1']], + cats = categories.length; + + //Create themes from base colors + for (; i < l; i++) { + themes[names[i]] = (function(color) { + return Ext.extend(themes.Base, { + constructor: function(config) { + themes.Base.prototype.constructor.call(this, Ext.apply({ + baseColor: color + }, config)); + } + }); + }(palette[i])); + } + + //Create theme from color array + for (i = 0; i < cats; i++) { + themes['Category' + (i + 1)] = (function(category) { + return Ext.extend(themes.Base, { + constructor: function(config) { + themes.Base.prototype.constructor.call(this, Ext.apply({ + colors: category + }, config)); + } + }); + }(categories[i])); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/chart/theme/Theme.js b/extjs-django/marvel/static/extjs/src/chart/theme/Theme.js new file mode 100644 index 0000000..17e682c --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/chart/theme/Theme.js @@ -0,0 +1,279 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.chart.theme.Theme + * + * Provides chart theming. + * + * Used as mixins by Ext.chart.Chart. + */ +Ext.chart = Ext.chart || {}; + +Ext.define('Ext.chart.theme.Theme', ( + +// This callback is executed right after when the class is created. This scope refers to the newly created class itself +function() { + /* Theme constructor: takes either a complex object with styles like: + + { + axis: { + fill: '#000', + 'stroke-width': 1 + }, + axisLabelTop: { + fill: '#000', + font: '11px Arial' + }, + axisLabelLeft: { + fill: '#000', + font: '11px Arial' + }, + axisLabelRight: { + fill: '#000', + font: '11px Arial' + }, + axisLabelBottom: { + fill: '#000', + font: '11px Arial' + }, + axisTitleTop: { + fill: '#000', + font: '11px Arial' + }, + axisTitleLeft: { + fill: '#000', + font: '11px Arial' + }, + axisTitleRight: { + fill: '#000', + font: '11px Arial' + }, + axisTitleBottom: { + fill: '#000', + font: '11px Arial' + }, + series: { + 'stroke-width': 1 + }, + seriesLabel: { + font: '12px Arial', + fill: '#333' + }, + marker: { + stroke: '#555', + fill: '#000', + radius: 3, + size: 3 + }, + seriesThemes: [{ + fill: '#C6DBEF' + }, { + fill: '#9ECAE1' + }, { + fill: '#6BAED6' + }, { + fill: '#4292C6' + }, { + fill: '#2171B5' + }, { + fill: '#084594' + }], + markerThemes: [{ + fill: '#084594', + type: 'circle' + }, { + fill: '#2171B5', + type: 'cross' + }, { + fill: '#4292C6', + type: 'plus' + }] + } + + ...or also takes just an array of colors and creates the complex object: + + { + colors: ['#aaa', '#bcd', '#eee'] + } + + ...or takes just a base color and makes a theme from it + + { + baseColor: '#bce' + } + + To create a new theme you may add it to the Themes object: + + Ext.chart.theme.MyNewTheme = Ext.extend(Object, { + constructor: function(config) { + Ext.chart.theme.call(this, config, { + baseColor: '#mybasecolor' + }); + } + }); + + //Proposal: + Ext.chart.theme.MyNewTheme = Ext.chart.createTheme('#basecolor'); + + ...and then to use it provide the name of the theme (as a lower case string) in the chart config. + + { + theme: 'mynewtheme' + } + */ + +(function() { + Ext.chart.theme = function(config, base) { + config = config || {}; + var i = 0, d = Ext.Date.now(), l, colors, color, + seriesThemes, markerThemes, + seriesTheme, markerTheme, + key, gradients = [], + midColor, midL; + + if (config.baseColor) { + midColor = Ext.draw.Color.fromString(config.baseColor); + midL = midColor.getHSL()[2]; + if (midL < 0.15) { + midColor = midColor.getLighter(0.3); + } else if (midL < 0.3) { + midColor = midColor.getLighter(0.15); + } else if (midL > 0.85) { + midColor = midColor.getDarker(0.3); + } else if (midL > 0.7) { + midColor = midColor.getDarker(0.15); + } + config.colors = [ midColor.getDarker(0.3).toString(), + midColor.getDarker(0.15).toString(), + midColor.toString(), + midColor.getLighter(0.15).toString(), + midColor.getLighter(0.3).toString()]; + + delete config.baseColor; + } + if (config.colors) { + colors = config.colors.slice(); + markerThemes = base.markerThemes; + seriesThemes = base.seriesThemes; + l = colors.length; + base.colors = colors; + for (; i < l; i++) { + color = colors[i]; + markerTheme = markerThemes[i] || {}; + seriesTheme = seriesThemes[i] || {}; + markerTheme.fill = seriesTheme.fill = markerTheme.stroke = seriesTheme.stroke = color; + markerThemes[i] = markerTheme; + seriesThemes[i] = seriesTheme; + } + base.markerThemes = markerThemes.slice(0, l); + base.seriesThemes = seriesThemes.slice(0, l); + //the user is configuring something in particular (either markers, series or pie slices) + } + for (key in base) { + if (key in config) { + if (Ext.isObject(config[key]) && Ext.isObject(base[key])) { + Ext.apply(base[key], config[key]); + } else { + base[key] = config[key]; + } + } + } + if (config.useGradients) { + colors = base.colors || (function () { + var ans = []; + for (i = 0, seriesThemes = base.seriesThemes, l = seriesThemes.length; i < l; i++) { + ans.push(seriesThemes[i].fill || seriesThemes[i].stroke); + } + return ans; + }()); + for (i = 0, l = colors.length; i < l; i++) { + midColor = Ext.draw.Color.fromString(colors[i]); + if (midColor) { + color = midColor.getDarker(0.1).toString(); + midColor = midColor.toString(); + key = 'theme-' + midColor.substr(1) + '-' + color.substr(1) + '-' + d; + gradients.push({ + id: key, + angle: 45, + stops: { + 0: { + color: midColor.toString() + }, + 100: { + color: color.toString() + } + } + }); + colors[i] = 'url(#' + key + ')'; + } + } + base.gradients = gradients; + base.colors = colors; + } + /* + base.axis = Ext.apply(base.axis || {}, config.axis || {}); + base.axisLabel = Ext.apply(base.axisLabel || {}, config.axisLabel || {}); + base.axisTitle = Ext.apply(base.axisTitle || {}, config.axisTitle || {}); + */ + Ext.apply(this, base); + }; +}()); + +return { + + /* Begin Definitions */ + + requires: ['Ext.draw.Color'], + + /* End Definitions */ + + theme: 'Base', + themeAttrs: false, + + initTheme: function(theme) { + var me = this, + themes = Ext.chart.theme, + key, gradients; + if (theme) { + theme = theme.split(':'); + for (key in themes) { + if (key == theme[0]) { + gradients = theme[1] == 'gradients'; + me.themeAttrs = new themes[key]({ + useGradients: gradients + }); + if (gradients) { + me.gradients = me.themeAttrs.gradients; + } + if (me.themeAttrs.background) { + me.background = me.themeAttrs.background; + } + return; + } + } + // + Ext.Error.raise('No theme found named "' + theme + '"'); + // + } + } +}; + +})()); diff --git a/extjs-django/marvel/static/extjs/src/class/Base.js b/extjs-django/marvel/static/extjs/src/class/Base.js new file mode 100644 index 0000000..1159b51 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/class/Base.js @@ -0,0 +1,1302 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +// @tag foundation,core +// @require ../lang/Date.js +// @define Ext.Base + +/** + * @author Jacky Nguyen + * @docauthor Jacky Nguyen + * @class Ext.Base + * + * The root of all classes created with {@link Ext#define}. + * + * Ext.Base is the building block of all Ext classes. All classes in Ext inherit from Ext.Base. + * All prototype and static members of this class are inherited by all other classes. + */ +(function(flexSetter) { + +var noArgs = [], + Base = function(){}, + hookFunctionFactory = function(hookFunction, underriddenFunction, methodName, owningClass) { + var result = function() { + var result = this.callParent(arguments); + hookFunction.apply(this, arguments); + return result; + }; + result.$name = methodName; + result.$owner = owningClass; + if (underriddenFunction) { + result.$previous = underriddenFunction.$previous; + underriddenFunction.$previous = result; + } + return result; + }; + + // These static properties will be copied to every newly created class with {@link Ext#define} + Ext.apply(Base, { + $className: 'Ext.Base', + + $isClass: true, + + /** + * Create a new instance of this Class. + * + * Ext.define('My.cool.Class', { + * ... + * }); + * + * My.cool.Class.create({ + * someConfig: true + * }); + * + * All parameters are passed to the constructor of the class. + * + * @return {Object} the created instance. + * @static + * @inheritable + */ + create: function() { + return Ext.create.apply(Ext, [this].concat(Array.prototype.slice.call(arguments, 0))); + }, + + /** + * @private + * @static + * @inheritable + * @param config + */ + extend: function(parent) { + var parentPrototype = parent.prototype, + basePrototype, prototype, i, ln, name, statics; + + prototype = this.prototype = Ext.Object.chain(parentPrototype); + prototype.self = this; + + this.superclass = prototype.superclass = parentPrototype; + + if (!parent.$isClass) { + basePrototype = Ext.Base.prototype; + + for (i in basePrototype) { + if (i in prototype) { + prototype[i] = basePrototype[i]; + } + } + } + + // + // Statics inheritance + statics = parentPrototype.$inheritableStatics; + + if (statics) { + for (i = 0,ln = statics.length; i < ln; i++) { + name = statics[i]; + + if (!this.hasOwnProperty(name)) { + this[name] = parent[name]; + } + } + } + // + + if (parent.$onExtended) { + this.$onExtended = parent.$onExtended.slice(); + } + + // + prototype.config = new prototype.configClass(); + prototype.initConfigList = prototype.initConfigList.slice(); + prototype.initConfigMap = Ext.clone(prototype.initConfigMap); + prototype.configMap = Ext.Object.chain(prototype.configMap); + // + }, + + /** + * @private + * @static + * @inheritable + */ + $onExtended: [], + + /** + * @private + * @static + * @inheritable + */ + triggerExtended: function() { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(this, 'Ext.Base#triggerExtended', arguments); + // + + var callbacks = this.$onExtended, + ln = callbacks.length, + i, callback; + + if (ln > 0) { + for (i = 0; i < ln; i++) { + callback = callbacks[i]; + callback.fn.apply(callback.scope || this, arguments); + } + } + }, + + /** + * @private + * @static + * @inheritable + */ + onExtended: function(fn, scope) { + this.$onExtended.push({ + fn: fn, + scope: scope + }); + + return this; + }, + + /** + * @private + * @static + * @inheritable + * @param config + */ + addConfig: function(config, fullMerge) { + var prototype = this.prototype, + configNameCache = Ext.Class.configNameCache, + hasConfig = prototype.configMap, + initConfigList = prototype.initConfigList, + initConfigMap = prototype.initConfigMap, + defaultConfig = prototype.config, + initializedName, name, value; + + for (name in config) { + if (config.hasOwnProperty(name)) { + if (!hasConfig[name]) { + hasConfig[name] = true; + } + + value = config[name]; + + initializedName = configNameCache[name].initialized; + + if (!initConfigMap[name] && value !== null && !prototype[initializedName]) { + initConfigMap[name] = true; + initConfigList.push(name); + } + } + } + + if (fullMerge) { + Ext.merge(defaultConfig, config); + } + else { + Ext.mergeIf(defaultConfig, config); + } + + prototype.configClass = Ext.Object.classify(defaultConfig); + }, + + /** + * Add / override static properties of this class. + * + * Ext.define('My.cool.Class', { + * ... + * }); + * + * My.cool.Class.addStatics({ + * someProperty: 'someValue', // My.cool.Class.someProperty = 'someValue' + * method1: function() { ... }, // My.cool.Class.method1 = function() { ... }; + * method2: function() { ... } // My.cool.Class.method2 = function() { ... }; + * }); + * + * @param {Object} members + * @return {Ext.Base} this + * @static + * @inheritable + */ + addStatics: function(members) { + var member, name; + + for (name in members) { + if (members.hasOwnProperty(name)) { + member = members[name]; + if (typeof member == 'function' && !member.$isClass && member !== Ext.emptyFn && member !== Ext.identityFn) { + member.$owner = this; + member.$name = name; + // + member.displayName = Ext.getClassName(this) + '.' + name; + // + } + this[name] = member; + } + } + + return this; + }, + + /** + * @private + * @static + * @inheritable + * @param {Object} members + */ + addInheritableStatics: function(members) { + var inheritableStatics, + hasInheritableStatics, + prototype = this.prototype, + name, member; + + inheritableStatics = prototype.$inheritableStatics; + hasInheritableStatics = prototype.$hasInheritableStatics; + + if (!inheritableStatics) { + inheritableStatics = prototype.$inheritableStatics = []; + hasInheritableStatics = prototype.$hasInheritableStatics = {}; + } + + for (name in members) { + if (members.hasOwnProperty(name)) { + member = members[name]; + // + if (typeof member == 'function') { + member.displayName = Ext.getClassName(this) + '.' + name; + } + // + this[name] = member; + + if (!hasInheritableStatics[name]) { + hasInheritableStatics[name] = true; + inheritableStatics.push(name); + } + } + } + + return this; + }, + + /** + * Add methods / properties to the prototype of this class. + * + * Ext.define('My.awesome.Cat', { + * constructor: function() { + * ... + * } + * }); + * + * My.awesome.Cat.addMembers({ + * meow: function() { + * alert('Meowww...'); + * } + * }); + * + * var kitty = new My.awesome.Cat; + * kitty.meow(); + * + * @param {Object} members + * @static + * @inheritable + */ + addMembers: function(members) { + var prototype = this.prototype, + enumerables = Ext.enumerables, + names = [], + i, ln, name, member; + + for (name in members) { + names.push(name); + } + + if (enumerables) { + names.push.apply(names, enumerables); + } + + for (i = 0,ln = names.length; i < ln; i++) { + name = names[i]; + + if (members.hasOwnProperty(name)) { + member = members[name]; + + if (typeof member == 'function' && !member.$isClass && member !== Ext.emptyFn && member !== Ext.identityFn) { + member.$owner = this; + member.$name = name; + // + member.displayName = (this.$className || '') + '#' + name; + // + } + + prototype[name] = member; + } + } + + return this; + }, + + /** + * @private + * @static + * @inheritable + * @param name + * @param member + */ + addMember: function(name, member) { + if (typeof member == 'function' && !member.$isClass && member !== Ext.emptyFn && member !== Ext.identityFn) { + member.$owner = this; + member.$name = name; + // + member.displayName = (this.$className || '') + '#' + name; + // + } + + this.prototype[name] = member; + return this; + }, + + /** + * Adds members to class. + * @static + * @inheritable + * @deprecated 4.1 Use {@link #addMembers} instead. + */ + implement: function() { + this.addMembers.apply(this, arguments); + }, + + /** + * Borrow another class' members to the prototype of this class. + * + * Ext.define('Bank', { + * money: '$$$', + * printMoney: function() { + * alert('$$$$$$$'); + * } + * }); + * + * Ext.define('Thief', { + * ... + * }); + * + * Thief.borrow(Bank, ['money', 'printMoney']); + * + * var steve = new Thief(); + * + * alert(steve.money); // alerts '$$$' + * steve.printMoney(); // alerts '$$$$$$$' + * + * @param {Ext.Base} fromClass The class to borrow members from + * @param {Array/String} members The names of the members to borrow + * @return {Ext.Base} this + * @static + * @inheritable + * @private + */ + borrow: function(fromClass, members) { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(this, 'Ext.Base#borrow', arguments); + // + + var prototype = this.prototype, + fromPrototype = fromClass.prototype, + // + className = Ext.getClassName(this), + // + i, ln, name, fn, toBorrow; + + members = Ext.Array.from(members); + + for (i = 0,ln = members.length; i < ln; i++) { + name = members[i]; + + toBorrow = fromPrototype[name]; + + if (typeof toBorrow == 'function') { + fn = Ext.Function.clone(toBorrow); + + // + if (className) { + fn.displayName = className + '#' + name; + } + // + + fn.$owner = this; + fn.$name = name; + + prototype[name] = fn; + } + else { + prototype[name] = toBorrow; + } + } + + return this; + }, + + /** + * Override members of this class. Overridden methods can be invoked via + * {@link Ext.Base#callParent}. + * + * Ext.define('My.Cat', { + * constructor: function() { + * alert("I'm a cat!"); + * } + * }); + * + * My.Cat.override({ + * constructor: function() { + * alert("I'm going to be a cat!"); + * + * this.callParent(arguments); + * + * alert("Meeeeoooowwww"); + * } + * }); + * + * var kitty = new My.Cat(); // alerts "I'm going to be a cat!" + * // alerts "I'm a cat!" + * // alerts "Meeeeoooowwww" + * + * As of 4.1, direct use of this method is deprecated. Use {@link Ext#define Ext.define} + * instead: + * + * Ext.define('My.CatOverride', { + * override: 'My.Cat', + * constructor: function() { + * alert("I'm going to be a cat!"); + * + * this.callParent(arguments); + * + * alert("Meeeeoooowwww"); + * } + * }); + * + * The above accomplishes the same result but can be managed by the {@link Ext.Loader} + * which can properly order the override and its target class and the build process + * can determine whether the override is needed based on the required state of the + * target class (My.Cat). + * + * @param {Object} members The properties to add to this class. This should be + * specified as an object literal containing one or more properties. + * @return {Ext.Base} this class + * @static + * @inheritable + * @markdown + * @deprecated 4.1.0 Use {@link Ext#define Ext.define} instead + */ + override: function(members) { + var me = this, + enumerables = Ext.enumerables, + target = me.prototype, + cloneFunction = Ext.Function.clone, + name, index, member, statics, names, previous; + + if (arguments.length === 2) { + name = members; + members = {}; + members[name] = arguments[1]; + enumerables = null; + } + + do { + names = []; // clean slate for prototype (1st pass) and static (2nd pass) + statics = null; // not needed 1st pass, but needs to be cleared for 2nd pass + + for (name in members) { // hasOwnProperty is checked in the next loop... + if (name == 'statics') { + statics = members[name]; + } else if (name == 'inheritableStatics'){ + me.addInheritableStatics(members[name]); + } else if (name == 'config') { + me.addConfig(members[name], true); + } else { + names.push(name); + } + } + + if (enumerables) { + names.push.apply(names, enumerables); + } + + for (index = names.length; index--; ) { + name = names[index]; + + if (members.hasOwnProperty(name)) { + member = members[name]; + + if (typeof member == 'function' && !member.$className && member !== Ext.emptyFn && member !== Ext.identityFn) { + if (typeof member.$owner != 'undefined') { + member = cloneFunction(member); + } + + // + if (me.$className) { + member.displayName = me.$className + '#' + name; + } + // + + member.$owner = me; + member.$name = name; + + previous = target[name]; + if (previous) { + member.$previous = previous; + } + } + + target[name] = member; + } + } + + target = me; // 2nd pass is for statics + members = statics; // statics will be null on 2nd pass + } while (members); + + return this; + }, + + // Documented downwards + callParent: function(args) { + var method; + + // This code is intentionally inlined for the least number of debugger stepping + return (method = this.callParent.caller) && (method.$previous || + ((method = method.$owner ? method : method.caller) && + method.$owner.superclass.self[method.$name])).apply(this, args || noArgs); + }, + + // Documented downwards + callSuper: function(args) { + var method; + + // This code is intentionally inlined for the least number of debugger stepping + return (method = this.callSuper.caller) && + ((method = method.$owner ? method : method.caller) && + method.$owner.superclass.self[method.$name]).apply(this, args || noArgs); + }, + + // + /** + * Used internally by the mixins pre-processor + * @private + * @static + * @inheritable + */ + mixin: function(name, mixinClass) { + var me = this, + mixin = mixinClass.prototype, + prototype = me.prototype, + key, statics, i, ln, staticName, + mixinValue, hookKey, hookFunction; + + if (typeof mixin.onClassMixedIn != 'undefined') { + mixin.onClassMixedIn.call(mixinClass, me); + } + + if (!prototype.hasOwnProperty('mixins')) { + if ('mixins' in prototype) { + prototype.mixins = Ext.Object.chain(prototype.mixins); + } + else { + prototype.mixins = {}; + } + } + + for (key in mixin) { + mixinValue = mixin[key]; + if (key === 'mixins') { + Ext.merge(prototype.mixins, mixinValue); + } + else if (key === 'xhooks') { + for (hookKey in mixinValue) { + hookFunction = mixinValue[hookKey]; + + // Mixed in xhook methods cannot call a parent. + hookFunction.$previous = Ext.emptyFn; + + if (prototype.hasOwnProperty(hookKey)) { + + // Pass the hook function, and the existing function which it is to underride. + // The existing function has its $previous pointer replaced by a closure + // which calls the hookFunction and then the existing function's original $previous + hookFunctionFactory(hookFunction, prototype[hookKey], hookKey, me); + } else { + // There's no original function, so generate an implementation which calls + // the hook function. It will not get any $previous pointer. + prototype[hookKey] = hookFunctionFactory(hookFunction, null, hookKey, me); + } + } + } + else if (!(key === 'mixinId' || key === 'config') && (prototype[key] === undefined)) { + prototype[key] = mixinValue; + } + } + + // + // Mixin statics inheritance + statics = mixin.$inheritableStatics; + + if (statics) { + for (i = 0, ln = statics.length; i < ln; i++) { + staticName = statics[i]; + + if (!me.hasOwnProperty(staticName)) { + me[staticName] = mixinClass[staticName]; + } + } + } + // + + // + if ('config' in mixin) { + me.addConfig(mixin.config, false); + } + // + + prototype.mixins[name] = mixin; + return me; + }, + // + + /** + * Get the current class' name in string format. + * + * Ext.define('My.cool.Class', { + * constructor: function() { + * alert(this.self.getName()); // alerts 'My.cool.Class' + * } + * }); + * + * My.cool.Class.getName(); // 'My.cool.Class' + * + * @return {String} className + * @static + * @inheritable + */ + getName: function() { + return Ext.getClassName(this); + }, + + /** + * Create aliases for existing prototype methods. Example: + * + * Ext.define('My.cool.Class', { + * method1: function() { ... }, + * method2: function() { ... } + * }); + * + * var test = new My.cool.Class(); + * + * My.cool.Class.createAlias({ + * method3: 'method1', + * method4: 'method2' + * }); + * + * test.method3(); // test.method1() + * + * My.cool.Class.createAlias('method5', 'method3'); + * + * test.method5(); // test.method3() -> test.method1() + * + * @param {String/Object} alias The new method name, or an object to set multiple aliases. See + * {@link Ext.Function#flexSetter flexSetter} + * @param {String/Object} origin The original method name + * @static + * @inheritable + * @method + */ + createAlias: flexSetter(function(alias, origin) { + this.override(alias, function() { + return this[origin].apply(this, arguments); + }); + }), + + /** + * @private + * @static + * @inheritable + */ + addXtype: function(xtype) { + var prototype = this.prototype, + xtypesMap = prototype.xtypesMap, + xtypes = prototype.xtypes, + xtypesChain = prototype.xtypesChain; + + if (!prototype.hasOwnProperty('xtypesMap')) { + xtypesMap = prototype.xtypesMap = Ext.merge({}, prototype.xtypesMap || {}); + xtypes = prototype.xtypes = prototype.xtypes ? [].concat(prototype.xtypes) : []; + xtypesChain = prototype.xtypesChain = prototype.xtypesChain ? [].concat(prototype.xtypesChain) : []; + prototype.xtype = xtype; + } + + if (!xtypesMap[xtype]) { + xtypesMap[xtype] = true; + xtypes.push(xtype); + xtypesChain.push(xtype); + Ext.ClassManager.setAlias(this, 'widget.' + xtype); + } + + return this; + } + }); + + Base.implement({ + /** @private */ + isInstance: true, + + /** @private */ + $className: 'Ext.Base', + + /** @private */ + configClass: Ext.emptyFn, + + /** @private */ + initConfigList: [], + + /** @private */ + configMap: {}, + + /** @private */ + initConfigMap: {}, + + /** + * Get the reference to the class from which this object was instantiated. Note that unlike {@link Ext.Base#self}, + * `this.statics()` is scope-independent and it always returns the class from which it was called, regardless of what + * `this` points to during run-time + * + * Ext.define('My.Cat', { + * statics: { + * totalCreated: 0, + * speciesName: 'Cat' // My.Cat.speciesName = 'Cat' + * }, + * + * constructor: function() { + * var statics = this.statics(); + * + * alert(statics.speciesName); // always equals to 'Cat' no matter what 'this' refers to + * // equivalent to: My.Cat.speciesName + * + * alert(this.self.speciesName); // dependent on 'this' + * + * statics.totalCreated++; + * }, + * + * clone: function() { + * var cloned = new this.self; // dependent on 'this' + * + * cloned.groupName = this.statics().speciesName; // equivalent to: My.Cat.speciesName + * + * return cloned; + * } + * }); + * + * + * Ext.define('My.SnowLeopard', { + * extend: 'My.Cat', + * + * statics: { + * speciesName: 'Snow Leopard' // My.SnowLeopard.speciesName = 'Snow Leopard' + * }, + * + * constructor: function() { + * this.callParent(); + * } + * }); + * + * var cat = new My.Cat(); // alerts 'Cat', then alerts 'Cat' + * + * var snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard' + * + * var clone = snowLeopard.clone(); + * alert(Ext.getClassName(clone)); // alerts 'My.SnowLeopard' + * alert(clone.groupName); // alerts 'Cat' + * + * alert(My.Cat.totalCreated); // alerts 3 + * + * @protected + * @return {Ext.Class} + */ + statics: function() { + var method = this.statics.caller, + self = this.self; + + if (!method) { + return self; + } + + return method.$owner; + }, + + /** + * Call the "parent" method of the current method. That is the method previously + * overridden by derivation or by an override (see {@link Ext#define}). + * + * Ext.define('My.Base', { + * constructor: function (x) { + * this.x = x; + * }, + * + * statics: { + * method: function (x) { + * return x; + * } + * } + * }); + * + * Ext.define('My.Derived', { + * extend: 'My.Base', + * + * constructor: function () { + * this.callParent([21]); + * } + * }); + * + * var obj = new My.Derived(); + * + * alert(obj.x); // alerts 21 + * + * This can be used with an override as follows: + * + * Ext.define('My.DerivedOverride', { + * override: 'My.Derived', + * + * constructor: function (x) { + * this.callParent([x*2]); // calls original My.Derived constructor + * } + * }); + * + * var obj = new My.Derived(); + * + * alert(obj.x); // now alerts 42 + * + * This also works with static methods. + * + * Ext.define('My.Derived2', { + * extend: 'My.Base', + * + * statics: { + * method: function (x) { + * return this.callParent([x*2]); // calls My.Base.method + * } + * } + * }); + * + * alert(My.Base.method(10); // alerts 10 + * alert(My.Derived2.method(10); // alerts 20 + * + * Lastly, it also works with overridden static methods. + * + * Ext.define('My.Derived2Override', { + * override: 'My.Derived2', + * + * statics: { + * method: function (x) { + * return this.callParent([x*2]); // calls My.Derived2.method + * } + * } + * }); + * + * alert(My.Derived2.method(10); // now alerts 40 + * + * To override a method and replace it and also call the superclass method, use + * {@link #callSuper}. This is often done to patch a method to fix a bug. + * + * @protected + * @param {Array/Arguments} args The arguments, either an array or the `arguments` object + * from the current method, for example: `this.callParent(arguments)` + * @return {Object} Returns the result of calling the parent method + */ + callParent: function(args) { + // NOTE: this code is deliberately as few expressions (and no function calls) + // as possible so that a debugger can skip over this noise with the minimum number + // of steps. Basically, just hit Step Into until you are where you really wanted + // to be. + var method, + superMethod = (method = this.callParent.caller) && (method.$previous || + ((method = method.$owner ? method : method.caller) && + method.$owner.superclass[method.$name])); + + // + if (!superMethod) { + method = this.callParent.caller; + var parentClass, methodName; + + if (!method.$owner) { + if (!method.caller) { + throw new Error("Attempting to call a protected method from the public scope, which is not allowed"); + } + + method = method.caller; + } + + parentClass = method.$owner.superclass; + methodName = method.$name; + + if (!(methodName in parentClass)) { + throw new Error("this.callParent() was called but there's no such method (" + methodName + + ") found in the parent class (" + (Ext.getClassName(parentClass) || 'Object') + ")"); + } + } + // + + return superMethod.apply(this, args || noArgs); + }, + + /** + * This method is used by an override to call the superclass method but bypass any + * overridden method. This is often done to "patch" a method that contains a bug + * but for whatever reason cannot be fixed directly. + * + * Consider: + * + * Ext.define('Ext.some.Class', { + * method: function () { + * console.log('Good'); + * } + * }); + * + * Ext.define('Ext.some.DerivedClass', { + * method: function () { + * console.log('Bad'); + * + * // ... logic but with a bug ... + * + * this.callParent(); + * } + * }); + * + * To patch the bug in `DerivedClass.method`, the typical solution is to create an + * override: + * + * Ext.define('App.paches.DerivedClass', { + * override: 'Ext.some.DerivedClass', + * + * method: function () { + * console.log('Fixed'); + * + * // ... logic but with bug fixed ... + * + * this.callSuper(); + * } + * }); + * + * The patch method cannot use `callParent` to call the superclass `method` since + * that would call the overridden method containing the bug. In other words, the + * above patch would only produce "Fixed" then "Good" in the console log, whereas, + * using `callParent` would produce "Fixed" then "Bad" then "Good". + * + * @protected + * @param {Array/Arguments} args The arguments, either an array or the `arguments` object + * from the current method, for example: `this.callSuper(arguments)` + * @return {Object} Returns the result of calling the superclass method + */ + callSuper: function(args) { + // NOTE: this code is deliberately as few expressions (and no function calls) + // as possible so that a debugger can skip over this noise with the minimum number + // of steps. Basically, just hit Step Into until you are where you really wanted + // to be. + var method, + superMethod = (method = this.callSuper.caller) && + ((method = method.$owner ? method : method.caller) && + method.$owner.superclass[method.$name]); + + // + if (!superMethod) { + method = this.callSuper.caller; + var parentClass, methodName; + + if (!method.$owner) { + if (!method.caller) { + throw new Error("Attempting to call a protected method from the public scope, which is not allowed"); + } + + method = method.caller; + } + + parentClass = method.$owner.superclass; + methodName = method.$name; + + if (!(methodName in parentClass)) { + throw new Error("this.callSuper() was called but there's no such method (" + methodName + + ") found in the parent class (" + (Ext.getClassName(parentClass) || 'Object') + ")"); + } + } + // + + return superMethod.apply(this, args || noArgs); + }, + + /** + * @property {Ext.Class} self + * + * Get the reference to the current class from which this object was instantiated. Unlike {@link Ext.Base#statics}, + * `this.self` is scope-dependent and it's meant to be used for dynamic inheritance. See {@link Ext.Base#statics} + * for a detailed comparison + * + * Ext.define('My.Cat', { + * statics: { + * speciesName: 'Cat' // My.Cat.speciesName = 'Cat' + * }, + * + * constructor: function() { + * alert(this.self.speciesName); // dependent on 'this' + * }, + * + * clone: function() { + * return new this.self(); + * } + * }); + * + * + * Ext.define('My.SnowLeopard', { + * extend: 'My.Cat', + * statics: { + * speciesName: 'Snow Leopard' // My.SnowLeopard.speciesName = 'Snow Leopard' + * } + * }); + * + * var cat = new My.Cat(); // alerts 'Cat' + * var snowLeopard = new My.SnowLeopard(); // alerts 'Snow Leopard' + * + * var clone = snowLeopard.clone(); + * alert(Ext.getClassName(clone)); // alerts 'My.SnowLeopard' + * + * @protected + */ + self: Base, + + // Default constructor, simply returns `this` + constructor: function() { + return this; + }, + + // + /** + * Initialize configuration for this class. a typical example: + * + * Ext.define('My.awesome.Class', { + * // The default config + * config: { + * name: 'Awesome', + * isAwesome: true + * }, + * + * constructor: function(config) { + * this.initConfig(config); + * } + * }); + * + * var awesome = new My.awesome.Class({ + * name: 'Super Awesome' + * }); + * + * alert(awesome.getName()); // 'Super Awesome' + * + * @protected + * @param {Object} config + * @return {Ext.Base} this + */ + initConfig: function(config) { + var instanceConfig = config, + configNameCache = Ext.Class.configNameCache, + defaultConfig = new this.configClass(), + defaultConfigList = this.initConfigList, + hasConfig = this.configMap, + nameMap, i, ln, name, initializedName; + + this.initConfig = Ext.emptyFn; + + this.initialConfig = instanceConfig || {}; + + this.config = config = (instanceConfig) ? Ext.merge(defaultConfig, config) : defaultConfig; + + if (instanceConfig) { + defaultConfigList = defaultConfigList.slice(); + + for (name in instanceConfig) { + if (hasConfig[name]) { + if (instanceConfig[name] !== null) { + defaultConfigList.push(name); + this[configNameCache[name].initialized] = false; + } + } + } + } + + for (i = 0,ln = defaultConfigList.length; i < ln; i++) { + name = defaultConfigList[i]; + nameMap = configNameCache[name]; + initializedName = nameMap.initialized; + + if (!this[initializedName]) { + this[initializedName] = true; + this[nameMap.set].call(this, config[name]); + } + } + + return this; + }, + + /** + * @private + * @param config + */ + hasConfig: function(name) { + return Boolean(this.configMap[name]); + }, + + /** + * @private + */ + setConfig: function(config, applyIfNotSet) { + if (!config) { + return this; + } + + var configNameCache = Ext.Class.configNameCache, + currentConfig = this.config, + hasConfig = this.configMap, + initialConfig = this.initialConfig, + name, value; + + applyIfNotSet = Boolean(applyIfNotSet); + + for (name in config) { + if (applyIfNotSet && initialConfig.hasOwnProperty(name)) { + continue; + } + + value = config[name]; + currentConfig[name] = value; + + if (hasConfig[name]) { + this[configNameCache[name].set](value); + } + } + + return this; + }, + + /** + * @private + * @param name + */ + getConfig: function(name) { + var configNameCache = Ext.Class.configNameCache; + + return this[configNameCache[name].get](); + }, + + /** + * Returns the initial configuration passed to constructor when instantiating + * this class. + * @param {String} [name] Name of the config option to return. + * @return {Object/Mixed} The full config object or a single config value + * when `name` parameter specified. + */ + getInitialConfig: function(name) { + var config = this.config; + + if (!name) { + return config; + } + else { + return config[name]; + } + }, + + /** + * @private + * @param names + * @param callback + * @param scope + */ + onConfigUpdate: function(names, callback, scope) { + var self = this.self, + // + className = self.$className, + // + i, ln, name, + updaterName, updater, newUpdater; + + names = Ext.Array.from(names); + + scope = scope || this; + + for (i = 0,ln = names.length; i < ln; i++) { + name = names[i]; + updaterName = 'update' + Ext.String.capitalize(name); + updater = this[updaterName] || Ext.emptyFn; + newUpdater = function() { + updater.apply(this, arguments); + scope[callback].apply(scope, arguments); + }; + newUpdater.$name = updaterName; + newUpdater.$owner = self; + // + newUpdater.displayName = className + '#' + updaterName; + // + + this[updaterName] = newUpdater; + } + }, + // + + /** + * @private + */ + destroy: function() { + this.destroy = Ext.emptyFn; + } + }); + + /** + * Call the original method that was previously overridden with {@link Ext.Base#override} + * + * Ext.define('My.Cat', { + * constructor: function() { + * alert("I'm a cat!"); + * } + * }); + * + * My.Cat.override({ + * constructor: function() { + * alert("I'm going to be a cat!"); + * + * this.callOverridden(); + * + * alert("Meeeeoooowwww"); + * } + * }); + * + * var kitty = new My.Cat(); // alerts "I'm going to be a cat!" + * // alerts "I'm a cat!" + * // alerts "Meeeeoooowwww" + * + * @param {Array/Arguments} args The arguments, either an array or the `arguments` object + * from the current method, for example: `this.callOverridden(arguments)` + * @return {Object} Returns the result of calling the overridden method + * @protected + * @deprecated as of 4.1. Use {@link #callParent} instead. + */ + Base.prototype.callOverridden = Base.prototype.callParent; + + Ext.Base = Base; + +}(Ext.Function.flexSetter)); diff --git a/extjs-django/marvel/static/extjs/src/class/Class.js b/extjs-django/marvel/static/extjs/src/class/Class.js new file mode 100644 index 0000000..fec61db --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/class/Class.js @@ -0,0 +1,726 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +// @tag foundation,core +// @require Base.js +// @define Ext.Class + +/** + * @author Jacky Nguyen + * @docauthor Jacky Nguyen + * @class Ext.Class + * + * Handles class creation throughout the framework. This is a low level factory that is used by Ext.ClassManager and generally + * should not be used directly. If you choose to use Ext.Class you will lose out on the namespace, aliasing and depency loading + * features made available by Ext.ClassManager. The only time you would use Ext.Class directly is to create an anonymous class. + * + * If you wish to create a class you should use {@link Ext#define Ext.define} which aliases + * {@link Ext.ClassManager#create Ext.ClassManager.create} to enable namespacing and dynamic dependency resolution. + * + * Ext.Class is the factory and **not** the superclass of everything. For the base class that **all** Ext classes inherit + * from, see {@link Ext.Base}. + */ +(function() { + var ExtClass, + Base = Ext.Base, + baseStaticMembers = [], + baseStaticMember, baseStaticMemberLength; + + for (baseStaticMember in Base) { + if (Base.hasOwnProperty(baseStaticMember)) { + baseStaticMembers.push(baseStaticMember); + } + } + + baseStaticMemberLength = baseStaticMembers.length; + + // Creates a constructor that has nothing extra in its scope chain. + function makeCtor (className) { + function constructor () { + // Opera has some problems returning from a constructor when Dragonfly isn't running. The || null seems to + // be sufficient to stop it misbehaving. Known to be required against 10.53, 11.51 and 11.61. + return this.constructor.apply(this, arguments) || null; + } + // + if (className) { + constructor.displayName = className; + } + // + return constructor; + } + + /** + * @method constructor + * Create a new anonymous class. + * + * @param {Object} data An object represent the properties of this class + * @param {Function} onCreated Optional, the callback function to be executed when this class is fully created. + * Note that the creation process can be asynchronous depending on the pre-processors used. + * + * @return {Ext.Base} The newly created class + */ + Ext.Class = ExtClass = function(Class, data, onCreated) { + if (typeof Class != 'function') { + onCreated = data; + data = Class; + Class = null; + } + + if (!data) { + data = {}; + } + + Class = ExtClass.create(Class, data); + + ExtClass.process(Class, data, onCreated); + + return Class; + }; + + Ext.apply(ExtClass, { + /** + * @private + */ + onBeforeCreated: function(Class, data, hooks) { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(Class, '>> Ext.Class#onBeforeCreated', arguments); + // + + Class.addMembers(data); + + hooks.onCreated.call(Class, Class); + + // + Ext.classSystemMonitor && Ext.classSystemMonitor(Class, '<< Ext.Class#onBeforeCreated', arguments); + // + }, + + /** + * @private + */ + create: function(Class, data) { + var name, i; + + if (!Class) { + Class = makeCtor( + // + data.$className + // + ); + } + + for (i = 0; i < baseStaticMemberLength; i++) { + name = baseStaticMembers[i]; + Class[name] = Base[name]; + } + + return Class; + }, + + /** + * @private + */ + process: function(Class, data, onCreated) { + var preprocessorStack = data.preprocessors || ExtClass.defaultPreprocessors, + registeredPreprocessors = this.preprocessors, + hooks = { + onBeforeCreated: this.onBeforeCreated + }, + preprocessors = [], + preprocessor, preprocessorsProperties, + i, ln, j, subLn, preprocessorProperty; + + delete data.preprocessors; + + for (i = 0,ln = preprocessorStack.length; i < ln; i++) { + preprocessor = preprocessorStack[i]; + + if (typeof preprocessor == 'string') { + preprocessor = registeredPreprocessors[preprocessor]; + preprocessorsProperties = preprocessor.properties; + + if (preprocessorsProperties === true) { + preprocessors.push(preprocessor.fn); + } + else if (preprocessorsProperties) { + for (j = 0,subLn = preprocessorsProperties.length; j < subLn; j++) { + preprocessorProperty = preprocessorsProperties[j]; + + if (data.hasOwnProperty(preprocessorProperty)) { + preprocessors.push(preprocessor.fn); + break; + } + } + } + } + else { + preprocessors.push(preprocessor); + } + } + + hooks.onCreated = onCreated ? onCreated : Ext.emptyFn; + hooks.preprocessors = preprocessors; + + this.doProcess(Class, data, hooks); + }, + + doProcess: function(Class, data, hooks) { + var me = this, + preprocessors = hooks.preprocessors, + preprocessor = preprocessors.shift(), + doProcess = me.doProcess; + + for ( ; preprocessor ; preprocessor = preprocessors.shift()) { + // Returning false signifies an asynchronous preprocessor - it will call doProcess when we can continue + if (preprocessor.call(me, Class, data, hooks, doProcess) === false) { + return; + } + } + hooks.onBeforeCreated.apply(me, arguments); + }, + + /** @private */ + preprocessors: {}, + + /** + * Register a new pre-processor to be used during the class creation process + * + * @param {String} name The pre-processor's name + * @param {Function} fn The callback function to be executed. Typical format: + * + * function(cls, data, fn) { + * // Your code here + * + * // Execute this when the processing is finished. + * // Asynchronous processing is perfectly ok + * if (fn) { + * fn.call(this, cls, data); + * } + * }); + * + * @param {Function} fn.cls The created class + * @param {Object} fn.data The set of properties passed in {@link Ext.Class} constructor + * @param {Function} fn.fn The callback function that **must** to be executed when this + * pre-processor finishes, regardless of whether the processing is synchronous or aynchronous. + * @return {Ext.Class} this + * @private + * @static + */ + registerPreprocessor: function(name, fn, properties, position, relativeTo) { + if (!position) { + position = 'last'; + } + + if (!properties) { + properties = [name]; + } + + this.preprocessors[name] = { + name: name, + properties: properties || false, + fn: fn + }; + + this.setDefaultPreprocessorPosition(name, position, relativeTo); + + return this; + }, + + /** + * Retrieve a pre-processor callback function by its name, which has been registered before + * + * @param {String} name + * @return {Function} preprocessor + * @private + * @static + */ + getPreprocessor: function(name) { + return this.preprocessors[name]; + }, + + /** + * @private + */ + getPreprocessors: function() { + return this.preprocessors; + }, + + /** + * @private + */ + defaultPreprocessors: [], + + /** + * Retrieve the array stack of default pre-processors + * @return {Function[]} defaultPreprocessors + * @private + * @static + */ + getDefaultPreprocessors: function() { + return this.defaultPreprocessors; + }, + + /** + * Set the default array stack of default pre-processors + * + * @private + * @param {Array} preprocessors + * @return {Ext.Class} this + * @static + */ + setDefaultPreprocessors: function(preprocessors) { + this.defaultPreprocessors = Ext.Array.from(preprocessors); + + return this; + }, + + /** + * Insert this pre-processor at a specific position in the stack, optionally relative to + * any existing pre-processor. For example: + * + * Ext.Class.registerPreprocessor('debug', function(cls, data, fn) { + * // Your code here + * + * if (fn) { + * fn.call(this, cls, data); + * } + * }).setDefaultPreprocessorPosition('debug', 'last'); + * + * @private + * @param {String} name The pre-processor name. Note that it needs to be registered with + * {@link Ext.Class#registerPreprocessor registerPreprocessor} before this + * @param {String} offset The insertion position. Four possible values are: + * 'first', 'last', or: 'before', 'after' (relative to the name provided in the third argument) + * @param {String} relativeName + * @return {Ext.Class} this + * @static + */ + setDefaultPreprocessorPosition: function(name, offset, relativeName) { + var defaultPreprocessors = this.defaultPreprocessors, + index; + + if (typeof offset == 'string') { + if (offset === 'first') { + defaultPreprocessors.unshift(name); + + return this; + } + else if (offset === 'last') { + defaultPreprocessors.push(name); + + return this; + } + + offset = (offset === 'after') ? 1 : -1; + } + + index = Ext.Array.indexOf(defaultPreprocessors, relativeName); + + if (index !== -1) { + Ext.Array.splice(defaultPreprocessors, Math.max(0, index + offset), 0, name); + } + + return this; + }, + + configNameCache: {}, + + getConfigNameMap: function(name) { + var cache = this.configNameCache, + map = cache[name], + capitalizedName; + + if (!map) { + capitalizedName = name.charAt(0).toUpperCase() + name.substr(1); + + map = cache[name] = { + internal: name, + initialized: '_is' + capitalizedName + 'Initialized', + apply: 'apply' + capitalizedName, + update: 'update' + capitalizedName, + 'set': 'set' + capitalizedName, + 'get': 'get' + capitalizedName, + doSet : 'doSet' + capitalizedName, + changeEvent: name.toLowerCase() + 'change' + }; + } + + return map; + } + }); + + /** + * @cfg {String} extend + * The parent class that this class extends. For example: + * + * Ext.define('Person', { + * say: function(text) { alert(text); } + * }); + * + * Ext.define('Developer', { + * extend: 'Person', + * say: function(text) { this.callParent(["print "+text]); } + * }); + */ + ExtClass.registerPreprocessor('extend', function(Class, data, hooks) { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(Class, 'Ext.Class#extendPreProcessor', arguments); + // + + var Base = Ext.Base, + basePrototype = Base.prototype, + extend = data.extend, + Parent, parentPrototype, i; + + delete data.extend; + + if (extend && extend !== Object) { + Parent = extend; + } + else { + Parent = Base; + } + + parentPrototype = Parent.prototype; + + if (!Parent.$isClass) { + for (i in basePrototype) { + if (!parentPrototype[i]) { + parentPrototype[i] = basePrototype[i]; + } + } + } + + Class.extend(Parent); + + Class.triggerExtended.apply(Class, arguments); + + if (data.onClassExtended) { + Class.onExtended(data.onClassExtended, Class); + delete data.onClassExtended; + } + + }, true); + + // + /** + * @cfg {Object} statics + * List of static methods for this class. For example: + * + * Ext.define('Computer', { + * statics: { + * factory: function(brand) { + * // 'this' in static methods refer to the class itself + * return new this(brand); + * } + * }, + * + * constructor: function() { ... } + * }); + * + * var dellComputer = Computer.factory('Dell'); + */ + ExtClass.registerPreprocessor('statics', function(Class, data) { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(Class, 'Ext.Class#staticsPreprocessor', arguments); + // + + Class.addStatics(data.statics); + + delete data.statics; + }); + // + + // + /** + * @cfg {Object} inheritableStatics + * List of inheritable static methods for this class. + * Otherwise just like {@link #statics} but subclasses inherit these methods. + */ + ExtClass.registerPreprocessor('inheritableStatics', function(Class, data) { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(Class, 'Ext.Class#inheritableStaticsPreprocessor', arguments); + // + + Class.addInheritableStatics(data.inheritableStatics); + + delete data.inheritableStatics; + }); + // + + // + /** + * @cfg {Object} config + * List of configuration options with their default values, for which automatically + * accessor methods are generated. For example: + * + * Ext.define('SmartPhone', { + * config: { + * hasTouchScreen: false, + * operatingSystem: 'Other', + * price: 500 + * }, + * constructor: function(cfg) { + * this.initConfig(cfg); + * } + * }); + * + * var iPhone = new SmartPhone({ + * hasTouchScreen: true, + * operatingSystem: 'iOS' + * }); + * + * iPhone.getPrice(); // 500; + * iPhone.getOperatingSystem(); // 'iOS' + * iPhone.getHasTouchScreen(); // true; + * + * NOTE for when configs are reference types, the getter and setter methods do not make copies. + * + * For example, when a config value is set, the reference is stored on the instance. All instances that set + * the same reference type will share it. + * + * In the case of the getter, the value with either come from the prototype if the setter was never called or from + * the instance as the last value passed to the setter. + * + * For some config properties, the value passed to the setter is transformed prior to being stored on the instance. + */ + ExtClass.registerPreprocessor('config', function(Class, data) { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(Class, 'Ext.Class#configPreProcessor', arguments); + // + + var config = data.config, + prototype = Class.prototype; + + delete data.config; + + Ext.Object.each(config, function(name, value) { + var nameMap = ExtClass.getConfigNameMap(name), + internalName = nameMap.internal, + initializedName = nameMap.initialized, + applyName = nameMap.apply, + updateName = nameMap.update, + setName = nameMap.set, + getName = nameMap.get, + hasOwnSetter = (setName in prototype) || data.hasOwnProperty(setName), + hasOwnApplier = (applyName in prototype) || data.hasOwnProperty(applyName), + hasOwnUpdater = (updateName in prototype) || data.hasOwnProperty(updateName), + optimizedGetter, customGetter; + + if (value === null || (!hasOwnSetter && !hasOwnApplier && !hasOwnUpdater)) { + prototype[internalName] = value; + prototype[initializedName] = true; + } + else { + prototype[initializedName] = false; + } + + if (!hasOwnSetter) { + data[setName] = function(value) { + var oldValue = this[internalName], + applier = this[applyName], + updater = this[updateName]; + + if (!this[initializedName]) { + this[initializedName] = true; + } + + if (applier) { + value = applier.call(this, value, oldValue); + } + + if (typeof value != 'undefined') { + this[internalName] = value; + + if (updater && value !== oldValue) { + updater.call(this, value, oldValue); + } + } + + return this; + }; + } + + if (!(getName in prototype) || data.hasOwnProperty(getName)) { + customGetter = data[getName] || false; + + if (customGetter) { + optimizedGetter = function() { + return customGetter.apply(this, arguments); + }; + } + else { + optimizedGetter = function() { + return this[internalName]; + }; + } + + data[getName] = function() { + var currentGetter; + + if (!this[initializedName]) { + this[initializedName] = true; + this[setName](this.config[name]); + } + + currentGetter = this[getName]; + + if ('$previous' in currentGetter) { + currentGetter.$previous = optimizedGetter; + } + else { + this[getName] = optimizedGetter; + } + + return optimizedGetter.apply(this, arguments); + }; + } + }); + + Class.addConfig(config, true); + }); + // + + // + /** + * @cfg {String[]/Object} mixins + * List of classes to mix into this class. For example: + * + * Ext.define('CanSing', { + * sing: function() { + * alert("I'm on the highway to hell...") + * } + * }); + * + * Ext.define('Musician', { + * mixins: ['CanSing'] + * }) + * + * In this case the Musician class will get a `sing` method from CanSing mixin. + * + * But what if the Musician already has a `sing` method? Or you want to mix + * in two classes, both of which define `sing`? In such a cases it's good + * to define mixins as an object, where you assign a name to each mixin: + * + * Ext.define('Musician', { + * mixins: { + * canSing: 'CanSing' + * }, + * + * sing: function() { + * // delegate singing operation to mixin + * this.mixins.canSing.sing.call(this); + * } + * }) + * + * In this case the `sing` method of Musician will overwrite the + * mixed in `sing` method. But you can access the original mixed in method + * through special `mixins` property. + */ + ExtClass.registerPreprocessor('mixins', function(Class, data, hooks) { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(Class, 'Ext.Class#mixinsPreprocessor', arguments); + // + + var mixins = data.mixins, + name, mixin, i, ln; + + delete data.mixins; + + Ext.Function.interceptBefore(hooks, 'onCreated', function() { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(Class, 'Ext.Class#mixinsPreprocessor#beforeCreated', arguments); + // + + if (mixins instanceof Array) { + for (i = 0,ln = mixins.length; i < ln; i++) { + mixin = mixins[i]; + name = mixin.prototype.mixinId || mixin.$className; + + Class.mixin(name, mixin); + } + } + else { + for (var mixinName in mixins) { + if (mixins.hasOwnProperty(mixinName)) { + Class.mixin(mixinName, mixins[mixinName]); + } + } + } + }); + }); + // + + // + // Backwards compatible + Ext.extend = function(Class, Parent, members) { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(Class, 'Ext.Class#extend-backwards-compatible', arguments); + // + + if (arguments.length === 2 && Ext.isObject(Parent)) { + members = Parent; + Parent = Class; + Class = null; + } + + var cls; + + if (!Parent) { + throw new Error("[Ext.extend] Attempting to extend from a class which has not been loaded on the page."); + } + + members.extend = Parent; + members.preprocessors = [ + 'extend' + // + ,'statics' + // + // + ,'inheritableStatics' + // + // + ,'mixins' + // + // + ,'config' + // + ]; + + if (Class) { + cls = new ExtClass(Class, members); + // The 'constructor' is given as 'Class' but also needs to be on prototype + cls.prototype.constructor = Class; + } else { + cls = new ExtClass(members); + } + + cls.prototype.override = function(o) { + for (var m in o) { + if (o.hasOwnProperty(m)) { + this[m] = o[m]; + } + } + }; + + return cls; + }; + // +}()); diff --git a/extjs-django/marvel/static/extjs/src/class/ClassManager.js b/extjs-django/marvel/static/extjs/src/class/ClassManager.js new file mode 100644 index 0000000..5500629 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/class/ClassManager.js @@ -0,0 +1,1876 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +// @tag foundation,core +// @require Class.js +// @define Ext.ClassManager + +/** + * @author Jacky Nguyen + * @docauthor Jacky Nguyen + * @class Ext.ClassManager + * + * Ext.ClassManager manages all classes and handles mapping from string class name to + * actual class objects throughout the whole framework. It is not generally accessed directly, rather through + * these convenient shorthands: + * + * - {@link Ext#define Ext.define} + * - {@link Ext#create Ext.create} + * - {@link Ext#widget Ext.widget} + * - {@link Ext#getClass Ext.getClass} + * - {@link Ext#getClassName Ext.getClassName} + * + * # Basic syntax: + * + * Ext.define(className, properties); + * + * in which `properties` is an object represent a collection of properties that apply to the class. See + * {@link Ext.ClassManager#create} for more detailed instructions. + * + * Ext.define('Person', { + * name: 'Unknown', + * + * constructor: function(name) { + * if (name) { + * this.name = name; + * } + * }, + * + * eat: function(foodType) { + * alert("I'm eating: " + foodType); + * + * return this; + * } + * }); + * + * var aaron = new Person("Aaron"); + * aaron.eat("Sandwich"); // alert("I'm eating: Sandwich"); + * + * Ext.Class has a powerful set of extensible {@link Ext.Class#registerPreprocessor pre-processors} which takes care of + * everything related to class creation, including but not limited to inheritance, mixins, configuration, statics, etc. + * + * # Inheritance: + * + * Ext.define('Developer', { + * extend: 'Person', + * + * constructor: function(name, isGeek) { + * this.isGeek = isGeek; + * + * // Apply a method from the parent class' prototype + * this.callParent([name]); + * }, + * + * code: function(language) { + * alert("I'm coding in: " + language); + * + * this.eat("Bugs"); + * + * return this; + * } + * }); + * + * var jacky = new Developer("Jacky", true); + * jacky.code("JavaScript"); // alert("I'm coding in: JavaScript"); + * // alert("I'm eating: Bugs"); + * + * See {@link Ext.Base#callParent} for more details on calling superclass' methods + * + * # Mixins: + * + * Ext.define('CanPlayGuitar', { + * playGuitar: function() { + * alert("F#...G...D...A"); + * } + * }); + * + * Ext.define('CanComposeSongs', { + * composeSongs: function() { ... } + * }); + * + * Ext.define('CanSing', { + * sing: function() { + * alert("I'm on the highway to hell...") + * } + * }); + * + * Ext.define('Musician', { + * extend: 'Person', + * + * mixins: { + * canPlayGuitar: 'CanPlayGuitar', + * canComposeSongs: 'CanComposeSongs', + * canSing: 'CanSing' + * } + * }) + * + * Ext.define('CoolPerson', { + * extend: 'Person', + * + * mixins: { + * canPlayGuitar: 'CanPlayGuitar', + * canSing: 'CanSing' + * }, + * + * sing: function() { + * alert("Ahem...."); + * + * this.mixins.canSing.sing.call(this); + * + * alert("[Playing guitar at the same time...]"); + * + * this.playGuitar(); + * } + * }); + * + * var me = new CoolPerson("Jacky"); + * + * me.sing(); // alert("Ahem..."); + * // alert("I'm on the highway to hell..."); + * // alert("[Playing guitar at the same time...]"); + * // alert("F#...G...D...A"); + * + * # Config: + * + * Ext.define('SmartPhone', { + * config: { + * hasTouchScreen: false, + * operatingSystem: 'Other', + * price: 500 + * }, + * + * isExpensive: false, + * + * constructor: function(config) { + * this.initConfig(config); + * }, + * + * applyPrice: function(price) { + * this.isExpensive = (price > 500); + * + * return price; + * }, + * + * applyOperatingSystem: function(operatingSystem) { + * if (!(/^(iOS|Android|BlackBerry)$/i).test(operatingSystem)) { + * return 'Other'; + * } + * + * return operatingSystem; + * } + * }); + * + * var iPhone = new SmartPhone({ + * hasTouchScreen: true, + * operatingSystem: 'iOS' + * }); + * + * iPhone.getPrice(); // 500; + * iPhone.getOperatingSystem(); // 'iOS' + * iPhone.getHasTouchScreen(); // true; + * iPhone.hasTouchScreen(); // true + * + * iPhone.isExpensive; // false; + * iPhone.setPrice(600); + * iPhone.getPrice(); // 600 + * iPhone.isExpensive; // true; + * + * iPhone.setOperatingSystem('AlienOS'); + * iPhone.getOperatingSystem(); // 'Other' + * + * # Statics: + * + * Ext.define('Computer', { + * statics: { + * factory: function(brand) { + * // 'this' in static methods refer to the class itself + * return new this(brand); + * } + * }, + * + * constructor: function() { ... } + * }); + * + * var dellComputer = Computer.factory('Dell'); + * + * Also see {@link Ext.Base#statics} and {@link Ext.Base#self} for more details on accessing + * static properties within class methods + * + * @singleton + */ +(function(Class, alias, arraySlice, arrayFrom, global) { + + // Creates a constructor that has nothing extra in its scope chain. + function makeCtor () { + function constructor () { + // Opera has some problems returning from a constructor when Dragonfly isn't running. The || null seems to + // be sufficient to stop it misbehaving. Known to be required against 10.53, 11.51 and 11.61. + return this.constructor.apply(this, arguments) || null; + } + return constructor; + } + + var Manager = Ext.ClassManager = { + + /** + * @property {Object} classes + * All classes which were defined through the ClassManager. Keys are the + * name of the classes and the values are references to the classes. + * @private + */ + classes: {}, + + /** + * @private + */ + existCache: {}, + + /** + * @private + */ + namespaceRewrites: [{ + from: 'Ext.', + to: Ext + }], + + /** + * @private + */ + maps: { + alternateToName: {}, + aliasToName: {}, + nameToAliases: {}, + nameToAlternates: {} + }, + + /** @private */ + enableNamespaceParseCache: true, + + /** @private */ + namespaceParseCache: {}, + + /** @private */ + instantiators: [], + + /** + * Checks if a class has already been created. + * + * @param {String} className + * @return {Boolean} exist + */ + isCreated: function(className) { + var existCache = this.existCache, + i, ln, part, root, parts; + + // + if (typeof className != 'string' || className.length < 1) { + throw new Error("[Ext.ClassManager] Invalid classname, must be a string and must not be empty"); + } + // + + if (this.classes[className] || existCache[className]) { + return true; + } + + root = global; + parts = this.parseNamespace(className); + + for (i = 0, ln = parts.length; i < ln; i++) { + part = parts[i]; + + if (typeof part != 'string') { + root = part; + } else { + if (!root || !root[part]) { + return false; + } + + root = root[part]; + } + } + + existCache[className] = true; + + this.triggerCreated(className); + + return true; + }, + + /** + * @private + */ + createdListeners: [], + + /** + * @private + */ + nameCreatedListeners: {}, + + /** + * @private + */ + triggerCreated: function(className) { + var listeners = this.createdListeners, + nameListeners = this.nameCreatedListeners, + alternateNames = this.maps.nameToAlternates[className], + names = [className], + i, ln, j, subLn, listener, name; + + for (i = 0,ln = listeners.length; i < ln; i++) { + listener = listeners[i]; + listener.fn.call(listener.scope, className); + } + + if (alternateNames) { + names.push.apply(names, alternateNames); + } + + for (i = 0,ln = names.length; i < ln; i++) { + name = names[i]; + listeners = nameListeners[name]; + + if (listeners) { + for (j = 0,subLn = listeners.length; j < subLn; j++) { + listener = listeners[j]; + listener.fn.call(listener.scope, name); + } + delete nameListeners[name]; + } + } + }, + + /** + * @private + */ + onCreated: function(fn, scope, className) { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(className, 'Ext.ClassManager#onCreated', arguments); + // + + var listeners = this.createdListeners, + nameListeners = this.nameCreatedListeners, + listener = { + fn: fn, + scope: scope + }; + + if (className) { + if (this.isCreated(className)) { + fn.call(scope, className); + return; + } + + if (!nameListeners[className]) { + nameListeners[className] = []; + } + + nameListeners[className].push(listener); + } + else { + listeners.push(listener); + } + }, + + /** + * Supports namespace rewriting + * @private + */ + parseNamespace: function(namespace) { + // + if (typeof namespace != 'string') { + throw new Error("[Ext.ClassManager] Invalid namespace, must be a string"); + } + // + + var cache = this.namespaceParseCache, + parts, + rewrites, + root, + name, + rewrite, from, to, i, ln; + + if (this.enableNamespaceParseCache) { + if (cache.hasOwnProperty(namespace)) { + return cache[namespace]; + } + } + + parts = []; + rewrites = this.namespaceRewrites; + root = global; + name = namespace; + + for (i = 0, ln = rewrites.length; i < ln; i++) { + rewrite = rewrites[i]; + from = rewrite.from; + to = rewrite.to; + + if (name === from || name.substring(0, from.length) === from) { + name = name.substring(from.length); + + if (typeof to != 'string') { + root = to; + } else { + parts = parts.concat(to.split('.')); + } + + break; + } + } + + parts.push(root); + + parts = parts.concat(name.split('.')); + + if (this.enableNamespaceParseCache) { + cache[namespace] = parts; + } + + return parts; + }, + + /** + * Creates a namespace and assign the `value` to the created object + * + * Ext.ClassManager.setNamespace('MyCompany.pkg.Example', someObject); + * + * alert(MyCompany.pkg.Example === someObject); // alerts true + * + * @param {String} name + * @param {Object} value + */ + setNamespace: function(name, value) { + var root = global, + parts = this.parseNamespace(name), + ln = parts.length - 1, + leaf = parts[ln], + i, part; + + for (i = 0; i < ln; i++) { + part = parts[i]; + + if (typeof part != 'string') { + root = part; + } else { + if (!root[part]) { + root[part] = {}; + } + + root = root[part]; + } + } + + root[leaf] = value; + + return root[leaf]; + }, + + /** + * The new Ext.ns, supports namespace rewriting + * @private + */ + createNamespaces: function() { + var root = global, + parts, part, i, j, ln, subLn; + + for (i = 0, ln = arguments.length; i < ln; i++) { + parts = this.parseNamespace(arguments[i]); + + for (j = 0, subLn = parts.length; j < subLn; j++) { + part = parts[j]; + + if (typeof part != 'string') { + root = part; + } else { + if (!root[part]) { + root[part] = {}; + } + + root = root[part]; + } + } + } + + return root; + }, + + /** + * Sets a name reference to a class. + * + * @param {String} name + * @param {Object} value + * @return {Ext.ClassManager} this + */ + set: function(name, value) { + var me = this, + maps = me.maps, + nameToAlternates = maps.nameToAlternates, + targetName = me.getName(value), + alternates; + + me.classes[name] = me.setNamespace(name, value); + + if (targetName && targetName !== name) { + maps.alternateToName[name] = targetName; + alternates = nameToAlternates[targetName] || (nameToAlternates[targetName] = []); + alternates.push(name); + } + + return this; + }, + + /** + * Retrieve a class by its name. + * + * @param {String} name + * @return {Ext.Class} class + */ + get: function(name) { + var classes = this.classes, + root, + parts, + part, i, ln; + + if (classes[name]) { + return classes[name]; + } + + root = global; + parts = this.parseNamespace(name); + + for (i = 0, ln = parts.length; i < ln; i++) { + part = parts[i]; + + if (typeof part != 'string') { + root = part; + } else { + if (!root || !root[part]) { + return null; + } + + root = root[part]; + } + } + + return root; + }, + + /** + * Register the alias for a class. + * + * @param {Ext.Class/String} cls a reference to a class or a className + * @param {String} alias Alias to use when referring to this class + */ + setAlias: function(cls, alias) { + var aliasToNameMap = this.maps.aliasToName, + nameToAliasesMap = this.maps.nameToAliases, + className; + + if (typeof cls == 'string') { + className = cls; + } else { + className = this.getName(cls); + } + + if (alias && aliasToNameMap[alias] !== className) { + // + if (aliasToNameMap[alias] && Ext.isDefined(global.console)) { + global.console.log("[Ext.ClassManager] Overriding existing alias: '" + alias + "' " + + "of: '" + aliasToNameMap[alias] + "' with: '" + className + "'. Be sure it's intentional."); + } + // + + aliasToNameMap[alias] = className; + } + + if (!nameToAliasesMap[className]) { + nameToAliasesMap[className] = []; + } + + if (alias) { + Ext.Array.include(nameToAliasesMap[className], alias); + } + + return this; + }, + + /** + * Adds a batch of class name to alias mappings + * @param {Object} aliases The set of mappings of the form + * className : [values...] + */ + addNameAliasMappings: function(aliases){ + var aliasToNameMap = this.maps.aliasToName, + nameToAliasesMap = this.maps.nameToAliases, + className, aliasList, alias, i; + + for (className in aliases) { + aliasList = nameToAliasesMap[className] || + (nameToAliasesMap[className] = []); + + for (i = 0; i < aliases[className].length; i++) { + alias = aliases[className][i]; + if (!aliasToNameMap[alias]) { + aliasToNameMap[alias] = className; + aliasList.push(alias); + } + } + + } + return this; + }, + + /** + * + * @param {Object} alternates The set of mappings of the form + * className : [values...] + */ + addNameAlternateMappings: function(alternates) { + var alternateToName = this.maps.alternateToName, + nameToAlternates = this.maps.nameToAlternates, + className, aliasList, alternate, i; + + for (className in alternates) { + aliasList = nameToAlternates[className] || + (nameToAlternates[className] = []); + + for (i = 0; i < alternates[className].length; i++) { + alternate = alternates[className][i]; + if (!alternateToName[alternate]) { + alternateToName[alternate] = className; + aliasList.push(alternate); + } + } + + } + return this; + }, + + /** + * Get a reference to the class by its alias. + * + * @param {String} alias + * @return {Ext.Class} class + */ + getByAlias: function(alias) { + return this.get(this.getNameByAlias(alias)); + }, + + /** + * Get the name of a class by its alias. + * + * @param {String} alias + * @return {String} className + */ + getNameByAlias: function(alias) { + return this.maps.aliasToName[alias] || ''; + }, + + /** + * Get the name of a class by its alternate name. + * + * @param {String} alternate + * @return {String} className + */ + getNameByAlternate: function(alternate) { + return this.maps.alternateToName[alternate] || ''; + }, + + /** + * Get the aliases of a class by the class name + * + * @param {String} name + * @return {Array} aliases + */ + getAliasesByName: function(name) { + return this.maps.nameToAliases[name] || []; + }, + + /** + * Get the name of the class by its reference or its instance; + * + * {@link Ext.ClassManager#getName} is usually invoked by the shorthand {@link Ext#getClassName}. + * + * Ext.getName(Ext.Action); // returns "Ext.Action" + * + * @param {Ext.Class/Object} object + * @return {String} className + */ + getName: function(object) { + return object && object.$className || ''; + }, + + /** + * Get the class of the provided object; returns null if it's not an instance + * of any class created with Ext.define. + * + * {@link Ext.ClassManager#getClass} is usually invoked by the shorthand {@link Ext#getClass}. + * + * var component = new Ext.Component(); + * + * Ext.getClass(component); // returns Ext.Component + * + * @param {Object} object + * @return {Ext.Class} class + */ + getClass: function(object) { + return object && object.self || null; + }, + + /** + * Defines a class. + * @deprecated 4.1.0 Use {@link Ext#define} instead, as that also supports creating overrides. + */ + create: function(className, data, createdFn) { + // + if (className != null && typeof className != 'string') { + throw new Error("[Ext.define] Invalid class name '" + className + "' specified, must be a non-empty string"); + } + // + + var ctor = makeCtor(); + if (typeof data == 'function') { + data = data(ctor); + } + + // + if (className) { + ctor.displayName = className; + } + // + + data.$className = className; + + return new Class(ctor, data, function() { + var postprocessorStack = data.postprocessors || Manager.defaultPostprocessors, + registeredPostprocessors = Manager.postprocessors, + postprocessors = [], + postprocessor, i, ln, j, subLn, postprocessorProperties, postprocessorProperty; + + delete data.postprocessors; + + for (i = 0,ln = postprocessorStack.length; i < ln; i++) { + postprocessor = postprocessorStack[i]; + + if (typeof postprocessor == 'string') { + postprocessor = registeredPostprocessors[postprocessor]; + postprocessorProperties = postprocessor.properties; + + if (postprocessorProperties === true) { + postprocessors.push(postprocessor.fn); + } + else if (postprocessorProperties) { + for (j = 0,subLn = postprocessorProperties.length; j < subLn; j++) { + postprocessorProperty = postprocessorProperties[j]; + + if (data.hasOwnProperty(postprocessorProperty)) { + postprocessors.push(postprocessor.fn); + break; + } + } + } + } + else { + postprocessors.push(postprocessor); + } + } + + data.postprocessors = postprocessors; + data.createdFn = createdFn; + Manager.processCreate(className, this, data); + }); + }, + + processCreate: function(className, cls, clsData){ + var me = this, + postprocessor = clsData.postprocessors.shift(), + createdFn = clsData.createdFn; + + if (!postprocessor) { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(className, 'Ext.ClassManager#classCreated', arguments); + // + + if (className) { + me.set(className, cls); + } + + if (createdFn) { + createdFn.call(cls, cls); + } + + if (className) { + me.triggerCreated(className); + } + return; + } + + if (postprocessor.call(me, className, cls, clsData, me.processCreate) !== false) { + me.processCreate(className, cls, clsData); + } + }, + + createOverride: function (className, data, createdFn) { + var me = this, + overriddenClassName = data.override, + requires = data.requires, + uses = data.uses, + classReady = function () { + var cls, temp; + + if (requires) { + temp = requires; + requires = null; // do the real thing next time (which may be now) + + // Since the override is going to be used (its target class is now + // created), we need to fetch the required classes for the override + // and call us back once they are loaded: + Ext.Loader.require(temp, classReady); + } else { + // The target class and the required classes for this override are + // ready, so we can apply the override now: + cls = me.get(overriddenClassName); + + // We don't want to apply these: + delete data.override; + delete data.requires; + delete data.uses; + + Ext.override(cls, data); + + // This pushes the overridding file itself into Ext.Loader.history + // Hence if the target class never exists, the overriding file will + // never be included in the build. + me.triggerCreated(className); + + if (uses) { + Ext.Loader.addUsedClasses(uses); // get these classes too! + } + + if (createdFn) { + createdFn.call(cls); // last but not least! + } + } + }; + + me.existCache[className] = true; + + // Override the target class right after it's created + me.onCreated(classReady, me, overriddenClassName); + + return me; + }, + + /** + * Instantiate a class by its alias. + * + * {@link Ext.ClassManager#instantiateByAlias} is usually invoked by the shorthand {@link Ext#createByAlias}. + * + * If {@link Ext.Loader} is {@link Ext.Loader#setConfig enabled} and the class has not been defined yet, it will + * attempt to load the class via synchronous loading. + * + * var window = Ext.createByAlias('widget.window', { width: 600, height: 800, ... }); + * + * @param {String} alias + * @param {Object...} args Additional arguments after the alias will be passed to the + * class constructor. + * @return {Object} instance + */ + instantiateByAlias: function() { + var alias = arguments[0], + args = arraySlice.call(arguments), + className = this.getNameByAlias(alias); + + if (!className) { + className = this.maps.aliasToName[alias]; + + // + if (!className) { + throw new Error("[Ext.createByAlias] Cannot create an instance of unrecognized alias: " + alias); + } + // + + // + if (global.console) { + global.console.warn("[Ext.Loader] Synchronously loading '" + className + "'; consider adding " + + "Ext.require('" + alias + "') above Ext.onReady"); + } + // + + Ext.syncRequire(className); + } + + args[0] = className; + + return this.instantiate.apply(this, args); + }, + + /** + * @private + */ + instantiate: function() { + var name = arguments[0], + nameType = typeof name, + args = arraySlice.call(arguments, 1), + alias = name, + possibleName, cls; + + if (nameType != 'function') { + if (nameType != 'string' && args.length === 0) { + args = [name]; + name = name.xclass; + } + + // + if (typeof name != 'string' || name.length < 1) { + throw new Error("[Ext.create] Invalid class name or alias '" + name + "' specified, must be a non-empty string"); + } + // + + cls = this.get(name); + } + else { + cls = name; + } + + // No record of this class name, it's possibly an alias, so look it up + if (!cls) { + possibleName = this.getNameByAlias(name); + + if (possibleName) { + name = possibleName; + + cls = this.get(name); + } + } + + // Still no record of this class name, it's possibly an alternate name, so look it up + if (!cls) { + possibleName = this.getNameByAlternate(name); + + if (possibleName) { + name = possibleName; + + cls = this.get(name); + } + } + + // Still not existing at this point, try to load it via synchronous mode as the last resort + if (!cls) { + // + if (global.console) { + global.console.warn("[Ext.Loader] Synchronously loading '" + name + "'; consider adding " + + "Ext.require('" + ((possibleName) ? alias : name) + "') above Ext.onReady"); + } + // + + Ext.syncRequire(name); + + cls = this.get(name); + } + + // + if (!cls) { + throw new Error("[Ext.create] Cannot create an instance of unrecognized class name / alias: " + alias); + } + + if (typeof cls != 'function') { + throw new Error("[Ext.create] '" + name + "' is a singleton and cannot be instantiated"); + } + // + + return this.getInstantiator(args.length)(cls, args); + }, + + /** + * @private + * @param name + * @param args + */ + dynInstantiate: function(name, args) { + args = arrayFrom(args, true); + args.unshift(name); + + return this.instantiate.apply(this, args); + }, + + /** + * @private + * @param length + */ + getInstantiator: function(length) { + var instantiators = this.instantiators, + instantiator, + i, + args; + + instantiator = instantiators[length]; + + if (!instantiator) { + i = length; + args = []; + + for (i = 0; i < length; i++) { + args.push('a[' + i + ']'); + } + + instantiator = instantiators[length] = new Function('c', 'a', 'return new c(' + args.join(',') + ')'); + // + instantiator.displayName = "Ext.ClassManager.instantiate" + length; + // + } + + return instantiator; + }, + + /** + * @private + */ + postprocessors: {}, + + /** + * @private + */ + defaultPostprocessors: [], + + /** + * Register a post-processor function. + * + * @private + * @param {String} name + * @param {Function} postprocessor + */ + registerPostprocessor: function(name, fn, properties, position, relativeTo) { + if (!position) { + position = 'last'; + } + + if (!properties) { + properties = [name]; + } + + this.postprocessors[name] = { + name: name, + properties: properties || false, + fn: fn + }; + + this.setDefaultPostprocessorPosition(name, position, relativeTo); + + return this; + }, + + /** + * Set the default post processors array stack which are applied to every class. + * + * @private + * @param {String/Array} postprocessors The name of a registered post processor or an array of registered names. + * @return {Ext.ClassManager} this + */ + setDefaultPostprocessors: function(postprocessors) { + this.defaultPostprocessors = arrayFrom(postprocessors); + + return this; + }, + + /** + * Insert this post-processor at a specific position in the stack, optionally relative to + * any existing post-processor + * + * @private + * @param {String} name The post-processor name. Note that it needs to be registered with + * {@link Ext.ClassManager#registerPostprocessor} before this + * @param {String} offset The insertion position. Four possible values are: + * 'first', 'last', or: 'before', 'after' (relative to the name provided in the third argument) + * @param {String} relativeName + * @return {Ext.ClassManager} this + */ + setDefaultPostprocessorPosition: function(name, offset, relativeName) { + var defaultPostprocessors = this.defaultPostprocessors, + index; + + if (typeof offset == 'string') { + if (offset === 'first') { + defaultPostprocessors.unshift(name); + + return this; + } + else if (offset === 'last') { + defaultPostprocessors.push(name); + + return this; + } + + offset = (offset === 'after') ? 1 : -1; + } + + index = Ext.Array.indexOf(defaultPostprocessors, relativeName); + + if (index !== -1) { + Ext.Array.splice(defaultPostprocessors, Math.max(0, index + offset), 0, name); + } + + return this; + }, + + /** + * Converts a string expression to an array of matching class names. An expression can either refers to class aliases + * or class names. Expressions support wildcards: + * + * // returns ['Ext.window.Window'] + * var window = Ext.ClassManager.getNamesByExpression('widget.window'); + * + * // returns ['widget.panel', 'widget.window', ...] + * var allWidgets = Ext.ClassManager.getNamesByExpression('widget.*'); + * + * // returns ['Ext.data.Store', 'Ext.data.ArrayProxy', ...] + * var allData = Ext.ClassManager.getNamesByExpression('Ext.data.*'); + * + * @param {String} expression + * @return {String[]} classNames + */ + getNamesByExpression: function(expression) { + var nameToAliasesMap = this.maps.nameToAliases, + names = [], + name, alias, aliases, possibleName, regex, i, ln; + + // + if (typeof expression != 'string' || expression.length < 1) { + throw new Error("[Ext.ClassManager.getNamesByExpression] Expression " + expression + " is invalid, must be a non-empty string"); + } + // + + if (expression.indexOf('*') !== -1) { + expression = expression.replace(/\*/g, '(.*?)'); + regex = new RegExp('^' + expression + '$'); + + for (name in nameToAliasesMap) { + if (nameToAliasesMap.hasOwnProperty(name)) { + aliases = nameToAliasesMap[name]; + + if (name.search(regex) !== -1) { + names.push(name); + } + else { + for (i = 0, ln = aliases.length; i < ln; i++) { + alias = aliases[i]; + + if (alias.search(regex) !== -1) { + names.push(name); + break; + } + } + } + } + } + + } else { + possibleName = this.getNameByAlias(expression); + + if (possibleName) { + names.push(possibleName); + } else { + possibleName = this.getNameByAlternate(expression); + + if (possibleName) { + names.push(possibleName); + } else { + names.push(expression); + } + } + } + + return names; + } + }; + + // + /** + * @cfg {String[]} alias + * @member Ext.Class + * List of short aliases for class names. Most useful for defining xtypes for widgets: + * + * Ext.define('MyApp.CoolPanel', { + * extend: 'Ext.panel.Panel', + * alias: ['widget.coolpanel'], + * title: 'Yeah!' + * }); + * + * // Using Ext.create + * Ext.create('widget.coolpanel'); + * + * // Using the shorthand for defining widgets by xtype + * Ext.widget('panel', { + * items: [ + * {xtype: 'coolpanel', html: 'Foo'}, + * {xtype: 'coolpanel', html: 'Bar'} + * ] + * }); + * + * Besides "widget" for xtype there are alias namespaces like "feature" for ftype and "plugin" for ptype. + */ + Manager.registerPostprocessor('alias', function(name, cls, data) { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(name, 'Ext.ClassManager#aliasPostProcessor', arguments); + // + + var aliases = data.alias, + i, ln; + + for (i = 0,ln = aliases.length; i < ln; i++) { + alias = aliases[i]; + + this.setAlias(cls, alias); + } + + }, ['xtype', 'alias']); + // + + // + /** + * @cfg {Boolean} singleton + * @member Ext.Class + * When set to true, the class will be instantiated as singleton. For example: + * + * Ext.define('Logger', { + * singleton: true, + * log: function(msg) { + * console.log(msg); + * } + * }); + * + * Logger.log('Hello'); + */ + Manager.registerPostprocessor('singleton', function(name, cls, data, fn) { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(name, 'Ext.ClassManager#singletonPostProcessor', arguments); + // + + if (data.singleton) { + fn.call(this, name, new cls(), data); + } + else { + return true; + } + return false; + }); + // + + // + /** + * @cfg {String/String[]} alternateClassName + * @member Ext.Class + * Defines alternate names for this class. For example: + * + * Ext.define('Developer', { + * alternateClassName: ['Coder', 'Hacker'], + * code: function(msg) { + * alert('Typing... ' + msg); + * } + * }); + * + * var joe = Ext.create('Developer'); + * joe.code('stackoverflow'); + * + * var rms = Ext.create('Hacker'); + * rms.code('hack hack'); + */ + Manager.registerPostprocessor('alternateClassName', function(name, cls, data) { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(name, 'Ext.ClassManager#alternateClassNamePostprocessor', arguments); + // + + var alternates = data.alternateClassName, + i, ln, alternate; + + if (!(alternates instanceof Array)) { + alternates = [alternates]; + } + + for (i = 0, ln = alternates.length; i < ln; i++) { + alternate = alternates[i]; + + // + if (typeof alternate != 'string') { + throw new Error("[Ext.define] Invalid alternate of: '" + alternate + "' for class: '" + name + "'; must be a valid string"); + } + // + + this.set(alternate, cls); + } + }); + // + + Ext.apply(Ext, { + /** + * Instantiate a class by either full name, alias or alternate name. + * + * If {@link Ext.Loader} is {@link Ext.Loader#setConfig enabled} and the class has + * not been defined yet, it will attempt to load the class via synchronous loading. + * + * For example, all these three lines return the same result: + * + * // alias + * var window = Ext.create('widget.window', { + * width: 600, + * height: 800, + * ... + * }); + * + * // alternate name + * var window = Ext.create('Ext.Window', { + * width: 600, + * height: 800, + * ... + * }); + * + * // full class name + * var window = Ext.create('Ext.window.Window', { + * width: 600, + * height: 800, + * ... + * }); + * + * // single object with xclass property: + * var window = Ext.create({ + * xclass: 'Ext.window.Window', // any valid value for 'name' (above) + * width: 600, + * height: 800, + * ... + * }); + * + * @param {String} [name] The class name or alias. Can be specified as `xclass` + * property if only one object parameter is specified. + * @param {Object...} [args] Additional arguments after the name will be passed to + * the class' constructor. + * @return {Object} instance + * @member Ext + * @method create + */ + create: alias(Manager, 'instantiate'), + + /** + * Convenient shorthand to create a widget by its xtype or a config object. + * See also {@link Ext.ClassManager#instantiateByAlias}. + * + * var button = Ext.widget('button'); // Equivalent to Ext.create('widget.button'); + * + * var panel = Ext.widget('panel', { // Equivalent to Ext.create('widget.panel') + * title: 'Panel' + * }); + * + * var grid = Ext.widget({ + * xtype: 'grid', + * ... + * }); + * + * If a {@link Ext.Component component} instance is passed, it is simply returned. + * + * @member Ext + * @param {String} [name] The xtype of the widget to create. + * @param {Object} [config] The configuration object for the widget constructor. + * @return {Object} The widget instance + */ + widget: function(name, config) { + // forms: + // 1: (xtype) + // 2: (xtype, config) + // 3: (config) + // 4: (xtype, component) + // 5: (component) + // + var xtype = name, + alias, className, T, load; + + if (typeof xtype != 'string') { // if (form 3 or 5) + // first arg is config or component + config = name; // arguments[0] + xtype = config.xtype; + } else { + config = config || {}; + } + + if (config.isComponent) { + return config; + } + + alias = 'widget.' + xtype; + className = Manager.getNameByAlias(alias); + + // this is needed to support demand loading of the class + if (!className) { + load = true; + } + + T = Manager.get(className); + if (load || !T) { + return Manager.instantiateByAlias(alias, config); + } + return new T(config); + }, + + /** + * @inheritdoc Ext.ClassManager#instantiateByAlias + * @member Ext + * @method createByAlias + */ + createByAlias: alias(Manager, 'instantiateByAlias'), + + /** + * Defines a class or override. A basic class is defined like this: + * + * Ext.define('My.awesome.Class', { + * someProperty: 'something', + * + * someMethod: function(s) { + * alert(s + this.someProperty); + * } + * + * ... + * }); + * + * var obj = new My.awesome.Class(); + * + * obj.someMethod('Say '); // alerts 'Say something' + * + * To create an anonymous class, pass `null` for the `className`: + * + * Ext.define(null, { + * constructor: function () { + * // ... + * } + * }); + * + * In some cases, it is helpful to create a nested scope to contain some private + * properties. The best way to do this is to pass a function instead of an object + * as the second parameter. This function will be called to produce the class + * body: + * + * Ext.define('MyApp.foo.Bar', function () { + * var id = 0; + * + * return { + * nextId: function () { + * return ++id; + * } + * }; + * }); + * + * _Note_ that when using override, the above syntax will not override successfully, because + * the passed function would need to be executed first to determine whether or not the result + * is an override or defining a new object. As such, an alternative syntax that immediately + * invokes the function can be used: + * + * Ext.define('MyApp.override.BaseOverride', function () { + * var counter = 0; + * + * return { + * override: 'Ext.Component', + * logId: function () { + * console.log(++counter, this.id); + * } + * }; + * }()); + * + * + * When using this form of `Ext.define`, the function is passed a reference to its + * class. This can be used as an efficient way to access any static properties you + * may have: + * + * Ext.define('MyApp.foo.Bar', function (Bar) { + * return { + * statics: { + * staticMethod: function () { + * // ... + * } + * }, + * + * method: function () { + * return Bar.staticMethod(); + * } + * }; + * }); + * + * To define an override, include the `override` property. The content of an + * override is aggregated with the specified class in order to extend or modify + * that class. This can be as simple as setting default property values or it can + * extend and/or replace methods. This can also extend the statics of the class. + * + * One use for an override is to break a large class into manageable pieces. + * + * // File: /src/app/Panel.js + * + * Ext.define('My.app.Panel', { + * extend: 'Ext.panel.Panel', + * requires: [ + * 'My.app.PanelPart2', + * 'My.app.PanelPart3' + * ] + * + * constructor: function (config) { + * this.callParent(arguments); // calls Ext.panel.Panel's constructor + * //... + * }, + * + * statics: { + * method: function () { + * return 'abc'; + * } + * } + * }); + * + * // File: /src/app/PanelPart2.js + * Ext.define('My.app.PanelPart2', { + * override: 'My.app.Panel', + * + * constructor: function (config) { + * this.callParent(arguments); // calls My.app.Panel's constructor + * //... + * } + * }); + * + * Another use of overrides is to provide optional parts of classes that can be + * independently required. In this case, the class may even be unaware of the + * override altogether. + * + * Ext.define('My.ux.CoolTip', { + * override: 'Ext.tip.ToolTip', + * + * constructor: function (config) { + * this.callParent(arguments); // calls Ext.tip.ToolTip's constructor + * //... + * } + * }); + * + * The above override can now be required as normal. + * + * Ext.define('My.app.App', { + * requires: [ + * 'My.ux.CoolTip' + * ] + * }); + * + * Overrides can also contain statics: + * + * Ext.define('My.app.BarMod', { + * override: 'Ext.foo.Bar', + * + * statics: { + * method: function (x) { + * return this.callParent([x * 2]); // call Ext.foo.Bar.method + * } + * } + * }); + * + * IMPORTANT: An override is only included in a build if the class it overrides is + * required. Otherwise, the override, like the target class, is not included. + * + * @param {String} className The class name to create in string dot-namespaced format, for example: + * 'My.very.awesome.Class', 'FeedViewer.plugin.CoolPager' + * It is highly recommended to follow this simple convention: + * - The root and the class name are 'CamelCased' + * - Everything else is lower-cased + * Pass `null` to create an anonymous class. + * @param {Object} data The key - value pairs of properties to apply to this class. Property names can be of any valid + * strings, except those in the reserved listed below: + * - `mixins` + * - `statics` + * - `config` + * - `alias` + * - `self` + * - `singleton` + * - `alternateClassName` + * - `override` + * + * @param {Function} createdFn Optional callback to execute after the class is created, the execution scope of which + * (`this`) will be the newly created class itself. + * @return {Ext.Base} + * @member Ext + */ + define: function (className, data, createdFn) { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(className, 'ClassManager#define', arguments); + // + + if (data.override) { + return Manager.createOverride.apply(Manager, arguments); + } + + return Manager.create.apply(Manager, arguments); + }, + + /** + * Undefines a class defined using the #define method. Typically used + * for unit testing where setting up and tearing down a class multiple + * times is required. For example: + * + * // define a class + * Ext.define('Foo', { + * ... + * }); + * + * // run test + * + * // undefine the class + * Ext.undefine('Foo'); + * @param {String} className The class name to undefine in string dot-namespaced format. + * @private + */ + undefine: function(className) { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(className, 'Ext.ClassManager#undefine', arguments); + // + + var classes = Manager.classes, + maps = Manager.maps, + aliasToName = maps.aliasToName, + nameToAliases = maps.nameToAliases, + alternateToName = maps.alternateToName, + nameToAlternates = maps.nameToAlternates, + aliases = nameToAliases[className], + alternates = nameToAlternates[className], + parts, partCount, namespace, i; + + delete Manager.namespaceParseCache[className]; + delete nameToAliases[className]; + delete nameToAlternates[className]; + delete classes[className]; + + if (aliases) { + for (i = aliases.length; i--;) { + delete aliasToName[aliases[i]]; + } + } + + if (alternates) { + for (i = alternates.length; i--; ) { + delete alternateToName[alternates[i]]; + } + } + + parts = Manager.parseNamespace(className); + partCount = parts.length - 1; + namespace = parts[0]; + + for (i = 1; i < partCount; i++) { + namespace = namespace[parts[i]]; + if (!namespace) { + return; + } + } + + // Old IE blows up on attempt to delete window property + try { + delete namespace[parts[partCount]]; + } + catch (e) { + namespace[parts[partCount]] = undefined; + } + }, + + /** + * @inheritdoc Ext.ClassManager#getName + * @member Ext + * @method getClassName + */ + getClassName: alias(Manager, 'getName'), + + /** + * Returns the displayName property or className or object. When all else fails, returns "Anonymous". + * @param {Object} object + * @return {String} + */ + getDisplayName: function(object) { + if (object) { + if (object.displayName) { + return object.displayName; + } + + if (object.$name && object.$class) { + return Ext.getClassName(object.$class) + '#' + object.$name; + } + + if (object.$className) { + return object.$className; + } + } + + return 'Anonymous'; + }, + + /** + * @inheritdoc Ext.ClassManager#getClass + * @member Ext + * @method getClass + */ + getClass: alias(Manager, 'getClass'), + + /** + * Creates namespaces to be used for scoping variables and classes so that they are not global. + * Specifying the last node of a namespace implicitly creates all other nodes. Usage: + * + * Ext.namespace('Company', 'Company.data'); + * + * // equivalent and preferable to the above syntax + * Ext.ns('Company.data'); + * + * Company.Widget = function() { ... }; + * + * Company.data.CustomStore = function(config) { ... }; + * + * @param {String...} namespaces + * @return {Object} The namespace object. + * (If multiple arguments are passed, this will be the last namespace created) + * @member Ext + * @method namespace + */ + namespace: alias(Manager, 'createNamespaces') + }); + + /** + * Old name for {@link Ext#widget}. + * @deprecated 4.0.0 Use {@link Ext#widget} instead. + * @method createWidget + * @member Ext + */ + Ext.createWidget = Ext.widget; + + /** + * Convenient alias for {@link Ext#namespace Ext.namespace}. + * @inheritdoc Ext#namespace + * @member Ext + * @method ns + */ + Ext.ns = Ext.namespace; + + Class.registerPreprocessor('className', function(cls, data) { + if (data.$className) { + cls.$className = data.$className; + // + cls.displayName = cls.$className; + // + } + + // + Ext.classSystemMonitor && Ext.classSystemMonitor(cls, 'Ext.ClassManager#classNamePreprocessor', arguments); + // + }, true, 'first'); + + Class.registerPreprocessor('alias', function(cls, data) { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(cls, 'Ext.ClassManager#aliasPreprocessor', arguments); + // + + var prototype = cls.prototype, + xtypes = arrayFrom(data.xtype), + aliases = arrayFrom(data.alias), + widgetPrefix = 'widget.', + widgetPrefixLength = widgetPrefix.length, + xtypesChain = Array.prototype.slice.call(prototype.xtypesChain || []), + xtypesMap = Ext.merge({}, prototype.xtypesMap || {}), + i, ln, alias, xtype; + + for (i = 0,ln = aliases.length; i < ln; i++) { + alias = aliases[i]; + + // + if (typeof alias != 'string' || alias.length < 1) { + throw new Error("[Ext.define] Invalid alias of: '" + alias + "' for class: '" + name + "'; must be a valid string"); + } + // + + if (alias.substring(0, widgetPrefixLength) === widgetPrefix) { + xtype = alias.substring(widgetPrefixLength); + Ext.Array.include(xtypes, xtype); + } + } + + cls.xtype = data.xtype = xtypes[0]; + data.xtypes = xtypes; + + for (i = 0,ln = xtypes.length; i < ln; i++) { + xtype = xtypes[i]; + + if (!xtypesMap[xtype]) { + xtypesMap[xtype] = true; + xtypesChain.push(xtype); + } + } + + data.xtypesChain = xtypesChain; + data.xtypesMap = xtypesMap; + + Ext.Function.interceptAfter(data, 'onClassCreated', function() { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(cls, 'Ext.ClassManager#aliasPreprocessor#afterClassCreated', arguments); + // + + var mixins = prototype.mixins, + key, mixin; + + for (key in mixins) { + if (mixins.hasOwnProperty(key)) { + mixin = mixins[key]; + + xtypes = mixin.xtypes; + + if (xtypes) { + for (i = 0,ln = xtypes.length; i < ln; i++) { + xtype = xtypes[i]; + + if (!xtypesMap[xtype]) { + xtypesMap[xtype] = true; + xtypesChain.push(xtype); + } + } + } + } + } + }); + + for (i = 0,ln = xtypes.length; i < ln; i++) { + xtype = xtypes[i]; + + // + if (typeof xtype != 'string' || xtype.length < 1) { + throw new Error("[Ext.define] Invalid xtype of: '" + xtype + "' for class: '" + name + "'; must be a valid non-empty string"); + } + // + + Ext.Array.include(aliases, widgetPrefix + xtype); + } + + data.alias = aliases; + + }, ['xtype', 'alias']); + +}(Ext.Class, Ext.Function.alias, Array.prototype.slice, Ext.Array.from, Ext.global)); + +// simple mechanism for automated means of injecting large amounts of dependency info +// at the appropriate time in the load cycle +if (Ext._alternatesMetadata) { + Ext.ClassManager.addNameAlternateMappings(Ext._alternatesMetadata); + Ext._alternatesMetadata = null; +} + +if (Ext._aliasMetadata) { + Ext.ClassManager.addNameAliasMappings(Ext._aliasMetadata); + Ext._aliasMetadata = null; +} diff --git a/extjs-django/marvel/static/extjs/src/class/Loader.js b/extjs-django/marvel/static/extjs/src/class/Loader.js new file mode 100644 index 0000000..8f46c57 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/class/Loader.js @@ -0,0 +1,1564 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +// @tag foundation,core +// @require ClassManager.js +// @define Ext.Loader + +/** + * @author Jacky Nguyen + * @docauthor Jacky Nguyen + * @class Ext.Loader + * + * Ext.Loader is the heart of the new dynamic dependency loading capability in Ext JS 4+. It is most commonly used + * via the {@link Ext#require} shorthand. Ext.Loader supports both asynchronous and synchronous loading + * approaches, and leverage their advantages for the best development flow. We'll discuss about the pros and cons of each approach: + * + * # Asynchronous Loading # + * + * - Advantages: + * + Cross-domain + * + No web server needed: you can run the application via the file system protocol (i.e: `file://path/to/your/index + * .html`) + * + Best possible debugging experience: error messages come with the exact file name and line number + * + * - Disadvantages: + * + Dependencies need to be specified before-hand + * + * ### Method 1: Explicitly include what you need: ### + * + * // Syntax + * Ext.require({String/Array} expressions); + * + * // Example: Single alias + * Ext.require('widget.window'); + * + * // Example: Single class name + * Ext.require('Ext.window.Window'); + * + * // Example: Multiple aliases / class names mix + * Ext.require(['widget.window', 'layout.border', 'Ext.data.Connection']); + * + * // Wildcards + * Ext.require(['widget.*', 'layout.*', 'Ext.data.*']); + * + * ### Method 2: Explicitly exclude what you don't need: ### + * + * // Syntax: Note that it must be in this chaining format. + * Ext.exclude({String/Array} expressions) + * .require({String/Array} expressions); + * + * // Include everything except Ext.data.* + * Ext.exclude('Ext.data.*').require('*'); + * + * // Include all widgets except widget.checkbox*, + * // which will match widget.checkbox, widget.checkboxfield, widget.checkboxgroup, etc. + * Ext.exclude('widget.checkbox*').require('widget.*'); + * + * # Synchronous Loading on Demand # + * + * - Advantages: + * + There's no need to specify dependencies before-hand, which is always the convenience of including ext-all.js + * before + * + * - Disadvantages: + * + Not as good debugging experience since file name won't be shown (except in Firebug at the moment) + * + Must be from the same domain due to XHR restriction + * + Need a web server, same reason as above + * + * There's one simple rule to follow: Instantiate everything with Ext.create instead of the `new` keyword + * + * Ext.create('widget.window', { ... }); // Instead of new Ext.window.Window({...}); + * + * Ext.create('Ext.window.Window', {}); // Same as above, using full class name instead of alias + * + * Ext.widget('window', {}); // Same as above, all you need is the traditional `xtype` + * + * Behind the scene, {@link Ext.ClassManager} will automatically check whether the given class name / alias has already + * existed on the page. If it's not, Ext.Loader will immediately switch itself to synchronous mode and automatic load the given + * class and all its dependencies. + * + * # Hybrid Loading - The Best of Both Worlds # + * + * It has all the advantages combined from asynchronous and synchronous loading. The development flow is simple: + * + * ### Step 1: Start writing your application using synchronous approach. + * + * Ext.Loader will automatically fetch all dependencies on demand as they're needed during run-time. For example: + * + * Ext.onReady(function(){ + * var window = Ext.widget('window', { + * width: 500, + * height: 300, + * layout: { + * type: 'border', + * padding: 5 + * }, + * title: 'Hello Dialog', + * items: [{ + * title: 'Navigation', + * collapsible: true, + * region: 'west', + * width: 200, + * html: 'Hello', + * split: true + * }, { + * title: 'TabPanel', + * region: 'center' + * }] + * }); + * + * window.show(); + * }) + * + * ### Step 2: Along the way, when you need better debugging ability, watch the console for warnings like these: ### + * + * [Ext.Loader] Synchronously loading 'Ext.window.Window'; consider adding Ext.require('Ext.window.Window') before your application's code + * ClassManager.js:432 + * [Ext.Loader] Synchronously loading 'Ext.layout.container.Border'; consider adding Ext.require('Ext.layout.container.Border') before your application's code + * + * Simply copy and paste the suggested code above `Ext.onReady`, i.e: + * + * Ext.require('Ext.window.Window'); + * Ext.require('Ext.layout.container.Border'); + * + * Ext.onReady(...); + * + * Everything should now load via asynchronous mode. + * + * # Deployment # + * + * It's important to note that dynamic loading should only be used during development on your local machines. + * During production, all dependencies should be combined into one single JavaScript file. Ext.Loader makes + * the whole process of transitioning from / to between development / maintenance and production as easy as + * possible. Internally {@link Ext.Loader#history Ext.Loader.history} maintains the list of all dependencies your application + * needs in the exact loading sequence. It's as simple as concatenating all files in this array into one, + * then include it on top of your application. + * + * This process will be automated with Sencha Command, to be released and documented towards Ext JS 4 Final. + * + * @singleton + */ + +Ext.Loader = new function() { + var Loader = this, + Manager = Ext.ClassManager, + Class = Ext.Class, + flexSetter = Ext.Function.flexSetter, + alias = Ext.Function.alias, + pass = Ext.Function.pass, + defer = Ext.Function.defer, + arrayErase = Ext.Array.erase, + // + isNonBrowser = typeof window == 'undefined', + isNodeJS = isNonBrowser && (typeof require == 'function'), + isJsdb = isNonBrowser && typeof system != 'undefined' && system.program.search(/jsdb/) !== -1, + isPhantomJS = (typeof phantom != 'undefined' && phantom.fs), + // + dependencyProperties = ['extend', 'mixins', 'requires'], + isInHistory = {}, + history = [], + slashDotSlashRe = /\/\.\//g, + dotRe = /\./g, + setPathCount = 0; + + Ext.apply(Loader, { + + /** + * @private + */ + isInHistory: isInHistory, + + /** + * An array of class names to keep track of the dependency loading order. + * This is not guaranteed to be the same everytime due to the asynchronous + * nature of the Loader. + * + * @property {Array} history + */ + history: history, + + /** + * Configuration + * @private + */ + config: { + /** + * @cfg {Boolean} enabled + * Whether or not to enable the dynamic dependency loading feature. + */ + enabled: false, + + /** + * @cfg {Boolean} scriptChainDelay + * millisecond delay between asynchronous script injection (prevents stack overflow on some user agents) + * 'false' disables delay but potentially increases stack load. + */ + scriptChainDelay : false, + + /** + * @cfg {Boolean} disableCaching + * Appends current timestamp to script files to prevent caching. + */ + disableCaching: true, + + /** + * @cfg {String} disableCachingParam + * The get parameter name for the cache buster's timestamp. + */ + disableCachingParam: '_dc', + + /** + * @cfg {Boolean} garbageCollect + * True to prepare an asynchronous script tag for garbage collection (effective only + * if {@link #preserveScripts preserveScripts} is false) + */ + garbageCollect : false, + + /** + * @cfg {Object} paths + * The mapping from namespaces to file paths + * + * { + * 'Ext': '.', // This is set by default, Ext.layout.container.Container will be + * // loaded from ./layout/Container.js + * + * 'My': './src/my_own_folder' // My.layout.Container will be loaded from + * // ./src/my_own_folder/layout/Container.js + * } + * + * Note that all relative paths are relative to the current HTML document. + * If not being specified, for example, Other.awesome.Class + * will simply be loaded from ./Other/awesome/Class.js + */ + paths: { + 'Ext': '.' + }, + + /** + * @cfg {Boolean} preserveScripts + * False to remove and optionally {@link #garbageCollect garbage-collect} asynchronously loaded scripts, + * True to retain script element for browser debugger compatibility and improved load performance. + */ + preserveScripts : true, + + /** + * @cfg {String} scriptCharset + * Optional charset to specify encoding of dynamic script content. + */ + scriptCharset : undefined + }, + + /** + * Set the configuration for the loader. This should be called right after ext-(debug).js + * is included in the page, and before Ext.onReady. i.e: + * + * + * + * + * + * Refer to config options of {@link Ext.Loader} for the list of possible properties + * + * @param {Object} config The config object to override the default values + * @return {Ext.Loader} this + */ + setConfig: function(name, value) { + if (Ext.isObject(name) && arguments.length === 1) { + Ext.merge(Loader.config, name); + + if ('paths' in name) { + Ext.app.collectNamespaces(name.paths); + } + } + else { + Loader.config[name] = (Ext.isObject(value)) ? Ext.merge(Loader.config[name], value) : value; + + if (name === 'paths') { + Ext.app.collectNamespaces(value); + } + } + + return Loader; + }, + + /** + * Get the config value corresponding to the specified name. If no name is given, will return the config object + * @param {String} name The config property name + * @return {Object} + */ + getConfig: function(name) { + if (name) { + return Loader.config[name]; + } + + return Loader.config; + }, + + /** + * Sets the path of a namespace. + * For Example: + * + * Ext.Loader.setPath('Ext', '.'); + * + * @param {String/Object} name See {@link Ext.Function#flexSetter flexSetter} + * @param {String} [path] See {@link Ext.Function#flexSetter flexSetter} + * @return {Ext.Loader} this + * @method + */ + setPath: flexSetter(function(name, path) { + Loader.config.paths[name] = path; + Ext.app.namespaces[name] = true; + setPathCount++; + + return Loader; + }), + + /** + * Sets a batch of path entries + * + * @param {Object } paths a set of className: path mappings + * @return {Ext.Loader} this + */ + addClassPathMappings: function(paths) { + var name; + + if(setPathCount == 0){ + Loader.config.paths = paths; + } else { + for(name in paths){ + Loader.config.paths[name] = paths[name]; + } + } + setPathCount++; + return Loader; + }, + + /** + * Translates a className to a file path by adding the + * the proper prefix and converting the .'s to /'s. For example: + * + * Ext.Loader.setPath('My', '/path/to/My'); + * + * alert(Ext.Loader.getPath('My.awesome.Class')); // alerts '/path/to/My/awesome/Class.js' + * + * Note that the deeper namespace levels, if explicitly set, are always resolved first. For example: + * + * Ext.Loader.setPath({ + * 'My': '/path/to/lib', + * 'My.awesome': '/other/path/for/awesome/stuff', + * 'My.awesome.more': '/more/awesome/path' + * }); + * + * alert(Ext.Loader.getPath('My.awesome.Class')); // alerts '/other/path/for/awesome/stuff/Class.js' + * + * alert(Ext.Loader.getPath('My.awesome.more.Class')); // alerts '/more/awesome/path/Class.js' + * + * alert(Ext.Loader.getPath('My.cool.Class')); // alerts '/path/to/lib/cool/Class.js' + * + * alert(Ext.Loader.getPath('Unknown.strange.Stuff')); // alerts 'Unknown/strange/Stuff.js' + * + * @param {String} className + * @return {String} path + */ + getPath: function(className) { + var path = '', + paths = Loader.config.paths, + prefix = Loader.getPrefix(className); + + if (prefix.length > 0) { + if (prefix === className) { + return paths[prefix]; + } + + path = paths[prefix]; + className = className.substring(prefix.length + 1); + } + + if (path.length > 0) { + path += '/'; + } + + return path.replace(slashDotSlashRe, '/') + className.replace(dotRe, "/") + '.js'; + }, + + /** + * @private + * @param {String} className + */ + getPrefix: function(className) { + var paths = Loader.config.paths, + prefix, deepestPrefix = ''; + + if (paths.hasOwnProperty(className)) { + return className; + } + + for (prefix in paths) { + if (paths.hasOwnProperty(prefix) && prefix + '.' === className.substring(0, prefix.length + 1)) { + if (prefix.length > deepestPrefix.length) { + deepestPrefix = prefix; + } + } + } + + return deepestPrefix; + }, + + /** + * @private + * @param {String} className + */ + isAClassNameWithAKnownPrefix: function(className) { + var prefix = Loader.getPrefix(className); + + // we can only say it's really a class if className is not equal to any known namespace + return prefix !== '' && prefix !== className; + }, + + /** + * Loads all classes by the given names and all their direct dependencies; optionally executes + * the given callback function when finishes, within the optional scope. + * + * {@link Ext#require} is alias for {@link Ext.Loader#require}. + * + * @param {String/Array} expressions Can either be a string or an array of string + * @param {Function} fn (Optional) The callback function + * @param {Object} scope (Optional) The execution scope (`this`) of the callback function + * @param {String/Array} excludes (Optional) Classes to be excluded, useful when being used with expressions + */ + require: function(expressions, fn, scope, excludes) { + if (fn) { + fn.call(scope); + } + }, + + /** + * Synchronously loads all classes by the given names and all their direct dependencies; optionally + * executes the given callback function when finishes, within the optional scope. + * + * {@link Ext#syncRequire} is alias for {@link Ext.Loader#syncRequire}. + * + * @param {String/Array} expressions Can either be a string or an array of string + * @param {Function} fn (Optional) The callback function + * @param {Object} scope (Optional) The execution scope (`this`) of the callback function + * @param {String/Array} excludes (Optional) Classes to be excluded, useful when being used with expressions + */ + syncRequire: function() {}, + + /** + * Explicitly exclude files from being loaded. Useful when used in conjunction with a broad include expression. + * Can be chained with more `require` and `exclude` methods, eg: + * + * Ext.exclude('Ext.data.*').require('*'); + * + * Ext.exclude('widget.button*').require('widget.*'); + * + * {@link Ext#exclude} is alias for {@link Ext.Loader#exclude}. + * + * @param {Array} excludes + * @return {Object} object contains `require` method for chaining + */ + exclude: function(excludes) { + return { + require: function(expressions, fn, scope) { + return Loader.require(expressions, fn, scope, excludes); + }, + + syncRequire: function(expressions, fn, scope) { + return Loader.syncRequire(expressions, fn, scope, excludes); + } + }; + }, + + /** + * Add a new listener to be executed when all required scripts are fully loaded + * + * @param {Function} fn The function callback to be executed + * @param {Object} scope The execution scope (this) of the callback function + * @param {Boolean} withDomReady Whether or not to wait for document dom ready as well + */ + onReady: function(fn, scope, withDomReady, options) { + var oldFn; + + if (withDomReady !== false && Ext.onDocumentReady) { + oldFn = fn; + + fn = function() { + Ext.onDocumentReady(oldFn, scope, options); + }; + } + + fn.call(scope); + } + }); + + // + var queue = [], + isClassFileLoaded = {}, + isFileLoaded = {}, + classNameToFilePathMap = {}, + scriptElements = {}, + readyListeners = [], + usedClasses = [], + requiresMap = {}, + comparePriority = function(listenerA, listenerB) { + return listenerB.priority - listenerA.priority; + }; + + Ext.apply(Loader, { + /** + * @private + */ + documentHead: typeof document != 'undefined' && (document.head || document.getElementsByTagName('head')[0]), + + /** + * Flag indicating whether there are still files being loaded + * @private + */ + isLoading: false, + + /** + * Maintain the queue for all dependencies. Each item in the array is an object of the format: + * + * { + * requires: [...], // The required classes for this queue item + * callback: function() { ... } // The function to execute when all classes specified in requires exist + * } + * + * @private + */ + queue: queue, + + /** + * Maintain the list of files that have already been handled so that they never get double-loaded + * @private + */ + isClassFileLoaded: isClassFileLoaded, + + /** + * @private + */ + isFileLoaded: isFileLoaded, + + /** + * Maintain the list of listeners to execute when all required scripts are fully loaded + * @private + */ + readyListeners: readyListeners, + + /** + * Contains classes referenced in `uses` properties. + * @private + */ + optionalRequires: usedClasses, + + /** + * Map of fully qualified class names to an array of dependent classes. + * @private + */ + requiresMap: requiresMap, + + /** + * @private + */ + numPendingFiles: 0, + + /** + * @private + */ + numLoadedFiles: 0, + + /** @private */ + hasFileLoadError: false, + + /** + * @private + */ + classNameToFilePathMap: classNameToFilePathMap, + + /** + * The number of scripts loading via loadScript. + * @private + */ + scriptsLoading: 0, + + /** + * @private + */ + syncModeEnabled: false, + + scriptElements: scriptElements, + + /** + * Refresh all items in the queue. If all dependencies for an item exist during looping, + * it will execute the callback and call refreshQueue again. Triggers onReady when the queue is + * empty + * @private + */ + refreshQueue: function() { + var ln = queue.length, + i, item, j, requires; + + // When the queue of loading classes reaches zero, trigger readiness + + if (!ln && !Loader.scriptsLoading) { + return Loader.triggerReady(); + } + + for (i = 0; i < ln; i++) { + item = queue[i]; + + if (item) { + requires = item.requires; + + // Don't bother checking when the number of files loaded + // is still less than the array length + if (requires.length > Loader.numLoadedFiles) { + continue; + } + + // Remove any required classes that are loaded + for (j = 0; j < requires.length; ) { + if (Manager.isCreated(requires[j])) { + // Take out from the queue + arrayErase(requires, j, 1); + } + else { + j++; + } + } + + // If we've ended up with no required classes, call the callback + if (item.requires.length === 0) { + arrayErase(queue, i, 1); + item.callback.call(item.scope); + Loader.refreshQueue(); + break; + } + } + } + + return Loader; + }, + + /** + * Inject a script element to document's head, call onLoad and onError accordingly + * @private + */ + injectScriptElement: function(url, onLoad, onError, scope, charset) { + var script = document.createElement('script'), + dispatched = false, + config = Loader.config, + onLoadFn = function() { + + if(!dispatched) { + dispatched = true; + script.onload = script.onreadystatechange = script.onerror = null; + if (typeof config.scriptChainDelay == 'number') { + //free the stack (and defer the next script) + defer(onLoad, config.scriptChainDelay, scope); + } else { + onLoad.call(scope); + } + Loader.cleanupScriptElement(script, config.preserveScripts === false, config.garbageCollect); + } + + }, + onErrorFn = function(arg) { + defer(onError, 1, scope); //free the stack + Loader.cleanupScriptElement(script, config.preserveScripts === false, config.garbageCollect); + }; + + script.type = 'text/javascript'; + script.onerror = onErrorFn; + charset = charset || config.scriptCharset; + if (charset) { + script.charset = charset; + } + + /* + * IE9 Standards mode (and others) SHOULD follow the load event only + * (Note: IE9 supports both onload AND readystatechange events) + */ + if ('addEventListener' in script ) { + script.onload = onLoadFn; + } else if ('readyState' in script) { // for + onError.call(scope, "Failed loading '" + url + "', please verify that the file exists", synchronous); + // + }; + + scriptElements[url] = Loader.injectScriptElement(noCacheUrl, onLoad, onScriptError, scope); + } else { + if (typeof XMLHttpRequest != 'undefined') { + xhr = new XMLHttpRequest(); + } else { + xhr = new ActiveXObject('Microsoft.XMLHTTP'); + } + + try { + xhr.open('GET', noCacheUrl, false); + xhr.send(null); + } catch (e) { + isCrossOriginRestricted = true; + } + + status = (xhr.status === 1223) ? 204 : + (xhr.status === 0 && ((self.location || {}).protocol == 'file:' || (self.location || {}).protocol == 'ionp:')) ? 200 : xhr.status; + + isCrossOriginRestricted = isCrossOriginRestricted || (status === 0); + + if (isCrossOriginRestricted + // + && !isPhantomJS + // + ) { + // + onError.call(Loader, "Failed loading synchronously via XHR: '" + url + "'; It's likely that the file is either " + + "being loaded from a different domain or from the local file system whereby cross origin " + + "requests are not allowed due to security reasons. Use asynchronous loading with " + + "Ext.require instead.", synchronous); + // + } + else if ((status >= 200 && status < 300) || (status === 304) + // + || isPhantomJS + // + ) { + // Debugger friendly, file names are still shown even though they're eval'ed code + // Breakpoints work on both Firebug and Chrome's Web Inspector + if (!Ext.isIE) { + debugSourceURL = "\n//@ sourceURL=" + url; + } + + Ext.globalEval(xhr.responseText + debugSourceURL); + + onLoad.call(scope); + } + else { + // + onError.call(Loader, "Failed loading synchronously via XHR: '" + url + "'; please " + + "verify that the file exists. " + + "XHR status code: " + status, synchronous); + // + } + + // Prevent potential IE memory leak + xhr = null; + } + }, + + // documented above + syncRequire: function() { + var syncModeEnabled = Loader.syncModeEnabled; + + if (!syncModeEnabled) { + Loader.syncModeEnabled = true; + } + + Loader.require.apply(Loader, arguments); + + if (!syncModeEnabled) { + Loader.syncModeEnabled = false; + } + + Loader.refreshQueue(); + }, + + // documented above + require: function(expressions, fn, scope, excludes) { + var excluded = {}, + included = {}, + excludedClassNames = [], + possibleClassNames = [], + classNames = [], + references = [], + callback, + syncModeEnabled, + filePath, expression, exclude, className, + possibleClassName, i, j, ln, subLn; + + if (excludes) { + // Convert possible single string to an array. + excludes = (typeof excludes === 'string') ? [ excludes ] : excludes; + + for (i = 0,ln = excludes.length; i < ln; i++) { + exclude = excludes[i]; + + if (typeof exclude == 'string' && exclude.length > 0) { + excludedClassNames = Manager.getNamesByExpression(exclude); + + for (j = 0,subLn = excludedClassNames.length; j < subLn; j++) { + excluded[excludedClassNames[j]] = true; + } + } + } + } + + // Convert possible single string to an array. + expressions = (typeof expressions === 'string') ? [ expressions ] : (expressions ? expressions : []); + + if (fn) { + if (fn.length > 0) { + callback = function() { + var classes = [], + i, ln; + + for (i = 0,ln = references.length; i < ln; i++) { + classes.push(Manager.get(references[i])); + } + + return fn.apply(this, classes); + }; + } + else { + callback = fn; + } + } + else { + callback = Ext.emptyFn; + } + + scope = scope || Ext.global; + + for (i = 0,ln = expressions.length; i < ln; i++) { + expression = expressions[i]; + + if (typeof expression == 'string' && expression.length > 0) { + possibleClassNames = Manager.getNamesByExpression(expression); + subLn = possibleClassNames.length; + + for (j = 0; j < subLn; j++) { + possibleClassName = possibleClassNames[j]; + + if (excluded[possibleClassName] !== true) { + references.push(possibleClassName); + + if (!Manager.isCreated(possibleClassName) && !included[possibleClassName]) { + included[possibleClassName] = true; + classNames.push(possibleClassName); + } + } + } + } + } + + // If the dynamic dependency feature is not being used, throw an error + // if the dependencies are not defined + if (classNames.length > 0) { + if (!Loader.config.enabled) { + throw new Error("Ext.Loader is not enabled, so dependencies cannot be resolved dynamically. " + + "Missing required class" + ((classNames.length > 1) ? "es" : "") + ": " + classNames.join(', ')); + } + } + else { + callback.call(scope); + return Loader; + } + + syncModeEnabled = Loader.syncModeEnabled; + + if (!syncModeEnabled) { + queue.push({ + requires: classNames.slice(), // this array will be modified as the queue is processed, + // so we need a copy of it + callback: callback, + scope: scope + }); + } + + ln = classNames.length; + + for (i = 0; i < ln; i++) { + className = classNames[i]; + + filePath = Loader.getPath(className); + + // If we are synchronously loading a file that has already been asychronously loaded before + // we need to destroy the script tag and revert the count + // This file will then be forced loaded in synchronous + if (syncModeEnabled && isClassFileLoaded.hasOwnProperty(className)) { + if (!isClassFileLoaded[className]) { + Loader.numPendingFiles--; + Loader.removeScriptElement(filePath); + delete isClassFileLoaded[className]; + } + } + + if (!isClassFileLoaded.hasOwnProperty(className)) { + isClassFileLoaded[className] = false; + classNameToFilePathMap[className] = filePath; + + Loader.numPendingFiles++; + Loader.loadScriptFile( + filePath, + pass(Loader.onFileLoaded, [className, filePath], Loader), + pass(Loader.onFileLoadError, [className, filePath], Loader), + Loader, + syncModeEnabled + ); + } + } + + if (syncModeEnabled) { + callback.call(scope); + + if (ln === 1) { + return Manager.get(className); + } + } + + return Loader; + }, + + /** + * @private + * @param {String} className + * @param {String} filePath + */ + onFileLoaded: function(className, filePath) { + var loaded = isClassFileLoaded[className]; + Loader.numLoadedFiles++; + + isClassFileLoaded[className] = true; + isFileLoaded[filePath] = true; + + // In FF, when we sync load something that has had a script tag inserted, the load event may + // sometimes fire even if we clean it up and set it to null, so check if we're already loaded here. + if (!loaded) { + Loader.numPendingFiles--; + } + + if (Loader.numPendingFiles === 0) { + Loader.refreshQueue(); + } + + // + if (!Loader.syncModeEnabled && Loader.numPendingFiles === 0 && Loader.isLoading && !Loader.hasFileLoadError) { + var missingClasses = [], + missingPaths = [], + requires, + i, ln, j, subLn; + + for (i = 0,ln = queue.length; i < ln; i++) { + requires = queue[i].requires; + + for (j = 0,subLn = requires.length; j < subLn; j++) { + if (isClassFileLoaded[requires[j]]) { + missingClasses.push(requires[j]); + } + } + } + + if (missingClasses.length < 1) { + return; + } + + missingClasses = Ext.Array.filter(Ext.Array.unique(missingClasses), function(item) { + return !requiresMap.hasOwnProperty(item); + }, Loader); + + if (missingClasses.length < 1) { + return; + } + + for (i = 0,ln = missingClasses.length; i < ln; i++) { + missingPaths.push(classNameToFilePathMap[missingClasses[i]]); + } + + throw new Error("The following classes are not declared even if their files have been " + + "loaded: '" + missingClasses.join("', '") + "'. Please check the source code of their " + + "corresponding files for possible typos: '" + missingPaths.join("', '")); + } + // + }, + + /** + * @private + */ + onFileLoadError: function(className, filePath, errorMessage, isSynchronous) { + Loader.numPendingFiles--; + Loader.hasFileLoadError = true; + + // + throw new Error("[Ext.Loader] " + errorMessage); + // + }, + + /** + * @private + * Ensure that any classes referenced in the `uses` property are loaded. + */ + addUsedClasses: function (classes) { + var cls, i, ln; + + if (classes) { + classes = (typeof classes == 'string') ? [classes] : classes; + for (i = 0, ln = classes.length; i < ln; i++) { + cls = classes[i]; + if (typeof cls == 'string' && !Ext.Array.contains(usedClasses, cls)) { + usedClasses.push(cls); + } + } + } + + return Loader; + }, + + /** + * @private + */ + triggerReady: function() { + var listener, + refClasses = usedClasses; + + if (Loader.isLoading) { + Loader.isLoading = false; + + if (refClasses.length !== 0) { + // Clone then empty the array to eliminate potential recursive loop issue + refClasses = refClasses.slice(); + usedClasses.length = 0; + // this may immediately call us back if all 'uses' classes + // have been loaded + Loader.require(refClasses, Loader.triggerReady, Loader); + return Loader; + } + } + + Ext.Array.sort(readyListeners, comparePriority); + + // this method can be called with Loader.isLoading either true or false + // (can be called with false when all 'uses' classes are already loaded) + // this may bypass the above if condition + while (readyListeners.length && !Loader.isLoading) { + // calls to refreshQueue may re-enter triggerReady + // so we cannot necessarily iterate the readyListeners array + listener = readyListeners.shift(); + listener.fn.call(listener.scope); + } + + return Loader; + }, + + // Documented above already + onReady: function(fn, scope, withDomReady, options) { + var oldFn; + + if (withDomReady !== false && Ext.onDocumentReady) { + oldFn = fn; + + fn = function() { + Ext.onDocumentReady(oldFn, scope, options); + }; + } + + if (!Loader.isLoading) { + fn.call(scope); + } + else { + readyListeners.push({ + fn: fn, + scope: scope, + priority: (options && options.priority) || 0 + }); + } + }, + + /** + * @private + * @param {String} className + */ + historyPush: function(className) { + if (className && isClassFileLoaded.hasOwnProperty(className) && !isInHistory[className]) { + isInHistory[className] = true; + history.push(className); + } + return Loader; + } + }); + + /** + * Turns on or off the "cache buster" applied to dynamically loaded scripts. Normally + * dynamically loaded scripts have an extra query parameter appended to avoid stale + * cached scripts. This method can be used to disable this mechanism, and is primarily + * useful for testing. This is done using a cookie. + * @param {Boolean} disable True to disable the cache buster. + * @param {String} [path="/"] An optional path to scope the cookie. + * @private + */ + Ext.disableCacheBuster = function (disable, path) { + var date = new Date(); + date.setTime(date.getTime() + (disable ? 10*365 : -1) * 24*60*60*1000); + date = date.toGMTString(); + document.cookie = 'ext-cache=1; expires=' + date + '; path='+(path || '/'); + }; + + // + if (isNonBrowser) { + if (isNodeJS) { + Ext.apply(Loader, { + syncModeEnabled: true, + setPath: flexSetter(function(name, path) { + path = require('fs').realpathSync(path); + Loader.config.paths[name] = path; + + return Loader; + }), + + loadScriptFile: function(filePath, onLoad, onError, scope, synchronous) { + require(filePath); + onLoad.call(scope); + } + }); + } + else if (isJsdb) { + Ext.apply(Loader, { + syncModeEnabled: true, + loadScriptFile: function(filePath, onLoad, onError, scope, synchronous) { + load(filePath); + onLoad.call(scope); + } + }); + } + } + // + // + + /** + * @member Ext + * @method require + * @inheritdoc Ext.Loader#require + */ + Ext.require = alias(Loader, 'require'); + + /** + * @member Ext + * @method syncRequire + * @inheritdoc Ext.Loader#syncRequire + */ + Ext.syncRequire = alias(Loader, 'syncRequire'); + + /** + * Convenient shortcut to {@link Ext.Loader#exclude} + * @member Ext + * @method exclude + * @inheritdoc Ext.Loader#exclude + */ + Ext.exclude = alias(Loader, 'exclude'); + + /** + * @member Ext + * @method onReady + * @ignore + */ + Ext.onReady = function(fn, scope, options) { + Loader.onReady(fn, scope, true, options); + }; + + /** + * @cfg {String[]} requires + * @member Ext.Class + * List of classes that have to be loaded before instantiating this class. + * For example: + * + * Ext.define('Mother', { + * requires: ['Child'], + * giveBirth: function() { + * // we can be sure that child class is available. + * return new Child(); + * } + * }); + */ + Class.registerPreprocessor('loader', function(cls, data, hooks, continueFn) { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(cls, 'Ext.Loader#loaderPreprocessor', arguments); + // + + var me = this, + dependencies = [], + dependency, + className = Manager.getName(cls), + i, j, ln, subLn, value, propertyName, propertyValue, + requiredMap, requiredDep; + + /* + Loop through the dependencyProperties, look for string class names and push + them into a stack, regardless of whether the property's value is a string, array or object. For example: + { + extend: 'Ext.MyClass', + requires: ['Ext.some.OtherClass'], + mixins: { + observable: 'Ext.util.Observable'; + } + } + which will later be transformed into: + { + extend: Ext.MyClass, + requires: [Ext.some.OtherClass], + mixins: { + observable: Ext.util.Observable; + } + } + */ + + for (i = 0,ln = dependencyProperties.length; i < ln; i++) { + propertyName = dependencyProperties[i]; + + if (data.hasOwnProperty(propertyName)) { + propertyValue = data[propertyName]; + + if (typeof propertyValue == 'string') { + dependencies.push(propertyValue); + } + else if (propertyValue instanceof Array) { + for (j = 0, subLn = propertyValue.length; j < subLn; j++) { + value = propertyValue[j]; + + if (typeof value == 'string') { + dependencies.push(value); + } + } + } + else if (typeof propertyValue != 'function') { + for (j in propertyValue) { + if (propertyValue.hasOwnProperty(j)) { + value = propertyValue[j]; + + if (typeof value == 'string') { + dependencies.push(value); + } + } + } + } + } + } + + if (dependencies.length === 0) { + return; + } + + // + // + var deadlockPath = [], + detectDeadlock; + + /* + Automatically detect deadlocks before-hand, + will throw an error with detailed path for ease of debugging. Examples of deadlock cases: + + - A extends B, then B extends A + - A requires B, B requires C, then C requires A + + The detectDeadlock function will recursively transverse till the leaf, hence it can detect deadlocks + no matter how deep the path is. + */ + + if (className) { + requiresMap[className] = dependencies; + // + requiredMap = Loader.requiredByMap || (Loader.requiredByMap = {}); + + for (i = 0,ln = dependencies.length; i < ln; i++) { + dependency = dependencies[i]; + (requiredMap[dependency] || (requiredMap[dependency] = [])).push(className); + } + // + detectDeadlock = function(cls) { + deadlockPath.push(cls); + + if (requiresMap[cls]) { + if (Ext.Array.contains(requiresMap[cls], className)) { + throw new Error("Deadlock detected while loading dependencies! '" + className + "' and '" + + deadlockPath[1] + "' " + "mutually require each other. Path: " + + deadlockPath.join(' -> ') + " -> " + deadlockPath[0]); + } + + for (i = 0,ln = requiresMap[cls].length; i < ln; i++) { + detectDeadlock(requiresMap[cls][i]); + } + } + }; + + detectDeadlock(className); + } + + // + // + + Loader.require(dependencies, function() { + for (i = 0,ln = dependencyProperties.length; i < ln; i++) { + propertyName = dependencyProperties[i]; + + if (data.hasOwnProperty(propertyName)) { + propertyValue = data[propertyName]; + + if (typeof propertyValue == 'string') { + data[propertyName] = Manager.get(propertyValue); + } + else if (propertyValue instanceof Array) { + for (j = 0, subLn = propertyValue.length; j < subLn; j++) { + value = propertyValue[j]; + + if (typeof value == 'string') { + data[propertyName][j] = Manager.get(value); + } + } + } + else if (typeof propertyValue != 'function') { + for (var k in propertyValue) { + if (propertyValue.hasOwnProperty(k)) { + value = propertyValue[k]; + + if (typeof value == 'string') { + data[propertyName][k] = Manager.get(value); + } + } + } + } + } + } + + continueFn.call(me, cls, data, hooks); + }); + + return false; + }, true, 'after', 'className'); + + // + /** + * @cfg {String[]} uses + * @member Ext.Class + * List of optional classes to load together with this class. These aren't neccessarily loaded before + * this class is created, but are guaranteed to be available before Ext.onReady listeners are + * invoked. For example: + * + * Ext.define('Mother', { + * uses: ['Child'], + * giveBirth: function() { + * // This code might, or might not work: + * // return new Child(); + * + * // Instead use Ext.create() to load the class at the spot if not loaded already: + * return Ext.create('Child'); + * } + * }); + */ + Manager.registerPostprocessor('uses', function(name, cls, data) { + // + Ext.classSystemMonitor && Ext.classSystemMonitor(cls, 'Ext.Loader#usesPostprocessor', arguments); + // + + var uses = data.uses; + if (uses) { + Loader.addUsedClasses(uses); + } + }); + + Manager.onCreated(Loader.historyPush); + // +}; + +// simple mechanism for automated means of injecting large amounts of dependency info +// at the appropriate time in the load cycle +if (Ext._classPathMetadata) { + Ext.Loader.addClassPathMappings(Ext._classPathMetadata); + Ext._classPathMetadata = null; +} + +// initalize the default path of the framework +(function() { + var scripts = document.getElementsByTagName('script'), + currentScript = scripts[scripts.length - 1], + src = currentScript.src, + path = src.substring(0, src.lastIndexOf('/') + 1), + Loader = Ext.Loader; + + // + if(src.indexOf("/platform/core/src/class/") != -1) { + path = path + "../../../../extjs/"; + } else if(src.indexOf("/core/src/class/") != -1) { + path = path + "../../../"; + } + // + + Loader.setConfig({ + enabled: true, + disableCaching: + // + (/[?&](?:cache|disableCacheBuster)\b/i.test(location.search) || + /(^|[ ;])ext-cache=1/.test(document.cookie)) ? false : + // + true, + paths: { + 'Ext': path + 'src' + } + }); +})(); + +// allows a tools like dynatrace to deterministically detect onReady state by invoking +// a callback (intended for external consumption) +Ext._endTime = new Date().getTime(); +if (Ext._beforereadyhandler){ + Ext._beforereadyhandler(); +} diff --git a/extjs-django/marvel/static/extjs/src/container/AbstractContainer.js b/extjs-django/marvel/static/extjs/src/container/AbstractContainer.js new file mode 100644 index 0000000..31f5193 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/container/AbstractContainer.js @@ -0,0 +1,1178 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * An abstract base class which provides shared methods for Containers across the Sencha product line. + * + * Please refer to sub class's documentation + * + * @private + */ +Ext.define('Ext.container.AbstractContainer', { + + /* Begin Definitions */ + + extend: 'Ext.Component', + + requires: [ + 'Ext.util.MixedCollection', + 'Ext.layout.container.Auto', + 'Ext.ZIndexManager' + ], + + mixins: { + queryable: 'Ext.Queryable' + }, + + /* End Definitions */ + + renderTpl: '{%this.renderContainer(out,values)%}', + + /** + * @cfg {Ext.enums.Layout/Object} layout + * **Important**: In order for child items to be correctly sized and + * positioned, typically a layout manager **must** be specified through + * the `layout` configuration option. + * + * The sizing and positioning of child {@link #cfg-items} is the responsibility of + * the Container's layout manager which creates and manages the type of layout + * you have in mind. For example: + * + * If the layout configuration is not explicitly specified for + * a general purpose container (e.g. Container or Panel) the + * {@link Ext.layout.container.Auto default layout manager} will be used + * which does nothing but render child components sequentially into the + * Container (no sizing or positioning will be performed in this situation). + * + * **layout** may be specified as either as an Object or as a String: + * + * ## Specify as an Object + * + * Example usage: + * + * layout: { + * type: 'vbox', + * align: 'left' + * } + * + * - **type** + * + * The layout type to be used for this container. If not specified, + * a default {@link Ext.layout.container.Auto} will be created and used. + * + * Valid layout type values are listed in {@link Ext.enums.Layout}. + * + * - Layout specific configuration properties + * + * Additional layout specific configuration properties may also be + * specified. For complete details regarding the valid config options for + * each layout type, see the layout class corresponding to the `type` + * specified. + * + * ## Specify as a String + * + * Example usage: + * + * layout: 'vbox' + * + * - **layout** + * + * The layout `type` to be used for this container (see {@link Ext.enums.Layout} + * for list of valid values). + * + * Additional layout specific configuration properties. For complete + * details regarding the valid config options for each layout type, see the + * layout class corresponding to the `layout` specified. + * + * ## Configuring the default layout type + * + * If a certain Container class has a default layout (For example a {@link Ext.toolbar.Toolbar Toolbar} + * with a default `Box` layout), then to simply configure the default layout, + * use an object, but without the `type` property: + * + * + * xtype: 'toolbar', + * layout: { + * pack: 'center' + * } + * + * @since 2.3.0 + */ + + /** + * @cfg {String/Number} activeItem + * A string component id or the numeric index of the component that should be + * initially activated within the container's layout on render. For example, + * activeItem: 'item-1' or activeItem: 0 (index 0 = the first item in the + * container's collection). activeItem only applies to layout styles that can + * display items one at a time (like {@link Ext.layout.container.Card} and + * {@link Ext.layout.container.Fit}). + * + * @since 2.3.0 + */ + + /** + * @cfg {Object/Object[]} items + * A single item, or an array of child Components to be added to this container + * + * **Unless configured with a {@link #layout}, a Container simply renders child + * Components serially into its encapsulating element and performs no sizing or + * positioning upon them.** + * + * Example: + * + * // specifying a single item + * items: {...}, + * layout: 'fit', // The single items is sized to fit + * + * // specifying multiple items + * items: [{...}, {...}], + * layout: 'hbox', // The items are arranged horizontally + * + * Each item may be: + * + * - A {@link Ext.Component Component} + * - A Component configuration object + * + * If a configuration object is specified, the actual type of Component to be + * instantiated my be indicated by using the {@link Ext.Component#xtype xtype} option. + * + * Every Component class has its own {@link Ext.Component#xtype xtype}. + * + * If an {@link Ext.Component#xtype xtype} is not explicitly specified, the + * {@link #defaultType} for the Container is used, which by default is usually `panel`. + * + * # Notes: + * + * Ext uses lazy rendering. Child Components will only be rendered + * should it become necessary. Items are automatically laid out when they are first + * shown (no sizing is done while hidden), or in response to a {@link #doLayout} call. + * + * Do not specify {@link Ext.panel.Panel#contentEl contentEl} or + * {@link Ext.panel.Panel#html html} with `items`. + * + * @since 2.3.0 + */ + + /** + * @cfg {Object/Function} defaults + * This option is a means of applying default settings to all added items whether added + * through the {@link #cfg-items} config or via the {@link #method-add} or {@link #insert} methods. + * + * Defaults are applied to both config objects and instantiated components conditionally + * so as not to override existing properties in the item (see {@link Ext#applyIf}). + * + * If the defaults option is specified as a function, then the function will be called + * using this Container as the scope (`this` reference) and passing the added item as + * the first parameter. Any resulting object from that call is then applied to the item + * as default properties. + * + * For example, to automatically apply padding to the body of each of a set of + * contained {@link Ext.panel.Panel} items, you could pass: + * `defaults: {bodyStyle:'padding:15px'}`. + * + * Usage: + * + * defaults: { // defaults are applied to items, not the container + * autoScroll: true + * }, + * items: [ + * // default will not be applied here, panel1 will be autoScroll: false + * { + * xtype: 'panel', + * id: 'panel1', + * autoScroll: false + * }, + * // this component will have autoScroll: true + * new Ext.panel.Panel({ + * id: 'panel2' + * }) + * ] + * + * @since 2.3.0 + */ + + /** + * @cfg {Boolean} suspendLayout + * If true, suspend calls to doLayout. Useful when batching multiple adds to a container + * and not passing them as multiple arguments or an array. + */ + suspendLayout : false, + + /** + * @cfg {Boolean} [autoDestroy=true] + * If true the container will automatically destroy any contained component that is removed + * from it, else destruction must be handled manually. + * @since 2.3.0 + */ + autoDestroy : true, + + /** + * @cfg {String} [defaultType="panel"] + * The default {@link Ext.Component xtype} of child Components to create in this Container when + * a child item is specified as a raw configuration object, rather than as an instantiated Component. + * @since 2.3.0 + */ + defaultType: 'panel', + + /** + * @cfg {Boolean} [detachOnRemove=true] + * True to move any component to the {@link Ext#getDetachedBody detachedBody} when the component is + * removed from this container. This option is only applicable when the component is not destroyed while + * being removed, see {@link #autoDestroy} and {@link #method-remove}. If this option is set to false, the DOM + * of the component will remain in the current place until it is explicitly moved. + */ + detachOnRemove: true, + + /* + * @property {Boolean} isContainer + * `true` in this class to identify an object as an instantiated Container, or subclass thereof. + */ + isContainer : true, + + /** + * @property {Number} layoutCounter + * The number of container layout calls made on this object. + * @private + */ + layoutCounter : 0, + + baseCls: Ext.baseCSSPrefix + 'container', + + /** + * @cfg {String[]} bubbleEvents + * An array of events that, when fired, should be bubbled to any parent container. + * See {@link Ext.util.Observable#enableBubble}. + * @since 3.4.0 + */ + + defaultLayoutType: 'auto', + + // @private + initComponent : function(){ + var me = this; + me.addEvents( + /** + * @event afterlayout + * Fires when the components in this container are arranged by the associated layout manager. + * @param {Ext.container.Container} this + * @param {Ext.layout.container.Container} layout The ContainerLayout implementation for this container + * @since 2.3.0 + */ + 'afterlayout', + /** + * @event beforeadd + * Fires before any {@link Ext.Component} is added or inserted into the container. + * A handler can return false to cancel the add. + * @param {Ext.container.Container} this + * @param {Ext.Component} component The component being added + * @param {Number} index The index at which the component will be added to the container's items collection + * @since 2.3.0 + */ + 'beforeadd', + /** + * @event beforeremove + * Fires before any {@link Ext.Component} is removed from the container. A handler can return + * false to cancel the remove. + * @param {Ext.container.Container} this + * @param {Ext.Component} component The component being removed + * @since 2.3.0 + */ + 'beforeremove', + /** + * @event add + * Fires after any {@link Ext.Component} is added or inserted into the container. + * + * **This event bubbles:** 'add' will also be fired when Component is added to any of + * the child containers or their childern or ... + * @param {Ext.container.Container} this + * @param {Ext.Component} component The component that was added + * @param {Number} index The index at which the component was added to the container's items collection + * @since 2.3.0 + */ + 'add', + /** + * @event remove + * Fires after any {@link Ext.Component} is removed from the container. + * + * **This event bubbles:** 'remove' will also be fired when Component is removed from any of + * the child containers or their children or ... + * @param {Ext.container.Container} this + * @param {Ext.Component} component The component that was removed + * @since 2.3.0 + */ + 'remove' + ); + + me.callParent(); + + me.getLayout(); + me.initItems(); + }, + + // @private + initItems : function() { + var me = this, + items = me.items; + + /** + * The MixedCollection containing all the child items of this container. + * @property items + * @type Ext.util.AbstractMixedCollection + * @since 2.3.0 + */ + me.items = new Ext.util.AbstractMixedCollection(false, me.getComponentId); + me.floatingItems = new Ext.util.MixedCollection(false, me.getComponentId); + + if (items) { + if (!Ext.isArray(items)) { + items = [items]; + } + + me.add(items); + } + }, + + /** + * @private + * Returns the focus holder element associated with this Container. By default, this is the Container's target + * element. Subclasses which use embedded focusable elements (such as Window and Button) should override this for use + * by the {@link #method-focus} method. + * @returns {Ext.Element} the focus holding element. + */ + getFocusEl: function() { + return this.getTargetEl(); + }, + + finishRenderChildren: function () { + this.callParent(); + + var layout = this.getLayout(); + + if (layout) { + layout.finishRender(); + } + }, + + beforeRender: function () { + var me = this, + layout = me.getLayout(), + targetCls; + + me.callParent(); + + if (!layout.initialized) { + layout.initLayout(); + } + + targetCls = layout.targetCls; + + if (targetCls) { + me.applyTargetCls(targetCls); + } + }, + + // The targetCls is a CSS class that the layout needs added to the targetEl. The targetEl is where the container's + // children are rendered and is usually just the main el. Some containers (e.g. panels) use a body instead. + // + // In general, if a class overrides getTargetEl it will also need to override this method. This is necessary to + // avoid a post-render step to add the targetCls. + applyTargetCls: function(targetCls) { + this.addCls(targetCls); + }, + + afterComponentLayout: function() { + var floaters = this.floatingItems.items, + floaterCount = floaters.length, + i, floater + + this.callParent(arguments); + + // Contained, unrendered, autoShow items must be shown upon next layout of the Container + for (i = 0; i < floaterCount; i++) { + floater = floaters[i]; + if (!floater.rendered && floater.autoShow) { + floater.show(); + } + } + }, + + onPosition: function() { + this.callParent(arguments); + this.repositionFloatingItems(); + }, + + onResize: function() { + this.callParent(arguments); + this.repositionFloatingItems(); + }, + + repositionFloatingItems: function() { + var floaters = this.floatingItems.items, + floaterCount = floaters.length, + i, floater; + + // Ensure correct positioning of floated children before calling superclass + for (i = 0; i < floaterCount; i++) { + floater = floaters[i]; + if (floater.el && !floater.hidden) { + floater.setPosition(floater.x, floater.y); + } + } + }, + + setupRenderTpl: function (renderTpl) { + this.callParent(arguments); + this.getLayout().setupRenderTpl(renderTpl); + }, + + // @private + getDefaultContentTarget: function() { + return this.el; + }, + + // @private + getContentTarget: function(){ + return this.getLayout().getContentTarget(); + }, + + // @private + setLayout : function(layout) { + var currentLayout = this.layout; + + if (currentLayout && currentLayout.isLayout && currentLayout != layout) { + currentLayout.setOwner(null); + } + + this.layout = layout; + layout.setOwner(this); + }, + + /** + * Returns the {@link Ext.layout.container.Container layout} instance currently associated with this Container. + * If a layout has not been instantiated yet, that is done first + * @return {Ext.layout.container.Container} The layout + */ + getLayout : function() { + var me = this; + if (!me.layout || !me.layout.isLayout) { + // Pass any configured in layout property, defaulting to the prototype's layout property, falling back to Auto. + me.setLayout(Ext.layout.Layout.create(me.layout, me.self.prototype.layout || me.defaultLayoutType)); + } + + return me.layout; + }, + + /** + * Manually force this container's layout to be recalculated. The framework uses this internally to refresh layouts + * form most cases. + * @return {Ext.container.Container} this + * @since 2.3.0 + */ + doLayout : function() { + this.updateLayout(); + return this; + }, + + /** + * Invoked after the Container has laid out (and rendered if necessary) + * its child Components. + * + * @param {Ext.layout.container.Container} layout + * + * @template + * @protected + */ + afterLayout : function(layout) { + var me = this; + ++me.layoutCounter; + if (me.hasListeners.afterlayout) { + me.fireEvent('afterlayout', me, layout); + } + }, + + // @private + prepareItems : function(items, applyDefaults) { + // Create an Array which does not refer to the passed array. + // The passed array is a reference to a user's config object and MUST NOT be mutated. + if (Ext.isArray(items)) { + items = items.slice(); + } else { + items = [items]; + } + + // Make sure defaults are applied and item is initialized + var me = this, + i = 0, + len = items.length, + item; + + for (; i < len; i++) { + item = items[i]; + if (item == null) { + Ext.Array.erase(items, i, 1); + --i; + --len; + } else { + if (applyDefaults) { + item = this.applyDefaults(item); + } + + // Tell the item we're in a container during construction + item.isContained = me; + items[i] = me.lookupComponent(item); + // need to delete both in case item was a config + delete item.isContained; + delete items[i].isContained; + } + } + + return items; + }, + + // @private + applyDefaults : function(config) { + var defaults = this.defaults; + + if (defaults) { + if (Ext.isFunction(defaults)) { + defaults = defaults.call(this, config); + } + + if (Ext.isString(config)) { + config = Ext.ComponentManager.get(config); + } + Ext.applyIf(config, defaults); + } + return config; + }, + + // @private + lookupComponent : function(comp) { + return (typeof comp == 'string') ? Ext.ComponentManager.get(comp) + : Ext.ComponentManager.create(comp, this.defaultType); + }, + + // @private - used as the key lookup function for the items collection + getComponentId : function(comp) { + return comp.getItemId && comp.getItemId(); + }, + + /** + * Adds {@link Ext.Component Component}(s) to this Container. + * + * ## Description: + * + * - Fires the {@link #beforeadd} event before adding. + * - The Container's {@link #defaults default config values} will be applied + * accordingly (see `{@link #defaults}` for details). + * - Fires the `{@link #event-add}` event after the component has been added. + * + * ## Notes: + * + * If the Container is __already rendered__ when `add` + * is called, it will render the newly added Component into its content area. + * + * **If** the Container was configured with a size-managing {@link #layout} manager, + * the Container will recalculate its internal layout at this time too. + * + * Note that the default layout manager simply renders child Components sequentially + * into the content area and thereafter performs no sizing. + * + * If adding multiple new child Components, pass them as an array to the `add` method, + * so that only one layout recalculation is performed. + * + * tb = new {@link Ext.toolbar.Toolbar}({ + * renderTo: document.body + * }); // toolbar is rendered + * // add multiple items. + * // ({@link #defaultType} for {@link Ext.toolbar.Toolbar Toolbar} is 'button') + * tb.add([{text:'Button 1'}, {text:'Button 2'}]); + * + * To inject components between existing ones, use the {@link #insert} method. + * + * ## Warning: + * + * Components directly managed by the BorderLayout layout manager may not be removed + * or added. See the Notes for {@link Ext.layout.container.Border BorderLayout} for + * more details. + * + * @param {Ext.Component[]|Object[]/Ext.Component.../Object...} component + * Either one or more Components to add or an Array of Components to add. + * See `{@link #cfg-items}` for additional information. + * + * @return {Ext.Component[]/Ext.Component} The Components that were added. + * + * @since 2.3.0 + */ + add : function() { + var me = this, + args = Ext.Array.slice(arguments), + index = (typeof args[0] == 'number') ? args.shift() : -1, + layout = me.getLayout(), + addingArray, items, i, length, item, pos, ret; + + if (args.length == 1 && Ext.isArray(args[0])) { + items = args[0]; + addingArray = true; + } else { + items = args; + } + + if (me.rendered) { + Ext.suspendLayouts(); // suspend layouts while adding items... + } + + ret = items = me.prepareItems(items, true); + length = items.length; + + if (!addingArray && length == 1) { // an array of 1 should still return an array... + ret = items[0]; + } + + // loop + for (i = 0; i < length; i++) { + item = items[i]; + // + if (!item) { + Ext.Error.raise("Cannot add null item to Container with itemId/id: " + me.getItemId()); + } + // + + pos = (index < 0) ? me.items.length : (index + i); + + // Floating Components are not added into the items collection, but to a separate floatingItems collection + if (item.floating) { + me.floatingItems.add(item); + item.onAdded(me, pos); + + if (me.hasListeners.add) { + me.fireEvent('add', me, item, pos); + } + } else if ((!me.hasListeners.beforeadd || me.fireEvent('beforeadd', me, item, pos) !== false) && me.onBeforeAdd(item) !== false) { + me.items.insert(pos, item); + item.onAdded(me, pos); + me.onAdd(item, pos); + layout.onAdd(item, pos); + + if (me.hasListeners.add) { + me.fireEvent('add', me, item, pos); + } + } + } + + // We need to update our layout after adding all passed items + me.updateLayout(); + if (me.rendered) { + Ext.resumeLayouts(true); + } + + return ret; + }, + + /** + * This method is invoked after a new Component has been added. It + * is passed the Component which has been added. This method may + * be used to update any internal structure which may depend upon + * the state of the child items. + * + * @param {Ext.Component} component + * @param {Number} position + * + * @template + * @protected + */ + onAdd : Ext.emptyFn, + + /** + * This method is invoked after a new Component has been + * removed. It is passed the Component which has been + * removed. This method may be used to update any internal + * structure which may depend upon the state of the child items. + * + * @param {Ext.Component} component + * @param {Boolean} autoDestroy + * + * @template + * @protected + */ + onRemove : Ext.emptyFn, + + /** + * Inserts a Component into this Container at a specified index. Fires the + * {@link #beforeadd} event before inserting, then fires the {@link #event-add} + * event after the Component has been inserted. + * + * @param {Number} index The index at which the Component will be inserted + * into the Container's items collection + * + * @param {Ext.Component/Object} component The child Component to insert. + * + * Ext uses lazy rendering, and will only render the inserted Component should + * it become necessary. + * + * A Component config object may be passed in order to avoid the overhead of + * constructing a real Component object if lazy rendering might mean that the + * inserted Component will not be rendered immediately. To take advantage of + * this 'lazy instantiation', set the {@link Ext.Component#xtype} config + * property to the registered type of the Component wanted. + * + * For a list of all available xtypes, see {@link Ext.enums.Widget}. + * + * @return {Ext.Component} component The Component (or config object) that was + * inserted with the Container's default config values applied. + * + * @since 2.3.0 + */ + insert : function(index, comp) { + var compIdx; + if (comp && comp.isComponent) { + compIdx = this.items.indexOf(comp); + if (compIdx !== -1) { + return this.move(compIdx, index); + } + } + return this.add(index, comp); + }, + + /** + * Moves a Component within the Container + * @param {Number/Ext.Component} fromIdx The index/component to move. + * @param {Number} toIdx The new index for the Component. + * @return {Ext.Component} component The Component that was moved. + */ + move : function(fromIdx, toIdx) { + var items = this.items, + item; + + if (fromIdx.isComponent) { + fromIdx = items.indexOf(fromIdx); + } + item = items.removeAt(fromIdx); + if (item === false) { + return false; + } + items.insert(toIdx, item); + this.onMove(item, fromIdx, toIdx); + this.updateLayout(); + return item; + }, + + onMove: Ext.emptyFn, + + /** + * This method is invoked before adding a new child Component. It + * is passed the new Component, and may be used to modify the + * Component, or prepare the Container in some way. Returning + * false aborts the add operation. + * + * @param {Ext.Component} item + * + * @template + * @protected + */ + onBeforeAdd : function(item) { + // Remove from current container if it's not us. + if (item.ownerCt && item.ownerCt !== this) { + item.ownerCt.remove(item, false); + } + }, + + /** + * Removes a component from this container. Fires the {@link #beforeremove} event + * before removing, then fires the {@link #event-remove} event after the component has + * been removed. + * + * @param {Ext.Component/String} component The component reference or id to remove. + * + * @param {Boolean} [autoDestroy] True to automatically invoke the removed Component's + * {@link Ext.Component#method-destroy} function. + * + * Defaults to the value of this Container's {@link #autoDestroy} config. + * + * @return {Ext.Component} component The Component that was removed. + * @since 2.3.0 + */ + remove : function(comp, autoDestroy) { + var me = this, + c = me.getComponent(comp); + // + if (Ext.isDefined(Ext.global.console) && !c) { + Ext.global.console.warn("Attempted to remove a component that does not exist. Ext.container.Container: remove takes an argument of the component to remove. cmp.remove() is incorrect usage."); + } + // + + if (c && (!me.hasListeners.beforeremove || me.fireEvent('beforeremove', me, c) !== false)) { + me.doRemove(c, autoDestroy); + if (me.hasListeners.remove) { + me.fireEvent('remove', me, c); + } + + if (!me.destroying && !c.floating) { + me.updateLayout(); + } + } + + return c; + }, + + // @private + doRemove : function(component, doDestroy) { + // Ensure the flag is set correctly + doDestroy = doDestroy === true || (doDestroy !== false && this.autoDestroy); + + var me = this, + layout = me.layout, + hasLayout = layout && me.rendered, + + // isDestroying flag is true if the removal is taking place as part of destruction, OR if removal is intended to *cause* destruction + isDestroying = component.destroying || doDestroy, + floating = component.floating; + + if (floating) { + me.floatingItems.remove(component); + } else { + me.items.remove(component); + } + + // Inform ownerLayout of removal before deleting the ownerLayout & ownerCt references in the onRemoved call + if (hasLayout && !floating) { + // Removing a component from a running layout has to cancel the layout + if (layout.running) { + Ext.AbstractComponent.cancelLayout(component, isDestroying); + } + layout.onRemove(component, isDestroying); + } + + component.onRemoved(isDestroying); + + me.onRemove(component, isDestroying); + + // Destroy if we were explicitly told to, or we're defaulting to our autoDestroy configuration + if (doDestroy) { + component.destroy(); + } + // Only have the layout perform remove postprocessing if the Component is not being destroyed + else { + if (hasLayout && !floating) { + layout.afterRemove(component); + } + if (me.detachOnRemove && component.rendered) { + me.detachComponent(component); + } + } + }, + + // Detach a component from the DOM + detachComponent: function(component){ + Ext.getDetachedBody().appendChild(component.getEl()); + }, + + /** + * Removes all components from this container. + * @param {Boolean} [autoDestroy] True to automatically invoke the removed + * Component's {@link Ext.Component#method-destroy} function. + * Defaults to the value of this Container's {@link #autoDestroy} config. + * @return {Ext.Component[]} Array of the removed components + * @since 2.3.0 + */ + removeAll : function(autoDestroy) { + var me = this, + removeItems = me.items.items.slice().concat(me.floatingItems.items), + items = [], + i = 0, + len = removeItems.length, + item; + + // Suspend Layouts while we remove multiple items from the container + me.suspendLayouts(); + for (; i < len; i++) { + item = removeItems[i]; + me.remove(item, autoDestroy); + + if (item.ownerCt !== me) { + items.push(item); + } + } + + // Resume Layouts now that all items have been removed and do a single layout (if we removed anything!) + me.resumeLayouts(!!len); + return items; + }, + + /** + * @protected + * Used by {@link Ext.ComponentQuery ComponentQuery}, {@link #child} and {@link #down} to retrieve all of the items + * which can potentially be considered a child of this Container. + * + * This may be overriden by Components which have ownership of Components + * that are not contained in the {@link #property-items} collection. + * + * NOTE: IMPORTANT note for maintainers: + * Items are returned in tree traversal order. Each item is appended to the result array + * followed by the results of that child's getRefItems call. + * Floating child items are appended after internal child items. + */ + getRefItems : function(deep) { + var me = this, + items = me.items.items, + len = items.length, + i = 0, + item, + result = []; + + for (; i < len; i++) { + item = items[i]; + result[result.length] = item; + if (deep && item.getRefItems) { + result.push.apply(result, item.getRefItems(true)); + } + } + + // Append floating items to the list. + items = me.floatingItems.items; + len = items.length; + for (i = 0; i < len; i++) { + item = items[i]; + result[result.length] = item; + if (deep && item.getRefItems) { + result.push.apply(result, item.getRefItems(true)); + } + } + + return result; + }, + + /** + * Cascades down the component/container heirarchy from this component (passed in + * the first call), calling the specified function with each component. The scope + * (this reference) of the function call will be the scope provided or the current + * component. The arguments to the function will be the args provided or the current + * component. If the function returns false at any point, the cascade is stopped on + * that branch. + * @param {Function} fn The function to call + * @param {Object} [scope] The scope of the function (defaults to current component) + * @param {Array} [args] The args to call the function with. The current component + * always passed as the last argument. + * @return {Ext.Container} this + * @since 2.3.0 + */ + cascade : function(fn, scope, origArgs){ + var me = this, + cs = me.items ? me.items.items : [], + len = cs.length, + i = 0, + c, + args = origArgs ? origArgs.concat(me) : [me], + componentIndex = args.length - 1; + + if (fn.apply(scope || me, args) !== false) { + for (; i < len; i++){ + c = cs[i]; + if (c.cascade) { + c.cascade(fn, scope, origArgs); + } else { + args[componentIndex] = c; + fn.apply(scope || cs, args); + } + } + } + return this; + }, + + /** + * Determines whether **this Container** is an ancestor of the passed Component. + * This will return `true` if the passed Component is anywhere within the subtree + * beneath this Container. + * @param {Ext.Component} possibleDescendant The Component to test for presence + * within this Container's subtree. + */ + isAncestor: function(possibleDescendant) { + while (possibleDescendant) { + if (possibleDescendant.ownerCt === this) { + return true; + } + possibleDescendant = possibleDescendant.ownerCt; + } + }, + + /** + * Examines this container's {@link #property-items} **property** and gets a direct child + * component of this container. + * + * @param {String/Number} comp This parameter may be any of the following: + * + * - a **String** : representing the {@link Ext.Component#itemId itemId} + * or {@link Ext.Component#id id} of the child component. + * - a **Number** : representing the position of the child component + * within the {@link #property-items} **property** + * + * For additional information see {@link Ext.util.MixedCollection#get}. + * + * @return {Ext.Component} The component (if found). + * + * @since 2.3.0 + */ + getComponent : function(comp) { + if (Ext.isObject(comp)) { + comp = comp.getItemId(); + } + + var c = this.items.get(comp); + + // Only allow finding by index on the main items container + if (!c && typeof comp != 'number') { + c = this.floatingItems.get(comp); + } + + return c; + }, + + /** + * Determines whether the passed Component is either an immediate child of this Container, + * or whether it is a descendant. + * + * @param {Ext.Component} comp The Component to test. + * @param {Boolean} [deep=false] Pass `true` to test for the Component being a descendant at any level. + * @return {Boolean} `true` if the passed Component is contained at the specified level. + */ + contains: function(comp, deep) { + var result = false; + if (deep) { + this.cascade(function(c) { + // Only test if the item is a container + if (c.contains && c.contains(comp)) { + result = true; + return false; + } + }); + return result; + } else { + return this.items.contains(comp) || this.floatingItems.contains(comp); + } + }, + + nextChild: function(child, selector) { + var me = this, + result, + childIndex = me.items.indexOf(child); + + if (childIndex !== -1) { + result = selector ? Ext.ComponentQuery(selector, me.items.items.slice(childIndex + 1)) : me.items.getAt(childIndex + 1); + if (!result && me.ownerCt) { + result = me.ownerCt.nextChild(me, selector); + } + } + return result; + }, + + prevChild: function(child, selector) { + var me = this, + result, + childIndex = me.items.indexOf(child); + + if (childIndex !== -1) { + result = selector ? Ext.ComponentQuery(selector, me.items.items.slice(childIndex + 1)) : me.items.getAt(childIndex + 1); + if (!result && me.ownerCt) { + result = me.ownerCt.nextChild(me, selector); + } + } + return result; + }, + + // @private + // Enable all immediate children that was previously disabled + // Override enable because onEnable only gets called when rendered + enable: function() { + this.callParent(arguments); + + var itemsToDisable = this.getChildItemsToDisable(), + length = itemsToDisable.length, + item, i; + + for (i = 0; i < length; i++) { + item = itemsToDisable[i]; + + if (item.resetDisable) { + item.enable(); + } + } + + return this; + }, + + // Inherit docs + // Disable all immediate children that was previously disabled + // Override disable because onDisable only gets called when rendered + disable: function() { + this.callParent(arguments); + + var itemsToDisable = this.getChildItemsToDisable(), + length = itemsToDisable.length, + item, i; + + for (i = 0; i < length; i++) { + item = itemsToDisable[i]; + + if (item.resetDisable !== false && !item.disabled) { + item.disable(); + item.resetDisable = true; + } + } + + return this; + }, + + /** + * Gets a list of child components to enable/disable when the container is + * enabled/disabled + * @private + * @return {Ext.Component[]} Items to be enabled/disabled + */ + getChildItemsToDisable: function(){ + return this.query('[isFormField],button'); + }, + + // @private + // @since 2.3.0 + beforeDestroy : function() { + var me = this, + items = me.items, + floatingItems = me.floatingItems, + c; + + if (items) { + while ((c = items.first())) { + me.doRemove(c, true); + } + } + + if (floatingItems) { + while ((c = floatingItems.first())) { + me.doRemove(c, true); + } + } + + Ext.destroy( + me.layout + ); + me.callParent(); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/container/ButtonGroup.js b/extjs-django/marvel/static/extjs/src/container/ButtonGroup.js new file mode 100644 index 0000000..5e8e5c2 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/container/ButtonGroup.js @@ -0,0 +1,165 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * Provides a container for arranging a group of related Buttons in a tabular manner. + * + * @example + * Ext.create('Ext.panel.Panel', { + * title: 'Panel with ButtonGroup', + * width: 300, + * height:200, + * renderTo: document.body, + * bodyPadding: 10, + * html: 'HTML Panel Content', + * tbar: [{ + * xtype: 'buttongroup', + * columns: 3, + * title: 'Clipboard', + * items: [{ + * text: 'Paste', + * scale: 'large', + * rowspan: 3, + * iconCls: 'add', + * iconAlign: 'top', + * cls: 'btn-as-arrow' + * },{ + * xtype:'splitbutton', + * text: 'Menu Button', + * scale: 'large', + * rowspan: 3, + * iconCls: 'add', + * iconAlign: 'top', + * arrowAlign:'bottom', + * menu: [{ text: 'Menu Item 1' }] + * },{ + * xtype:'splitbutton', text: 'Cut', iconCls: 'add16', menu: [{text: 'Cut Menu Item'}] + * },{ + * text: 'Copy', iconCls: 'add16' + * },{ + * text: 'Format', iconCls: 'add16' + * }] + * }] + * }); + * + */ +Ext.define('Ext.container.ButtonGroup', { + extend: 'Ext.panel.Panel', + alias: 'widget.buttongroup', + alternateClassName: 'Ext.ButtonGroup', + + requires: ['Ext.layout.container.Table'], + + /** + * @cfg {Number} columns + * The `columns` configuration property passed to the {@link #layout configured layout manager}. + * See {@link Ext.layout.container.Table#columns}. + */ + + /** + * @cfg {String} baseCls + * @inheritdoc + */ + baseCls: Ext.baseCSSPrefix + 'btn-group', + + /** + * @cfg {Ext.enums.Layout/Object} layout + * @inheritdoc + */ + layout: { + type: 'table' + }, + + defaultType: 'button', + + /** + * @cfg {Boolean} frame + * @inheritdoc + */ + frame: true, + + /** + * @cfg {String} defaultButtonUI + * A default {@link Ext.Component#ui ui} to use for {@link Ext.button.Button Button} items + */ + + frameHeader: false, + + titleAlign: 'center', + + noTitleCls: 'notitle', + + initComponent : function() { + // Copy the component's columns config to the layout if specified + var me = this, + cols = me.columns; + + if (cols) { + me.layout = Ext.apply({}, {columns: cols}, me.layout); + } + + if (!me.title) { + me.addClsWithUI(me.noTitleCls); + } + me.callParent(arguments); + }, + + // private + onBeforeAdd: function(component) { + if (component.isButton) { + if (this.defaultButtonUI && component.ui === 'default' && + !component.hasOwnProperty('ui')) { + component.ui = this.defaultButtonUI; + } else { + component.ui = component.ui + '-toolbar'; + } + } + this.callParent(arguments); + }, + + //private + applyDefaults: function(c) { + if (!Ext.isString(c)) { + c = this.callParent(arguments); + } + return c; + } + + /** + * @cfg {Array} tools + * @private + */ + /** + * @cfg {Boolean} collapsible + * @private + */ + /** + * @cfg {Boolean} collapseMode + * @private + */ + /** + * @cfg {Boolean} animCollapse + * @private + */ + /** + * @cfg {Boolean} closable + * @private + */ +}); diff --git a/extjs-django/marvel/static/extjs/src/container/Container.js b/extjs-django/marvel/static/extjs/src/container/Container.js new file mode 100644 index 0000000..dfbdbba --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/container/Container.js @@ -0,0 +1,195 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * Base class for any Ext.Component that may contain other Components. Containers handle the basic behavior of + * containing items, namely adding, inserting and removing items. + * + * The most commonly used Container classes are Ext.panel.Panel, Ext.window.Window and + * Ext.tab.Panel. If you do not need the capabilities offered by the aforementioned classes you can create a + * lightweight Container to be encapsulated by an HTML element to your specifications by using the + * {@link Ext.Component#autoEl autoEl} config option. + * + * The code below illustrates how to explicitly create a Container: + * + * @example + * // Explicitly create a Container + * Ext.create('Ext.container.Container', { + * layout: { + * type: 'hbox' + * }, + * width: 400, + * renderTo: Ext.getBody(), + * border: 1, + * style: {borderColor:'#000000', borderStyle:'solid', borderWidth:'1px'}, + * defaults: { + * labelWidth: 80, + * // implicitly create Container by specifying xtype + * xtype: 'datefield', + * flex: 1, + * style: { + * padding: '10px' + * } + * }, + * items: [{ + * xtype: 'datefield', + * name: 'startDate', + * fieldLabel: 'Start date' + * },{ + * xtype: 'datefield', + * name: 'endDate', + * fieldLabel: 'End date' + * }] + * }); + * + * ## Layout + * + * Container classes delegate the rendering of child Components to a layout manager class which must be configured into + * the Container using the `{@link #layout}` configuration property. + * + * When either specifying child `{@link #cfg-items}` of a Container, or dynamically {@link #method-add adding} Components to a + * Container, remember to consider how you wish the Container to arrange those child elements, and whether those child + * elements need to be sized using one of Ext's built-in `{@link #layout}` schemes. By default, Containers use the + * {@link Ext.layout.container.Auto Auto} scheme which only renders child components, appending them one after the other + * inside the Container, and **does not apply any sizing** at all. + * + * A common mistake is when a developer neglects to specify a `{@link #layout}` (e.g. widgets like GridPanels or + * TreePanels are added to Containers for which no `{@link #layout}` has been specified). If a Container is left to + * use the default {@link Ext.layout.container.Auto Auto} scheme, none of its child components will be resized, or changed in + * any way when the Container is resized. + * + * Certain layout managers allow dynamic addition of child components. Those that do include + * Ext.layout.container.Card, Ext.layout.container.Anchor, Ext.layout.container.VBox, + * Ext.layout.container.HBox, and Ext.layout.container.Table. For example: + * + * // Create the GridPanel. + * var myNewGrid = Ext.create('Ext.grid.Panel', { + * store: myStore, + * headers: myHeaders, + * title: 'Results', // the title becomes the title of the tab + * }); + * + * myTabPanel.add(myNewGrid); // {@link Ext.tab.Panel} implicitly uses {@link Ext.layout.container.Card Card} + * myTabPanel.{@link Ext.tab.Panel#setActiveTab setActiveTab}(myNewGrid); + * + * The example above adds a newly created GridPanel to a TabPanel. Note that a TabPanel uses {@link + * Ext.layout.container.Card} as its layout manager which means all its child items are sized to {@link + * Ext.layout.container.Fit fit} exactly into its client area. + * + * **_Overnesting is a common problem_**. An example of overnesting occurs when a GridPanel is added to a TabPanel by + * wrapping the GridPanel _inside_ a wrapping Panel (that has no `{@link #layout}` specified) and then add that + * wrapping Panel to the TabPanel. The point to realize is that a GridPanel **is** a Component which can be added + * directly to a Container. If the wrapping Panel has no `{@link #layout}` configuration, then the overnested + * GridPanel will not be sized as expected. + * + * ## Adding via remote configuration + * + * A server side script can be used to add Components which are generated dynamically on the server. An example of + * adding a GridPanel to a TabPanel where the GridPanel is generated by the server based on certain parameters: + * + * // execute an Ajax request to invoke server side script: + * Ext.Ajax.request({ + * url: 'gen-invoice-grid.php', + * // send additional parameters to instruct server script + * params: { + * startDate: Ext.getCmp('start-date').getValue(), + * endDate: Ext.getCmp('end-date').getValue() + * }, + * // process the response object to add it to the TabPanel: + * success: function(xhr) { + * var newComponent = eval(xhr.responseText); // see discussion below + * myTabPanel.add(newComponent); // add the component to the TabPanel + * myTabPanel.setActiveTab(newComponent); + * }, + * failure: function() { + * Ext.Msg.alert("Grid create failed", "Server communication failure"); + * } + * }); + * + * The server script needs to return a JSON representation of a configuration object, which, when decoded will return a + * config object with an {@link Ext.Component#xtype xtype}. The server might return the following JSON: + * + * { + * "xtype": 'grid', + * "title": 'Invoice Report', + * "store": { + * "model": 'Invoice', + * "proxy": { + * "type": 'ajax', + * "url": 'get-invoice-data.php', + * "reader": { + * "type": 'json' + * "record": 'transaction', + * "idProperty": 'id', + * "totalRecords": 'total' + * }) + * }, + * "autoLoad": { + * "params": { + * "startDate": '01/01/2008', + * "endDate": '01/31/2008' + * } + * } + * }, + * "headers": [ + * {"header": "Customer", "width": 250, "dataIndex": 'customer', "sortable": true}, + * {"header": "Invoice Number", "width": 120, "dataIndex": 'invNo', "sortable": true}, + * {"header": "Invoice Date", "width": 100, "dataIndex": 'date', "renderer": Ext.util.Format.dateRenderer('M d, y'), "sortable": true}, + * {"header": "Value", "width": 120, "dataIndex": 'value', "renderer": 'usMoney', "sortable": true} + * ] + * } + * + * When the above code fragment is passed through the `eval` function in the success handler of the Ajax request, the + * result will be a config object which, when added to a Container, will cause instantiation of a GridPanel. **Be sure + * that the Container is configured with a layout which sizes and positions the child items to your requirements.** + * + * **Note:** since the code above is _generated_ by a server script, the `autoLoad` params for the Store, the user's + * preferred date format, the metadata to allow generation of the Model layout, and the ColumnModel can all be generated + * into the code since these are all known on the server. + */ +Ext.define('Ext.container.Container', { + extend: 'Ext.container.AbstractContainer', + alias: 'widget.container', + alternateClassName: 'Ext.Container', + + /** + * Return the immediate child Component in which the passed element is located. + * @param {Ext.Element/HTMLElement/String} el The element to test (or ID of element). + * @param {Boolean} deep If `true`, returns the deepest descendant Component which contains the passed element. + * @return {Ext.Component} The child item which contains the passed element. + */ + getChildByElement: function(el, deep) { + var item, + itemEl, + i = 0, + it = this.getRefItems(), + ln = it.length; + + el = Ext.getDom(el); + for (; i < ln; i++) { + item = it[i]; + itemEl = item.getEl(); + if (itemEl && ((itemEl.dom === el) || itemEl.contains(el))) { + return (deep && item.getChildByElement) ? item.getChildByElement(el, deep) : item; + } + } + return null; + } +}); diff --git a/extjs-django/marvel/static/extjs/src/container/DockingContainer.js b/extjs-django/marvel/static/extjs/src/container/DockingContainer.js new file mode 100644 index 0000000..3d8b4ec --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/container/DockingContainer.js @@ -0,0 +1,323 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * + */ +Ext.define('Ext.container.DockingContainer', { + + /* Begin Definitions */ + + requires: ['Ext.util.MixedCollection', 'Ext.Element' ], + + /* End Definitions */ + + isDockingContainer: true, + + /** + * @event dockedadd + * Fires when any {@link Ext.Component} is added or inserted as a docked item. + * @param {Ext.panel.Panel} this + * @param {Ext.Component} component The component being added + * @param {Number} index The index at which the component will be added docked items collection + */ + + /** + * @event dockedremove + * Fires when any {@link Ext.Component} is removed from the docked items. + * @param {Ext.panel.Panel} this + * @param {Ext.Component} component The component being removed + */ + + /** + * @cfg {Object} defaultDockWeights + * This object holds the default weights applied to dockedItems that have no weight. These start with a + * weight of 1, to allow negative weights to insert before top items and are odd numbers + * so that even weights can be used to get between different dock orders. + * + * To make default docking order match border layout, do this: + * + * Ext.panel.AbstractPanel.prototype.defaultDockWeights = { top: 1, bottom: 3, left: 5, right: 7 }; + * + * Changing these defaults as above or individually on this object will effect all Panels. + * To change the defaults on a single panel, you should replace the entire object: + * + * initComponent: function () { + * // NOTE: Don't change members of defaultDockWeights since the object is shared. + * this.defaultDockWeights = { top: 1, bottom: 3, left: 5, right: 7 }; + * + * this.callParent(); + * } + * + * To change only one of the default values, you do this: + * + * initComponent: function () { + * // NOTE: Don't change members of defaultDockWeights since the object is shared. + * this.defaultDockWeights = Ext.applyIf({ top: 10 }, this.defaultDockWeights); + * + * this.callParent(); + * } + */ + defaultDockWeights: { + top: { render: 1, visual: 1 }, + left: { render: 3, visual: 5 }, + right: { render: 5, visual: 7 }, + bottom: { render: 7, visual: 3 } + }, + + // @private + // Values to decide which side of the body element docked items must go + // This overides any weight. A left/top will *always* sort before a right/bottom + // regardless of any weight value. Weights sort at either side of the "body" dividing point. + dockOrder: { + top: -1, + left: -1, + right: 1, + bottom: 1 + }, + + /** + * @private + * Number of dock 'left' and 'right' items. + */ + horizontalDocks: 0, + + /** + * Adds docked item(s) to the container. + * + * @param {Object/Object[]} component The Component or array of components to add. The components + * must include a 'dock' parameter on each component to indicate where it should be docked + * ('top', 'right', 'bottom', 'left'). + * @param {Number} [pos] The index at which the Component will be added + * @return {Ext.Component[]} The added components. + */ + addDocked : function(items, pos) { + var me = this, + i = 0, + item, length; + + items = me.prepareItems(items); + length = items.length; + + for (; i < length; i++) { + item = items[i]; + item.dock = item.dock || 'top'; + if (item.dock === 'left' || item.dock === 'right') { + me.horizontalDocks++; + } + + if (pos !== undefined) { + i += pos; + me.dockedItems.insert(i, item); + } else { + me.dockedItems.add(item); + } + + item.onAdded(me, i); + if (me.hasListeners.dockedadd) { + me.fireEvent('dockedadd', me, item, i); + } + if (me.onDockedAdd !== Ext.emptyFn) { + me.onDockedAdd(item); + } + } + + if (me.rendered && !me.suspendLayout) { + me.updateLayout(); + } + return items; + }, + + destroyDockedItems: function(){ + var dockedItems = this.dockedItems, + c; + + if (dockedItems) { + while ((c = dockedItems.first())) { + this.removeDocked(c, true); + } + } + }, + + doRenderDockedItems: function (out, renderData, after) { + // Careful! This method is bolted on to the frameTpl and renderTpl so all we get for + // context is the renderData! The "this" pointer is either the frameTpl or the + // renderTpl instance! + + // Due to framing, we will be called in two different ways: in the frameTpl or in + // the renderTpl. The frameTpl version enters via doRenderFramingDockedItems which + // sets "$skipDockedItems" on the renderTpl's renderData. + // + var me = renderData.$comp, + layout = me.componentLayout, + items, + tree; + + if (layout.getDockedItems && !renderData.$skipDockedItems) { + items = layout.getDockedItems('render', !after); + tree = items && layout.getItemsRenderTree(items); + + if (tree) { + Ext.DomHelper.generateMarkup(tree, out); + } + } + }, + + /** + * Finds a docked component by id, itemId or position. Also see {@link #getDockedItems} + * @param {String/Number} comp The id, itemId or position of the docked component (see {@link Ext.panel.AbstractPanel#getComponent getComponent} for details) + * @return {Ext.Component} The docked component (if found) + */ + getDockedComponent: function(comp) { + if (Ext.isObject(comp)) { + comp = comp.getItemId(); + } + return this.dockedItems.get(comp); + }, + + /** + * Retrieves an array of all currently docked Components. + * + * For example to find a toolbar that has been docked at top: + * + * panel.getDockedItems('toolbar[dock="top"]'); + * + * @param {String} selector A {@link Ext.ComponentQuery ComponentQuery} selector string to filter the returned items. + * @param {Boolean} beforeBody An optional flag to limit the set of items to only those + * before the body (true) or after the body (false). All components are returned by + * default. + * @return {Ext.Component[]} The array of docked components meeting the specified criteria. + */ + getDockedItems : function(selector, beforeBody) { + var dockedItems = this.getComponentLayout().getDockedItems('render', beforeBody); + + if (selector && dockedItems.length) { + dockedItems = Ext.ComponentQuery.query(selector, dockedItems); + } + + return dockedItems; + }, + + getDockingRefItems: function(deep, containerItems) { + // deep fetches the docked items and their descendants using '*' and then '* *' + var selector = deep && '*,* *', + // start with only the top/left docked items (and maybe their children) + dockedItems = this.getDockedItems(selector, true), + items; + + // push container items (and maybe their children) after top/left docked items: + dockedItems.push.apply(dockedItems, containerItems); + + // push right/bottom docked items (and maybe their children) after container items: + items = this.getDockedItems(selector, false); + dockedItems.push.apply(dockedItems, items); + + return dockedItems; + }, + + initDockingItems: function() { + var me = this, + items = me.dockedItems; + + me.dockedItems = new Ext.util.AbstractMixedCollection(false, me.getComponentId); + if (items) { + me.addDocked(items); + } + }, + + /** + * Inserts docked item(s) to the panel at the indicated position. + * @param {Number} pos The index at which the Component will be inserted + * @param {Object/Object[]} component The Component or array of components to add. The components + * must include a 'dock' paramater on each component to indicate where it should be docked ('top', 'right', + * 'bottom', 'left'). + */ + insertDocked : function(pos, items) { + this.addDocked(items, pos); + }, + + // Placeholder empty functions + /** + * Invoked after a docked item is added to the Panel. + * @param {Ext.Component} component + * @template + * @protected + */ + onDockedAdd : Ext.emptyFn, + /** + * Invoked after a docked item is removed from the Panel. + * @param {Ext.Component} component + * @template + * @protected + */ + onDockedRemove : Ext.emptyFn, + + /** + * Removes the docked item from the panel. + * @param {Ext.Component} item The Component to remove. + * @param {Boolean} autoDestroy (optional) Destroy the component after removal. + */ + removeDocked : function(item, autoDestroy) { + var me = this, + layout, + hasLayout; + + autoDestroy = autoDestroy === true || (autoDestroy !== false && me.autoDestroy); + if (!me.dockedItems.contains(item)) { + return item; + } + if (item.dock === 'left' || item.dock === 'right') { + me.horizontalDocks--; + } + + layout = me.componentLayout; + hasLayout = layout && me.rendered; + + if (hasLayout) { + layout.onRemove(item); + } + + me.dockedItems.remove(item); + // destroying flag is true if the removal is taking place as part of destruction, OR if removal is intended to *cause* destruction + item.onRemoved(item.destroying || autoDestroy); + me.onDockedRemove(item); + + if (autoDestroy) { + item.destroy(); + } else if (hasLayout) { + // not destroying, make any layout related removals + layout.afterRemove(item); + } + + if (me.hasListeners.dockedremove) { + me.fireEvent('dockedremove', me, item); + } + + if (!me.destroying && !me.suspendLayout) { + me.updateLayout(); + } + + return item; + }, + + setupDockingRenderTpl: function (renderTpl) { + renderTpl.renderDockedItems = this.doRenderDockedItems; + } +}); diff --git a/extjs-django/marvel/static/extjs/src/container/Monitor.js b/extjs-django/marvel/static/extjs/src/container/Monitor.js new file mode 100644 index 0000000..9aa43b2 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/container/Monitor.js @@ -0,0 +1,205 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * This is a utility class for being able to track all items of a particular type + * inside any level at a container. This can be used in favour of bubbling add/remove events + * which can add a large perf cost when implemented globally + * @private + */ +Ext.define('Ext.container.Monitor', { + target: null, + selector: '', + + scope: null, + addHandler: null, + removeHandler: null, + + disabled: 0, + + constructor: function(config){ + Ext.apply(this, config); + }, + + bind: function(target){ + var me = this; + + me.target = target; + target.on('beforedestroy', me.disable, me); + me.onContainerAdd(target); + }, + + unbind: function() { + var me = this, + target = me.target; + + if (target) { + target.un('beforedestroy', me.disable, me); + } + me.items = null; + }, + + disable: function(){ + ++this.disabled; + }, + + enable: function(){ + if (this.disabled > 0) { + --this.disabled; + } + }, + + handleAdd: function(ct, comp) { + if (!this.disabled) { + if (comp.is(this.selector)) { + this.onItemAdd(comp.ownerCt, comp); + } + + if (comp.isQueryable) { + this.onContainerAdd(comp); + } + } + }, + + onItemAdd: function(ct, comp){ + var me = this, + items = me.items, + handler = me.addHandler; + + if (!me.disabled) { + if (handler) { + handler.call(me.scope || comp, comp); + } + if (items) { + items.add(comp); + } + } + }, + + onItemRemove: function(ct, comp){ + var me = this, + items = me.items, + handler = me.removeHandler; + + if (!me.disabled) { + if (handler) { + handler.call(me.scope || comp, comp); + } + if (items) { + items.remove(comp); + } + } + }, + + onContainerAdd: function(ct, preventChildren) { + var me = this, + items, len, + handleAdd = me.handleAdd, + handleRemove = me.handleRemove, + i, comp; + + if (ct.isContainer) { + ct.on('add', handleAdd, me); + ct.on('dockedadd', handleAdd, me); + ct.on('remove', handleRemove, me); + ct.on('dockedremove', handleRemove, me); + } + + // Means we've been called by a parent container so the selector + // matchers have already been processed + if (preventChildren !== true) { + items = ct.query(me.selector); + for (i = 0, len = items.length; i < len; ++i) { + comp = items[i]; + me.onItemAdd(comp.ownerCt, comp); + } + } + + items = ct.query('container'); + for (i = 0, len = items.length; i < len; ++i) { + me.onContainerAdd(items[i], true); + } + + }, + + handleRemove: function(ct, comp) { + var me = this; + + // During a destroy we don't want to maintain any of this information, + // so typically we'll be disabled here + if (!me.disabled) { + if (comp.is(me.selector)) { + me.onItemRemove(ct, comp); + } + + if (comp.isQueryable) { + me.onContainerRemove(ct, comp); + } + } + }, + + onContainerRemove: function(ct, comp){ + var me = this, + items, i, len, item; + + // If it's not a container, it means it's a queryable that isn't a container. + // For example a button with a menu + if (!comp.isDestroyed && !comp.destroying && comp.isContainer) { + me.removeCtListeners(comp); + + items = comp.query(me.selector); + for (i = 0, len = items.length; i < len; ++i) { + item = items[i]; + me.onItemRemove(item.ownerCt, item); + } + + items = comp.query('container'); + for (i = 0, len = items.length; i < len; ++i) { + me.removeCtListeners(items[i]); + } + } else { + // comp destroying, or we need to invalidate the collection + me.invalidateItems(); + } + }, + + removeCtListeners: function(comp){ + var me = this; + comp.un('add', me.handleAdd, me); + comp.un('dockedadd', me.handleAdd, me); + comp.un('remove', me.handleRemove, me); + comp.un('dockedremove', me.handleRemove, me); + }, + + getItems: function(){ + var me = this, + items = me.items; + + if (!items) { + items = me.items = new Ext.util.MixedCollection(); + items.addAll(me.target.query(me.selector)); + } + return items; + }, + + invalidateItems: function(){ + this.items = null; + } +}); diff --git a/extjs-django/marvel/static/extjs/src/container/Viewport.js b/extjs-django/marvel/static/extjs/src/container/Viewport.js new file mode 100644 index 0000000..0e5281e --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/container/Viewport.js @@ -0,0 +1,206 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * A specialized container representing the viewable application area (the browser viewport). + * + * The Viewport renders itself to the document body, and automatically sizes itself to the size of + * the browser viewport and manages window resizing. There may only be one Viewport created + * in a page. + * + * Like any {@link Ext.container.Container Container}, a Viewport will only perform sizing and positioning + * on its child Components if you configure it with a {@link #layout}. + * + * A Common layout used with Viewports is {@link Ext.layout.container.Border border layout}, but if the + * required layout is simpler, a different layout should be chosen. + * + * For example, to simply make a single child item occupy all available space, use + * {@link Ext.layout.container.Fit fit layout}. + * + * To display one "active" item at full size from a choice of several child items, use + * {@link Ext.layout.container.Card card layout}. + * + * Inner layouts are available because all {@link Ext.panel.Panel Panel}s + * added to the Viewport, either through its {@link #cfg-items}, or the {@link #method-add} + * method of any of its child Panels may themselves have a layout. + * + * The Viewport does not provide scrolling, so child Panels within the Viewport should provide + * for scrolling if needed using the {@link #autoScroll} config. + * + * An example showing a classic application border layout: + * + * @example + * Ext.create('Ext.container.Viewport', { + * layout: 'border', + * items: [{ + * region: 'north', + * html: '

    Page Title

    ', + * border: false, + * margins: '0 0 5 0' + * }, { + * region: 'west', + * collapsible: true, + * title: 'Navigation', + * width: 150 + * // could use a TreePanel or AccordionLayout for navigational items + * }, { + * region: 'south', + * title: 'South Panel', + * collapsible: true, + * html: 'Information goes here', + * split: true, + * height: 100, + * minHeight: 100 + * }, { + * region: 'east', + * title: 'East Panel', + * collapsible: true, + * split: true, + * width: 150 + * }, { + * region: 'center', + * xtype: 'tabpanel', // TabPanel itself has no title + * activeTab: 0, // First tab active by default + * items: { + * title: 'Default Tab', + * html: 'The first tab\'s content. Others may be added dynamically' + * } + * }] + * }); + */ +Ext.define('Ext.container.Viewport', { + extend: 'Ext.container.Container', + alias: 'widget.viewport', + requires: ['Ext.EventManager'], + alternateClassName: 'Ext.Viewport', + + // Privatize config options which, if used, would interfere with the + // correct operation of the Viewport as the sole manager of the + // layout of the document body. + + /** + * @cfg {String/HTMLElement/Ext.Element} applyTo + * @private + */ + + /** + * @cfg {Boolean} allowDomMove + * @private + */ + + /** + * @cfg {String/HTMLElement/Ext.Element} renderTo + * Always renders to document body. + * @private + */ + + /** + * @cfg {Number} height + * Sets itself to viewport width. + * @private + */ + + /** + * @cfg {Number} width + * Sets itself to viewport height. + * @private + */ + + /** + * @property {Boolean} isViewport + * `true` in this class to identify an object as an instantiated Viewport, or subclass thereof. + */ + isViewport: true, + + ariaRole: 'application', + + preserveElOnDestroy: true, + + viewportCls: Ext.baseCSSPrefix + 'viewport', + + initComponent : function() { + var me = this, + html = document.body.parentNode, + el = me.el = Ext.getBody(); + + // Get the DOM disruption over with before the Viewport renders and begins a layout + Ext.getScrollbarSize(); + + // Clear any dimensions, we will size later on + me.width = me.height = undefined; + + me.callParent(arguments); + Ext.fly(html).addCls(me.viewportCls); + if (me.autoScroll) { + Ext.fly(html).setStyle(me.getOverflowStyle()); + delete me.autoScroll; + } + el.setHeight = el.setWidth = Ext.emptyFn; + el.dom.scroll = 'no'; + me.allowDomMove = false; + me.renderTo = me.el; + }, + + // override here to prevent an extraneous warning + applyTargetCls: function(targetCls) { + this.el.addCls(targetCls); + }, + + onRender: function() { + var me = this; + + me.callParent(arguments); + + // Important to start life as the proper size (to avoid extra layouts) + // But after render so that the size is not stamped into the body + me.width = Ext.Element.getViewportWidth(); + me.height = Ext.Element.getViewportHeight(); + }, + + afterFirstLayout: function() { + var me = this; + + me.callParent(arguments); + setTimeout(function() { + Ext.EventManager.onWindowResize(me.fireResize, me); + }, 1); + }, + + fireResize : function(width, height){ + // In IE we can get resize events that have our current size, so we ignore them + // to avoid the useless layout... + if (width != this.width || height != this.height) { + this.setSize(width, height); + } + }, + + initHierarchyState: function(hierarchyState) { + this.callParent([this.hierarchyState = Ext.rootHierarchyState]); + }, + + beforeDestroy: function(){ + var me = this; + + me.removeUIFromElement(); + me.el.removeCls(me.baseCls); + Ext.fly(document.body.parentNode).removeCls(me.viewportCls); + me.callParent(); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/data/AbstractStore.js b/extjs-django/marvel/static/extjs/src/data/AbstractStore.js new file mode 100644 index 0000000..f9c1569 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/data/AbstractStore.js @@ -0,0 +1,1141 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @author Ed Spencer + * + * AbstractStore is a superclass of {@link Ext.data.Store} and {@link Ext.data.TreeStore}. It's never used directly, + * but offers a set of methods used by both of those subclasses. + * + * We've left it here in the docs for reference purposes, but unless you need to make a whole new type of Store, what + * you're probably looking for is {@link Ext.data.Store}. If you're still interested, here's a brief description of what + * AbstractStore is and is not. + * + * AbstractStore provides the basic configuration for anything that can be considered a Store. It expects to be + * given a {@link Ext.data.Model Model} that represents the type of data in the Store. It also expects to be given a + * {@link Ext.data.proxy.Proxy Proxy} that handles the loading of data into the Store. + * + * AbstractStore provides a few helpful methods such as {@link #method-load} and {@link #sync}, which load and save data + * respectively, passing the requests through the configured {@link #proxy}. Both built-in Store subclasses add extra + * behavior to each of these functions. Note also that each AbstractStore subclass has its own way of storing data - + * in {@link Ext.data.Store} the data is saved as a flat {@link Ext.util.MixedCollection MixedCollection}, whereas in + * {@link Ext.data.TreeStore TreeStore} we use a {@link Ext.data.Tree} to maintain the data's hierarchy. + * + * The store provides filtering and sorting support. This sorting/filtering can happen on the client side + * or can be completed on the server. This is controlled by the {@link Ext.data.Store#remoteSort remoteSort} and + * {@link Ext.data.Store#remoteFilter remoteFilter} config options. For more information see the {@link #sort} and + * {@link Ext.data.Store#filter filter} methods. + */ +Ext.define('Ext.data.AbstractStore', { + requires: [ + 'Ext.util.MixedCollection', + 'Ext.data.proxy.Proxy', + 'Ext.data.Operation', + 'Ext.util.Filter' + ], + + mixins: { + observable: 'Ext.util.Observable', + sortable: 'Ext.util.Sortable' + }, + + statics: { + /** + * Creates a store from config object. + * + * @param {Object/Ext.data.AbstractStore} store A config for + * the store to be created. It may contain a `type` field + * which defines the particular type of store to create. + * + * Alteratively passing an actual store to this method will + * just return it, no changes made. + * + * @return {Ext.data.AbstractStore} The created store. + * @static + */ + create: function(store) { + if (!store.isStore) { + if (!store.type) { + store.type = 'store'; + } + store = Ext.createByAlias('store.' + store.type, store); + } + return store; + } + }, + + onClassExtended: function(cls, data, hooks) { + var model = data.model, + onBeforeClassCreated; + + if (typeof model == 'string') { + onBeforeClassCreated = hooks.onBeforeCreated; + + hooks.onBeforeCreated = function() { + var me = this, + args = arguments; + + Ext.require(model, function() { + onBeforeClassCreated.apply(me, args); + }); + }; + } + }, + + /** + * @cfg {Boolean} remoteSort + * True to defer any sorting operation to the server. If false, sorting is done locally on the client. + */ + remoteSort : false, + + /** + * @cfg {Boolean} remoteFilter + * True to defer any filtering operation to the server. If false, filtering is done locally on the client. + */ + remoteFilter: false, + + /** + * @cfg {String/Ext.data.proxy.Proxy/Object} proxy + * The Proxy to use for this Store. This can be either a string, a config object or a Proxy instance - + * see {@link #setProxy} for details. + * @since 1.1.0 + */ + + /** + * @cfg {Boolean/Object} autoLoad + * If data is not specified, and if autoLoad is true or an Object, this store's load method is automatically called + * after creation. If the value of autoLoad is an Object, this Object will be passed to the store's load method. + * @since 2.3.0 + */ + autoLoad: undefined, + + /** + * @cfg {Boolean} autoSync + * True to automatically sync the Store with its Proxy after every edit to one of its Records. Defaults to false. + */ + autoSync: false, + + /** + * @cfg {String} batchUpdateMode + * Sets the updating behavior based on batch synchronization. 'operation' (the default) will update the Store's + * internal representation of the data after each operation of the batch has completed, 'complete' will wait until + * the entire batch has been completed before updating the Store's data. 'complete' is a good choice for local + * storage proxies, 'operation' is better for remote proxies, where there is a comparatively high latency. + */ + batchUpdateMode: 'operation', + + /** + * @cfg {Boolean} filterOnLoad + * If true, any filters attached to this Store will be run after loading data, before the datachanged event is fired. + * Defaults to true, ignored if {@link Ext.data.Store#remoteFilter remoteFilter} is true + */ + filterOnLoad: true, + + /** + * @cfg {Boolean} sortOnLoad + * If true, any sorters attached to this Store will be run after loading data, before the datachanged event is fired. + * Defaults to true, igored if {@link Ext.data.Store#remoteSort remoteSort} is true + */ + sortOnLoad: true, + + /** + * @property {Boolean} implicitModel + * True if a model was created implicitly for this Store. This happens if a fields array is passed to the Store's + * constructor instead of a model constructor or name. + * @private + */ + implicitModel: false, + + /** + * @property {String} defaultProxyType + * The string type of the Proxy to create if none is specified. This defaults to creating a + * {@link Ext.data.proxy.Memory memory proxy}. + */ + defaultProxyType: 'memory', + + /** + * @property {Boolean} isDestroyed + * True if the Store has already been destroyed. If this is true, the reference to Store should be deleted + * as it will not function correctly any more. + * @since 3.4.0 + */ + isDestroyed: false, + + /** + * @property {Boolean} isStore + * `true` in this class to identify an object as an instantiated Store, or subclass thereof. + */ + isStore: true, + + /** + * @cfg {String} storeId + * Unique identifier for this store. If present, this Store will be registered with the {@link Ext.data.StoreManager}, + * making it easy to reuse elsewhere. + * + * Note that when store is instatiated by Controller, the storeId will be overridden by the name of the store. + */ + + /** + * @cfg {Object[]} fields + * This may be used in place of specifying a {@link #model} configuration. The fields should be a + * set of {@link Ext.data.Field} configuration objects. The store will automatically create a {@link Ext.data.Model} + * with these fields. In general this configuration option should only be used for simple stores like + * a two-field store of ComboBox. For anything more complicated, such as specifying a particular id property or + * associations, a {@link Ext.data.Model} should be defined and specified for the {@link #model} + * config. + * @since 2.3.0 + */ + + /** + * @cfg {String} model + * Name of the {@link Ext.data.Model Model} associated with this store. + * The string is used as an argument for {@link Ext.ModelManager#getModel}. + */ + + /** + * @cfg {Object[]/Function[]} filters + * Array of {@link Ext.util.Filter Filters} for this store. Can also be passed array of + * functions which will be used as the {@link Ext.util.Filter#filterFn filterFn} config + * for filters: + * + * filters: [ + * function(item) { + * return item.weight > 0; + * } + * ] + * + * To filter after the grid is loaded use the {@link Ext.data.Store#filterBy filterBy} function. + */ + + /** + * @cfg {Boolean} [statefulFilters=false] + * Configure as `true` to have the filters saved when a client {@link Ext.grid.Panel grid} saves its state. + */ + + sortRoot: 'data', + + //documented above + constructor: function(config) { + var me = this, + filters; + + /** + * @event add + * Fired when a Model instance has been added to this Store. + * @param {Ext.data.Store} store The store + * @param {Ext.data.Model[]} records The Model instances that were added + * @param {Number} index The index at which the instances were inserted + * @since 1.1.0 + */ + + /** + * @event remove + * Fired when a Model instance has been removed from this Store. + * + * **If many records may be removed in one go, then it is more efficient to listen for the {@link #event-bulkremove} event + * and perform any processing for a bulk remove than to listen for this {@link #event-remove} event.** + * @param {Ext.data.Store} store The Store object + * @param {Ext.data.Model} record The record that was removed + * @param {Number} index The index of the record that was removed + * @param {Boolean} isMove `true` if the child node is being removed so it can be moved to another position in this Store. + * @since 1.1.0 + */ + + /** + * @event bulkremove + * Fired at the *end* of the {@link Ext.data.Store#method-remove remove} method when all records in the passed array have been removed. + * + * If many records may be removed in one go, then it is more efficient to listen for this event + * and perform any processing for a bulk remove than to listen for many {@link #event-remove} events. + * @param {Ext.data.Store} store The Store object + * @param {Ext.data.Model[]} records The array of records that were removed (In the order they appear in the Store) + * @param {Number[]} indexes The indexes of the records that were removed + * @param {Boolean} isMove `true` if the child nodes are being removed so they can be moved to another position in this Store. + */ + + /** + * @event update + * Fires when a Model instance has been updated. + * @param {Ext.data.Store} this + * @param {Ext.data.Model} record The Model instance that was updated + * @param {String} operation The update operation being performed. Value may be one of: + * + * Ext.data.Model.EDIT + * Ext.data.Model.REJECT + * Ext.data.Model.COMMIT + * @param {String[]} modifiedFieldNames Array of field names changed during edit. + * @since 1.1.0 + */ + + /** + * @event datachanged + * Fires whenever the records in the Store have changed in some way - this could include adding or removing + * records, or updating the data in existing records + * @param {Ext.data.Store} this The data store + * @since 1.1.0 + */ + + /** + * @event refresh + * Fires when the data cache has changed in a bulk manner (e.g., it has been sorted, filtered, etc.) and a + * widget that is using this Store as a Record cache should refresh its view. + * @param {Ext.data.Store} this The data store + */ + + /** + * @event beforeload + * Fires before a request is made for a new data object. If the beforeload handler returns false the load + * action will be canceled. + * @param {Ext.data.Store} store This Store + * @param {Ext.data.Operation} operation The Ext.data.Operation object that will be passed to the Proxy to + * load the Store + * @since 1.1.0 + */ + + /** + * @event load + * Fires whenever the store reads data from a remote data source. + * @param {Ext.data.Store} this + * @param {Ext.data.Model[]} records An array of records + * @param {Boolean} successful True if the operation was successful. + * @since 1.1.0 + */ + + /** + * @event write + * Fires whenever a successful write has been made via the configured {@link #proxy Proxy} + * @param {Ext.data.Store} store This Store + * @param {Ext.data.Operation} operation The {@link Ext.data.Operation Operation} object that was used in + * the write + * @since 3.4.0 + */ + + /** + * @event beforesync + * Fired before a call to {@link #sync} is executed. Return false from any listener to cancel the sync + * @param {Object} options Hash of all records to be synchronized, broken down into create, update and destroy + */ + /** + * @event clear + * Fired after the {@link #removeAll} method is called. + * @param {Ext.data.Store} this + * @since 1.1.0 + */ + /** + * @event metachange + * Fires when this store's underlying reader (available via the proxy) provides new metadata. + * Metadata usually consists of new field definitions, but can include any configuration data + * required by an application, and can be processed as needed in the event handler. + * This event is currently only fired for JsonReaders. + * @param {Ext.data.Store} this + * @param {Object} meta The JSON metadata + * @since 1.1.0 + */ + + Ext.apply(me, config); + // don't use *config* anymore from here on... use *me* instead... + + /** + * Temporary cache in which removed model instances are kept until successfully synchronised with a Proxy, + * at which point this is cleared. + * @protected + * @property {Ext.data.Model[]} removed + */ + me.removed = []; + + me.mixins.observable.constructor.apply(me, arguments); + + // + var configModel = me.model; + // + + me.model = Ext.ModelManager.getModel(me.model); + + /** + * @property {Object} modelDefaults + * @private + * A set of default values to be applied to every model instance added via {@link Ext.data.Store#insert insert} or created + * via {@link Ext.data.Store#createModel createModel}. This is used internally by associations to set foreign keys and + * other fields. See the Association classes source code for examples. This should not need to be used by application developers. + */ + Ext.applyIf(me, { + modelDefaults: null + }); + + //Supports the 3.x style of simply passing an array of fields to the store, implicitly creating a model + if (!me.model && me.fields) { + me.model = Ext.define('Ext.data.Store.ImplicitModel-' + (me.storeId || Ext.id()), { + extend: 'Ext.data.Model', + fields: me.fields, + proxy: me.proxy || me.defaultProxyType + }); + + delete me.fields; + + me.implicitModel = true; + } + + // + if (!me.model && me.useModelWarning !== false) { + // There are a number of ways things could have gone wrong, try to give as much information as possible + var logMsg = [ + Ext.getClassName(me) || 'Store', + ' created with no model.' + ]; + + if (typeof configModel === 'string') { + logMsg.push(" The name '", configModel, "'", ' does not correspond to a valid model.'); + } + + Ext.log.warn(logMsg.join('')); + } + // + + //ensures that the Proxy is instantiated correctly + me.setProxy(me.proxy || me.model.getProxy()); + + if (!me.disableMetaChangeEvent) { + me.proxy.on('metachange', me.onMetaChange, me); + } + + if (me.id && !me.storeId) { + me.storeId = me.id; + delete me.id; + } + + if (me.storeId) { + Ext.data.StoreManager.register(me); + } + + me.mixins.sortable.initSortable.call(me); + + /** + * @property {Ext.util.MixedCollection} filters + * The collection of {@link Ext.util.Filter Filters} currently applied to this Store + */ + filters = me.decodeFilters(me.filters); + me.filters = new Ext.util.MixedCollection(); + me.filters.addAll(filters); + }, + + /** + * Sets the Store's Proxy by string, config object or Proxy instance + * @param {String/Object/Ext.data.proxy.Proxy} proxy The new Proxy, which can be either a type string, a configuration object + * or an Ext.data.proxy.Proxy instance + * @return {Ext.data.proxy.Proxy} The attached Proxy object + */ + setProxy: function(proxy) { + var me = this; + + if (proxy instanceof Ext.data.proxy.Proxy) { + proxy.setModel(me.model); + } else { + if (Ext.isString(proxy)) { + proxy = { + type: proxy + }; + } + Ext.applyIf(proxy, { + model: me.model + }); + + proxy = Ext.createByAlias('proxy.' + proxy.type, proxy); + } + + me.proxy = proxy; + + return me.proxy; + }, + + /** + * Returns the proxy currently attached to this proxy instance + * @return {Ext.data.proxy.Proxy} The Proxy instance + */ + getProxy: function() { + return this.proxy; + }, + + // private + onMetaChange: function(proxy, meta) { + this.fireEvent('metachange', this, meta); + }, + + //saves any phantom records + create: function(data, options) { + var me = this, + instance = Ext.ModelManager.create(Ext.applyIf(data, me.modelDefaults), me.model.modelName), + operation; + + options = options || {}; + + Ext.applyIf(options, { + action : 'create', + records: [instance] + }); + + operation = new Ext.data.Operation(options); + + me.proxy.create(operation, me.onProxyWrite, me); + + return instance; + }, + + read: function() { + return this.load.apply(this, arguments); + }, + + update: function(options) { + var me = this, + operation; + options = options || {}; + + Ext.applyIf(options, { + action : 'update', + records: me.getUpdatedRecords() + }); + + operation = new Ext.data.Operation(options); + + return me.proxy.update(operation, me.onProxyWrite, me); + }, + + /** + * @private + * Callback for any write Operation over the Proxy. Updates the Store's MixedCollection to reflect + * the updates provided by the Proxy + */ + onProxyWrite: function(operation) { + var me = this, + success = operation.wasSuccessful(), + records = operation.getRecords(); + + switch (operation.action) { + case 'create': + me.onCreateRecords(records, operation, success); + break; + case 'update': + me.onUpdateRecords(records, operation, success); + break; + case 'destroy': + me.onDestroyRecords(records, operation, success); + break; + } + + if (success) { + me.fireEvent('write', me, operation); + me.fireEvent('datachanged', me); + me.fireEvent('refresh', me); + } + //this is a callback that would have been passed to the 'create', 'update' or 'destroy' function and is optional + Ext.callback(operation.callback, operation.scope || me, [records, operation, success]); + }, + + // may be implemented by store subclasses + onCreateRecords: Ext.emptyFn, + + // may be implemented by store subclasses + onUpdateRecords: Ext.emptyFn, + + /** + * Removes any records when a write is returned from the server. + * @private + * @param {Ext.data.Model[]} records The array of removed records + * @param {Ext.data.Operation} operation The operation that just completed + * @param {Boolean} success True if the operation was successful + */ + onDestroyRecords: function(records, operation, success) { + if (success) { + this.removed = []; + } + }, + + // tells the attached proxy to destroy the given records + // @since 3.4.0 + destroy: function(options) { + var me = this, + operation; + + options = options || {}; + + Ext.applyIf(options, { + action : 'destroy', + records: me.getRemovedRecords() + }); + + operation = new Ext.data.Operation(options); + + return me.proxy.destroy(operation, me.onProxyWrite, me); + }, + + /** + * @private + * Attached as the 'operationcomplete' event listener to a proxy's Batch object. By default just calls through + * to onProxyWrite. + */ + onBatchOperationComplete: function(batch, operation) { + return this.onProxyWrite(operation); + }, + + /** + * @private + * Attached as the 'complete' event listener to a proxy's Batch object. Iterates over the batch operations + * and updates the Store's internal data MixedCollection. + */ + onBatchComplete: function(batch, operation) { + var me = this, + operations = batch.operations, + length = operations.length, + i; + + me.suspendEvents(); + + for (i = 0; i < length; i++) { + me.onProxyWrite(operations[i]); + } + + me.resumeEvents(); + + me.fireEvent('datachanged', me); + me.fireEvent('refresh', me); + }, + + /** + * @private + */ + onBatchException: function(batch, operation) { + // //decide what to do... could continue with the next operation + // batch.start(); + // + // //or retry the last operation + // batch.retry(); + }, + + /** + * @private + * Filter function for new records. + */ + filterNew: function(item) { + // only want phantom records that are valid + return item.phantom === true && item.isValid(); + }, + + /** + * Returns all Model instances that are either currently a phantom (e.g. have no id), or have an ID but have not + * yet been saved on this Store (this happens when adding a non-phantom record from another Store into this one) + * @return {Ext.data.Model[]} The Model instances + */ + getNewRecords: function() { + return []; + }, + + /** + * Returns all Model instances that have been updated in the Store but not yet synchronized with the Proxy + * @return {Ext.data.Model[]} The updated Model instances + */ + getUpdatedRecords: function() { + return []; + }, + + /** + * Gets all {@link Ext.data.Model records} added or updated since the last commit. Note that the order of records + * returned is not deterministic and does not indicate the order in which records were modified. Note also that + * removed records are not included (use {@link #getRemovedRecords} for that). + * @return {Ext.data.Model[]} The added and updated Model instances + */ + getModifiedRecords : function(){ + return [].concat(this.getNewRecords(), this.getUpdatedRecords()); + }, + + /** + * @private + * Filter function for updated records. + */ + filterUpdated: function(item) { + // only want dirty records, not phantoms that are valid + return item.dirty === true && item.phantom !== true && item.isValid(); + }, + + /** + * Returns any records that have been removed from the store but not yet destroyed on the proxy. + * @return {Ext.data.Model[]} The removed Model instances + */ + getRemovedRecords: function() { + return this.removed; + }, + + filter: function(filters, value) { + + }, + + /** + * @private + * Normalizes an array of filter objects, ensuring that they are all Ext.util.Filter instances + * @param {Object[]} filters The filters array + * @return {Ext.util.Filter[]} Array of Ext.util.Filter objects + */ + decodeFilters: function(filters) { + if (!Ext.isArray(filters)) { + if (filters === undefined) { + filters = []; + } else { + filters = [filters]; + } + } + + var length = filters.length, + Filter = Ext.util.Filter, + config, i; + + for (i = 0; i < length; i++) { + config = filters[i]; + + if (!(config instanceof Filter)) { + Ext.apply(config, { + root: 'data' + }); + + //support for 3.x style filters where a function can be defined as 'fn' + if (config.fn) { + config.filterFn = config.fn; + } + + //support a function to be passed as a filter definition + if (typeof config == 'function') { + config = { + filterFn: config + }; + } + + filters[i] = new Filter(config); + } + } + + return filters; + }, + + clearFilter: function(supressEvent) { + + }, + + isFiltered: function() { + + }, + + filterBy: function(fn, scope) { + + }, + + /** + * Synchronizes the store with its {@link #proxy}. This asks the proxy to batch together any new, updated + * and deleted records in the store, updating the store's internal representation of the records + * as each operation completes. + * + * @param {Object} [options] Object containing one or more properties supported by the sync method (these get + * passed along to the underlying proxy's {@link Ext.data.Proxy#batch batch} method): + * + * @param {Ext.data.Batch/Object} [options.batch] A {@link Ext.data.Batch} object (or batch config to apply + * to the created batch). If unspecified a default batch will be auto-created as needed. + * + * @param {Function} [options.callback] The function to be called upon completion of the sync. + * The callback is called regardless of success or failure and is passed the following parameters: + * @param {Ext.data.Batch} options.callback.batch The {@link Ext.data.Batch batch} that was processed, + * containing all operations in their current state after processing + * @param {Object} options.callback.options The options argument that was originally passed into sync + * + * @param {Function} [options.success] The function to be called upon successful completion of the sync. The + * success function is called only if no exceptions were reported in any operations. If one or more exceptions + * occurred then the failure function will be called instead. The success function is called + * with the following parameters: + * @param {Ext.data.Batch} options.success.batch The {@link Ext.data.Batch batch} that was processed, + * containing all operations in their current state after processing + * @param {Object} options.success.options The options argument that was originally passed into sync + * + * @param {Function} [options.failure] The function to be called upon unsuccessful completion of the sync. The + * failure function is called when one or more operations returns an exception during processing (even if some + * operations were also successful). In this case you can check the batch's {@link Ext.data.Batch#exceptions + * exceptions} array to see exactly which operations had exceptions. The failure function is called with the + * following parameters: + * @param {Ext.data.Batch} options.failure.batch The {@link Ext.data.Batch} that was processed, containing all + * operations in their current state after processing + * @param {Object} options.failure.options The options argument that was originally passed into sync + * + * @param {Object} [options.scope] The scope in which to execute any callbacks (i.e. the `this` object inside + * the callback, success and/or failure functions). Defaults to the store's proxy. + * + * @return {Ext.data.Store} this + */ + sync: function(options) { + var me = this, + operations = {}, + toCreate = me.getNewRecords(), + toUpdate = me.getUpdatedRecords(), + toDestroy = me.getRemovedRecords(), + needsSync = false; + + if (toCreate.length > 0) { + operations.create = toCreate; + needsSync = true; + } + + if (toUpdate.length > 0) { + operations.update = toUpdate; + needsSync = true; + } + + if (toDestroy.length > 0) { + operations.destroy = toDestroy; + needsSync = true; + } + + if (needsSync && me.fireEvent('beforesync', operations) !== false) { + options = options || {}; + + me.proxy.batch(Ext.apply(options, { + operations: operations, + listeners: me.getBatchListeners() + })); + } + + return me; + }, + + /** + * @private + * Returns an object which is passed in as the listeners argument to proxy.batch inside this.sync. + * This is broken out into a separate function to allow for customisation of the listeners + * @return {Object} The listeners object + */ + getBatchListeners: function() { + var me = this, + listeners = { + scope: me, + exception: me.onBatchException + }; + + if (me.batchUpdateMode == 'operation') { + listeners.operationcomplete = me.onBatchOperationComplete; + } else { + listeners.complete = me.onBatchComplete; + } + + return listeners; + }, + + /** + * Saves all pending changes via the configured {@link #proxy}. Use {@link #sync} instead. + * @deprecated 4.0.0 Will be removed in the next major version + */ + save: function() { + return this.sync.apply(this, arguments); + }, + + /** + * Loads the Store using its configured {@link #proxy}. + * @param {Object} options (optional) config object. This is passed into the {@link Ext.data.Operation Operation} + * object that is created and then sent to the proxy's {@link Ext.data.proxy.Proxy#read} function + * + * @return {Ext.data.Store} this + * @since 1.1.0 + */ + load: function(options) { + var me = this, + operation; + + options = Ext.apply({ + action: 'read', + filters: me.filters.items, + sorters: me.getSorters() + }, options); + me.lastOptions = options; + + operation = new Ext.data.Operation(options); + + if (me.fireEvent('beforeload', me, operation) !== false) { + me.loading = true; + me.proxy.read(operation, me.onProxyLoad, me); + } + + return me; + }, + + /** + * Reloads the store using the last options passed to the {@link #method-load} method. + * @param {Object} options A config object which contains options which may override the options passed to the previous load call. + */ + reload: function(options) { + return this.load(Ext.apply(this.lastOptions, options)); + }, + + /** + * @private + * A model instance should call this method on the Store it has been {@link Ext.data.Model#join joined} to. + * @param {Ext.data.Model} record The model instance that was edited + * @param {String[]} modifiedFieldNames Array of field names changed during edit. + * @since 3.4.0 + */ + afterEdit : function(record, modifiedFieldNames) { + var me = this, + i, shouldSync; + + if (me.autoSync && !me.autoSyncSuspended) { + for (i = modifiedFieldNames.length; i--;) { + // only sync if persistent fields were modified + if (record.fields.get(modifiedFieldNames[i]).persist) { + shouldSync = true; + break; + } + } + if (shouldSync) { + me.sync(); + } + } + me.onUpdate(record, Ext.data.Model.EDIT, modifiedFieldNames); + me.fireEvent('update', me, record, Ext.data.Model.EDIT, modifiedFieldNames); + }, + + /** + * @private + * A model instance should call this method on the Store it has been {@link Ext.data.Model#join joined} to.. + * @param {Ext.data.Model} record The model instance that was edited + * @since 3.4.0 + */ + afterReject : function(record) { + // Must pass the 5th param (modifiedFieldNames) as null, otherwise the + // event firing machinery appends the listeners "options" object to the arg list + // which may get used as the modified fields array by a handler. + // This array is used for selective grid cell updating by Grid View. + // Null will be treated as though all cells need updating. + this.onUpdate(record, Ext.data.Model.REJECT, null); + this.fireEvent('update', this, record, Ext.data.Model.REJECT, null); + }, + + /** + * @private + * A model instance should call this method on the Store it has been {@link Ext.data.Model#join joined} to. + * @param {Ext.data.Model} record The model instance that was edited + * @since 3.4.0 + */ + afterCommit : function(record, modifiedFieldNames) { + if (!modifiedFieldNames) { + modifiedFieldNames = null; + } + this.onUpdate(record, Ext.data.Model.COMMIT, modifiedFieldNames); + this.fireEvent('update', this, record, Ext.data.Model.COMMIT, modifiedFieldNames); + }, + + onUpdate: Ext.emptyFn, + + onIdChanged: function(model, oldId, newId, oldInternalId){ + this.fireEvent('idchanged', this, model, oldId, newId, oldInternalId); + }, + + // private + destroyStore: function() { + var implicitModelName, + me = this; + + if (!me.isDestroyed) { + me.clearListeners(); + if (me.storeId) { + Ext.data.StoreManager.unregister(me); + } + me.clearData(); + me.data = me.tree = me.sorters = me.filters = me.groupers = null; + if (me.reader) { + me.reader.destroyReader(); + } + me.proxy = me.reader = me.writer = null; + me.isDestroyed = true; + + if (me.implicitModel) { + implicitModelName = Ext.getClassName(me.model); + Ext.undefine(implicitModelName); + Ext.ModelManager.unregisterType(implicitModelName); + } else { + me.model = null; + } + } + }, + + /** + * @private + * Returns the grouping, sorting and filtered state of this Store. + */ + getState: function() { + var me = this, + hasState, + result, + hasGroupers = !!me.groupers, + groupers = [], + sorters = [], + filters = []; + + if (hasGroupers) { + me.groupers.each(function(g) { + groupers[groupers.length] = g.serialize(); + hasState = true; + }); + } + + if (me.sorters) { + // Create sorters config array. + me.sorters.each(function(s) { + // Sorters collection gets groupers prepended to it, so do not duplicate + if (hasGroupers && !me.groupers.contains(s)) { + sorters[sorters.length] = s.serialize(); + hasState = true; + } + }); + } + + // Because we do not provide a filter changing mechanism, only statify the filters if they opt in. + // Otherwise filters would get "stuck". + if (me.filters && me.statefulFilters) { + me.filters.each(function(f) { + filters[filters.length] = f.serialize(); + hasState = true; + }); + } + + // If there is any state to save, return it as an object + if (hasState) { + result = {}; + if (groupers.length) { + result.groupers = groupers; + } + if (sorters.length) { + result.sorters = sorters; + } + if (filters.length) { + result.filters = filters; + } + return result; + } + }, + + /** + * @private + * Restores state to the passed state + */ + applyState: function(state) { + var me = this, + hasSorters = !!me.sorters, + hasGroupers = !!me.groupers, + hasFilters = !!me.filters, + locallySorted; + + if (hasGroupers && state.groupers) { + me.groupers.clear(); + me.groupers.addAll(me.decodeGroupers(state.groupers)); + } + + if (hasSorters && state.sorters) { + me.sorters.clear(); + me.sorters.addAll(me.decodeSorters(state.sorters)); + } + + if (hasFilters && state.filters) { + me.filters.clear(); + me.filters.addAll(me.decodeFilters(state.filters)); + } + + if (hasSorters && hasGroupers) { + // Sorters collection gets groupers prepended to it + me.sorters.insert(0, me.groupers.getRange()); + } + + // Data manipulated by the server - reload + if (me.autoLoad && (me.remoteSort || me.remoteGroup || me.remoteFilter)) { + if (me.autoLoad === true) { + me.reload(); + } else { + me.reload(me.autoLoad); + } + } + + // If we have local filters, filter the data + if (hasFilters && me.filters.length && !me.remoteFilter) { + me.filter(); + locallySorted = me.sortOnFilter; + } + + // If we have local sorters, and the data is not already sorted by a sortOnFilter operation, then sort. + if (hasSorters && me.sorters.length && !me.remoteSort && !locallySorted) { + me.sort(); + } + }, + + // private + doSort: function(sorterFn) { + var me = this; + if (me.remoteSort) { + //the load function will pick up the new sorters and request the sorted data from the proxy + me.load(); + } else { + me.data.sortBy(sorterFn); + me.fireEvent('datachanged', me); + me.fireEvent('refresh', me); + } + me.fireEvent('sort', me, me.sorters.getRange()); + }, + + // to be implemented by subclasses + clearData: Ext.emptyFn, + + // to be implemented by subclasses + getCount: Ext.emptyFn, + + // to be implemented by subclasses + getById: Ext.emptyFn, + + /** + * Removes all records from the store. This method does a "fast remove", + * individual remove events are not called. The {@link #clear} event is + * fired upon completion. + * @method + * @since 1.1.0 + */ + removeAll: Ext.emptyFn, + // individual store subclasses should implement a "fast" remove + // and fire a clear event afterwards + + /** + * Returns true if the Store is currently performing a load operation + * @return {Boolean} True if the Store is currently loading + */ + isLoading: function() { + return !!this.loading; + }, + + /** + * Suspends automatically syncing the Store with its Proxy. Only applicable if {@link #autoSync} is `true` + */ + suspendAutoSync: function() { + this.autoSyncSuspended = true; + }, + + /** + * Resumes automatically syncing the Store with its Proxy. Only applicable if {@link #autoSync} is `true` + */ + resumeAutoSync: function() { + this.autoSyncSuspended = false; + } + +}); diff --git a/extjs-django/marvel/static/extjs/src/data/ArrayStore.js b/extjs-django/marvel/static/extjs/src/data/ArrayStore.js new file mode 100644 index 0000000..c966e0c --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/data/ArrayStore.js @@ -0,0 +1,92 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @author Ed Spencer + * + * Small helper class to make creating {@link Ext.data.Store}s from Array data easier. An ArrayStore will be + * automatically configured with a {@link Ext.data.reader.Array}. + * + * A store configuration would be something like: + * + * var store = Ext.create('Ext.data.ArrayStore', { + * // store configs + * storeId: 'myStore', + * // reader configs + * fields: [ + * 'company', + * {name: 'price', type: 'float'}, + * {name: 'change', type: 'float'}, + * {name: 'pctChange', type: 'float'}, + * {name: 'lastChange', type: 'date', dateFormat: 'n/j h:ia'} + * ] + * }); + * + * This store is configured to consume a returned object of the form: + * + * var myData = [ + * ['3m Co',71.72,0.02,0.03,'9/1 12:00am'], + * ['Alcoa Inc',29.01,0.42,1.47,'9/1 12:00am'], + * ['Boeing Co.',75.43,0.53,0.71,'9/1 12:00am'], + * ['Hewlett-Packard Co.',36.53,-0.03,-0.08,'9/1 12:00am'], + * ['Wal-Mart Stores, Inc.',45.45,0.73,1.63,'9/1 12:00am'] + * ]; + * + * An object literal of this form could also be used as the {@link #cfg-data} config option. + * + */ +Ext.define('Ext.data.ArrayStore', { + extend: 'Ext.data.Store', + alias: 'store.array', + requires: [ + 'Ext.data.proxy.Memory', + 'Ext.data.reader.Array' + ], + + constructor: function(config) { + config = Ext.apply({ + proxy: { + type: 'memory', + reader: 'array' + } + }, config); + this.callParent([config]); + }, + + loadData: function(data, append) { + if (this.expandData === true) { + var r = [], + i = 0, + ln = data.length; + + for (; i < ln; i++) { + r[r.length] = [data[i]]; + } + + data = r; + } + + this.callParent([data, append]); + } +}, function() { + // backwards compat + Ext.data.SimpleStore = Ext.data.ArrayStore; + // Ext.reg('simplestore', Ext.data.SimpleStore); +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/data/Batch.js b/extjs-django/marvel/static/extjs/src/data/Batch.js new file mode 100644 index 0000000..bd3edb8 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/data/Batch.js @@ -0,0 +1,256 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @author Ed Spencer + * @class Ext.data.Batch + * + *

    Provides a mechanism to run one or more {@link Ext.data.Operation operations} in a given order. Fires the 'operationcomplete' event + * after the completion of each Operation, and the 'complete' event when all Operations have been successfully executed. Fires an 'exception' + * event if any of the Operations encounter an exception.

    + * + *

    Usually these are only used internally by {@link Ext.data.proxy.Proxy} classes

    + * + */ +Ext.define('Ext.data.Batch', { + mixins: { + observable: 'Ext.util.Observable' + }, + + /** + * @cfg {Boolean} autoStart + * True to immediately start processing the batch as soon as it is constructed (defaults to false) + */ + autoStart: false, + + /** + * @cfg {Boolean} pauseOnException + * True to pause the execution of the batch if any operation encounters an exception + * (defaults to false). If you set this to true you are responsible for implementing the appropriate + * handling logic and restarting or discarding the batch as needed. There are different ways you could + * do this, e.g. by handling the batch's {@link #exception} event directly, or perhaps by overriding + * {@link Ext.data.AbstractStore#onBatchException onBatchException} at the store level. If you do pause + * and attempt to handle the exception you can call {@link #retry} to process the same operation again. + * + * Note that {@link Ext.data.Operation operations} are atomic, so any operations that may have succeeded + * prior to an exception (and up until pausing the batch) will be finalized at the server level and will + * not be automatically reversible. Any transactional / rollback behavior that might be desired would have + * to be implemented at the application level. Pausing on exception will likely be most beneficial when + * used in coordination with such a scheme, where an exception might actually affect subsequent operations + * in the same batch and so should be handled before continuing with the next operation. + * + * If you have not implemented transactional operation handling then this option should typically be left + * to the default of false (e.g. process as many operations as possible, and handle any exceptions + * asynchronously without holding up the rest of the batch). + */ + pauseOnException: false, + + /** + * @property {Number} current + * The index of the current operation being executed. Read only + */ + current: -1, + + /** + * @property {Number} total + * The total number of operations in this batch. Read only + */ + total: 0, + + /** + * @property {Boolean} isRunning + * True if the batch is currently running. Read only + */ + isRunning: false, + + /** + * @property {Boolean} isComplete + * True if this batch has been executed completely. Read only + */ + isComplete: false, + + /** + * @property {Boolean} hasException + * True if this batch has encountered an exception. This is cleared at the start of each operation. Read only + */ + hasException: false, + + /** + * Creates new Batch object. + * @param {Object} [config] Config object + */ + constructor: function(config) { + var me = this; + + /** + * @event complete + * Fired when all operations of this batch have been completed + * @param {Ext.data.Batch} batch The batch object + * @param {Object} operation The last operation that was executed + */ + + /** + * @event exception + * Fired when a operation encountered an exception + * @param {Ext.data.Batch} batch The batch object + * @param {Object} operation The operation that encountered the exception + */ + + /** + * @event operationcomplete + * Fired when each operation of the batch completes + * @param {Ext.data.Batch} batch The batch object + * @param {Object} operation The operation that just completed + */ + + me.mixins.observable.constructor.call(me, config); + + /** + * Ordered array of operations that will be executed by this batch + * @property {Ext.data.Operation[]} operations + */ + me.operations = []; + + /** + * Ordered array of operations that raised an exception during the most recent + * batch execution and did not successfully complete + * @property {Ext.data.Operation[]} exceptions + */ + me.exceptions = []; + }, + + /** + * Adds a new operation to this batch at the end of the {@link #operations} array + * @param {Object} operation The {@link Ext.data.Operation Operation} object + * @return {Ext.data.Batch} this + */ + add: function(operation) { + this.total++; + + operation.setBatch(this); + + this.operations.push(operation); + + return this; + }, + + /** + * Kicks off execution of the batch, continuing from the next operation if the previous + * operation encountered an exception, or if execution was paused. Use this method to start + * the batch for the first time or to restart a paused batch by skipping the current + * unsuccessful operation. + * + * To retry processing the current operation before continuing to the rest of the batch (e.g. + * because you explicitly handled the operation's exception), call {@link #retry} instead. + * + * Note that if the batch is already running any call to start will be ignored. + * + * @return {Ext.data.Batch} this + */ + start: function(/* private */ index) { + var me = this; + + if (me.isRunning) { + return me; + } + + me.exceptions.length = 0; + me.hasException = false; + me.isRunning = true; + + return me.runOperation(Ext.isDefined(index) ? index : me.current + 1); + }, + + /** + * Kicks off execution of the batch, continuing from the current operation. This is intended + * for restarting a {@link #pause paused} batch after an exception, and the operation that raised + * the exception will now be retried. The batch will then continue with its normal processing until + * all operations are complete or another exception is encountered. + * + * Note that if the batch is already running any call to retry will be ignored. + * + * @return {Ext.data.Batch} this + */ + retry: function() { + return this.start(this.current); + }, + + /** + * @private + * Runs the next operation, relative to this.current. + * @return {Ext.data.Batch} this + */ + runNextOperation: function() { + return this.runOperation(this.current + 1); + }, + + /** + * Pauses execution of the batch, but does not cancel the current operation + * @return {Ext.data.Batch} this + */ + pause: function() { + this.isRunning = false; + return this; + }, + + /** + * Executes an operation by its numeric index in the {@link #operations} array + * @param {Number} index The operation index to run + * @return {Ext.data.Batch} this + */ + runOperation: function(index) { + var me = this, + operations = me.operations, + operation = operations[index], + onProxyReturn; + + if (operation === undefined) { + me.isRunning = false; + me.isComplete = true; + me.fireEvent('complete', me, operations[operations.length - 1]); + } else { + me.current = index; + + onProxyReturn = function(operation) { + var hasException = operation.hasException(); + + if (hasException) { + me.hasException = true; + me.exceptions.push(operation); + me.fireEvent('exception', me, operation); + } + + if (hasException && me.pauseOnException) { + me.pause(); + } else { + operation.setCompleted(); + me.fireEvent('operationcomplete', me, operation); + me.runNextOperation(); + } + }; + + operation.setStarted(); + + me.proxy[operation.action](operation, onProxyReturn, me); + } + + return me; + } +}); diff --git a/extjs-django/marvel/static/extjs/src/data/BufferStore.js b/extjs-django/marvel/static/extjs/src/data/BufferStore.js new file mode 100644 index 0000000..f3f3de8 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/data/BufferStore.js @@ -0,0 +1,33 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @private + */ +Ext.define('Ext.data.BufferStore', { + extend: 'Ext.data.Store', + alias: 'store.buffer', + sortOnLoad: false, + filterOnLoad: false, + + constructor: function() { + Ext.Error.raise('The BufferStore class has been deprecated. Instead, specify the buffered config option on Ext.data.Store'); + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/data/Connection.js b/extjs-django/marvel/static/extjs/src/data/Connection.js new file mode 100644 index 0000000..737e5a9 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/data/Connection.js @@ -0,0 +1,1255 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * The Connection class encapsulates a connection to the page's originating domain, allowing requests to be made either + * to a configured URL, or to a URL specified at request time. + * + * Requests made by this class are asynchronous, and will return immediately. No data from the server will be available + * to the statement immediately following the {@link #request} call. To process returned data, use a success callback + * in the request options object, or an {@link #requestcomplete event listener}. + * + * # File Uploads + * + * File uploads are not performed using normal "Ajax" techniques, that is they are not performed using XMLHttpRequests. + * Instead the form is submitted in the standard manner with the DOM <form> element temporarily modified to have its + * target set to refer to a dynamically generated, hidden <iframe> which is inserted into the document but removed + * after the return data has been gathered. + * + * The server response is parsed by the browser to create the document for the IFRAME. If the server is using JSON to + * send the return object, then the Content-Type header must be set to "text/html" in order to tell the browser to + * insert the text unchanged into the document body. + * + * Characters which are significant to an HTML parser must be sent as HTML entities, so encode `<` as `<`, `&` as + * `&` etc. + * + * The response text is retrieved from the document, and a fake XMLHttpRequest object is created containing a + * responseText property in order to conform to the requirements of event handlers and callbacks. + * + * Be aware that file upload packets are sent with the content type multipart/form and some server technologies + * (notably JEE) may require some custom processing in order to retrieve parameter names and parameter values from the + * packet content. + * + * Also note that it's not possible to check the response code of the hidden iframe, so the success handler will ALWAYS fire. + * + * # Binary Posts + * + * The class supports posting binary data to the server by using native browser capabilities, or a flash polyfill plugin in browsers that do not support native binary posting (e.g. Internet Explorer version 9 or less). A number of limitations exist when the polyfill is used: + * + * - Only asynchronous connections are supported. + * - Only the POST method can be used. + * - The return data can only be binary for now. Set the {@link Ext.data.Connection#binary binary} parameter to true. + * - Only the 0, 1 and 4 (complete) readyState values will be reported to listeners. + * - The flash object will be injected at the bottom of the document and should be invisible. + * - Important: See note about packaing the flash plugin with the app in the documenetation of {@link Ext.data.flash.BinaryXhr BinaryXhr}. + * + */ +Ext.define('Ext.data.Connection', { + mixins: { + observable: 'Ext.util.Observable' + }, + + requires: [ + 'Ext.data.flash.BinaryXhr' + ], + + statics: { + requestId: 0 + }, + + url: null, + async: true, + method: null, + username: '', + password: '', + + /** + * @cfg {Boolean} disableCaching + * True to add a unique cache-buster param to GET requests. + */ + disableCaching: true, + + /** + * @cfg {Boolean} withCredentials + * True to set `withCredentials = true` on the XHR object + */ + withCredentials: false, + + /** + * @cfg {Boolean} binary + * True if the response should be treated as binary data. If true, the binary + * data will be accessible as a "responseBytes" property on the response object. + */ + binary: false, + + /** + * @cfg {Boolean} cors + * True to enable CORS support on the XHR object. Currently the only effect of this option + * is to use the XDomainRequest object instead of XMLHttpRequest if the browser is IE8 or above. + */ + cors: false, + + isXdr: false, + + defaultXdrContentType: 'text/plain', + + /** + * @cfg {String} disableCachingParam + * Change the parameter which is sent went disabling caching through a cache buster. + */ + disableCachingParam: '_dc', + + /** + * @cfg {Number} timeout + * The timeout in milliseconds to be used for requests. + */ + timeout : 30000, + + /** + * @cfg {Object} extraParams + * Any parameters to be appended to the request. + */ + + /** + * @cfg {Boolean} [autoAbort=false] + * Whether this request should abort any pending requests. + */ + + /** + * @cfg {String} method + * The default HTTP method to be used for requests. + * + * If not set, but {@link #request} params are present, POST will be used; + * otherwise, GET will be used. + */ + + /** + * @cfg {Object} defaultHeaders + * An object containing request headers which are added to each request made by this object. + */ + + useDefaultHeader : true, + defaultPostHeader : 'application/x-www-form-urlencoded; charset=UTF-8', + useDefaultXhrHeader : true, + defaultXhrHeader : 'XMLHttpRequest', + + constructor : function(config) { + config = config || {}; + Ext.apply(this, config); + + /** + * @event beforerequest + * Fires before a network request is made to retrieve a data object. + * @param {Ext.data.Connection} conn This Connection object. + * @param {Object} options The options config object passed to the {@link #request} method. + */ + /** + * @event requestcomplete + * Fires if the request was successfully completed. + * @param {Ext.data.Connection} conn This Connection object. + * @param {Object} response The XHR object containing the response data. + * See [The XMLHttpRequest Object](http://www.w3.org/TR/XMLHttpRequest/) for details. + * @param {Object} options The options config object passed to the {@link #request} method. + */ + /** + * @event requestexception + * Fires if an error HTTP status was returned from the server. This event may also + * be listened to in the event that a request has timed out or has been aborted. + * See [HTTP Status Code Definitions](http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html) + * for details of HTTP status codes. + * @param {Ext.data.Connection} conn This Connection object. + * @param {Object} response The XHR object containing the response data. + * See [The XMLHttpRequest Object](http://www.w3.org/TR/XMLHttpRequest/) for details. + * @param {Object} options The options config object passed to the {@link #request} method. + */ + this.requests = {}; + this.mixins.observable.constructor.call(this); + }, + + /** + * Sends an HTTP request to a remote server. + * + * **Important:** Ajax server requests are asynchronous, and this call will + * return before the response has been received. Process any returned data + * in a callback function. + * + * Ext.Ajax.request({ + * url: 'ajax_demo/sample.json', + * success: function(response, opts) { + * var obj = Ext.decode(response.responseText); + * console.dir(obj); + * }, + * failure: function(response, opts) { + * console.log('server-side failure with status code ' + response.status); + * } + * }); + * + * To execute a callback function in the correct scope, use the `scope` option. + * + * @param {Object} options An object which may contain the following properties: + * + * (The options object may also contain any other property which might be needed to perform + * postprocessing in a callback because it is passed to callback functions.) + * + * @param {String/Function} options.url The URL to which to send the request, or a function + * to call which returns a URL string. The scope of the function is specified by the `scope` option. + * Defaults to the configured `url`. + * + * @param {Object/String/Function} options.params An object containing properties which are + * used as parameters to the request, a url encoded string or a function to call to get either. The scope + * of the function is specified by the `scope` option. + * + * @param {String} options.method The HTTP method to use + * for the request. Defaults to the configured method, or if no method was configured, + * "GET" if no parameters are being sent, and "POST" if parameters are being sent. Note that + * the method name is case-sensitive and should be all caps. + * + * @param {Function} options.callback The function to be called upon receipt of the HTTP response. + * The callback is called regardless of success or failure and is passed the following parameters: + * @param {Object} options.callback.options The parameter to the request call. + * @param {Boolean} options.callback.success True if the request succeeded. + * @param {Object} options.callback.response The XMLHttpRequest object containing the response data. + * See [www.w3.org/TR/XMLHttpRequest/](http://www.w3.org/TR/XMLHttpRequest/) for details about + * accessing elements of the response. + * + * @param {Function} options.success The function to be called upon success of the request. + * The callback is passed the following parameters: + * @param {Object} options.success.response The XMLHttpRequest object containing the response data. + * @param {Object} options.success.options The parameter to the request call. + * + * @param {Function} options.failure The function to be called upon failure of the request. + * The callback is passed the following parameters: + * @param {Object} options.failure.response The XMLHttpRequest object containing the response data. + * @param {Object} options.failure.options The parameter to the request call. + * + * @param {Object} options.scope The scope in which to execute the callbacks: The "this" object for + * the callback function. If the `url`, or `params` options were specified as functions from which to + * draw values, then this also serves as the scope for those function calls. Defaults to the browser + * window. + * + * @param {Number} options.timeout The timeout in milliseconds to be used for this request. + * Defaults to 30 seconds. + * + * @param {Ext.Element/HTMLElement/String} options.form The `
    ` Element or the id of the `` + * to pull parameters from. + * + * @param {Boolean} options.isUpload **Only meaningful when used with the `form` option.** + * + * True if the form object is a file upload (will be set automatically if the form was configured + * with **`enctype`** `"multipart/form-data"`). + * + * File uploads are not performed using normal "Ajax" techniques, that is they are **not** + * performed using XMLHttpRequests. Instead the form is submitted in the standard manner with the + * DOM `` element temporarily modified to have its [target][] set to refer to a dynamically + * generated, hidden `', + '{afterIFrameTpl}', + { + disableFormats: true + } + ], + + stretchInputElFixed: true, + + subTplInsertions: [ + /** + * @cfg {String/Array/Ext.XTemplate} beforeTextAreaTpl + * An optional string or `XTemplate` configuration to insert in the field markup + * before the textarea element. If an `XTemplate` is used, the component's + * {@link Ext.form.field.Base#getSubTplData subTpl data} serves as the context. + */ + 'beforeTextAreaTpl', + + /** + * @cfg {String/Array/Ext.XTemplate} afterTextAreaTpl + * An optional string or `XTemplate` configuration to insert in the field markup + * after the textarea element. If an `XTemplate` is used, the component's + * {@link Ext.form.field.Base#getSubTplData subTpl data} serves as the context. + */ + 'afterTextAreaTpl', + + /** + * @cfg {String/Array/Ext.XTemplate} beforeIFrameTpl + * An optional string or `XTemplate` configuration to insert in the field markup + * before the iframe element. If an `XTemplate` is used, the component's + * {@link Ext.form.field.Base#getSubTplData subTpl data} serves as the context. + */ + 'beforeIFrameTpl', + + /** + * @cfg {String/Array/Ext.XTemplate} afterIFrameTpl + * An optional string or `XTemplate` configuration to insert in the field markup + * after the iframe element. If an `XTemplate` is used, the component's + * {@link Ext.form.field.Base#getSubTplData subTpl data} serves as the context. + */ + 'afterIFrameTpl', + + /** + * @cfg {String/Array/Ext.XTemplate} iframeAttrTpl + * An optional string or `XTemplate` configuration to insert in the field markup + * inside the iframe element (as attributes). If an `XTemplate` is used, the component's + * {@link Ext.form.field.Base#getSubTplData subTpl data} serves as the context. + */ + 'iframeAttrTpl', + + // inherited + 'inputAttrTpl' + ], + + /** + * @cfg {Boolean} enableFormat + * Enable the bold, italic and underline buttons + */ + enableFormat: true, + /** + * @cfg {Boolean} enableFontSize + * Enable the increase/decrease font size buttons + */ + enableFontSize: true, + /** + * @cfg {Boolean} enableColors + * Enable the fore/highlight color buttons + */ + enableColors: true, + /** + * @cfg {Boolean} enableAlignments + * Enable the left, center, right alignment buttons + */ + enableAlignments: true, + /** + * @cfg {Boolean} enableLists + * Enable the bullet and numbered list buttons. Not available in Safari 2. + */ + enableLists: true, + /** + * @cfg {Boolean} enableSourceEdit + * Enable the switch to source edit button. Not available in Safari 2. + */ + enableSourceEdit: true, + /** + * @cfg {Boolean} enableLinks + * Enable the create link button. Not available in Safari 2. + */ + enableLinks: true, + /** + * @cfg {Boolean} enableFont + * Enable font selection. Not available in Safari 2. + */ + enableFont: true, + // + /** + * @cfg {String} createLinkText + * The default text for the create link prompt + */ + createLinkText: 'Please enter the URL for the link:', + // + /** + * @cfg {String} [defaultLinkValue='http://'] + * The default value for the create link prompt + */ + defaultLinkValue: 'http:/'+'/', + /** + * @cfg {String[]} fontFamilies + * An array of available font families + */ + fontFamilies: [ + 'Arial', + 'Courier New', + 'Tahoma', + 'Times New Roman', + 'Verdana' + ], + /** + * @cfg {String} defaultValue + * A default value to be put into the editor to resolve focus issues. + * + * Defaults to (Non-breaking space) in Opera and IE6, + * (Zero-width space) in all other browsers. + */ + defaultValue: (Ext.isOpera || Ext.isIE6) ? ' ' : '​', + + // private + extraFieldBodyCls: Ext.baseCSSPrefix + 'html-editor-wrap', + + /** + * @cfg {String} defaultButtonUI + * A default {@link Ext.Component#ui ui} to use for the HtmlEditor's toolbar + * {@link Ext.button.Button Buttons} + */ + + // @private + initialized: false, + // @private + activated: false, + // @private + sourceEditMode: false, + // @private + iframePad:3, + // @private + hideMode:'offsets', + + maskOnDisable: true, + + containerElCls: Ext.baseCSSPrefix + 'html-editor-container', + + // @private + initComponent: function(){ + var me = this; + + me.addEvents( + /** + * @event initialize + * Fires when the editor is fully initialized (including the iframe) + * @param {Ext.form.field.HtmlEditor} this + */ + 'initialize', + /** + * @event activate + * Fires when the editor is first receives the focus. Any insertion must wait until after this event. + * @param {Ext.form.field.HtmlEditor} this + */ + 'activate', + /** + * @event beforesync + * Fires before the textarea is updated with content from the editor iframe. Return false to cancel the + * sync. + * @param {Ext.form.field.HtmlEditor} this + * @param {String} html + */ + 'beforesync', + /** + * @event beforepush + * Fires before the iframe editor is updated with content from the textarea. Return false to cancel the + * push. + * @param {Ext.form.field.HtmlEditor} this + * @param {String} html + */ + 'beforepush', + /** + * @event sync + * Fires when the textarea is updated with content from the editor iframe. + * @param {Ext.form.field.HtmlEditor} this + * @param {String} html + */ + 'sync', + /** + * @event push + * Fires when the iframe editor is updated with content from the textarea. + * @param {Ext.form.field.HtmlEditor} this + * @param {String} html + */ + 'push', + /** + * @event editmodechange + * Fires when the editor switches edit modes + * @param {Ext.form.field.HtmlEditor} this + * @param {Boolean} sourceEdit True if source edit, false if standard editing. + */ + 'editmodechange' + ); + + me.items = [me.createToolbar(), me.createInputCmp()]; + + me.layout = { + type: 'vbox', + align: 'stretch' + }; + + me.callParent(arguments); + me.initField(); + }, + + createInputCmp: function(){ + this.inputCmp = Ext.widget(this.getInputCmpCfg()); + return this.inputCmp; + }, + + getInputCmpCfg: function(){ + var me = this, + id = me.id + '-inputCmp', + data = { + id : id, + name : me.name, + textareaCls : Ext.baseCSSPrefix + 'hidden', + value : me.value, + iframeName : Ext.id(), + iframeSrc : Ext.SSL_SECURE_URL, + iframeCls : Ext.baseCSSPrefix + 'htmleditor-iframe' + }; + + me.getInsertionRenderData(data, me.subTplInsertions); + + return { + flex: 1, + xtype: 'component', + tpl: me.getTpl('componentTpl'), + childEls: ['iframeEl', 'textareaEl'], + id: id, + cls: Ext.baseCSSPrefix + 'html-editor-input', + data: data + }; + }, + + /* + * Called when the editor creates its toolbar. Override this method if you need to + * add custom toolbar buttons. + * @param {Ext.form.field.HtmlEditor} editor + * @protected + */ + createToolbar: function(){ + this.toolbar = Ext.widget(this.getToolbarCfg()); + return this.toolbar; + }, + + getToolbarCfg: function(){ + var me = this, + items = [], i, + tipsEnabled = Ext.quickTipsActive && Ext.tip.QuickTipManager.isEnabled(), + baseCSSPrefix = Ext.baseCSSPrefix, + fontSelectItem, undef; + + function btn(id, toggle, handler){ + return { + itemId: id, + cls: baseCSSPrefix + 'btn-icon', + iconCls: baseCSSPrefix + 'edit-'+id, + enableToggle:toggle !== false, + scope: me, + handler:handler||me.relayBtnCmd, + clickEvent: 'mousedown', + tooltip: tipsEnabled ? me.buttonTips[id] || undef : undef, + overflowText: me.buttonTips[id].title || undef, + tabIndex: -1 + }; + } + + + if (me.enableFont && !Ext.isSafari2) { + fontSelectItem = Ext.widget('component', { + itemId: 'fontSelect', + renderTpl: [ + '' + ], + childEls: ['selectEl'], + afterRender: function() { + me.fontSelect = this.selectEl; + Ext.Component.prototype.afterRender.apply(this, arguments); + }, + onDisable: function() { + var selectEl = this.selectEl; + if (selectEl) { + selectEl.dom.disabled = true; + } + Ext.Component.prototype.onDisable.apply(this, arguments); + }, + onEnable: function() { + var selectEl = this.selectEl; + if (selectEl) { + selectEl.dom.disabled = false; + } + Ext.Component.prototype.onEnable.apply(this, arguments); + }, + listeners: { + change: function() { + me.win.focus(); + me.relayCmd('fontName', me.fontSelect.dom.value); + me.deferFocus(); + }, + element: 'selectEl' + } + }); + + items.push( + fontSelectItem, + '-' + ); + } + + if (me.enableFormat) { + items.push( + btn('bold'), + btn('italic'), + btn('underline') + ); + } + + if (me.enableFontSize) { + items.push( + '-', + btn('increasefontsize', false, me.adjustFont), + btn('decreasefontsize', false, me.adjustFont) + ); + } + + if (me.enableColors) { + items.push( + '-', { + itemId: 'forecolor', + cls: baseCSSPrefix + 'btn-icon', + iconCls: baseCSSPrefix + 'edit-forecolor', + overflowText: me.buttonTips.forecolor.title, + tooltip: tipsEnabled ? me.buttonTips.forecolor || undef : undef, + tabIndex:-1, + menu: Ext.widget('menu', { + plain: true, + + items: [{ + xtype: 'colorpicker', + allowReselect: true, + focus: Ext.emptyFn, + value: '000000', + plain: true, + clickEvent: 'mousedown', + handler: function(cp, color) { + me.relayCmd('forecolor', Ext.isWebKit || Ext.isIE ? '#'+color : color); + this.up('menu').hide(); + } + }] + }) + }, { + itemId: 'backcolor', + cls: baseCSSPrefix + 'btn-icon', + iconCls: baseCSSPrefix + 'edit-backcolor', + overflowText: me.buttonTips.backcolor.title, + tooltip: tipsEnabled ? me.buttonTips.backcolor || undef : undef, + tabIndex:-1, + menu: Ext.widget('menu', { + plain: true, + + items: [{ + xtype: 'colorpicker', + focus: Ext.emptyFn, + value: 'FFFFFF', + plain: true, + allowReselect: true, + clickEvent: 'mousedown', + handler: function(cp, color) { + if (Ext.isGecko) { + me.execCmd('useCSS', false); + me.execCmd('hilitecolor', '#'+color); + me.execCmd('useCSS', true); + me.deferFocus(); + } else { + me.relayCmd(Ext.isOpera ? 'hilitecolor' : 'backcolor', Ext.isWebKit || Ext.isIE || Ext.isOpera ? '#'+color : color); + } + this.up('menu').hide(); + } + }] + }) + } + ); + } + + if (me.enableAlignments) { + items.push( + '-', + btn('justifyleft'), + btn('justifycenter'), + btn('justifyright') + ); + } + + if (!Ext.isSafari2) { + if (me.enableLinks) { + items.push( + '-', + btn('createlink', false, me.createLink) + ); + } + + if (me.enableLists) { + items.push( + '-', + btn('insertorderedlist'), + btn('insertunorderedlist') + ); + } + if (me.enableSourceEdit) { + items.push( + '-', + btn('sourceedit', true, function(btn){ + me.toggleSourceEdit(!me.sourceEditMode); + }) + ); + } + } + + // Everything starts disabled. + for (i = 0; i < items.length; i++) { + if (items[i].itemId !== 'sourceedit') { + items[i].disabled = true; + } + } + + // build the toolbar + // Automatically rendered in AbstractComponent.afterRender's renderChildren call + return { + xtype: 'toolbar', + defaultButtonUI: me.defaultButtonUI, + cls: Ext.baseCSSPrefix + 'html-editor-tb', + enableOverflow: true, + items: items, + + // stop form submits + listeners: { + click: function(e){ + e.preventDefault(); + }, + element: 'el' + } + }; + }, + + getMaskTarget: function(){ + // Can't be the body td directly because of issues with absolute positioning + // inside td's in FF + return Ext.isGecko ? this.inputCmp.el : this.bodyEl; + }, + + /** + * Sets the read only state of this field. + * @param {Boolean} readOnly Whether the field should be read only. + */ + setReadOnly: function(readOnly) { + var me = this, + textareaEl = me.textareaEl, + iframeEl = me.iframeEl, + body; + + me.readOnly = readOnly; + + if (textareaEl) { + textareaEl.dom.readOnly = readOnly; + } + + if (me.initialized) { + body = me.getEditorBody(); + if (Ext.isIE) { + // Hide the iframe while setting contentEditable so it doesn't grab focus + iframeEl.setDisplayed(false); + body.contentEditable = !readOnly; + iframeEl.setDisplayed(true); + } else { + me.setDesignMode(!readOnly); + } + if (body) { + body.style.cursor = readOnly ? 'default' : 'text'; + } + me.disableItems(readOnly); + } + }, + + /** + * Called when the editor initializes the iframe with HTML contents. Override this method if you + * want to change the initialization markup of the iframe (e.g. to add stylesheets). + * + * **Note:** IE8-Standards has unwanted scroller behavior, so the default meta tag forces IE7 compatibility. + * Also note that forcing IE7 mode works when the page is loaded normally, but if you are using IE's Web + * Developer Tools to manually set the document mode, that will take precedence and override what this + * code sets by default. This can be confusing when developing, but is not a user-facing issue. + * @protected + */ + getDocMarkup: function() { + var me = this, + h = me.iframeEl.getHeight() - me.iframePad * 2, + oldIE = Ext.isIE8m; + + // - IE9+ require a strict doctype otherwise text outside visible area can't be selected. + // - Opera inserts

    tags on Return key, so P margins must be removed to avoid double line-height. + // - On browsers other than IE, the font is not inherited by the IFRAME so it must be specified. + return Ext.String.format( + (oldIE ? '' : '') + + '' + , me.iframePad, h, me.defaultFont); + }, + + // @private + getEditorBody: function() { + var doc = this.getDoc(); + return doc.body || doc.documentElement; + }, + + // @private + getDoc: function() { + return (!Ext.isIE && this.iframeEl.dom.contentDocument) || this.getWin().document; + }, + + // @private + getWin: function() { + return Ext.isIE ? this.iframeEl.dom.contentWindow : window.frames[this.iframeEl.dom.name]; + }, + + initDefaultFont: function(){ + // It's not ideal to do this here since it's a write phase, but we need to know + // what the font used in the textarea is so that we can setup the appropriate font + // options in the select box. The select box will reflow once we populate it, so we want + // to do so before we layout the first time. + + var me = this, + selIdx = 0, + fonts, font, select, + option, i, len, lower; + + if (!me.defaultFont) { + font = me.textareaEl.getStyle('font-family'); + font = Ext.String.capitalize(font.split(',')[0]); + fonts = Ext.Array.clone(me.fontFamilies); + Ext.Array.include(fonts, font); + fonts.sort(); + me.defaultFont = font; + + select = me.down('#fontSelect').selectEl.dom; + for (i = 0, len = fonts.length; i < len; ++i) { + font = fonts[i]; + lower = font.toLowerCase(); + option = new Option(font, lower); + if (font == me.defaultFont) { + selIdx = i; + } + option.style.fontFamily = lower; + + if (Ext.isIE) { + select.add(option); + } else { + select.options.add(option); + } + } + // Old IE versions have a problem if we set the selected property + // in the loop, so set it after. + select.options[selIdx].selected = true; + } + }, + + isEqual: function(value1, value2){ + return this.isEqualAsString(value1, value2); + }, + + // @private + afterRender: function() { + var me = this, + inputCmp = me.inputCmp; + + me.callParent(arguments); + + me.iframeEl = inputCmp.iframeEl; + me.textareaEl = inputCmp.textareaEl; + + // The input element is interrogated by the layout to extract height when labelAlign is 'top' + // It must be set, and then switched between the iframe and the textarea + me.inputEl = me.iframeEl; + + if (me.enableFont) { + me.initDefaultFont(); + } + + // Start polling for when the iframe document is ready to be manipulated + me.monitorTask = Ext.TaskManager.start({ + run: me.checkDesignMode, + scope: me, + interval: 100 + }); + me.relayCmd('fontName', me.defaultFont); + }, + + initFrameDoc: function() { + var me = this, + doc, task; + + Ext.TaskManager.stop(me.monitorTask); + + doc = me.getDoc(); + me.win = me.getWin(); + + doc.open(); + doc.write(me.getDocMarkup()); + doc.close(); + + task = { // must defer to wait for browser to be ready + run: function() { + var doc = me.getDoc(); + if (doc.body || doc.readyState === 'complete') { + Ext.TaskManager.stop(task); + me.setDesignMode(true); + Ext.defer(me.initEditor, 10, me); + } + }, + interval: 10, + duration:10000, + scope: me + }; + Ext.TaskManager.start(task); + }, + + checkDesignMode: function() { + var me = this, + doc = me.getDoc(); + if (doc && (!doc.editorInitialized || me.getDesignMode() !== 'on')) { + me.initFrameDoc(); + } + }, + + /** + * @private + * Sets current design mode. To enable, mode can be true or 'on', off otherwise + */ + setDesignMode: function(mode) { + var me = this, + doc = me.getDoc(); + if (doc) { + if (me.readOnly) { + mode = false; + } + doc.designMode = (/on|true/i).test(String(mode).toLowerCase()) ?'on':'off'; + } + }, + + // @private + getDesignMode: function() { + var doc = this.getDoc(); + return !doc ? '' : String(doc.designMode).toLowerCase(); + }, + + disableItems: function(disabled) { + var items = this.getToolbar().items.items, + i, + iLen = items.length, + item; + + for (i = 0; i < iLen; i++) { + item = items[i]; + + if (item.getItemId() !== 'sourceedit') { + item.setDisabled(disabled); + } + } + }, + + /** + * Toggles the editor between standard and source edit mode. + * @param {Boolean} [sourceEditMode] True for source edit, false for standard + */ + toggleSourceEdit: function(sourceEditMode) { + var me = this, + iframe = me.iframeEl, + textarea = me.textareaEl, + hiddenCls = Ext.baseCSSPrefix + 'hidden', + btn = me.getToolbar().getComponent('sourceedit'); + + if (!Ext.isBoolean(sourceEditMode)) { + sourceEditMode = !me.sourceEditMode; + } + me.sourceEditMode = sourceEditMode; + + if (btn.pressed !== sourceEditMode) { + btn.toggle(sourceEditMode); + } + if (sourceEditMode) { + me.disableItems(true); + me.syncValue(); + iframe.addCls(hiddenCls); + textarea.removeCls(hiddenCls); + textarea.dom.removeAttribute('tabIndex'); + textarea.focus(); + me.inputEl = textarea; + } else { + if (me.initialized) { + me.disableItems(me.readOnly); + } + me.pushValue(); + iframe.removeCls(hiddenCls); + textarea.addCls(hiddenCls); + textarea.dom.setAttribute('tabIndex', -1); + me.deferFocus(); + me.inputEl = iframe; + } + me.fireEvent('editmodechange', me, sourceEditMode); + me.updateLayout(); + }, + + // @private used internally + createLink: function() { + var url = prompt(this.createLinkText, this.defaultLinkValue); + if (url && url !== 'http:/'+'/') { + this.relayCmd('createlink', url); + } + }, + + clearInvalid: Ext.emptyFn, + + setValue: function(value) { + var me = this, + textarea = me.textareaEl, + inputCmp = me.inputCmp; + + me.mixins.field.setValue.call(me, value); + if (value === null || value === undefined) { + value = ''; + } + if (textarea) { + textarea.dom.value = value; + } + me.pushValue(); + + if (!me.rendered && me.inputCmp) { + me.inputCmp.data.value = value; + } + + return me; + }, + + /** + * If you need/want custom HTML cleanup, this is the method you should override. + * @param {String} html The HTML to be cleaned + * @return {String} The cleaned HTML + * @protected + */ + cleanHtml: function(html) { + html = String(html); + if (Ext.isWebKit) { // strip safari nonsense + html = html.replace(/\sclass="(?:Apple-style-span|Apple-tab-span|khtml-block-placeholder)"/gi, ''); + } + + /* + * Neat little hack. Strips out all the non-digit characters from the default + * value and compares it to the character code of the first character in the string + * because it can cause encoding issues when posted to the server. We need the + * parseInt here because charCodeAt will return a number. + */ + if (html.charCodeAt(0) === parseInt(this.defaultValue.replace(/\D/g, ''), 10)) { + html = html.substring(1); + } + + return html; + }, + + /** + * Syncs the contents of the editor iframe with the textarea. + * @protected + */ + syncValue: function(){ + var me = this, + body, changed, html, bodyStyle, match, textElDom; + + if (me.initialized) { + body = me.getEditorBody(); + html = body.innerHTML; + textElDom = me.textareaEl.dom; + + if (Ext.isWebKit) { + bodyStyle = body.getAttribute('style'); // Safari puts text-align styles on the body element! + match = bodyStyle.match(/text-align:(.*?);/i); + if (match && match[1]) { + html = '

    ' + html + '
    '; + } + } + + html = me.cleanHtml(html); + + if (me.fireEvent('beforesync', me, html) !== false) { + // Gecko inserts single
    tag when input is empty + // and user toggles source mode. See https://sencha.jira.com/browse/EXTJSIV-8542 + if (Ext.isGecko && textElDom.value === '' && html === '
    ') { + html = ''; + } + + if (textElDom.value !== html) { + textElDom.value = html; + changed = true; + } + + me.fireEvent('sync', me, html); + + if (changed) { + // we have to guard this to avoid infinite recursion because getValue + // calls this method... + me.checkChange(); + } + } + } + }, + + getValue: function() { + var me = this, + value; + if (!me.sourceEditMode) { + me.syncValue(); + } + value = me.rendered ? me.textareaEl.dom.value : me.value; + me.value = value; + return value; + }, + + /** + * Pushes the value of the textarea into the iframe editor. + * @protected + */ + pushValue: function() { + var me = this, + v; + if(me.initialized){ + v = me.textareaEl.dom.value || ''; + if (!me.activated && v.length < 1) { + v = me.defaultValue; + } + if (me.fireEvent('beforepush', me, v) !== false) { + me.getEditorBody().innerHTML = v; + if (Ext.isGecko) { + // Gecko hack, see: https://bugzilla.mozilla.org/show_bug.cgi?id=232791#c8 + me.setDesignMode(false); //toggle off first + me.setDesignMode(true); + } + me.fireEvent('push', me, v); + } + } + }, + + // @private + deferFocus: function(){ + this.focus(false, true); + }, + + getFocusEl: function() { + var me = this, + win = me.win; + return win && !me.sourceEditMode ? win : me.textareaEl; + }, + + focus: function(selectText, delay) { + var me = this, + value, focusEl; + + if (delay) { + if (!me.focusTask) { + me.focusTask = new Ext.util.DelayedTask(me.focus); + } + me.focusTask.delay(Ext.isNumber(delay) ? delay : 10, null, me, [selectText, false]); + } + else { + if (selectText) { + if (me.textareaEl && me.textareaEl.dom) { + value = me.textareaEl.dom.value; + } + if (value && value.length) { // Make sure there is content before calling SelectAll, otherwise the caret disappears. + me.execCmd('selectall', true); + } + } + focusEl = me.getFocusEl(); + if (focusEl && focusEl.focus) { + focusEl.focus(); + } + } + return me; + }, + + // @private + initEditor: function(){ + //Destroying the component during/before initEditor can cause issues. + try { + var me = this, + dbody = me.getEditorBody(), + ss = me.textareaEl.getStyles('font-size', 'font-family', 'background-image', 'background-repeat', 'background-color', 'color'), + doc, + fn; + + ss['background-attachment'] = 'fixed'; // w3c + dbody.bgProperties = 'fixed'; // ie + + Ext.DomHelper.applyStyles(dbody, ss); + + doc = me.getDoc(); + + if (doc) { + try { + Ext.EventManager.removeAll(doc); + } catch(e) {} + } + + /* + * We need to use createDelegate here, because when using buffer, the delayed task is added + * as a property to the function. When the listener is removed, the task is deleted from the function. + * Since onEditorEvent is shared on the prototype, if we have multiple html editors, the first time one of the editors + * is destroyed, it causes the fn to be deleted from the prototype, which causes errors. Essentially, we're just anonymizing the function. + */ + fn = Ext.Function.bind(me.onEditorEvent, me); + Ext.EventManager.on(doc, { + mousedown: fn, + dblclick: fn, + click: fn, + keyup: fn, + buffer:100 + }); + + // These events need to be relayed from the inner document (where they stop + // bubbling) up to the outer document. This has to be done at the DOM level so + // the event reaches listeners on elements like the document body. The effected + // mechanisms that depend on this bubbling behavior are listed to the right + // of the event. + fn = me.onRelayedEvent; + Ext.EventManager.on(doc, { + mousedown: fn, // menu dismisal (MenuManager) and Window onMouseDown (toFront) + mousemove: fn, // window resize drag detection + mouseup: fn, // window resize termination + click: fn, // not sure, but just to be safe + dblclick: fn, // not sure again + scope: me + }); + + if (Ext.isGecko) { + Ext.EventManager.on(doc, 'keypress', me.applyCommand, me); + } + + if (me.fixKeys) { + Ext.EventManager.on(doc, 'keydown', me.fixKeys, me); + } + if (me.fixKeysAfter) { + Ext.EventManager.on(doc, 'keyup', me.fixKeysAfter, me); + } + + if (Ext.isIE9 && Ext.isStrict) { + Ext.EventManager.on(doc.documentElement, 'focus', me.focus, me); + } + + // In old IEs, clicking on a toolbar button shifts focus from iframe + // and it loses selection. To avoid this, we save current selection + // and restore it. + if (Ext.isIE8m || (Ext.isIE9 && !Ext.isStrict)) { + Ext.EventManager.on(doc, 'focusout', function() { + me.savedSelection = doc.selection.type !== 'None' ? doc.selection.createRange() : null; + }, me); + + Ext.EventManager.on(doc, 'focusin', function() { + if (me.savedSelection) { + me.savedSelection.select(); + } + }, me); + } + + // We need to be sure we remove all our events from the iframe on unload or we're going to LEAK! + Ext.EventManager.onWindowUnload(me.beforeDestroy, me); + doc.editorInitialized = true; + + me.initialized = true; + me.pushValue(); + me.setReadOnly(me.readOnly); + me.fireEvent('initialize', me); + } catch(ex) { + // ignore (why?) + } + }, + + // @private + beforeDestroy: function(){ + var me = this, + monitorTask = me.monitorTask, + doc, prop; + + if (monitorTask) { + Ext.TaskManager.stop(monitorTask); + } + if (me.rendered) { + Ext.EventManager.removeUnloadListener(me.beforeDestroy, me); + try { + doc = me.getDoc(); + if (doc) { + // removeAll() doesn't currently know how to handle iframe document, + // so for now we have to wrap it in an Ext.Element using Ext.fly, + // or else IE6/7 will leak big time when the page is refreshed. + // TODO: this may not be needed once we find a more permanent fix. + // see EXTJSIV-5891. + Ext.EventManager.removeAll(Ext.fly(doc)); + for (prop in doc) { + if (doc.hasOwnProperty && doc.hasOwnProperty(prop)) { + delete doc[prop]; + } + } + } + } catch(e) { + // ignore (why?) + } + delete me.iframeEl; + delete me.textareaEl; + delete me.toolbar; + delete me.inputCmp; + } + me.callParent(); + }, + + // @private + onRelayedEvent: function (event) { + // relay event from the iframe's document to the document that owns the iframe... + + var iframeEl = this.iframeEl, + + // Get the left-based iframe position + iframeXY = Ext.Element.getTrueXY(iframeEl), + originalEventXY = event.getXY(), + + // Get the left-based XY position. + // This is because the consumer of the injected event (Ext.EventManager) will + // perform its own RTL normalization. + eventXY = Ext.EventManager.getPageXY(event.browserEvent); + + // the event from the inner document has XY relative to that document's origin, + // so adjust it to use the origin of the iframe in the outer document: + event.xy = [iframeXY[0] + eventXY[0], iframeXY[1] + eventXY[1]]; + + event.injectEvent(iframeEl); // blame the iframe for the event... + + event.xy = originalEventXY; // restore the original XY (just for safety) + }, + + // @private + onFirstFocus: function(){ + var me = this, + selection, range; + me.activated = true; + me.disableItems(me.readOnly); + if (Ext.isGecko) { // prevent silly gecko errors + me.win.focus(); + selection = me.win.getSelection(); + if (!selection.focusNode || selection.focusNode.nodeType !== 3) { + range = selection.getRangeAt(0); + range.selectNodeContents(me.getEditorBody()); + range.collapse(true); + me.deferFocus(); + } + try { + me.execCmd('useCSS', true); + me.execCmd('styleWithCSS', false); + } catch(e) { + // ignore (why?) + } + } + me.fireEvent('activate', me); + }, + + // @private + adjustFont: function(btn) { + var adjust = btn.getItemId() === 'increasefontsize' ? 1 : -1, + size = this.getDoc().queryCommandValue('FontSize') || '2', + isPxSize = Ext.isString(size) && size.indexOf('px') !== -1, + isSafari; + size = parseInt(size, 10); + if (isPxSize) { + // Safari 3 values + // 1 = 10px, 2 = 13px, 3 = 16px, 4 = 18px, 5 = 24px, 6 = 32px + if (size <= 10) { + size = 1 + adjust; + } + else if (size <= 13) { + size = 2 + adjust; + } + else if (size <= 16) { + size = 3 + adjust; + } + else if (size <= 18) { + size = 4 + adjust; + } + else if (size <= 24) { + size = 5 + adjust; + } + else { + size = 6 + adjust; + } + size = Ext.Number.constrain(size, 1, 6); + } else { + isSafari = Ext.isSafari; + if (isSafari) { // safari + adjust *= 2; + } + size = Math.max(1, size + adjust) + (isSafari ? 'px' : 0); + } + this.relayCmd('FontSize', size); + }, + + // @private + onEditorEvent: function(e) { + this.updateToolbar(); + }, + + /** + * Triggers a toolbar update by reading the markup state of the current selection in the editor. + * @protected + */ + updateToolbar: function() { + var me = this, + i, l, btns, doc, name, queriedName, fontSelect, + toolbarSubmenus; + + if (me.readOnly) { + return; + } + + if (!me.activated) { + me.onFirstFocus(); + return; + } + + btns = me.getToolbar().items.map; + doc = me.getDoc(); + + if (me.enableFont && !Ext.isSafari2) { + // When querying the fontName, Chrome may return an Array of font names + // with those containing spaces being placed between single-quotes. + queriedName = doc.queryCommandValue('fontName'); + name = (queriedName ? queriedName.split(",")[0].replace(/^'/,'').replace(/'$/,'') : me.defaultFont).toLowerCase(); + fontSelect = me.fontSelect.dom; + if (name !== fontSelect.value || name != queriedName) { + fontSelect.value = name; + } + } + + function updateButtons() { + var state; + + for (i = 0, l = arguments.length, name; i < l; i++) { + name = arguments[i]; + + // Firefox 18+ sometimes throws NS_ERROR_INVALID_POINTER exception + // See https://sencha.jira.com/browse/EXTJSIV-9766 + try { + state = doc.queryCommandState(name); + } + catch (e) { + state = false; + } + + btns[name].toggle(state); + } + } + if(me.enableFormat){ + updateButtons('bold', 'italic', 'underline'); + } + if(me.enableAlignments){ + updateButtons('justifyleft', 'justifycenter', 'justifyright'); + } + if(!Ext.isSafari2 && me.enableLists){ + updateButtons('insertorderedlist', 'insertunorderedlist'); + } + + // Ensure any of our toolbar's owned menus are hidden. + // The overflow menu must control itself. + toolbarSubmenus = me.toolbar.query('menu'); + for (i = 0; i < toolbarSubmenus.length; i++) { + toolbarSubmenus[i].hide(); + } + me.syncValue(); + }, + + // @private + relayBtnCmd: function(btn) { + this.relayCmd(btn.getItemId()); + }, + + /** + * Executes a Midas editor command on the editor document and performs necessary focus and toolbar updates. + * **This should only be called after the editor is initialized.** + * @param {String} cmd The Midas command + * @param {String/Boolean} [value=null] The value to pass to the command + */ + relayCmd: function(cmd, value) { + Ext.defer(function() { + var me = this; + + if (!this.isDestroyed) { + me.win.focus(); + me.execCmd(cmd, value); + me.updateToolbar(); + } + }, 10, this); + }, + + /** + * Executes a Midas editor command directly on the editor document. For visual commands, you should use + * {@link #relayCmd} instead. **This should only be called after the editor is initialized.** + * @param {String} cmd The Midas command + * @param {String/Boolean} [value=null] The value to pass to the command + */ + execCmd: function(cmd, value){ + var me = this, + doc = me.getDoc(); + doc.execCommand(cmd, false, (value == undefined ? null : value)); + me.syncValue(); + }, + + // @private + applyCommand: function(e){ + if (e.ctrlKey) { + var me = this, + c = e.getCharCode(), cmd; + if (c > 0) { + c = String.fromCharCode(c); + switch (c) { + case 'b': + cmd = 'bold'; + break; + case 'i': + cmd = 'italic'; + break; + case 'u': + cmd = 'underline'; + break; + } + if (cmd) { + me.win.focus(); + me.execCmd(cmd); + me.deferFocus(); + e.preventDefault(); + } + } + } + }, + + /** + * Inserts the passed text at the current cursor position. + * __Note:__ the editor must be initialized and activated to insert text. + * @param {String} text + */ + insertAtCursor: function(text){ + var me = this, + range; + + if (me.activated) { + me.win.focus(); + if (Ext.isIE) { + range = me.getDoc().selection.createRange(); + if (range) { + range.pasteHTML(text); + me.syncValue(); + me.deferFocus(); + } + }else{ + me.execCmd('InsertHTML', text); + me.deferFocus(); + } + } + }, + + // @private + fixKeys: (function() { // load time branching for fastest keydown performance + if (Ext.isIE) { + return function(e){ + var me = this, + k = e.getKey(), + doc = me.getDoc(), + readOnly = me.readOnly, + range, target; + + if (k === e.TAB) { + e.stopEvent(); + if (!readOnly) { + range = doc.selection.createRange(); + if (range){ + if (range.collapse) { + range.collapse(true); + range.pasteHTML('    '); + } + + me.deferFocus(); + } + } + } + else if (k === e.ENTER) { + if (!readOnly) { + range = doc.selection.createRange(); + if (range) { + target = range.parentElement(); + if(!target || target.tagName.toLowerCase() !== 'li'){ + e.stopEvent(); + range.pasteHTML('
    '); + range.collapse(false); + range.select(); + } + } + } + } + }; + } + + if (Ext.isOpera) { + return function(e){ + var me = this, + k = e.getKey(), + readOnly = me.readOnly; + if (k === e.TAB) { + e.stopEvent(); + if (!readOnly) { + me.win.focus(); + me.execCmd('InsertHTML','    '); + me.deferFocus(); + } + } + }; + } + + return null; // not needed, so null + }()), + + // @private + fixKeysAfter: (function() { + if (Ext.isIE) { + return function(e) { + var me = this, + k = e.getKey(), + doc = me.getDoc(), + readOnly = me.readOnly, + innerHTML; + + if (!readOnly && (k === e.BACKSPACE || k === e.DELETE)) { + innerHTML = doc.body.innerHTML; + + // If HtmlEditor had some input and user cleared it, IE inserts

     

    + // which makes an impression that there is still some text, and creeps + // into source mode when toggled. We don't want this. + // + // See https://sencha.jira.com/browse/EXTJSIV-8542 + // + // N.B. There is **small** chance that user could go to source mode, + // type '

     

    ', switch back to visual mode, type something else + // and then clear it -- the code below would clear the

    tag as well, + // which could be considered a bug. However I see no way to distinguish + // between offending markup being entered manually and generated by IE, + // so this can be considered a nasty corner case. + // + if (innerHTML === '

     

    ' || innerHTML === '

     

    ') { + doc.body.innerHTML = ''; + } + } + } + } + + return null; + }()), + + /** + * Returns the editor's toolbar. **This is only available after the editor has been rendered.** + * @return {Ext.toolbar.Toolbar} + */ + getToolbar: function(){ + return this.toolbar; + }, + + // + /** + * @property {Object} buttonTips + * Object collection of toolbar tooltips for the buttons in the editor. The key is the command id associated with + * that button and the value is a valid QuickTips object. For example: + * + * { + * bold: { + * title: 'Bold (Ctrl+B)', + * text: 'Make the selected text bold.', + * cls: 'x-html-editor-tip' + * }, + * italic: { + * title: 'Italic (Ctrl+I)', + * text: 'Make the selected text italic.', + * cls: 'x-html-editor-tip' + * } + * // ... + * } + */ + buttonTips: { + bold: { + title: 'Bold (Ctrl+B)', + text: 'Make the selected text bold.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + italic: { + title: 'Italic (Ctrl+I)', + text: 'Make the selected text italic.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + underline: { + title: 'Underline (Ctrl+U)', + text: 'Underline the selected text.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + increasefontsize: { + title: 'Grow Text', + text: 'Increase the font size.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + decreasefontsize: { + title: 'Shrink Text', + text: 'Decrease the font size.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + backcolor: { + title: 'Text Highlight Color', + text: 'Change the background color of the selected text.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + forecolor: { + title: 'Font Color', + text: 'Change the color of the selected text.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + justifyleft: { + title: 'Align Text Left', + text: 'Align text to the left.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + justifycenter: { + title: 'Center Text', + text: 'Center text in the editor.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + justifyright: { + title: 'Align Text Right', + text: 'Align text to the right.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + insertunorderedlist: { + title: 'Bullet List', + text: 'Start a bulleted list.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + insertorderedlist: { + title: 'Numbered List', + text: 'Start a numbered list.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + createlink: { + title: 'Hyperlink', + text: 'Make the selected text a hyperlink.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + }, + sourceedit: { + title: 'Source Edit', + text: 'Switch to source editing mode.', + cls: Ext.baseCSSPrefix + 'html-editor-tip' + } + } + // + + // hide stuff that is not compatible + /** + * @event blur + * @private + */ + /** + * @event focus + * @private + */ + /** + * @event specialkey + * @private + */ + /** + * @cfg {String} fieldCls + * @private + */ + /** + * @cfg {String} focusCls + * @private + */ + /** + * @cfg {String} autoCreate + * @private + */ + /** + * @cfg {String} inputType + * @private + */ + /** + * @cfg {String} invalidCls + * @private + */ + /** + * @cfg {String} invalidText + * @private + */ + /** + * @cfg {String} msgFx + * @private + */ + /** + * @cfg {Boolean} allowDomMove + * @private + */ + /** + * @cfg {String} applyTo + * @private + */ + /** + * @cfg {String} readOnly + * @private + */ + /** + * @cfg {String} tabIndex + * @private + */ + /** + * @method validate + * @private + */ +}); diff --git a/extjs-django/marvel/static/extjs/src/form/field/Number.js b/extjs-django/marvel/static/extjs/src/form/field/Number.js new file mode 100644 index 0000000..6fe3459 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/form/field/Number.js @@ -0,0 +1,459 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @docauthor Jason Johnston + * + * A numeric text field that provides automatic keystroke filtering to disallow non-numeric characters, + * and numeric validation to limit the value to a range of valid numbers. The range of acceptable number + * values can be controlled by setting the {@link #minValue} and {@link #maxValue} configs, and fractional + * decimals can be disallowed by setting {@link #allowDecimals} to `false`. + * + * By default, the number field is also rendered with a set of up/down spinner buttons and has + * up/down arrow key and mouse wheel event listeners attached for incrementing/decrementing the value by the + * {@link #step} value. To hide the spinner buttons set `{@link #hideTrigger hideTrigger}:true`; to disable + * the arrow key and mouse wheel handlers set `{@link #keyNavEnabled keyNavEnabled}:false` and + * `{@link #mouseWheelEnabled mouseWheelEnabled}:false`. See the example below. + * + * # Example usage + * + * @example + * Ext.create('Ext.form.Panel', { + * title: 'On The Wall', + * width: 300, + * bodyPadding: 10, + * renderTo: Ext.getBody(), + * items: [{ + * xtype: 'numberfield', + * anchor: '100%', + * name: 'bottles', + * fieldLabel: 'Bottles of Beer', + * value: 99, + * maxValue: 99, + * minValue: 0 + * }], + * buttons: [{ + * text: 'Take one down, pass it around', + * handler: function() { + * this.up('form').down('[name=bottles]').spinDown(); + * } + * }] + * }); + * + * # Removing UI Enhancements + * + * @example + * Ext.create('Ext.form.Panel', { + * title: 'Personal Info', + * width: 300, + * bodyPadding: 10, + * renderTo: Ext.getBody(), + * items: [{ + * xtype: 'numberfield', + * anchor: '100%', + * name: 'age', + * fieldLabel: 'Age', + * minValue: 0, //prevents negative numbers + * + * // Remove spinner buttons, and arrow key and mouse wheel listeners + * hideTrigger: true, + * keyNavEnabled: false, + * mouseWheelEnabled: false + * }] + * }); + * + * # Using Step + * + * @example + * Ext.create('Ext.form.Panel', { + * renderTo: Ext.getBody(), + * title: 'Step', + * width: 300, + * bodyPadding: 10, + * items: [{ + * xtype: 'numberfield', + * anchor: '100%', + * name: 'evens', + * fieldLabel: 'Even Numbers', + * + * // Set step so it skips every other number + * step: 2, + * value: 0, + * + * // Add change handler to force user-entered numbers to evens + * listeners: { + * change: function(field, value) { + * value = parseInt(value, 10); + * field.setValue(value + value % 2); + * } + * } + * }] + * }); + */ +Ext.define('Ext.form.field.Number', { + extend:'Ext.form.field.Spinner', + alias: 'widget.numberfield', + alternateClassName: ['Ext.form.NumberField', 'Ext.form.Number'], + + /** + * @cfg {RegExp} stripCharsRe + * @private + */ + /** + * @cfg {RegExp} maskRe + * @private + */ + + /** + * @cfg {Boolean} [allowExponential=true] + * Set to `false` to disallow Exponential number notation + */ + allowExponential: true, + + /** + * @cfg {Boolean} [allowDecimals=true] + * False to disallow decimal values + */ + allowDecimals : true, + + // + /** + * @cfg {String} decimalSeparator + * Character(s) to allow as the decimal separator + */ + decimalSeparator : '.', + // + + // + /** + * @cfg {Boolean} [submitLocaleSeparator=true] + * False to ensure that the {@link #getSubmitValue} method strips + * always uses `.` as the separator, regardless of the {@link #decimalSeparator} + * configuration. + */ + submitLocaleSeparator: true, + // + + // + /** + * @cfg {Number} decimalPrecision + * The maximum precision to display after the decimal separator + */ + decimalPrecision : 2, + // + + /** + * @cfg {Number} minValue + * The minimum allowed value. Will be used by the field's validation logic, + * and for {@link Ext.form.field.Spinner#setSpinUpEnabled enabling/disabling the down spinner button}. + * + * Defaults to Number.NEGATIVE_INFINITY. + */ + minValue: Number.NEGATIVE_INFINITY, + + /** + * @cfg {Number} maxValue + * The maximum allowed value. Will be used by the field's validation logic, and for + * {@link Ext.form.field.Spinner#setSpinUpEnabled enabling/disabling the up spinner button}. + * + * Defaults to Number.MAX_VALUE. + */ + maxValue: Number.MAX_VALUE, + + /** + * @cfg {Number} step + * Specifies a numeric interval by which the field's value will be incremented or decremented when the user invokes + * the spinner. + */ + step: 1, + + // + /** + * @cfg {String} minText + * Error text to display if the minimum value validation fails. + */ + minText : 'The minimum value for this field is {0}', + // + + // + /** + * @cfg {String} maxText + * Error text to display if the maximum value validation fails. + */ + maxText : 'The maximum value for this field is {0}', + // + + // + /** + * @cfg {String} nanText + * Error text to display if the value is not a valid number. For example, this can happen if a valid character like + * '.' or '-' is left in the field with no number. + */ + nanText : '{0} is not a valid number', + // + + // + /** + * @cfg {String} negativeText + * Error text to display if the value is negative and {@link #minValue} is set to 0. This is used instead of the + * {@link #minText} in that circumstance only. + */ + negativeText : 'The value cannot be negative', + // + + /** + * @cfg {String} baseChars + * The base set of characters to evaluate as valid numbers. + */ + baseChars : '0123456789', + + /** + * @cfg {Boolean} autoStripChars + * True to automatically strip not allowed characters from the field. + */ + autoStripChars: false, + + initComponent: function() { + var me = this; + me.callParent(); + + me.setMinValue(me.minValue); + me.setMaxValue(me.maxValue); + }, + + /** + * Runs all of Number's validations and returns an array of any errors. Note that this first runs Text's + * validations, so the returned array is an amalgamation of all field errors. The additional validations run test + * that the value is a number, and that it is within the configured min and max values. + * @param {Object} [value] The value to get errors for (defaults to the current field value) + * @return {String[]} All validation errors for this field + */ + getErrors: function(value) { + var me = this, + errors = me.callParent(arguments), + format = Ext.String.format, + num; + + value = Ext.isDefined(value) ? value : this.processRawValue(this.getRawValue()); + + if (value.length < 1) { // if it's blank and textfield didn't flag it then it's valid + return errors; + } + + value = String(value).replace(me.decimalSeparator, '.'); + + if(isNaN(value)){ + errors.push(format(me.nanText, value)); + } + + num = me.parseValue(value); + + if (me.minValue === 0 && num < 0) { + errors.push(this.negativeText); + } + else if (num < me.minValue) { + errors.push(format(me.minText, me.minValue)); + } + + if (num > me.maxValue) { + errors.push(format(me.maxText, me.maxValue)); + } + + + return errors; + }, + + rawToValue: function(rawValue) { + var value = this.fixPrecision(this.parseValue(rawValue)); + if (value === null) { + value = rawValue || null; + } + return value; + }, + + valueToRaw: function(value) { + var me = this, + decimalSeparator = me.decimalSeparator; + value = me.parseValue(value); + value = me.fixPrecision(value); + value = Ext.isNumber(value) ? value : parseFloat(String(value).replace(decimalSeparator, '.')); + value = isNaN(value) ? '' : String(value).replace('.', decimalSeparator); + return value; + }, + + getSubmitValue: function() { + var me = this, + value = me.callParent(); + + if (!me.submitLocaleSeparator) { + value = value.replace(me.decimalSeparator, '.'); + } + return value; + }, + + onChange: function() { + this.toggleSpinners(); + this.callParent(arguments); + }, + + toggleSpinners: function(){ + var me = this, + value = me.getValue(), + valueIsNull = value === null, + enabled; + + // If it's disabled, only allow it to be re-enabled if we are + // the ones who are disabling it. + if (me.spinUpEnabled || me.spinUpDisabledByToggle) { + enabled = valueIsNull || value < me.maxValue; + me.setSpinUpEnabled(enabled, true); + } + + + if (me.spinDownEnabled || me.spinDownDisabledByToggle) { + enabled = valueIsNull || value > me.minValue; + me.setSpinDownEnabled(enabled, true); + } + }, + + /** + * Replaces any existing {@link #minValue} with the new value. + * @param {Number} value The minimum value + */ + setMinValue : function(value) { + var me = this, + allowed; + + me.minValue = Ext.Number.from(value, Number.NEGATIVE_INFINITY); + me.toggleSpinners(); + + // Build regexes for masking and stripping based on the configured options + if (me.disableKeyFilter !== true) { + allowed = me.baseChars + ''; + + if (me.allowExponential) { + allowed += me.decimalSeparator + 'e+-'; + } + else { + if (me.allowDecimals) { + allowed += me.decimalSeparator; + } + if (me.minValue < 0) { + allowed += '-'; + } + } + + allowed = Ext.String.escapeRegex(allowed); + me.maskRe = new RegExp('[' + allowed + ']'); + if (me.autoStripChars) { + me.stripCharsRe = new RegExp('[^' + allowed + ']', 'gi'); + } + } + }, + + /** + * Replaces any existing {@link #maxValue} with the new value. + * @param {Number} value The maximum value + */ + setMaxValue: function(value) { + this.maxValue = Ext.Number.from(value, Number.MAX_VALUE); + this.toggleSpinners(); + }, + + // private + parseValue : function(value) { + value = parseFloat(String(value).replace(this.decimalSeparator, '.')); + return isNaN(value) ? null : value; + }, + + /** + * @private + */ + fixPrecision : function(value) { + var me = this, + nan = isNaN(value), + precision = me.decimalPrecision; + + if (nan || !value) { + return nan ? '' : value; + } else if (!me.allowDecimals || precision <= 0) { + precision = 0; + } + + return parseFloat(Ext.Number.toFixed(parseFloat(value), precision)); + }, + + beforeBlur : function() { + var me = this, + v = me.parseValue(me.getRawValue()); + + if (!Ext.isEmpty(v)) { + me.setValue(v); + } + }, + + setSpinUpEnabled: function(enabled, /* private */ internal){ + this.callParent(arguments); + if (!internal) { + delete this.spinUpDisabledByToggle; + } else { + this.spinUpDisabledByToggle = !enabled; + } + }, + + onSpinUp: function() { + var me = this; + + if (!me.readOnly) { + me.setSpinValue(Ext.Number.constrain(me.getValue() + me.step, me.minValue, me.maxValue)); + } + }, + + setSpinDownEnabled: function(enabled, /* private */ internal){ + this.callParent(arguments); + if (!internal) { + delete this.spinDownDisabledByToggle; + } else { + this.spinDownDisabledByToggle = !enabled; + } + }, + + onSpinDown: function() { + var me = this; + + if (!me.readOnly) { + me.setSpinValue(Ext.Number.constrain(me.getValue() - me.step, me.minValue, me.maxValue)); + } + }, + + setSpinValue: function(value) { + var me = this, + len; + + if (me.enforceMaxLength) { + // We need to round the value here, otherwise we could end up with a + // very long number (think 0.1 + 0.2) + if (me.fixPrecision(value).toString().length > me.maxLength) { + return; + } + } + me.setValue(value); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/form/field/Picker.js b/extjs-django/marvel/static/extjs/src/form/field/Picker.js new file mode 100644 index 0000000..96d993e --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/form/field/Picker.js @@ -0,0 +1,351 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * An abstract class for fields that have a single trigger which opens a "picker" popup below the field, e.g. a combobox + * menu list or a date picker. It provides a base implementation for toggling the picker's visibility when the trigger + * is clicked, as well as keyboard navigation and some basic events. Sizing and alignment of the picker can be + * controlled via the {@link #matchFieldWidth} and {@link #pickerAlign}/{@link #pickerOffset} config properties + * respectively. + * + * You would not normally use this class directly, but instead use it as the parent class for a specific picker field + * implementation. Subclasses must implement the {@link #createPicker} method to create a picker component appropriate + * for the field. + */ +Ext.define('Ext.form.field.Picker', { + extend: 'Ext.form.field.Trigger', + alias: 'widget.pickerfield', + alternateClassName: 'Ext.form.Picker', + requires: ['Ext.util.KeyNav'], + + /** + * @cfg {Boolean} matchFieldWidth + * Whether the picker dropdown's width should be explicitly set to match the width of the field. Defaults to true. + */ + matchFieldWidth: true, + + /** + * @cfg {String} pickerAlign + * The {@link Ext.util.Positionable#alignTo alignment position} with which to align the picker. Defaults to "tl-bl?" + */ + pickerAlign: 'tl-bl?', + + /** + * @cfg {Number[]} pickerOffset + * An offset [x,y] to use in addition to the {@link #pickerAlign} when positioning the picker. + * Defaults to undefined. + */ + + /** + * @cfg {String} [openCls='x-pickerfield-open'] + * A class to be added to the field's {@link #bodyEl} element when the picker is opened. + */ + openCls: Ext.baseCSSPrefix + 'pickerfield-open', + + /** + * @property {Boolean} isExpanded + * True if the picker is currently expanded, false if not. + */ + + /** + * @cfg {Boolean} editable + * False to prevent the user from typing text directly into the field; the field can only have its value set via + * selecting a value from the picker. In this state, the picker can also be opened by clicking directly on the input + * field itself. + */ + editable: true, + + + initComponent: function() { + this.callParent(); + + // Custom events + this.addEvents( + /** + * @event expand + * Fires when the field's picker is expanded. + * @param {Ext.form.field.Picker} field This field instance + */ + 'expand', + /** + * @event collapse + * Fires when the field's picker is collapsed. + * @param {Ext.form.field.Picker} field This field instance + */ + 'collapse', + /** + * @event select + * Fires when a value is selected via the picker. + * @param {Ext.form.field.Picker} field This field instance + * @param {Object} value The value that was selected. The exact type of this value is dependent on + * the individual field and picker implementations. + */ + 'select' + ); + }, + + + initEvents: function() { + var me = this; + me.callParent(); + + // Add handlers for keys to expand/collapse the picker + me.keyNav = new Ext.util.KeyNav(me.inputEl, { + down: me.onDownArrow, + esc: { + handler: me.onEsc, + scope: me, + defaultEventAction: false + }, + scope: me, + forceKeyDown: true + }); + + // Non-editable allows opening the picker by clicking the field + if (!me.editable) { + me.mon(me.inputEl, 'click', me.onTriggerClick, me); + } + + // Disable native browser autocomplete + if (Ext.isGecko) { + me.inputEl.dom.setAttribute('autocomplete', 'off'); + } + }, + + // private + onEsc: function(e) { + if (Ext.isIE) { + // Stop the esc key from "restoring" the previous value in IE + // For example, type "foo". Highlight all the text, hit backspace. + // Hit esc, "foo" will be restored. This behaviour doesn't occur + // in any other browsers + e.preventDefault(); + } + + if (this.isExpanded) { + this.collapse(); + e.stopEvent(); + } + }, + + onDownArrow: function(e) { + if (!this.isExpanded) { + // Don't call expand() directly as there may be additional processing involved before + // expanding, e.g. in the case of a ComboBox query. + this.onTriggerClick(); + } + }, + + /** + * Expands this field's picker dropdown. + */ + expand: function() { + var me = this, + bodyEl, picker, collapseIf; + + if (me.rendered && !me.isExpanded && !me.isDestroyed) { + me.expanding = true; + bodyEl = me.bodyEl; + picker = me.getPicker(); + collapseIf = me.collapseIf; + + // show the picker and set isExpanded flag + picker.show(); + me.isExpanded = true; + me.alignPicker(); + bodyEl.addCls(me.openCls); + + // monitor clicking and mousewheel + me.mon(Ext.getDoc(), { + mousewheel: collapseIf, + mousedown: collapseIf, + scope: me + }); + Ext.EventManager.onWindowResize(me.alignPicker, me); + me.fireEvent('expand', me); + me.onExpand(); + delete me.expanding; + } + }, + + onExpand: Ext.emptyFn, + + /** + * Aligns the picker to the input element + * @protected + */ + alignPicker: function() { + var me = this, + picker = me.getPicker(); + + if (me.isExpanded) { + if (me.matchFieldWidth) { + // Auto the height (it will be constrained by min and max width) unless there are no records to display. + picker.setWidth(me.bodyEl.getWidth()); + } + if (picker.isFloating()) { + me.doAlign(); + } + } + }, + + /** + * Performs the alignment on the picker using the class defaults + * @private + */ + doAlign: function(){ + var me = this, + picker = me.picker, + aboveSfx = '-above', + isAbove; + + // Align to the trigger wrap because the border isn't always on the input element, which + // can cause the offset to be off + me.picker.alignTo(me.triggerWrap, me.pickerAlign, me.pickerOffset); + // add the {openCls}-above class if the picker was aligned above + // the field due to hitting the bottom of the viewport + isAbove = picker.el.getY() < me.inputEl.getY(); + me.bodyEl[isAbove ? 'addCls' : 'removeCls'](me.openCls + aboveSfx); + picker[isAbove ? 'addCls' : 'removeCls'](picker.baseCls + aboveSfx); + }, + + /** + * Collapses this field's picker dropdown. + */ + collapse: function() { + if (this.isExpanded && !this.isDestroyed) { + var me = this, + openCls = me.openCls, + picker = me.picker, + doc = Ext.getDoc(), + collapseIf = me.collapseIf, + aboveSfx = '-above'; + + // hide the picker and set isExpanded flag + picker.hide(); + me.isExpanded = false; + + // remove the openCls + me.bodyEl.removeCls([openCls, openCls + aboveSfx]); + picker.el.removeCls(picker.baseCls + aboveSfx); + + // remove event listeners + doc.un('mousewheel', collapseIf, me); + doc.un('mousedown', collapseIf, me); + Ext.EventManager.removeResizeListener(me.alignPicker, me); + me.fireEvent('collapse', me); + me.onCollapse(); + } + }, + + onCollapse: Ext.emptyFn, + + + /** + * @private + * Runs on mousewheel and mousedown of doc to check to see if we should collapse the picker + */ + collapseIf: function(e) { + var me = this; + + if (!me.isDestroyed && !e.within(me.bodyEl, false, true) && !e.within(me.picker.el, false, true) && !me.isEventWithinPickerLoadMask(e)) { + me.collapse(); + } + }, + + /** + * Returns a reference to the picker component for this field, creating it if necessary by + * calling {@link #createPicker}. + * @return {Ext.Component} The picker component + */ + getPicker: function() { + var me = this; + return me.picker || (me.picker = me.createPicker()); + }, + + /** + * @method + * Creates and returns the component to be used as this field's picker. Must be implemented by subclasses of Picker. + * The current field should also be passed as a configuration option to the picker component as the pickerField + * property. + */ + createPicker: Ext.emptyFn, + + /** + * Handles the trigger click; by default toggles between expanding and collapsing the picker component. + * @protected + */ + onTriggerClick: function() { + var me = this; + if (!me.readOnly && !me.disabled) { + if (me.isExpanded) { + me.collapse(); + } else { + me.expand(); + } + me.inputEl.focus(); + } + }, + + triggerBlur: function() { + var picker = this.picker; + + this.callParent(arguments); + if (picker && picker.isVisible()) { + picker.hide(); + } + }, + + mimicBlur: function(e) { + var me = this, + picker = me.picker; + // ignore mousedown events within the picker element + if (!picker || !e.within(picker.el, false, true) && !me.isEventWithinPickerLoadMask(e)) { + me.callParent(arguments); + } + }, + + onDestroy : function(){ + var me = this, + picker = me.picker; + + Ext.EventManager.removeResizeListener(me.alignPicker, me); + Ext.destroy(me.keyNav); + if (picker) { + delete picker.pickerField; + picker.destroy(); + } + me.callParent(); + }, + + /** + * returns true if the picker has a load mask and the passed event is within the load mask + * @private + * @param {Ext.EventObject} e + * @return {Boolean} + */ + isEventWithinPickerLoadMask: function(e) { + var loadMask = this.picker.loadMask; + + return loadMask ? e.within(loadMask.maskEl, false, true) || e.within(loadMask.el, false, true) : false; + } + +}); + diff --git a/extjs-django/marvel/static/extjs/src/form/field/Radio.js b/extjs-django/marvel/static/extjs/src/form/field/Radio.js new file mode 100644 index 0000000..ea433ce --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/form/field/Radio.js @@ -0,0 +1,305 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @docauthor Robert Dougan + * + * Single radio field. Similar to checkbox, but automatically handles making sure only one radio is checked + * at a time within a group of radios with the same name. + * + * # Labeling + * + * In addition to the {@link Ext.form.Labelable standard field labeling options}, radio buttons + * may be given an optional {@link #boxLabel} which will be displayed immediately to the right of the input. Also + * see {@link Ext.form.RadioGroup} for a convenient method of grouping related radio buttons. + * + * # Values + * + * The main value of a Radio field is a boolean, indicating whether or not the radio is checked. + * + * The following values will check the radio: + * + * - `true` + * - `'true'` + * - `'1'` + * - `'on'` + * + * Any other value will uncheck it. + * + * In addition to the main boolean value, you may also specify a separate {@link #inputValue}. This will be sent + * as the parameter value when the form is {@link Ext.form.Basic#submit submitted}. You will want to set this + * value if you have multiple radio buttons with the same {@link #name}, as is almost always the case. + * + * # Example usage + * + * @example + * Ext.create('Ext.form.Panel', { + * title : 'Order Form', + * width : 300, + * bodyPadding: 10, + * renderTo : Ext.getBody(), + * items: [ + * { + * xtype : 'fieldcontainer', + * fieldLabel : 'Size', + * defaultType: 'radiofield', + * defaults: { + * flex: 1 + * }, + * layout: 'hbox', + * items: [ + * { + * boxLabel : 'M', + * name : 'size', + * inputValue: 'm', + * id : 'radio1' + * }, { + * boxLabel : 'L', + * name : 'size', + * inputValue: 'l', + * id : 'radio2' + * }, { + * boxLabel : 'XL', + * name : 'size', + * inputValue: 'xl', + * id : 'radio3' + * } + * ] + * }, + * { + * xtype : 'fieldcontainer', + * fieldLabel : 'Color', + * defaultType: 'radiofield', + * defaults: { + * flex: 1 + * }, + * layout: 'hbox', + * items: [ + * { + * boxLabel : 'Blue', + * name : 'color', + * inputValue: 'blue', + * id : 'radio4' + * }, { + * boxLabel : 'Grey', + * name : 'color', + * inputValue: 'grey', + * id : 'radio5' + * }, { + * boxLabel : 'Black', + * name : 'color', + * inputValue: 'black', + * id : 'radio6' + * } + * ] + * } + * ], + * bbar: [ + * { + * text: 'Smaller Size', + * handler: function() { + * var radio1 = Ext.getCmp('radio1'), + * radio2 = Ext.getCmp('radio2'), + * radio3 = Ext.getCmp('radio3'); + * + * //if L is selected, change to M + * if (radio2.getValue()) { + * radio1.setValue(true); + * return; + * } + * + * //if XL is selected, change to L + * if (radio3.getValue()) { + * radio2.setValue(true); + * return; + * } + * + * //if nothing is set, set size to S + * radio1.setValue(true); + * } + * }, + * { + * text: 'Larger Size', + * handler: function() { + * var radio1 = Ext.getCmp('radio1'), + * radio2 = Ext.getCmp('radio2'), + * radio3 = Ext.getCmp('radio3'); + * + * //if M is selected, change to L + * if (radio1.getValue()) { + * radio2.setValue(true); + * return; + * } + * + * //if L is selected, change to XL + * if (radio2.getValue()) { + * radio3.setValue(true); + * return; + * } + * + * //if nothing is set, set size to XL + * radio3.setValue(true); + * } + * }, + * '-', + * { + * text: 'Select color', + * menu: { + * indent: false, + * items: [ + * { + * text: 'Blue', + * handler: function() { + * var radio = Ext.getCmp('radio4'); + * radio.setValue(true); + * } + * }, + * { + * text: 'Grey', + * handler: function() { + * var radio = Ext.getCmp('radio5'); + * radio.setValue(true); + * } + * }, + * { + * text: 'Black', + * handler: function() { + * var radio = Ext.getCmp('radio6'); + * radio.setValue(true); + * } + * } + * ] + * } + * } + * ] + * }); + */ +Ext.define('Ext.form.field.Radio', { + extend:'Ext.form.field.Checkbox', + alias: ['widget.radiofield', 'widget.radio'], + alternateClassName: 'Ext.form.Radio', + requires: ['Ext.form.RadioManager'], + + /** + * @property {Boolean} isRadio + * `true` in this class to identify an object as an instantiated Radio, or subclass thereof. + */ + isRadio: true, + + /** + * @cfg {String} [focusCls='x-form-radio-focus'] + * The CSS class to use when the radio field receives focus + */ + focusCls: 'form-radio-focus', + + /** + * @cfg {String} uncheckedValue + * @private + */ + + // private + inputType: 'radio', + ariaRole: 'radio', + + formId: null, + + /** + * If this radio is part of a group, it will return the selected value + * @return {String} + */ + getGroupValue: function() { + var selected = this.getManager().getChecked(this.name, this.getFormId()); + return selected ? selected.inputValue : null; + }, + + /** + * @private Handle click on the radio button + */ + onBoxClick: function(e) { + var me = this; + if (!me.disabled && !me.readOnly) { + this.setValue(true); + } + }, + + onRemoved: function(){ + this.callParent(arguments); + this.formId = null; + }, + + /** + * Sets either the checked/unchecked status of this Radio, or, if a string value is passed, checks a sibling Radio + * of the same name whose value is the value specified. + * @param {String/Boolean} value Checked value, or the value of the sibling radio button to check. + * @return {Ext.form.field.Radio} this + */ + setValue: function(v) { + var me = this, + active; + + if (Ext.isBoolean(v)) { + me.callParent(arguments); + } else { + active = me.getManager().getWithValue(me.name, v, me.getFormId()).getAt(0); + if (active) { + active.setValue(true); + } + } + return me; + }, + + /** + * Returns the submit value for the checkbox which can be used when submitting forms. + * @return {Boolean/Object} True if checked, null if not. + */ + getSubmitValue: function() { + return this.checked ? this.inputValue : null; + }, + + getModelData: function() { + return this.getSubmitData(); + }, + + // inherit docs + onChange: function(newVal, oldVal) { + var me = this, + r, rLen, radio, radios; + + me.callParent(arguments); + + if (newVal) { + radios = me.getManager().getByName(me.name, me.getFormId()).items; + rLen = radios.length; + + for (r = 0; r < rLen; r++) { + radio = radios[r]; + + if (radio !== me) { + radio.setValue(false); + } + } + } + }, + + // inherit docs + getManager: function() { + return Ext.form.RadioManager; + } +}); diff --git a/extjs-django/marvel/static/extjs/src/form/field/Spinner.js b/extjs-django/marvel/static/extjs/src/form/field/Spinner.js new file mode 100644 index 0000000..c02426b --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/form/field/Spinner.js @@ -0,0 +1,346 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * A field with a pair of up/down spinner buttons. This class is not normally instantiated directly, + * instead it is subclassed and the {@link #onSpinUp} and {@link #onSpinDown} methods are implemented + * to handle when the buttons are clicked. A good example of this is the {@link Ext.form.field.Number} + * field which uses the spinner to increment and decrement the field's value by its + * {@link Ext.form.field.Number#step step} config value. + * + * For example: + * + * @example + * Ext.define('Ext.ux.CustomSpinner', { + * extend: 'Ext.form.field.Spinner', + * alias: 'widget.customspinner', + * + * // override onSpinUp (using step isn't neccessary) + * onSpinUp: function() { + * var me = this; + * if (!me.readOnly) { + * var val = parseInt(me.getValue().split(' '), 10)||0; // gets rid of " Pack", defaults to zero on parse failure + * me.setValue((val + me.step) + ' Pack'); + * } + * }, + * + * // override onSpinDown + * onSpinDown: function() { + * var me = this; + * if (!me.readOnly) { + * var val = parseInt(me.getValue().split(' '), 10)||0; // gets rid of " Pack", defaults to zero on parse failure + * if (val <= me.step) { + * me.setValue('Dry!'); + * } else { + * me.setValue((val - me.step) + ' Pack'); + * } + * } + * } + * }); + * + * Ext.create('Ext.form.FormPanel', { + * title: 'Form with SpinnerField', + * bodyPadding: 5, + * width: 350, + * renderTo: Ext.getBody(), + * items:[{ + * xtype: 'customspinner', + * fieldLabel: 'How Much Beer?', + * step: 6 + * }] + * }); + * + * By default, pressing the up and down arrow keys will also trigger the onSpinUp and onSpinDown methods; + * to prevent this, set `{@link #keyNavEnabled} = false`. + */ +Ext.define('Ext.form.field.Spinner', { + extend: 'Ext.form.field.Trigger', + alias: 'widget.spinnerfield', + alternateClassName: 'Ext.form.Spinner', + requires: ['Ext.util.KeyNav'], + + trigger1Cls: Ext.baseCSSPrefix + 'form-spinner-up', + trigger2Cls: Ext.baseCSSPrefix + 'form-spinner-down', + + /** + * @cfg {Boolean} spinUpEnabled + * Specifies whether the up spinner button is enabled. Defaults to true. To change this after the component is + * created, use the {@link #setSpinUpEnabled} method. + */ + spinUpEnabled: true, + + /** + * @cfg {Boolean} spinDownEnabled + * Specifies whether the down spinner button is enabled. Defaults to true. To change this after the component is + * created, use the {@link #setSpinDownEnabled} method. + */ + spinDownEnabled: true, + + /** + * @cfg {Boolean} keyNavEnabled + * Specifies whether the up and down arrow keys should trigger spinning up and down. Defaults to true. + */ + keyNavEnabled: true, + + /** + * @cfg {Boolean} mouseWheelEnabled + * Specifies whether the mouse wheel should trigger spinning up and down while the field has focus. + * Defaults to true. + */ + mouseWheelEnabled: true, + + /** + * @cfg {Boolean} repeatTriggerClick + * Whether a {@link Ext.util.ClickRepeater click repeater} should be attached to the spinner buttons. + * Defaults to true. + */ + repeatTriggerClick: true, + + /** + * @method + * @protected + * This method is called when the spinner up button is clicked, or when the up arrow key is pressed if + * {@link #keyNavEnabled} is true. Must be implemented by subclasses. + */ + onSpinUp: Ext.emptyFn, + + /** + * @method + * @protected + * This method is called when the spinner down button is clicked, or when the down arrow key is pressed if + * {@link #keyNavEnabled} is true. Must be implemented by subclasses. + */ + onSpinDown: Ext.emptyFn, + + triggerTpl: '' + + '
    ' + + '
    ' + + '' + + '', + + initComponent: function() { + this.callParent(); + + this.addEvents( + /** + * @event spin + * Fires when the spinner is made to spin up or down. + * @param {Ext.form.field.Spinner} this + * @param {String} direction Either 'up' if spinning up, or 'down' if spinning down. + */ + 'spin', + + /** + * @event spinup + * Fires when the spinner is made to spin up. + * @param {Ext.form.field.Spinner} this + */ + 'spinup', + + /** + * @event spindown + * Fires when the spinner is made to spin down. + * @param {Ext.form.field.Spinner} this + */ + 'spindown' + ); + }, + + /** + * @private + * Override. + */ + onRender: function() { + var me = this, + triggers; + + me.callParent(arguments); + triggers = me.triggerEl; + + /** + * @property {Ext.Element} spinUpEl + * The spinner up button element + */ + me.spinUpEl = triggers.item(0); + /** + * @property {Ext.Element} spinDownEl + * The spinner down button element + */ + me.spinDownEl = triggers.item(1); + + me.triggerCell = me.spinUpEl.parent(); + + // Init up/down arrow keys + if (me.keyNavEnabled) { + me.spinnerKeyNav = new Ext.util.KeyNav(me.inputEl, { + scope: me, + up: me.spinUp, + down: me.spinDown + }); + } + + // Init mouse wheel + if (me.mouseWheelEnabled) { + me.mon(me.bodyEl, 'mousewheel', me.onMouseWheel, me); + } + }, + + getSubTplMarkup: function(values) { + var me = this, + childElCls = values.childElCls, // either '' or ' x-foo' + field = Ext.form.field.Base.prototype.getSubTplMarkup.apply(me, arguments); + + return '' + + '' + + '' + + me.getTriggerMarkup() + + '
    ' + field + '
    '; + }, + + getTriggerMarkup: function() { + return this.getTpl('triggerTpl').apply(this.getTriggerData()); + }, + + getTriggerData: function(){ + var me = this, + hideTrigger = (me.readOnly || me.hideTrigger); + + return { + triggerCls: Ext.baseCSSPrefix + 'trigger-cell', + triggerStyle: hideTrigger ? 'display:none' : '', + spinnerUpCls: !me.spinUpEnabled ? me.trigger1Cls + '-disabled': '', + spinnerDownCls: !me.spinDownEnabled ? me.trigger2Cls + '-disabled': '' + }; + }, + + /** + * Get the total width of the spinner button area. + * @return {Number} The total spinner button width + */ + getTriggerWidth: function() { + var me = this, + totalTriggerWidth = 0; + + if (me.triggerWrap && !me.hideTrigger && !me.readOnly) { + totalTriggerWidth = me.triggerWidth; + } + return totalTriggerWidth; + }, + + /** + * @private + * Handles the spinner up button clicks. + */ + onTrigger1Click: function() { + this.spinUp(); + }, + + /** + * @private + * Handles the spinner down button clicks. + */ + onTrigger2Click: function() { + this.spinDown(); + }, + + // private + // Handle trigger mouse up gesture; refocuses the input element upon end of spin. + onTriggerWrapMouseup: function() { + this.inputEl.focus(); + }, + + /** + * Triggers the spinner to step up; fires the {@link #spin} and {@link #spinup} events and calls the + * {@link #onSpinUp} method. Does nothing if the field is {@link #disabled} or if {@link #spinUpEnabled} + * is false. + */ + spinUp: function() { + var me = this; + if (me.spinUpEnabled && !me.disabled) { + me.fireEvent('spin', me, 'up'); + me.fireEvent('spinup', me); + me.onSpinUp(); + } + }, + + /** + * Triggers the spinner to step down; fires the {@link #spin} and {@link #spindown} events and calls the + * {@link #onSpinDown} method. Does nothing if the field is {@link #disabled} or if {@link #spinDownEnabled} + * is false. + */ + spinDown: function() { + var me = this; + if (me.spinDownEnabled && !me.disabled) { + me.fireEvent('spin', me, 'down'); + me.fireEvent('spindown', me); + me.onSpinDown(); + } + }, + + /** + * Sets whether the spinner up button is enabled. + * @param {Boolean} enabled true to enable the button, false to disable it. + */ + setSpinUpEnabled: function(enabled) { + var me = this, + wasEnabled = me.spinUpEnabled; + me.spinUpEnabled = enabled; + if (wasEnabled !== enabled && me.rendered) { + me.spinUpEl[enabled ? 'removeCls' : 'addCls'](me.trigger1Cls + '-disabled'); + } + }, + + /** + * Sets whether the spinner down button is enabled. + * @param {Boolean} enabled true to enable the button, false to disable it. + */ + setSpinDownEnabled: function(enabled) { + var me = this, + wasEnabled = me.spinDownEnabled; + me.spinDownEnabled = enabled; + if (wasEnabled !== enabled && me.rendered) { + me.spinDownEl[enabled ? 'removeCls' : 'addCls'](me.trigger2Cls + '-disabled'); + } + }, + + /** + * @private + * Handles mousewheel events on the field + */ + onMouseWheel: function(e) { + var me = this, + delta; + if (me.hasFocus) { + delta = e.getWheelDelta(); + if (delta > 0) { + me.spinUp(); + } else if (delta < 0) { + me.spinDown(); + } + e.stopEvent(); + } + }, + + onDestroy: function() { + Ext.destroyMembers(this, 'spinnerKeyNav', 'spinUpEl', 'spinDownEl'); + this.callParent(); + } + +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/form/field/Text.js b/extjs-django/marvel/static/extjs/src/form/field/Text.js new file mode 100644 index 0000000..af18456 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/form/field/Text.js @@ -0,0 +1,828 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @docauthor Jason Johnston + * + * A basic text field. Can be used as a direct replacement for traditional text inputs, + * or as the base class for more sophisticated input controls (like {@link Ext.form.field.TextArea} + * and {@link Ext.form.field.ComboBox}). Has support for empty-field placeholder values (see {@link #emptyText}). + * + * # Validation + * + * The Text field has a useful set of validations built in: + * + * - {@link #allowBlank} for making the field required + * - {@link #minLength} for requiring a minimum value length + * - {@link #maxLength} for setting a maximum value length (with {@link #enforceMaxLength} to add it + * as the `maxlength` attribute on the input element) + * - {@link #regex} to specify a custom regular expression for validation + * + * In addition, custom validations may be added: + * + * - {@link #vtype} specifies a virtual type implementation from {@link Ext.form.field.VTypes} which can contain + * custom validation logic + * - {@link #validator} allows a custom arbitrary function to be called during validation + * + * The details around how and when each of these validation options get used are described in the + * documentation for {@link #getErrors}. + * + * By default, the field value is checked for validity immediately while the user is typing in the + * field. This can be controlled with the {@link #validateOnChange}, {@link #checkChangeEvents}, and + * {@link #checkChangeBuffer} configurations. Also see the details on Form Validation in the + * {@link Ext.form.Panel} class documentation. + * + * # Masking and Character Stripping + * + * Text fields can be configured with custom regular expressions to be applied to entered values before + * validation: see {@link #maskRe} and {@link #stripCharsRe} for details. + * + * # Example usage + * + * @example + * Ext.create('Ext.form.Panel', { + * title: 'Contact Info', + * width: 300, + * bodyPadding: 10, + * renderTo: Ext.getBody(), + * items: [{ + * xtype: 'textfield', + * name: 'name', + * fieldLabel: 'Name', + * allowBlank: false // requires a non-empty value + * }, { + * xtype: 'textfield', + * name: 'email', + * fieldLabel: 'Email Address', + * vtype: 'email' // requires value to be a valid email address format + * }] + * }); + */ +Ext.define('Ext.form.field.Text', { + extend:'Ext.form.field.Base', + alias: 'widget.textfield', + requires: ['Ext.form.field.VTypes', 'Ext.layout.component.field.Text'], + alternateClassName: ['Ext.form.TextField', 'Ext.form.Text'], + + /** + * @cfg {String} vtypeText + * A custom error message to display in place of the default message provided for the **`{@link #vtype}`** currently + * set for this field. **Note**: only applies if **`{@link #vtype}`** is set, else ignored. + */ + + /** + * @cfg {RegExp} stripCharsRe + * A JavaScript RegExp object used to strip unwanted content from the value + * during input. If `stripCharsRe` is specified, + * every *character sequence* matching `stripCharsRe` will be removed. + */ + + /** + * @cfg {Number} size + * An initial value for the 'size' attribute on the text input element. This is only used if the field has no + * configured {@link #width} and is not given a width by its container's layout. Defaults to 20. + */ + size: 20, + + /** + * @cfg {Boolean} [grow=false] + * true if this field should automatically grow and shrink to its content + */ + + /** + * @cfg {Number} growMin + * The minimum width to allow when `{@link #grow} = true` + */ + growMin : 30, + + /** + * @cfg {Number} growMax + * The maximum width to allow when `{@link #grow} = true` + */ + growMax : 800, + + // + /** + * @cfg {String} growAppend + * A string that will be appended to the field's current value for the purposes of calculating the target field + * size. Only used when the {@link #grow} config is true. Defaults to a single capital "W" (the widest character in + * common fonts) to leave enough space for the next typed character and avoid the field value shifting before the + * width is adjusted. + */ + growAppend: 'W', + // + + /** + * @cfg {String} vtype + * A validation type name as defined in {@link Ext.form.field.VTypes} + */ + + /** + * @cfg {RegExp} maskRe An input mask regular expression that will be used to filter keystrokes (character being + * typed) that do not match. + * Note: It does not filter characters already in the input. + */ + + /** + * @cfg {Boolean} [disableKeyFilter=false] + * Specify true to disable input keystroke filtering + */ + + /** + * @cfg {Boolean} [allowBlank=true] + * Specify false to validate that the value's length must be > 0. If `true`, then a blank value is **always** taken to be valid regardless of any {@link #vtype} + * validation that may be applied. + * + * If {@link #vtype} validation must still be applied to blank values, configure {@link #validateBlank} as `true`; + */ + allowBlank : true, + + /** + * @cfg {Boolean} [validateBlank=false] + * Specify as `true` to modify the behaviour of {@link #allowBlank} so that blank values are not passed as valid, but are subject to any configure {@link #vtype} validation. + */ + validateBlank: false, + + /** + * @cfg {Boolean} allowOnlyWhitespace + * Specify false to automatically trim the value before validating + * the whether the value is blank. Setting this to false automatically + * sets {@link #allowBlank} to false. + */ + allowOnlyWhitespace: true, + + /** + * @cfg {Number} minLength + * Minimum input field length required + */ + minLength : 0, + + /** + * @cfg {Number} maxLength + * Maximum input field length allowed by validation. This behavior is intended to + * provide instant feedback to the user by improving usability to allow pasting and editing or overtyping and back + * tracking. To restrict the maximum number of characters that can be entered into the field use the + * **{@link Ext.form.field.Text#enforceMaxLength enforceMaxLength}** option. + * + * Defaults to Number.MAX_VALUE. + */ + maxLength : Number.MAX_VALUE, + + /** + * @cfg {Boolean} enforceMaxLength + * True to set the maxLength property on the underlying input field. Defaults to false + */ + + // + /** + * @cfg {String} minLengthText + * Error text to display if the **{@link #minLength minimum length}** validation fails. + */ + minLengthText : 'The minimum length for this field is {0}', + // + + // + /** + * @cfg {String} maxLengthText + * Error text to display if the **{@link #maxLength maximum length}** validation fails + */ + maxLengthText : 'The maximum length for this field is {0}', + // + + /** + * @cfg {Boolean} [selectOnFocus=false] + * true to automatically select any existing field text when the field receives input focus + */ + + // + /** + * @cfg {String} blankText + * The error text to display if the **{@link #allowBlank}** validation fails + */ + blankText : 'This field is required', + // + + /** + * @cfg {Function} validator + * A custom validation function to be called during field validation ({@link #getErrors}). + * If specified, this function will be called first, allowing the developer to override the default validation + * process. + * + * This function will be passed the following parameters: + * + * @cfg {Object} validator.value The current field value + * @cfg {Boolean/String} validator.return + * + * - True if the value is valid + * - An error message if the value is invalid + */ + + /** + * @cfg {RegExp} regex + * A JavaScript RegExp object to be tested against the field value during validation. + * If the test fails, the field will be marked invalid using + * either **{@link #regexText}** or **{@link #invalidText}**. + */ + + /** + * @cfg {String} regexText + * The error text to display if **{@link #regex}** is used and the test fails during validation + */ + regexText : '', + + /** + * @cfg {String} emptyText + * The default text to place into an empty field. + * + * Note that normally this value will be submitted to the server if this field is enabled; to prevent this you can + * set the {@link Ext.form.action.Action#submitEmptyText submitEmptyText} option of {@link Ext.form.Basic#submit} to + * false. + * + * Also note that if you use {@link #inputType inputType}:'file', {@link #emptyText} is not supported and should be + * avoided. + * + * Note that for browsers that support it, setting this property will use the HTML 5 placeholder attribute, and for + * older browsers that don't support the HTML 5 placeholder attribute the value will be placed directly into the input + * element itself as the raw value. This means that older browsers will obfuscate the {@link #emptyText} value for + * password input fields. + */ + + /** + * @cfg {String} [emptyCls='x-form-empty-field'] + * The CSS class to apply to an empty field to style the **{@link #emptyText}**. + * This class is automatically added and removed as needed depending on the current field value. + */ + emptyCls : Ext.baseCSSPrefix + 'form-empty-field', + + /** + * @cfg {String} [requiredCls='x-form-required-field'] + * The CSS class to apply to a required field, i.e. a field where **{@link #allowBlank}** is false. + */ + requiredCls : Ext.baseCSSPrefix + 'form-required-field', + + /** + * @cfg {Boolean} [enableKeyEvents=false] + * true to enable the proxying of key events for the HTML input field + */ + + componentLayout: 'textfield', + + // private + valueContainsPlaceholder : false, + + + initComponent: function () { + var me = this; + + if (me.allowOnlyWhitespace === false) { + me.allowBlank = false; + } + + me.callParent(); + + me.addEvents( + /** + * @event autosize + * Fires when the **{@link #autoSize}** function is triggered and the field is resized according to the + * {@link #grow}/{@link #growMin}/{@link #growMax} configs as a result. This event provides a hook for the + * developer to apply additional logic at runtime to resize the field if needed. + * @param {Ext.form.field.Text} this This text field + * @param {Number} width The new field width + */ + 'autosize', + + /** + * @event keydown + * Keydown input field event. This event only fires if **{@link #enableKeyEvents}** is set to true. + * @param {Ext.form.field.Text} this This text field + * @param {Ext.EventObject} e + */ + 'keydown', + /** + * @event keyup + * Keyup input field event. This event only fires if **{@link #enableKeyEvents}** is set to true. + * @param {Ext.form.field.Text} this This text field + * @param {Ext.EventObject} e + */ + 'keyup', + /** + * @event keypress + * Keypress input field event. This event only fires if **{@link #enableKeyEvents}** is set to true. + * @param {Ext.form.field.Text} this This text field + * @param {Ext.EventObject} e + */ + 'keypress' + ); + me.addStateEvents('change'); + me.setGrowSizePolicy(); + }, + + // private + setGrowSizePolicy: function(){ + if (this.grow) { + this.shrinkWrap |= 1; // width must shrinkWrap + } + }, + + // private + initEvents : function(){ + var me = this, + el = me.inputEl; + + me.callParent(); + if(me.selectOnFocus || me.emptyText){ + me.mon(el, 'mousedown', me.onMouseDown, me); + } + if(me.maskRe || (me.vtype && me.disableKeyFilter !== true && (me.maskRe = Ext.form.field.VTypes[me.vtype+'Mask']))){ + me.mon(el, 'keypress', me.filterKeys, me); + } + + if (me.enableKeyEvents) { + me.mon(el, { + scope: me, + keyup: me.onKeyUp, + keydown: me.onKeyDown, + keypress: me.onKeyPress + }); + } + }, + + /** + * @private + * Override. Treat undefined and null values as equal to an empty string value. + */ + isEqual: function(value1, value2) { + return this.isEqualAsString(value1, value2); + }, + + /** + * @private + * If grow=true, invoke the autoSize method when the field's value is changed. + */ + onChange: function(newVal, oldVal) { + this.callParent(arguments); + this.autoSize(); + }, + + getSubTplData: function() { + var me = this, + value = me.getRawValue(), + isEmpty = me.emptyText && value.length < 1, + maxLength = me.maxLength, + placeholder; + + // We can't just dump the value here, since MAX_VALUE ends up + // being something like 1.xxxxe+300, which gets interpreted as 1 + // in the markup + if (me.enforceMaxLength) { + if (maxLength === Number.MAX_VALUE) { + maxLength = undefined; + } + } else { + maxLength = undefined; + } + + if (isEmpty) { + if (Ext.supports.Placeholder) { + placeholder = me.emptyText; + } else { + value = me.emptyText; + me.valueContainsPlaceholder = true; + } + } + + return Ext.apply(me.callParent(), { + maxLength : maxLength, + readOnly : me.readOnly, + placeholder : placeholder, + value : value, + fieldCls : me.fieldCls + ((isEmpty && (placeholder || value)) ? ' ' + me.emptyCls : '') + (me.allowBlank ? '' : ' ' + me.requiredCls) + }); + }, + + afterRender: function(){ + this.autoSize(); + this.callParent(); + }, + + onMouseDown: function(e){ + var me = this; + if(!me.hasFocus){ + me.mon(me.inputEl, 'mouseup', Ext.emptyFn, me, { single: true, preventDefault: true }); + } + }, + + /** + * Performs any necessary manipulation of a raw String value to prepare it for conversion and/or + * {@link #validate validation}. For text fields this applies the configured {@link #stripCharsRe} + * to the raw value. + * @param {String} value The unprocessed string value + * @return {String} The processed string value + */ + processRawValue: function(value) { + var me = this, + stripRe = me.stripCharsRe, + newValue; + + if (stripRe) { + newValue = value.replace(stripRe, ''); + if (newValue !== value) { + me.setRawValue(newValue); + value = newValue; + } + } + return value; + }, + + //private + onDisable: function(){ + this.callParent(); + if (Ext.isIE) { + this.inputEl.dom.unselectable = 'on'; + } + }, + + //private + onEnable: function(){ + this.callParent(); + if (Ext.isIE) { + this.inputEl.dom.unselectable = ''; + } + }, + + onKeyDown: function(e) { + this.fireEvent('keydown', this, e); + }, + + onKeyUp: function(e) { + this.fireEvent('keyup', this, e); + }, + + onKeyPress: function(e) { + this.fireEvent('keypress', this, e); + }, + + /** + * Resets the current field value to the originally-loaded value and clears any validation messages. + * Also adds **{@link #emptyText}** and **{@link #emptyCls}** if the original value was blank. + */ + reset : function(){ + this.callParent(); + this.applyEmptyText(); + }, + + applyEmptyText : function(){ + var me = this, + emptyText = me.emptyText, + isEmpty; + + if (me.rendered && emptyText) { + isEmpty = me.getRawValue().length < 1 && !me.hasFocus; + + if (Ext.supports.Placeholder) { + me.inputEl.dom.placeholder = emptyText; + } else if (isEmpty) { + me.setRawValue(emptyText); + me.valueContainsPlaceholder = true; + } + + //all browsers need this because of a styling issue with chrome + placeholders. + //the text isnt vertically aligned when empty (and using the placeholder) + if (isEmpty) { + me.inputEl.addCls(me.emptyCls); + } + + me.autoSize(); + } + }, + + afterFirstLayout: function() { + this.callParent(); + if (Ext.isIE && this.disabled) { + var el = this.inputEl; + if (el) { + el.dom.unselectable = 'on'; + } + } + }, + + // private + beforeFocus : function(){ + var me = this, + inputEl = me.inputEl, + emptyText = me.emptyText, + isEmpty; + + me.callParent(arguments); + if ((emptyText && !Ext.supports.Placeholder) && (inputEl.dom.value === me.emptyText && me.valueContainsPlaceholder)) { + me.setRawValue(''); + isEmpty = true; + inputEl.removeCls(me.emptyCls); + me.valueContainsPlaceholder = false; + } else if (Ext.supports.Placeholder) { + me.inputEl.removeCls(me.emptyCls); + } + if (me.selectOnFocus || isEmpty) { + // see: http://code.google.com/p/chromium/issues/detail?id=4505 + if (Ext.isWebKit) { + if (!me.inputFocusTask) { + me.inputFocusTask = new Ext.util.DelayedTask(me.focusInput, me); + } + me.inputFocusTask.delay(1); + } else { + inputEl.dom.select(); + } + } + }, + + focusInput: function(){ + var input = this.inputEl; + if (input) { + input = input.dom; + if (input) { + input.select(); + } + } + }, + + onFocus: function() { + var me = this; + me.callParent(arguments); + if (me.emptyText) { + me.autoSize(); + } + }, + + // private + postBlur : function(){ + this.callParent(arguments); + this.applyEmptyText(); + }, + + // private + filterKeys : function(e){ + /* + * On European keyboards, the right alt key, Alt Gr, is used to type certain special characters. + * JS detects a keypress of this as ctrlKey & altKey. As such, we check that alt isn't pressed + * so we can still process these special characters. + */ + if (e.ctrlKey && !e.altKey) { + return; + } + var key = e.getKey(), + charCode = String.fromCharCode(e.getCharCode()); + + if((Ext.isGecko || Ext.isOpera) && (e.isNavKeyPress() || key === e.BACKSPACE || (key === e.DELETE && e.button === -1))){ + return; + } + + if((!Ext.isGecko && !Ext.isOpera) && e.isSpecialKey() && !charCode){ + return; + } + if(!this.maskRe.test(charCode)){ + e.stopEvent(); + } + }, + + getState: function() { + return this.addPropertyToState(this.callParent(), 'value'); + }, + + applyState: function(state) { + this.callParent(arguments); + if(state.hasOwnProperty('value')) { + this.setValue(state.value); + } + }, + + /** + * Returns the raw String value of the field, without performing any normalization, conversion, or validation. Gets + * the current value of the input element if the field has been rendered, ignoring the value if it is the + * {@link #emptyText}. To get a normalized and converted value see {@link #getValue}. + * @return {String} The raw String value of the field + */ + getRawValue: function() { + var me = this, + v = me.callParent(); + if (v === me.emptyText && me.valueContainsPlaceholder) { + v = ''; + } + return v; + }, + + /** + * Sets a data value into the field and runs the change detection and validation. Also applies any configured + * {@link #emptyText} for text fields. To set the value directly without these inspections see {@link #setRawValue}. + * @param {Object} value The value to set + * @return {Ext.form.field.Text} this + */ + setValue: function(value) { + var me = this, + inputEl = me.inputEl; + + if (inputEl && me.emptyText && !Ext.isEmpty(value)) { + inputEl.removeCls(me.emptyCls); + me.valueContainsPlaceholder = false; + } + + me.callParent(arguments); + + me.applyEmptyText(); + return me; + }, + + /** + * Validates a value according to the field's validation rules and returns an array of errors + * for any failing validations. Validation rules are processed in the following order: + * + * 1. **Field specific validator** + * + * A validator offers a way to customize and reuse a validation specification. + * If a field is configured with a `{@link #validator}` + * function, it will be passed the current field value. The `{@link #validator}` + * function is expected to return either: + * + * - Boolean `true` if the value is valid (validation continues). + * - a String to represent the invalid message if invalid (validation halts). + * + * 2. **Basic Validation** + * + * If the `{@link #validator}` has not halted validation, + * basic validation proceeds as follows: + * + * - `{@link #allowBlank}` : (Invalid message = `{@link #blankText}`) + * + * Depending on the configuration of `{@link #allowBlank}`, a + * blank field will cause validation to halt at this step and return + * Boolean true or false accordingly. + * + * - `{@link #minLength}` : (Invalid message = `{@link #minLengthText}`) + * + * If the passed value does not satisfy the `{@link #minLength}` + * specified, validation halts. + * + * - `{@link #maxLength}` : (Invalid message = `{@link #maxLengthText}`) + * + * If the passed value does not satisfy the `{@link #maxLength}` + * specified, validation halts. + * + * 3. **Preconfigured Validation Types (VTypes)** + * + * If none of the prior validation steps halts validation, a field + * configured with a `{@link #vtype}` will utilize the + * corresponding {@link Ext.form.field.VTypes VTypes} validation function. + * If invalid, either the field's `{@link #vtypeText}` or + * the VTypes vtype Text property will be used for the invalid message. + * Keystrokes on the field will be filtered according to the VTypes + * vtype Mask property. + * + * 4. **Field specific regex test** + * + * If none of the prior validation steps halts validation, a field's + * configured `{@link #regex}` test will be processed. + * The invalid message for this test is configured with `{@link #regexText}` + * + * @param {Object} value The value to validate. The processed raw value will be used if nothing is passed. + * @return {String[]} Array of any validation errors + */ + getErrors: function(value) { + var me = this, + errors = me.callParent(arguments), + validator = me.validator, + vtype = me.vtype, + vtypes = Ext.form.field.VTypes, + regex = me.regex, + format = Ext.String.format, + msg, trimmed, isBlank; + + value = value || me.processRawValue(me.getRawValue()); + + if (Ext.isFunction(validator)) { + msg = validator.call(me, value); + if (msg !== true) { + errors.push(msg); + } + } + + trimmed = me.allowOnlyWhitespace ? value : Ext.String.trim(value); + + if (trimmed.length < 1 || (value === me.emptyText && me.valueContainsPlaceholder)) { + if (!me.allowBlank) { + errors.push(me.blankText); + } + // If we are not configured to validate blank values, there cannot be any additional errors + if (!me.validateBlank) { + return errors; + } + isBlank = true; + } + + // If a blank value has been allowed through, then exempt it dfrom the minLength check. + // It must be allowed to hit the vtype validation. + if (!isBlank && value.length < me.minLength) { + errors.push(format(me.minLengthText, me.minLength)); + } + + if (value.length > me.maxLength) { + errors.push(format(me.maxLengthText, me.maxLength)); + } + + if (vtype) { + if (!vtypes[vtype](value, me)) { + errors.push(me.vtypeText || vtypes[vtype +'Text']); + } + } + + if (regex && !regex.test(value)) { + errors.push(me.regexText || me.invalidText); + } + + return errors; + }, + + /** + * Selects text in this field + * @param {Number} [start=0] The index where the selection should start + * @param {Number} [end] The index where the selection should end (defaults to the text length) + */ + selectText : function(start, end){ + var me = this, + v = me.getRawValue(), + doFocus = true, + el = me.inputEl.dom, + undef, + range; + + if (v.length > 0) { + start = start === undef ? 0 : start; + end = end === undef ? v.length : end; + if (el.setSelectionRange) { + el.setSelectionRange(start, end); + } + else if(el.createTextRange) { + range = el.createTextRange(); + range.moveStart('character', start); + range.moveEnd('character', end - v.length); + range.select(); + } + doFocus = Ext.isGecko || Ext.isOpera; + } + if (doFocus) { + me.focus(); + } + }, + + /** + * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed. This + * only takes effect if {@link #grow} = true, and fires the {@link #autosize} event if the width changes. + */ + autoSize: function() { + var me = this; + if (me.grow && me.rendered) { + me.autoSizing = true; + me.updateLayout(); + } + }, + + afterComponentLayout: function() { + var me = this, + width; + + me.callParent(arguments); + if (me.autoSizing) { + width = me.inputEl.getWidth(); + if (width !== me.lastInputWidth) { + me.fireEvent('autosize', me, width); + me.lastInputWidth = width; + delete me.autoSizing; + } + } + }, + + onDestroy: function(){ + var me = this; + me.callParent(); + + if (me.inputFocusTask) { + me.inputFocusTask.cancel(); + me.inputFocusTask = null; + } + } +}); diff --git a/extjs-django/marvel/static/extjs/src/form/field/TextArea.js b/extjs-django/marvel/static/extjs/src/form/field/TextArea.js new file mode 100644 index 0000000..49be23b --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/form/field/TextArea.js @@ -0,0 +1,299 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @docauthor Robert Dougan + * + * This class creates a multiline text field, which can be used as a direct replacement for traditional + * textarea fields. In addition, it supports automatically {@link #grow growing} the height of the textarea to + * fit its content. + * + * All of the configuration options from {@link Ext.form.field.Text} can be used on TextArea. + * + * Example usage: + * + * @example + * Ext.create('Ext.form.FormPanel', { + * title : 'Sample TextArea', + * width : 400, + * bodyPadding: 10, + * renderTo : Ext.getBody(), + * items: [{ + * xtype : 'textareafield', + * grow : true, + * name : 'message', + * fieldLabel: 'Message', + * anchor : '100%' + * }] + * }); + * + * Some other useful configuration options when using {@link #grow} are {@link #growMin} and {@link #growMax}. + * These allow you to set the minimum and maximum grow heights for the textarea. + * + * **NOTE:** In some browsers, carriage returns ('\r', not to be confused with new lines) + * will be automatically stripped out the value is set to the textarea. Since we cannot + * use any reasonable method to attempt to re-insert these, they will automatically be + * stripped out to ensure the behaviour is consistent across browser. + */ +Ext.define('Ext.form.field.TextArea', { + extend:'Ext.form.field.Text', + alias: ['widget.textareafield', 'widget.textarea'], + alternateClassName: 'Ext.form.TextArea', + requires: [ + 'Ext.XTemplate', + 'Ext.layout.component.field.TextArea', + 'Ext.util.DelayedTask' + ], + + // This template includes a `\n` after ` + // + // + // + fieldSubTpl: [ + '', + { + disableFormats: true + } + ], + + /** + * @cfg {Number} growMin + * The minimum height to allow when {@link #grow}=true + */ + growMin: 60, + + /** + * @cfg {Number} growMax + * The maximum height to allow when {@link #grow}=true + */ + growMax: 1000, + + /** + * @cfg {String} growAppend + * A string that will be appended to the field's current value for the purposes of calculating the target field + * size. Only used when the {@link #grow} config is true. Defaults to a newline for TextArea to ensure there is + * always a space below the current line. + */ + growAppend: '\n-', + + /** + * @cfg {Number} cols + * An initial value for the 'cols' attribute on the textarea element. This is only used if the component has no + * configured {@link #width} and is not given a width by its container's layout. + */ + cols: 20, + + /** + * @cfg {Number} rows + * An initial value for the 'rows' attribute on the textarea element. This is only used if the component has no + * configured {@link #height} and is not given a height by its container's layout. Defaults to 4. + */ + rows: 4, + + /** + * @cfg {Boolean} enterIsSpecial + * True if you want the ENTER key to be classed as a special key and the {@link #specialkey} event to be fired + * when ENTER is pressed. + */ + enterIsSpecial: false, + + /** + * @cfg {Boolean} preventScrollbars + * true to prevent scrollbars from appearing regardless of how much text is in the field. This option is only + * relevant when {@link #grow} is true. Equivalent to setting overflow: hidden. + */ + preventScrollbars: false, + + // private + componentLayout: 'textareafield', + + setGrowSizePolicy: Ext.emptyFn, + + returnRe: /\r/g, + + inputCls: Ext.baseCSSPrefix + 'form-textarea', + + // private + getSubTplData: function() { + var me = this, + fieldStyle = me.getFieldStyle(), + ret = me.callParent(); + + if (me.grow) { + if (me.preventScrollbars) { + ret.fieldStyle = (fieldStyle||'') + ';overflow:hidden;height:' + me.growMin + 'px'; + } + } + + Ext.applyIf(ret, { + cols: me.cols, + rows: me.rows + }); + + return ret; + }, + + afterRender: function () { + var me = this; + + me.callParent(arguments); + + me.needsMaxCheck = me.enforceMaxLength && me.maxLength !== Number.MAX_VALUE && !Ext.supports.TextAreaMaxLength; + if (me.needsMaxCheck) { + me.inputEl.on('paste', me.onPaste, me); + } + }, + + // The following overrides deal with an issue whereby some browsers + // will strip carriage returns from the textarea input, while others + // will not. Since there's no way to be sure where to insert returns, + // the best solution is to strip them out in all cases to ensure that + // the behaviour is consistent in a cross browser fashion. As such, + // we override in all cases when setting the value to control this. + transformRawValue: function(value){ + return this.stripReturns(value); + }, + + transformOriginalValue: function(value){ + return this.stripReturns(value); + }, + + getValue: function(){ + return this.stripReturns(this.callParent()); + }, + + valueToRaw: function(value){ + value = this.stripReturns(value); + return this.callParent([value]); + }, + + stripReturns: function(value){ + if (value && typeof value === 'string') { + value = value.replace(this.returnRe, ''); + } + return value; + }, + + onPaste: function(e){ + var me = this; + if (!me.pasteTask) { + me.pasteTask = new Ext.util.DelayedTask(me.pasteCheck, me); + } + // since we can't get the paste data, we'll give the area a chance to populate + me.pasteTask.delay(1); + }, + + pasteCheck: function(){ + var me = this, + value = me.getValue(), + max = me.maxLength; + + if (value.length > max) { + value = value.substr(0, max); + me.setValue(value); + } + }, + + // private + fireKey: function(e) { + var me = this, + key = e.getKey(), + value; + + if (e.isSpecialKey() && (me.enterIsSpecial || (key !== e.ENTER || e.hasModifier()))) { + me.fireEvent('specialkey', me, e); + } + + if (me.needsMaxCheck && key !== e.BACKSPACE && key !== e.DELETE && !e.isNavKeyPress() && !me.isCutCopyPasteSelectAll(e, key)) { + value = me.getValue(); + if (value.length >= me.maxLength) { + e.stopEvent(); + } + } + }, + + isCutCopyPasteSelectAll: function(e, key) { + if (e.ctrlKey) { + return key === e.A || key === e.C || key === e.V || key === e.X; + } + return false; + }, + + /** + * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed. This + * only takes effect if {@link #grow} = true, and fires the {@link #autosize} event if the height changes. + */ + autoSize: function() { + var me = this, + height; + + if (me.grow && me.rendered) { + me.updateLayout(); + height = me.inputEl.getHeight(); + if (height !== me.lastInputHeight) { + /** + * @event autosize + * Fires when the {@link #autoSize} function is triggered and the field is resized according to + * the grow/growMin/growMax configs as a result. This event provides a hook for the developer + * to apply additional logic at runtime to resize the field if needed. + * @param {Ext.form.field.Text} this + * @param {Number} height + */ + me.fireEvent('autosize', me, height); + me.lastInputHeight = height; + } + } + }, + + // private + initAria: function() { + this.callParent(arguments); + this.getActionEl().dom.setAttribute('aria-multiline', true); + }, + + beforeDestroy: function(){ + var task = this.pasteTask; + if (task) { + task.cancel(); + this.pasteTask = null; + } + this.callParent(); + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/form/field/Time.js b/extjs-django/marvel/static/extjs/src/form/field/Time.js new file mode 100644 index 0000000..f8f217e --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/form/field/Time.js @@ -0,0 +1,500 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * Provides a time input field with a time dropdown and automatic time validation. + * + * This field recognizes and uses JavaScript Date objects as its main {@link #value} type (only the time portion of the + * date is used; the month/day/year are ignored). In addition, it recognizes string values which are parsed according to + * the {@link #format} and/or {@link #altFormats} configs. These may be reconfigured to use time formats appropriate for + * the user's locale. + * + * The field may be limited to a certain range of times by using the {@link #minValue} and {@link #maxValue} configs, + * and the interval between time options in the dropdown can be changed with the {@link #increment} config. + * + * Example usage: + * + * @example + * Ext.create('Ext.form.Panel', { + * title: 'Time Card', + * width: 300, + * bodyPadding: 10, + * renderTo: Ext.getBody(), + * items: [{ + * xtype: 'timefield', + * name: 'in', + * fieldLabel: 'Time In', + * minValue: '6:00 AM', + * maxValue: '8:00 PM', + * increment: 30, + * anchor: '100%' + * }, { + * xtype: 'timefield', + * name: 'out', + * fieldLabel: 'Time Out', + * minValue: '6:00 AM', + * maxValue: '8:00 PM', + * increment: 30, + * anchor: '100%' + * }] + * }); + */ +Ext.define('Ext.form.field.Time', { + extend:'Ext.form.field.ComboBox', + alias: 'widget.timefield', + requires: ['Ext.form.field.Date', 'Ext.picker.Time', 'Ext.view.BoundListKeyNav', 'Ext.Date'], + alternateClassName: ['Ext.form.TimeField', 'Ext.form.Time'], + + /** + * @cfg {String} [triggerCls='x-form-time-trigger'] + * An additional CSS class used to style the trigger button. The trigger will always get the {@link #triggerBaseCls} + * by default and triggerCls will be **appended** if specified. + */ + triggerCls: Ext.baseCSSPrefix + 'form-time-trigger', + + /** + * @cfg {Date/String} minValue + * The minimum allowed time. Can be either a Javascript date object with a valid time value or a string time in a + * valid format -- see {@link #format} and {@link #altFormats}. + */ + + /** + * @cfg {Date/String} maxValue + * The maximum allowed time. Can be either a Javascript date object with a valid time value or a string time in a + * valid format -- see {@link #format} and {@link #altFormats}. + */ + + // + /** + * @cfg {String} minText + * The error text to display when the entered time is before {@link #minValue}. + */ + minText : "The time in this field must be equal to or after {0}", + // + + // + /** + * @cfg {String} maxText + * The error text to display when the entered time is after {@link #maxValue}. + */ + maxText : "The time in this field must be equal to or before {0}", + // + + // + /** + * @cfg {String} invalidText + * The error text to display when the time in the field is invalid. + */ + invalidText : "{0} is not a valid time", + // + + // + /** + * @cfg {String} [format=undefined] + * The default time format string which can be overriden for localization support. The format must be valid + * according to {@link Ext.Date#parse}. + * + * Defaults to `'g:i A'`, e.g., `'3:15 PM'`. For 24-hour time format try `'H:i'` instead. + */ + format : "g:i A", + // + + // + /** + * @cfg {String} [submitFormat=undefined] + * The date format string which will be submitted to the server. The format must be valid according to + * {@link Ext.Date#parse}. + * + * Defaults to {@link #format}. + */ + // + + // + /** + * @cfg {String} altFormats + * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined + * format. + */ + altFormats : "g:ia|g:iA|g:i a|g:i A|h:i|g:i|H:i|ga|ha|gA|h a|g a|g A|gi|hi|gia|hia|g|H|gi a|hi a|giA|hiA|gi A|hi A", + // + + /** + * @cfg {Number} increment + * The number of minutes between each time value in the list. + */ + increment: 15, + + /** + * @cfg {Number} pickerMaxHeight + * The maximum height of the {@link Ext.picker.Time} dropdown. + */ + pickerMaxHeight: 300, + + /** + * @cfg {Boolean} selectOnTab + * Whether the Tab key should select the currently highlighted item. + */ + selectOnTab: true, + + /** + * @cfg {Boolean} [snapToIncrement=false] + * Specify as `true` to enforce that only values on the {@link #increment} boundary are accepted. + */ + snapToIncrement: false, + + /** + * @private + * This is the date to use when generating time values in the absence of either minValue + * or maxValue. Using the current date causes DST issues on DST boundary dates, so this is an + * arbitrary "safe" date that can be any date aside from DST boundary dates. + */ + initDate: '1/1/2008', + initDateFormat: 'j/n/Y', + + ignoreSelection: 0, + + queryMode: 'local', + + displayField: 'disp', + + valueField: 'date', + + initComponent: function() { + var me = this, + min = me.minValue, + max = me.maxValue; + if (min) { + me.setMinValue(min); + } + if (max) { + me.setMaxValue(max); + } + me.displayTpl = new Ext.XTemplate( + '' + + '{[typeof values === "string" ? values : this.formatDate(values["' + me.displayField + '"])]}' + + '' + me.delimiter + '' + + '', { + formatDate: Ext.Function.bind(me.formatDate, me) + }); + this.callParent(); + }, + + /** + * @private + */ + transformOriginalValue: function(value) { + if (Ext.isString(value)) { + return this.rawToValue(value); + } + return value; + }, + + /** + * @private + */ + isEqual: function(v1, v2) { + return Ext.Date.isEqual(v1, v2); + }, + + /** + * Replaces any existing {@link #minValue} with the new time and refreshes the picker's range. + * @param {Date/String} value The minimum time that can be selected + */ + setMinValue: function(value) { + var me = this, + picker = me.picker; + me.setLimit(value, true); + if (picker) { + picker.setMinValue(me.minValue); + } + }, + + /** + * Replaces any existing {@link #maxValue} with the new time and refreshes the picker's range. + * @param {Date/String} value The maximum time that can be selected + */ + setMaxValue: function(value) { + var me = this, + picker = me.picker; + me.setLimit(value, false); + if (picker) { + picker.setMaxValue(me.maxValue); + } + }, + + /** + * @private + * Updates either the min or max value. Converts the user's value into a Date object whose + * year/month/day is set to the {@link #initDate} so that only the time fields are significant. + */ + setLimit: function(value, isMin) { + var me = this, + d, val; + if (Ext.isString(value)) { + d = me.parseDate(value); + } + else if (Ext.isDate(value)) { + d = value; + } + if (d) { + val = Ext.Date.clearTime(new Date(me.initDate)); + val.setHours(d.getHours(), d.getMinutes(), d.getSeconds(), d.getMilliseconds()); + } + // Invalid min/maxValue config should result in a null so that defaulting takes over + else { + val = null; + } + me[isMin ? 'minValue' : 'maxValue'] = val; + }, + + rawToValue: function(rawValue) { + return this.parseDate(rawValue) || rawValue || null; + }, + + valueToRaw: function(value) { + return this.formatDate(this.parseDate(value)); + }, + + /** + * Runs all of Time's validations and returns an array of any errors. Note that this first runs Text's validations, + * so the returned array is an amalgamation of all field errors. The additional validation checks are testing that + * the time format is valid, that the chosen time is within the {@link #minValue} and {@link #maxValue} constraints + * set. + * @param {Object} [value] The value to get errors for (defaults to the current field value) + * @return {String[]} All validation errors for this field + */ + getErrors: function(value) { + var me = this, + format = Ext.String.format, + errors = me.callParent(arguments), + minValue = me.minValue, + maxValue = me.maxValue, + date; + + value = me.formatDate(value || me.processRawValue(me.getRawValue())); + + if (value === null || value.length < 1) { // if it's blank and textfield didn't flag it then it's valid + return errors; + } + + date = me.parseDate(value); + if (!date) { + errors.push(format(me.invalidText, value, Ext.Date.unescapeFormat(me.format))); + return errors; + } + + if (minValue && date < minValue) { + errors.push(format(me.minText, me.formatDate(minValue))); + } + + if (maxValue && date > maxValue) { + errors.push(format(me.maxText, me.formatDate(maxValue))); + } + + return errors; + }, + + formatDate: function() { + return Ext.form.field.Date.prototype.formatDate.apply(this, arguments); + }, + + /** + * @private + * Parses an input value into a valid Date object. + * @param {String/Date} value + */ + parseDate: function(value) { + var me = this, + val = value, + altFormats = me.altFormats, + altFormatsArray = me.altFormatsArray, + i = 0, + len; + + if (value && !Ext.isDate(value)) { + val = me.safeParse(value, me.format); + + if (!val && altFormats) { + altFormatsArray = altFormatsArray || altFormats.split('|'); + len = altFormatsArray.length; + for (; i < len && !val; ++i) { + val = me.safeParse(value, altFormatsArray[i]); + } + } + } + + // If configured to snap, snap resulting parsed Date to the closest increment. + if (val && me.snapToIncrement) { + val = new Date(Ext.Number.snap(val.getTime(), me.increment * 60 * 1000)); + } + return val; + }, + + safeParse: function(value, format){ + var me = this, + utilDate = Ext.Date, + parsedDate, + result = null; + + if (utilDate.formatContainsDateInfo(format)) { + // assume we've been given a full date + result = utilDate.parse(value, format); + } else { + // Use our initial safe date + parsedDate = utilDate.parse(me.initDate + ' ' + value, me.initDateFormat + ' ' + format); + if (parsedDate) { + result = parsedDate; + } + } + return result; + }, + + // @private + getSubmitValue: function() { + var me = this, + format = me.submitFormat || me.format, + value = me.getValue(); + + return value ? Ext.Date.format(value, format) : null; + }, + + /** + * @private + * Creates the {@link Ext.picker.Time} + */ + createPicker: function() { + var me = this, + picker; + + me.listConfig = Ext.apply({ + xtype: 'timepicker', + selModel: { + mode: 'SINGLE' + }, + cls: undefined, + minValue: me.minValue, + maxValue: me.maxValue, + increment: me.increment, + format: me.format, + maxHeight: me.pickerMaxHeight + }, me.listConfig); + picker = me.callParent(); + me.bindStore(picker.store); + return picker; + }, + + onItemClick: function(picker, record){ + // The selection change events won't fire when clicking on the selected element. Detect it here. + var me = this, + selected = picker.getSelectionModel().getSelection(); + + if (selected.length > 0) { + selected = selected[0]; + if (selected && Ext.Date.isEqual(record.get('date'), selected.get('date'))) { + me.collapse(); + } + } + }, + + /** + * @private + * Handles a time being selected from the Time picker. + */ + onListSelectionChange: function(list, recordArray) { + if (recordArray.length) { + var me = this, + val = recordArray[0].get('date'); + + if (!me.ignoreSelection) { + me.skipSync = true; + me.setValue(val); + me.skipSync = false; + me.fireEvent('select', me, val); + me.picker.clearHighlight(); + me.collapse(); + me.inputEl.focus(); + } + } + }, + + /** + * @private + * Synchronizes the selection in the picker to match the current value + */ + syncSelection: function() { + var me = this, + picker = me.picker, + toSelect, + selModel, + value, + data, d, dLen, rec; + + if (picker && !me.skipSync) { + picker.clearHighlight(); + value = me.getValue(); + selModel = picker.getSelectionModel(); + // Update the selection to match + me.ignoreSelection++; + if (value === null) { + selModel.deselectAll(); + } else if (Ext.isDate(value)) { + // find value, select it + data = picker.store.data.items; + dLen = data.length; + + for (d = 0; d < dLen; d++) { + rec = data[d]; + + if (Ext.Date.isEqual(rec.get('date'), value)) { + toSelect = rec; + break; + } + } + + selModel.select(toSelect); + } + me.ignoreSelection--; + } + }, + + postBlur: function() { + var me = this, + val = me.getValue(); + + me.callParent(arguments); + + // Only set the raw value if the current value is valid and is not falsy + if (me.wasValid && val) { + me.setRawValue(me.formatDate(val)); + } + }, + + setValue: function() { + + // Store MUST be created for parent setValue to function + this.getPicker(); + + return this.callParent(arguments); + }, + + getValue: function() { + return this.parseDate(this.callParent(arguments)); + } +}); diff --git a/extjs-django/marvel/static/extjs/src/form/field/Trigger.js b/extjs-django/marvel/static/extjs/src/form/field/Trigger.js new file mode 100644 index 0000000..7278e1a --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/form/field/Trigger.js @@ -0,0 +1,509 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default). + * The trigger has no default action, so you must assign a function to implement the trigger click handler by overriding + * {@link #onTriggerClick}. You can create a Trigger field directly, as it renders exactly like a combobox for which you + * can provide a custom implementation. + * + * For example: + * + * @example + * Ext.define('Ext.ux.CustomTrigger', { + * extend: 'Ext.form.field.Trigger', + * alias: 'widget.customtrigger', + * + * // override onTriggerClick + * onTriggerClick: function() { + * Ext.Msg.alert('Status', 'You clicked my trigger!'); + * } + * }); + * + * Ext.create('Ext.form.FormPanel', { + * title: 'Form with TriggerField', + * bodyPadding: 5, + * width: 350, + * renderTo: Ext.getBody(), + * items:[{ + * xtype: 'customtrigger', + * fieldLabel: 'Sample Trigger', + * emptyText: 'click the trigger' + * }] + * }); + * + * However, in general you will most likely want to use Trigger as the base class for a reusable component. + * {@link Ext.form.field.Date} and {@link Ext.form.field.ComboBox} are perfect examples of this. + */ +Ext.define('Ext.form.field.Trigger', { + extend:'Ext.form.field.Text', + alias: ['widget.triggerfield', 'widget.trigger'], + requires: ['Ext.dom.Helper', 'Ext.util.ClickRepeater', 'Ext.layout.component.field.Trigger'], + alternateClassName: ['Ext.form.TriggerField', 'Ext.form.TwinTriggerField', 'Ext.form.Trigger'], + + childEls: [ + /** + * @property {Ext.CompositeElement} triggerEl + * A composite of all the trigger button elements. Only set after the field has been rendered. + */ + { name: 'triggerCell', select: '.' + Ext.baseCSSPrefix + 'trigger-cell' }, + { name: 'triggerEl', select: '.' + Ext.baseCSSPrefix + 'form-trigger' }, + + /** + * @property {Ext.Element} triggerWrap + * A reference to the `TABLE` element which encapsulates the input field and all trigger button(s). Only set after the field has been rendered. + */ + 'triggerWrap', + + /** + * @property {Ext.Element} inputCell + * A reference to the `TD` element wrapping the input element. Only set after the field has been rendered. + */ + 'inputCell' + ], + + /** + * @cfg {String} triggerCls + * An additional CSS class used to style the trigger button. The trigger will always get the {@link #triggerBaseCls} + * by default and triggerCls will be **appended** if specified. + */ + + /** + * @cfg + * The base CSS class that is always added to the trigger button. The {@link #triggerCls} will be appended in + * addition to this class. + */ + triggerBaseCls: Ext.baseCSSPrefix + 'form-trigger', + + /** + * @cfg + * The CSS class that is added to the div wrapping the trigger button(s). + */ + triggerWrapCls: Ext.baseCSSPrefix + 'form-trigger-wrap', + + /** + * @cfg + * The CSS class that is added to the text field when component is read-only or not editable. + */ + triggerNoEditCls: Ext.baseCSSPrefix + 'trigger-noedit', + + /** + * @cfg {Boolean} hideTrigger + * true to hide the trigger element and display only the base text field + */ + hideTrigger: false, + + /** + * @cfg {Boolean} editable + * false to prevent the user from typing text directly into the field; the field can only have its value set via an + * action invoked by the trigger. + */ + editable: true, + + /** + * @cfg {Boolean} readOnly + * true to prevent the user from changing the field, and hides the trigger. Supercedes the editable and hideTrigger + * options if the value is true. + */ + readOnly: false, + + /** + * @cfg {Boolean} [selectOnFocus=false] + * true to select any existing text in the field immediately on focus. Only applies when + * {@link #editable editable} = true + */ + + /** + * @cfg {Boolean} repeatTriggerClick + * true to attach a {@link Ext.util.ClickRepeater click repeater} to the trigger. + */ + repeatTriggerClick: false, + + + /** + * @method autoSize + * @private + */ + autoSize: Ext.emptyFn, + // @private + monitorTab: true, + // @private + mimicing: false, + // @private + triggerIndexRe: /trigger-index-(\d+)/, + + extraTriggerCls: '', + + componentLayout: 'triggerfield', + + initComponent: function() { + this.wrapFocusCls = this.triggerWrapCls + '-focus'; + this.callParent(arguments); + }, + + getSubTplMarkup: function(values) { + var me = this, + childElCls = values.childElCls, // either '' or ' x-foo' + field = me.callParent(arguments); + + return '' + + '' + + me.getTriggerMarkup() + + '
    ' + field + '
    '; + }, + + getSubTplData: function(){ + var me = this, + data = me.callParent(), + readOnly = me.readOnly === true, + editable = me.editable !== false; + + return Ext.apply(data, { + editableCls: (readOnly || !editable) ? ' ' + me.triggerNoEditCls : '', + readOnly: !editable || readOnly + }); + }, + + getLabelableRenderData: function() { + var me = this, + triggerWrapCls = me.triggerWrapCls, + result = me.callParent(arguments); + + return Ext.applyIf(result, { + triggerWrapCls: triggerWrapCls, + triggerMarkup: me.getTriggerMarkup() + }); + }, + + getTriggerMarkup: function() { + var me = this, + i = 0, + hideTrigger = (me.readOnly || me.hideTrigger), + triggerCls, + triggerBaseCls = me.triggerBaseCls, + triggerConfigs = [], + unselectableCls = Ext.dom.Element.unselectableCls, + style = 'width:' + me.triggerWidth + 'px;' + (hideTrigger ? 'display:none;' : ''), + cls = me.extraTriggerCls + ' ' + Ext.baseCSSPrefix + 'trigger-cell ' + unselectableCls; + + // TODO this triggerCls API design doesn't feel clean, especially where it butts up against the + // single triggerCls config. Should rethink this, perhaps something more structured like a list of + // trigger config objects that hold cls, handler, etc. + // triggerCls is a synonym for trigger1Cls, so copy it. + if (!me.trigger1Cls) { + me.trigger1Cls = me.triggerCls; + } + + // Create as many trigger elements as we have triggerCls configs, but always at least one + for (i = 0; (triggerCls = me['trigger' + (i + 1) + 'Cls']) || i < 1; i++) { + triggerConfigs.push({ + tag: 'td', + valign: 'top', + cls: cls, + style: style, + cn: { + cls: [Ext.baseCSSPrefix + 'trigger-index-' + i, triggerBaseCls, triggerCls].join(' '), + role: 'button' + } + }); + } + triggerConfigs[0].cn.cls += ' ' + triggerBaseCls + '-first'; + + return Ext.DomHelper.markup(triggerConfigs); + }, + + disableCheck: function() { + return !this.disabled; + }, + + // @private + beforeRender: function() { + var me = this, + triggerBaseCls = me.triggerBaseCls, + tempEl; + + /** + * @property {Number} triggerWidth + * Width of the trigger element. Unless set explicitly, it will be + * automatically calculated through creating a temporary element + * on page. (That will be done just once per app run.) + * @private + */ + if (!me.triggerWidth) { + tempEl = Ext.getBody().createChild({ + style: 'position: absolute;', + cls: Ext.baseCSSPrefix + 'form-trigger' + }); + Ext.form.field.Trigger.prototype.triggerWidth = tempEl.getWidth(); + tempEl.remove(); + } + + me.callParent(); + + if (triggerBaseCls != Ext.baseCSSPrefix + 'form-trigger') { + // we may need to change the selectors by which we extract trigger elements if is triggerBaseCls isn't the value we + // stuck in childEls + me.addChildEls({ name: 'triggerEl', select: '.' + triggerBaseCls }); + } + + // these start correct in the fieldSubTpl: + me.lastTriggerStateFlags = me.getTriggerStateFlags(); + }, + + onRender: function() { + var me = this; + + me.callParent(arguments); + + me.doc = Ext.getDoc(); + me.initTrigger(); + }, + + /** + * Get the total width of the trigger button area. + * @return {Number} The total trigger width + */ + getTriggerWidth: function() { + var me = this, + totalTriggerWidth = 0; + + if (me.triggerWrap && !me.hideTrigger && !me.readOnly) { + totalTriggerWidth = me.triggerEl.getCount() * me.triggerWidth; + } + return totalTriggerWidth; + }, + + setHideTrigger: function(hideTrigger) { + if (hideTrigger != this.hideTrigger) { + this.hideTrigger = hideTrigger; + this.updateLayout(); + } + }, + + /** + * Sets the editable state of this field. This method is the runtime equivalent of setting the 'editable' config + * option at config time. + * @param {Boolean} editable True to allow the user to directly edit the field text. If false is passed, the user + * will only be able to modify the field using the trigger. Will also add a click event to the text field which + * will call the trigger. + */ + setEditable: function(editable) { + if (editable != this.editable) { + this.editable = editable; + this.updateLayout(); + } + }, + + /** + * Sets the read-only state of this field. This method is the runtime equivalent of setting the 'readOnly' config + * option at config time. + * @param {Boolean} readOnly True to prevent the user changing the field and explicitly hide the trigger. Setting + * this to true will supercede settings editable and hideTrigger. Setting this to false will defer back to editable + * and hideTrigger. + */ + setReadOnly: function(readOnly) { + var me = this, + old = me.readOnly; + + me.callParent(arguments); + if (readOnly != old) { + me.updateLayout(); + } + }, + + // @private + initTrigger: function() { + var me = this, + triggerWrap = me.triggerWrap, + triggerEl = me.triggerEl, + disableCheck = me.disableCheck, + els, eLen, el, e, idx; + + if (me.repeatTriggerClick) { + me.triggerRepeater = new Ext.util.ClickRepeater(triggerWrap, { + preventDefault: true, + handler: me.onTriggerWrapClick, + listeners: { + mouseup: me.onTriggerWrapMouseup, + scope: me + }, + scope: me + }); + } else { + me.mon(triggerWrap, { + click: me.onTriggerWrapClick, + mouseup: me.onTriggerWrapMouseup, + scope: me + }); + } + + triggerEl.setVisibilityMode(Ext.Element.DISPLAY); + triggerEl.addClsOnOver(me.triggerBaseCls + '-over', disableCheck, me); + + els = triggerEl.elements; + eLen = els.length; + + for (e = 0; e < eLen; e++) { + el = els[e]; + idx = e+1; + el.addClsOnOver(me['trigger' + (idx) + 'Cls'] + '-over', disableCheck, me); + el.addClsOnClick(me['trigger' + (idx) + 'Cls'] + '-click', disableCheck, me); + } + + triggerEl.addClsOnClick(me.triggerBaseCls + '-click', disableCheck, me); + + }, + + // @private + onDestroy: function() { + var me = this; + Ext.destroyMembers(me, 'triggerRepeater', 'triggerWrap', 'triggerEl'); + delete me.doc; + me.callParent(); + }, + + // @private + onFocus: function() { + var me = this; + me.callParent(arguments); + if (!me.mimicing) { + me.bodyEl.addCls(me.wrapFocusCls); + me.mimicing = true; + me.mon(me.doc, 'mousedown', me.mimicBlur, me, { + delay: 10 + }); + if (me.monitorTab) { + me.on('specialkey', me.checkTab, me); + } + } + }, + + // @private + checkTab: function(me, e) { + if (!this.ignoreMonitorTab && e.getKey() == e.TAB) { + this.triggerBlur(); + } + }, + + /** + * Returns a set of flags that describe the trigger state. These are just used to easily + * determine if the DOM is out-of-sync with the component's properties. + * @private + */ + getTriggerStateFlags: function () { + var me = this, + state = 0; + + if (me.readOnly) { + state += 1; + } + if (me.editable) { + state += 2; + } + if (me.hideTrigger) { + state += 4; + } + return state; + }, + + /** + * @private + * The default blur handling must not occur for a TriggerField, implementing this template method as emptyFn disables that. + * Instead the tab key is monitored, and the superclass's onBlur is called when tab is detected + */ + onBlur: Ext.emptyFn, + + // @private + mimicBlur: function(e) { + if (!this.isDestroyed && !this.bodyEl.contains(e.target) && this.validateBlur(e)) { + this.triggerBlur(e); + } + }, + + // @private + triggerBlur: function(e) { + var me = this; + me.mimicing = false; + me.mun(me.doc, 'mousedown', me.mimicBlur, me); + if (me.monitorTab && me.inputEl) { + me.un('specialkey', me.checkTab, me); + } + Ext.form.field.Trigger.superclass.onBlur.call(me, e); + if (me.bodyEl) { + me.bodyEl.removeCls(me.wrapFocusCls); + } + }, + + // @private + // This should be overridden by any subclass that needs to check whether or not the field can be blurred. + validateBlur: function(e) { + return true; + }, + + // @private + // process clicks upon triggers. + // determine which trigger index, and dispatch to the appropriate click handler + onTriggerWrapClick: function() { + var me = this, + targetEl, match, + triggerClickMethod, + event; + + event = arguments[me.triggerRepeater ? 1 : 0]; + if (event && !me.readOnly && !me.disabled) { + targetEl = event.getTarget('.' + me.triggerBaseCls, null); + match = targetEl && targetEl.className.match(me.triggerIndexRe); + + if (match) { + triggerClickMethod = me['onTrigger' + (parseInt(match[1], 10) + 1) + 'Click'] || me.onTriggerClick; + if (triggerClickMethod) { + triggerClickMethod.call(me, event); + } + } + } + }, + + // @private + // Handle trigger mouse up gesture. To be implemented in subclasses. + // Currently the Spinner subclass refocuses the input element upon end of spin. + onTriggerWrapMouseup: Ext.emptyFn, + + /** + * @method onTriggerClick + * @protected + * The function that should handle the trigger's click event. This method does nothing by default until overridden + * by an implementing function. See Ext.form.field.ComboBox and Ext.form.field.Date for sample implementations. + * @param {Ext.EventObject} e + */ + onTriggerClick: Ext.emptyFn + + /** + * @cfg {Boolean} grow + * @private + */ + /** + * @cfg {Number} growMin + * @private + */ + /** + * @cfg {Number} growMax + * @private + */ +}); diff --git a/extjs-django/marvel/static/extjs/src/form/field/VTypes.js b/extjs-django/marvel/static/extjs/src/form/field/VTypes.js new file mode 100644 index 0000000..325d1aa --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/form/field/VTypes.js @@ -0,0 +1,227 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @singleton + * @alternateClassName Ext.form.VTypes + * + * This is a singleton object which contains a set of commonly used field validation functions + * and provides a mechanism for creating reusable custom field validations. + * The following field validation functions are provided out of the box: + * + * - {@link #alpha} + * - {@link #alphanum} + * - {@link #email} + * - {@link #url} + * + * VTypes can be applied to a {@link Ext.form.field.Text Text Field} using the `{@link Ext.form.field.Text#vtype vtype}` configuration: + * + * Ext.create('Ext.form.field.Text', { + * fieldLabel: 'Email Address', + * name: 'email', + * vtype: 'email' // applies email validation rules to this field + * }); + * + * To create custom VTypes: + * + * // custom Vtype for vtype:'time' + * var timeTest = /^([1-9]|1[0-9]):([0-5][0-9])(\s[a|p]m)$/i; + * Ext.apply(Ext.form.field.VTypes, { + * // vtype validation function + * time: function(val, field) { + * return timeTest.test(val); + * }, + * // vtype Text property: The error text to display when the validation function returns false + * timeText: 'Not a valid time. Must be in the format "12:34 PM".', + * // vtype Mask property: The keystroke filter mask + * timeMask: /[\d\s:amp]/i + * }); + * + * In the above example the `time` function is the validator that will run when field validation occurs, + * `timeText` is the error message, and `timeMask` limits what characters can be typed into the field. + * Note that the `Text` and `Mask` functions must begin with the same name as the validator function. + * + * Using a custom validator is the same as using one of the build-in validators - just use the name of the validator function + * as the `{@link Ext.form.field.Text#vtype vtype}` configuration on a {@link Ext.form.field.Text Text Field}: + * + * Ext.create('Ext.form.field.Text', { + * fieldLabel: 'Departure Time', + * name: 'departureTime', + * vtype: 'time' // applies custom time validation rules to this field + * }); + * + * Another example of a custom validator: + * + * // custom Vtype for vtype:'IPAddress' + * Ext.apply(Ext.form.field.VTypes, { + * IPAddress: function(v) { + * return /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/.test(v); + * }, + * IPAddressText: 'Must be a numeric IP address', + * IPAddressMask: /[\d\.]/i + * }); + * + * It's important to note that using {@link Ext#apply Ext.apply()} means that the custom validator function + * as well as `Text` and `Mask` fields are added as properties of the `Ext.form.field.VTypes` singleton. + */ +Ext.define('Ext.form.field.VTypes', (function(){ + // closure these in so they are only created once. + var alpha = /^[a-zA-Z_]+$/, + alphanum = /^[a-zA-Z0-9_]+$/, + + // http://en.wikipedia.org/wiki/Email_address#Local_part + // http://stackoverflow.com/a/2049510 + // http://isemail.info/ + // http://blog.stevenlevithan.com/archives/capturing-vs-non-capturing-groups + // + // 1. Can begin with a double-quote ONLY IF the local part also ends in a double-quote. + // 2. Can NOT BEGIN with a period. + // 3. Can NOT END with a period. + // 4. Can not have MORE THAN ONE period in a row. + // + // Let's break this down: + // + // ^(")? + // The local part may begin with double-quotes, but only if it also ends with it. + // See the back-reference. Capturing. + // + // (?:[^\."]) + // Here we've defined that the local part cannot begin with a period or a double-quote. Non-capturing. + // + // (?:(?:[\.])?(?:[\w\-!#$%&'*+/=?^_`{|}~]))* + // After the first character is matched, the regex ensures that there is not more than one period + // in a row. Then, this nested grouping allows for zero or more of the accepted characters. + // NOTE that this also ensures that any character not defined in the character class + // is invalid as an ending character for the local part (such as the period). + // + // \1@ + // The local part of the address is a backreference to the first (and only) capturing group that allows + // for a double-quote to wrap the local part of an email address. + email = /^(")?(?:[^\."])(?:(?:[\.])?(?:[\w\-!#$%&'*+/=?^_`{|}~]))*\1@(\w[\-\w]*\.){1,5}([A-Za-z]){2,6}$/, + url = /(((^https?)|(^ftp)):\/\/((([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*)|(localhost|LOCALHOST))\/?)/i; + + // All these messages and functions are configurable + return { + singleton: true, + alternateClassName: 'Ext.form.VTypes', + + /** + * The function used to validate email addresses. Note that complete validation per the email RFC + * specifications is very complex and beyond the scope of this class, although this function can be + * overridden if a more comprehensive validation scheme is desired. See the validation section + * of the [Wikipedia article on email addresses][1] for additional information. This implementation is + * intended to validate the following types of emails: + * + * - `barney@example.de` + * - `barney.rubble@example.com` + * - `barney-rubble@example.coop` + * - `barney+rubble@example.com` + * - `barney'rubble@example.com` + * - `b.arne.y_r.ubbl.e@example.com` + * - `barney4rubble@example.com` + * - `barney4rubble!@example.com` + * - `_barney+rubble@example.com` + * - `"barney+rubble"@example.com` + * + * [1]: http://en.wikipedia.org/wiki/E-mail_address + * + * @param {String} value The email address + * @return {Boolean} true if the RegExp test passed, and false if not. + */ + 'email' : function(v){ + return email.test(v); + }, + // + /** + * @property {String} emailText + * The error text to display when the email validation function returns false. + * Defaults to: 'This field should be an e-mail address in the format "user@example.com"' + */ + 'emailText' : 'This field should be an e-mail address in the format "user@example.com"', + // + /** + * @property {RegExp} emailMask + * The keystroke filter mask to be applied on email input. See the {@link #email} method for information about + * more complex email validation. Defaults to: /[a-z0-9_\.\-@]/i + */ + 'emailMask' : /[\w.\-@'"!#$%&'*+/=?^_`{|}~]/i, + + /** + * The function used to validate URLs + * @param {String} value The URL + * @return {Boolean} true if the RegExp test passed, and false if not. + */ + 'url' : function(v){ + return url.test(v); + }, + // + /** + * @property {String} urlText + * The error text to display when the url validation function returns false. + * Defaults to: 'This field should be a URL in the format "http:/'+'/www.example.com"' + */ + 'urlText' : 'This field should be a URL in the format "http:/'+'/www.example.com"', + // + + /** + * The function used to validate alpha values + * @param {String} value The value + * @return {Boolean} true if the RegExp test passed, and false if not. + */ + 'alpha' : function(v){ + return alpha.test(v); + }, + // + /** + * @property {String} alphaText + * The error text to display when the alpha validation function returns false. + * Defaults to: 'This field should only contain letters and _' + */ + 'alphaText' : 'This field should only contain letters and _', + // + /** + * @property {RegExp} alphaMask + * The keystroke filter mask to be applied on alpha input. Defaults to: /[a-z_]/i + */ + 'alphaMask' : /[a-z_]/i, + + /** + * The function used to validate alphanumeric values + * @param {String} value The value + * @return {Boolean} true if the RegExp test passed, and false if not. + */ + 'alphanum' : function(v){ + return alphanum.test(v); + }, + // + /** + * @property {String} alphanumText + * The error text to display when the alphanumeric validation function returns false. + * Defaults to: 'This field should only contain letters, numbers and _' + */ + 'alphanumText' : 'This field should only contain letters, numbers and _', + // + /** + * @property {RegExp} alphanumMask + * The keystroke filter mask to be applied on alphanumeric input. Defaults to: /[a-z0-9_]/i + */ + 'alphanumMask' : /[a-z0-9_]/i + }; +}())); diff --git a/extjs-django/marvel/static/extjs/src/fx/Anim.js b/extjs-django/marvel/static/extjs/src/fx/Anim.js new file mode 100644 index 0000000..5950e77 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/fx/Anim.js @@ -0,0 +1,490 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * This class manages animation for a specific {@link #target}. The animation allows + * animation of various properties on the target, such as size, position, color and others. + * + * ## Starting Conditions + * + * The starting conditions for the animation are provided by the {@link #from} configuration. + * Any/all of the properties in the {@link #from} configuration can be specified. If a particular + * property is not defined, the starting value for that property will be read directly from the target. + * + * ## End Conditions + * + * The ending conditions for the animation are provided by the {@link #to} configuration. These mark + * the final values once the animations has finished. The values in the {@link #from} can mirror + * those in the {@link #to} configuration to provide a starting point. + * + * ## Other Options + * + * - {@link #duration}: Specifies the time period of the animation. + * - {@link #easing}: Specifies the easing of the animation. + * - {@link #iterations}: Allows the animation to repeat a number of times. + * - {@link #alternate}: Used in conjunction with {@link #iterations}, reverses the direction every second iteration. + * + * ## Example Code + * + * @example + * var myComponent = Ext.create('Ext.Component', { + * renderTo: document.body, + * width: 200, + * height: 200, + * style: 'border: 1px solid red;' + * }); + * + * Ext.create('Ext.fx.Anim', { + * target: myComponent, + * duration: 1000, + * from: { + * width: 400 //starting width 400 + * }, + * to: { + * width: 300, //end width 300 + * height: 300 // end height 300 + * } + * }); + */ +Ext.define('Ext.fx.Anim', { + + /* Begin Definitions */ + + mixins: { + observable: 'Ext.util.Observable' + }, + + requires: ['Ext.fx.Manager', 'Ext.fx.Animator', 'Ext.fx.Easing', 'Ext.fx.CubicBezier', 'Ext.fx.PropertyHandler'], + + /* End Definitions */ + + /** + * @property {Boolean} isAnimation + * `true` in this class to identify an object as an instantiated Anim, or subclass thereof. + */ + isAnimation: true, + + /** + * @cfg {Function} callback + * A function to be run after the animation has completed. + */ + + /** + * @cfg {Function} scope + * The scope that the {@link #callback} function will be called with + */ + + /** + * @cfg {Number} duration + * Time in milliseconds for a single animation to last. If the {@link #iterations} property is + * specified, then each animate will take the same duration for each iteration. + */ + duration: 250, + + /** + * @cfg {Number} delay + * Time to delay before starting the animation. + */ + delay: 0, + + /* @private used to track a delayed starting time */ + delayStart: 0, + + /** + * @cfg {Boolean} dynamic + * Currently only for Component Animation: Only set a component's outer element size bypassing layouts. + * Set to true to do full layouts for every frame of the animation. + */ + dynamic: false, + + /** + * @cfg {String} easing + * This describes how the intermediate values used during a transition will be calculated. + * It allows for a transition to change speed over its duration. + * + * - backIn + * - backOut + * - bounceIn + * - bounceOut + * - ease + * - easeIn + * - easeOut + * - easeInOut + * - elasticIn + * - elasticOut + * - cubic-bezier(x1, y1, x2, y2) + * + * Note that cubic-bezier will create a custom easing curve following the CSS3 [transition-timing-function][0] + * specification. The four values specify points P1 and P2 of the curve as (x1, y1, x2, y2). All values must + * be in the range [0, 1] or the definition is invalid. + * + * [0]: http://www.w3.org/TR/css3-transitions/#transition-timing-function_tag + */ + easing: 'ease', + + /** + * @cfg {Object} keyframes + * Animation keyframes follow the CSS3 Animation configuration pattern. 'from' is always considered '0%' and 'to' + * is considered '100%'. **Every keyframe declaration must have a keyframe rule for 0% and 100%, possibly defined using + * "from" or "to".** A keyframe declaration without these keyframe selectors is invalid and will not be available for + * animation. The keyframe declaration for a keyframe rule consists of properties and values. Properties that are unable to + * be animated are ignored in these rules, with the exception of 'easing' which can be changed at each keyframe. For example: + * + * keyframes : { + * '0%': { + * left: 100 + * }, + * '40%': { + * left: 150 + * }, + * '60%': { + * left: 75 + * }, + * '100%': { + * left: 100 + * } + * } + */ + + /** + * @private + */ + damper: 1, + + /** + * @private + */ + bezierRE: /^(?:cubic-)?bezier\(([^,]+),([^,]+),([^,]+),([^\)]+)\)/, + + /** + * Run the animation from the end to the beginning + * Defaults to false. + * @cfg {Boolean} reverse + */ + reverse: false, + + /** + * Flag to determine if the animation has started + * @property running + * @type Boolean + */ + running: false, + + /** + * Flag to determine if the animation is paused. Only set this to true if you need to + * keep the Anim instance around to be unpaused later; otherwise call {@link #end}. + * @property paused + * @type Boolean + */ + paused: false, + + /** + * @cfg {Number} iterations + * Number of times to execute the animation. + */ + iterations: 1, + + /** + * @cfg {Boolean} alternate + * Used in conjunction with iterations to reverse the animation each time an iteration completes. + */ + alternate: false, + + /** + * Current iteration the animation is running. + * @property currentIteration + * @type Number + */ + currentIteration: 0, + + /** + * Starting time of the animation. + * @property startTime + * @type Date + */ + startTime: 0, + + /** + * Contains a cache of the interpolators to be used. + * @private + * @property propHandlers + * @type Object + */ + + /** + * @cfg {String/Object} target + * The {@link Ext.fx.target.Target} to apply the animation to. This should only be specified when creating an Ext.fx.Anim directly. + * The target does not need to be a {@link Ext.fx.target.Target} instance, it can be the underlying object. For example, you can + * pass a Component, Element or Sprite as the target and the Anim will create the appropriate {@link Ext.fx.target.Target} object + * automatically. + */ + + /** + * @cfg {Object} from + * An object containing property/value pairs for the beginning of the animation. If not specified, the current state of the + * Ext.fx.target will be used. For example: + * + * from: { + * opacity: 0, // Transparent + * color: '#ffffff', // White + * left: 0 + * } + * + */ + + /** + * @cfg {Object} to (required) + * An object containing property/value pairs for the end of the animation. For example: + * + * to: { + * opacity: 1, // Opaque + * color: '#00ff00', // Green + * left: 500 + * } + * + */ + + // @private + frameCount: 0, + + // @private + constructor: function(config) { + var me = this, + curve; + + config = config || {}; + // If keyframes are passed, they really want an Animator instead. + if (config.keyframes) { + return new Ext.fx.Animator(config); + } + Ext.apply(me, config); + if (me.from === undefined) { + me.from = {}; + } + me.propHandlers = {}; + me.config = config; + me.target = Ext.fx.Manager.createTarget(me.target); + me.easingFn = Ext.fx.Easing[me.easing]; + me.target.dynamic = me.dynamic; + + // If not a pre-defined curve, try a cubic-bezier + if (!me.easingFn) { + me.easingFn = String(me.easing).match(me.bezierRE); + if (me.easingFn && me.easingFn.length == 5) { + curve = me.easingFn; + me.easingFn = Ext.fx.CubicBezier.cubicBezier(+curve[1], +curve[2], +curve[3], +curve[4]); + } + } + me.id = Ext.id(null, 'ext-anim-'); + me.addEvents( + /** + * @event beforeanimate + * Fires before the animation starts. A handler can return false to cancel the animation. + * @param {Ext.fx.Anim} this + */ + 'beforeanimate', + /** + * @event afteranimate + * Fires when the animation is complete. + * @param {Ext.fx.Anim} this + * @param {Date} startTime + */ + 'afteranimate', + /** + * @event lastframe + * Fires when the animation's last frame has been set. + * @param {Ext.fx.Anim} this + * @param {Date} startTime + */ + 'lastframe' + ); + me.mixins.observable.constructor.call(me); + Ext.fx.Manager.addAnim(me); + }, + + /** + * @private + * Helper to the target + */ + setAttr: function(attr, value) { + return Ext.fx.Manager.items.get(this.id).setAttr(this.target, attr, value); + }, + + /** + * @private + * Set up the initial currentAttrs hash. + */ + initAttrs: function() { + var me = this, + from = me.from, + to = me.to, + initialFrom = me.initialFrom || {}, + out = {}, + start, end, propHandler, attr; + + for (attr in to) { + if (to.hasOwnProperty(attr)) { + start = me.target.getAttr(attr, from[attr]); + end = to[attr]; + // Use default (numeric) property handler + if (!Ext.fx.PropertyHandler[attr]) { + if (Ext.isObject(end)) { + propHandler = me.propHandlers[attr] = Ext.fx.PropertyHandler.object; + } else { + propHandler = me.propHandlers[attr] = Ext.fx.PropertyHandler.defaultHandler; + } + } + // Use custom handler + else { + propHandler = me.propHandlers[attr] = Ext.fx.PropertyHandler[attr]; + } + out[attr] = propHandler.get(start, end, me.damper, initialFrom[attr], attr); + } + } + me.currentAttrs = out; + }, + + /** + * @private + * Fires beforeanimate and sets the running flag. + */ + start: function(startTime) { + var me = this, + delay = me.delay, + delayStart = me.delayStart, + delayDelta; + + if (delay) { + if (!delayStart) { + me.delayStart = startTime; + return; + } + else { + delayDelta = startTime - delayStart; + if (delayDelta < delay) { + return; + } + else { + // Compensate for frame delay; + startTime = new Date(delayStart.getTime() + delay); + } + } + } + if (me.fireEvent('beforeanimate', me) !== false) { + me.startTime = startTime; + if (!me.paused && !me.currentAttrs) { + me.initAttrs(); + } + me.running = true; + me.frameCount = 0; + } + }, + + /** + * @private + * Calculate attribute value at the passed timestamp. + * @returns a hash of the new attributes. + */ + runAnim: function(elapsedTime) { + var me = this, + attrs = me.currentAttrs, + duration = me.duration, + easingFn = me.easingFn, + propHandlers = me.propHandlers, + ret = {}, + easing, values, attr, lastFrame; + + if (elapsedTime >= duration) { + elapsedTime = duration; + lastFrame = true; + } + if (me.reverse) { + elapsedTime = duration - elapsedTime; + } + + for (attr in attrs) { + if (attrs.hasOwnProperty(attr)) { + values = attrs[attr]; + easing = lastFrame ? 1 : easingFn(elapsedTime / duration); + ret[attr] = propHandlers[attr].set(values, easing); + } + } + me.frameCount++; + + return ret; + }, + + /** + * @private + * Perform lastFrame cleanup and handle iterations + * @returns a hash of the new attributes. + */ + lastFrame: function() { + var me = this, + iter = me.iterations, + iterCount = me.currentIteration; + + iterCount++; + if (iterCount < iter) { + if (me.alternate) { + me.reverse = !me.reverse; + } + me.startTime = new Date(); + me.currentIteration = iterCount; + // Turn off paused for CSS3 Transitions + me.paused = false; + } + else { + me.currentIteration = 0; + me.end(); + me.fireEvent('lastframe', me, me.startTime); + } + }, + + endWasCalled: 0, + + /** + * Fire afteranimate event and end the animation. Usually called automatically when the + * animation reaches its final frame, but can also be called manually to pre-emptively + * stop and destroy the running animation. + */ + end: function() { + if (this.endWasCalled++) { + return; + } + var me = this; + me.startTime = 0; + me.paused = false; + me.running = false; + Ext.fx.Manager.removeAnim(me); + me.fireEvent('afteranimate', me, me.startTime); + Ext.callback(me.callback, me.scope, [me, me.startTime]); + }, + + isReady: function() { + return this.paused === false && this.running === false && this.iterations > 0; + }, + + isRunning: function() { + return this.paused === false && this.running === true && this.isAnimator !== true; + } +}); +// Set flag to indicate that Fx is available. Class might not be available immediately. +Ext.enableFx = true; diff --git a/extjs-django/marvel/static/extjs/src/fx/Animator.js b/extjs-django/marvel/static/extjs/src/fx/Animator.js new file mode 100644 index 0000000..4fd8546 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/fx/Animator.js @@ -0,0 +1,429 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.fx.Animator + * + * This class is used to run keyframe based animations, which follows the CSS3 based animation structure. + * Keyframe animations differ from typical from/to animations in that they offer the ability to specify values + * at various points throughout the animation. + * + * ## Using Keyframes + * + * The {@link #keyframes} option is the most important part of specifying an animation when using this + * class. A key frame is a point in a particular animation. We represent this as a percentage of the + * total animation duration. At each key frame, we can specify the target values at that time. Note that + * you *must* specify the values at 0% and 100%, the start and ending values. There is also a {@link #keyframe} + * event that fires after each key frame is reached. + * + * ## Example + * + * In the example below, we modify the values of the element at each fifth throughout the animation. + * + * @example + * Ext.create('Ext.fx.Animator', { + * target: Ext.getBody().createChild({ + * style: { + * width: '100px', + * height: '100px', + * 'background-color': 'red' + * } + * }), + * duration: 10000, // 10 seconds + * keyframes: { + * 0: { + * opacity: 1, + * backgroundColor: 'FF0000' + * }, + * 20: { + * x: 30, + * opacity: 0.5 + * }, + * 40: { + * x: 130, + * backgroundColor: '0000FF' + * }, + * 60: { + * y: 80, + * opacity: 0.3 + * }, + * 80: { + * width: 200, + * y: 200 + * }, + * 100: { + * opacity: 1, + * backgroundColor: '00FF00' + * } + * } + * }); + */ +Ext.define('Ext.fx.Animator', { + + /* Begin Definitions */ + + mixins: { + observable: 'Ext.util.Observable' + }, + + requires: ['Ext.fx.Manager'], + + /* End Definitions */ + + /** + * @property {Boolean} isAnimator + * `true` in this class to identify an object as an instantiated Animator, or subclass thereof. + */ + isAnimator: true, + + /** + * @cfg {Number} duration + * Time in milliseconds for the animation to last. Defaults to 250. + */ + duration: 250, + + /** + * @cfg {Number} delay + * Time to delay before starting the animation. Defaults to 0. + */ + delay: 0, + + /* private used to track a delayed starting time */ + delayStart: 0, + + /** + * @cfg {Boolean} dynamic + * Currently only for Component Animation: Only set a component's outer element size bypassing layouts. Set to true to do full layouts for every frame of the animation. Defaults to false. + */ + dynamic: false, + + /** + * @cfg {String} easing + * + * This describes how the intermediate values used during a transition will be calculated. It allows for a transition to change + * speed over its duration. + * + * - backIn + * - backOut + * - bounceIn + * - bounceOut + * - ease + * - easeIn + * - easeOut + * - easeInOut + * - elasticIn + * - elasticOut + * - cubic-bezier(x1, y1, x2, y2) + * + * Note that cubic-bezier will create a custom easing curve following the CSS3 [transition-timing-function][0] + * specification. The four values specify points P1 and P2 of the curve as (x1, y1, x2, y2). All values must + * be in the range [0, 1] or the definition is invalid. + * + * [0]: http://www.w3.org/TR/css3-transitions/#transition-timing-function_tag + */ + easing: 'ease', + + /** + * Flag to determine if the animation has started + * @property running + * @type Boolean + */ + running: false, + + /** + * Flag to determine if the animation is paused. Only set this to true if you need to + * keep the Anim instance around to be unpaused later; otherwise call {@link #end}. + * @property paused + * @type Boolean + */ + paused: false, + + /** + * @private + */ + damper: 1, + + /** + * @cfg {Number} iterations + * Number of times to execute the animation. Defaults to 1. + */ + iterations: 1, + + /** + * Current iteration the animation is running. + * @property currentIteration + * @type Number + */ + currentIteration: 0, + + /** + * Current keyframe step of the animation. + * @property keyframeStep + * @type Number + */ + keyframeStep: 0, + + /** + * @private + */ + animKeyFramesRE: /^(from|to|\d+%?)$/, + + /** + * @cfg {Ext.fx.target.Target} target + * The Ext.fx.target to apply the animation to. If not specified during initialization, this can be passed to the applyAnimator + * method to apply the same animation to many targets. + */ + + /** + * @cfg {Object} keyframes + * Animation keyframes follow the CSS3 Animation configuration pattern. 'from' is always considered '0%' and 'to' + * is considered '100%'.Every keyframe declaration must have a keyframe rule for 0% and 100%, possibly defined using + * "from" or "to". A keyframe declaration without these keyframe selectors is invalid and will not be available for + * animation. The keyframe declaration for a keyframe rule consists of properties and values. Properties that are unable to + * be animated are ignored in these rules, with the exception of 'easing' which can be changed at each keyframe. For example: +
    
    +keyframes : {
    +    '0%': {
    +        left: 100
    +    },
    +    '40%': {
    +        left: 150
    +    },
    +    '60%': {
    +        left: 75
    +    },
    +    '100%': {
    +        left: 100
    +    }
    +}
    + 
    + */ + constructor: function(config) { + var me = this; + config = Ext.apply(me, config || {}); + me.config = config; + me.id = Ext.id(null, 'ext-animator-'); + me.addEvents( + /** + * @event beforeanimate + * Fires before the animation starts. A handler can return false to cancel the animation. + * @param {Ext.fx.Animator} this + */ + 'beforeanimate', + /** + * @event keyframe + * Fires at each keyframe. + * @param {Ext.fx.Animator} this + * @param {Number} keyframe step number + */ + 'keyframe', + /** + * @event afteranimate + * Fires when the animation is complete. + * @param {Ext.fx.Animator} this + * @param {Date} startTime + */ + 'afteranimate' + ); + me.mixins.observable.constructor.call(me, config); + me.timeline = []; + me.createTimeline(me.keyframes); + if (me.target) { + me.applyAnimator(me.target); + Ext.fx.Manager.addAnim(me); + } + }, + + /** + * @private + */ + sorter: function (a, b) { + return a.pct - b.pct; + }, + + /** + * @private + * Takes the given keyframe configuration object and converts it into an ordered array with the passed attributes per keyframe + * or applying the 'to' configuration to all keyframes. Also calculates the proper animation duration per keyframe. + */ + createTimeline: function(keyframes) { + var me = this, + attrs = [], + to = me.to || {}, + duration = me.duration, + prevMs, ms, i, ln, pct, attr; + + for (pct in keyframes) { + if (keyframes.hasOwnProperty(pct) && me.animKeyFramesRE.test(pct)) { + attr = {attrs: Ext.apply(keyframes[pct], to)}; + // CSS3 spec allow for from/to to be specified. + if (pct == "from") { + pct = 0; + } + else if (pct == "to") { + pct = 100; + } + // convert % values into integers + attr.pct = parseInt(pct, 10); + attrs.push(attr); + } + } + // Sort by pct property + Ext.Array.sort(attrs, me.sorter); + // Only an end + //if (attrs[0].pct) { + // attrs.unshift({pct: 0, attrs: element.attrs}); + //} + + ln = attrs.length; + for (i = 0; i < ln; i++) { + prevMs = (attrs[i - 1]) ? duration * (attrs[i - 1].pct / 100) : 0; + ms = duration * (attrs[i].pct / 100); + me.timeline.push({ + duration: ms - prevMs, + attrs: attrs[i].attrs + }); + } + }, + + /** + * Applies animation to the Ext.fx.target + * @private + * @param target + * @type String/Object + */ + applyAnimator: function(target) { + var me = this, + anims = [], + timeline = me.timeline, + ln = timeline.length, + anim, easing, damper, attrs, i; + + if (me.fireEvent('beforeanimate', me) !== false) { + for (i = 0; i < ln; i++) { + anim = timeline[i]; + attrs = anim.attrs; + easing = attrs.easing || me.easing; + damper = attrs.damper || me.damper; + delete attrs.easing; + delete attrs.damper; + anim = new Ext.fx.Anim({ + target: target, + easing: easing, + damper: damper, + duration: anim.duration, + paused: true, + to: attrs + }); + anims.push(anim); + } + me.animations = anims; + me.target = anim.target; + for (i = 0; i < ln - 1; i++) { + anim = anims[i]; + anim.nextAnim = anims[i + 1]; + anim.on('afteranimate', function() { + this.nextAnim.paused = false; + }); + anim.on('afteranimate', function() { + this.fireEvent('keyframe', this, ++this.keyframeStep); + }, me); + } + anims[ln - 1].on('afteranimate', function() { + this.lastFrame(); + }, me); + } + }, + + /** + * @private + * Fires beforeanimate and sets the running flag. + */ + start: function(startTime) { + var me = this, + delay = me.delay, + delayStart = me.delayStart, + delayDelta; + if (delay) { + if (!delayStart) { + me.delayStart = startTime; + return; + } + else { + delayDelta = startTime - delayStart; + if (delayDelta < delay) { + return; + } + else { + // Compensate for frame delay; + startTime = new Date(delayStart.getTime() + delay); + } + } + } + if (me.fireEvent('beforeanimate', me) !== false) { + me.startTime = startTime; + me.running = true; + me.animations[me.keyframeStep].paused = false; + } + }, + + /** + * @private + * Perform lastFrame cleanup and handle iterations + * @returns a hash of the new attributes. + */ + lastFrame: function() { + var me = this, + iter = me.iterations, + iterCount = me.currentIteration; + + iterCount++; + if (iterCount < iter) { + me.startTime = new Date(); + me.currentIteration = iterCount; + me.keyframeStep = 0; + me.applyAnimator(me.target); + me.animations[me.keyframeStep].paused = false; + } + else { + me.currentIteration = 0; + me.end(); + } + }, + + /** + * Fire afteranimate event and end the animation. Usually called automatically when the + * animation reaches its final frame, but can also be called manually to pre-emptively + * stop and destroy the running animation. + */ + end: function() { + var me = this; + me.fireEvent('afteranimate', me, me.startTime, new Date() - me.startTime); + }, + + isReady: function() { + return this.paused === false && this.running === false && this.iterations > 0; + }, + + isRunning: function() { + // Explicitly return false, we don't want to be run continuously by the manager + return false; + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/fx/CubicBezier.js b/extjs-django/marvel/static/extjs/src/fx/CubicBezier.js new file mode 100644 index 0000000..b206d50 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/fx/CubicBezier.js @@ -0,0 +1,97 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @private + */ +Ext.define('Ext.fx.CubicBezier', { + + /* Begin Definitions */ + + singleton: true, + + /* End Definitions */ + + cubicBezierAtTime: function(t, p1x, p1y, p2x, p2y, duration) { + var cx = 3 * p1x, + bx = 3 * (p2x - p1x) - cx, + ax = 1 - cx - bx, + cy = 3 * p1y, + by = 3 * (p2y - p1y) - cy, + ay = 1 - cy - by; + function sampleCurveX(t) { + return ((ax * t + bx) * t + cx) * t; + } + function solve(x, epsilon) { + var t = solveCurveX(x, epsilon); + return ((ay * t + by) * t + cy) * t; + } + function solveCurveX(x, epsilon) { + var t0, t1, t2, x2, d2, i; + for (t2 = x, i = 0; i < 8; i++) { + x2 = sampleCurveX(t2) - x; + if (Math.abs(x2) < epsilon) { + return t2; + } + d2 = (3 * ax * t2 + 2 * bx) * t2 + cx; + if (Math.abs(d2) < 1e-6) { + break; + } + t2 = t2 - x2 / d2; + } + t0 = 0; + t1 = 1; + t2 = x; + if (t2 < t0) { + return t0; + } + if (t2 > t1) { + return t1; + } + while (t0 < t1) { + x2 = sampleCurveX(t2); + if (Math.abs(x2 - x) < epsilon) { + return t2; + } + if (x > x2) { + t0 = t2; + } else { + t1 = t2; + } + t2 = (t1 - t0) / 2 + t0; + } + return t2; + } + return solve(t, 1 / (200 * duration)); + }, + + cubicBezier: function(x1, y1, x2, y2) { + var fn = function(pos) { + return Ext.fx.CubicBezier.cubicBezierAtTime(pos, x1, y1, x2, y2, 1); + }; + fn.toCSS3 = function() { + return 'cubic-bezier(' + [x1, y1, x2, y2].join(',') + ')'; + }; + fn.reverse = function() { + return Ext.fx.CubicBezier.cubicBezier(1 - x2, 1 - y2, 1 - x1, 1 - y1); + }; + return fn; + } +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/fx/Easing.js b/extjs-django/marvel/static/extjs/src/fx/Easing.js new file mode 100644 index 0000000..733746c --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/fx/Easing.js @@ -0,0 +1,150 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +// @define Ext.fx.Easing + +/** + * @class Ext.fx.Easing + * + * This class contains a series of function definitions used to modify values during an animation. + * They describe how the intermediate values used during a transition will be calculated. It allows for a transition to change + * speed over its duration. The following options are available: + * + * - linear The default easing type + * - backIn + * - backOut + * - bounceIn + * - bounceOut + * - ease + * - easeIn + * - easeOut + * - easeInOut + * - elasticIn + * - elasticOut + * - cubic-bezier(x1, y1, x2, y2) + * + * Note that cubic-bezier will create a custom easing curve following the CSS3 [transition-timing-function][0] + * specification. The four values specify points P1 and P2 of the curve as (x1, y1, x2, y2). All values must + * be in the range [0, 1] or the definition is invalid. + * + * [0]: http://www.w3.org/TR/css3-transitions/#transition-timing-function_tag + * + * @singleton + */ +Ext.require('Ext.fx.CubicBezier', function() { + var math = Math, + pi = math.PI, + pow = math.pow, + sin = math.sin, + sqrt = math.sqrt, + abs = math.abs, + backInSeed = 1.70158; + + Ext.define('Ext.fx.Easing', { + singleton: true, + + linear: Ext.identityFn, + ease: function(n) { + var q = 0.07813 - n / 2, + alpha = -0.25, + Q = sqrt(0.0066 + q * q), + x = Q - q, + X = pow(abs(x), 1/3) * (x < 0 ? -1 : 1), + y = -Q - q, + Y = pow(abs(y), 1/3) * (y < 0 ? -1 : 1), + t = X + Y + 0.25; + return pow(1 - t, 2) * 3 * t * 0.1 + (1 - t) * 3 * t * t + t * t * t; + }, + easeIn: function (n) { + return pow(n, 1.7); + }, + easeOut: function (n) { + return pow(n, 0.48); + }, + easeInOut: function(n) { + var q = 0.48 - n / 1.04, + Q = sqrt(0.1734 + q * q), + x = Q - q, + X = pow(abs(x), 1/3) * (x < 0 ? -1 : 1), + y = -Q - q, + Y = pow(abs(y), 1/3) * (y < 0 ? -1 : 1), + t = X + Y + 0.5; + return (1 - t) * 3 * t * t + t * t * t; + }, + backIn: function (n) { + return n * n * ((backInSeed + 1) * n - backInSeed); + }, + backOut: function (n) { + n = n - 1; + return n * n * ((backInSeed + 1) * n + backInSeed) + 1; + }, + elasticIn: function (n) { + if (n === 0 || n === 1) { + return n; + } + var p = 0.3, + s = p / 4; + return pow(2, -10 * n) * sin((n - s) * (2 * pi) / p) + 1; + }, + elasticOut: function (n) { + return 1 - Ext.fx.Easing.elasticIn(1 - n); + }, + bounceIn: function (n) { + return 1 - Ext.fx.Easing.bounceOut(1 - n); + }, + bounceOut: function (n) { + var s = 7.5625, + p = 2.75, + l; + if (n < (1 / p)) { + l = s * n * n; + } else { + if (n < (2 / p)) { + n -= (1.5 / p); + l = s * n * n + 0.75; + } else { + if (n < (2.5 / p)) { + n -= (2.25 / p); + l = s * n * n + 0.9375; + } else { + n -= (2.625 / p); + l = s * n * n + 0.984375; + } + } + } + return l; + } + }, function(){ + var easing = Ext.fx.Easing.self, + proto = easing.prototype; + + easing.implement({ + 'back-in': proto.backIn, + 'back-out': proto.backOut, + 'ease-in': proto.easeIn, + 'ease-out': proto.easeOut, + 'elastic-in': proto.elasticIn, + 'elastic-out': proto.elasticOut, + 'bounce-in': proto.bounceIn, + 'bounce-out': proto.bounceOut, + 'ease-in-out': proto.easeInOut + }); + }); +}); \ No newline at end of file diff --git a/extjs-django/marvel/static/extjs/src/fx/Manager.js b/extjs-django/marvel/static/extjs/src/fx/Manager.js new file mode 100644 index 0000000..46880e4 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/fx/Manager.js @@ -0,0 +1,378 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @class Ext.fx.Manager + * Animation Manager which keeps track of all current animations and manages them on a frame by frame basis. + * @private + * @singleton + */ + +Ext.define('Ext.fx.Manager', { + + /* Begin Definitions */ + + singleton: true, + + requires: ['Ext.util.MixedCollection', + 'Ext.fx.target.Element', + 'Ext.fx.target.ElementCSS', + 'Ext.fx.target.CompositeElement', + 'Ext.fx.target.CompositeElementCSS', + 'Ext.fx.target.Sprite', + 'Ext.fx.target.CompositeSprite', + 'Ext.fx.target.Component'], + + mixins: { + queue: 'Ext.fx.Queue' + }, + + /* End Definitions */ + + constructor: function() { + var me = this; + me.items = new Ext.util.MixedCollection(); + me.mixins.queue.constructor.call(me); + + // Do not use fireIdleEvent: false. Each tick of the TaskRunner needs to fire the idleEvent + // in case an animation callback/listener adds a listener. + me.taskRunner = new Ext.util.TaskRunner(); + + // this.requestAnimFrame = (function() { + // var raf = window.requestAnimationFrame || + // window.webkitRequestAnimationFrame || + // window.mozRequestAnimationFrame || + // window.oRequestAnimationFrame || + // window.msRequestAnimationFrame; + // if (raf) { + // return function(callback, element) { + // raf(callback); + // }; + // } + // else { + // return function(callback, element) { + // window.setTimeout(callback, Ext.fx.Manager.interval); + // }; + // } + // })(); + }, + + /** + * @cfg {Number} interval Default interval in miliseconds to calculate each frame. Defaults to 16ms (~60fps) + */ + interval: 16, + + /** + * @cfg {Boolean} forceJS Force the use of JavaScript-based animation instead of CSS3 animation, even when CSS3 + * animation is supported by the browser. This defaults to true currently, as CSS3 animation support is still + * considered experimental at this time, and if used should be thouroughly tested across all targeted browsers. + * @protected + */ + forceJS: true, + + // @private Target factory + createTarget: function(target) { + var me = this, + useCSS3 = !me.forceJS && Ext.supports.Transitions, + targetObj; + + me.useCSS3 = useCSS3; + + if (target) { + // dom element, string or fly + if (target.tagName || Ext.isString(target) || target.isFly) { + target = Ext.get(target); + targetObj = new Ext.fx.target['Element' + (useCSS3 ? 'CSS' : '')](target); + } + // Element + else if (target.dom) { + targetObj = new Ext.fx.target['Element' + (useCSS3 ? 'CSS' : '')](target); + } + // Element Composite + else if (target.isComposite) { + targetObj = new Ext.fx.target['CompositeElement' + (useCSS3 ? 'CSS' : '')](target); + } + // Draw Sprite + else if (target.isSprite) { + targetObj = new Ext.fx.target.Sprite(target); + } + // Draw Sprite Composite + else if (target.isCompositeSprite) { + targetObj = new Ext.fx.target.CompositeSprite(target); + } + // Component + else if (target.isComponent) { + targetObj = new Ext.fx.target.Component(target); + } + else if (target.isAnimTarget) { + return target; + } + else { + return null; + } + me.targets.add(targetObj); + return targetObj; + } + else { + return null; + } + }, + + /** + * Add an Anim to the manager. This is done automatically when an Anim instance is created. + * @param {Ext.fx.Anim} anim + */ + addAnim: function(anim) { + var me = this, + items = me.items, + task = me.task; + + // Make sure we use the anim's id, not the anim target's id here. The anim id will be unique on + // each call to addAnim. `anim.target` is the DOM element being targeted, and since multiple animations + // can target a single DOM node concurrently, the target id cannot be assumned to be unique. + items.add(anim.id, anim); + //Ext.log('+ added anim ', anim.id, ', target: ', anim.target.getId(), ', duration: ', anim.duration); + + // Start the timer if not already running + if (!task && items.length) { + task = me.task = { + run: me.runner, + interval: me.interval, + scope: me + }; + //Ext.log('--->> Starting task'); + me.taskRunner.start(task); + } + }, + + /** + * Remove an Anim from the manager. This is done automatically when an Anim ends. + * @param {Ext.fx.Anim} anim + */ + removeAnim: function(anim) { + var me = this, + items = me.items, + task = me.task; + + items.removeAtKey(anim.id); + //Ext.log(' X removed anim ', anim.id, ', target: ', anim.target.getId(), ', frames: ', anim.frameCount, ', item count: ', items.length); + + // Stop the timer if there are no more managed Anims + if (task && !items.length) { + //Ext.log('[]--- Stopping task'); + me.taskRunner.stop(task); + delete me.task; + } + }, + + /** + * @private + * Runner function being called each frame + */ + runner: function() { + var me = this, + items = me.items.getRange(), + i = 0, + len = items.length, + anim; + + //Ext.log(' executing anim runner task with ', len, ' items'); + me.targetArr = {}; + + // Single timestamp for all animations this interval + me.timestamp = new Date(); + + // Loop to start any new animations first before looping to + // execute running animations (which will also include all animations + // started in this loop). This is a subtle difference from simply + // iterating in one loop and starting then running each animation, + // but separating the loops is necessary to ensure that all new animations + // actually kick off prior to existing ones regardless of array order. + // Otherwise in edge cases when there is excess latency in overall + // performance, allowing existing animations to run before new ones can + // lead to dropped frames and subtle race conditions when they are + // interdependent, which is often the case with certain Element fx. + for (; i < len; i++) { + anim = items[i]; + + if (anim.isReady()) { + //Ext.log(' starting anim ', anim.id, ', target: ', anim.target.id); + me.startAnim(anim); + } + } + + for (i = 0; i < len; i++) { + anim = items[i]; + + if (anim.isRunning()) { + //Ext.log(' running anim ', anim.target.id); + me.runAnim(anim); + // + } else if (!me.useCSS3) { + // When using CSS3 transitions the animations get paused since they are not + // needed once the transition is handed over to the browser, so we can + // ignore this case. However if we are doing JS animations and something is + // paused here it's possibly unintentional. + //Ext.log(' (i) anim ', anim.id, ' is active but not running...'); + // + } + } + + // Apply all the pending changes to their targets + me.applyPendingAttrs(); + }, + + /** + * @private + * Start the individual animation (initialization) + */ + startAnim: function(anim) { + anim.start(this.timestamp); + }, + + /** + * @private + * Run the individual animation for this frame + */ + runAnim: function(anim) { + if (!anim) { + return; + } + var me = this, + useCSS3 = me.useCSS3 && anim.target.type == 'element', + elapsedTime = me.timestamp - anim.startTime, + lastFrame = (elapsedTime >= anim.duration), + target, o; + + target = this.collectTargetData(anim, elapsedTime, useCSS3, lastFrame); + + // For CSS3 animation, we need to immediately set the first frame's attributes without any transition + // to get a good initial state, then add the transition properties and set the final attributes. + if (useCSS3) { + //Ext.log(' (i) using CSS3 transitions'); + + // Flush the collected attributes, without transition + anim.target.setAttr(target.anims[anim.id].attributes, true); + + // Add the end frame data + me.collectTargetData(anim, anim.duration, useCSS3, lastFrame); + + // Pause the animation so runAnim doesn't keep getting called + anim.paused = true; + + target = anim.target.target; + // We only want to attach an event on the last element in a composite + if (anim.target.isComposite) { + target = anim.target.target.last(); + } + + // Listen for the transitionend event + o = {}; + o[Ext.supports.CSS3TransitionEnd] = anim.lastFrame; + o.scope = anim; + o.single = true; + target.on(o); + } + }, + + /** + * @private + * Collect target attributes for the given Anim object at the given timestamp + * @param {Ext.fx.Anim} anim The Anim instance + * @param {Number} timestamp Time after the anim's start time + * @param {Boolean} [useCSS3=false] True if using CSS3-based animation, else false + * @param {Boolean} [isLastFrame=false] True if this is the last frame of animation to be run, else false + * @return {Object} The animation target wrapper object containing the passed animation along with the + * new attributes to set on the target's element in the next animation frame. + */ + collectTargetData: function(anim, elapsedTime, useCSS3, isLastFrame) { + var targetId = anim.target.getId(), + target = this.targetArr[targetId]; + + if (!target) { + // Create a thin wrapper around the target so that we can create a link between the + // target element and its associated animations. This is important later when applying + // attributes to the target so that each animation can be independently run with its own + // duration and stopped at any point without affecting other animations for the same target. + target = this.targetArr[targetId] = { + id: targetId, + el: anim.target, + anims: {} + }; + } + + // This is a wrapper for the animation so that we can also save state along with it, + // including the current elapsed time and lastFrame status. Even though this method only + // adds a single anim object per call, each target element could have multiple animations + // associated with it, which is why the anim is added to the target's `anims` hash by id. + target.anims[anim.id] = { + id: anim.id, + anim: anim, + elapsed: elapsedTime, + isLastFrame: isLastFrame, + // This is the object that gets applied to the target element below in applyPendingAttrs(): + attributes: [{ + duration: anim.duration, + easing: (useCSS3 && anim.reverse) ? anim.easingFn.reverse().toCSS3() : anim.easing, + // This is where the magic happens. The anim calculates what its new attributes should + // be based on the current frame and returns those as a hash of values. + attrs: anim.runAnim(elapsedTime) + }] + }; + + return target; + }, + + /** + * @private + * Apply all pending attribute changes to their targets + */ + applyPendingAttrs: function() { + var targetArr = this.targetArr, + target, targetId, animWrap, anim, animId; + + // Loop through each target + for (targetId in targetArr) { + if (targetArr.hasOwnProperty(targetId)) { + target = targetArr[targetId]; + + // Each target could have multiple associated animations, so iterate those + for (animId in target.anims) { + if (target.anims.hasOwnProperty(animId)) { + animWrap = target.anims[animId]; + anim = animWrap.anim; + + // If the animation has valid attributes, set them on the target + if (animWrap.attributes && anim.isRunning()) { + //Ext.log(' > applying attributes for anim ', animWrap.id, ', target: ', target.id, ', elapsed: ', animWrap.elapsed); + target.el.setAttr(animWrap.attributes, false, animWrap.isLastFrame); + + // If this particular anim is at the last frame end it + if (animWrap.isLastFrame) { + //Ext.log(' running last frame for ', animWrap.id, ', target: ', targetId); + anim.lastFrame(); + } + } + } + } + } + } + } +}); diff --git a/extjs-django/marvel/static/extjs/src/fx/PropertyHandler.js b/extjs-django/marvel/static/extjs/src/fx/PropertyHandler.js new file mode 100644 index 0000000..0ef5706 --- /dev/null +++ b/extjs-django/marvel/static/extjs/src/fx/PropertyHandler.js @@ -0,0 +1,401 @@ +/* +This file is part of Ext JS 4.2 + +Copyright (c) 2011-2013 Sencha Inc + +Contact: http://www.sencha.com/contact + +GNU General Public License Usage +This file may be used under the terms of the GNU General Public License version 3.0 as +published by the Free Software Foundation and appearing in the file LICENSE included in the +packaging of this file. + +Please review the following information to ensure the GNU General Public License version 3.0 +requirements will be met: http://www.gnu.org/copyleft/gpl.html. + +If you are unsure which license is appropriate for your use, please contact the sales department +at http://www.sencha.com/contact. + +Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314) +*/ +/** + * @private + */ +Ext.define('Ext.fx.PropertyHandler', { + + /* Begin Definitions */ + + requires: ['Ext.draw.Draw'], + + statics: { + defaultHandler: { + pixelDefaultsRE: /width|height|top$|bottom$|left$|right$/i, + unitRE: /^(-?\d*\.?\d*){1}(em|ex|px|in|cm|mm|pt|pc|%)*$/, + scrollRE: /^scroll/i, + + computeDelta: function(from, end, damper, initial, attr) { + damper = (typeof damper == 'number') ? damper : 1; + var unitRE = this.unitRE, + match = unitRE.exec(from), + start, units; + if (match) { + from = match[1]; + units = match[2]; + if (!this.scrollRE.test(attr) && !units && this.pixelDefaultsRE.test(attr)) { + units = 'px'; + } + } + from = +from || 0; + + match = unitRE.exec(end); + if (match) { + end = match[1]; + units = match[2] || units; + } + end = +end || 0; + start = (initial != null) ? initial : from; + return { + from: from, + delta: (end - start) * damper, + units: units + }; + }, + + get: function(from, end, damper, initialFrom, attr) { + var ln = from.length, + out = [], + i, initial, res, j, len; + for (i = 0; i < ln; i++) { + if (initialFrom) { + initial = initialFrom[i][1].from; + } + if (Ext.isArray(from[i][1]) && Ext.isArray(end)) { + res = []; + j = 0; + len = from[i][1].length; + for (; j < len; j++) { + res.push(this.computeDelta(from[i][1][j], end[j], damper, initial, attr)); + } + out.push([from[i][0], res]); + } + else { + out.push([from[i][0], this.computeDelta(from[i][1], end, damper, initial, attr)]); + } + } + return out; + }, + + set: function(values, easing) { + var ln = values.length, + out = [], + i, val, res, len, j; + for (i = 0; i < ln; i++) { + val = values[i][1]; + if (Ext.isArray(val)) { + res = []; + j = 0; + len = val.length; + for (; j < len; j++) { + res.push(val[j].from + val[j].delta * easing + (val[j].units || 0)); + } + out.push([values[i][0], res]); + } else { + out.push([values[i][0], val.from + val.delta * easing + (val.units || 0)]); + } + } + return out; + } + }, + stringHandler: { + computeDelta: function(from, end, damper, initial, attr) { + return { + from: from, + delta: end + }; + }, + + get: function(from, end, damper, initialFrom, attr) { + var ln = from.length, + out = [], + i, initial, res, j, len; + for (i = 0; i < ln; i++) { + out.push([from[i][0], this.computeDelta(from[i][1], end, damper, initial, attr)]); + } + return out; + }, + + set: function(values, easing) { + var ln = values.length, + out = [], + i, val, res, len, j; + for (i = 0; i < ln; i++) { + val = values[i][1]; + out.push([values[i][0], val.delta]); + } + return out; + } + }, + color: { + rgbRE: /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i, + hexRE: /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i, + hex3RE: /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i, + + parseColor : function(color, damper) { + damper = (typeof damper == 'number') ? damper : 1; + var out = false, + reList = [this.hexRE, this.rgbRE, this.hex3RE], + length = reList.length, + match, base, re, i; + + for (i = 0; i < length; i++) { + re = reList[i]; + + base = (i % 2 === 0) ? 16 : 10; + match = re.exec(color); + if (match && match.length === 4) { + if (i === 2) { + match[1] += match[1]; + match[2] += match[2]; + match[3] += match[3]; + } + out = { + red: parseInt(match[1], base), + green: parseInt(match[2], base), + blue: parseInt(match[3], base) + }; + break; + } + } + + return out || color; + }, + + computeDelta: function(from, end, damper, initial) { + from = this.parseColor(from); + end = this.parseColor(end, damper); + var start = initial ? initial : from, + tfrom = typeof start, + tend = typeof end; + //Extra check for when the color string is not recognized. + if (tfrom == 'string' || tfrom == 'undefined' + || tend == 'string' || tend == 'undefined') { + return end || start; + } + return { + from: from, + delta: { + red: Math.round((end.red - start.red) * damper), + green: Math.round((end.green - start.green) * damper), + blue: Math.round((end.blue - start.blue) * damper) + } + }; + }, + + get: function(start, end, damper, initialFrom) { + var ln = start.length, + out = [], + i, initial; + for (i = 0; i < ln; i++) { + if (initialFrom) { + initial = initialFrom[i][1].from; + } + out.push([start[i][0], this.computeDelta(start[i][1], end, damper, initial)]); + } + return out; + }, + + set: function(values, easing) { + var ln = values.length, + out = [], + i, val, parsedString, from, delta; + for (i = 0; i < ln; i++) { + val = values[i][1]; + if (val) { + from = val.from; + delta = val.delta; + //multiple checks to reformat the color if it can't recognized by computeDelta. + val = (typeof val == 'object' && 'red' in val)? + 'rgb(' + val.red + ', ' + val.green + ', ' + val.blue + ')' : val; + val = (typeof val == 'object' && val.length)? val[0] : val; + if (typeof val == 'undefined') { + return []; + } + parsedString = typeof val == 'string'? val : + 'rgb(' + [ + (from.red + Math.round(delta.red * easing)) % 256, + (from.green + Math.round(delta.green * easing)) % 256, + (from.blue + Math.round(delta.blue * easing)) % 256 + ].join(',') + ')'; + out.push([ + values[i][0], + parsedString + ]); + } + } + return out; + } + }, + object: { + interpolate: function(prop, damper) { + damper = (typeof damper == 'number') ? damper : 1; + var out = {}, + p; + for(p in prop) { + out[p] = parseFloat(prop[p]) * damper; + } + return out; + }, + + computeDelta: function(from, end, damper, initial) { + from = this.interpolate(from); + end = this.interpolate(end, damper); + var start = initial ? initial : from, + delta = {}, + p; + + for(p in end) { + delta[p] = end[p] - start[p]; + } + return { + from: from, + delta: delta + }; + }, + + get: function(start, end, damper, initialFrom) { + var ln = start.length, + out = [], + i, initial; + for (i = 0; i < ln; i++) { + if (initialFrom) { + initial = initialFrom[i][1].from; + } + out.push([start[i][0], this.computeDelta(start[i][1], end, damper, initial)]); + } + return out; + }, + + set: function(values, easing) { + var ln = values.length, + out = [], + outObject = {}, + i, from, delta, val, p; + for (i = 0; i < ln; i++) { + val = values[i][1]; + from = val.from; + delta = val.delta; + for (p in from) { + outObject[p] = from[p] + delta[p] * easing; + } + out.push([ + values[i][0], + outObject + ]); + } + return out; + } + }, + + path: { + computeDelta: function(from, end, damper, initial) { + damper = (typeof damper == 'number') ? damper : 1; + var start; + from = +from || 0; + end = +end || 0; + start = (initial != null) ? initial : from; + return { + from: from, + delta: (end - start) * damper + }; + }, + + forcePath: function(path) { + if (!Ext.isArray(path) && !Ext.isArray(path[0])) { + path = Ext.draw.Draw.parsePathString(path); + } + return path; + }, + + get: function(start, end, damper, initialFrom) { + var endPath = this.forcePath(end), + out = [], + startLn = start.length, + startPathLn, pointsLn, i, deltaPath, initial, j, k, path, startPath; + for (i = 0; i < startLn; i++) { + startPath = this.forcePath(start[i][1]); + + deltaPath = Ext.draw.Draw.interpolatePaths(startPath, endPath); + startPath = deltaPath[0]; + endPath = deltaPath[1]; + + startPathLn = startPath.length; + path = []; + for (j = 0; j < startPathLn; j++) { + deltaPath = [startPath[j][0]]; + pointsLn = startPath[j].length; + for (k = 1; k < pointsLn; k++) { + initial = initialFrom && initialFrom[0][1][j][k].from; + deltaPath.push(this.computeDelta(startPath[j][k], endPath[j][k], damper, initial)); + } + path.push(deltaPath); + } + out.push([start[i][0], path]); + } + return out; + }, + + set: function(values, easing) { + var ln = values.length, + out = [], + i, j, k, newPath, calcPath, deltaPath, deltaPathLn, pointsLn; + for (i = 0; i < ln; i++) { + deltaPath = values[i][1]; + newPath = []; + deltaPathLn = deltaPath.length; + for (j = 0; j < deltaPathLn; j++) { + calcPath = [deltaPath[j][0]]; + pointsLn = deltaPath[j].length; + for (k = 1; k < pointsLn; k++) { + calcPath.push(deltaPath[j][k].from + deltaPath[j][k].delta * easing); + } + newPath.push(calcPath.join(',')); + } + out.push([values[i][0], newPath.join(',')]); + } + return out; + } + } + /* End Definitions */ + } +}, function() { + //set color properties to color interpolator + var props = [ + 'outlineColor', + 'backgroundColor', + 'borderColor', + 'borderTopColor', + 'borderRightColor', + 'borderBottomColor', + 'borderLeftColor', + 'fill', + 'stroke' + ], + length = props.length, + i = 0, + prop; + + for (; i